1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 3 ~ Copyright (C) 2015 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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 19 <string name="action_text_done">Done</string> 20 <string name="action_text_skip">Skip</string> 21 <!-- The episode display format with season and episode number used in series details view. 22 "S" is an abbreviation for Season and "Ep." is an abbreviation for episode. ":" is used as a separator. 23 For example, "S1: Ep. 1"--> 24 <string name="display_episode_number_format">S<xliff:g id="season_number" example="1">%1$s</xliff:g>: Ep.<xliff:g id="episode_number" example="1">%2$s</xliff:g></string> 25 <!-- The episode display format with episode number used in series details view. 26 "Ep." is an abbreviation for episode. 27 For example, "Ep. 1" --> 28 <string name="display_episode_number_format_no_season_number">Ep.<xliff:g id="episode_number" example="1">%1$s</xliff:g></string> 29 <!-- The episode title format displayed on the info banner. 30 "S" is an abbreviation for Season and Ep. is an abbreviation for episode. ":" is used as a separator. 31 For example, "S1: Ep. 1 Winter is coming". --> 32 <string name="display_episode_title_format">S<xliff:g id="season_number" example="1">%1$s</xliff:g>: Ep. <xliff:g id="episode_number" example="1">%2$s</xliff:g> <xliff:g id="episode_title" example="Winter is Coming">%3$s</xliff:g></string> 33 <!-- The episode title format displayed on the info banner when the season number is not available. 34 "Ep." is an abbreviation for episode. 35 For example, "Ep. 1807 Headline News". --> 36 <string name="display_episode_title_format_no_season_number">Ep. <xliff:g id="episode_number" example="1807">%1$s</xliff:g> <xliff:g id="episode_title" example="Headline News">%2$s</xliff:g></string> 37 <!-- Program title with season and episode number used in DVR card views. 38 HTML tag <i> is a placeholder for styling episode number part. 39 "S" is an abbreviation for Season and "Ep." is an abbreviation for episode. ":" is used as a separator. 40 For example "Big bang theory <i>S1: Ep. 12</i>" --> 41 <string name="program_title_with_episode_number"><xliff:g id="programName" example="Big bang theory">%1$s</xliff:g> <![CDATA[<i>]]>S<xliff:g id="seasonNumber" example="1">%2$s</xliff:g>: Ep. <xliff:g id="episodeNumber" example="12">%3$s</xliff:g><![CDATA[</i>]]></string> 42 <!-- Program title with episode number used in DVR card views. 43 HTML tag <i> is a placeholder for styling episode number part. 44 "S" is an abbreviation for Season and "Ep." is an abbreviation for episode. ":" is used as a separator. 45 For example "Big bang theory <i>Ep. 12</i>" 46 --> 47 <string name="program_title_with_episode_number_no_season"><xliff:g id="programName" example="Big bang theory">%1$s</xliff:g> <![CDATA[<i>]]>Ep. <xliff:g id="episodeNumber" example="12">%2$s</xliff:g><![CDATA[</i>]]></string> 48 </resources> 49