blob: c386a1b05b3a6d83936de7bcc701ffc29f94de3a [file] [log] [blame]
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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">CTS Verifier</string>
18 <string name="welcome_text">Welcome to the CTS Verifier!</string>
Brian Muramatsubf8790e2010-08-06 11:42:32 -070019 <string name="continue_button_text">Continue</string>
Brian Muramatsue1181872010-08-20 12:59:39 -070020
Brian Muramatsuff1038f2010-08-26 14:37:08 -070021 <string name="pass_button_text">Pass</string>
Brian Muramatsu14e1cbb2010-09-13 18:33:39 -070022 <string name="info_button_text">Info</string>
Brian Muramatsuff1038f2010-08-26 14:37:08 -070023 <string name="fail_button_text">Fail</string>
24
25 <!-- Strings for TestResultsReport -->
26 <string name="subject_header">[CtsVerifier %1$s]</string>
27 <string name="body_header">Cts Verifier %1$s Test Results</string>
28 <string name="pass_result">PASS</string>
29 <string name="fail_result">FAIL</string>
30 <string name="not_executed_result">NOT_EXECUTED</string>
Brian Muramatsue1181872010-08-20 12:59:39 -070031
Brian Muramatsu78d2c1d2010-08-16 15:22:30 -070032 <!-- Strings for TestListActivity -->
Brian Muramatsubf8790e2010-08-06 11:42:32 -070033 <string name="test_list_title">Manual Test List</string>
Brian Muramatsu78d2c1d2010-08-16 15:22:30 -070034 <string name="test_category_sensors">Sensors</string>
35 <string name="test_category_security">Security</string>
36 <string name="test_category_features">Features</string>
37 <string name="test_category_other">Other</string>
Brian Muramatsuac007372010-08-18 11:02:28 -070038 <string name="clear">Clear</string>
39 <string name="test_results_cleared">Test results cleared.</string>
Brian Muramatsuff1038f2010-08-26 14:37:08 -070040 <string name="share">Share</string>
41 <string name="share_test_results">Share Test Results</string>
Dan Morrill5df275b2010-08-11 12:19:19 -070042
Brian Muramatsuaccc6842010-08-11 18:57:27 -070043 <!-- Strings for FeatureSummaryActivity -->
Dan Morrill5df275b2010-08-11 12:19:19 -070044 <string name="feature_summary">Hardware/Software Feature Summary</string>
Brian Muramatsu14e1cbb2010-09-13 18:33:39 -070045 <string name="feature_summary_info">This is a test for...</string>
Dan Morrill5df275b2010-08-11 12:19:19 -070046 <string name="fs_disallowed">WARNING: device reports a disallowed feature name</string>
47 <string name="fs_missing_wifi_telephony">WARNING: device reports neither WiFi nor telephony</string>
48 <string name="fs_no_data">No data.</string>
Dan Morrill71351d82010-10-20 15:26:00 -070049 <string name="fs_legend_good">standard feature reported by device</string>
50 <string name="fs_legend_indeterminate">optional feature not reported by device</string>
51 <string name="fs_legend_warning">non-standard feature reported by device</string>
52 <string name="fs_legend_error">required feature not reported, or forbidden feature reported</string>
53
Dan Morrill5df275b2010-08-11 12:19:19 -070054 <string name="empty"></string>
55
Brian Muramatsuaccc6842010-08-11 18:57:27 -070056 <!-- Strings for AccelerometerTestActivity and MagnetometerTestActivity -->
Dan Morrill5df275b2010-08-11 12:19:19 -070057 <string name="snsr_accel_test">Accelerometer Test</string>
Dan Morrill71351d82010-10-20 15:26:00 -070058 <string name="snsr_accel_test_info">This test verifies that the accelerometer is working properly. As you move the device around through space, the triangle should always point down (i.e. in the direction of gravity.) If it does not, the accelerometer is improperly configured.</string>
Dan Morrill5df275b2010-08-11 12:19:19 -070059 <string name="snsr_mag_test">Magnetometer Test</string>
Dan Morrill71351d82010-10-20 15:26:00 -070060 <string name="snsr_mag_test_info">This test verifies that the magnetometer (compass) is working properly. As you move the device around through space, the triangle should always point toward the north pole (which may point through the ground.) If it does not, the magnetometer is improperly configured. Be sure not to run this test with the device near any strong magnetic field generators.</string>
Brian Muramatsuaccc6842010-08-11 18:57:27 -070061
62 <!-- Strings for SuidFilesActivity -->
Brian Muramatsu14e1cbb2010-09-13 18:33:39 -070063 <string name="suid_files">SUID File Scanner</string>
64 <string name="suid_files_info">This test will attempt to find unauthorized SUID binaries, but it is not comprehensive due to permission restrictions.\n\nAuthorized SUID binaries will appear green, while unauthorized SUID binaries will appear red.\n\nPress OK to start the scan...</string>
Brian Muramatsuac007372010-08-18 11:02:28 -070065 <string name="scanning_directory">Scanning directory...</string>
Brian Muramatsu22330722010-08-13 14:48:36 -070066 <string name="file_status">User: %1$s\nGroup: %2$s\nPermissions: %3$s\nPath: %4$s</string>
Brian Muramatsuaccc6842010-08-11 18:57:27 -070067 <string name="no_file_status">Could not stat file...</string>
68 <string name="congratulations">Congratulations!</string>
69 <string name="no_suid_files">No unauthorized suid files detected!</string>
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -070070</resources>