Mercurial > hg > rc1
comparison plugins/libcalendaring/localization/en_US.inc @ 4:888e774ee983
libcalendar plugin as distributed
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 08:57:56 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:f6fe4b6ae66a | 4:888e774ee983 |
---|---|
1 <?php | |
2 | |
3 /** | |
4 * Localizations for the Kolab calendaring utilities plugin | |
5 * | |
6 * Copyright (C) 2014, Kolab Systems AG | |
7 * | |
8 * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ | |
9 */ | |
10 | |
11 $labels = array(); | |
12 | |
13 // words for spoken dates | |
14 $labels['until'] = 'until'; | |
15 $labels['at'] = 'at'; | |
16 | |
17 // alarms related labels | |
18 $labels['alarmemail'] = 'Send Email'; | |
19 $labels['alarmdisplay'] = 'Show message'; | |
20 $labels['alarmaudio'] = 'Play sound'; | |
21 $labels['alarmdisplayoption'] = 'Message'; | |
22 $labels['alarmemailoption'] = 'Email'; | |
23 $labels['alarmaudiooption'] = 'Sound'; | |
24 $labels['alarmat'] = 'at $datetime'; | |
25 $labels['trigger@'] = 'on date'; | |
26 $labels['trigger-M'] = 'minutes before'; | |
27 $labels['trigger-H'] = 'hours before'; | |
28 $labels['trigger-D'] = 'days before'; | |
29 $labels['trigger+M'] = 'minutes after'; | |
30 $labels['trigger+H'] = 'hours after'; | |
31 $labels['trigger+D'] = 'days after'; | |
32 $labels['triggerend-M'] = 'minutes before end'; | |
33 $labels['triggerend-H'] = 'hours before end'; | |
34 $labels['triggerend-D'] = 'days before end'; | |
35 $labels['triggerend+M'] = 'minutes after end'; | |
36 $labels['triggerend+H'] = 'hours after end'; | |
37 $labels['triggerend+D'] = 'days after end'; | |
38 $labels['trigger0'] = 'on time'; | |
39 $labels['triggerattime'] = 'at start time'; | |
40 $labels['triggerattimeend'] = 'at end time'; | |
41 $labels['relatedstart'] = 'start'; | |
42 $labels['relatedendevent'] = 'end'; | |
43 $labels['relatedendtask'] = 'due time'; | |
44 $labels['addalarm'] = 'Add alarm'; | |
45 $labels['removealarm'] = 'Remove alarm'; | |
46 | |
47 $labels['alarmtitle'] = 'Upcoming events'; | |
48 $labels['dismissall'] = 'Dismiss all'; | |
49 $labels['dismiss'] = 'Dismiss'; | |
50 $labels['snooze'] = 'Snooze'; | |
51 $labels['repeatinmin'] = 'Repeat in $min minutes'; | |
52 $labels['repeatinhr'] = 'Repeat in 1 hour'; | |
53 $labels['repeatinhrs'] = 'Repeat in $hrs hours'; | |
54 $labels['repeattomorrow'] = 'Repeat tomorrow'; | |
55 $labels['repeatinweek'] = 'Repeat in a week'; | |
56 | |
57 $labels['showmore'] = 'Show more...'; | |
58 | |
59 // recurrence related labels | |
60 $labels['recurring'] = 'Repeats'; | |
61 $labels['frequency'] = 'Repeat'; | |
62 $labels['never'] = 'never'; | |
63 $labels['daily'] = 'daily'; | |
64 $labels['weekly'] = 'weekly'; | |
65 $labels['monthly'] = 'monthly'; | |
66 $labels['yearly'] = 'annually'; | |
67 $labels['rdate'] = 'on dates'; | |
68 $labels['every'] = 'Every'; | |
69 $labels['days'] = 'day(s)'; | |
70 $labels['weeks'] = 'week(s)'; | |
71 $labels['months'] = 'month(s)'; | |
72 $labels['years'] = 'year(s)'; | |
73 $labels['bydays'] = 'On'; | |
74 $labels['untildate'] = 'the'; | |
75 $labels['each'] = 'Each'; | |
76 $labels['onevery'] = 'On every'; | |
77 $labels['onsamedate'] = 'On the same date'; | |
78 $labels['forever'] = 'forever'; | |
79 $labels['recurrencend'] = 'until'; | |
80 $labels['untilenddate'] = 'until date'; | |
81 $labels['forntimes'] = 'for $nr time(s)'; | |
82 $labels['first'] = 'first'; | |
83 $labels['second'] = 'second'; | |
84 $labels['third'] = 'third'; | |
85 $labels['fourth'] = 'fourth'; | |
86 $labels['last'] = 'last'; | |
87 $labels['dayofmonth'] = 'Day of month'; | |
88 $labels['addrdate'] = 'Add repeat date'; | |
89 $labels['except'] = 'except'; | |
90 | |
91 $labels['statusorganizer'] = 'Organizer'; | |
92 $labels['statusaccepted'] = 'Accepted'; | |
93 $labels['statustentative'] = 'Tentative'; | |
94 $labels['statusdeclined'] = 'Declined'; | |
95 $labels['statusdelegated'] = 'Delegated'; | |
96 $labels['statusneeds-action'] = 'Needs action'; | |
97 $labels['statusunknown'] = 'Unknown'; | |
98 $labels['statuscompleted'] = 'Completed'; | |
99 $labels['statusin-process'] = 'In process'; | |
100 | |
101 // itip related labels | |
102 $labels['itipinvitation'] = 'Invitation to'; | |
103 $labels['itipupdate'] = 'Update of'; | |
104 $labels['itipcancellation'] = 'Cancelled:'; | |
105 $labels['itipreply'] = 'Reply to'; | |
106 $labels['itipaccepted'] = 'Accept'; | |
107 $labels['itiptentative'] = 'Maybe'; | |
108 $labels['itipdeclined'] = 'Decline'; | |
109 $labels['itipdelegated'] = 'Delegate'; | |
110 $labels['itipneeds-action'] = 'Postpone'; | |
111 $labels['itipcomment'] = 'Your response'; | |
112 $labels['itipeditresponse'] = 'Enter a response text'; | |
113 $labels['itipsendercomment'] = 'Sender\'s comment: '; | |
114 $labels['itipsuppressreply'] = 'Do not send a response'; | |
115 | |
116 $labels['itipobjectnotfound'] = 'The object referred by this message was not found in your account.'; | |
117 $labels['itipsubjectaccepted'] = '"$title" has been accepted by $name'; | |
118 $labels['itipsubjecttentative'] = '"$title" has been tentatively accepted by $name'; | |
119 $labels['itipsubjectdeclined'] = '"$title" has been declined by $name'; | |
120 $labels['itipsubjectin-process'] = '"$title" is in-process by $name'; | |
121 $labels['itipsubjectcompleted'] = '"$title" was completed by $name'; | |
122 $labels['itipsubjectcancel'] = 'Your participation in "$title" has been cancelled'; | |
123 $labels['itipsubjectdelegated'] = '"$title" has been delegated by $name'; | |
124 $labels['itipsubjectdelegatedto'] = '"$title" has been delegated to you by $name'; | |
125 | |
126 $labels['itipnewattendee'] = 'This is a reply from a new participant'; | |
127 $labels['updateattendeestatus'] = 'Update the participant\'s status'; | |
128 $labels['acceptinvitation'] = 'Do you accept this invitation?'; | |
129 $labels['acceptattendee'] = 'Accept participant'; | |
130 $labels['declineattendee'] = 'Decline participant'; | |
131 $labels['declineattendeeconfirm'] = 'Enter a message to the declined participant (optional):'; | |
132 $labels['rsvpmodeall'] = 'The entire series'; | |
133 $labels['rsvpmodecurrent'] = 'This occurrence only'; | |
134 $labels['rsvpmodefuture'] = 'This and future occurrences'; | |
135 | |
136 $labels['itipsingleoccurrence'] = 'This is a <em>single occurrence</em> out of a series of events'; | |
137 $labels['itipfutureoccurrence'] = 'Refers to <em>this and all future occurrences</em> of a series of events'; | |
138 $labels['itipmessagesingleoccurrence'] = 'The message only refers to this single occurrence'; | |
139 $labels['itipmessagefutureoccurrence'] = 'The message refers to this and all future occurrences'; | |
140 | |
141 $labels['youhaveaccepted'] = 'You have accepted this invitation'; | |
142 $labels['youhavetentative'] = 'You have tentatively accepted this invitation'; | |
143 $labels['youhavedeclined'] = 'You have declined this invitation'; | |
144 $labels['youhavedelegated'] = 'You have delegated this invitation'; | |
145 $labels['youhavein-process'] = 'You are working on this assignment'; | |
146 $labels['youhavecompleted'] = 'You have completed this assignment'; | |
147 $labels['youhaveneeds-action'] = 'Your response to this invitation is still pending'; | |
148 | |
149 $labels['youhavepreviouslyaccepted'] = 'You have previously accepted this invitation'; | |
150 $labels['youhavepreviouslytentative'] = 'You have previously accepted this invitation tentatively'; | |
151 $labels['youhavepreviouslydeclined'] = 'You have previously declined this invitation'; | |
152 $labels['youhavepreviouslydelegated'] = 'You have previously delegated this invitation'; | |
153 $labels['youhavepreviouslyin-process'] = 'You have previously reported to work on this assignment'; | |
154 $labels['youhavepreviouslycompleted'] = 'You have previously completed this assignment'; | |
155 $labels['youhavepreviouslyneeds-action'] = 'Your response to this invitation is still pending'; | |
156 | |
157 $labels['attendeeaccepted'] = 'Participant has accepted'; | |
158 $labels['attendeetentative'] = 'Participant has tentatively accepted'; | |
159 $labels['attendeedeclined'] = 'Participant has declined'; | |
160 $labels['attendeedelegated'] = 'Participant has delegated to $delegatedto'; | |
161 $labels['attendeein-process'] = 'Participant is in-process'; | |
162 $labels['attendeecompleted'] = 'Participant has completed'; | |
163 $labels['notanattendee'] = 'You\'re not listed as an attendee of this object'; | |
164 $labels['outdatedinvitation'] = 'This invitation has been replaced by a newer version'; | |
165 | |
166 $labels['importtocalendar'] = 'Save to my calendar'; | |
167 $labels['removefromcalendar'] = 'Remove from my calendar'; | |
168 $labels['updatemycopy'] = 'Update my copy'; | |
169 $labels['openpreview'] = 'Open Preview'; | |
170 | |
171 $labels['deleteobjectconfirm'] = 'Do you really want to delete this object?'; | |
172 $labels['declinedeleteconfirm'] = 'Do you also want to delete this declined object from your account?'; | |
173 | |
174 $labels['delegateinvitation'] = 'Delegate Invitation'; | |
175 $labels['delegateto'] = 'Delegate to'; | |
176 $labels['delegatersvpme'] = 'Keep me informed about updates of this incidence'; | |
177 $labels['delegateinvalidaddress'] = 'Please enter a valid email address for the delegate'; | |
178 | |
179 $labels['savingdata'] = 'Saving data...'; | |
180 | |
181 // attendees labels | |
182 $labels['expandattendeegroup'] = 'Substitute with group members'; | |
183 $labels['expandattendeegroupnodata'] = 'Unable to substitute this group. No members found.'; | |
184 $labels['expandattendeegrouperror'] = 'Unable to substitute this group. It might contain too many members.'; | |
185 $labels['expandattendeegroupsizelimit'] = 'This group contains too many members for substituting.'; | |
186 |