Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3  * Copyright (C) 2008 Esmertec AG.
      4  * Copyright (C) 2008 The Android Open Source Project
      5  *
      6  * Licensed under the Apache License, Version 2.0 (the "License");
      7  * you may not use this file except in compliance with the License.
      8  * You may obtain a copy of the License at
      9  *
     10  *      http://www.apache.org/licenses/LICENSE-2.0
     11  *
     12  * Unless required by applicable law or agreed to in writing, software
     13  * distributed under the License is distributed on an "AS IS" BASIS,
     14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15  * See the License for the specific language governing permissions and
     16  * limitations under the License.
     17  -->
     18 <resources>
     19     <!-- NOTE: if you change anything about this array, you must make the corresponding change
     20          to the array DEFAULT_SMILEY_RES_IDS in MessageListItem.java and to default_smiley_names
     21          below. -->
     22     <string-array name="default_smiley_texts" translatable="false">
     23       <item>:-)</item>   <!-- 0: Happy -->
     24       <item>:-(</item>   <!-- 1: Sad -->
     25       <item>;-)</item>   <!-- 2: Winking -->
     26       <item>:-P</item>   <!-- 3: Tongue sticking out -->
     27       <item>=-O</item>   <!-- 4: Surprised -->
     28       <item>:-*</item>   <!-- 5: Kissing -->
     29       <item>:O</item>    <!-- 6: Yelling -->
     30       <item>B-)</item>   <!-- 7: Cool -->
     31       <item>:-$</item>   <!-- 8: Money mouth -->
     32       <item>:-!</item>   <!-- 9: Foot in mouth -->
     33       <item>:-[</item>   <!-- 10: Embarrassed -->
     34       <item>O:-)</item>  <!-- 11: Angel -->
     35       <item>:-\\</item>  <!-- 12: Undecided -->
     36       <item>:\'(</item>  <!-- 13: Crying -->
     37       <item>:-X</item>   <!-- 14: Lips are sealed -->
     38       <item>:-D</item>   <!-- 15: Laughing -->
     39       <item>o_O</item>   <!-- 16: Confused -->
     40       <item>&lt;3</item> <!-- 17: Heart -->
     41       <item>x-(</item>   <!-- 18: Mad -->
     42       <item>:-/</item>   <!-- 19: Smirk -->
     43       <item>:-I</item>   <!-- 20: Poker face -->
     44     </string-array>
     45 
     46     <!-- NOTE: if you change anything about this array, you must make the corresponding change
     47          to the array DEFAULT_SMILEY_RES_IDS in SmileyParser.java and to default_smiley_texts
     48          above. -->
     49     <string-array name="default_smiley_names">
     50         <item>Happy</item>                   <!-- 0: :-) -->
     51         <item>Sad</item>                     <!-- 1: :-( -->
     52         <item>Winking</item>                 <!-- 2: ;-) -->
     53         <item>Tongue sticking out</item>     <!-- 3: :-P -->
     54         <item>Surprised</item>               <!-- 4: =-O -->
     55         <item>Kissing</item>                 <!-- 5: :-* -->
     56         <item>Yelling</item>                 <!-- 6: :O -->
     57         <item>Cool</item>                    <!-- 7: B-) -->
     58         <item>Money mouth</item>             <!-- 8: :-$ -->
     59         <item>Foot in mouth</item>           <!-- 9: :-! -->
     60         <item>Embarrassed</item>             <!-- 10: :-[ -->
     61         <item>Angel</item>                   <!-- 11: O:-) -->
     62         <item>Undecided</item>               <!-- 12: :-\\ -->
     63         <item>Crying</item>                  <!-- 13: :\'( -->
     64         <item>Lips are sealed</item>         <!-- 14: :-X -->
     65         <item>Laughing</item>                <!-- 15: :-D -->
     66         <item>Confused</item>                <!-- 16: o_O -->
     67         <item>Heart</item>                   <!-- 17: <3 -->
     68         <item>Mad</item>                     <!-- 18: x-( -->
     69         <item>Smirk</item>                   <!-- 19: :-/ -->
     70         <item>Poker face</item>              <!-- 20: :-I -->
     71     </string-array>
     72 
     73     <!-- String to match as no subject and filter out as a subject. For example, if the
     74          subject string is "no subject", we won't display that. We'll pretend
     75          no subject string was delivered. -->
     76     <string-array name="empty_subject_strings">
     77         <item>no subject</item>
     78     </string-array>
     79 </resources>
     80