Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10db5988 authored by Michael Bestas's avatar Michael Bestas Committed by Roman Birg
Browse files

Settings: forward port lock pattern grid size (2/2)

Change-Id: I7078d703c218cd096d9b77c003a94b52fbce6322
parent 256c41fc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1211,6 +1211,8 @@
            android:taskAffinity="com.android.wizard"
            android:theme="@style/SetupWizardDisableAppStartingTheme" />

        <activity android:name="ChooseLockPatternSize" android:exported="false"/>

        <activity android:name="ChooseLockPattern" android:exported="false"/>

        <activity android:name="SetupChooseLockPassword"
+15 −0
Original line number Diff line number Diff line
@@ -465,6 +465,21 @@
    <string name="notification_light_missed_call_title">Missed call</string>
    <string name="notification_light_voicemail_title">Voicemail</string>

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

    <!-- Whether a visible red line will be drawn after the user has drawn the unlock pattern incorrectly -->
    <string name="lockpattern_settings_enable_error_path_title">Show pattern error</string>
    <!-- Whether the dots will be drawn when using the lockscreen pattern -->
    <string name="lockpattern_settings_enable_dots_title">Show pattern dots</string>

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

    <!-- Sound & notification > Sound section: Title for the option defining the default notification ringtone. [CHAR LIMIT=30] -->
    <string name="notification_ringtone_title_cm">Notification tone</string>

+2 −1
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@
     limitations under the License.
-->

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:title="@string/security_settings_title">

</PreferenceScreen>
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@

        <SwitchPreference
            android:key="visiblepattern"
            android:persistent="false"
            android:title="@string/lockpattern_settings_enable_visible_pattern_title"/>

        <ListPreference
+40 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2012-2013 The CyanogenMod Project

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

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

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<PreferenceScreen
    xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceScreen
        android:key="lock_pattern_size_3"
        android:title="@string/lock_pattern_size_3"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_4"
        android:title="@string/lock_pattern_size_4"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_5"
        android:title="@string/lock_pattern_size_5"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_6"
        android:title="@string/lock_pattern_size_6"
        android:persistent="false"/>

</PreferenceScreen>
Loading