You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
3.3 KiB
68 lines
3.3 KiB
4 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- Copyright (C) 2014 The Android Open Source Project
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
<resources>
|
||
|
<string name="app_name">WatchFace</string>
|
||
|
<string name="opengl_name">Sample OpenGL</string>
|
||
|
<string name="interactive_name">Sample Interactive</string>
|
||
|
<string name="analog_name">Sample Analog</string>
|
||
|
<string name="complication_simple">Sample Complication Simple</string>
|
||
|
<string name="sweep_name">Sample Sweep</string>
|
||
|
<string name="card_bounds_name">Sample Card Bounds</string>
|
||
|
<string name="digital_name">Sample Digital</string>
|
||
|
<string name="digital_background_color">Background color</string>
|
||
|
<string name="digital_config_name">Digital watch face configuration</string>
|
||
|
<string name="digital_am">AM</string>
|
||
|
<string name="digital_pm">PM</string>
|
||
|
|
||
|
<string name="fit_steps_name">Sample Fit Steps</string>
|
||
|
<string name="fit_distance_name">Sample Fit Distance</string>
|
||
|
<string name="fit_am">AM</string>
|
||
|
<string name="fit_pm">PM</string>
|
||
|
<string name="fit_steps">%1$d steps</string>
|
||
|
<string name="fit_distance">%1$,.2f meters</string>
|
||
|
|
||
|
<string name="calendar_name">Sample Calendar</string>
|
||
|
<string name="calendar_permission_not_approved"><br><br><br>WatchFace requires Calendar permission. Click on this WatchFace or visit Settings > Permissions to approve.</string>
|
||
|
<plurals name="calendar_meetings">
|
||
|
<item quantity="one"><br><br><br>You have <b>%1$d</b> meeting in the next 24 hours.</item>
|
||
|
<item quantity="other"><br><br><br>You have <b>%1$d</b> meetings in the next 24 hours.</item>
|
||
|
</plurals>
|
||
|
<string name="title_activity_calendar_watch_face_permission">Calendar Permission Activity</string>
|
||
|
<string name="calendar_permission_text">WatchFace requires Calendar access.</string>
|
||
|
|
||
|
<string name="complication_simple_config_name">Configuration</string>
|
||
|
<string name="complications_provider_random_number">Random Number</string>
|
||
|
|
||
|
<!-- TODO: this should be shared (needs covering all the samples with Gradle build model) -->
|
||
|
<string name="color_black">Black</string>
|
||
|
<string name="color_blue">Blue</string>
|
||
|
<string name="color_gray">Gray</string>
|
||
|
<string name="color_green">Green</string>
|
||
|
<string name="color_navy">Navy</string>
|
||
|
<string name="color_red">Red</string>
|
||
|
<string name="color_white">White</string>
|
||
|
|
||
|
<string-array name="color_array">
|
||
|
<item>@string/color_black</item>
|
||
|
<item>@string/color_blue</item>
|
||
|
<item>@string/color_gray</item>
|
||
|
<item>@string/color_green</item>
|
||
|
<item>@string/color_navy</item>
|
||
|
<item>@string/color_red</item>
|
||
|
<item>@string/color_white</item>
|
||
|
</string-array>
|
||
|
</resources>
|