5.1 introduced a snooze feature which activates when swiping up. Default snooze time is 1 minute. Let's make it configurable! Signed-off-by: Arghya Chanda <arghyac35@gmail.com> Change-Id: Ieac7f6182597c2285c1ddf40e2e75cce680682e7 Signed-off-by: SagarMakhar <sagarmakhar@gmail.com> Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
64 lines
2.5 KiB
XML
64 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-2020 The CherishOS Project
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
|
|
|
<!-- Torch Power button gestures -->
|
|
<string-array name="torch_power_button_gesture_entries">
|
|
<item>@string/torch_power_button_gesture_none</item>
|
|
<item>@string/torch_power_button_gesture_dt</item>
|
|
<item>@string/torch_power_button_gesture_lp</item>
|
|
</string-array>
|
|
<string-array name="torch_power_button_gesture_values" translatable="false">
|
|
<item>0</item>
|
|
<item>1</item>
|
|
<item>2</item>
|
|
</string-array>
|
|
|
|
<!-- Heads up timeout -->
|
|
<string-array name="heads_up_time_out_entries" translatable="false">
|
|
<item>@string/heads_up_time_out_2sec</item>
|
|
<item>@string/heads_up_time_out_4sec</item>
|
|
<item>@string/heads_up_time_out_5sec</item>
|
|
<item>@string/heads_up_time_out_6sec</item>
|
|
<item>@string/heads_up_time_out_8sec</item>
|
|
<item>@string/heads_up_time_out_10sec</item>
|
|
</string-array>
|
|
<string-array name="heads_up_time_out_values" translatable="false">
|
|
<item>2000</item>
|
|
<item>4000</item>
|
|
<item>5000</item>
|
|
<item>6000</item>
|
|
<item>8000</item>
|
|
<item>10000</item>
|
|
</string-array>
|
|
|
|
<!-- Heads up snooze -->
|
|
<string-array name="heads_up_snooze_entries">
|
|
<item>@string/disabled</item>
|
|
<item>@string/heads_up_snooze_1min</item>
|
|
<item>@string/heads_up_snooze_5min</item>
|
|
<item>@string/heads_up_snooze_10min</item>
|
|
<item>@string/heads_up_snooze_15min</item>
|
|
<item>@string/heads_up_snooze_20min</item>
|
|
</string-array>
|
|
<string-array name="heads_up_snooze_values" translatable="false">
|
|
<item>0</item>
|
|
<item>60000</item>
|
|
<item>300000</item>
|
|
<item>600000</item>
|
|
<item>900000</item>
|
|
<item>1200000</item>
|
|
</string-array>
|
|
</resources>
|