1<?xml version="1.0" encoding="utf-8"?>
2<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
3    <!-- A representation of a number of days in the shortest possible way. For example, "3d" for
4         three days. If at all possible, just one character should be used, but this should
5         allow days, hours and minutes to be distinguished (see time_difference_short_hours
6         and time_difference_short_minutes below). The user will understand that the context is
7         an amount of time, so even though "3d" does not normally mean "three days" in English,
8         it is appropriate here. If absolutely necessary, up to four characters may be used.
9         If the space can be omitted then it should be even if a space would usually be included
10         between a number and a unit, but if it is necessary to include a space then one may be used.
11         [CHAR LIMIT=5]-->
12    <plurals name="time_difference_short_days">
13        <item quantity="one"><xliff:g id="number_of_days">%d</xliff:g>d</item>
14        <item quantity="other"><xliff:g id="number_of_days">%d</xliff:g>d</item>
15    </plurals>
16
17    <!-- A representation of a number of hours in the shortest possible way. For example, "3h" for
18         three hours. If at all possible, just one character should be used, but this should
19         allow days, hours and minutes to be distinguished (see time_difference_short_days
20         and time_difference_short_minutes). The user will understand that the context is
21         an amount of time, so even though "3h" does not normally mean "three hours" in English,
22         it is appropriate here. If absolutely necessary, up to four characters may be used.
23         If the space can be omitted then it should be even if a space would usually be included
24         between a number and a unit, but if it is necessary to include a space then one may be used.
25         [CHAR LIMIT=5]-->
26    <plurals name="time_difference_short_hours">
27        <item quantity="one"><xliff:g id="number_of_hours">%d</xliff:g>h</item>
28        <item quantity="other"><xliff:g id="number_of_hours">%d</xliff:g>h</item>
29    </plurals>
30
31    <!-- A representation of a number of minutes in the shortest possible way. For example, "45m" for
32         forty-five minutes. If at all possible, just one character should be used, but this should
33         allow days, hours and minutes to be distinguished (see time_difference_short_days
34         and time_difference_short_hours). The user will understand that the context is
35         an amount of time, so even though "3m" does not normally mean "three minutes" in English,
36         it is appropriate here. If absolutely necessary, up to four characters may be used.
37         If the space can be omitted then it should be even if a space would usually be included
38         between a number and a unit, but if it is necessary to include a space then one may be used.
39         [CHAR LIMIT=5]-->
40    <plurals name="time_difference_short_minutes">
41        <item quantity="one"><xliff:g id="number_of_minutes">%d</xliff:g>m</item>
42        <item quantity="other"><xliff:g id="number_of_minutes">%d</xliff:g>m</item>
43    </plurals>
44
45    <!-- A representation of a number of days and hours in the shortest possible way. For example,
46         "3d 5h" for three days and five hours. In this string, "%1$s" will be replaced by
47         the localised string for time_difference_short_days, and "%2$s" will be replaced by
48         the localised string for time_difference_short_hours, as defined above.
49         [CHAR LIMIT=3]-->
50    <string name="time_difference_short_days_and_hours"><xliff:g id="short_days" example="3d">%1$s</xliff:g>\u0020<xliff:g id="short_hours" example="13h">%2$s</xliff:g></string>
51
52    <!-- A representation of a number of hours and minutes in the shortest possible way. For example,
53         "5h 12m" for five hours and twelve minutes. In this string, "%1$s" will be replaced by
54         the localised string for time_difference_short_hours, and "%2$s" will be replaced by
55         the localised string for time_difference_short_minutes, as defined above.
56         [CHAR LIMIT=3]-->
57    <string name="time_difference_short_hours_and_minutes"><xliff:g id="short_hours" example="13h">%1$s</xliff:g>\u0020<xliff:g id="short_minutes" example="58m">%2$s</xliff:g></string>
58
59    <!-- A representation of a number of days, abbreviated if possible. For example, "3 days" for
60         three days. [CHAR LIMIT=8]-->
61    <plurals name="time_difference_words_days">
62        <item quantity="one"><xliff:g id="number_of_days">%d</xliff:g> day</item>
63        <item quantity="other"><xliff:g id="number_of_days">%d</xliff:g> days</item>
64    </plurals>
65
66    <!-- A representation of a number of hours as a single word, abbreviated if possible. For
67         example, "5 hours" for five hours. [CHAR LIMIT=8]-->
68    <plurals name="time_difference_words_hours">
69        <item quantity="one"><xliff:g id="number_of_hours">%d</xliff:g> hour</item>
70        <item quantity="other"><xliff:g id="number_of_hours">%d</xliff:g> hours</item>
71    </plurals>
72
73    <!-- A representation of a number of minutes as a single word, abbreviated if possible. For
74         example, "12 minutes" for twelve minutes. [CHAR LIMIT=8]-->
75    <plurals name="time_difference_words_minutes">
76        <item quantity="one"><xliff:g id="number_of_minutes">%d</xliff:g> min</item>
77        <item quantity="other"><xliff:g id="number_of_minutes">%d</xliff:g> mins</item>
78    </plurals>
79
80    <!-- A string shown on its own to indicate that something is happening now. For example,
81         it could appear to show that the user's next meeting is already under way.
82         Abbreviation is ok as long as the string is still understandable.
83         [CHAR LIMIT=6] -->
84    <string name="time_difference_now">Now</string>
85
86</resources>
87