aboutsummaryrefslogtreecommitdiff
path: root/wearable/wear/WatchFace/Wearable/src/main/res/values/strings.xml
blob: e4b27173dcaace15bb0f93405f207f2bacf6b6dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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">&lt;br&gt;&lt;br&gt;&lt;br&gt;WatchFace requires Calendar permission. Click on this WatchFace or visit Settings &gt; Permissions to approve.</string>
    <plurals name="calendar_meetings">
        <item quantity="one">&lt;br&gt;&lt;br&gt;&lt;br&gt;You have &lt;b&gt;%1$d&lt;/b&gt; meeting in the next 24 hours.</item>
        <item quantity="other">&lt;br&gt;&lt;br&gt;&lt;br&gt;You have &lt;b&gt;%1$d&lt;/b&gt; 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>