1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2017 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License 16 --> 17 18<resources> 19 <!-- Title for the spam blocking promo dialog. [CHAR LIMIT=100] --> 20 <string name="spam_blocking_promo_title">Filter all suspected spam calls?</string> 21 <!-- Text for the spam blocking promo dialog. [CHAR LIMIT=NONE] --> 22 <string name="spam_blocking_promo_text">Calls like the one you just blocked will no longer 23 disturb you</string> 24 <!-- Label for filter spam dialog action. [CHAR LIMIT=32] --> 25 <string name="spam_blocking_promo_action_filter_spam">Filter Spam</string> 26 <!-- Label for "Dismiss" dialog action. [CHAR LIMIT=32] --> 27 <string name="spam_blocking_promo_action_dismiss">Dismiss</string> 28 <!-- Button text to prompt a user to open spam blocking setting [CHAR LIMIT=NONE] --> 29 <string name="spam_blocking_setting_prompt">Settings</string> 30 31 <!-- Spam blocking error text, shown when error happens during setting enabling. --> 32 <string name="spam_blocking_settings_enable_error_text">Problem turning on spam filtering</string> 33 <!-- Spam blocking error text, shown when error happens during setting disabling. --> 34 <string name="spam_blocking_settings_disable_error_text">Problem turning off spam filtering</string> 35 36 <!-- On complete text shown when spam blocking is enabled successfully. --> 37 <string name="spam_blocking_settings_enable_complete_text">Spam filtering turned on</string> 38 <!-- On complete text shown when spam blocking is disabled successfully. --> 39 <string name="spam_blocking_settings_disable_complete_text">Spam filtering turned off</string> 40</resources> 41