1<!-- 2 Copyright 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> 17 <string name="app_name">Wear Drawers</string> 18 19 <!-- 20 Reference name for each planet's information array. 21 --> 22 <string-array name="planets_array_names"> 23 <item>mercury</item> 24 <item>venus</item> 25 <item>earth</item> 26 <item>mars</item> 27 <item>jupiter</item> 28 <item>saturn</item> 29 <item>uranus</item> 30 <item>neptune</item> 31 </string-array> 32 33 <!-- 34 Keys for planet array information below: 35 "Planet Name", 36 "Navigation icon", 37 "Drawable for planet" 38 "Number of Moons", 39 "Volume" 40 "Surface Area" 41 42 --> 43 <string-array name="mercury"> 44 <item>Mercury</item> 45 <item>ic_m_white_48dp</item> 46 <item>mercury</item> 47 <item>0 Moons</item> 48 <item>0.056 x Earth</item> 49 <item>0.147 x Earth</item> 50 </string-array> 51 52 <string-array name="venus"> 53 <item>Venus</item> 54 <item>ic_v_white_48dp</item> 55 <item>venus</item> 56 <item>0 Moons</item> 57 <item>0.857 x Earth</item> 58 <item>0.902 x Earth</item> 59 </string-array> 60 61 <string-array name="earth"> 62 <item>Earth</item> 63 <item>ic_e_white_48dp</item> 64 <item>earth</item> 65 <item>1 moon</item> 66 <item>1,083,206,916,846 km3</item> 67 <item>510,064,472 km2</item> 68 </string-array> 69 70 <string-array name="mars"> 71 <item>Mars</item> 72 <item>ic_m_white_48dp</item> 73 <item>mars</item> 74 <item>2 Moons</item> 75 <item>0.151 x Earth</item> 76 <item>0.283 x Earth</item> 77 </string-array> 78 79 <string-array name="jupiter"> 80 <item>Jupiter</item> 81 <item>ic_j_white_48dp</item> 82 <item>jupiter</item> 83 <item>67 Moons</item> 84 <item>1,321.337 x Earth</item> 85 <item>120.414 x Earth</item> 86 </string-array> 87 88 <string-array name="saturn"> 89 <item>Saturn</item> 90 <item>ic_s_white_48dp</item> 91 <item>saturn</item> 92 <item>62 moons</item> 93 <item>763.594 x Earth</item> 94 <item>83.543 x Earth</item> 95 </string-array> 96 97 <string-array name="uranus"> 98 <item>Uranus</item> 99 <item>ic_u_white_48dp</item> 100 <item>uranus</item> 101 <item>27 Moons</item> 102 <item>63.085 x Earth</item> 103 <item>15.847 x Earth</item> 104 </string-array> 105 106 <string-array name="neptune"> 107 <item>Neptune</item> 108 <item>ic_n_white_48dp</item> 109 <item>neptune</item> 110 <item>14 Moons</item> 111 <item>57.723 x Earth</item> 112 <item>14.980 x Earth</item> 113 </string-array> 114</resources>