blob: 6c7055b62345ed209ffe3bd75e6c912e1052768a [file] [log] [blame]
Chris Craik5888ec22011-07-15 16:24:37 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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 <!-- Button, steps back a single frame [CHAR LIMIT=15] -->
18 <string name="backward">Backward</string>
19 <!-- Button, steps forward a single frame [CHAR LIMIT=15] -->
20 <string name="forward">Forward</string>
21 <!-- The name of the application [CHAR LIMIT=20] -->
22 <string name="app_name">TileBenchmark</string>
23 <!-- name of the auto-scroller / tile logger activity [CHAR LIMIT=100] -->
24 <string name="profile_activity">Webview Profiler</string>
25 <!-- name of the tile log playback activity [CHAR LIMIT=100] -->
26 <string name="playback_activity">Webview Tile Playback</string>
27 <!-- Button, loads another tile log [CHAR LIMIT=30] -->
28 <string name="loadbutton">Load</string>
29 <!-- Button, opens the playback activity [CHAR LIMIT=20] -->
30 <string name="inspect_log">Inspect Log</string>
Chris Craik21555ab2011-07-21 11:52:19 -070031 <!-- ToggleButton label when pressing starts capture [CHAR LIMIT=15] -->
32 <string name="capture_start">Start Capture</string>
33 <!-- ToggleButton label when pressing stops capture [CHAR LIMIT=15] -->
34 <string name="capture_stop">Stop Capture</string>
Chris Craik5888ec22011-07-15 16:24:37 -070035 <!-- The speed of auto-scrolling [CHAR LIMIT=30] -->
36 <string name="desired_scroll_velocity">Choose Scroll Velocity</string>
37 <!-- Pixels moved per frame [CHAR LIMIT=10] -->
38 <string-array name="velocity_array">
39 <item>1</item>
40 <item>25</item>
41 <item>50</item>
42 <item>100</item>
43 <item>200</item>
44 <item>400</item>
45 </string-array>
Chris Craik21555ab2011-07-21 11:52:19 -070046 <!-- Drop down menu for selecting scrolling vs manual navigation for
47 capturing [CHAR LIMIT=15] -->
48 <string name="movement_method">Movement Method</string>
49 <!-- Drop down menu entry - automatically scroll to the end of the page
50 with scrollBy() [CHAR LIMIT=15] -->
51 <string name="movement_auto_scroll">Auto-scroll</string>
Chris Craik702c6fd2012-01-23 17:29:12 -080052 <!-- Drop down menu entry - automatically record for a set time before
53 stopping [CHAR LIMIT=15] -->
54 <string name="movement_timed">Timed</string>
Chris Craik21555ab2011-07-21 11:52:19 -070055 <!-- Drop down menu entry - manually navigate the page(s), hit 'capture'
56 button [CHAR LIMIT=15] -->
57 <string name="movement_manual">Manual</string>
58
59 <!-- Error popup indicating log data couldn't be loaded [CHAR LIMIT=60] -->
60 <string name="error_no_data">Error: log data could not be loaded.</string>
61
Chris Craik5888ec22011-07-15 16:24:37 -070062 <!-- 25th percentile - 25% of frames fall below this value [CHAR LIMIT=12]
63 -->
64 <string name="percentile_25">25%ile</string>
65 <!-- 50th percentile - 50% of frames fall below this value (aka median)
66 [CHAR LIMIT=12] -->
67 <string name="percentile_50">median</string>
68 <!-- 75th percentile - 75% of frames fall below this value [CHAR LIMIT=12]
69 -->
70 <string name="percentile_75">75%ile</string>
Chris Craik702c6fd2012-01-23 17:29:12 -080071 <!-- standard deviation [CHAR LIMIT=12] -->
72 <string name="std_dev">StdDev</string>
73 <!-- mean [CHAR LIMIT=12] -->
74 <string name="mean">mean</string>
75
76
77
Chris Craik5888ec22011-07-15 16:24:37 -070078 <!-- Frame rate [CHAR LIMIT=15] -->
79 <string name="frames_per_second">Frames/sec</string>
80 <!-- Portion of viewport covered by good tiles [CHAR LIMIT=15] -->
81 <string name="viewport_coverage">Coverage</string>
Chris Craik555c55e2011-07-28 15:39:43 -070082 <!-- Milliseconds taken to inval, and re-render the page [CHAR LIMIT=15] -->
83 <string name="render_millis">RenderMillis</string>
Chris Craik702c6fd2012-01-23 17:29:12 -080084 <!-- Animation Framerate [CHAR LIMIT=15] -->
85 <string name="animation_framerate">AnimFramerate</string>
Chris Craik5888ec22011-07-15 16:24:37 -070086 <!-- Format string for stat value overlay [CHAR LIMIT=15] -->
87 <string name="format_stat">%4.4f</string>
Chris Craik555c55e2011-07-28 15:39:43 -070088
89 <!-- Format string for viewport position value overlay [CHAR LIMIT=25] -->
90 <string name="format_view_pos">View:(%1$d,%2$d)-(%3$d,%4$d)</string>
91 <!-- Format string for viewport position value overlay [CHAR LIMIT=25] -->
92 <string name="format_inval_pos">Inval:(%1$d,%2$d)-(%3$d,%4$d)</string>
93
Chris Craik5888ec22011-07-15 16:24:37 -070094 <!-- Format string for displaying aggregate stats+values (nr of valid tiles,
95 etc.) [CHAR LIMIT=20] -->
Chris Craik21555ab2011-07-21 11:52:19 -070096 <string name="format_stat_name">%1$-20s %2$3d</string>
Chris Craik5888ec22011-07-15 16:24:37 -070097 <!-- Text hovering over canvas, number of tiles ready [CHAR LIMIT=15] -->
98 <string name="ready_tiles">Ready Tiles</string>
99 <!-- Text hovering over canvas, number tiles not ready [CHAR LIMIT=15] -->
100 <string name="unready_tiles">Unready Tiles</string>
101 <!-- Text hovering over canvas, number of tiles that haven't been
102 allocated to a place on the page [CHAR LIMIT=15] -->
103 <string name="unplaced_tiles">Unplaced Tiles</string>
Chris Craik21555ab2011-07-21 11:52:19 -0700104 <!-- Text hovering over canvas, number of invalidated regions this frame
105 [CHAR LIMIT=15] -->
106 <string name="number_invalidates">Invalidates</string>
Chris Craik5888ec22011-07-15 16:24:37 -0700107</resources>