• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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
17<resources>
18    <!-- The name of the Voice Dialer application. -->
19    <string name="voiceDialer">Voice Dialer</string>
20
21    <!-- title to the Tool Tip window.  open when VoiceDialer not launched
22        by green Call button -->
23    <string name="tool_tip_title">Did you know\u2026</string>
24
25    <!-- message in the Tool Tip window.  purpose is to notify user of green
26        Call button launch -->
27    <string name="tool_tip_message">
28        Pressing &amp; holding the green Call button opens the Voice
29        Dialer.
30    </string>
31
32    <!-- present on the VoiceDialer main screen to give examples of valid
33            speech input -->
34    <string name="examples">
35        Examples:
36        <b>
37            \n\"Call John Doe\"
38            \n\"Call John Doe at home, \u2026\"
39            \n\"Call voicemail\"
40            \n\"Dial (866) 555 0123\"
41            \n\"Dial 911, 811, \u2026\"
42            \n\"Dial +44 7333 444 555\"
43            \n\"Redial\"
44            \n\"Open Calendar\"
45        </b>
46    </string>
47
48    <!-- title to the VoiceDialer main screen -->
49    <string name="title">Voice Dialer</string>
50
51    <!-- title to the VoiceDialer main screen -->
52    <string name="bluetooth_title">Bluetooth Voice Dialer</string>
53
54    <!-- displayed on the VoiceDialer main screen while initializing -->
55    <string name="initializing">Starting up.</string>
56
57    <!-- displayed on the VoiceDialer main screen while listening to speech -->
58    <string name="listening">Listening\u2026</string>
59
60    <!-- displayed on the VoiceDialer main screen upon failure -->
61    <string name="please_try_again">Please try again.</string>
62
63
64    <!--displayed when there is a fatal error on initialization or
65        recognition-->
66    <string name="failure">Failure</string>
67
68    <!-- displayed on the VoiceDialer main screen after unrecoverable error.
69            when present, this message follows the one above -->
70    <string name="recognition_error">
71        You can also try restarting your phone.
72    </string>
73
74    <!-- displayed when the connection tot he bluetooth headset is lost -->
75    <string name="headset_connection_lost">
76      Connection to headset lost.
77    </string>
78
79    <!-- appended to recognition result from VoiceDialer.grxml to
80            indicate a 'home' number.
81            'Call John Smith' becomes 'Call John Smith at home'  -->
82    <string name="at_home">" at home"</string>
83
84    <!-- appended to recognition result from VoiceDialer.grxml to
85            indicate a 'mobile' number.
86            'Call John Smith' becomes 'Call John Smith at home'  -->
87    <string name="on_mobile">" on mobile"</string>
88
89    <!-- appended to recognition result from VoiceDialer.grxml to
90            indicate a 'work' number.
91            'Call John Smith' becomes 'Call John Smith at home'  -->
92    <string name="at_work">" at work"</string>
93
94    <!-- appended to recognition result from VoiceDialer.grxml to
95            indicate a 'other' number.
96            'Call John Smith' becomes 'Call John Smith at home'  -->
97    <string name="at_other">" at other"</string>
98
99    <!-- message in popup which indicates that VoiceDialer logging
100            has been enabled -->
101    <string name="logging_enabled">Voice Dialer logging is enabled.</string>
102
103    <!-- message in popup which indicates that VoiceDialer logging
104            has been disabled -->
105    <string name="logging_disabled">Voice Dialer logging is disabled.</string>
106
107    <!-- message that is spoken to indicate that the user can begin speaking.
108    -->
109    <string name="speak_now_tts">Speak now.</string>
110
111    <!-- message that is spoken when we get no results
112    -->
113    <string name="no_results_tts">No results, try again.</string>
114
115    <!-- message that is spoken when the user asks for a choice that
116            is not available -->
117    <string name="invalid_choice_tts">Invalid choice.</string>
118
119    <!-- message that is spoken to inform the user that the application
120            is shutting down.-->
121    <string name="goodbye_tts">Goodbye.</string>
122
123</resources>
124