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

Commit cce02959 authored by Ganesh Olekar's avatar Ganesh Olekar Committed by Automerger Merge Worker
Browse files

Merge "Update toggle string for cam and mic access" into sc-v2-dev am: f24702f6

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/16102463

Change-Id: I47bf9211925aaa3341f764db54009c58d9a6ffcf
parents 6f405c9c f24702f6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -13605,8 +13605,10 @@
    <string name="camera_toggle_title">Camera access</string>
    <!-- Label for the camera use toggle [CHAR LIMIT=40] -->
    <string name="mic_toggle_title">Microphone access</string>
    <!-- Describes what is affected by the camera or mic toggle [CHAR LIMIT=NONE] -->
    <string name="sensor_toggle_description">For all apps and services</string>
    <!-- Describes what is affected by the camera toggle [CHAR LIMIT=NONE] -->
    <string name="cam_toggle_description">For apps and services</string>
    <!-- Describes what is affected by the mic toggle [CHAR LIMIT=NONE] -->
    <string name="mic_toggle_description">For apps and services. If this setting is off, microphone data may still be shared when you call an emergency number.</string>
    <!-- Title for Game settings entry. [CHAR_LIMIT=NONE] -->
    <string name="game_settings_title">Game settings</string>
+2 −2
Original line number Diff line number Diff line
@@ -67,14 +67,14 @@
    <com.android.settingslib.RestrictedSwitchPreference
        android:key="privacy_camera_toggle"
        android:title="@string/camera_toggle_title"
        android:summary="@string/sensor_toggle_description"
        android:summary="@string/cam_toggle_description"
        settings:controller="com.android.settings.privacy.CameraToggleController"/>

    <!-- Microphone toggle -->
    <com.android.settingslib.RestrictedSwitchPreference
        android:key="privacy_mic_toggle"
        android:title="@string/mic_toggle_title"
        android:summary="@string/sensor_toggle_description"
        android:summary="@string/mic_toggle_description"
        settings:controller="com.android.settings.privacy.MicToggleController"/>

    <!-- Show passwords -->