wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
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
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="pref_title_chart_heartrate_color">Heart rate colour</string>
    <string name="pref_title_force_white_color_scheme">Force black on white colour scheme</string>
    <string name="controlcenter_change_led_color">Change LED colour</string>
    <string name="notif_battery_low_percent">%1$s battery left: %2$s%%</string>
    <plurals name="widget_alarm_target_hours">
        <item quantity="one">%d hour</item>
        <item quantity="other">%d hours</item>
    </plurals>
    <string name="pbwinstallhandler_app_item">%1$s (%2$s)</string>
    <string name="installhandler_firmware_name">%1$s: %2$s %3$s</string>
    <string name="notif_battery_low_extended">%1$s battery low: %2$s</string>
    <string name="notif_battery_low">%1$s battery low</string>
    <string name="device_with_rssi">%1$s (%2$s)</string>
    <string name="appversion_by_creator">%1$s by %2$s</string>
    <string name="pref_qhybrid_title_widget_draw_circles">Draw widget circles</string>
    <string name="pref_header_auto_fetch">Auto fetch</string>
    <string name="pref_title_relax_firmware_checks">Enable this if you want to flash a firmware not intended for your device (at your own risk)</string>
    <string name="pref_summary_relax_firmware_checks">Relax firmware checks</string>
    <string name="devicetype_amazfit_bips">Amazfit Bip S</string>
    <string name="pref_title_vibration_strength">Vibration strength</string>
    <string name="hr_appname_commute">Commute</string>
    <string name="hr_appname_stopwatch">Stopwatch</string>
    <string name="hr_appname_workout">Workout</string>
    <string name="hr_appname_wellness">Wellness</string>
    <string name="pref_summary_custom_deviceicon">Show a device specific Android notification icon instead the Gadgetbridge icon when connected</string>
    <string name="pref_title_custom_deviceicon">Show device specific notification icon</string>
    <string name="notification_channel_high_priority_name">High-priority</string>
    <string name="find_my_phone_notification">Find my phone</string>
    <string name="pref_summary_force_white_color_scheme">Useful if you your watch has dark hands</string>
    <string name="find_lost_device_you_found_it">Found it!</string>
    <string name="hr_widget_nothing">Nothing</string>
    <string name="hr_widget_weather">Weather</string>
    <string name="hr_widget_battery">Battery</string>
    <string name="hr_widget_calories">Calories</string>
    <string name="hr_widget_active_minutes">Active minutes</string>
    <string name="hr_widget_date">Date</string>
    <string name="hr_widget_steps">Steps</string>
    <string name="hr_widget_heart_rate">Heart rate</string>
    <string name="pref_title_sync_caldendar">Sync calendar events</string>
    <string name="pref_summary_sync_calendar">Enables calendar alerts, even when disconnected</string>
    <string name="pref_summary_allow_high_mtu">Increases transfer speed, but might not work on some Android devices.</string>
    <string name="pref_title_allow_high_mtu">Allow high MTU</string>
    <string name="devicetype_itag">iTag</string>
    <string name="error_no_location_access">Location access must be granted and enabled for scanning to work properly</string>
    <string name="alarm_snooze">Snooze</string>
    <string name="prefs_button_long_press_action_selection_title">Long press button action</string>
    <string name="prefs_button_variable_actions">Detailed button press settings</string>
    <string name="prefs_button_triple_press_action_selection_title">Event 3 action</string>
    <string name="prefs_button_double_press_action_selection_title">Event 2 action</string>
    <string name="prefs_button_single_press_action_selection_title">Event 1 action</string>
    <string name="devicetype_y5">Y5</string>
    <string name="devicetype_banglejs">Bangle.js</string>
    <string name="pref_summary_disable_new_ble_scanning">Check this option if your device cannot be found during discovery</string>
    <string name="pref_disable_new_ble_scanning">Disable new BLE scanning</string>
    <string name="qhybrid_offset_time_by">offset time by</string>
    <string name="qhybrid_changes_delay_prompt">change might take some seconds…</string>
    <string name="qhybrid_offset_timezone">offset timezone by</string>
    <string name="qhybrid_buttons_overwrite_error">Error overwriting buttons</string>
    <string name="qhybrid_buttons_overwrite_success">Buttons overwritten</string>
    <string name="qhybrid_prompt_million_steps">Please set the step count to a million to activate that.</string>
    <string name="qhybrid_use_activity_hand_as_notification_counter">use activity hand as notification counter</string>
    <string name="qhybrid_overwrite_buttons">overwrite buttons</string>
    <string name="qhybrid_second_timezone_offset_relative_to_utc">second timezone offset relative to UTC</string>
    <string name="qhybrid_time_shift">time shift</string>
    <string name="qhybrid_goal_in_steps">Goal in steps</string>
    <string name="qhybrid_vibration_strength">vibration strength:</string>
    <string name="watch_not_connected">Watch not connected</string>
    <string name="preferences_qhybrid_settings">Q Hybrid Settings</string>
    <string name="devicetype_qhybrid">Fossil Q Hybrid</string>
    <string name="fw_upgrade_notice_amazfitgts">You are about to install the %s firmware on your Amazfit GTS.
\n
\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="devicetype_amazfit_gts">Amazfit GTS</string>
    <string name="pref_chart_sleep_rolling_24_off">Noon to noon</string>
    <string name="pref_chart_sleep_rolling_24_on">Past 24 hours</string>
    <string name="pref_title_chart_sleep_rolling_24_hour">Sleep range</string>
    <string name="pref_chart_heartrate_color_orange">Orange</string>
    <string name="pref_chart_heartrate_color_red">Red</string>
    <string name="fw_upgrade_notice_amazfitgtr">You are about to install the %s firmware on your Amazfit GTR.
\n
\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="devicetype_amazfit_gtr">Amazfit GTR</string>
    <string name="fw_upgrade_notice_amazfitbip_lite">You are about to install the %s firmware on your Amazfit Bip Lite.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="discovery_need_to_enter_authkey">This device needs a secret auth key, long press on the device to enter it. Read the wiki.</string>
    <string name="maximum_duration">Duration</string>
    <string name="prefs_find_phone_duration">Ring duration in seconds</string>
    <string name="prefs_find_phone_summary">Use your band to play your phone\'s ringtone.</string>
    <string name="prefs_enable_find_phone">Turn on \'Find phone\'</string>
    <string name="prefs_find_phone">Find phone</string>
    <string name="devicetype_amazfit_bip_lite">Amazfit Bip Lite</string>
    <string name="prefs_wearside">Wearing left or right\?</string>
    <string name="devicetype_makibes_hr3">Makibes HR3</string>
    <string name="preferences_makibes_hr3_settings">Makibes HR3 settings</string>
    <string name="activity_error_no_app_for_gpx">To view activity trace, install app which can handle GPX files.</string>
    <string name="pref_display_add_device_fab_off">Visible only if no device is added</string>
    <string name="pref_display_add_device_fab_on">Always visible</string>
    <string name="pref_display_add_device_fab">Connect new device button</string>
    <string name="widget_1_hour">1 hour</string>
    <string name="widget_20_minutes">20 minutes</string>
    <string name="widget_10_minutes">10 minutes</string>
    <string name="widget_5_minutes">5 minutes</string>
    <string name="widget_set_alarm_after">Set alarm after:</string>
    <string name="widget_listing_label">Status and Alarms</string>
    <string name="appwidget_sleep_alarm_widget_label">Sleep Alarm</string>
    <string name="activity_db_management_empty_db_warning">Warning! By pushing this button you will wipe your database and start from scratch.</string>
    <string name="activity_db_management_exportimport_label">Export and Import</string>
    <string name="activity_db_management_empty_DB">Empty Database</string>
    <string name="activity_DB_empty_button">Empty Database</string>
    <string name="activity_DB_delete_legacy_button">Delete old DB</string>
    <string name="activity_DB_test_export_message">Exporting database…</string>
    <string name="activity_DB_test_export_button">Run AutoExport Now</string>
    <string name="activity_DB_import_button">Import DB</string>
    <string name="activity_DB_ExportButton">Export Data</string>
    <string name="activity_db_management_autoexport_label">AutoExport</string>
    <string name="activity_db_management_autoexport_explanation">Database autoexport location has been set to:</string>
    <string name="pref_summary_use_custom_font">Enable this if your device has a custom font firmware for emoji support</string>
    <string name="pref_title_use_custom_font">Use custom font</string>
    <string name="pref_title_expose_hr">3rd party realtime HR access</string>
    <string name="pref_summary_expose_hr">Allows other apps to access HR data in realtime while Gadgetbridge is connected</string>
    <string name="menuitem_nfc">NFC</string>
    <string name="devicetype_mijia_lywsd02">Mijia Smart Clock</string>
    <string name="weeksleepchart_sleep_a_month">Sleep per month</string>
    <string name="weekstepschart_steps_a_month">Steps per month</string>
    <string name="pref_charts_range_off">Charts range is set to a Week</string>
    <string name="pref_charts_range_on">Charts range is set to a Month</string>
    <string name="pref_title_charts_range">Charts Range</string>
    <string name="pref_title_charts_average">Show averages in the charts</string>
    <string name="pref_header_charts">Charts Settings</string>
    <string name="average">Average: %1$s</string>
    <string name="prefs_hr_alarm_high">High limit</string>
    <string name="prefs_hr_alarm_low">Low limit</string>
    <string name="prefs_hr_alarm_activity">Heart rate alarm during sports activity</string>
    <string name="fw_upgrade_notice_miband4">You are about to install the %s firmware on your Mi Band 4.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="devicetype_miband4">Mi Band 4</string>
    <string name="devicetype_amazfit_cor2">Amazfit Cor 2</string>
    <string name="portuguese">Portuguese</string>
    <string name="vietnamese">Vietnamese</string>
    <string name="thai">Thai</string>
    <string name="indonesian">Indonesian</string>
    <string name="arabic">Arabic</string>
    <string name="ukrainian">Ukrainian</string>
    <string name="turkish">Turkish</string>
    <string name="dutch">Dutch</string>
    <string name="fw_upgrade_notice_amazfitcor2">You are about to install the %s firmware on your Amazfit Cor 2. 
