1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2016 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 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 17 <!-- The main application name for the radio. --> 18 <string name="app_name">Radio</string> 19 20 <!-- The name for the service that is responsible for connecting to the radio API. --> 21 <string name="service_name">RadioService</string> 22 23 <!-- Text to denote the AM radio band. --> 24 <string name="radio_am_text">AM</string> 25 26 <!-- Text to denote the FM radio band. --> 27 <string name="radio_fm_text">FM</string> 28 29 <!-- Transition name for the radio control background to current radio card in the presets 30 list . --> 31 <string name="radio_controls_transition_name" translatable="false"> 32 radio_controls_transition</string> 33 34 <!-- Transition name for the play button that will be shared between the main radio 35 display and presets list. --> 36 <string name="radio_play_button_transition_name" translatable="false"> 37 radio_play_button_transition</string> 38 39 <!-- Text indicating to the user that there was an error loading the error. --> 40 <string name="radio_problem_text">Radio not available</string> 41 42 <!-- Default metadata text if a preset has no metadata. This text should indicate to the user 43 that the station is favorited followed by the number of the favorite. --> 44 <string name="radio_default_preset_metadata_text">Favorite <xliff:g>%1$s</xliff:g></string> 45 46 <!-- The text in the drawer that will take the user to the radio's manual tuner. --> 47 <string name="manual_tuner_drawer_entry">Manual Tuner</string> 48 49 <!-- The strings for the dialpad in the manual tuner. --> 50 <string name="manual_tuner_0">0</string> 51 <string name="manual_tuner_1">1</string> 52 <string name="manual_tuner_2">2</string> 53 <string name="manual_tuner_3">3</string> 54 <string name="manual_tuner_4">4</string> 55 <string name="manual_tuner_5">5</string> 56 <string name="manual_tuner_6">6</string> 57 <string name="manual_tuner_7">7</string> 58 <string name="manual_tuner_8">8</string> 59 <string name="manual_tuner_9">9</string> 60 <string name="manual_tuner_period">.</string> 61 </resources> 62