1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2023 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<resources> 18 <!-- App title of DeviceAsWebcam --> 19 <string name="app_label">Webcam Service</string> 20 <!-- Accessibility description for the view finder texture view --> 21 <string name="view_finder_description">View finder</string> 22 <!-- Accessibility description for the zoom ratio container --> 23 <string name="zoom_ratio_description">Zoom ratio</string> 24 <!-- Accessibility description for the currently selected Zoom ratio button --> 25 <string name="zoom_ratio_button_current_description">Current Zoom Ratio</string> 26 <!-- Accessibility description for Zoom Seek Bar --> 27 <string name="zoom_seek_bar_description">Zoom Seek Bar</string> 28 <!-- Accessibility description for the toggle camera image button --> 29 <string name="toggle_camera_button_description_back">Switch to back camera</string> 30 <string name="toggle_camera_button_description_front">Switch to front camera</string> 31 <!-- Accessibility description for the toggle high quality button --> 32 <string name="toggle_high_quality_description_off">Switch High Quality off</string> 33 <string name="toggle_high_quality_description_on">Switch High Quality on</string> 34 <!-- Notification --> 35 <string name="notif_channel_name">Foreground Service</string> 36 <string name="notif_ticker">Webcam</string> 37 <string name="notif_title">Webcam</string> 38 <string name="notif_desc">Tap to preview and configure webcam output</string> 39 <!-- High Quality warning dialog --> 40 <string name="hq_warning_dialog_title">High Quality Mode</string> 41 <string name="hq_warning_dialog_content_1">High Quality Mode disables power optimizations to improve webcam quality. Using this mode may cause significant power draw which can heat up the device.</string> 42 <string name="hq_warning_dialog_content_2"><b><u>WARNING:</u></b> Prolonged usage at high temperatures may have an adverse effect on the long term battery health of this device.</string> 43 <string name="hq_warning_dialog_dont_show_again">Don\'t show again</string> 44 <string name="hq_warning_dialog_button_ack">Acknowledge</string> 45 46 <!-- Strings for reading/writing user preferences to SharedPreferences --> 47 <string name="prefs_file_name">com.android.DeviceAsWebcam.user.prefs</string> 48 <string name="prefs_camera_id_key">camera.id</string> 49 <string name="prefs_back_camera_id_key">back.camera.id</string> 50 <string name="prefs_front_camera_id_key">front.camera.id</string> 51 <string name="prefs_zoom_ratio_key">zoom.ratio.%s</string> 52 <string name="prefs_high_quality_mode_enabled">high.quality.mode.enabled</string> 53 <string name="prefs_high_quality_warning_enabled">high.quality.warning.enabled</string> 54 55 <!-- Strings for switch camera selector dialog --> 56 <string name="list_item_text_back_camera">Back camera</string> 57 <string name="list_item_text_front_camera">Front camera</string> 58 <string name="list_item_text_standard_camera">Standard camera</string> 59 <string name="list_item_text_wide_angle_camera">Wide angle camera</string> 60 <string name="list_item_text_ultra_wide_camera">Ultra wide camera</string> 61 <string name="list_item_text_telephoto_camera">Telephoto camera</string> 62 <string name="list_item_text_other_camera">Other camera</string> 63 <string name="list_item_text_unknown_camera">Unknown camera</string> 64 <!-- Accessibility description for the OK button --> 65 <string name="camera_options_list_description">Available camera options</string> 66</resources> 67