strings.xml revision e6ea907e7cf8eb8f8ab04f238ab834ba970b4f45
1<?xml version="1.0" encoding="utf-8"?>
2<resources>
3    <string name="hello">Hello World, NotificationShowcaseActivity!</string>
4    <string name="app_name">NotificationShowcase</string>
5    <string name="post_button_label">Post Notifications</string>
6    <string name="remove_button_label">Remove Notifications</string>
7    <string name="prefs_button_label">Preferences</string>
8    <string name="answered">call answered</string>
9    <string name="ignored">call ignored</string>
10    <string name="full_screen_name">Full Screen Activity</string>
11    <string name="sms_click">Clicked on bigText</string>
12    <string name="sms_reply">reply</string>
13    <string name="sms_sender">Mike Cleron</string>
14    <string name="sms_message">Hey, looks like I\'m getting kicked out of this
15        conference room, so stay in the hangout and I\'ll rejoin in about
16        5-10 minutes. If you don\'t see me, assume I got pulled into another
17        meeting. And now\u2026 I have to find my shoes.
18    </string>
19
20    <string name="upload_click">Clicked on Upload</string>
21    <string name="upload_title">File Upload</string>
22    <string name="upload_text">foo.txt</string>
23
24    <string name="call_title">Incoming call</string>
25    <string name="call_text">Matias Duarte</string>
26    <string name="call_answer">Answer</string>
27    <string name="call_ignore">Ignore</string>
28
29    <string name="timer_click">Clicked on Stopwatch</string>
30    <string name="timer_title">Stopwatch PRO</string>
31    <string name="timer_text">Counting up</string>
32
33    <string name="calendar_click">Clicked on calendar event</string>
34    <string name="calendar_title">J Planning</string>
35    <string name="calendar_text">The Botcave</string>
36    <string name="calendar_10">+10 min</string>
37    <string name="calendar_10_click">snoozed 10 min</string>
38    <string name="calendar_60">+1 hour</string>
39    <string name="calendar_60_click">snoozed 1 hr</string>
40
41    <string name="picture_click">Clicked on bigPicture</string>
42    <string name="picture_add_click">added! (just kidding)</string>
43    <string name="picture_title">Romain Guy</string>
44    <string name="picture_text">I was lucky to find a Canon 5D Mk III at a
45        local Bay Area store last week but I had not been able to try it in the
46        field until tonight. After a few days of rain the sky finally cleared
47        up. Rockaway Beach did not disappoint and I was finally able to see
48        what my new camera feels like when shooting landscapes.
49    </string>
50    <string name="picture_add">Add to Gallery</string>
51    <string name="picture_sub_text">talk rocks!</string>
52
53    <string name="email_click">Clicked on Email</string>
54    <string name="email_title">24 new messages</string>
55    <string name="email_text">You have mail!</string>
56    <string name="email_sub_text">test.hugo2@gmail.com</string>
57    <string name="email_c"><b>Charlie</b>: I see you!</string>
58    <string name="email_a"><b>Alice</b>: hey there!</string>
59    <string name="email_b"><b>Bob</b>: hi there!</string>
60
61    <string name="social_click">Clicked on Social</string>
62    <string name="social_title">Social</string>
63    <string name="social_text">New mentions</string>
64
65    <string name="pref_title_enable">Enable</string>
66
67    <string name="pref_title_global">Global</string>
68    <string name="pref_title_global_fade">Fade Away</string>
69    <string name="pref_summary_global_fade">Automatically remove notifications after a short time</string>
70
71    <string name="pref_title_sms">SMS Example</string>
72    <string name="pref_summary_sms_enable">Enable the SMS example</string>
73    <string name="pref_title_sms_sound">Ringtone</string>
74    <string name="pref_title_sms_noisy">Noise</string>
75    <string name="pref_summary_sms_noisy">Allow the SMS example to be noisy</string>
76    <string name="pref_title_sms_buzzy">Vibration</string>
77    <string name="pref_summary_sms_buzzy">Allow the SMS example to vibrate</string>
78    <string name="pref_title_sms_priority">SMS Priority</string>
79    <string name="pref_title_sms_person">SMS Person</string>
80    <string name="pref_summary_sms_person">Add a person to the SMS notification</string>
81
82    <string name="pref_title_phone">Phone Example</string>
83    <string name="pref_summary_phone_enable">Enable the phone notification</string>
84    <string name="pref_title_phone_noisy">Noise</string>
85    <string name="pref_summary_phone_noisy">Allow the phone example to be noisy</string>
86    <string name="pref_title_phone_fullscreen">Fullscreen</string>
87    <string name="pref_summary_phone_fullscreen">Add a fullscreen intent</string>
88    <string name="pref_title_phone_person">Phone Person</string>
89    <string name="pref_summary_phone_person">Add a person to the phone notification</string>
90
91    <string name="pref_title_upload">Upload Example</string>
92    <string name="pref_summary_upload_enable">Enable the upload notification</string>
93
94    <string name="pref_title_timer">Timer Example</string>
95    <string name="pref_summary_timer_enable">Enable the timer notification</string>
96
97    <string name="pref_title_calendar">Calendar Example</string>
98    <string name="pref_summary_calendar_enable">Enable the calendar notification</string>
99
100    <string name="pref_title_picture">Picture Example</string>
101    <string name="pref_summary_picture_enable">Enable the big picture notification</string>
102
103    <string name="pref_title_inbox">Email Example</string>
104    <string name="pref_summary_inbox_enable">Enable the email notification</string>
105
106    <string name="pref_title_social">Social Example</string>
107    <string name="pref_summary_social_enable">Enable the social notification</string>
108
109    <string-array name ="priority_names">
110      <item>maximum</item>
111      <item>high</item>
112      <item>default</item>
113      <item>low</item>
114      <item>minimum</item>
115    </string-array>
116
117    <string-array name="priority_values">
118        <item>2</item>
119        <item>1</item>
120        <item>0</item>
121        <item>-1</item>
122        <item>-2</item>
123    </string-array>
124
125    <string name="hang_up_button_label">hang up</string>
126</resources>
127