1<!-- 2/* 3 * Copyright 2022 Google LLC 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<?xml version="1.0" encoding="utf-8"?> 19<resources> 20 <!-- Notification title that is shown when MDD is 21 downloading a file.[CHAR_LIMIT=80] --> 22 <string name="mdd_foreground_service_notification_title"> 23 Downloading 24 </string> 25 26 <!-- Notification channel group that is shown when long pressing any notification. 27[CHAR_LIMIT=80] --> 28 <string name="mdd_download_notification_channel_name"> 29 Data Download Notification Channel 30 </string> 31 32 <!-- Notification title that is shown for every file that is currently 33 downloading but is temporary paused due to missing any network connection. [CHAR_LIMIT=80] --> 34 <string name="mdd_notification_download_paused"> 35 Waiting for network connection 36 </string> 37 38 <!-- Notification title that is shown for every file that is currently 39 downloading but is temporary paused due to missing wifi network connection. [CHAR_LIMIT=80] --> 40 <string name="mdd_notification_download_paused_wifi"> 41 Waiting for WiFi connection 42 </string> 43 44 <!-- Notification title that is shown for every file that was successfully 45 downloaded.[CHAR_LIMIT=80] --> 46 <string name="mdd_notification_download_success"> 47 Downloaded 48 </string> 49 50 <!-- Notification title that is shown for every file that failed to download. 51 [CHAR_LIMIT=80] --> 52 <string name="mdd_notification_download_failed"> 53 Download failed 54 </string> 55 56 <!-- The cancel action menu.[CHAR_LIMIT=80] --> 57 <string name="mdd_notification_action_cancel"> 58 Cancel 59 </string> 60</resources> 61