1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 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--> 19 20<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 21 22 <!-- Wallpapers showing a music visualizer --> 23 <string name="wallpaper_vis1">Visualizer</string> 24 <string name="wallpaper_vis2">Waveform</string> 25 <string name="wallpaper_vis3">Spectrum</string> 26 <string name="wallpaper_vis4">VU meter</string> 27 <string name="wallpaper_vis5">Many</string> 28 29 30 <!-- x,y,z tuples for the points defining the object --> 31 <!-- stored as strings for easier human readability --> 32 <string-array name="points" translatable="false"> 33 <item>"-400 -400 -400"</item> 34 <item>"400 -400 -400"</item> 35 <item>"400 400 -400"</item> 36 <item>"-400 400 -400"</item> 37 <item>"-400 -400 400"</item> 38 <item>"400 -400 400"</item> 39 <item>"400 400 400"</item> 40 <item>"-400 400 400"</item> 41 </string-array> 42 43 <!-- start,end point index tuples of the lines defining the object --> 44 <string-array name="lines" translatable="false"> 45 <!-- lines forming one face --> 46 <item>"0 1"</item> 47 <item>"1 2"</item> 48 <item>"2 3"</item> 49 <item>"3 0"</item> 50 51 <!-- lines forming the opposite face --> 52 <item>"4 5"</item> 53 <item>"5 6"</item> 54 <item>"6 7"</item> 55 <item>"7 4"</item> 56 57 <!-- lines connecting the two faces --> 58 <item>"0 4"</item> 59 <item>"1 5"</item> 60 <item>"2 6"</item> 61 <item>"3 7"</item> 62 </string-array> 63 64</resources> 65