\n 
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file. 
\n 
\nNote: You do not have to install .res if it is exactly the same as the one previously installed. 
\n 
\nPROCEED AT YOUR OWN RISK! 
\n 
\nCOMPLETELY UNTESTED, PROBABLY YOU NEED TO FLASH A BEATS_W FIRMWARE IF YOUR DEVICE NAME IS \"Amazfit Band 2\"</string>
    <string name="devicetype_bfh16">BFH-16</string>
    <string name="pref_summary_authkey">Change the auth key to a common key on all your Android devices from which you would like to connect from. The previous default key for all devices is 0123456789@ABCDE</string>
    <string name="pref_title_authkey">Auth Key</string>
    <string name="title_activity_device_specific_settings">Device specific settings</string>
    <string name="pref_title_support_voip_calls">Enable VoIP app calls</string>
    <string name="devicetype_miscale2">Mi Scale 2</string>
    <string name="activity_prefs_activetime_minutes">Daily target: active time in minutes</string>
    <string name="activity_prefs_calories_burnt">Daily target: calories burnt</string>
    <string name="interval_forty_five_minutes">every 45 minutes</string>
    <string name="interval_fifteen_minutes">every 15 minutes</string>
    <string name="pref_screen_notification_profile_anti_loss">Anti-loss warning</string>
    <string name="pref_screen_notification_profile_low_power">Low power warning</string>
    <string name="pref_screen_notification_profile_inactivity">Inactivity notification</string>
    <string name="pref_screen_notification_profile_calendar">Calendar notification</string>
    <string name="pref_screen_notification_profile_missed_call">Missed call notification</string>
    <string name="zetime_signaling_vibrate_beep_once">Vibrate and beep once</string>
    <string name="zetime_signaling_beep_twice">Beep twice</string>
    <string name="zetime_signaling_beep_once">Beep once</string>
    <string name="zetime_signaling_vibrate_twice">Vibrate twice</string>
    <string name="zetime_signaling_vibrate_once">Vibrate once</string>
    <string name="zetime_signaling_vibrate_beep">Continuous vibration and beeping</string>
    <string name="zetime_signaling_beep">Continuous beeping</string>
    <string name="zetime_signaling_vibrate">Continuous vibration</string>
    <string name="zetime_signaling_none">Silent</string>
    <string name="zetime_title_alarm_signaling">Set type of signaling for the alarm</string>
    <string name="zetime_prefs_inactivity_su">Sunday</string>
    <string name="zetime_prefs_inactivity_sa">Saturday</string>
    <string name="zetime_prefs_inactivity_fr">Friday</string>
    <string name="zetime_prefs_inactivity_th">Thursday</string>
    <string name="zetime_prefs_inactivity_we">Wednesday</string>
    <string name="zetime_prefs_inactivity_tu">Tuesday</string>
    <string name="zetime_prefs_inactivity_mo">Monday</string>
    <string name="zetime_prefs_inactivity_repetitions">Repetitions</string>
    <string name="zetime_date_format_3">MM/DD/YY</string>
    <string name="zetime_date_format_2">DD/MM/YY</string>
    <string name="zetime_date_format_1">YY/MM/DD</string>
    <string name="zetime_date_format">Date format</string>
    <string name="zetime_calories_type_all">Active and inactive burnt calories</string>
    <string name="zetime_calories_type_active">Only active burnt calories</string>
    <string name="zetime_calories_type">Calories type</string>
    <string name="zetime_handmove_display_summary">Rotate your wrist to activate or deactivate the display.</string>
    <string name="zetime_handmove_display">Hand movement</string>
    <string name="zetime_activity_tracking_summary">Switching the activity tracking on, will count your steps and so on.</string>
    <string name="zetime_activity_tracking">Activity tracking</string>
    <string name="zetime_analog_mode_handsandsteps">Hands and steps</string>
    <string name="zetime_analog_mode_hands">Only hands</string>
    <string name="zetime_analog_mode">Analog mode</string>
    <string name="activity_prefs_alarm_min_heart_rate">Min heart rate</string>
    <string name="activity_prefs_alarm_max_heart_rate">Max heart rate</string>
    <string name="zetime_heart_rate_alarm_enable">Enable the heart rate alarm</string>
    <string name="zetime_title_heart_rate_alarm_summary">The watch will warn you when your heart rate exceeds the limits.</string>
    <string name="zetime_title_heart_rate_alarm">Heart rate alarm</string>
    <string name="zetime_title_screentime">Screen on duration in seconds</string>
    <string name="zetime_title_heartrate">Heart rate settings</string>
    <string name="zetime_title_settings">ZeTime settings</string>
    <string name="prefs_disconnect_notification">Disconnect notification</string>
    <string name="activity_type_exercise">Exercise</string>
    <string name="appwidget_not_connected">Not connected, alarm not set.</string>
    <string name="save_configuration">Save Configuration</string>
    <string name="mode_configuration">Mode Configuration</string>
    <string name="filter_mode">Filter Mode</string>
    <string name="toast_notification_filter_words_empty_hint">Please enter at least one word</string>
    <string name="filter_submode_all">All of the words</string>
    <string name="filter_submode_at_least_one">At least one of the words</string>
    <string name="filter_mode_blacklist">Block when words are contained</string>
    <string name="filter_mode_whitelist">Show when words are contained</string>
    <string name="filter_mode_none">Do not filter</string>
    <string name="toast_notification_filter_saved_successfully">Notification filter saved</string>
    <string name="edittext_notification_filter_words_hint">Enter desired words, new line for each</string>
    <string name="preferences_rtl_settings">Right To Left Support</string>
    <string name="pref_summary_contextual_arabic">Enable this to support contextual Arabic</string>
    <string name="pref_title_contextual_arabic">Contextual Arabic</string>
    <string name="pref_rtl_max_line_length_summary">Lengthens or shortens the lines Right-To-Left text is separated into</string>
    <string name="pref_rtl_max_line_length">Right-To-Left Max Line Length</string>
    <string name="pref_summary_rtl">Enable this if your device can not show right-to-left languages</string>
    <string name="pref_title_rtl">Right-To-Left</string>
    <string name="activity_prefs_chart_min_heart_rate">Min heart rate</string>
    <string name="activity_prefs_chart_max_heart_rate">Max heart rate</string>
    <string name="activity_prefs_charts">Chart settings</string>
    <string name="pref_invalid_frequency_message">Please enter a frequency between 87.5 and 108.0</string>
    <string name="pref_invalid_frequency_title">Invalid frequency</string>
    <string name="preferences_fm_frequency">FM Frequency</string>
    <string name="devicetype_roidmi3">Roidmi 3</string>
    <string name="devicetype_roidmi">Roidmi</string>
    <string name="controlcenter_change_fm_frequency">Change FM Frequency</string>
    <string name="warning">Warning!</string>
    <string name="share_log_warning">Please keep in mind Gadgetbridge logs files that may contain lots of personal info, including but not limited to health data, unique identifiers (such as a device\'s MAC address), music preferences, etc. Consider editing the file and removing this info before sending the file to a public issue report.</string>
    <string name="share_log">Share log</string>
    <string name="ok">OK</string>
    <string name="mi3_night_mode_sunset">At sunset</string>
    <string name="mi3_prefs_night_mode_summary">Lower band screen brightness automatically at night</string>
    <string name="mi3_prefs_night_mode">Night mode</string>
    <string name="minutes_30">30 minutes</string>
    <string name="minutes_10">10 minutes</string>
    <string name="minutes_5">5 minutes</string>
    <string name="minutes_1">1 minute</string>
    <string name="seconds_30">30 seconds</string>
    <string name="seconds_20">20 seconds</string>
    <string name="seconds_10">10 seconds</string>
    <string name="seconds_5">5 seconds</string>
    <string name="no_limit">No limit</string>
    <string name="pref_title_notifications_timeout">Minimum time between notifications</string>
    <string name="norwegian_bokmal">Norwegian Bokmål</string>
    <string name="you_did_not_sleep">You did not sleep</string>
    <string name="you_slept">You slept from %1$s to %2$s</string>
    <string name="japanese">Japanese</string>
    <string name="korean">Korean</string>
    <string name="polish">Polish</string>
    <string name="french">French</string>
    <string name="italian">Italian</string>
    <string name="german">German</string>
    <string name="mi3_prefs_band_screen_unlock_summary">Swipe up to unlock the band\'s screen</string>
    <string name="mi3_prefs_band_screen_unlock">Band screen unlock</string>
    <string name="title_activity_watch9_calibration">Watch 9 calibration</string>
    <string name="title_activity_watch9_pairing">Watch 9 pairing</string>
    <string name="watch9_calibration_button">Calibrate</string>
    <string name="watch9_calibration_hint">Set the time your device is showing to you right now.</string>
    <string name="watch9_time_seconds">Seconds:</string>
    <string name="watch9_time_hours">Hours:</string>
    <string name="watch9_time_minutes">Minutes:</string>
    <string name="devicetype_watch9">Watch 9</string>
    <string name="watch9_pairing_tap_hint">When your watch vibrates, shake the device or press its button.</string>
    <string name="controlcenter_calibrate_device">Calibrate Device</string>
    <string name="menuitem_music">Music</string>
    <string name="menuitem_more">More</string>
    <string name="menuitem_notifications">Notifications</string>
    <string name="devicetype_id115">ID115</string>
    <string name="vertical">Vertical</string>
    <string name="horizontal">Horizontal</string>
    <string name="prefs_screen_orientation">Screen orientation</string>
    <string name="russian">Russian</string>
    <string name="devicetype_mykronoz_zetime">MyKronoz ZeTime</string>
    <string name="pref_auto_fetch_limit_fetches_summary">Fetches every %d minutes</string>
    <string name="pref_auto_fetch_limit_fetches">Minimum time between fetches</string>
    <string name="pref_auto_fetch_summary">Fetch happens upon screen unlock. Only works if a lock mechanism is set!</string>
    <string name="pref_auto_fetch">Auto fetch activity data</string>
    <string name="whitelist_all_for_notifications">Whitelist all for notifications</string>
    <string name="blacklist_all_for_notifications">Blacklist all for notifications</string>
    <string name="devicetype_miband3">Mi Band 3</string>
    <string name="activity_prefs_distance_meters">Daily target: distance in metres</string>
    <string name="mi2_prefs_button_press_broadcast_summary">Broadcast message sent with the event. Parameter ‘button_id’ is added automatically to each message.</string>
    <string name="preferences_led_color">LED colour</string>
    <string name="fw_upgrade_notice_miband3">You are about to install the %s firmware on your Mi Band 3.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="devicetype_q8">Q8</string>
    <string name="pref_summary_pebble_gatt_clientonly">This is for Pebble 2 only and experimental, try this if you have connectivity problems</string>
    <string name="pref_title_pebble_gatt_clientonly">GATT client only</string>
    <string name="menuitem_alipay">Alipay</string>
    <string name="menuitem_settings">Settings</string>
    <string name="menuitem_compass">Compass</string>
    <string name="menuitem_timer">Countdown</string>
    <string name="menuitem_alarm">Alarm</string>
    <string name="menuitem_weather">Weather</string>
    <string name="menuitem_activity">Workout History</string>
    <string name="menuitem_status">Status</string>
    <string name="reset_index">Reset fetch date</string>
    <string name="share">Share</string>
    <string name="select_all">Select all</string>
    <string name="pref_title_audio_player">Preferred Audioplayer</string>
    <string name="pref_title_general_autoreconnect">Reconnect automatically</string>
    <string name="activity_type_treadmill">Treadmill</string>
    <string name="activity_type_biking">Biking</string>
    <string name="activity_summaries">Sport Activities</string>
    <string name="activity_type_unknown">Unknown activity</string>
    <string name="activity_type_swimming">Swimming</string>
    <string name="activity_type_walking">Walking</string>
    <string name="activity_type_running">Running</string>
    <string name="activity_type_not_worn">Device not worn</string>
    <string name="activity_type_deep_sleep">Deep sleep</string>
    <string name="activity_type_light_sleep">Light sleep</string>
    <string name="activity_type_activity">Activity</string>
    <string name="activity_type_not_measured">Not measured</string>
    <string name="controlcenter_start_activity_tracks">Your activity tracks</string>
    <string name="on">On</string>
    <string name="devicetype_xwatch">XWatch</string>
    <string name="notification_channel_name">General</string>
    <string name="spanish">Spanish</string>
    <string name="choose_auto_export_location">Choose export location</string>
    <string name="notif_export_failed_title">Export database failed! Please check your settings.</string>
    <string name="pref_summary_auto_export_interval">Export every %d hour</string>
    <string name="pref_title_auto_export_interval">Export interval</string>
    <string name="pref_title_auto_export_location">Export location</string>
    <string name="pref_title_auto_export_enabled">Auto export enabled</string>
    <string name="pref_header_auto_export">Auto export</string>
    <string name="pref_title_weather">Weather</string>
    <string name="devicetype_teclast_h30">Teclast H30</string>
    <string name="devicetype_no1_f1">No.1 F1</string>
    <string name="devicetype_exrizu_k8">Exrizu K8</string>
    <string name="devicetype_makibes_f68">Makibes F68</string>
    <string name="devicetype_hplus">HPlus</string>
    <string name="devicetype_liveview">LiveView</string>
    <string name="devicetype_vibratissimo">Vibratissimo</string>
    <string name="devicetype_amazfit_cor">Amazfit Cor</string>
    <string name="devicetype_amazfit_bip">Amazfit Bip</string>
    <string name="devicetype_miband2">Mi Band 2</string>
    <string name="devicetype_miband">Mi Band</string>
    <string name="devicetype_pebble">Pebble</string>
    <string name="devicetype_test">Test Device</string>
    <string name="devicetype_unknown">Unknown Device</string>
    <string name="kind_watchface">Watchface</string>
    <string name="kind_resources">Resources</string>
    <string name="kind_gps_cep">GPS Error Correction</string>
    <string name="kind_gps_almanac">GPS Almanac</string>
    <string name="kind_gps">GPS Firmware</string>
    <string name="kind_font">Font</string>
    <string name="kind_invalid">Invalid data</string>
    <string name="kind_firmware">Firmware</string>
    <string name="pref_title_weather_location">Weather location (for LineageOS weather provider)</string>
    <string name="interval_one_hour">once an hour</string>
    <string name="interval_thirty_minutes">every 30 minutes</string>
    <string name="interval_ten_minutes">every 10 minutes</string>
    <string name="interval_five_minutes">every 5 minutes</string>
    <string name="interval_one_minute">once a minute</string>
    <string name="prefs_title_heartrate_measurement_interval">Whole day HR measurement</string>
    <string name="english">English</string>
    <string name="traditional_chinese">Traditional Chinese</string>
    <string name="simplified_chinese">Simplified Chinese</string>
    <string name="automatic">Automatic</string>
    <string name="pref_title_charts_swipe">Enable left/right swipe in the charts activity</string>
    <string name="fw_upgrade_notice_amazfitcor">You are about to install the %s firmware on your Amazfit Cor.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="controlcenter_connect">Connect…</string>
    <string name="activity_web_view">Web View Activity</string>
    <string name="pref_summary_pebble_enable_bgjs">When enabled, allows watchfaces to show weather, battery info etc.</string>
    <string name="pref_title_pebble_enable_bgjs">Enable background JS</string>
    <string name="_pebble_watch_reply">Reply</string>
    <string name="_pebble_watch_mute">Mute</string>
    <string name="_pebble_watch_open_on_phone">Open on Android device</string>
    <string name="mi2_prefs_button_press_count_max_delay_summary">Maximum delay between button presses in milliseconds</string>
    <string name="mi2_prefs_button_press_count_max_delay">Maximum delay between presses</string>
    <string name="mi2_prefs_button_action_vibrate_summary">Enable band vibration on button action triggered</string>
    <string name="mi2_prefs_button_action_vibrate">Enable band vibration</string>
    <string name="mi2_prefs_button_action_summary">Enable action on specified number of button presses</string>
    <string name="mi2_prefs_button_action">Enable button action</string>
    <string name="mi2_prefs_button_press_broadcast">Broadcast message to send</string>
    <string name="mi2_prefs_button_press_count_summary">Number of button presses to trigger an Event 1. Subsequent same amount of presses create Event 2 and so on.</string>
    <string name="mi2_prefs_button_press_count">Button press count</string>
    <string name="mi2_prefs_button_actions_summary">Specify button press actions</string>
    <string name="mi2_prefs_button_actions">Button actions</string>
    <string name="fw_upgrade_notice_amazfitbip">You are about to install the %s firmware on your Amazfit Bip.
\n
\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="discovery_dont_pair">Don\'t Pair</string>
    <string name="discovery_yes_pair">Pair</string>
    <string name="discovery_pair_question">Select Pair to pair your devices. If this fails, try again without pairing.</string>
    <string name="discovery_pair_title">Pair with %1$s\?</string>
    <string name="discovery_successfully_bonded">Bound to %1$s.</string>
    <string name="discovery_enable_bluetooth">Enable Bluetooth to discover devices.</string>
    <string name="discovery_trying_to_connect_to">Trying to connect to: %1$s</string>
    <string name="discovery_bonding_failed_immediately">Bonding with %1$s failed immediately.</string>
    <string name="discovery_attempting_to_pair">Attempting to pair with %1$s</string>
    <string name="mi2_dnd_scheduled">Scheduled (time interval)</string>
    <string name="mi2_dnd_automatic">Automatic (sleep detection)</string>
    <string name="mi2_dnd_off">Off</string>
    <string name="off">Off</string>
    <string name="mi2_enable_text_notifications_summary">Needs firmware &gt;= 1.0.1.28 and Mili_pro.ft* installed.</string>
    <string name="mi2_enable_text_notifications">Text notifications</string>
    <string name="mi2_fw_installhandler_fw53_hint">You need to install version %1$s before installing this firmware!</string>
    <string name="miband2_prefs_timeformat">Mi2: Time format</string>
    <string name="find_device_you_found_it">You found it!</string>
    <string name="StringUtils_sender">(%1$s)</string>
    <string name="pref_screen_notification_profile_alarm_clock">Alarm clock</string>
    <string name="timeformat_am_pm">AM/PM</string>
    <string name="timeformat_24h">24H</string>
    <string name="unit_imperial">Imperial</string>
    <string name="unit_metric">Metric</string>
    <string name="pref_summary_setup_bt_pairing">Deactivate this if you have trouble connecting</string>
    <string name="pref_title_setup_bt_pairing">Enable Bluetooth pairing</string>
    <string name="weather_notification_label">Make sure that this skin is enabled in the Weather Notification app to get weather information on your Pebble.
\n
\nNo configuration is needed here.
\n
\nYou can enable the system weather app of your Pebble from the app management.
\n
\nSupported watchfaces will show the weather automatically.</string>
    <string name="pebble_pairing_hint">A pairing dialog will pop up on your Android device. If not, look in the notification drawer and accept the pairing request. Also accept it on your Pebble afterwards.</string>
    <string name="title_activity_pebble_pairing">Pebble pairing</string>
    <string name="title_activity_vibration">Vibration</string>
    <string name="Delete">Delete</string>
    <string name="Cancel">Cancel</string>
    <string name="dbmanagementactivity_overwrite">Overwrite</string>
    <string name="dbmanagementactivity_old_activity_db_deletion_failed">Old Activity database deletion failed.</string>
    <string name="dbmanagementactivity_old_activity_db_successfully_deleted">Old activity data deleted.</string>
    <string name="dbmanagementactivity_delete_old_activitydb_confirmation">Really delete the old activity database\? Activity data that was not imported will be lost.</string>
    <string name="dbmanagementactivity_delete_old_activity_db">Delete old Activity Database\?</string>
    <string name="dbmanagementactivity_db_deletion_failed">Database deletion failed.</string>
    <string name="dbmanagementactivity_database_successfully_deleted">Data deleted.</string>
    <string name="dbmanagementactivity_really_delete_entire_db">Really delete the entire database\? All your activity data and information about your devices will be lost.</string>
    <string name="dbmanagementactivity_delete_activity_data_title">Delete Activity Data\?</string>
    <string name="dbmanagementactivity_error_importing_shared">Error importing preference: %1$s</string>
    <string name="dbmanagementactivity_error_importing_db">Error importing DB: %1$s</string>
    <string name="dbmanagementactivity_import_successful">Imported.</string>
    <string name="dbmanagementactivity_overwrite_database_confirmation">Really overwrite the current data? All your current activity data (if any) and preferences will be overwritten.</string>
    <string name="pref_summary_pebble_health_store_raw">Stores the data \"as is\", increasing the database usage to allow for later interpretation.</string>
    <string name="pref_title_pebble_health_store_raw">Store raw record in the database</string>
    <string name="live_activity_heart_rate">Heart rate</string>
    <string name="charts_legend_heartrate">Heart rate</string>
    <string name="updatefirmwareoperation_firmware_not_sent">Firmware not sent</string>
    <string name="updatefirmwareoperation_update_in_progress">Flashing firmware</string>
    <string name="DEVINFO_HR_VER">"HR: "</string>
    <string name="error_creating_directory_for_logfiles">Error creating directory for log files: %1$s</string>
    <string name="device_fw">Firmware version: %1$s</string>
    <string name="device_hw">Hardware revision: %1$s</string>
    <string name="activity_prefs_sleep_duration">Preferred sleep duration in hours</string>
    <string name="add_widget">Add widget</string>
    <string name="appwidget_text">Zzz</string>
    <string name="authentication_required">Authentication required</string>
    <string name="authenticating">Authenticating</string>
    <string name="activity_prefs_weight_kg">Weight in kg</string>
    <string name="activity_prefs_height_cm">Height in cm</string>
    <string name="activity_prefs_gender">Gender</string>
    <string name="activity_prefs_year_birth">Year of birth</string>
    <string name="activity_prefs_about_you">About you</string>
    <string name="waiting_for_reconnect">Waiting for reconnect</string>
    <string name="FetchActivityOperation_about_to_transfer_since">About to transfer data since %1$s</string>
    <string name="mi2_prefs_do_not_disturb_end">End time</string>
    <string name="mi2_prefs_do_not_disturb_start">Start time</string>
    <string name="mi2_prefs_inactivity_warnings_dnd_summary">Disable inactivity warnings for a time interval</string>
    <string name="mi2_prefs_inactivity_warnings_threshold">Inactivity threshold (in minutes)</string>
    <string name="mi2_prefs_inactivity_warnings_summary">The band will vibrate when you have been inactive for a while</string>
    <string name="mi2_prefs_inactivity_warnings">Inactivity warnings</string>
    <string name="mi2_prefs_do_not_disturb_summary">The band won\'t receive notifications while active</string>
    <string name="mi2_prefs_do_not_disturb">Do Not Disturb</string>
    <string name="mi2_prefs_rotate_wrist_to_switch_info">Rotate wrist to switch info</string>
    <string name="mi2_prefs_activate_display_on_lift">Activate display upon lift</string>
    <string name="mi2_prefs_display_items_summary">Choose the items displayed on the band screen</string>
    <string name="mi2_prefs_display_items">Display items</string>
    <string name="mi2_prefs_goal_notification_summary">The band will vibrate when the daily steps goal is reached</string>
    <string name="mi2_prefs_goal_notification">Goal notification</string>
    <string name="dateformat_date_time">Time &amp; date</string>
    <string name="dateformat_time">Time</string>
    <string name="miband2_prefs_dateformat">Date format</string>
    <string name="miband_prefs_device_time_offset_hours">Device time offset in hours (for detecting sleep of shift workers)</string>
    <string name="miband_prefs_hr_sleep_detection">Use heart rate sensor to improve sleep detection</string>
    <string name="miband_prefs_reserve_alarm_calendar">Alarms to reserve for upcoming events</string>
    <string name="fwinstaller_firmware_not_compatible_to_device">This firmware is not compatible with the device</string>
    <string name="miband_fwinstaller_incompatible_version">Incompatible firmware</string>
    <string name="pref_title_keep_data_on_device">Keep activity data on device</string>
    <string name="user_feedback_all_alarms_disabled">All alarms disabled</string>
    <string name="device_not_connected">Not connected.</string>
    <string name="abstract_chart_fragment_kind_not_worn">Not worn</string>
    <string name="abstract_chart_fragment_kind_deep_sleep">Deep sleep</string>
    <string name="abstract_chart_fragment_kind_light_sleep">Light sleep</string>
    <string name="abstract_chart_fragment_kind_activity">Activity</string>
    <string name="live_activity_start_your_activity">Start your activity</string>
    <string name="live_activity_steps_per_minute_history">Steps per minute history</string>
    <string name="live_activity_total_steps">Total steps</string>
    <string name="live_activity_current_steps_per_minute">Current steps/min</string>
    <string name="live_activity_steps_history">Steps history</string>
    <string name="pref_summary_low_latency_fw_update">This might help on devices where firmware flashing fails.</string>
    <string name="pref_title_low_latency_fw_update">Use low-latency mode for firmware flashing</string>
    <string name="pref_summary_keep_data_on_device">Will keep activity data on the Mi Band even after synchronisation. Useful if GB is used together with other apps.</string>
    <string name="pref_summary_dont_ack_transfers">If not ACKed to the band, activity data is not cleared. Useful if GB is used together with other apps.</string>
    <string name="pref_title_dont_ack_transfer">Do not ACK activity data transfer</string>
    <string name="weeksteps_today_steps_description">Steps today, target: %1$s</string>
    <string name="liveactivity_live_activity">Live activity</string>
    <string name="battery">Battery</string>
    <string name="heart_rate">Heart rate</string>
    <string name="clock">Clock</string>
    <string name="distance">Distance</string>
    <string name="calories">Calories</string>
    <string name="chart_steps">Steps</string>
    <string name="updatefirmwareoperation_write_failed">Firmware flashing failed</string>
    <string name="updatefirmwareoperation_update_complete_rebooting">Firmware installation complete, rebooting device…</string>
    <string name="updatefirmwareoperation_update_complete">Firmware installation complete</string>
    <string name="title_activity_notification_filter">Notification Filter</string>
    <string name="appwidget_setting_alarm">Setting alarm for %1$02d:%2$02d</string>
    <string name="devicetype_casiogb6900">Casio GB-6900</string>
    <string name="debugactivity_really_factoryreset">Doing a factory reset will delete all data from the connected device (if supported). Xiaomi/Huami devices also change Bluetooth MAC address, so they appear as a new devices to Gadgetbridge.</string>
    <string name="debugactivity_really_factoryreset_title">Really factory reset\?</string>
    <string name="live_activity_max_heart_rate">Current / Max heart rate: %1$d / %2$d</string>
    <string name="no_data">No data</string>
    <string name="overstep">Overstep: %1$d</string>
    <string name="lack_of_step">Lack of steps: %1$d</string>
    <string name="overslept">Overslept: %1$s</string>
    <string name="lack_of_sleep">Lack of sleep: %1$s</string>
    <string name="language_and_region_prefs">Language and region settings</string>
    <string name="updatefirmwareoperation_metadata_updateproblem">Problem with the firmware metadata transfer</string>
    <string name="updatefirmwareoperation_updateproblem_do_not_reboot">Problem with the firmware transfer. DO NOT REBOOT your Mi Band!</string>
    <string name="pbwinstallhandler_incorrect_hw_revision">Hardware revision mismatch!</string>
    <string name="pbwinstallhandler_correct_hw_revision">Correct hardware revision</string>
    <string name="pbw_installhandler_pebble_firmware">Pebble Firmware %1$s</string>
    <string name="fwappinstaller_connection_state">Connection to device: %1$s</string>
    <string name="miband_fwinstaller_untested_version">Untested version!</string>
    <string name="miband_fwinstaller_compatible_version">Compatible version</string>
    <string name="fwapp_install_device_not_ready">File cannot be installed, device not ready.</string>
    <string name="updating_firmware">Flashing firmware…</string>
    <string name="activity_sleepchart_activity_and_sleep">Activity</string>
    <string name="weekstepschart_steps_a_week">Steps per week</string>
    <string name="weeksleepchart_today_sleep_description">Sleep today, target: %1$s</string>
    <string name="weeksleepchart_sleep_a_week">Sleep per week</string>
    <string name="sleepchart_your_sleep">Sleep</string>
    <string name="notif_battery_low_bigtext_number_of_charges">Number of charges: %s</string>
    <string name="notif_battery_low_bigtext_last_charge_time">Last charge: %s 
\n</string>
    <string name="notif_battery_low_title">Gadget battery Low!</string>
    <string name="installer_activity_wait_while_determining_status">Please wait while determining the installation status…</string>
    <string name="pbw_install_handler_hw_revision_mismatch">Unable to install the given firmware: It doesn\'t match your Pebble\'s hardware revision.</string>
    <string name="pbw_install_handler_unable_to_install">Unable to install the given file: %1$s</string>
    <string name="installer_activity_unable_to_find_handler">Unable to find a handler to install this file.</string>
    <string name="cannot_connect">Cannot connect: %1$s</string>
    <string name="controlcenter_start_activitymonitor">Your activity (ALPHA)</string>
    <string name="dbaccess_error_executing">Error executing \'%1$s\'</string>
    <string name="miband_prefs_fitness_goal">Daily step target</string>
    <string name="user_feedback_miband_activity_data_transfer">About to transfer %1$s of data starting from %2$s</string>
    <string name="chart_no_data_synchronize">No data. Synchronise device\?</string>
    <string name="user_feedback_miband_set_alarms_ok">Alarms sent to device.</string>
    <string name="user_feedback_miband_set_alarms_failed">There was an error setting the alarms, please try again.</string>
    <string name="alarm_smart_wakeup">Smart wakeup</string>
    <string name="alarm_sat_short">Sat</string>
    <string name="alarm_fri_short">Fri</string>
    <string name="alarm_thu_short">Thu</string>
    <string name="alarm_wed_short">Wed</string>
    <string name="alarm_tue_short">Tue</string>
    <string name="alarm_mon_short">Mon</string>
    <string name="alarm_sun_short">Sun</string>
    <string name="title_activity_alarm_details">Alarm details</string>
    <string name="controlcenter_start_configure_alarms">Configure alarms</string>
    <string name="title_activity_set_alarm">Configure alarms</string>
    <string name="title_activity_charts">Activity and Sleep</string>
    <string name="control_center_cancel_to_stop_vibration">Cancel to stop vibration.</string>
    <string name="control_center_find_lost_device">Find lost device</string>
    <string name="stats_y_axis_label">Steps per minute</string>
    <string name="stats_x_axis_label">Total minutes</string>
    <string name="stats_title">Speed zones</string>
    <string name="pref_screen_notification_profile_generic_social">Social network</string>
    <string name="pref_screen_notification_profile_generic_navigation">Navigation</string>
    <string name="pref_screen_notification_profile_generic_chat">Chat</string>
    <string name="pref_screen_notification_profile_incoming_call">Incoming call notification</string>
    <string name="pref_screen_notification_profile_email">E-mail notification</string>
    <string name="pref_screen_notification_profile_generic">Generic notification</string>
    <string name="pref_header_vibration_settings">Vibration settings</string>
    <string name="pref_screen_notification_profile_sms">SMS notification</string>
    <string name="vibration_try">Try</string>
    <string name="miband_prefs_vibration">Vibration</string>
    <string name="vibration_profile_alarm_clock">Alarm clock</string>
    <string name="vibration_profile_ring">Ring</string>
    <string name="vibration_profile_waterdrop">Waterdrop</string>
    <string name="vibration_profile_long">Long</string>
    <string name="vibration_profile_medium">Medium</string>
    <string name="vibration_profile_short">Short</string>
    <string name="vibration_profile_staccato">Staccato</string>
    <string name="pref_screen_vibration_profile">Vibration profile</string>
    <string name="sleep_activity_date_range">From %1$s to %2$s</string>
    <string name="busy_task_fetch_activity_data">Fetching activity data</string>
    <string name="initializing">Initializing</string>
    <string name="pref_write_logfiles">Write log files</string>
    <string name="title_activity_sleepmonitor">Sleep monitor</string>
    <string name="pref_header_vibration_count">Vibration count</string>
    <string name="miband_prefs_alias">Name/Alias</string>
    <string name="candidate_item_device_image">Device image</string>
    <string name="discovery_note">Note:</string>
    <string name="discovery_connected_devices_hint">Make your device discoverable. Currently connected devices will likely not be discovered. Activate location (e.g. GPS) on Android 6+. Disable Privacy Guard for Gadgetbridge, because it may crash and reboot your phone. If no device is found after a few minutes, try again after rebooting your mobile device.</string>
    <string name="appinstaller_install">Install</string>
    <string name="miband_pairing_tap_hint">When your Mi Band vibrates and blinks, tap it a few times in a row.</string>
    <string name="miband_pairing_using_dummy_userdata">No valid user data given, using dummy user data for now.</string>
    <string name="right">Right</string>
    <string name="left">Left</string>
    <string name="other">Other</string>
    <string name="female">Female</string>
    <string name="male">Male</string>
    <string name="preferences_miband_settings">Mi Band / Amazfit settings</string>
    <string name="preferences_category_device_specific_settings">Device specific settings</string>
    <string name="message_cannot_pair_no_mac">No MAC address passed, cannot pair.</string>
    <string name="pairing_already_bonded">Already bonded with %1$s (%2$s), connecting…</string>
    <string name="pairing_in_progress">Bonding in progress: %1$s (%2$s)</string>
    <string name="pairing_unable_to_pair_with">Unable to pair with %1$s (%2$s)</string>
    <string name="pairing_creating_bond_with">Creating bond with %1$s (%2$s)</string>
    <string name="pairing">Pairing with %s…</string>
    <string name="title_activity_mi_band_pairing">Pair your Mi Band</string>
    <string name="android_pairing_hint">Use the Android Bluetooth pairing dialog to pair the device.</string>
    <string name="title_activity_android_pairing">Pair device</string>
    <string name="action_discover">Connect new device</string>
    <string name="discovery_start_scanning">Start discovery</string>
    <string name="discovery_stop_scanning">Stop scanning</string>
    <string name="title_activity_discovery">Device discovery</string>
    <string name="initialized">initialized</string>
    <string name="n_a">N/A</string>
    <string name="app_install_info">You are about to install the following app:
\n
\n%1$s
\nVersion %2$s by %3$s
\n</string>
    <string name="firmware_install_warning">YOU ARE TRYING TO INSTALL A FIRMWARE, PROCEED AT YOUR OWN RISK.
\n
\n
\n This firmware is for HW Revision: %s</string>
    <string name="installation_successful">Installed</string>
    <string name="installation_failed_">Installation failed</string>
    <string name="installing_binary_d_d">Installing binary %1$d/%2$d</string>
    <string name="gadgetbridge_running_generic">Gadgetbridge running</string>
    <string name="cannot_connect_bt_address_invalid_">Cannot connect. Bluetooth address invalid\?</string>
    <string name="tap_a_device_to_connect">Tap a device to connect</string>
    <string name="tap_connected_device_for_vibration">Tap connected device for vibration</string>
    <string name="tap_connected_device_for_activity">Tap connected device for activity</string>
    <string name="tap_connected_device_for_app_mananger">Tap connected device for App manager</string>
    <string name="bluetooth_is_disabled_">Bluetooth is disabled.</string>
    <string name="bluetooth_is_not_supported_">Bluetooth is not supported.</string>
    <string name="this_is_a_test_notification_from_gadgetbridge">This is a test notification from Gadgetbridge</string>
    <string name="test_notification">Test notification</string>
    <string name="test">Test</string>
    <string name="_unknown_">(unknown)</string>
    <string name="unknown_state">Unknown state</string>
    <string name="connected">Connected</string>
    <string name="connecting">Connecting</string>
    <string name="not_connected">Not connected</string>
    <string name="preferences_hplus_settings">HPlus/Makibes settings</string>
    <string name="prefs_title_all_day_heart_rate">All day heart rate measurement</string>
    <string name="pref_title_screentime">Screen on duration</string>
    <string name="pref_title_timeformat">Time format</string>
    <string name="pref_title_unit_system">Units</string>
    <string name="pref_title_pebble_reconnect_attempts">Reconnection attempts</string>
    <string name="pref_summary_pebble_always_ack_pebblekit">Will cause messages that are sent to external 3rd party apps to be acknowledged always and immediately</string>
    <string name="pref_title_pebble_always_ack_pebblekit">Prematurely ACK PebbleKit</string>
    <string name="pref_summary_pebble_enable_applogs">Will cause logs from watch apps to be logged by Gadgetbridge (requires reconnect)</string>
    <string name="pref_title_pebble_enable_applogs">Enable watch app logging</string>
    <string name="pref_summary_pebble_mtu_limit">If your Pebble 2/Pebble LE does not work as expected, try this setting to limit the MTU (valid range 20–512)</string>
    <string name="pref_title_pebble_mtu_limit">Pebble 2/LE GATT MTU limit</string>
    <string name="pref_summary_pebble_forcele">Use experimental Pebble LE support for all Pebbles, instead of BT classic. This requires pairing to non LE first, and then Pebble LE</string>
    <string name="pref_title_pebble_forcele">Always prefer BLE</string>
    <string name="pref_summary_pebble_forceuntested">Enable untested features. KNOW WHAT YOU ARE DOING!</string>
    <string name="pref_title_pebble_forceuntested">Enable untested features</string>
    <string name="pref_summary_pebble_forceprotocol">This option forces using the latest notification protocol depending on the firmware version. KNOW WHAT YOU ARE DOING!</string>
    <string name="pref_title_pebble_forceprotocol">Force notification protocol</string>
    <string name="toast_aqurired_networklocation">location acquired</string>
    <string name="toast_enable_networklocationprovider">Please enable network location</string>
    <string name="pref_summary_location_keep_uptodate">Try to get the current location at runtime, use the stored location as fallback</string>
    <string name="pref_title_location_keep_uptodate">Keep location updated</string>
    <string name="pref_title_location_longitude">Longitude</string>
    <string name="pref_title_location_latitude">Latitude</string>
    <string name="pref_title_location_aquire">Acquire location</string>
    <string name="pref_header_location">Location</string>
    <string name="pref_pebble_privacy_mode_complete">Show only the notification icon</string>
    <string name="pref_pebble_privacy_mode_content">Shift the notification text off-screen</string>
    <string name="pref_pebble_privacy_mode_off">Normal notifications</string>
    <string name="pref_title_pebble_privacy_mode">Privacy mode</string>
    <string name="pref_summary_autoremove_notifications">Notifications are automatically removed from the device when dismissed from the phone</string>
    <string name="pref_title_autoremove_notifications">Autoremove dismissed notifications</string>
    <string name="pref_summary_enable_calendar_sync">Send calendar events to the timeline</string>
    <string name="pref_title_enable_calendar_sync">Sync calendar</string>
    <string name="pref_summary_sunrise_sunset">Send sunrise and sunset times based on the location to the Pebble timeline</string>
    <string name="pref_title_sunrise_sunset">Sunrise and sunset</string>
    <string name="pref_header_pebble_timeline">Pebble timeline</string>
    <string name="pref_summary_enable_pebblekit">Enable experimental support for Android apps using PebbleKit</string>
    <string name="pref_title_enable_pebblekit">Allow 3rd party Android App access</string>
    <string name="pref_summary_enable_outgoing_call">Disabling this will also stop the Pebble 2/LE to vibrate on outgoing calls</string>
    <string name="pref_title_enable_outgoing_call">Support outgoing calls</string>
    <string name="pref_title_pebble_sync_morpheuz">Sync Morpheuz</string>
    <string name="pref_title_pebble_sync_misfit">Sync Misfit</string>
    <string name="pref_title_pebble_sync_health">Sync Pebble Health</string>
    <string name="pref_title_pebble_activitytracker">Preferred activity tracker</string>
    <string name="pref_header_activitytrackers">Activity trackers</string>
    <string name="pref_title_pebble_settings">Pebble settings</string>
    <string name="pref_title_development_miaddr">Mi Band address</string>
    <string name="pref_header_development">Developer options</string>
    <string name="pref_title_canned_messages_set">Update on device</string>
    <string name="pref_title_canned_messages_dismisscall">Call Dismissal</string>
    <string name="pref_title_canned_reply_suffix">Common suffix</string>
    <string name="pref_title_canned_replies">Replies</string>
    <string name="pref_header_cannned_messages">Canned messages</string>
    <string name="pref_blacklist_calendars">Blacklist Calendars</string>
    <string name="pref_call_privacy_mode_complete">Hide name and number</string>
    <string name="pref_call_privacy_mode_number">Hide number but display name</string>
    <string name="pref_call_privacy_mode_name">Hide name but display number</string>
    <string name="pref_call_privacy_mode_off">Display name and number</string>
    <string name="pref_title_call_privacy_mode">Call privacy mode</string>
    <string name="pref_header_privacy">Privacy</string>
    <string name="never">Never</string>
    <string name="when_screen_off">When screen is off</string>
    <string name="always">Always</string>
    <string name="pref_summary_transliteration">Enable this if your device has no support for your language\'s font</string>
    <string name="pref_title_transliteration">Transliteration</string>
    <string name="pref_summary_notification_filter">Block all notifications when Do Not Disturb is enabled on the phone</string>
    <string name="pref_title_notification_filter">Do Not Disturb</string>
    <string name="pref_title_whenscreenon">…also when screen is on</string>
    <string name="pref_title_notifications_generic">Generic notification support</string>
    <string name="pref_summary_notifications_pebblemsg">Support for apps that send notifications to the Pebble via PebbleKit.</string>
    <string name="pref_title_notifications_pebblemsg">Pebble Messages</string>
    <string name="pref_title_notifications_sms">SMS</string>
    <string name="pref_title_notifications_call">Phone Calls</string>
    <string name="pref_title_notifications_repetitions">Repetitions</string>
    <string name="pref_header_notifications">Notifications</string>
    <string name="pref_summary_minimize_priority_on">The icon in the status bar and the notification in the lockscreen are hidden</string>
    <string name="pref_summary_minimize_priority_off">The icon in the status bar and the notification in the lockscreen are shown</string>
    <string name="pref_title_minimize_priority">Hide the Gadgetbridge notification</string>
    <string name="pref_title_language">Language</string>
    <string name="pref_theme_dark">Dark</string>
    <string name="pref_theme_light">Light</string>
    <string name="pref_title_theme">Theme</string>
    <string name="pref_summary_datetime_syctimeonconnect">Sync time to Gadgetbridge device when connecting, and when time or time zone changes on Android device</string>
    <string name="pref_title_datetime_syctimeonconnect">Sync time</string>
    <string name="pref_header_datetime">Date and Time</string>
    <string name="pref_default">Default</string>
    <string name="pref_title_general_autostartonboot">Start automatically</string>
    <string name="pref_title_general_autoconnectonbluetooth">Connect to Gadgetbridge device when Bluetooth is turned on</string>
    <string name="pref_header_general">General settings</string>
    <string name="title_activity_settings">Settings</string>
    <string name="miband_firmware_suggest_whitelist">If you still want to proceed and things continue to work properly afterwards, please tell the Gadgetbridge developers to whitelist the %s firmware version.</string>
    <string name="miband_firmware_unknown_warning">This firmware is untested and may not be compatible with Gadgetbridge.
\n
\nYou are DISCOURAGED from flashing it!</string>
    <string name="miband_firmware_known">This firmware has been tested and is known to be compatible with Gadgetbridge.</string>
    <string name="dbmanagementactivity_import_data_title">Import Data\?</string>
    <string name="dbmanagementactivity_error_exporting_shared">Error exporting preference: %1$s</string>
    <string name="dbmanagementactivity_error_exporting_db">Error exporting DB: %1$s</string>
    <string name="dbmanagementactivity_exported_to">Exported to: %1$s</string>
    <string name="dbmanagementactivvity_cannot_access_export_path">Cannot access export path. Please contact the developers.</string>
    <string name="activity_db_management_merge_old_title">Legacy database delete</string>
    <string name="activity_db_management_import_export_explanation">The export/import operations use the following path (see below) to a directory on your device. This directory is accessible to other Android apps and your computer. Do note, that this directory and all containing files are deleted if you uninstall Gadgetbridge. The data includes:
\n Export_preference - global settings
\n Export_preference_MAC - device specific settings
\n Gadgetbridge - device and activity database
\n Gadgetbridge_date - database exported on a date
\n *.gpx - GPS recordings
\n *.log - log files
\nExpect to find your exported files (or place the files you want to import) there:</string>
    <string name="title_activity_db_management">Database management</string>
    <string name="action_db_management">Data management</string>
    <string name="fw_multi_upgrade_notice">You are about to install the %1$s and %2$s firmware, instead of the ones currently on your Mi Band.</string>
    <string name="fw_upgrade_notice">You are about to install the %s.</string>
    <string name="title_activity_fw_app_insaller">FW/App installer</string>
    <string name="title_activity_calblacklist">Blacklisted Calendars</string>
    <string name="app_move_to_top">Move to top</string>
    <string name="app_configure">Configure</string>
    <string name="appmanager_weather_install_provider">Install the Weather Notification app</string>
    <string name="appmanager_weather_deactivate">Deactivate System Weather app</string>
    <string name="appmanager_weather_activate">Activate System Weather app</string>
    <string name="appmanager_hrm_deactivate">Deactivate HRM</string>
    <string name="appmanager_hrm_activate">Activate HRM</string>
    <string name="appmanager_health_deactivate">Deactivate</string>
    <string name="appmanager_health_activate">Activate</string>
    <string name="appmanager_app_openinstore">Search in Pebble appstore</string>
    <string name="appmananger_app_reinstall">Reinstall</string>
    <string name="appmananger_app_delete_cache">Delete and remove from cache</string>
    <string name="appmananger_app_delete">Delete</string>
    <string name="appmanager_installed_watchfaces">Installed watchfaces</string>
    <string name="appmanager_installed_watchapps">Installed apps</string>
    <string name="appmanager_cached_watchapps_watchfaces">Apps in cache</string>
    <string name="title_activity_appmanager">App Manager</string>
    <string name="title_activity_debug">Debug</string>
    <string name="controlcenter_snackbar_requested_screenshot">Taking a screenshot of the device</string>
    <string name="controlcenter_snackbar_connecting">Connecting…</string>
    <string name="controlcenter_snackbar_disconnecting">Disconnecting</string>
    <string name="controlcenter_snackbar_need_longpress">Long press the card to disconnect</string>
    <string name="controlcenter_navigation_drawer_close">Close navigation drawer</string>
    <string name="controlcenter_navigation_drawer_open">Open navigation drawer</string>
    <string name="controlcenter_delete_device_dialogmessage">This will delete the device and all associated data!</string>
    <string name="controlcenter_delete_device_name">Delete %1$s</string>
    <string name="controlcenter_delete_device">Delete Device</string>
    <string name="controlcenter_disconnect">Disconnect</string>
    <string name="controlcenter_take_screenshot">Take Screenshot</string>
    <string name="controlcenter_find_device">Find lost device</string>
    <string name="controlcenter_fetch_activity_data">Synchronise</string>
    <string name="action_donate">Donate</string>
    <string name="action_quit">Quit</string>
    <string name="action_debug">Debug</string>
    <string name="action_settings">Settings</string>
    <string name="title_activity_controlcenter_generic">Gadgetbridge</string>
    <string name="application_name_generic">Gadgetbridge</string>
    <string name="pref_qhybrid_save_raw_activity_files">Save raw activity files</string>
    <string name="menuitem_workout">Workout</string>
    <string name="menuitem_eventreminder">Event Reminder</string>
    <string name="menuitem_hr">Heart Rate</string>
    <string name="menuitem_pai">PAI</string>
    <string name="devicetype_watchxplus">Watch X Plus</string>
    <string name="devicetype_watchx">Watch X</string>
    <string name="czesh">Czech</string>
    <string name="swedish">Swedish</string>
    <string name="hebrew">Hebrew</string>
    <string name="greek">Greek</string>
    <string name="hungarian">Hungarian</string>
    <string name="romanian">Romanian</string>
    <string name="power_mode_watch">Only watch</string>
    <string name="power_mode_saving">Power saving</string>
    <string name="power_mode_normal">Normal</string>
    <string name="power_mode_title">Watch power mode</string>
    <string name="prefs_sensors_button_bp_calibration_sum">Press here to begin calibration</string>
    <string name="prefs_sensors_button_bp_calibration">Calibration</string>
    <string name="pref_sensors_bp_calibration_high">Blood Pressure SYSTOLIC (high)</string>
    <string name="pref_sensors_bp_calibration_low">Blood Pressure DIASTOLIC (low)</string>
    <string name="pref_sensors_bp_calibration">Blood Pressure calibration</string>
    <string name="pref_title_sensors_altitude">Altitude calibration</string>
    <string name="pref_header_sensors_calibration">Sensor Calibration</string>
    <string name="pref_title_device_spec_settings_show_raw_graph">Show RAW data on activity graph</string>
    <string name="pref_summary_device_spec_settings_title_force_time">Force auto synchronise time on reconnect. Analog hands may show incorrect time!</string>
    <string name="pref_title_device_spec_settings_force_time">Force synchronise time</string>
    <string name="pref_header_device_spec_settings">Device settings</string>
    <string name="pref_summary_notifications_and_calls_title_shake_reject">Duplicates watch button action</string>
    <string name="prefs_notifications_and_calls_shake_reject">Shake wrist ignore/reject call</string>
    <string name="pref_summary_notifications_and_calls_title_reject">Off – ignore, On – reject</string>
    <string name="prefs_notifications_and_calls_reject">Button ignore/reject call</string>
    <string name="pref_header_notifications_and_calls_callhandling">Call Handling</string>
    <string name="pref_title_notifications_and_calls_repeat_on_misscall">Repeat for X minutes</string>
    <string name="pref_summary_notifications_and_calls_enable_misscall">Repeats on every minute</string>
    <string name="pref_notifications_and_calls_enable_misscall">Notify for missed call</string>
    <string name="prefs_notifications_and_calls_continious_ring">Notification during phone ring</string>
    <string name="pref_title_notifications_and_calls_repeat_on_call">Repeat call notification</string>
    <string name="pref_header_notifications_and_calls">Notifications and Calls</string>
    <string name="title_activity_LenovoWatch_calibration">Watch X Plus calibration</string>
    <string name="pref_theme_system">System</string>
    <string name="hr_widget_last_notification">Last notification</string>
    <string name="menuitem_unknown">Unknown</string>
    <string name="bip_prefs_shotcuts_summary">Choose the shortcuts on the band screen</string>
    <string name="bip_prefs_shortcuts">Shortcuts</string>
    <string name="controlcenter_set_alias">Set Alias</string>
    <string name="sonyswr12_settings_title">Sony SWR12 settings</string>
    <string name="sonyswr12_settings_low_vibration">Low vibration enabled</string>
    <string name="sonyswr12_settings_stamina">Power saving mode on</string>
    <string name="sonyswr12_settings_alarm_interval">Smart alarm interval in minutes</string>
    <string name="sonyswr12_settings_low_vibration_summary">Enable low intensity of vibration on wristband</string>
    <string name="sonyswr12_settings_stamina_summary">Power saving mode turns off periodic auto measuring of heart rate thus increases working time</string>
    <string name="sonyswr12_settings_alarm_interval_summary">Smart alarm interval is interval before of installed alarm. In this interval device is trying to detect lightest phase of sleep to awake user</string>
    <string name="battery_detail_activity_title">Battery info</string>
    <string name="find_lost_device_message">Search for %1$s\?</string>
    <string name="error_setting_alias">Error setting alias:</string>
    <string name="calendar_year">Year</string>
    <string name="calendar_week">Week</string>
    <string name="calendar_two_weeks">Two weeks</string>
    <string name="calendar_month">Month</string>
    <string name="pref_header_other">Other</string>
    <string name="pref_header_notification_application_settings">Per application settings</string>
    <string name="pref_title_notification_use_as_deny">Deny notifications from selected apps</string>
    <string name="pref_message_privacy_mode_off">Display content</string>
    <string name="pref_applications_settings">Applications list</string>
    <string name="pref_title_huami_force_new_protocol">New Auth Protocol</string>
    <string name="chart_get_active_and_synchronize">Do some activity and synchronize device.</string>
    <string name="prefs_sounds">Sounds</string>
    <string name="prefs_sounds_summary">Configure when the device will beep</string>
    <string name="lefun_prefs_hydration_reminder_title">Hydration reminder</string>
    <string name="activity_prefs_chart_min_steps_per_minute">Minimal steps per minute to detect activity</string>
    <string name="activity_prefs_chart_min_session_length">Minimal activity length (minutes)</string>
    <string name="charts_legend_heartrate_average">Heart rate average</string>
    <string name="dbmanagementactivity_error_cleaning_export_directory">Error erasing files from export directory %1$s</string>
    <string name="activity_data_management_directory_content_title">Export/Import directory content</string>
    <string name="activity_DB_clean_export_directory_warning_title">Delete files in the Export/Import directory\?</string>
    <string name="activity_DB_clean_export_directory_warning_message">Really delete files in the Export/Import directory\?</string>
    <string name="dbmanagementactivity_export_finished">Deletion finished</string>
    <string name="activity_type_yoga">Yoga</string>
    <string name="activity_type_rowing_machine">Rowing Machine</string>
    <string name="activity_type_cricket">Cricket</string>
    <string name="activity_type_badminton">Badminton</string>
    <string name="activity_summary_detail_select_gpx_track">Select GPX track</string>
    <string name="activity_summary_detail_clear_gpx_track">Clear GPX track</string>
    <string name="activity_summary_detail_editing_gpx_track">Editing linked GPX track</string>
    <string name="kind_agps_bundle">AGPS Bundle</string>
    <string name="devicetype_miband6">Mi Band 6</string>
    <string name="devicetype_amazfit_trex">Amazfit T-Rex</string>
    <string name="devicetype_amazfit_gts2_mini">Amazfit GTS 2 Mini</string>
    <string name="devicetype_um25">UM-25</string>
    <string name="devicetype_casiogbx100">Casio GBX-100</string>
    <string name="devicetype_sony_wh_1000xm3">Sony WH-1000XM3</string>
    <string name="notification_channel_transfer_name">Data transfer</string>
    <string name="notification_channel_low_battery_name">Low battery</string>
    <string name="devicetype_lefun">Lefun</string>
    <string name="menuitem_cycles">Cycle Tracking</string>
    <string name="menuitem_stress">Stress</string>
    <string name="menuitem_dnd">DND</string>
    <string name="menuitem_stopwatch">Stopwatch</string>
    <string name="menuitem_events">Events</string>
    <string name="pref_title_lower_button_function_short">Lower Button short</string>
    <string name="about_core_team_title">Core Team (in order of first code contribution)</string>
    <string name="about_contributors">Contributors</string>
    <string name="error_version_check_extreme_caution">CAUTION: Error when checking version information! You should not continue! Saw version name \"%s\"</string>
    <string name="require_location_provider">Location must be enabled</string>
    <string name="error_exporting_device_preferences">Error exporting device specific preferences</string>
    <string name="averageStrokesPerSecond">Average Strokes</string>
    <string name="ascentSeconds">Ascending</string>
    <string name="descentSeconds">Descending</string>
    <string name="baseAltitude">Base Elevation</string>
    <string name="averageSpeed">Average Speed</string>
    <string name="swolf_index">swolf index</string>
    <string name="swim_style">swim style</string>
    <string name="laps_unit">laps</string>
    <string name="calories_unit">kcal</string>
    <string name="seconds_m">sec/m</string>
    <string name="minutes_km">min/km</string>
    <string name="km">km</string>
    <string name="mi">mi</string>
    <string name="Strokes">Strokes</string>
    <string name="Swimming">Swimming</string>
    <string name="Distance">Distance</string>
    <string name="Elevation">Elevation</string>
    <string name="Speed">Speed</string>
    <string name="Activity">Activity</string>
    <string name="Steps">Steps</string>
    <string name="activity_detail_start_label">Start</string>
    <string name="activity_detail_end_label">End</string>
    <string name="activity_detail_duration_label">Duration</string>
    <string name="activity_detail_show_gps_label">Show GPS Track</string>
    <string name="prefs_events_forwarding_title">Device actions</string>
    <string name="prefs_events_forwarding_fellsleep">On Fall Asleep</string>
    <string name="prefs_events_forwarding_wokeup">On Wake Up</string>
    <string name="prefs_events_forwarding_startnonwear">On Not Wearing</string>
    <string name="prefs_events_forwarding_broadcast_title">Broadcast message</string>
    <string name="pref_header_filter">Sports Activities Filter</string>
    <string name="activity_summaries_all_devices">All devices</string>
    <string name="medley">Medley</string>
    <string name="activity_filter_from_placeholder">Distant Past</string>
    <string name="activity_filter_to_placeholder">Today</string>
    <string name="prefs_key_vibration">Key Vibration</string>
    <string name="breaststroke">Breaststroke</string>
    <string name="devicetype_nut_mini">Nut mini</string>
    <string name="prefs_autolight">Automatic Light</string>
    <string name="qhybrid_calibration_align_hint">Use the buttons below to align the watch hands to 12:00.</string>
    <string name="qhybrid_summary_file_management">Upload and download files</string>
    <string name="prefs_operating_sounds">Operating Sounds</string>
    <string name="prefs_fake_ring_duration">Fake continuous ringing</string>
    <string name="fossil_hr_commute_processing">Processing request…</string>
    <string name="fossil_hr_synced_activity_data">Synchronised activity data</string>
    <string name="pref_summary_canned_messages_set">Send the messages configured below to your device</string>
    <string name="fossil_hr_commute_actions_explanation">The actions configured here will appear in the Commute app on your watch. Read the wiki for information on how to handle the intents produced by these actions.</string>
    <string name="fossil_hr_edit_action">Edit action</string>
    <string name="fossil_hr_new_action_cancel">Cancel</string>
    <string name="fossil_hr_new_action">New action</string>
    <string name="qhybrid_calibration_clockwise">Clockwise</string>
    <string name="qhybrid_calibration_1_step">1 step</string>
    <string name="qhybrid_calibration_10_steps">10 steps</string>
    <string name="qhybrid_calibration_100_steps">100 steps</string>
    <string name="qhybrid_watchface_configuration_old_firmware">Watchface configuration screen for watches with firmware version DN1.0.2.19r and lower</string>
    <string name="qhybrid_pref_title_actions">Actions</string>
    <string name="qhybrid_pref_summary_actions">Actions for the Commute app</string>
    <string name="button_watchface_edit_name">Edit name</string>
    <string name="button_watchface_add_widget">Add widget</string>
    <string name="watchface_dialog_title_set_name">Set watchface name</string>
    <string name="watchface_toast_settings_incomplete">Settings incomplete, widget not added</string>
    <string name="watchface_dialog_title_add_widget">Add widget</string>
    <string name="watchface_widget_type_weather">Weather</string>
    <string name="watchface_widget_type_steps">Steps</string>
    <string name="watchface_widget_type_heart_rate">Heart rate</string>
    <string name="prefs_active_noise_cancelling">Active Noise Cancelling</string>
    <string name="pref_header_sony_ambient_sound_control">Ambient Sound Control</string>
    <string name="sony_ambient_sound">Mode</string>
    <string name="sony_ambient_sound_off">Off</string>
    <string name="sony_ambient_sound_noise_cancelling">Noise Cancelling</string>
    <string name="sony_ambient_sound_wind_noise_reduction">Wind Noise Reduction</string>
    <string name="sony_sound_position_front_right">Front Right</string>
    <string name="sony_sound_position_rear_left">Rear Left</string>
    <string name="watchface_dialog_widget_color_black">Black</string>
    <string name="devicetype_waspos">Wasp-os</string>
    <string name="devicetype_amazfit_gts2">Amazfit GTS 2</string>
    <string name="devicetype_amazfit_gts2e">Amazfit GTS 2e</string>
    <string name="watchface_widget_type_battery">Battery</string>
    <string name="mi_h">mph</string>
    <string name="movement_intensity">Movement intensity</string>
    <string name="lefun_prefs_antilost_summary">The band will vibrate if your phone disconnects from the band</string>
    <string name="lefun_prefs_interface_language_title">Interface language</string>
    <string name="activity_type_soccer">Football</string>
    <string name="activity_type_pingpong">Ping Pong</string>
    <string name="activity_summary_today">Today</string>
    <string name="activity_type_basketball">Basketball</string>
    <string name="devicetype_amazfit_band5">Amazfit Band 5</string>
    <string name="swolfIndex">swolfIndex</string>
    <string name="meters">m</string>
    <string name="pref_header_statistics">Sports Activities Statistics</string>
    <string name="activity_error_no_app_for_png">To share this screenshot, install an app which can handle image files.</string>
    <string name="devicetype_amazfit_neo">Amazfit Neo</string>
    <string name="devicetype_amazfit_vergel">Amazfit Verge Lite</string>
    <string name="pref_title_lower_button_function_long">Lower Button long</string>
    <string name="pref_title_lower_button_function_double">Lower Button double</string>
    <string name="gpx_receiver_activity_title">GPX Receiver Gadgetbridge</string>
    <string name="activity_filter_name_contains">Label</string>
    <string name="sony_equalizer_band_1000">1k</string>
    <string name="watchface_dialog_widget_preset_right">Right</string>
    <string name="prefs_notifications_enable">Enable notifications</string>
    <string name="battery_level">Battery level</string>
    <string name="calendar_three_months">3 months</string>
    <string name="fw_upgrade_notice_amazfitvergel">You are about to install the %s firmware on your Amazfit Verge Lite.
\n
\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="pref_header_system">System</string>
    <string name="pref_header_equalizer">Equalizer</string>
    <string name="pref_title_notification_use_as">Use the Applications list to…</string>
    <string name="calendar_six_months">6 months</string>
    <string name="fw_upgrade_notice_amazfitneo">You are about to install the %s firmware on your Amazfit Neo.
\n
\nYour band will reboot after installing the .fw file.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="pref_title_message_privacy_mode">Message privacy mode</string>
    <string name="pref_message_privacy_mode_complete">Hide content</string>
    <string name="watchface_install_info">You are about to install the following watchface:
\n
\n%1$s
\nVersion %2$s by %3$s
\n</string>
    <string name="chart_no_active_data">No activities detected.</string>
    <string name="calendar_day">Day</string>
    <string name="pref_title_notification_use_as_allow">Allow notifications from selected apps</string>
    <string name="steps_unit">steps</string>
    <string name="meters_second">m/s</string>
    <string name="pref_title_connected_advertisement">Visible while connected</string>
    <string name="pref_summary_connected_advertisement">Makes the device discoverable via Bluetooth even when connected</string>
    <string name="pref_summary_huami_force_new_protocol">Enable if your device no longer connects after a firmware upgrade</string>
    <string name="devicestatus_upload_validating">Upload is being validated</string>
    <string name="devicestatus_upload_aborted">Upload has been aborted!</string>
    <string name="qhybrid_calibration_counterclockwise">Anti-clockwise</string>
    <string name="lefun_prefs_hydration_reminder_summary">The band will vibrate to remind you to drink water</string>
    <string name="lefun_prefs_antilost_title">Anti-loss</string>
    <string name="lefun_prefs_hydration_reminder_interval_title">Hydration reminder interval (in minutes)</string>
    <string name="set">Set</string>
    <string name="activity_type_swimming_openwater">Swimming (Open water)</string>
    <string name="activity_type_indoor_cycling">Indoor Cycling</string>
    <string name="activity_type_elliptical_trainer">Elliptical Trainer</string>
    <string name="activity_summary_detail">Sport Activity Detail</string>
    <string name="activity_summary_edit_name_title">Edit label</string>
    <string name="devicetype_amazfit_bips_lite">Amazfit Bip S Lite</string>
    <string name="devicetype_amazfit_bipu">Amazfit Bip U</string>
    <string name="devicetype_amazfit_bipupro">Amazfit Bip U Pro</string>
    <string name="devicetype_amazfit_gtr2e">Amazfit GTR 2e</string>
    <string name="devicetype_tlw64">TLW64</string>
    <string name="devicetype_smaq2oss">SMA-Q2 OSS</string>
    <string name="toast_app_must_not_be_selected">App must not be selected to be configured</string>
    <string name="widget_settings_select_device_title">Select device</string>
    <string name="activity_db_management_clean_export_directory_text">Exported files in the Export/Import directory are accessible by any app on your device. You might like to remove these files after synchronisation or backup. Make sure to have a backup before deleting them. GPX files, sub-directories and auto-exported database file (if exist) will not be deleted. The path to the Export/Import directory is:</string>
    <string name="activity_type_strength_training">Strength Training</string>
    <string name="devicetype_amazfit_gtr2">Amazfit GTR 2</string>
    <string name="toast_app_must_be_selected">App must be selected to be configured</string>
    <string name="companiondevice_pairing">CompanionDevice Pairing</string>
    <string name="averageLapPace">Average Lap Pace</string>
    <string name="laps">Laps</string>
    <string name="cm">cm</string>
    <string name="activity_summaries_statistics">Statistics</string>
    <string name="pref_title_upper_button_function_short">Upper Button short</string>
    <string name="pref_title_upper_button_function_double">Upper Button double</string>
    <string name="about_activity_title_generic">About Gadgetbridge</string>
    <string name="gpx_receiver_files_received">GPX file(s) received:</string>
    <string name="gpx_receiver_overwrite_some_files">Some file(s) already exist. Overwrite\?</string>
    <string name="about_additional_contributions">Many thanks to all unlisted contributors for contributing code, translations, support, ideas, motivation, bug reports, money… ✊</string>
    <string name="maxPace">Fastest Pace</string>
    <string name="averageStride">Average Stride</string>
    <string name="swimStyle">swimStyle</string>
    <string name="km_h">km/h</string>
    <string name="strokes_second">str/s</string>
    <string name="strokes_unit">str</string>
    <string name="seconds">sec</string>
    <string name="prefs_events_forwarding_summary">Use device events to trigger actions and Android broadcasts</string>
    <string name="activity_filter_date_from">From</string>
    <string name="activity_filter_reset_filter">Reset Filter</string>
    <string name="no">No</string>
    <string name="sports_activity_quick_filter_this_week">This week</string>
    <string name="qhybrid_pref_summary_external_intents">Allows other Android apps to upload/overwrite files</string>
    <string name="devicetype_amazfit_trex_pro">Amazfit T-Rex Pro</string>
    <string name="gps_track">GPS track</string>
    <string name="prefs_events_forwarding_action_title">Run action</string>
    <string name="activity_filter_date_to">To</string>
    <string name="activity_filter_filter_title">Filter</string>
    <string name="addto_filter">Add to filter</string>
    <string name="qhybrid_title_apps_management">Apps management</string>
    <string name="qhybrid_title_calibration">Calibration</string>
    <string name="sony_automatic_power_off_3_hour">3 hours</string>
    <string name="activity_filter_apply_filter">Apply Filter</string>
    <string name="activity_filter_individual_items">Individually selected items</string>
    <string name="activity_summaries_all_activities">All Activities</string>
    <string name="sports_activity_quick_filter_7days">7 days</string>
    <string name="fossil_hr_unavailable_unauthed">Not available in unauthenticated mode</string>
    <string name="fossil_hr_auth_failed">Authentication failed, limited functionality</string>
    <string name="pref_title_physical_buttons">Physical buttons</string>
    <string name="yes">Yes</string>
    <string name="watchface_widget_type_custom">Custom widget</string>
    <string name="qhybrid_title_watchface">Watchface configuration</string>
    <string name="qhybrid_title_apps">Apps</string>
    <string name="qhybrid_title_background_image">Background image</string>
    <string name="watchface_widget_type_date">Date</string>
    <string name="pref_title_developer_settings">Developer settings</string>
    <string name="pref_summary_developer_settings">Settings and functionality used by developers</string>
    <string name="qhybrid_pref_title_external_intents">Allow dangerous external intents</string>
    <string name="fw_upgrade_notice_miband5">You are about to install the %s firmware on your Mi Band 5.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="activity_type_jump_roping">Skipping rope</string>
    <string name="sony_automatic_power_off_off">Do not turn off</string>
    <string name="sony_equalizer_band_400">400</string>
    <string name="button_watchface_save_apply">Save and apply</string>
    <string name="sony_touch_sensor">Touch sensor control</string>
    <string name="pref_header_sony_equalizer_preset_custom_2">Custom Preset 2</string>
    <string name="pref_header_sony_equalizer_preset_custom_1">Custom Preset 1</string>
    <string name="sony_equalizer_preset_custom_2">Custom 2</string>
    <string name="sony_equalizer_preset_treble_boost">Treble Boost</string>
    <string name="sony_automatic_power_off_30_min">30 minutes</string>
    <string name="sony_automatic_power_off_1_hour">1 hour</string>
    <string name="sony_automatic_power_off_5_min">5 minutes</string>
    <string name="sony_automatic_power_off">Automatic Power Off</string>
    <string name="sony_equalizer_clear_bass">Clear Bass</string>
    <string name="sony_equalizer_band_6300">6.3k</string>
    <string name="sony_equalizer_preset_custom_1">Custom 1</string>
    <string name="sony_equalizer_preset_off">Off</string>
    <string name="sony_warn_sbc_codec">Warning: These settings only work for the SBC audio codec.</string>
    <string name="sony_notification_voice_guide">Notifications &amp; Voice Guide</string>
    <string name="sony_equalizer_band_16000">16k</string>
    <string name="sony_equalizer_band_2500">2.5k</string>
    <string name="sony_equalizer_preset_manual">Manual</string>
    <string name="sony_equalizer_preset_speech">Speech</string>
    <string name="sony_equalizer_preset_bass_boost">Bass Boost</string>
    <string name="sony_equalizer_preset_vocal">Vocal</string>
    <string name="sony_equalizer_preset_relaxed">Relaxed</string>
    <string name="sony_equalizer_preset_mellow">Mellow</string>
    <string name="sony_equalizer_preset_excited">Excited</string>
    <string name="sony_equalizer_preset_bright">Bright</string>
    <string name="sony_equalizer">Equalizer</string>
    <string name="sony_surround_mode_concert_hall">Concert Hall</string>
    <string name="sony_surround_mode_outdoor_stage">Outdoor Stage</string>
    <string name="sony_surround_mode_club">Club</string>
    <string name="sony_surround_mode_arena">Arena</string>
    <string name="sony_surround_mode_off">Off</string>
    <string name="button_watchface_preview">Preview on watch</string>
    <string name="sony_surround_mode">Surround Mode</string>
    <string name="sony_sound_position_rear_right">Rear Right</string>
    <string name="appmanager_app_edit">Edit</string>
    <string name="prefs_sleep_time_summary">Specifies times when sleep is registered</string>
    <string name="sony_ambient_sound_level">Ambient Sound Level</string>
    <string name="watchface_dialog_widget_type">Type:</string>
    <string name="watchface_dialog_widget_y_coordinate">Y coordinate (max 240):</string>
    <string name="watchface_dialog_widget_preset_top">Top</string>
    <string name="watchface_dialog_widget_preset_bottom">Bottom</string>
    <string name="watchface_dialog_widget_preset_left">Left</string>
    <string name="qhybrid_title_watchface_designer">Watchface designer</string>
    <string name="watchface_dialog_widget_color_white">White</string>
    <string name="watchface_dialog_widget_x_coordinate">X coordinate (max 240):</string>
    <string name="watchface_dialog_widget_color">Colour:</string>
    <string name="watchface_setting_wrist_flick_move_relative">Move hands relative to time:</string>
    <string name="watchface_dialog_title_settings">Watchface settings</string>
    <string name="watchface_setting_title_display_refresh_timeout">Display refresh timeout</string>
    <string name="watchface_setting_display_refresh_full">Full refresh (in minutes):</string>
    <string name="watchface_setting_display_refresh_partial">Partial refresh (in minutes):</string>
    <string name="watchface_setting_desc_wrist_flick">(to disable completely, enable relative movement and set all values to 0)</string>
    <string name="watchface_setting_wrist_flick_hour">Hour hand (-360 to 360):</string>
    <string name="watchface_setting_wrist_flick_minute">Minute hand (-360 to 360):</string>
    <string name="watchface_setting_wrist_flick_duration">Duration (in ms):</string>
    <string name="watchface_cache_confirm_overwrite">A watchface with this name already exists in the cache. Do you want to overwrite it\?</string>
    <string name="watchface_widget_type_2nd_tz">2nd time zone</string>
    <string name="watchface_widget_type_chance_rain">Chance of rain</string>
    <string name="watchface_setting_power_saving_display">Disable display updates while off wrist</string>
    <string name="prefs_sleep_time_label">Define sleep hours</string>
    <string name="prefs_autoheartrate_measurement">Automatic Heart Rate measurements</string>
    <string name="watchface_upload_failed">Upload of the watchface failed. Please try again.</string>
    <string name="watchface_widget_type_active_mins">Active minutes</string>
    <string name="watchface_setting_title_power_saving">Power saving</string>
    <string name="watchface_setting_power_saving_hands">Disable hands movement while off wrist</string>
    <string name="prefs_vibration_enable">Enable vibrations</string>
    <string name="enable_vibrations_summary">Vibrations for calls, messages, notifications and more</string>
    <string name="prefs_sleep_time">Sleep times</string>
    <string name="nothing_prefs_inear_title">In-Ear detection</string>
    <string name="prefs_pressure_relief">Pressure relief with ambient sound</string>
    <string name="sony_sound_position_front_left">Front Left</string>
    <string name="enable_notifications_summary">Notifications for calls, messages and more</string>
    <string name="prefs_autoheartrate">Automatic Heart Rate</string>
    <string name="prefs_autoheartrate_interval">Frequency of measurements</string>
    <string name="devicetype_galaxybuds_live">Galaxy Buds Live</string>
    <string name="nothing_prefs_audiomode_title">Audio mode</string>
    <string name="sony_sound_position">Sound Position</string>
    <string name="sony_sound_position_off">Off</string>
    <string name="prefs_autoheartrate_summary">Periodical Heart Rate measurements during the day and also while asleep</string>
    <string name="prefs_autoheartrate_sleep">Take measurements during sleep</string>
    <string name="sony_sound_position_front">Front</string>
    <string name="pref_title_equalizer_normal">Normal</string>
    <string name="prefs_active_noise_cancelling_summary">Block noises of the surroundings</string>
    <string name="pressure_relief_summary">Prevent feeling of pressure in ears when not using Active Noise Cancelling</string>
    <string name="sony_ambient_sound_ambient_sound">Ambient Sound</string>
    <string name="sony_ambient_sound_focus_voice">Focus on Voice</string>
    <string name="menuitem_sleep">Sleep</string>
    <string name="menuitem_pomodoro">Pomodoro Tracker</string>
    <string name="devicetype_fitpro">FitPro</string>
    <string name="menuitem_spo2">SpO2</string>
    <string name="menuitem_mutephone">Mute Phone</string>
    <string name="menuitem_goal">Activity Goal</string>
    <string name="menuitem_widgets">Widgets</string>
    <string name="menuitem_temperature">Temperature</string>
    <string name="about_version">Version %s</string>
    <string name="about_title">About</string>
    <string name="about_description_generic">Cloudless copylefted libre replacement for closed source Android gadget apps from vendors.</string>
    <string name="sports_activity_quick_filter_30days">30 days</string>
    <string name="sports_activity_quick_filter_select">Time period</string>
    <string name="device_is_currently_bonded">Already bonded</string>
    <string name="sports_activity_quick_filter_last_month">Previous month</string>
    <string name="about_additional_device_support">Additional device support</string>
    <string name="backstroke">Backstroke</string>
    <string name="prefs_autoremove_message">Automatically remove SMS notifications</string>
    <string name="pref_title_ping_tone">Ping tone</string>
    <string name="devicestatus_disconnected">Device has disconnected!</string>
    <string name="devicestatus_upload_completed">Upload has completed</string>
    <string name="prefs_charts_tabs">Charts tabs</string>
    <string name="prefs_charts_tabs_summary">Visible chart tabs</string>
    <string name="activity_list_summary_active_steps">Active steps</string>
    <string name="activity_list_summary_distance">Distance</string>
    <string name="activity_list_summary_active_time">Active time</string>
    <string name="activity_list_summary_intensity">Movement
\nIntensity</string>
    <string name="activity_list_summary_activities">Activities</string>
    <string name="dialog_hide">Hide</string>
    <string name="show_ongoing_activity">Show ongoing activity popup</string>
    <string name="devicestatus_connecting">Device is connecting</string>
    <string name="devicestatus_connected">Device is connected</string>
    <string name="devicestatus_upload_starting">Upload is starting</string>
    <string name="devicestatus_upload_started">Upload has started</string>
    <string name="devicestatus_disconnecting">Device is disconnecting!</string>
    <string name="blood_pressure">Blood pressure</string>
    <string name="getting_heart_rate">Measuring</string>
    <string name="heart_rate_result">Measurement results</string>
    <string name="charts_min_max_heartrate_popup">Lowest heart rate: %1$d
\nHighest heart rate: %2$d
\nMovement intensity: %3$s</string>
    <string name="button_watchface_settings">Watchface settings</string>
    <string name="watchface_setting_title_wrist_flick">Wrist flick</string>
    <string name="watchface_dialog_widget_presets">Position presets:</string>
    <string name="pref_theme_black_background">Use black background in Dark Theme</string>
    <string name="pref_title_weather_summary">Used for the LineageOS weather provider, other Android versions need to use an app like \"Weather notification\". Find more information in the Gadgetbridge wiki.</string>
    <string name="discovery_entered_invalid_authkey">The secret auth key you entered is invalid! Long press on the device to edit.</string>
    <string name="charts_activity_list">Activity list</string>
    <string name="devicestatus_upload_failed">Upload has failed</string>
    <string name="firmware_update_progress">Upload is in progress
\n%1d%% at %.2fkbps (average %.2fkbps)
\nPart %1d of %1d</string>
    <string name="activity_prefs_step_length_cm">Step length in cm</string>
    <string name="activity_prefs_chart_min_steps_per_minute_for_run">Minimal steps per minute to detect run</string>
    <string name="activity_prefs_chart_max_idle_phase_length">Pause length to separate activities (minutes)</string>
    <string name="activity_DB_ShowContentButton">Show Export/Import directory content</string>
    <string name="dbmanagementactivity_export_data_title">Export Data\?</string>
    <string name="dbmanagementactivity_export_confirmation">Really export data\? Previously exported activity data (if any) and preferences will be overwritten.</string>
    <string name="activity_db_management_clean_export_directory_label">Delete files in Export/Import directory</string>
    <string name="devicetype_amazfit_x">Amazfit X</string>
    <string name="devicetype_zepp_e">Zepp E</string>
    <string name="menuitem_findphone">Find Phone</string>
    <string name="menuitem_takephoto">Camera Remote</string>
    <string name="menuitem_alexa">Alexa</string>
    <string name="pref_title_middle_button_function_short">Middle Button short</string>
    <string name="pref_title_upper_button_function_long">Upper Button long</string>
    <string name="ft">ft</string>
    <string name="bpm">bpm</string>
    <string name="sports_activity_quick_filter_this_month">This month</string>
    <string name="fossil_hr_warning_firmware_too_new">Some functions are disabled because the firmware of the watch is too new</string>
    <string name="pref_summary_physical_buttons">Configure the functionality of the physical buttons on the watch</string>
    <string name="sports_activity_quick_filter_last_week">Previous week</string>
    <string name="freestyle">Freestyle</string>
    <string name="qhybrid_title_file_management">File management</string>
    <string name="qhybrid_summary_calibration">Calibrate the watch hands</string>
    <string name="fossil_hr_edit_action_delete">Delete</string>
    <string name="button_watchface_select_image">Change background image</string>
    <string name="pref_title_middle_button_function_double">Middle Button double</string>
    <string name="flatSeconds">Flat</string>
    <string name="menuitem_barometer">Barometer</string>
    <string name="pref_title_middle_button_function_long">Middle Button long</string>
    <string name="minutes_mi">min/mi</string>
    <string name="pref_summary_canned_messages_dismisscall">Dismiss calls from the watch with an SMS message</string>
    <string name="devicetype_galaxybuds">Galaxy Buds</string>
    <string name="prefs_equalizer_preset">Equalizer Preset</string>
    <string name="pref_title_equalizer_bass_boost">Bass boost</string>
    <string name="pref_title_equalizer_soft">Soft</string>
    <string name="pref_title_equalizer_dynamic">Dynamic</string>
    <string name="pref_title_equalizer_clear">Clear</string>
    <string name="pref_title_equalizer_trebble">Treble boost</string>
    <string name="prefs_dolby_mode">Dolby Mode</string>
    <string name="prefs_equalizer">Equalizer</string>
    <string name="prefs_equalizer_summary">Enable or disable equalizer</string>
    <string name="prefs_dolby_summary">Dolby preset for equalizer</string>
    <string name="prefs_game_mode">Game mode</string>
    <string name="prefs_game_mode_summary">Only if your phone supports game mode</string>
    <string name="prefs_touch_lock">Touch Lock</string>
    <string name="prefs_touch_lock_summary">Disable touch events</string>
    <string name="prefs_galaxy_buds_experimental">Experimental</string>
    <string name="prefs_ambient_volume">Ambient volume</string>
    <string name="menuitem_flashlight">Flashlight</string>
    <string name="watchface_widget_type_calories">Calories</string>
    <string name="devicetype_nothingear1">Nothing Ear (1)</string>
    <string name="seconds_km">sec/km</string>
    <string name="averageStrokeDistance">Average Stroke Distance</string>
    <string name="averageHR">Heartrate</string>
    <string name="averageKMPaceSeconds">Pace</string>
    <string name="totalStride">Total stride</string>
    <string name="activeSeconds">Active</string>
    <string name="caloriesBurnt">Calories</string>
    <string name="maxSpeed">Maximum</string>
    <string name="minPace">Slowest Pace</string>
    <string name="maxAltitude">Maximum</string>
    <string name="steps">Steps</string>
    <string name="minAltitude">Minimum</string>
    <string name="distanceMeters">Distance</string>
    <string name="ascentMeters">Uphill</string>
    <string name="descentMeters">Downhill</string>
    <string name="error_location_enabled_mandatory">Location must be turned on to scan for devices</string>
    <string name="ignore_bonded_devices">Ignore bonded devices</string>
    <string name="ignore_bonded_devices_description">Enabling this option will ignore devices that have been bonded/paired already when scanning</string>
    <string name="error_retrieving_devices_database">Error retrieving devices from database</string>
    <string name="pref_check_permission_status_summary">Check and ask for missing permissions even when they might not be instantly needed. Disable this only if your devices actually doesn\'t support any of these features. Not granting a permission might cause issues!</string>
    <string name="pref_check_permission_status">Check permission status</string>
    <string name="error_background_service_reason">Starting the background service failed because of an exception - click here for more information.\n\nError:</string>
    <string name="device_requires_key">Key required</string>
    <string name="error_background_service_reason_truncated">Starting the background service failed because…</string>
    <string name="error_background_service">Failed to start background service</string>
    <string name="companiondevice_pairing_details">Enables the new CompanionDevice API support (only has an effect on Android 8 or above) which will increase reliability if the service needs to be restarted in the background, requires re-pairing using Gadgetbridge to have an effect</string>
    <string name="permission_granting_mandatory">All these permissions are required and instability might occur if not granted</string>
    <string name="about_links">Links</string>
    <string name="menuitem_worldclock">World Clock</string>
    <string name="menuitem_breathing">Breathing</string>
    <string name="devicetype_sg2">Lemfo SG2</string>
    <string name="devicetype_pinetime_jf">PineTime (JF Firmware)</string>
    <string name="devicetype_miband5">Mi Band 5</string>
    <string name="activity_summary_yesterday">Yesterday</string>
    <string name="prefs_right">Right</string>
    <string name="prefs_galaxy_touch_options">Touch Options</string>
    <string name="prefs_ambient_voice_focus">Voice Focus</string>
    <string name="prefs_ambient_voice_summary">Make voice stand out</string>
    <string name="prefs_ambient_sound">Ambient Sound</string>
    <string name="prefs_ambient_mode">Ambient Mode</string>
    <string name="prefs_left">Left</string>
    <string name="nothing_prefs_inear_summary">Play/pause the music depending if you wear the earbuds</string>
    <string name="title_activity_notification_management">Notification settings</string>
    <string name="check_all_applications">Check all applications</string>
    <string name="uncheck_all_applications">Uncheck all applications</string>
    <string name="fw_upgrade_notice_amazfit_trex">You are about to install the %s firmware on your Amazfit T-Rex.
\n
\nPlease make sure to install the .fw file, then the .res file, and finally the .gps file. Your watch will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res and .gps if these files are exactly the same as the ones previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_miband6">You are about to install the %s firmware on your Mi Band 6.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="fw_upgrade_notice_amazfitx">You are about to install the %s firmware on your Amazfit X.
\n
\nPlease make sure to install the .fw file, and after that the .res file. Your band will reboot after installing the .fw file.
\n
\nNote: You do not have to install .res if it is exactly the same as the one previously installed.
\n
\nPROCEED AT YOUR OWN RISK!</string>
    <string name="battery_case">Battery case</string>
    <string name="left_earbud">Left earbud</string>
    <string name="right_earbud">Right earbud</string>
    <string name="prefs_fm_preset_instructions">Long press the button to store preset</string>
    <string name="prefs_fm_presets_presets">Presets</string>
    <string name="watchface_dialog_widget_timezone">Time zone:</string>
    <string name="watchface_dialog_widget_timeout_show_circle">Show circle on timeout:</string>
    <string name="watchface_dialog_widget_timeout_hide_text">Hide text on timeout:</string>
    <string name="sony_automatic_power_off_when_taken_off">When taken off</string>
    <string name="watchface_dialog_widget_update_timeout">Update timeout in minutes:</string>
    <string name="device_card_activity_card_title">Activity info on device card</string>
    <string name="prefs_activity_in_device_card_steps_title_summary">Show total steps</string>
    <string name="device_card_activity_card_title_summary">Choose what activity details are displayed on device card</string>
    <string name="prefs_activity_in_device_card_distance_title_summary">Distance is calculated from steps and step length (adjustable in Settings - About you)</string>
    <string name="prefs_activity_in_device_card_sleep_title">Sleep</string>
    <string name="prefs_activity_in_device_card_title">Show Activity info on device card</string>
    <string name="prefs_activity_in_device_card_title_summary">Show current steps, distance or sleep on device card</string>
    <string name="prefs_activity_in_device_card_sleep_title_summary">Show sleep duration</string>
    <string name="qhybrid_title_on_device_confirmation">Enable on-device pairing confirmation</string>
    <string name="qhybrid_summary_on_device_confirmation">On-device pairing confirmations can get annoying. Disabling them might lose you functionality.</string>
    <string name="title_activity_set_reminders">Configure reminders</string>
    <string name="controlcenter_start_configure_reminders">Configure reminders</string>
    <string name="reminder_repeat">Repeat</string>
    <string name="reminder_date">Date</string>
    <string name="reminder_time">Time</string>
    <string name="reminder_message">Message</string>
    <string name="reminder_time_once">%1$s, once</string>
    <string name="reminder_time_every_day">%1$s, every day</string>
    <string name="reminder_time_every_week">%1$s, every week</string>
    <string name="reminder_time_every_year">%1$s, every year</string>
    <string name="reminder_every_day">Every day</string>
    <string name="reminder_every_week">Every week</string>
    <string name="reminder_every_year">Every year</string>
    <string name="reminder_delete_confirm_title">Delete reminder</string>
    <string name="reminder_delete_confirm_description">Are you sure you want to delete the reminder\?</string>
    <string name="reminder_no_free_slots_title">No free slots</string>
    <string name="title_activity_reminder_details">Reminder details</string>
    <string name="miband_prefs_reserve_reminder_calendar">Reminders to reserve for upcoming events</string>
    <string name="reminder_time_every_month">%1$s, every month</string>
    <string name="reminder_once">Once</string>
    <string name="reminder_every_month">Every month</string>
    <string name="reminder_no_free_slots_description">The device has no free slots for reminders (total slots: %1$s)</string>
    <string name="prefs_reserve_reminder_calendar_summary">Number of calendar events that will be synchronized</string>
    <string name="mi2_prefs_do_not_disturb_lift_wrist">Activate display upon lift during Do Not Disturb</string>
    <string name="maxHR">Max Heartrate</string>
    <string name="spm">steps/min</string>
    <string name="minSpeed">Minimum</string>
    <string name="averageCadence">Average Cadence</string>
    <string name="averageAltitude">Average</string>
    <string name="maxCadence">Max Cadence</string>
    <string name="minCadence">Min Cadence</string>
    <string name="minHR">Min Heartrate</string>
    <string name="maxStride">Max Stride</string>
    <string name="minStride">Min Stride</string>
    <string name="controlcenter_power_off">Power Off</string>
    <string name="sony_pause_when_taken_off">Pause when headphones are taken off</string>
    <string name="sony_button_mode_ambient_sound_control">Ambient Sound Control</string>
    <string name="activity_prefs_discovery_pairing">Discovery and Pairing options</string>
    <string name="controlcenter_power_off_confirm_title">Power Off</string>
    <string name="add_test_device">Add test device</string>
    <string name="devicetype_sony_wf_sp800n">Sony WF-SP800N</string>
    <string name="controlcenter_power_off_confirm_description">Are you sure you want to power off the device\?</string>
    <string name="sony_button_mode_left">Button Mode (Left)</string>
    <string name="discover_unsupported_devices">Discover unsupported devices</string>
    <string name="sony_button_mode_volume_control">Volume Control</string>
    <string name="discover_unsupported_devices_description">Enabling this option will display all discovered Bluetooth devices when scanning. Short tap will copy device name and MAC address to the clipboard. Long press will launch `Add test device` dialog.</string>
    <string name="sony_button_mode_right">Button Mode (Right)</string>
    <string name="sony_button_mode_off">Off</string>
    <string name="sony_button_mode_playback_control">Playback Control</string>
    <string name="pref_header_sony_equalizer_bands">Bands</string>
    <string name="sony_audio_upsampling">Audio Upsampling</string>
    <string name="devicetype_bose_qc35">Bose QC35</string>
    <string name="devicetype_vesc">VESC</string>
    <string name="descentDistance">Downhill distance</string>
    <string name="ascentDistance">Uphill distance</string>
    <string name="activity_type_hiking">Hiking</string>
    <string name="activity_type_climbing">Climbing</string>
    <string name="pref_media_rewind">Skip back</string>
    <string name="pref_device_action_broadcast">Send Broadcast</string>
    <string name="about_hash">Commit %s</string>
    <string name="pref_media_play">Media Play</string>
    <string name="pref_media_pause">Media Pause</string>
    <string name="pref_media_playpause">Toggle playback</string>
    <string name="pref_media_volumeup">Volume Up</string>
    <string name="pref_media_volumedown">Volume Down</string>
    <string name="distance_format_miles">###.#mi</string>
    <string name="devicetype_domyos_t540">Domyos T540</string>
    <string name="pref_button_action_disabled">Disabled</string>
    <string name="pref_media_next">Next Track</string>
    <string name="pref_media_previous">Previous Track</string>
    <string name="pref_media_forward">Skip forward</string>
    <string name="distance_format_feet">###ft</string>
    <string name="distance_format_meters">###m</string>
    <string name="distance_format_kilometers">###.#km</string>
    <string name="menuitem_menu">Menu</string>
    <string name="prefs_activity_recognition">Activity recognition settings</string>
    <string name="pref_activity_recognize_rowing">recognise rowing</string>
    <string name="pref_activity_recognize_running">recognise running</string>
    <string name="pref_activity_recognize_biking">recognise biking</string>
    <string name="pref_activity_recognize_walking">recognise walking</string>
    <string name="pref_activity_recognition_mode_none">none</string>
    <string name="pref_activity_recognition_mode_auto">auto</string>
    <string name="pref_activity_recognition_mode_ask">ask</string>
    <string name="fossil_hr_button_config_info">Some buttons cannot be configured because their functions are hard-coded in the watch firmware.
\n
\nWarning: long-pressing the upper button when a watchface from the official Fossil app is installed will also toggle between showing/hiding widgets.</string>
    <string name="watchface_dialog_widget_width">Width:</string>
    <string name="devicetype_sony_wh_1000xm4">Sony WH-1000XM4</string>
    <string name="sony_connect_two_devices">Connect to 2 devices simultaneously</string>
    <string name="sony_speak_to_chat_focus_on_voice">Focus on Voice</string>
    <string name="sony_speak_to_chat_sensitivity_low">Low</string>
    <string name="sony_speak_to_chat_sensitivity_high">High</string>
    <string name="sony_speak_to_chat_sensitivity_auto">Automatic</string>
    <string name="sony_speak_to_chat_timeout_long">Long (1m)</string>
    <string name="discovery_bluetooth_le_scan">Bluetooth LE scan:</string>
    <string name="sony_speak_to_chat_timeout_standard">Standard (30s)</string>
    <string name="sony_speak_to_chat_timeout_short">Short (15s)</string>
    <string name="sony_speak_to_chat_timeout_off">Off</string>
    <string name="sony_speak_to_chat_timeout">Timeout</string>
    <string name="sony_speak_to_chat_sensitivity">Voice Detection Sensitivity</string>
    <string name="sony_speak_to_chat">Speak-to-chat</string>
    <string name="device_unsupported">UNSUPPORTED</string>
    <string name="discovery_bluetooth_scan">Bluetooth scan:</string>
    <string name="devicetype_sonyswr12">Sony SWR12</string>
    <string name="sony_anc_optimize_confirmation_title">Noise Cancelling Optimiser</string>
    <string name="sony_anc_optimizer_status_wearing_condition">Measuring wearing condition…</string>
    <string name="start">Start</string>
    <string name="pref_header_sony_device_info">Device Information</string>
    <string name="sony_anc_optimizer_status_not_running">Not Running</string>
    <string name="sony_anc_optimizer_status_atmospheric_pressure">Measuring atmostpheric pressure…</string>
    <string name="sony_anc_optimizer_status_analyzing">Analyzing…</string>
    <string name="sony_anc_optimizer_status_finished">Finishing…</string>
    <string name="sony_anc_optimize_description">Click to start the noise cancelling optimiser.</string>
    <string name="sony_anc_optimize_title">Optimise</string>
    <string name="unknown">Unknown</string>
    <string name="pref_anc_optimizer_state_pressure">Atmospheric pressure</string>
    <string name="sony_anc_optimizer_status_starting">Starting…</string>
    <string name="audio_codec">Audio Codec</string>
    <string name="pref_header_sony_anc_optimizer">Noise Cancelling Optimiser</string>
    <string name="sony_anc_optimize_confirmation_description">Use the headphones as you normally would. If the wearing condition or atmospheric pressure change, run the optimiser again.</string>
    <string name="devicetype_amazfit_pop_pro">Amazfit Pop Pro</string>
    <string name="devicetype_amazfit_pop">Amazfit Pop</string>
    <string name="menuitem_nothing">Nothing</string>
    <string name="autoExport_lastTime_label">Last AutoExport: %1$s</string>
    <string name="activity_db_management_autoexport_scheduled_no">AutoExport has not been not scheduled.</string>
    <string name="pref_title_notifications_generic_settings">Android notification settings</string>
    <string name="activity_db_management_autoexport_scheduled_yes">AutoExport has (originally) been scheduled for %1$s</string>
    <string name="activity_db_management_autoexport_location">Location could not be understood. Likely an issue of newer Android permission system. Most likely, autoexport is not working now.</string>
    <string name="pref_title_opentracks_packagename">OpenTracks package name</string>
    <string name="pref_summary_opentracks_packagename">Used for starting/stopping GPS track recording in external fitness app.</string>
    <string name="activity_db_management_autoexport_enabled_yes">AutoExport is enabled.</string>
    <string name="activity_db_management_autoexport_enabled_no">AutoExport is not enabled.</string>
    <string name="pref_device_action_fitness_app_control_start">Fitness App Tracking Start</string>
    <string name="pref_device_action_fitness_app_control_stop">Fitness App Tracking Stop</string>
</resources>