1 <!-- 2 Copyright 2013 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 <string name="app_name">Scheduler</string> 19 <string name="intro_message">Welcome to <b>Scheduler</b>! 20 This sample demonstrates how you can schedule an alarm that causes a service to 21 be started. This is useful when you want to schedule alarms that initiate 22 long-running operations. Click START ALARM to activate an alarm to check 23 the Google home page for a custom doodle once a day. If the app finds a doodle, 24 it posts a \"Doodle Alert\" as a notification. Click CANCEL ALARM to cancel the 25 alarm. Once the alarm is active, it automatically restarts when the device is 26 rebooted.</string> 27 <string name="start_text">Start Alarm</string> 28 <string name="cancel_text">Cancel Alarm</string> 29 <string name="doodle_alert">Doodle Alert</string> 30 <string name="doodle_found">There is a Google doodle today!!</string> 31 <string name="no_doodle">No Google doodle today.</string> 32 <string name="connection_error">Connection error.</string> 33 </resources> 34