My Calendar - Version 1.5.4

Version Description

  • Fixed: Bug with permissions in event approval process.
Download this release

Release Info

Developer joedolson
Plugin Icon 128x128 My Calendar
Version 1.5.4
Comparing to
See all releases

Code changes from version 1.4.6 to 1.5.4

date-utilities.php CHANGED
@@ -91,4 +91,24 @@ function jd_date_diff($start, $end="NOW") {
91
  }
92
  }
93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  ?>
91
  }
92
  }
93
 
94
+ function week_of_month($date_of_event) {
95
+ switch ($date_of_event) {
96
+ case ($date_of_event>=1 && $date_of_event <8):
97
+ $week_of_event = 0;
98
+ break;
99
+ case ($date_of_event>=8 && $date_of_event <15):
100
+ $week_of_event = 1;
101
+ break;
102
+ case ($date_of_event>=15 && $date_of_event <22):
103
+ $week_of_event = 2;
104
+ break;
105
+ case ($date_of_event>=22 && $date_of_event <29):
106
+ $week_of_event = 3;
107
+ break;
108
+ case ($date_of_event>=29):
109
+ $week_of_event = 4;
110
+ break;
111
+ }
112
+ return $week_of_event;
113
+ }
114
  ?>
mc-styles.css ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .jd-my-calendar {
2
+ margin-right: 190px!important;
3
+ }
4
+ #my-calendar legend {
5
+ font-weight: 700;
6
+ font-size: 1em;
7
+ }
8
+ .resources {
9
+ float: right;
10
+ border: 1px solid #aaa;
11
+ padding: 10px 10px 0;
12
+ margin-left: 10px;
13
+ -moz-border-radius: 5px;
14
+ -webkit-border-radius: 5px;
15
+ border-radius: 5px;
16
+ -moz-box-shadow: 2px 2px 10px #ccc;
17
+ -webkit-box-shadow: 2px 2px 10px #ccc;
18
+ box-shadow: 2px 2px 10px #ccc;
19
+ background: #ffb;
20
+ text-align: center;
21
+ }
22
+ .resources form {
23
+ margin: 0!important;
24
+ }
25
+ #category_icon option {
26
+ padding: 5px 0 5px 24px;
27
+ }
28
+ #my-calendar-admin-table .delete {
29
+ background: #a00;
30
+ color: #fff;
31
+ padding: 2px 8px;
32
+ font-size: .8em;
33
+ border: 1px solid #fff;
34
+ -moz-border-radius: 8px;
35
+ -webkit-border-radius: 8px;
36
+ border-radius: 8px;
37
+ text-decoration: none;
38
+ }
39
+ #my-calendar-admin-table .delete:hover, #my-calendar-admin-table .delete:focus {
40
+ border: 1px solid #999;
41
+ background: #b11;
42
+ }
43
+ .import {
44
+ background: #ffa;
45
+ padding: 5px 10px;
46
+ border: 1px solid #aaa;
47
+ -moz-border-radius: 5px;
48
+ -webkit-border-radius: 5px;
49
+ border-radius: 5px;
50
+ margin: 15px 0;
51
+ }
52
+ .n4 {width: 32px;}
53
+ .n5 {width: 130px;}
54
+ .n6 {width: 64px;}
55
+ .n7 {width: 130px;}
56
+ .n8 {width: 256px;}
57
+ .category-color {
58
+ width: 1.2em;
59
+ height: 1.2em;
60
+ display: inline-block;
61
+ -moz-border-radius: 3px;
62
+ -webkit-border-radius: 3px;
63
+ border-radius: 3px;
64
+ border: 1px solid #000;
65
+ }
66
+ .jd-my-calendar .postbox h3 {
67
+ cursor: text;
68
+ }
69
+ .active-link {
70
+ font-weight:700;
71
+ text-decoration: underline;
72
+ }
73
+ ul.links li {
74
+ float: left;
75
+ margin: 0 5px 10px;
76
+ font-size: .9em;
77
+ }
my-calendar-categories.php CHANGED
@@ -109,7 +109,7 @@ if ( file_exists( WP_PLUGIN_DIR . '/my-calendar-custom/' ) ) {
109
  </div>
110
  <?php } ?>
111
  <fieldset>
112
- <legend><?php _e('Edit Category','my-calendar'); ?></legend>
113
  <label for="category_name"><?php _e('Category Name','my-calendar'); ?>:</label> <input type="text" id="category_name" name="category_name" class="input" size="30" value="<?php echo $cur_cat->category_name ?>" /><br />
114
  <label for="category_color"><?php _e('Category Color (Hex format)','my-calendar'); ?>:</label> <input type="text" id="category_color" name="category_color" class="input" size="10" maxlength="7" value="<?php echo $cur_cat->category_color ?>" /><br />
115
  <label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
@@ -127,7 +127,7 @@ if ($cur_cat->category_icon == $value) {
127
  </select>
128
  </fieldset>
129
  <p>
130
- <input type="submit" name="save" class="button-primary" value="<?php _e('Save Changes','my-calendar'); ?> &raquo;" />
131
  </p>
132
  </form>
133
  </div>
@@ -190,7 +190,5 @@ function mc_manage_categories() {
190
  echo '<p>'.__('There are no categories in the database - something has gone wrong!','my-calendar').'</p>';
191
  }
192
  ?>
193
- </div>
194
-
195
  <?php
196
  }
109
  </div>
110
  <?php } ?>
111
  <fieldset>
112
+ <legend><?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Edit Category','my-calendar'); } ?></legend>
113
  <label for="category_name"><?php _e('Category Name','my-calendar'); ?>:</label> <input type="text" id="category_name" name="category_name" class="input" size="30" value="<?php echo $cur_cat->category_name ?>" /><br />
114
  <label for="category_color"><?php _e('Category Color (Hex format)','my-calendar'); ?>:</label> <input type="text" id="category_color" name="category_color" class="input" size="10" maxlength="7" value="<?php echo $cur_cat->category_color ?>" /><br />
115
  <label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
127
  </select>
128
  </fieldset>
129
  <p>
130
+ <input type="submit" name="save" class="button-primary" value="<?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Save Changes','my-calendar'); } ?> &raquo;" />
131
  </p>
132
  </form>
133
  </div>
190
  echo '<p>'.__('There are no categories in the database - something has gone wrong!','my-calendar').'</p>';
191
  }
192
  ?>
 
 
193
  <?php
194
  }
my-calendar-da_DK.mo CHANGED
Binary file
my-calendar-da_DK.po CHANGED
@@ -7,589 +7,658 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: My Calendar 1.4.3\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
10
- "POT-Creation-Date: 2010-08-03 17:58+0000\n"
11
- "PO-Revision-Date: 2010-08-12 11:18+0100\n"
12
  "Last-Translator: Jakob Smith <jakob@omkalfatring.dk>\n"
13
  "Language-Team: omkalfatring.dk <jakob@omkalfatring.dk>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-Language: Danish\n"
18
  "X-Poedit-Country: DENMARK\n"
19
  "X-Poedit-SourceCharset: utf-8\n"
20
 
21
- #: my-calendar-categories.php:40
22
  msgid "Category added successfully"
23
- msgstr "Kategori tilføjet"
24
 
25
- #: my-calendar-categories.php:46
26
- msgid "Category deleted successfully"
27
- msgstr "Kategori slettet"
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- #: my-calendar-categories.php:51
30
  #: my-calendar-categories.php:66
 
 
 
 
 
 
 
 
 
 
 
31
  msgid "Edit Category"
32
  msgstr "Rediger kategori"
33
 
34
- #: my-calendar-categories.php:58
35
  msgid "Category Editor"
36
  msgstr "Kategoriredigering"
37
 
38
- #: my-calendar-categories.php:67
39
- #: my-calendar-categories.php:120
40
- #: my-calendar-categories.php:158
41
  msgid "Category Name"
42
- msgstr "Kategori Navn"
43
 
44
- #: my-calendar-categories.php:68
45
- #: my-calendar-categories.php:121
46
  msgid "Category Color (Hex format)"
47
- msgstr "Kategori Farve (Hex format)"
48
 
49
- #: my-calendar-categories.php:69
50
- #: my-calendar-categories.php:122
51
- #: my-calendar-categories.php:160
52
  msgid "Category Icon"
53
- msgstr "Kategori Ikon"
54
 
55
- #: my-calendar-categories.php:91
56
- #: my-calendar-locations.php:82
57
  msgid "Save Changes"
58
- msgstr "Gem Ændringer"
59
-
60
- #: my-calendar-categories.php:101
61
- msgid "Category edited successfully"
62
- msgstr "Kategori redigeret"
63
-
64
- #: my-calendar-categories.php:107
65
- #: my-calendar-categories.php:119
66
- #: my-calendar-categories.php:139
67
- msgid "Add Category"
68
- msgstr "Tilføj Kategori"
69
-
70
- #: my-calendar-categories.php:111
71
- msgid "Add New Category"
72
- msgstr "Tilføj Ny Kategori"
73
 
74
- #: my-calendar-categories.php:145
75
- #: my-calendar.php:169
76
  msgid "Manage Categories"
77
- msgstr "Administrer Kategorier"
78
 
79
- #: my-calendar-categories.php:157
80
- #: my-calendar-event-manager.php:836
81
- #: my-calendar-locations.php:171
82
  msgid "ID"
83
- msgstr "ID"
84
 
85
- #: my-calendar-categories.php:159
86
  msgid "Category Color"
87
- msgstr "Kategori Farve"
88
 
89
- #: my-calendar-categories.php:161
90
- #: my-calendar-categories.php:175
91
- #: my-calendar-event-manager.php:887
92
- #: my-calendar-locations.php:173
93
- #: my-calendar-locations.php:185
94
  msgid "Edit"
95
  msgstr "Rediger"
96
 
97
- #: my-calendar-categories.php:162
98
- #: my-calendar-categories.php:181
99
- #: my-calendar-event-manager.php:57
100
- #: my-calendar-event-manager.php:887
101
- #: my-calendar-locations.php:174
102
- #: my-calendar-locations.php:186
103
  msgid "Delete"
104
  msgstr "Slet"
105
 
106
- #: my-calendar-categories.php:178
107
- #: my-calendar-event-manager.php:873
108
- #: my-calendar-settings.php:209
109
- #: my-calendar.php:710
110
  msgid "N/A"
111
  msgstr "Ikke oplyst"
112
 
113
- #: my-calendar-categories.php:181
114
- #: my-calendar-locations.php:186
115
  msgid "Are you sure you want to delete this category?"
116
  msgstr "Er du sikker på, at du vil slette denne kategori?"
117
 
118
- #: my-calendar-categories.php:192
119
  msgid "There are no categories in the database - something has gone wrong!"
120
  msgstr "Der er ingen kategorier i databasen - noget er gået galt!"
121
 
122
- #: my-calendar-event-manager.php:13
123
- #: my-calendar-settings.php:249
124
  msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
125
  msgstr "My Calendar har registreret, at du har Kieran O'Sheas Calendar-plugin installeret. Du kan importere begivenheder og kategorier derfra til din My Calendar-database. Ønsker du at gøre dette?"
126
 
127
- #: my-calendar-event-manager.php:19
128
- #: my-calendar-settings.php:255
129
  msgid "Import from Calendar"
130
  msgstr "Importer fra Calendar"
131
 
132
- #: my-calendar-event-manager.php:24
133
  msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
134
  msgstr "Selvom det er muligt, at denne import ikke kan importere dine begivenheder korrekt, skulle det ikke have nogen indvirkning på din eksisterende Calendar-database. <a href=\"http://www.joedolson.com/contact.php\">Kontakt mig venligst</a>, hvis du kommer ud for problemer."
135
 
136
- #: my-calendar-event-manager.php:52
137
  msgid "Delete Event"
138
- msgstr "Slet Begivenhed"
139
 
140
- #: my-calendar-event-manager.php:52
141
  msgid "Are you sure you want to delete this event?"
142
  msgstr "Er du sikker på, at du vil slette denne begivenhed?"
143
 
144
- #: my-calendar-event-manager.php:65
145
  msgid "You do not have permission to delete that event."
146
  msgstr "Du har ikke tilladelse til at slette denne begivenhed."
147
 
148
- #: my-calendar-event-manager.php:156
149
- #: my-calendar-event-manager.php:161
150
- #: my-calendar-event-manager.php:166
151
- #: my-calendar-event-manager.php:176
152
- #: my-calendar-event-manager.php:184
153
- #: my-calendar-event-manager.php:193
154
- #: my-calendar-event-manager.php:201
155
- #: my-calendar-event-manager.php:239
156
- #: my-calendar-event-manager.php:368
157
- #: my-calendar-event-manager.php:373
158
- #: my-calendar-event-manager.php:378
159
- #: my-calendar-event-manager.php:388
160
- #: my-calendar-event-manager.php:396
161
- #: my-calendar-event-manager.php:405
162
- #: my-calendar-event-manager.php:413
163
- #: my-calendar-event-manager.php:498
164
- #: my-calendar-event-manager.php:513
165
- msgid "Error"
166
- msgstr "Fejl"
167
 
168
- #: my-calendar-event-manager.php:156
169
- #: my-calendar-event-manager.php:368
170
- msgid "Your event end date must be either after or the same as your event begin date"
171
- msgstr "Din begivenheds slutdato enten ligge efter eller være lig med begivenhedens startdato."
172
-
173
- #: my-calendar-event-manager.php:161
174
- #: my-calendar-event-manager.php:373
175
- msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
176
- msgstr "Din datoformattering er korrekt, men en eller flere af dine datoer er ugyldige. Tjek for fejl relateret til enten antal dage i måneden eller skudår."
177
-
178
- #: my-calendar-event-manager.php:166
179
- #: my-calendar-event-manager.php:378
180
- msgid "Both start and end dates must be entered and be in the format YYYY-MM-DD"
181
- msgstr "Både start- og slutdato skal indtastes og være i formatet ÅÅÅÅ-MM-DD"
182
-
183
- #: my-calendar-event-manager.php:176
184
- #: my-calendar-event-manager.php:388
185
- msgid "The time field must either be blank or be entered in the format hh:mm"
186
- msgstr "Feltet for tidspunkt skal enten være blankt eller indtastes i formatet tt:mm"
187
-
188
- #: my-calendar-event-manager.php:184
189
- #: my-calendar-event-manager.php:396
190
- msgid "The URL entered must either be prefixed with http:// or be completely blank"
191
- msgstr "Den indtastede URL skal enten være foranstillet med http:// eller være helt blank"
192
 
 
 
 
193
  #: my-calendar-event-manager.php:193
194
- #: my-calendar-event-manager.php:405
195
- msgid "The event title must be between 1 and 255 characters in length."
196
- msgstr "Begivenhedens titel skal være mellem 1 og 255 tegn i længde."
197
-
198
- #: my-calendar-event-manager.php:201
199
- #: my-calendar-event-manager.php:413
200
- msgid "The repetition value must be 0 unless a type of recurrance is selected in which case the repetition value must be 0 or higher"
201
- msgstr "Værdien for gentagelse skal være 0, medmindre der er er valgt en type af gentagelse, i hvilket tilfælde værdien for gentagelse skal sættes til 0 eller højere."
 
 
202
 
203
- #: my-calendar-event-manager.php:239
204
- msgid "An event with the details you submitted could not be found in the database. This may indicate a problem with your database or the way in which it is configured."
205
- msgstr "En begivenhed med de angivne detaljer kunne ikke findes i databasen. Dette indikerer muligvis et problem med din database eller måden, den er konfigureret på."
206
 
207
- #: my-calendar-event-manager.php:243
208
  msgid "Event added. It will now show in your calendar."
209
  msgstr "Begivenhed tilføjet. Den vises nu i din kalender."
210
 
211
- #: my-calendar-event-manager.php:345
212
- #: my-calendar-event-manager.php:451
213
- msgid "Failure"
214
- msgstr "FEJL"
215
-
216
- #: my-calendar-event-manager.php:345
217
- msgid "You can't update an event if you haven't submitted an event id"
218
- msgstr "Du kan ikke opdatere en begivenhed, hvis du ikke har sendt et begivenheds-id."
219
-
220
- #: my-calendar-event-manager.php:451
221
  msgid "Your event was not updated."
222
  msgstr "Din begivenhed blev ikke opdateret."
223
 
224
- #: my-calendar-event-manager.php:455
 
 
 
 
225
  msgid "Event updated successfully"
226
- msgstr "Begivenhed opdateret"
227
 
228
- #: my-calendar-event-manager.php:489
229
  msgid "You do not have sufficient permissions to edit that event."
230
  msgstr "Du har ikke tilstrækkelige tilladelser til at redigere denne begivenhed."
231
 
232
- #: my-calendar-event-manager.php:498
233
  msgid "You can't delete an event if you haven't submitted an event id"
234
  msgstr "Du kan ikke redigere en begivenhed, hvis du ikke har sendt et begivenheds-id."
235
 
236
- #: my-calendar-event-manager.php:509
237
  msgid "Event deleted successfully"
238
- msgstr "Begivenhed slettet"
239
 
240
- #: my-calendar-event-manager.php:513
241
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
242
  msgstr "Selvom der blev sendt en forespørgsel om sletning, eksisterer begivenheden stadig i databasen. Undersøg venligst."
243
 
244
- #: my-calendar-event-manager.php:531
245
- #: my-calendar-event-manager.php:604
246
  msgid "Edit Event"
247
- msgstr "Rediger Begivenhed"
248
 
249
- #: my-calendar-event-manager.php:535
 
250
  msgid "You must provide an event id in order to edit it"
251
  msgstr "Du skal angive et begivenheds-id for at kunne redigere den"
252
 
253
- #: my-calendar-event-manager.php:541
 
 
 
 
 
254
  msgid "Add Event"
255
- msgstr "Tilføj Begivenhed"
256
 
257
- #: my-calendar-event-manager.php:546
258
  msgid "Manage Events"
259
- msgstr "Administrer Begivenheder"
260
 
261
- #: my-calendar-event-manager.php:580
262
  msgid "Sorry! That's an invalid event key."
263
- msgstr "Beklager! Det er et ugyldigt begivenheds-ID."
264
 
265
- #: my-calendar-event-manager.php:585
266
  msgid "Sorry! We couldn't find an event with that ID."
267
- msgstr "Beklager! Vi kunne ikke finde en begivenhed med det ID."
268
 
269
- #: my-calendar-event-manager.php:604
270
  msgid "Add an Event"
271
- msgstr "Tilføj en Begivenhed"
 
 
 
 
272
 
273
- #: my-calendar-event-manager.php:613
274
  msgid "Enter your Event Information"
275
  msgstr "Indtast oplysninger om begivenheden"
276
 
277
- #: my-calendar-event-manager.php:615
278
  msgid "Event Title"
279
- msgstr "Begivenheds Titel"
 
 
 
 
 
 
 
 
280
 
281
- #: my-calendar-event-manager.php:618
 
 
 
 
282
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
283
  msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
284
 
285
- #: my-calendar-event-manager.php:621
 
 
 
 
286
  msgid "Event Category"
287
- msgstr "Begivenheds Kategori"
288
 
289
- #: my-calendar-event-manager.php:640
290
  msgid "Event Link (Optional)"
291
- msgstr "Begivenheds Link (valgfri)"
292
 
293
- #: my-calendar-event-manager.php:640
294
  msgid "This link will expire when the event passes."
295
  msgstr "Dette link udløber, når begivenheden er overstået."
296
 
297
- #: my-calendar-event-manager.php:643
298
  msgid "Start Date (YYYY-MM-DD)"
299
  msgstr "Startdato (ÅÅÅÅ-MM-DD)"
300
 
301
- #: my-calendar-event-manager.php:646
302
  msgid "End Date (YYYY-MM-DD) (Optional)"
303
- msgstr "Slutdato (ÅÅÅÅ-MM-DD)"
304
 
305
- #: my-calendar-event-manager.php:649
306
  msgid "Time (hh:mm)"
307
  msgstr "Tidspunkt (tt:mm)"
308
 
309
- #: my-calendar-event-manager.php:660
310
  msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
311
  msgstr "Valgfri, lad feltet være tomt, hvis begivenheden er en heldagsbegivenhed eller ikke foregår på et bestemt tidspunkt."
312
 
313
- #: my-calendar-event-manager.php:660
314
  msgid "Current time difference from GMT is "
315
  msgstr "Nuværende tidsforskel fra GMT er "
316
 
317
- #: my-calendar-event-manager.php:660
318
  msgid " hour(s)"
319
  msgstr " time(r)."
320
 
321
- #: my-calendar-event-manager.php:663
322
  msgid "End Time (hh:mm)"
323
  msgstr "Sluttidspunkt (tt:mm)"
324
 
325
- #: my-calendar-event-manager.php:674
326
  msgid "Optional. End times will not be displayed on events where this is not set."
327
  msgstr "Valgfri. Sluttidspunkter bliver ikke vist på begivenheder, hvor de ikke er valgt."
328
 
329
- #: my-calendar-event-manager.php:678
330
  msgid "Recurring Events"
331
  msgstr "Tilbagevendende begivenheder"
332
 
333
- #: my-calendar-event-manager.php:699
334
  msgid "Repeats for"
335
  msgstr "Gentages"
336
 
337
- #: my-calendar-event-manager.php:700
338
  msgid "Units"
339
  msgstr "gange"
340
 
341
- #: my-calendar-event-manager.php:701
342
  msgid "Does not recur"
343
  msgstr "Gentages ikke"
344
 
345
- #: my-calendar-event-manager.php:702
346
- #: my-calendar-event-manager.php:866
347
  msgid "Daily"
348
  msgstr "Dagligt"
349
 
350
- #: my-calendar-event-manager.php:703
351
- #: my-calendar-event-manager.php:867
352
  msgid "Weekly"
353
  msgstr "Ugentligt"
354
 
355
- #: my-calendar-event-manager.php:704
356
  msgid "Bi-weekly"
357
  msgstr "Hveranden uge"
358
 
359
- #: my-calendar-event-manager.php:705
360
- #: my-calendar-event-manager.php:869
361
- msgid "Monthly"
362
- msgstr "Månedligt"
363
 
364
- #: my-calendar-event-manager.php:706
 
 
 
 
365
  msgid "Annually"
366
  msgstr "Årligt"
367
 
368
- #: my-calendar-event-manager.php:708
369
- msgid "Entering 0 means forever, if a unit is selected. If the recurrance unit is left at \"Does not recur,\" the event will not reoccur."
370
- msgstr "Indtastning af 0 betyder \"altid\", hvis en type af gentagelse er valgt. Hvis typen af gentagelse er sat til \"Gentages ikke\", vil begivenheden ikke gentages."
371
 
372
- #: my-calendar-event-manager.php:715
373
- #: my-calendar-locations.php:44
374
- #: my-calendar-locations.php:113
375
- msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
376
- msgstr "Alle stedrelaterede felter er valgfri: <em>Utilstrækkelige oplysninger kan resultere i et upræcist kort</em>."
 
 
 
 
 
 
 
 
 
 
377
 
378
- #: my-calendar-event-manager.php:721
 
 
 
 
 
 
 
 
 
379
  msgid "Choose a preset location:"
380
  msgstr "Vælg et forudindstillet sted:"
381
 
382
- #: my-calendar-event-manager.php:735
383
  msgid "Add recurring locations for later use."
384
  msgstr "Tilføj tilbagevendende steder til senere brug."
385
 
386
- #: my-calendar-event-manager.php:740
387
- #: my-calendar-locations.php:47
388
- #: my-calendar-locations.php:116
 
 
 
 
389
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
390
  msgstr "Stednavn (f.eks. <em>Joe's Bar & Grill</em>)"
391
 
392
- #: my-calendar-event-manager.php:743
393
- #: my-calendar-locations.php:50
394
- #: my-calendar-locations.php:119
395
  msgid "Street Address"
396
  msgstr "Gadenavn"
397
 
398
- #: my-calendar-event-manager.php:746
399
- #: my-calendar-locations.php:53
400
- #: my-calendar-locations.php:122
401
  msgid "Street Address (2)"
402
  msgstr "Gadenavn (2)"
403
 
404
- #: my-calendar-event-manager.php:749
405
- #: my-calendar-locations.php:56
406
- #: my-calendar-locations.php:125
407
  msgid "City"
408
  msgstr "By"
409
 
410
- #: my-calendar-event-manager.php:749
411
- #: my-calendar-locations.php:56
412
- #: my-calendar-locations.php:125
413
  msgid "State/Province"
414
  msgstr "Stat/Provins"
415
 
416
- #: my-calendar-event-manager.php:749
417
- #: my-calendar-locations.php:56
418
- #: my-calendar-locations.php:125
419
  msgid "Postal Code"
420
  msgstr "Postnummer"
421
 
422
- #: my-calendar-event-manager.php:752
423
- #: my-calendar-locations.php:59
424
- #: my-calendar-locations.php:128
425
  msgid "Country"
426
  msgstr "Land"
427
 
428
- #: my-calendar-event-manager.php:755
429
- #: my-calendar-locations.php:62
430
- #: my-calendar-locations.php:131
431
  msgid "Initial Zoom"
432
  msgstr "Indledende Zoom"
433
 
434
- #: my-calendar-event-manager.php:757
435
- #: my-calendar-locations.php:64
436
- #: my-calendar-locations.php:133
437
  msgid "Neighborhood"
438
  msgstr "Nabolag"
439
 
440
- #: my-calendar-event-manager.php:758
441
- #: my-calendar-locations.php:65
442
- #: my-calendar-locations.php:134
443
  msgid "Small City"
444
  msgstr "Lille By"
445
 
446
- #: my-calendar-event-manager.php:759
447
- #: my-calendar-locations.php:66
448
- #: my-calendar-locations.php:135
449
  msgid "Large City"
450
  msgstr "Stor By"
451
 
452
- #: my-calendar-event-manager.php:760
453
- #: my-calendar-locations.php:67
454
- #: my-calendar-locations.php:136
455
  msgid "Greater Metro Area"
456
  msgstr "Større byområde"
457
 
458
- #: my-calendar-event-manager.php:761
459
- #: my-calendar-locations.php:68
460
- #: my-calendar-locations.php:137
461
  msgid "State"
462
  msgstr "Kommune"
463
 
464
- #: my-calendar-event-manager.php:762
465
- #: my-calendar-locations.php:69
466
- #: my-calendar-locations.php:138
467
  msgid "Region"
468
  msgstr "Region"
469
 
470
- #: my-calendar-event-manager.php:766
471
- #: my-calendar-locations.php:73
472
- #: my-calendar-locations.php:142
473
  msgid "GPS Coordinates (optional)"
474
- msgstr "GPS Koordinater (valgfri)"
475
 
476
- #: my-calendar-event-manager.php:768
477
- #: my-calendar-locations.php:75
478
- #: my-calendar-locations.php:144
479
- msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
480
- msgstr "Hvis du oplyser GPS koordinater for dit sted, bliver de brugt i stedet for enhver af de andre adresseoplysninger til at identificere stedet."
481
 
482
- #: my-calendar-event-manager.php:771
483
- #: my-calendar-locations.php:78
484
- #: my-calendar-locations.php:147
485
  msgid "Longitude"
486
  msgstr "Længdegrad"
487
 
488
- #: my-calendar-event-manager.php:771
489
- #: my-calendar-locations.php:78
490
- #: my-calendar-locations.php:147
491
  msgid "Latitude"
492
  msgstr "Breddegrad"
493
 
494
- #: my-calendar-event-manager.php:777
495
  msgid "Save Event"
496
  msgstr "Gem begivenhed"
497
 
498
- #: my-calendar-event-manager.php:837
499
  #: my-calendar-widgets.php:37
500
  #: my-calendar-widgets.php:122
501
  msgid "Title"
502
  msgstr "Titel"
503
 
504
- #: my-calendar-event-manager.php:838
505
  msgid "Link"
506
  msgstr "Link"
507
 
508
- #: my-calendar-event-manager.php:839
509
- #: my-calendar-locations.php:172
510
  msgid "Location"
511
  msgstr "Sted"
512
 
513
- #: my-calendar-event-manager.php:840
514
  msgid "Description"
515
  msgstr "Beskrivelse"
516
 
517
- #: my-calendar-event-manager.php:841
518
  msgid "Start Date"
519
  msgstr "Startdato"
520
 
521
- #: my-calendar-event-manager.php:842
522
  msgid "Recurs"
523
  msgstr "Gentages"
524
 
525
- #: my-calendar-event-manager.php:843
526
- #: my-calendar-settings.php:177
 
527
  msgid "Author"
528
  msgstr "Forfatter"
529
 
530
- #: my-calendar-event-manager.php:844
531
  msgid "Category"
532
  msgstr "Kategori"
533
 
534
- #: my-calendar-event-manager.php:845
535
  msgid "Edit / Delete"
536
  msgstr "Rediger / Slet"
537
 
538
- #: my-calendar-event-manager.php:865
539
  msgid "Never"
540
  msgstr "Aldrig"
541
 
542
- #: my-calendar-event-manager.php:868
543
  msgid "Bi-Weekly"
544
  msgstr "Hveranden uge"
545
 
546
- #: my-calendar-event-manager.php:870
 
 
 
 
 
 
 
 
547
  msgid "Yearly"
548
  msgstr "Årligt"
549
 
550
- #: my-calendar-event-manager.php:874
551
  msgid "Forever"
552
  msgstr "Altid"
553
 
554
- #: my-calendar-event-manager.php:875
555
  msgid "Times"
556
- msgstr "Gange"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
557
 
558
- #: my-calendar-event-manager.php:897
 
 
 
 
 
 
 
 
559
  msgid "There are no events in the database!"
560
  msgstr "Der er ingen begivenheder i databasen!"
561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562
  #: my-calendar-help.php:6
563
  msgid "How to use My Calendar"
564
  msgstr "Sådan bruger du My Calendar"
565
 
566
  #: my-calendar-help.php:11
567
  msgid "Shortcode Syntax"
568
- msgstr "Shortcode syntaks"
569
 
570
  #: my-calendar-help.php:14
571
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
572
  msgstr "Disse shortcodes kan bruges i Indlæg, Sider eller i text widgets."
573
 
574
- #: my-calendar-help.php:17
575
  msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
576
  msgstr "Denne basale shortcode vil vise kalenderen i et indlæg eller en side, inklusiv alle kategorier og kategorinøglen, i et traditionelt måned-for-måned format."
577
 
578
- #: my-calendar-help.php:20
579
  msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
580
- msgstr "Denne shortcode understøtter tre attributter, <code>category</code>, <code>format</code> og <code>showkey</code>. Der er to valgmuligheder for <code>format</code> &mdash; <code>list</code> &mdash; som viser kalenderen i et listeformat, hvor dage uden begivenheder springes over, og <code>mini</code>, som viser kalenderen i en form, der passer bedre ind i små områder, som f.eks. en sidebar. Attributten <code>category</code> kræver en af dine begivenhedskategoriers navn eller ID-nummer (navnet er kasusfølsomt). Dette viser en kalender, der kun inkluderer begivenheder i den angivne kategori. Flere kategorier kan specificeres ved at adskille kategorinavnene eller ID-numrene med \"pipe\"-tegnet: <code>|</code>. Sætter man <code>showkey</code> til <code>no</code>, forhindrer man kategorinøglen i at blive vist &mdash; dette kan være brugbart ved enkeltkategorioutput."
581
 
582
- #: my-calendar-help.php:23
583
  msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
584
  msgstr "Denne shortcode viser outputtet fra widgetten Kommende Begivenheder. Uden attributter vises den med indstillingerne fra widgetten; attributterne bruges til at tilsidesætte widgettens indstillinger. Attributterne <code>before</code> og <code>after</code> skal være tal; attributten <code>type</code> kan være enten \"event\" eller \"days\", og attributten <code>category</code> fungerer på samme måde som kategori-attributten i hovedkalenderens shortcode. Skabeloner fungerer vha. skabelonkoderne listet herunder."
585
 
586
- #: my-calendar-help.php:26
587
  msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
588
  msgstr "Forudsigeligt nok viser denne shortcode outputtet fra widgetten Dagens Begivenheder, med to indstillelige attributter: <code>category</code> og <code>template</code>."
589
 
590
  #: my-calendar-help.php:34
591
  msgid "Category Icons"
592
- msgstr "Kategori Ikoner"
593
 
594
  #: my-calendar-help.php:37
595
  msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
@@ -597,7 +666,7 @@ msgstr "My Calendar er designet til at kunne administrere flere kalendere. Udgan
597
 
598
  #: my-calendar-help.php:40
599
  msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
600
- msgstr "De præinstallerede kategori-ikoner er måske ikke specielt velegnede til dit formål eller design. Jeg går ud fra, at du gerne vil uploade dine egne ikoner &mdash; alt du behøver at gøre er at uploade dem til mappen icons i pluginnets mappe i wp-content/plugins. Derefter er de klar til brug med det samme. Du kan også placere dem i en mappe kaldet \"my-calendar-custom\" for at undgå, at de bliver overskrevet ved opgradering af pluginnet."
601
 
602
  #: my-calendar-help.php:40
603
  msgid "Your icons folder is:"
@@ -609,7 +678,7 @@ msgstr "Du kan alternativt placere ikoner i:"
609
 
610
  #: my-calendar-help.php:48
611
  msgid "Widget Templating"
612
- msgstr "Widget Skabeloner"
613
 
614
  #: my-calendar-help.php:51
615
  msgid "These codes are available in calendar widgets to create your own custom calendar format."
@@ -641,7 +710,7 @@ msgstr "Viser begivenhedens sluttidspunkt."
641
 
642
  #: my-calendar-help.php:73
643
  msgid "Displays the WordPress author who posted the event."
644
- msgstr "Viser den WordPress forfatter, der publicerede begivenheden."
645
 
646
  #: my-calendar-help.php:76
647
  msgid "Displays the URL provided for the event."
@@ -691,51 +760,82 @@ msgstr "Viser begivenhedens adresse i <a href=\"http://microformats.org/wiki/hca
691
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
692
  msgstr "Viser et link til et Google Kort over begivenhedens sted, hvis tilstrækkelige adresseinformationer er tilgængelig. Hvis ikke, vises der ikke et kort."
693
 
694
- #: my-calendar-locations.php:21
 
 
 
 
 
 
 
 
 
 
 
 
695
  msgid "Location added successfully"
696
- msgstr "Sted tilføjet"
697
 
698
- #: my-calendar-locations.php:25
699
- msgid "Location deleted successfully"
700
- msgstr "Sted slettet"
701
 
702
  #: my-calendar-locations.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
703
  msgid "Edit Location"
704
- msgstr "Rediger Sted"
705
 
706
- #: my-calendar-locations.php:34
707
  msgid "Location Editor"
708
- msgstr "Sted Redigering"
709
 
710
- #: my-calendar-locations.php:93
711
- msgid "Location edited successfully"
712
- msgstr "Sted redigeret"
713
 
714
- #: my-calendar-locations.php:99
715
- #: my-calendar-locations.php:151
716
  msgid "Add Location"
717
- msgstr "Tilføj Sted"
718
-
719
- #: my-calendar-locations.php:103
720
- msgid "Add New Location"
721
- msgstr "Tilføj Nyt Sted"
722
 
723
- #: my-calendar-locations.php:159
724
- #: my-calendar.php:170
725
  msgid "Manage Locations"
726
- msgstr "Administrer Steder"
727
 
728
- #: my-calendar-locations.php:194
729
  msgid "There are no locations in the database yet!"
730
  msgstr "Der er endnu ingen steder i databasen!"
731
 
732
- #: my-calendar-locations.php:198
733
  msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
734
- msgstr "Bemærk: redigering eller sletning af steder gemt til genbrug, har ikke indvirkning på tidligere gemte begivenheder på det sted. Steddatabasen eksisterer kun som en hurtig metode til indtastning af ofte brugte steder i begivenhedsoplysninger."
735
 
736
  #: my-calendar-settings.php:67
737
  msgid "Categories imported successfully."
738
- msgstr "Kategorier importeret"
739
 
740
  #: my-calendar-settings.php:69
741
  msgid "Categories not imported."
@@ -743,165 +843,287 @@ msgstr "Kategorier blev ikke importeret"
743
 
744
  #: my-calendar-settings.php:72
745
  msgid "Events imported successfully."
746
- msgstr "Begivenheder importeret"
747
 
748
  #: my-calendar-settings.php:74
749
  msgid "Events not imported."
750
  msgstr "Begivenheder blev ikke importeret"
751
 
752
- #: my-calendar-settings.php:135
753
  msgid "Settings saved"
754
  msgstr "Indstillinger gemt"
755
 
756
- #: my-calendar-settings.php:161
757
  msgid "My Calendar Options"
758
- msgstr "My Calendar Valgmuligheder"
759
 
760
- #: my-calendar-settings.php:168
761
  msgid "Calendar Settings"
762
- msgstr "Calendar Indstillinger"
763
 
764
- #: my-calendar-settings.php:172
765
  msgid "Calendar Options: Management"
766
- msgstr "Kalender Indstillinger: Administration"
767
 
768
- #: my-calendar-settings.php:174
769
- msgid "Choose the lowest user group that may manage events"
770
- msgstr "Vælg den laveste brugergruppe, der må administrere begivenheder"
771
 
772
- #: my-calendar-settings.php:175
 
773
  msgid "Subscriber"
774
  msgstr "Abonnent"
775
 
776
- #: my-calendar-settings.php:176
 
777
  msgid "Contributor"
778
  msgstr "Bidragyder"
779
 
780
- #: my-calendar-settings.php:178
 
781
  msgid "Editor"
782
  msgstr "Redaktør"
783
 
784
- #: my-calendar-settings.php:179
 
785
  msgid "Administrator"
786
  msgstr "Administrator"
787
 
788
- #: my-calendar-settings.php:184
789
- msgid "Calendar Options: Output"
790
- msgstr "Kalender Valgmuligheder: Output"
791
-
792
- #: my-calendar-settings.php:186
793
- msgid "Do you want to display the author name on events?"
794
- msgstr "Ønsker du at vise forfatterens navn i begivenheder?"
795
-
796
- #: my-calendar-settings.php:187
797
- #: my-calendar-settings.php:194
798
- msgid "Yes"
799
- msgstr "Ja"
800
 
801
- #: my-calendar-settings.php:188
802
- #: my-calendar-settings.php:195
803
- msgid "No"
804
- msgstr "Nej"
805
 
806
- #: my-calendar-settings.php:193
807
- msgid "Display a jumpbox for changing month and year quickly?"
808
- msgstr "Vis en popup-boks til hurtig ændring af måned og år?"
809
-
810
- #: my-calendar-settings.php:199
811
- msgid "In list mode, show how many months of events at a time:"
812
- msgstr "Hvor mange måneders begivenheder skal vises i listevisning ad gangen:"
813
-
814
- #: my-calendar-settings.php:202
815
- msgid "Date format in list mode"
816
- msgstr "Datoformat i listevisning"
817
-
818
- #: my-calendar-settings.php:203
819
- msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save option to update sample output."
820
- msgstr "Datoformat bruger samme syntaks som <a href=\"http://php.net/date\">PHP <code>date()</code> funktionen</a>. Gem indstillingen for at opdatere test-outputtet."
821
 
822
- #: my-calendar-settings.php:206
823
  msgid "Show Heading for Calendar"
824
- msgstr "Vis Overskrift for Kalender"
825
 
826
- #: my-calendar-settings.php:209
827
  msgid "Label for events without a specific time"
828
- msgstr "Mærkat for begivenheder uden et specifikt tidspunkt"
829
 
830
- #: my-calendar-settings.php:212
831
  msgid "Previous events link text"
832
  msgstr "Linktekst for tidligere begivenheder"
833
 
834
- #: my-calendar-settings.php:212
835
  msgid "Previous Events"
836
- msgstr "Tidligere Begivenheder"
837
 
838
- #: my-calendar-settings.php:215
839
  msgid "Next events link text"
840
  msgstr "Linktekst for kommende begivenheder"
841
 
842
- #: my-calendar-settings.php:215
843
  msgid "Next Events"
844
- msgstr "Kommende Begivenheder"
845
 
846
- #: my-calendar-settings.php:218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
847
  msgid "Additional caption text"
848
- msgstr "Yderligere tekst til kalendercaption"
849
 
850
- #: my-calendar-settings.php:218
851
  msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
852
- msgstr "Kalender caption teksten er den tekst, der indeholder den viste måned og år i enten liste- eller kalendervisning. Den indtastede tekst vises efter den eksisterende tekst."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
853
 
854
- #: my-calendar-settings.php:221
 
 
 
 
855
  msgid "Hide category icons in output"
856
- msgstr "Skjul kategori-ikoner i output"
857
 
858
- #: my-calendar-settings.php:224
859
  msgid "Show Link to Google Map (when sufficient address information is available.)"
860
- msgstr "Vis Link til Google Kort (når tilstrækkelige adresseoplysninger er tilgængelige)"
861
 
862
- #: my-calendar-settings.php:227
863
  msgid "Show Event Address in Details"
864
- msgstr "Vis Begivenheds Adresse i Detaljer"
 
 
 
 
865
 
866
- #: my-calendar-settings.php:230
 
 
 
 
867
  msgid "Links associated with events will automatically expire after the event has passed."
868
  msgstr "Links associeret med begivenheder vil automatisk udløbe efter en begivenhed er overstået."
869
 
870
- #: my-calendar-settings.php:233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
871
  msgid "Default usage of category colors."
872
  msgstr "Standard brug af kategorifarver"
873
 
874
- #: my-calendar-settings.php:234
875
  msgid "Apply category colors to event titles as a font color."
876
  msgstr "Brug kategorifarver som skriftfarve i begivenhedstitler."
877
 
878
- #: my-calendar-settings.php:235
879
  msgid "Apply category colors to event titles as a background color."
880
  msgstr "Brug kategorifarver som baggrundsfarve i begivenhedstitler"
881
 
882
- #: my-calendar-settings.php:239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
883
  msgid "Save Settings"
884
- msgstr "Gem Indstillinger"
885
 
886
  #: my-calendar-styles.php:46
887
  msgid "Style Settings saved"
888
- msgstr "Stil Indstillinger Gemt"
889
 
890
  #: my-calendar-styles.php:70
891
  msgid "My Calendar Styles"
892
- msgstr "My Calendar Stile"
893
 
894
  #: my-calendar-styles.php:74
895
  msgid "Calendar Style Settings"
896
- msgstr "Kalender Stil Indstillinger"
897
 
898
  #: my-calendar-styles.php:78
899
- msgid "Show CSS & JavaScript only on these pages (comma separated page IDs)"
900
- msgstr "Vis kun CSS & Javascript på disse sider (kommaseparerede side ID'er)"
901
 
902
  #: my-calendar-styles.php:81
903
  msgid "CSS Style Options"
904
- msgstr "CSS Stil Valgmuligheder"
905
 
906
  #: my-calendar-styles.php:83
907
  msgid "Reset the My Calendar stylesheet to the default"
@@ -909,7 +1131,7 @@ msgstr "Nulstil My Calendar stylesheets til default"
909
 
910
  #: my-calendar-styles.php:83
911
  msgid "Disable My Calendar Stylesheet"
912
- msgstr "Deaktiver My Calendar Stylesheet"
913
 
914
  #: my-calendar-styles.php:86
915
  msgid "Edit the stylesheet for My Calendar"
@@ -924,51 +1146,51 @@ msgstr "Gem"
924
 
925
  #: my-calendar-styles.php:93
926
  msgid "Calendar Behaviors: Calendar View"
927
- msgstr "Kalender Opførsel: Kalendervisning"
928
 
929
  #: my-calendar-styles.php:95
930
  msgid "Reset the My Calendar Calendar Javascript"
931
- msgstr "Nulstil My Calendar Kalender Javascript"
932
 
933
  #: my-calendar-styles.php:95
934
  msgid "Disable Calendar Javascript Effects"
935
- msgstr "Deaktiver Kalender Javascript Effekter"
936
 
937
  #: my-calendar-styles.php:98
938
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
939
- msgstr "Rediger jQuery scripts til My Calendar i Kalenderformat."
940
 
941
  #: my-calendar-styles.php:105
942
  msgid "Calendar Behaviors: List View"
943
- msgstr "Kalender Opførsel: Listevisning"
944
 
945
  #: my-calendar-styles.php:107
946
  msgid "Reset the My Calendar List Javascript"
947
- msgstr "Nulstil My Calendar Liste Javascript"
948
 
949
  #: my-calendar-styles.php:107
950
  msgid "Disable List Javascript Effects"
951
- msgstr "Deaktiver Liste Javascript Effekter"
952
 
953
  #: my-calendar-styles.php:110
954
  msgid "Edit the jQuery scripts for My Calendar in List format"
955
- msgstr "Rediger jQuery scripts til My Calendar i Listeformat"
956
 
957
  #: my-calendar-styles.php:117
958
  msgid "Calendar Behaviors: Mini Calendar View"
959
- msgstr "Kalendar Opførsel: Mini Kalender Visning"
960
 
961
  #: my-calendar-styles.php:119
962
  msgid "Reset the My Calendar Mini Format Javascript"
963
- msgstr "Nulstil My Calendar Mini Format Javascript"
964
 
965
  #: my-calendar-styles.php:119
966
  msgid "Disable Mini Javascript Effects"
967
- msgstr "Deaktiver Mini Javascript Effekter"
968
 
969
  #: my-calendar-styles.php:122
970
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
971
- msgstr "Rediger jQuery scripts til My Calendar i Mini Kalender format"
972
 
973
  #: my-calendar-upgrade-db.php:19
974
  msgid "The My Calendar database needs to be updated."
@@ -980,7 +1202,7 @@ msgid "Update now"
980
  msgstr "Opdater nu"
981
 
982
  #: my-calendar-upgrade-db.php:33
983
- msgid "You haven't entered any events, so My Calendar can't tell whether your database needs to be updated. If you can't add events, upgrade your database!"
984
  msgstr "Du har ikke tilføjet nogen begivenheder, så My Calendar ved ikke om din database har brug for at blive opdateret. Opgrader din database, hvis du ikke kan tilføje begivenheder!"
985
 
986
  #: my-calendar-upgrade-db.php:44
@@ -991,7 +1213,7 @@ msgstr "My Calendars database er opdateret."
991
  #: my-calendar-widgets.php:51
992
  #: my-calendar-widgets.php:52
993
  msgid "Today's Events"
994
- msgstr "Dagens Begivenheder"
995
 
996
  #: my-calendar-widgets.php:41
997
  #: my-calendar-widgets.php:126
@@ -1010,7 +1232,7 @@ msgstr "Kommende begivenheder"
1010
 
1011
  #: my-calendar-widgets.php:130
1012
  msgid "Widget Options"
1013
- msgstr "Widget Indstillinger"
1014
 
1015
  #: my-calendar-widgets.php:132
1016
  msgid "Display upcoming events by:"
@@ -1042,211 +1264,227 @@ msgstr "hidtidige dage"
1042
 
1043
  #: my-calendar-widgets.php:146
1044
  msgid "Show only this category:"
1045
- msgstr "Vis kun denne kategori;"
1046
 
1047
- #: my-calendar-widgets.php:272
1048
  msgid "There are no events currently scheduled."
1049
  msgstr "Der er ikke planlagt nogen begivenheder p.t."
1050
 
1051
- #: my-calendar.php:52
1052
- #: my-calendar.php:171
 
 
 
 
 
 
 
 
1053
  msgid "Settings"
1054
  msgstr "Indstillinger"
1055
 
1056
- #: my-calendar.php:53
1057
- #: my-calendar.php:173
1058
  msgid "Help"
1059
  msgstr "Hjælp"
1060
 
1061
- #: my-calendar.php:76
 
 
 
 
1062
  msgid "Get Support"
1063
- msgstr "Få Support"
1064
 
1065
- #: my-calendar.php:77
1066
- #: my-calendar.php:173
1067
  msgid "My Calendar Help"
1068
- msgstr "My Calendar Hjælp"
1069
 
1070
- #: my-calendar.php:78
1071
  msgid "Make a Donation"
1072
- msgstr "Giv en Donation"
1073
 
1074
- #. #-#-#-#-# plugin.pot (My Calendar 1.4.3) #-#-#-#-#
1075
  #. Plugin Name of the plugin/theme
1076
- #: my-calendar.php:162
1077
  msgid "My Calendar"
1078
  msgstr "My Calendar"
1079
 
1080
- #: my-calendar.php:165
1081
  msgid "Add/Edit Events"
1082
- msgstr "Tilføj/Rediger Begivenheder"
1083
 
1084
- #: my-calendar.php:172
1085
  msgid "Style Editor"
1086
- msgstr "Stil Redigering"
1087
 
1088
- #: my-calendar.php:691
1089
  msgid "Event Details"
1090
- msgstr "Begivenheds Detaljer"
1091
 
1092
- #: my-calendar.php:700
1093
  msgid "Close"
1094
  msgstr "Luk"
1095
 
1096
- #: my-calendar.php:710
1097
  msgid "Not Applicable"
1098
- msgstr "Ikke Relevant"
1099
 
1100
- #: my-calendar.php:722
1101
  msgid "Posted by"
1102
  msgstr "Publiceret af"
1103
 
1104
- #: my-calendar.php:1287
 
 
 
 
1105
  msgid "Month"
1106
  msgstr "Måned"
1107
 
1108
- #: my-calendar.php:1288
1109
- #: my-calendar.php:1372
1110
  msgid "January"
1111
  msgstr "Januar"
1112
 
1113
- #: my-calendar.php:1289
1114
- #: my-calendar.php:1372
1115
  msgid "February"
1116
  msgstr "Februar"
1117
 
1118
- #: my-calendar.php:1290
1119
- #: my-calendar.php:1372
1120
  msgid "March"
1121
  msgstr "Marts"
1122
 
1123
- #: my-calendar.php:1291
1124
- #: my-calendar.php:1372
1125
  msgid "April"
1126
  msgstr "April"
1127
 
1128
- #: my-calendar.php:1292
1129
- #: my-calendar.php:1372
1130
  msgid "May"
1131
  msgstr "Maj"
1132
 
1133
- #: my-calendar.php:1293
1134
- #: my-calendar.php:1372
1135
  msgid "June"
1136
  msgstr "Juni"
1137
 
1138
- #: my-calendar.php:1294
1139
- #: my-calendar.php:1372
1140
  msgid "July"
1141
  msgstr "Juli"
1142
 
1143
- #: my-calendar.php:1295
1144
- #: my-calendar.php:1372
1145
  msgid "August"
1146
  msgstr "August"
1147
 
1148
- #: my-calendar.php:1296
1149
- #: my-calendar.php:1372
1150
  msgid "September"
1151
  msgstr "September"
1152
 
1153
- #: my-calendar.php:1297
1154
- #: my-calendar.php:1372
1155
  msgid "October"
1156
  msgstr "Oktober"
1157
 
1158
- #: my-calendar.php:1298
1159
- #: my-calendar.php:1372
1160
  msgid "November"
1161
  msgstr "November"
1162
 
1163
- #: my-calendar.php:1299
1164
- #: my-calendar.php:1372
1165
  msgid "December"
1166
  msgstr "December"
1167
 
1168
- #: my-calendar.php:1301
1169
  msgid "Year"
1170
  msgstr "År"
1171
 
1172
- #: my-calendar.php:1326
1173
  msgid "Go"
1174
  msgstr "Gå"
1175
 
1176
- #: my-calendar.php:1344
1177
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1178
  msgstr "<abbr title=\"Søndag\">Søn</abbr>"
1179
 
1180
- #: my-calendar.php:1345
1181
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1182
  msgstr "<abbr title=\"Mandag\">Man</abbr>"
1183
 
1184
- #: my-calendar.php:1346
1185
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1186
  msgstr "<abbr title=\"Tirsdag\">Tirs</abbr>"
1187
 
1188
- #: my-calendar.php:1347
1189
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1190
  msgstr "<abbr title=\"Onsdag\">Ons</abbr>"
1191
 
1192
- #: my-calendar.php:1348
1193
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1194
  msgstr "<abbr title=\"Torsdag\">Tors</abbr>"
1195
 
1196
- #: my-calendar.php:1349
1197
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1198
  msgstr "<abbr title=\"Fredag\">Fre</abbr>"
1199
 
1200
- #: my-calendar.php:1350
1201
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1202
  msgstr "<abbr title=\"Lørdag\">Lør</abbr>"
1203
 
1204
- #: my-calendar.php:1355
1205
  msgid "<abbr title=\"Sunday\">S</abbr>"
1206
  msgstr "<abbr title=\"Søndag\">S</abbr>"
1207
 
1208
- #: my-calendar.php:1356
1209
  msgid "<abbr title=\"Monday\">M</abbr>"
1210
  msgstr "<abbr title=\"Mandag\">M</abbr>"
1211
 
1212
- #: my-calendar.php:1357
1213
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1214
  msgstr "<abbr title=\"Tirsdag\">T</abbr>"
1215
 
1216
- #: my-calendar.php:1358
1217
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1218
  msgstr "<abbr title=\"Onsdag\">O</abbr>"
1219
 
1220
- #: my-calendar.php:1359
1221
  msgid "<abbr title=\"Thursday\">T</abbr>"
1222
  msgstr "<abbr title=\"Torsdag\">T</abbr>"
1223
 
1224
- #: my-calendar.php:1360
1225
  msgid "<abbr title=\"Friday\">F</abbr>"
1226
  msgstr "<abbr title=\"Fredag\">F</abbr>"
1227
 
1228
- #: my-calendar.php:1361
1229
  msgid "<abbr title=\"Saturday\">S</abbr>"
1230
  msgstr "<abbr title=\"Lørdag\">S</abbr>"
1231
 
1232
- #: my-calendar.php:1411
1233
  msgid "and"
1234
  msgstr "og"
1235
 
1236
- #: my-calendar.php:1440
1237
- #: my-calendar.php:1444
1238
  msgid "Calendar"
1239
  msgstr "Calendar"
1240
 
1241
- #: my-calendar.php:1448
1242
  msgid "Events in"
1243
  msgstr "Begivenheder i"
1244
 
1245
- #: my-calendar.php:1560
1246
  msgid "There are no events scheduled during this period."
1247
  msgstr "Der er ikke planlagt begivenheder i denne periode."
1248
 
1249
- #: my-calendar.php:1570
1250
  msgid "Category Key"
1251
  msgstr "Kategorinøgle"
1252
 
@@ -1266,3 +1504,31 @@ msgstr "Joseph C Dolson"
1266
  msgid "http://www.joedolson.com"
1267
  msgstr "http://www.joedolson.com"
1268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: My Calendar 1.4.3\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
10
+ "POT-Creation-Date: 2010-10-05 19:19+0000\n"
11
+ "PO-Revision-Date: 2010-11-05 13:56+0100\n"
12
  "Last-Translator: Jakob Smith <jakob@omkalfatring.dk>\n"
13
  "Language-Team: omkalfatring.dk <jakob@omkalfatring.dk>\n"
14
  "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "X-Poedit-Language: Danish\n"
18
  "X-Poedit-Country: DENMARK\n"
19
  "X-Poedit-SourceCharset: utf-8\n"
20
 
21
+ #: my-calendar-categories.php:41
22
  msgid "Category added successfully"
23
+ msgstr "Kategori tilføjet med succes"
24
 
25
+ #: my-calendar-categories.php:43
26
+ msgid "Category addition failed."
27
+ msgstr "Tilføjelse af kategori fejlede."
28
+
29
+ #: my-calendar-categories.php:53
30
+ msgid "Category deleted successfully. Categories in calendar updated."
31
+ msgstr "Kategori slettet med succes. Kalenderens kategorier er opdateret."
32
+
33
+ #: my-calendar-categories.php:55
34
+ msgid "Category deleted successfully. Categories in calendar not updated."
35
+ msgstr "Kategori slettet med succes. Kalenderens kategorier er ikke opdateret."
36
+
37
+ #: my-calendar-categories.php:57
38
+ msgid "Category not deleted. Categories in calendar updated."
39
+ msgstr "Kategori ikke slettet. Kalenderens kategorier er opdateret."
40
 
 
41
  #: my-calendar-categories.php:66
42
+ msgid "Category edited successfully"
43
+ msgstr "Kategori redigeret med succes"
44
+
45
+ #: my-calendar-categories.php:88
46
+ #: my-calendar-categories.php:112
47
+ #: my-calendar-categories.php:130
48
+ msgid "Add Category"
49
+ msgstr "Tilføj kategori"
50
+
51
+ #: my-calendar-categories.php:90
52
+ #: my-calendar-categories.php:112
53
  msgid "Edit Category"
54
  msgstr "Rediger kategori"
55
 
56
+ #: my-calendar-categories.php:97
57
  msgid "Category Editor"
58
  msgstr "Kategoriredigering"
59
 
60
+ #: my-calendar-categories.php:113
61
+ #: my-calendar-categories.php:156
 
62
  msgid "Category Name"
63
+ msgstr "Kategorinavn"
64
 
65
+ #: my-calendar-categories.php:114
 
66
  msgid "Category Color (Hex format)"
67
+ msgstr "Kategorifarve (Hex format)"
68
 
69
+ #: my-calendar-categories.php:115
70
+ #: my-calendar-categories.php:158
 
71
  msgid "Category Icon"
72
+ msgstr "Kategoriikon"
73
 
74
+ #: my-calendar-categories.php:130
75
+ #: my-calendar-locations.php:121
76
  msgid "Save Changes"
77
+ msgstr "Gem ændringer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
+ #: my-calendar-categories.php:143
80
+ #: my-calendar.php:179
81
  msgid "Manage Categories"
82
+ msgstr "Administrer kategorier"
83
 
84
+ #: my-calendar-categories.php:155
85
+ #: my-calendar-event-manager.php:643
86
+ #: my-calendar-locations.php:147
87
  msgid "ID"
88
+ msgstr "id"
89
 
90
+ #: my-calendar-categories.php:157
91
  msgid "Category Color"
92
+ msgstr "Kategorifarve"
93
 
94
+ #: my-calendar-categories.php:159
95
+ #: my-calendar-categories.php:173
96
+ #: my-calendar-event-manager.php:704
97
+ #: my-calendar-locations.php:149
98
+ #: my-calendar-locations.php:161
99
  msgid "Edit"
100
  msgstr "Rediger"
101
 
102
+ #: my-calendar-categories.php:160
103
+ #: my-calendar-categories.php:179
104
+ #: my-calendar-event-manager.php:73
105
+ #: my-calendar-event-manager.php:704
106
+ #: my-calendar-locations.php:150
107
+ #: my-calendar-locations.php:162
108
  msgid "Delete"
109
  msgstr "Slet"
110
 
111
+ #: my-calendar-categories.php:176
112
+ #: my-calendar-event-manager.php:685
113
+ #: my-calendar-settings.php:228
114
+ #: my-calendar.php:652
115
  msgid "N/A"
116
  msgstr "Ikke oplyst"
117
 
118
+ #: my-calendar-categories.php:179
119
+ #: my-calendar-locations.php:162
120
  msgid "Are you sure you want to delete this category?"
121
  msgstr "Er du sikker på, at du vil slette denne kategori?"
122
 
123
+ #: my-calendar-categories.php:190
124
  msgid "There are no categories in the database - something has gone wrong!"
125
  msgstr "Der er ingen kategorier i databasen - noget er gået galt!"
126
 
127
+ #: my-calendar-event-manager.php:27
128
+ #: my-calendar-settings.php:351
129
  msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
130
  msgstr "My Calendar har registreret, at du har Kieran O'Sheas Calendar-plugin installeret. Du kan importere begivenheder og kategorier derfra til din My Calendar-database. Ønsker du at gøre dette?"
131
 
132
+ #: my-calendar-event-manager.php:33
133
+ #: my-calendar-settings.php:357
134
  msgid "Import from Calendar"
135
  msgstr "Importer fra Calendar"
136
 
137
+ #: my-calendar-event-manager.php:38
138
  msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
139
  msgstr "Selvom det er muligt, at denne import ikke kan importere dine begivenheder korrekt, skulle det ikke have nogen indvirkning på din eksisterende Calendar-database. <a href=\"http://www.joedolson.com/contact.php\">Kontakt mig venligst</a>, hvis du kommer ud for problemer."
140
 
141
+ #: my-calendar-event-manager.php:68
142
  msgid "Delete Event"
143
+ msgstr "Slet begivenhed"
144
 
145
+ #: my-calendar-event-manager.php:68
146
  msgid "Are you sure you want to delete this event?"
147
  msgstr "Er du sikker på, at du vil slette denne begivenhed?"
148
 
149
+ #: my-calendar-event-manager.php:81
150
  msgid "You do not have permission to delete that event."
151
  msgstr "Du har ikke tilladelse til at slette denne begivenhed."
152
 
153
+ #: my-calendar-event-manager.php:96
154
+ #: my-calendar-event-manager.php:209
155
+ msgid "You do not have permission to approve that event."
156
+ msgstr "Du har ikke tilladelse til at godkende denne begivenhed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
 
158
+ #: my-calendar-event-manager.php:110
159
+ #: my-calendar-event-manager.php:223
160
+ msgid "You do not have permission to reject that event."
161
+ msgstr "Du har ikke tilladelse til at afvise denne begivenhed."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
+ #: my-calendar-event-manager.php:133
164
+ #: my-calendar-event-manager.php:154
165
+ #: my-calendar-event-manager.php:178
166
  #: my-calendar-event-manager.php:193
167
+ #: my-calendar-event-manager.php:833
168
+ #: my-calendar-event-manager.php:838
169
+ #: my-calendar-event-manager.php:843
170
+ #: my-calendar-event-manager.php:855
171
+ #: my-calendar-event-manager.php:865
172
+ #: my-calendar-event-manager.php:873
173
+ #: my-calendar-event-manager.php:882
174
+ #: my-calendar-event-manager.php:890
175
+ msgid "Error"
176
+ msgstr "Fejl"
177
 
178
+ #: my-calendar-event-manager.php:133
179
+ msgid "I'm sorry! I couldn't add that event to the database."
180
+ msgstr "Beklager! Jeg kunne ikke tilføje den begivenhed til databasen."
181
 
182
+ #: my-calendar-event-manager.php:135
183
  msgid "Event added. It will now show in your calendar."
184
  msgstr "Begivenhed tilføjet. Den vises nu i din kalender."
185
 
186
+ #: my-calendar-event-manager.php:154
 
 
 
 
 
 
 
 
 
187
  msgid "Your event was not updated."
188
  msgstr "Din begivenhed blev ikke opdateret."
189
 
190
+ #: my-calendar-event-manager.php:158
191
+ msgid "Nothing was changed in that update."
192
+ msgstr "Intet blev ændret i denne opdatering af begivenheden."
193
+
194
+ #: my-calendar-event-manager.php:162
195
  msgid "Event updated successfully"
196
+ msgstr "Begivenhed opdateret med succes"
197
 
198
+ #: my-calendar-event-manager.php:168
199
  msgid "You do not have sufficient permissions to edit that event."
200
  msgstr "Du har ikke tilstrækkelige tilladelser til at redigere denne begivenhed."
201
 
202
+ #: my-calendar-event-manager.php:178
203
  msgid "You can't delete an event if you haven't submitted an event id"
204
  msgstr "Du kan ikke redigere en begivenhed, hvis du ikke har sendt et begivenheds-id."
205
 
206
+ #: my-calendar-event-manager.php:189
207
  msgid "Event deleted successfully"
208
+ msgstr "Begivenhed slettet med succes"
209
 
210
+ #: my-calendar-event-manager.php:193
211
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
212
  msgstr "Selvom der blev sendt en forespørgsel om sletning, eksisterer begivenheden stadig i databasen. Undersøg venligst."
213
 
214
+ #: my-calendar-event-manager.php:240
215
+ #: my-calendar-event-manager.php:343
216
  msgid "Edit Event"
217
+ msgstr "Rediger begivenhed"
218
 
219
+ #: my-calendar-event-manager.php:244
220
+ #: my-calendar-event-manager.php:253
221
  msgid "You must provide an event id in order to edit it"
222
  msgstr "Du skal angive et begivenheds-id for at kunne redigere den"
223
 
224
+ #: my-calendar-event-manager.php:249
225
+ #: my-calendar-event-manager.php:343
226
+ msgid "Copy Event"
227
+ msgstr "Kopier begivenhed"
228
+
229
+ #: my-calendar-event-manager.php:259
230
  msgid "Add Event"
231
+ msgstr "Tilføj begivenhed"
232
 
233
+ #: my-calendar-event-manager.php:264
234
  msgid "Manage Events"
235
+ msgstr "Administrer begivenheder"
236
 
237
+ #: my-calendar-event-manager.php:315
238
  msgid "Sorry! That's an invalid event key."
239
+ msgstr "Beklager! Det er et ugyldigt begivenheds-id."
240
 
241
+ #: my-calendar-event-manager.php:320
242
  msgid "Sorry! We couldn't find an event with that ID."
243
+ msgstr "Beklager! Vi kunne ikke finde en begivenhed med det id."
244
 
245
+ #: my-calendar-event-manager.php:343
246
  msgid "Add an Event"
247
+ msgstr "Tilføj en begivenhed"
248
+
249
+ #: my-calendar-event-manager.php:347
250
+ msgid "This event must be approved in order for it to appear on the calendar."
251
+ msgstr "Denne begivenhed skal godkendes for at blive vist i kalenderen."
252
 
253
+ #: my-calendar-event-manager.php:362
254
  msgid "Enter your Event Information"
255
  msgstr "Indtast oplysninger om begivenheden"
256
 
257
+ #: my-calendar-event-manager.php:364
258
  msgid "Event Title"
259
+ msgstr "Begivenhedens titel"
260
+
261
+ #: my-calendar-event-manager.php:367
262
+ msgid "Publish"
263
+ msgstr "Publicer"
264
+
265
+ #: my-calendar-event-manager.php:367
266
+ msgid "You must approve this event to promote it to the calendar."
267
+ msgstr "Du skal godkende denne begivenhed for at den bliver vist i kalenderen."
268
 
269
+ #: my-calendar-event-manager.php:369
270
+ msgid "An administrator must approve your new event."
271
+ msgstr "En administrator skal godkende din nye begivenhed."
272
+
273
+ #: my-calendar-event-manager.php:377
274
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
275
  msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
276
 
277
+ #: my-calendar-event-manager.php:382
278
+ msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
279
+ msgstr "Kort beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
280
+
281
+ #: my-calendar-event-manager.php:387
282
  msgid "Event Category"
283
+ msgstr "Begivenheds kategori"
284
 
285
+ #: my-calendar-event-manager.php:412
286
  msgid "Event Link (Optional)"
287
+ msgstr "Begivenhedslink (valgfri)"
288
 
289
+ #: my-calendar-event-manager.php:412
290
  msgid "This link will expire when the event passes."
291
  msgstr "Dette link udløber, når begivenheden er overstået."
292
 
293
+ #: my-calendar-event-manager.php:416
294
  msgid "Start Date (YYYY-MM-DD)"
295
  msgstr "Startdato (ÅÅÅÅ-MM-DD)"
296
 
297
+ #: my-calendar-event-manager.php:419
298
  msgid "End Date (YYYY-MM-DD) (Optional)"
299
+ msgstr "Slutdato (ÅÅÅÅ-MM-DD) (Valgfri)"
300
 
301
+ #: my-calendar-event-manager.php:422
302
  msgid "Time (hh:mm)"
303
  msgstr "Tidspunkt (tt:mm)"
304
 
305
+ #: my-calendar-event-manager.php:434
306
  msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
307
  msgstr "Valgfri, lad feltet være tomt, hvis begivenheden er en heldagsbegivenhed eller ikke foregår på et bestemt tidspunkt."
308
 
309
+ #: my-calendar-event-manager.php:434
310
  msgid "Current time difference from GMT is "
311
  msgstr "Nuværende tidsforskel fra GMT er "
312
 
313
+ #: my-calendar-event-manager.php:434
314
  msgid " hour(s)"
315
  msgstr " time(r)."
316
 
317
+ #: my-calendar-event-manager.php:437
318
  msgid "End Time (hh:mm)"
319
  msgstr "Sluttidspunkt (tt:mm)"
320
 
321
+ #: my-calendar-event-manager.php:447
322
  msgid "Optional. End times will not be displayed on events where this is not set."
323
  msgstr "Valgfri. Sluttidspunkter bliver ikke vist på begivenheder, hvor de ikke er valgt."
324
 
325
+ #: my-calendar-event-manager.php:452
326
  msgid "Recurring Events"
327
  msgstr "Tilbagevendende begivenheder"
328
 
329
+ #: my-calendar-event-manager.php:455
330
  msgid "Repeats for"
331
  msgstr "Gentages"
332
 
333
+ #: my-calendar-event-manager.php:456
334
  msgid "Units"
335
  msgstr "gange"
336
 
337
+ #: my-calendar-event-manager.php:457
338
  msgid "Does not recur"
339
  msgstr "Gentages ikke"
340
 
341
+ #: my-calendar-event-manager.php:458
342
+ #: my-calendar-event-manager.php:677
343
  msgid "Daily"
344
  msgstr "Dagligt"
345
 
346
+ #: my-calendar-event-manager.php:459
347
+ #: my-calendar-event-manager.php:678
348
  msgid "Weekly"
349
  msgstr "Ugentligt"
350
 
351
+ #: my-calendar-event-manager.php:460
352
  msgid "Bi-weekly"
353
  msgstr "Hveranden uge"
354
 
355
+ #: my-calendar-event-manager.php:461
356
+ msgid "Date of Month (e.g., the 24th of each month)"
357
+ msgstr "Dato i måneden (f.eks. den 24. i hver måned)"
 
358
 
359
+ #: my-calendar-event-manager.php:462
360
+ msgid "Day of Month (e.g., the 3rd Monday of each month)"
361
+ msgstr "Dag i måneden (f.eks. den 3. mandag i hver måned)"
362
+
363
+ #: my-calendar-event-manager.php:463
364
  msgid "Annually"
365
  msgstr "Årligt"
366
 
367
+ #: my-calendar-event-manager.php:465
368
+ msgid "Entering 0 means forever, if a unit is selected. If the recurrence unit is left at \"Does not recur,\" the event will not reoccur."
369
+ msgstr "Indtastning af 0 betyder \"altid\", hvis en enhed er valgt. Hvis typen af gentagelse er sat til \"Gentages ikke\", vil begivenheden ikke gentages."
370
 
371
+ #: my-calendar-event-manager.php:476
372
+ msgid "Event Registration Status"
373
+ msgstr "Status for tilmelding til begivenhed"
374
+
375
+ #: my-calendar-event-manager.php:478
376
+ msgid "Open"
377
+ msgstr "Åben"
378
+
379
+ #: my-calendar-event-manager.php:479
380
+ msgid "Closed"
381
+ msgstr "Lukket"
382
+
383
+ #: my-calendar-event-manager.php:480
384
+ msgid "Does not apply"
385
+ msgstr "Ikke relevant"
386
 
387
+ #: my-calendar-event-manager.php:483
388
+ msgid "If this event recurs, it can only be registered for as a complete series."
389
+ msgstr "Hvis denne begivenhed gentages, kan tilmelding kun ske til den samlede serie af begivenheder."
390
+
391
+ #: my-calendar-event-manager.php:493
392
+ #: my-calendar-locations.php:81
393
+ msgid "Event Location"
394
+ msgstr "Begivenhedens sted"
395
+
396
+ #: my-calendar-event-manager.php:502
397
  msgid "Choose a preset location:"
398
  msgstr "Vælg et forudindstillet sted:"
399
 
400
+ #: my-calendar-event-manager.php:516
401
  msgid "Add recurring locations for later use."
402
  msgstr "Tilføj tilbagevendende steder til senere brug."
403
 
404
+ #: my-calendar-event-manager.php:525
405
+ #: my-calendar-locations.php:83
406
+ msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
407
+ msgstr "Alle stedrelaterede felter er valgfri: <em>Utilstrækkelige oplysninger kan resultere i et upræcist kort</em>."
408
+
409
+ #: my-calendar-event-manager.php:528
410
+ #: my-calendar-locations.php:86
411
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
412
  msgstr "Stednavn (f.eks. <em>Joe's Bar & Grill</em>)"
413
 
414
+ #: my-calendar-event-manager.php:531
415
+ #: my-calendar-locations.php:89
 
416
  msgid "Street Address"
417
  msgstr "Gadenavn"
418
 
419
+ #: my-calendar-event-manager.php:534
420
+ #: my-calendar-locations.php:92
 
421
  msgid "Street Address (2)"
422
  msgstr "Gadenavn (2)"
423
 
424
+ #: my-calendar-event-manager.php:537
425
+ #: my-calendar-locations.php:95
 
426
  msgid "City"
427
  msgstr "By"
428
 
429
+ #: my-calendar-event-manager.php:537
430
+ #: my-calendar-locations.php:95
 
431
  msgid "State/Province"
432
  msgstr "Stat/Provins"
433
 
434
+ #: my-calendar-event-manager.php:537
435
+ #: my-calendar-locations.php:95
 
436
  msgid "Postal Code"
437
  msgstr "Postnummer"
438
 
439
+ #: my-calendar-event-manager.php:540
440
+ #: my-calendar-locations.php:98
 
441
  msgid "Country"
442
  msgstr "Land"
443
 
444
+ #: my-calendar-event-manager.php:543
445
+ #: my-calendar-locations.php:101
 
446
  msgid "Initial Zoom"
447
  msgstr "Indledende Zoom"
448
 
449
+ #: my-calendar-event-manager.php:545
450
+ #: my-calendar-locations.php:103
 
451
  msgid "Neighborhood"
452
  msgstr "Nabolag"
453
 
454
+ #: my-calendar-event-manager.php:546
455
+ #: my-calendar-locations.php:104
 
456
  msgid "Small City"
457
  msgstr "Lille By"
458
 
459
+ #: my-calendar-event-manager.php:547
460
+ #: my-calendar-locations.php:105
 
461
  msgid "Large City"
462
  msgstr "Stor By"
463
 
464
+ #: my-calendar-event-manager.php:548
465
+ #: my-calendar-locations.php:106
 
466
  msgid "Greater Metro Area"
467
  msgstr "Større byområde"
468
 
469
+ #: my-calendar-event-manager.php:549
470
+ #: my-calendar-locations.php:107
 
471
  msgid "State"
472
  msgstr "Kommune"
473
 
474
+ #: my-calendar-event-manager.php:550
475
+ #: my-calendar-locations.php:108
 
476
  msgid "Region"
477
  msgstr "Region"
478
 
479
+ #: my-calendar-event-manager.php:554
480
+ #: my-calendar-locations.php:112
 
481
  msgid "GPS Coordinates (optional)"
482
+ msgstr "GPS-koordinater (valgfri)"
483
 
484
+ #: my-calendar-event-manager.php:556
485
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
486
+ msgstr "Hvis du oplyser GPS-koordinater for dit sted, bliver de brugt i stedet for alle de andre adresseoplysninger til at oprette dit link til kortet."
 
 
487
 
488
+ #: my-calendar-event-manager.php:559
489
+ #: my-calendar-locations.php:117
 
490
  msgid "Longitude"
491
  msgstr "Længdegrad"
492
 
493
+ #: my-calendar-event-manager.php:559
494
+ #: my-calendar-locations.php:117
 
495
  msgid "Latitude"
496
  msgstr "Breddegrad"
497
 
498
+ #: my-calendar-event-manager.php:567
499
  msgid "Save Event"
500
  msgstr "Gem begivenhed"
501
 
502
+ #: my-calendar-event-manager.php:644
503
  #: my-calendar-widgets.php:37
504
  #: my-calendar-widgets.php:122
505
  msgid "Title"
506
  msgstr "Titel"
507
 
508
+ #: my-calendar-event-manager.php:645
509
  msgid "Link"
510
  msgstr "Link"
511
 
512
+ #: my-calendar-event-manager.php:646
513
+ #: my-calendar-locations.php:148
514
  msgid "Location"
515
  msgstr "Sted"
516
 
517
+ #: my-calendar-event-manager.php:647
518
  msgid "Description"
519
  msgstr "Beskrivelse"
520
 
521
+ #: my-calendar-event-manager.php:648
522
  msgid "Start Date"
523
  msgstr "Startdato"
524
 
525
+ #: my-calendar-event-manager.php:649
526
  msgid "Recurs"
527
  msgstr "Gentages"
528
 
529
+ #: my-calendar-event-manager.php:650
530
+ #: my-calendar-settings.php:204
531
+ #: my-calendar-settings.php:213
532
  msgid "Author"
533
  msgstr "Forfatter"
534
 
535
+ #: my-calendar-event-manager.php:651
536
  msgid "Category"
537
  msgstr "Kategori"
538
 
539
+ #: my-calendar-event-manager.php:652
540
  msgid "Edit / Delete"
541
  msgstr "Rediger / Slet"
542
 
543
+ #: my-calendar-event-manager.php:676
544
  msgid "Never"
545
  msgstr "Aldrig"
546
 
547
+ #: my-calendar-event-manager.php:679
548
  msgid "Bi-Weekly"
549
  msgstr "Hveranden uge"
550
 
551
+ #: my-calendar-event-manager.php:680
552
+ msgid "Monthly (by date)"
553
+ msgstr "Månedlig (efter dato)"
554
+
555
+ #: my-calendar-event-manager.php:681
556
+ msgid "Monthly (by day)"
557
+ msgstr "Månedlig (efter dag)"
558
+
559
+ #: my-calendar-event-manager.php:682
560
  msgid "Yearly"
561
  msgstr "Årligt"
562
 
563
+ #: my-calendar-event-manager.php:686
564
  msgid "Forever"
565
  msgstr "Altid"
566
 
567
+ #: my-calendar-event-manager.php:687
568
  msgid "Times"
569
+ msgstr "gange"
570
+
571
+ #: my-calendar-event-manager.php:702
572
+ msgid "Copy"
573
+ msgstr "Kopier"
574
+
575
+ #: my-calendar-event-manager.php:705
576
+ msgid "Not editable."
577
+ msgstr "Ikke redigerbar."
578
+
579
+ #: my-calendar-event-manager.php:711
580
+ msgid "Reject"
581
+ msgstr "Afvis"
582
+
583
+ #: my-calendar-event-manager.php:713
584
+ msgid "Approve"
585
+ msgstr "Godkend"
586
 
587
+ #: my-calendar-event-manager.php:718
588
+ msgid "Approved"
589
+ msgstr "Godkendt"
590
+
591
+ #: my-calendar-event-manager.php:720
592
+ msgid "Rejected"
593
+ msgstr "Afvist"
594
+
595
+ #: my-calendar-event-manager.php:733
596
  msgid "There are no events in the database!"
597
  msgstr "Der er ingen begivenheder i databasen!"
598
 
599
+ #: my-calendar-event-manager.php:833
600
+ msgid "Your event end date must be either after or the same as your event begin date"
601
+ msgstr "Din begivenheds slutdato må enten ligge efter eller være lig med begivenhedens startdato."
602
+
603
+ #: my-calendar-event-manager.php:838
604
+ msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
605
+ msgstr "Din datoformattering er korrekt, men en eller flere af dine datoer er ugyldige. Tjek for fejl relateret til enten antal dage i måneden eller skudår."
606
+
607
+ #: my-calendar-event-manager.php:843
608
+ msgid "Both start and end dates must be in the format YYYY-MM-DD"
609
+ msgstr "Både start- og slutdato skal være i formatet ÅÅÅÅ-MM-DD"
610
+
611
+ #: my-calendar-event-manager.php:855
612
+ msgid "The time field must either be blank or be entered in the format hh:mm"
613
+ msgstr "Feltet for tidspunkt skal enten være blankt eller indtastes i formatet tt:mm"
614
+
615
+ #: my-calendar-event-manager.php:865
616
+ msgid "The end time field must either be blank or be entered in the format hh:mm"
617
+ msgstr "Feltet for slutdato skal enten være blankt eller indtastes i formatet tt:mm"
618
+
619
+ #: my-calendar-event-manager.php:873
620
+ msgid "The URL entered must either be prefixed with http:// or be completely blank"
621
+ msgstr "Den indtastede URL skal enten være foranstillet med http:// eller være helt blank"
622
+
623
+ #: my-calendar-event-manager.php:882
624
+ msgid "The event title must be between 1 and 255 characters in length."
625
+ msgstr "Begivenhedens titel skal være mellem 1 og 255 tegn i længde."
626
+
627
+ #: my-calendar-event-manager.php:890
628
+ msgid "The repetition value must be 0 unless a type of recurrence is selected."
629
+ msgstr "Værdien for gentagelse skal være 0, medmindre der er er valgt en type af gentagelse."
630
+
631
  #: my-calendar-help.php:6
632
  msgid "How to use My Calendar"
633
  msgstr "Sådan bruger du My Calendar"
634
 
635
  #: my-calendar-help.php:11
636
  msgid "Shortcode Syntax"
637
+ msgstr "Shortcode-syntaks"
638
 
639
  #: my-calendar-help.php:14
640
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
641
  msgstr "Disse shortcodes kan bruges i Indlæg, Sider eller i text widgets."
642
 
643
+ #: my-calendar-help.php:18
644
  msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
645
  msgstr "Denne basale shortcode vil vise kalenderen i et indlæg eller en side, inklusiv alle kategorier og kategorinøglen, i et traditionelt måned-for-måned format."
646
 
647
+ #: my-calendar-help.php:21
648
  msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
649
+ msgstr "Denne shortcode understøtter tre attributter, <code>category</code>, <code>format</code> og <code>showkey</code>. Der er to valgmuligheder for <code>format</code> &mdash; <code>list</code> &mdash; som viser kalenderen i et listeformat, hvor dage uden begivenheder springes over, og <code>mini</code>, som viser kalenderen i en form, der passer bedre ind i små områder, som f.eks. en sidebar. Attributten <code>category</code> kræver en af dine begivenhedskategoriers navn eller ID-nummer (i navnet skelnes der mellem store og små bogstaver). Dette viser en kalender, der kun inkluderer begivenheder i den angivne kategori. Flere kategorier kan specificeres ved at adskille kategorinavnene eller ID-numrene med \"pipe\"-tegnet: <code>|</code>. Sætter man <code>showkey</code> til <code>no</code>, forhindrer man kategorinøglen i at blive vist &mdash; dette kan være brugbart ved enkeltkategorioutput."
650
 
651
+ #: my-calendar-help.php:24
652
  msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
653
  msgstr "Denne shortcode viser outputtet fra widgetten Kommende Begivenheder. Uden attributter vises den med indstillingerne fra widgetten; attributterne bruges til at tilsidesætte widgettens indstillinger. Attributterne <code>before</code> og <code>after</code> skal være tal; attributten <code>type</code> kan være enten \"event\" eller \"days\", og attributten <code>category</code> fungerer på samme måde som kategori-attributten i hovedkalenderens shortcode. Skabeloner fungerer vha. skabelonkoderne listet herunder."
654
 
655
+ #: my-calendar-help.php:27
656
  msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
657
  msgstr "Forudsigeligt nok viser denne shortcode outputtet fra widgetten Dagens Begivenheder, med to indstillelige attributter: <code>category</code> og <code>template</code>."
658
 
659
  #: my-calendar-help.php:34
660
  msgid "Category Icons"
661
+ msgstr "Kategoriikoner"
662
 
663
  #: my-calendar-help.php:37
664
  msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
666
 
667
  #: my-calendar-help.php:40
668
  msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
669
+ msgstr "De præinstallerede kategoriikoner er måske ikke specielt velegnede til dit formål eller design. Jeg går ud fra, at du gerne vil uploade dine egne ikoner &mdash; alt du behøver at gøre er at uploade dem til mappen icons i pluginnets mappe i wp-content/plugins. Derefter er de klar til brug med det samme. Du kan også placere dem i en mappe kaldet \"my-calendar-custom\" for at undgå, at de bliver overskrevet ved opgradering af pluginnet."
670
 
671
  #: my-calendar-help.php:40
672
  msgid "Your icons folder is:"
678
 
679
  #: my-calendar-help.php:48
680
  msgid "Widget Templating"
681
+ msgstr "Widgetskabeloner"
682
 
683
  #: my-calendar-help.php:51
684
  msgid "These codes are available in calendar widgets to create your own custom calendar format."
710
 
711
  #: my-calendar-help.php:73
712
  msgid "Displays the WordPress author who posted the event."
713
+ msgstr "Viser den WordPress-forfatter, der publicerede begivenheden."
714
 
715
  #: my-calendar-help.php:76
716
  msgid "Displays the URL provided for the event."
760
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
761
  msgstr "Viser et link til et Google Kort over begivenhedens sted, hvis tilstrækkelige adresseinformationer er tilgængelig. Hvis ikke, vises der ikke et kort."
762
 
763
+ #: my-calendar-help.php:112
764
+ msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
765
+ msgstr "Viser tekst, der indikerer om der er åbent eller lukket for tilmelding til begivenheden; viser ikke noget, hvis dette er valgt i indstillingerne for begivenheden."
766
+
767
+ #: my-calendar-help.php:115
768
+ msgid "Displays the short version of the event description."
769
+ msgstr "Viser den korte beskrivelse af begivenheden."
770
+
771
+ #: my-calendar-help.php:118
772
+ msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
773
+ msgstr "Viser begivenhedens aktuelle status: Enten \"Publiceret\" eller \"Reserveret\" - bruges primært i e-mail-skabeloner."
774
+
775
+ #: my-calendar-locations.php:22
776
  msgid "Location added successfully"
777
+ msgstr "Sted tilføjet med succes"
778
 
779
+ #: my-calendar-locations.php:24
780
+ msgid "Location could not be added to database"
781
+ msgstr "Stedet kunne ikke føjes til databasen."
782
 
783
  #: my-calendar-locations.php:30
784
+ msgid "Location deleted successfully"
785
+ msgstr "Sted slettet med succes"
786
+
787
+ #: my-calendar-locations.php:32
788
+ msgid "Location could not be deleted"
789
+ msgstr "Stedet kunne ikke slettes"
790
+
791
+ #: my-calendar-locations.php:43
792
+ msgid "Location could not be edited."
793
+ msgstr "Stedet kunne ikke redigeres."
794
+
795
+ #: my-calendar-locations.php:45
796
+ msgid "Location was not changed."
797
+ msgstr "Stedet blev ikke ændret."
798
+
799
+ #: my-calendar-locations.php:47
800
+ msgid "Location edited successfully"
801
+ msgstr "Sted redigeret med succes"
802
+
803
+ #: my-calendar-locations.php:59
804
+ msgid "Add New Location"
805
+ msgstr "Tilføj nyt sted"
806
+
807
+ #: my-calendar-locations.php:61
808
  msgid "Edit Location"
809
+ msgstr "Rediger sted"
810
 
811
+ #: my-calendar-locations.php:66
812
  msgid "Location Editor"
813
+ msgstr "Redigering af steder"
814
 
815
+ #: my-calendar-locations.php:114
816
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
817
+ msgstr "Hvis du oplyser GPS-koordinater for dit sted, bliver de brugt i stedet for alle de andre adresseoplysninger til at identificere stedet."
818
 
819
+ #: my-calendar-locations.php:121
 
820
  msgid "Add Location"
821
+ msgstr "Tilføj sted"
 
 
 
 
822
 
823
+ #: my-calendar-locations.php:135
824
+ #: my-calendar.php:180
825
  msgid "Manage Locations"
826
+ msgstr "Administrer steder"
827
 
828
+ #: my-calendar-locations.php:170
829
  msgid "There are no locations in the database yet!"
830
  msgstr "Der er endnu ingen steder i databasen!"
831
 
832
+ #: my-calendar-locations.php:174
833
  msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
834
+ msgstr "Bemærk: Redigering eller sletning af steder gemt til genbrug, har ikke indvirkning på tidligere planlagte begivenheder på det sted. Steddatabasen eksisterer kun som en hurtig metode til indtastning af ofte brugte steder i begivenhedsoplysninger."
835
 
836
  #: my-calendar-settings.php:67
837
  msgid "Categories imported successfully."
838
+ msgstr "Kategorier importeret med succes"
839
 
840
  #: my-calendar-settings.php:69
841
  msgid "Categories not imported."
843
 
844
  #: my-calendar-settings.php:72
845
  msgid "Events imported successfully."
846
+ msgstr "Begivenheder importeret med succes"
847
 
848
  #: my-calendar-settings.php:74
849
  msgid "Events not imported."
850
  msgstr "Begivenheder blev ikke importeret"
851
 
852
+ #: my-calendar-settings.php:165
853
  msgid "Settings saved"
854
  msgstr "Indstillinger gemt"
855
 
856
+ #: my-calendar-settings.php:188
857
  msgid "My Calendar Options"
858
+ msgstr "My Calendar indstillinger"
859
 
860
+ #: my-calendar-settings.php:195
861
  msgid "Calendar Settings"
862
+ msgstr "Kalenderindstillinger"
863
 
864
+ #: my-calendar-settings.php:199
865
  msgid "Calendar Options: Management"
866
+ msgstr "Kalenderindstillinger: Administration"
867
 
868
+ #: my-calendar-settings.php:201
869
+ msgid "Choose the lowest user group that may create events"
870
+ msgstr "Vælg den laveste brugergruppe, der må oprette begivenheder"
871
 
872
+ #: my-calendar-settings.php:202
873
+ #: my-calendar-settings.php:211
874
  msgid "Subscriber"
875
  msgstr "Abonnent"
876
 
877
+ #: my-calendar-settings.php:203
878
+ #: my-calendar-settings.php:212
879
  msgid "Contributor"
880
  msgstr "Bidragyder"
881
 
882
+ #: my-calendar-settings.php:205
883
+ #: my-calendar-settings.php:214
884
  msgid "Editor"
885
  msgstr "Redaktør"
886
 
887
+ #: my-calendar-settings.php:206
888
+ #: my-calendar-settings.php:215
889
  msgid "Administrator"
890
  msgstr "Administrator"
891
 
892
+ #: my-calendar-settings.php:210
893
+ msgid "Choose the lowest user group that may approve events"
894
+ msgstr "Vælg den laveste brugergruppe, der må godkende begivenheder"
 
 
 
 
 
 
 
 
 
895
 
896
+ #: my-calendar-settings.php:219
897
+ msgid "Enable approval options."
898
+ msgstr "Aktiver indstillinger for godkendelse."
 
899
 
900
+ #: my-calendar-settings.php:223
901
+ msgid "Calendar Options: Customize Text"
902
+ msgstr "Kalenderindstillinger: Tilret tekst"
 
 
 
 
 
 
 
 
 
 
 
 
903
 
904
+ #: my-calendar-settings.php:225
905
  msgid "Show Heading for Calendar"
906
+ msgstr "Vis overskrift i kalender"
907
 
908
+ #: my-calendar-settings.php:228
909
  msgid "Label for events without a specific time"
910
+ msgstr "Etiket for begivenheder uden et specifikt tidspunkt"
911
 
912
+ #: my-calendar-settings.php:231
913
  msgid "Previous events link text"
914
  msgstr "Linktekst for tidligere begivenheder"
915
 
916
+ #: my-calendar-settings.php:231
917
  msgid "Previous Events"
918
+ msgstr "Tidligere begivenheder"
919
 
920
+ #: my-calendar-settings.php:234
921
  msgid "Next events link text"
922
  msgstr "Linktekst for kommende begivenheder"
923
 
924
+ #: my-calendar-settings.php:234
925
  msgid "Next Events"
926
+ msgstr "Kommende begivenheder"
927
 
928
+ #: my-calendar-settings.php:237
929
+ msgid "Text when events are open"
930
+ msgstr "Tekst, der vises når der er åbent for tilmelding"
931
+
932
+ #: my-calendar-settings.php:237
933
+ msgid "Registration is open"
934
+ msgstr "Der er åbent for tilmelding"
935
+
936
+ #: my-calendar-settings.php:240
937
+ msgid "Text when events are closed"
938
+ msgstr "Tekst, der vises, når der er lukket for tilmelding"
939
+
940
+ #: my-calendar-settings.php:240
941
+ msgid "Registration is closed"
942
+ msgstr "Der er lukket for tilmelding"
943
+
944
+ #: my-calendar-settings.php:243
945
  msgid "Additional caption text"
946
+ msgstr "Yderligere forklarende tekst"
947
 
948
+ #: my-calendar-settings.php:243
949
  msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
950
+ msgstr "Den forklarende tekst er den tekst, der indeholder den viste måned og år i enten liste- eller kalendervisning. Den her indtastede tekst vises efter den eksisterende tekst."
951
+
952
+ #: my-calendar-settings.php:247
953
+ msgid "Calendar Options: Output"
954
+ msgstr "Kalenderindstillinger: Output"
955
+
956
+ #: my-calendar-settings.php:249
957
+ msgid "In list mode, show how many months of events at a time:"
958
+ msgstr "Hvor mange måneders begivenheder skal vises i listevisning ad gangen:"
959
+
960
+ #: my-calendar-settings.php:252
961
+ msgid "Date format in list mode"
962
+ msgstr "Datoformat i listevisning"
963
+
964
+ #: my-calendar-settings.php:253
965
+ msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
966
+ msgstr "Datoformat bruger samme syntaks som <a href=\"http://php.net/date\">PHP <code>date()</code>-funktionen</a>. Gem indstillinger for at opdatere test-outputtet."
967
+
968
+ #: my-calendar-settings.php:256
969
+ msgid "Do you want to display the author name on events?"
970
+ msgstr "Ønsker du at vise forfatterens navn i begivenheder?"
971
 
972
+ #: my-calendar-settings.php:259
973
+ msgid "Display a jumpbox for changing month and year quickly?"
974
+ msgstr "Vis en popup-boks til hurtig ændring af måned og år?"
975
+
976
+ #: my-calendar-settings.php:262
977
  msgid "Hide category icons in output"
978
+ msgstr "Skjul kategoriikoner i output"
979
 
980
+ #: my-calendar-settings.php:265
981
  msgid "Show Link to Google Map (when sufficient address information is available.)"
982
+ msgstr "Vis link til Google Maps (når tilstrækkelige adresseoplysninger er tilgængelige)"
983
 
984
+ #: my-calendar-settings.php:268
985
  msgid "Show Event Address in Details"
986
+ msgstr "Vis begivenhedsadresse i detaljer"
987
+
988
+ #: my-calendar-settings.php:271
989
+ msgid "Show short description field on calendar."
990
+ msgstr "Vis den korte beskrivelse i kalenderen."
991
 
992
+ #: my-calendar-settings.php:274
993
+ msgid "Show full description field on calendar."
994
+ msgstr "Vis den fulde beskrivelse i kalenderen."
995
+
996
+ #: my-calendar-settings.php:277
997
  msgid "Links associated with events will automatically expire after the event has passed."
998
  msgstr "Links associeret med begivenheder vil automatisk udløbe efter en begivenhed er overstået."
999
 
1000
+ #: my-calendar-settings.php:280
1001
+ msgid "Show current availability status of events."
1002
+ msgstr "Vis begivenhedernes aktuelle status for tilgængelighed."
1003
+
1004
+ #: my-calendar-settings.php:283
1005
+ msgid "If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
1006
+ msgstr "Hvis en tilbagevendende begivenhed er planlagt til en dato, der ikke eksisterer (f.eks. den 5. onsdag i februar), flyt den da én uge tilbage."
1007
+
1008
+ #: my-calendar-settings.php:284
1009
+ msgid "If this option is unchecked, recurring events which fall on dates which don't exist will simply not be shown on the calendar."
1010
+ msgstr "Hvis denne indstilling ikke er markeret, vil tilbagevendende begivenheder, der falder på ikke-eksisterende datoer, ikke blive vist på kalenderen."
1011
+
1012
+ #: my-calendar-settings.php:288
1013
+ msgid "Calendar Options: Input"
1014
+ msgstr "Kalenderindstillinger: Output"
1015
+
1016
+ #: my-calendar-settings.php:291
1017
+ msgid "Show Event Location Dropdown Menu"
1018
+ msgstr "Vis begivenhedssted i dropdownmenu"
1019
+
1020
+ #: my-calendar-settings.php:291
1021
+ msgid "Show Event Short Description field"
1022
+ msgstr "Vis feltet \"Kort beskrivelse af begivenhed\""
1023
+
1024
+ #: my-calendar-settings.php:291
1025
+ msgid "Show Event Description Field"
1026
+ msgstr "Vis feltet \"Beskrivelse af begivenhed\""
1027
+
1028
+ #: my-calendar-settings.php:291
1029
+ msgid "Show Event Category field"
1030
+ msgstr "Begivenheds kategori"
1031
+
1032
+ #: my-calendar-settings.php:291
1033
+ msgid "Show Event Link field"
1034
+ msgstr "Vis feltet \"Begivenhedslink\""
1035
+
1036
+ #: my-calendar-settings.php:291
1037
+ msgid "Show Event Recurrence Options"
1038
+ msgstr "Vis indstillinger for tilbagevendende begivenheder"
1039
+
1040
+ #: my-calendar-settings.php:291
1041
+ msgid "Show event registration options"
1042
+ msgstr "Vis indstillinger for tilmelding til begivenheder"
1043
+
1044
+ #: my-calendar-settings.php:291
1045
+ msgid "Show event location fields"
1046
+ msgstr "Begivenhedens sted"
1047
+
1048
+ #: my-calendar-settings.php:300
1049
+ msgid "Administrators see all input options"
1050
+ msgstr "Lad administratorer se alle inputmuligheder"
1051
+
1052
+ #: my-calendar-settings.php:304
1053
+ msgid "Calendar Options: Style"
1054
+ msgstr "Kalenderindstillinger: Output"
1055
+
1056
+ #: my-calendar-settings.php:306
1057
  msgid "Default usage of category colors."
1058
  msgstr "Standard brug af kategorifarver"
1059
 
1060
+ #: my-calendar-settings.php:307
1061
  msgid "Apply category colors to event titles as a font color."
1062
  msgstr "Brug kategorifarver som skriftfarve i begivenhedstitler."
1063
 
1064
+ #: my-calendar-settings.php:308
1065
  msgid "Apply category colors to event titles as a background color."
1066
  msgstr "Brug kategorifarver som baggrundsfarve i begivenhedstitler"
1067
 
1068
+ #: my-calendar-settings.php:313
1069
+ msgid "Calendar Options: Email Notifications"
1070
+ msgstr "Kalenderindstillinger: Notifikationer pr. e-mail"
1071
+
1072
+ #: my-calendar-settings.php:317
1073
+ msgid "Send Email Notifications when new events are scheduled or reserved."
1074
+ msgstr "Send notifikationer pr. e-mail, når nye begivenheder publiceres eller reserveres."
1075
+
1076
+ #: my-calendar-settings.php:323
1077
+ msgid "Notification messages are sent to: "
1078
+ msgstr "Notifikationer pr. e-mail sendes til: "
1079
+
1080
+ #: my-calendar-settings.php:327
1081
+ msgid "Email subject"
1082
+ msgstr "E-mail emne"
1083
+
1084
+ #: my-calendar-settings.php:327
1085
+ msgid "New event Added"
1086
+ msgstr "Ny begivenhed tilføjet"
1087
+
1088
+ #: my-calendar-settings.php:331
1089
+ msgid "Message Body"
1090
+ msgstr "E-mail indhold"
1091
+
1092
+ #: my-calendar-settings.php:331
1093
+ msgid "New Event:"
1094
+ msgstr "Ny begivenhed:"
1095
+
1096
+ #: my-calendar-settings.php:332
1097
+ msgid "Shortcode Help"
1098
+ msgstr "Hjælp til shortcodes"
1099
+
1100
+ #: my-calendar-settings.php:332
1101
+ msgid "All template shortcodes are available."
1102
+ msgstr "Alle skabelon-shortcodes er tilgængelige."
1103
+
1104
+ #: my-calendar-settings.php:341
1105
  msgid "Save Settings"
1106
+ msgstr "Gem indstillinger"
1107
 
1108
  #: my-calendar-styles.php:46
1109
  msgid "Style Settings saved"
1110
+ msgstr "Style-indstillinger Gemt"
1111
 
1112
  #: my-calendar-styles.php:70
1113
  msgid "My Calendar Styles"
1114
+ msgstr "My Calendar Styles"
1115
 
1116
  #: my-calendar-styles.php:74
1117
  msgid "Calendar Style Settings"
1118
+ msgstr "Kalenders style-indstillinger"
1119
 
1120
  #: my-calendar-styles.php:78
1121
+ msgid "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
1122
+ msgstr "Vis kun CSS & Javascript på disse sider (kommaseparerede side-id'er)"
1123
 
1124
  #: my-calendar-styles.php:81
1125
  msgid "CSS Style Options"
1126
+ msgstr "CSS (stylesheets)"
1127
 
1128
  #: my-calendar-styles.php:83
1129
  msgid "Reset the My Calendar stylesheet to the default"
1131
 
1132
  #: my-calendar-styles.php:83
1133
  msgid "Disable My Calendar Stylesheet"
1134
+ msgstr "Deaktiver My Calendar stylesheet"
1135
 
1136
  #: my-calendar-styles.php:86
1137
  msgid "Edit the stylesheet for My Calendar"
1146
 
1147
  #: my-calendar-styles.php:93
1148
  msgid "Calendar Behaviors: Calendar View"
1149
+ msgstr "Kalenderopførsel: Kalendervisning"
1150
 
1151
  #: my-calendar-styles.php:95
1152
  msgid "Reset the My Calendar Calendar Javascript"
1153
+ msgstr "Nulstil My Calendars kalenderjavascript"
1154
 
1155
  #: my-calendar-styles.php:95
1156
  msgid "Disable Calendar Javascript Effects"
1157
+ msgstr "Deaktiver Kalenderens javascripteffekter"
1158
 
1159
  #: my-calendar-styles.php:98
1160
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1161
+ msgstr "Rediger jQuery-scripts til My Calendar i kalendervisning."
1162
 
1163
  #: my-calendar-styles.php:105
1164
  msgid "Calendar Behaviors: List View"
1165
+ msgstr "Kalenderopførsel: Listevisning"
1166
 
1167
  #: my-calendar-styles.php:107
1168
  msgid "Reset the My Calendar List Javascript"
1169
+ msgstr "Nulstil My Calendars listevisningsjavascript"
1170
 
1171
  #: my-calendar-styles.php:107
1172
  msgid "Disable List Javascript Effects"
1173
+ msgstr "Deaktiver listevisningens javascripteffekter"
1174
 
1175
  #: my-calendar-styles.php:110
1176
  msgid "Edit the jQuery scripts for My Calendar in List format"
1177
+ msgstr "Rediger jQuery-scripts til My Calendar i listevisning"
1178
 
1179
  #: my-calendar-styles.php:117
1180
  msgid "Calendar Behaviors: Mini Calendar View"
1181
+ msgstr "Kalenderopførsel: Minikalendervisning"
1182
 
1183
  #: my-calendar-styles.php:119
1184
  msgid "Reset the My Calendar Mini Format Javascript"
1185
+ msgstr "Nulstil My Calendars javascript til minikalendervisning"
1186
 
1187
  #: my-calendar-styles.php:119
1188
  msgid "Disable Mini Javascript Effects"
1189
+ msgstr "Deaktiver minikalendervisningens javascripteffekter"
1190
 
1191
  #: my-calendar-styles.php:122
1192
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1193
+ msgstr "Rediger jQuery-scripts til My Calendar i minikalendervisning"
1194
 
1195
  #: my-calendar-upgrade-db.php:19
1196
  msgid "The My Calendar database needs to be updated."
1202
  msgstr "Opdater nu"
1203
 
1204
  #: my-calendar-upgrade-db.php:33
1205
+ msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
1206
  msgstr "Du har ikke tilføjet nogen begivenheder, så My Calendar ved ikke om din database har brug for at blive opdateret. Opgrader din database, hvis du ikke kan tilføje begivenheder!"
1207
 
1208
  #: my-calendar-upgrade-db.php:44
1213
  #: my-calendar-widgets.php:51
1214
  #: my-calendar-widgets.php:52
1215
  msgid "Today's Events"
1216
+ msgstr "Dagens begivenheder"
1217
 
1218
  #: my-calendar-widgets.php:41
1219
  #: my-calendar-widgets.php:126
1232
 
1233
  #: my-calendar-widgets.php:130
1234
  msgid "Widget Options"
1235
+ msgstr "Widgetindstillinger"
1236
 
1237
  #: my-calendar-widgets.php:132
1238
  msgid "Display upcoming events by:"
1264
 
1265
  #: my-calendar-widgets.php:146
1266
  msgid "Show only this category:"
1267
+ msgstr "Vis kun denne kategori:"
1268
 
1269
+ #: my-calendar-widgets.php:285
1270
  msgid "There are no events currently scheduled."
1271
  msgstr "Der er ikke planlagt nogen begivenheder p.t."
1272
 
1273
+ #: my-calendar-widgets.php:470
1274
+ msgid "Published"
1275
+ msgstr "Publiceret"
1276
+
1277
+ #: my-calendar-widgets.php:472
1278
+ msgid "Reserved"
1279
+ msgstr "Reserveret"
1280
+
1281
+ #: my-calendar.php:56
1282
+ #: my-calendar.php:181
1283
  msgid "Settings"
1284
  msgstr "Indstillinger"
1285
 
1286
+ #: my-calendar.php:57
1287
+ #: my-calendar.php:183
1288
  msgid "Help"
1289
  msgstr "Hjælp"
1290
 
1291
+ #: my-calendar.php:81
1292
+ msgid "Buy the Beginner's Guide"
1293
+ msgstr "Køb Beginner's Guide"
1294
+
1295
+ #: my-calendar.php:82
1296
  msgid "Get Support"
1297
+ msgstr "Få support"
1298
 
1299
+ #: my-calendar.php:83
1300
+ #: my-calendar.php:183
1301
  msgid "My Calendar Help"
1302
+ msgstr "My Calendar hjælp"
1303
 
1304
+ #: my-calendar.php:84
1305
  msgid "Make a Donation"
1306
+ msgstr "Giv en donation"
1307
 
1308
+ #. #-#-#-#-# plugin.pot (My Calendar 1.5.0) #-#-#-#-#
1309
  #. Plugin Name of the plugin/theme
1310
+ #: my-calendar.php:172
1311
  msgid "My Calendar"
1312
  msgstr "My Calendar"
1313
 
1314
+ #: my-calendar.php:175
1315
  msgid "Add/Edit Events"
1316
+ msgstr "Tilføj/Rediger begivenheder"
1317
 
1318
+ #: my-calendar.php:182
1319
  msgid "Style Editor"
1320
+ msgstr "Style-redigering"
1321
 
1322
+ #: my-calendar.php:633
1323
  msgid "Event Details"
1324
+ msgstr "Begivenhedsdetaljer"
1325
 
1326
+ #: my-calendar.php:642
1327
  msgid "Close"
1328
  msgstr "Luk"
1329
 
1330
+ #: my-calendar.php:652
1331
  msgid "Not Applicable"
1332
+ msgstr "Ikke relevant"
1333
 
1334
+ #: my-calendar.php:664
1335
  msgid "Posted by"
1336
  msgstr "Publiceret af"
1337
 
1338
+ #: my-calendar.php:710
1339
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1340
+ msgstr "Denne begivenhed er en del af en serie. Du skal melde dig til den første begivenhed i serien for at kunne deltage."
1341
+
1342
+ #: my-calendar.php:1340
1343
  msgid "Month"
1344
  msgstr "Måned"
1345
 
1346
+ #: my-calendar.php:1341
1347
+ #: my-calendar.php:1427
1348
  msgid "January"
1349
  msgstr "Januar"
1350
 
1351
+ #: my-calendar.php:1342
1352
+ #: my-calendar.php:1427
1353
  msgid "February"
1354
  msgstr "Februar"
1355
 
1356
+ #: my-calendar.php:1343
1357
+ #: my-calendar.php:1427
1358
  msgid "March"
1359
  msgstr "Marts"
1360
 
1361
+ #: my-calendar.php:1344
1362
+ #: my-calendar.php:1427
1363
  msgid "April"
1364
  msgstr "April"
1365
 
1366
+ #: my-calendar.php:1345
1367
+ #: my-calendar.php:1427
1368
  msgid "May"
1369
  msgstr "Maj"
1370
 
1371
+ #: my-calendar.php:1346
1372
+ #: my-calendar.php:1427
1373
  msgid "June"
1374
  msgstr "Juni"
1375
 
1376
+ #: my-calendar.php:1347
1377
+ #: my-calendar.php:1427
1378
  msgid "July"
1379
  msgstr "Juli"
1380
 
1381
+ #: my-calendar.php:1348
1382
+ #: my-calendar.php:1427
1383
  msgid "August"
1384
  msgstr "August"
1385
 
1386
+ #: my-calendar.php:1349
1387
+ #: my-calendar.php:1427
1388
  msgid "September"
1389
  msgstr "September"
1390
 
1391
+ #: my-calendar.php:1350
1392
+ #: my-calendar.php:1427
1393
  msgid "October"
1394
  msgstr "Oktober"
1395
 
1396
+ #: my-calendar.php:1351
1397
+ #: my-calendar.php:1427
1398
  msgid "November"
1399
  msgstr "November"
1400
 
1401
+ #: my-calendar.php:1352
1402
+ #: my-calendar.php:1427
1403
  msgid "December"
1404
  msgstr "December"
1405
 
1406
+ #: my-calendar.php:1354
1407
  msgid "Year"
1408
  msgstr "År"
1409
 
1410
+ #: my-calendar.php:1379
1411
  msgid "Go"
1412
  msgstr "Gå"
1413
 
1414
+ #: my-calendar.php:1401
1415
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1416
  msgstr "<abbr title=\"Søndag\">Søn</abbr>"
1417
 
1418
+ #: my-calendar.php:1402
1419
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1420
  msgstr "<abbr title=\"Mandag\">Man</abbr>"
1421
 
1422
+ #: my-calendar.php:1403
1423
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1424
  msgstr "<abbr title=\"Tirsdag\">Tirs</abbr>"
1425
 
1426
+ #: my-calendar.php:1404
1427
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1428
  msgstr "<abbr title=\"Onsdag\">Ons</abbr>"
1429
 
1430
+ #: my-calendar.php:1405
1431
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1432
  msgstr "<abbr title=\"Torsdag\">Tors</abbr>"
1433
 
1434
+ #: my-calendar.php:1406
1435
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1436
  msgstr "<abbr title=\"Fredag\">Fre</abbr>"
1437
 
1438
+ #: my-calendar.php:1407
1439
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1440
  msgstr "<abbr title=\"Lørdag\">Lør</abbr>"
1441
 
1442
+ #: my-calendar.php:1412
1443
  msgid "<abbr title=\"Sunday\">S</abbr>"
1444
  msgstr "<abbr title=\"Søndag\">S</abbr>"
1445
 
1446
+ #: my-calendar.php:1413
1447
  msgid "<abbr title=\"Monday\">M</abbr>"
1448
  msgstr "<abbr title=\"Mandag\">M</abbr>"
1449
 
1450
+ #: my-calendar.php:1414
1451
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1452
  msgstr "<abbr title=\"Tirsdag\">T</abbr>"
1453
 
1454
+ #: my-calendar.php:1415
1455
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1456
  msgstr "<abbr title=\"Onsdag\">O</abbr>"
1457
 
1458
+ #: my-calendar.php:1416
1459
  msgid "<abbr title=\"Thursday\">T</abbr>"
1460
  msgstr "<abbr title=\"Torsdag\">T</abbr>"
1461
 
1462
+ #: my-calendar.php:1417
1463
  msgid "<abbr title=\"Friday\">F</abbr>"
1464
  msgstr "<abbr title=\"Fredag\">F</abbr>"
1465
 
1466
+ #: my-calendar.php:1418
1467
  msgid "<abbr title=\"Saturday\">S</abbr>"
1468
  msgstr "<abbr title=\"Lørdag\">S</abbr>"
1469
 
1470
+ #: my-calendar.php:1464
1471
  msgid "and"
1472
  msgstr "og"
1473
 
1474
+ #: my-calendar.php:1493
1475
+ #: my-calendar.php:1497
1476
  msgid "Calendar"
1477
  msgstr "Calendar"
1478
 
1479
+ #: my-calendar.php:1500
1480
  msgid "Events in"
1481
  msgstr "Begivenheder i"
1482
 
1483
+ #: my-calendar.php:1597
1484
  msgid "There are no events scheduled during this period."
1485
  msgstr "Der er ikke planlagt begivenheder i denne periode."
1486
 
1487
+ #: my-calendar.php:1607
1488
  msgid "Category Key"
1489
  msgstr "Kategorinøgle"
1490
 
1504
  msgid "http://www.joedolson.com"
1505
  msgstr "http://www.joedolson.com"
1506
 
1507
+ #~ msgid "Group this event as a single item"
1508
+ #~ msgstr "Grupper denne begivenhed som en enkeltstående begivenhed"
1509
+
1510
+ #~ msgid "Yes"
1511
+ #~ msgstr "Ja"
1512
+
1513
+ #~ msgid "No"
1514
+ #~ msgstr "Nej"
1515
+
1516
+ #~ msgid "Add New Category"
1517
+ #~ msgstr "Tilføj Ny Kategori"
1518
+
1519
+ #~ msgid ""
1520
+ #~ "An event with the details you submitted could not be found in the "
1521
+ #~ "database. This may indicate a problem with your database or the way in "
1522
+ #~ "which it is configured."
1523
+ #~ msgstr ""
1524
+ #~ "En begivenhed med de angivne detaljer kunne ikke findes i databasen. "
1525
+ #~ "Dette indikerer muligvis et problem med din database eller måden, den er "
1526
+ #~ "konfigureret på."
1527
+
1528
+ #~ msgid "Failure"
1529
+ #~ msgstr "FEJL"
1530
+
1531
+ #~ msgid "You can't update an event if you haven't submitted an event id"
1532
+ #~ msgstr ""
1533
+ #~ "Du kan ikke opdatere en begivenhed, hvis du ikke har sendt et begivenheds-"
1534
+ #~ "id."
my-calendar-de_DE.mo ADDED
Binary file
my-calendar-de_DE.po ADDED
@@ -0,0 +1,1372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin My Calendar 1.4.8 by Joseph C Dolson.
2
+ # Copyright (C) 2010 Joseph C Dolson
3
+ # This file is distributed under the same license as the My Calendar package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: My Calendar 1.4.8\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
10
+ "POT-Creation-Date: 2010-09-05 00:27+0000\n"
11
+ "PO-Revision-Date: 2010-09-07 20:38+0100\n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: Roland P <bohnerwachs@arcor.de>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: deutsch\n"
18
+ "X-Poedit-Country: Deutschland\n"
19
+
20
+ #: my-calendar-categories.php:41
21
+ msgid "Category added successfully"
22
+ msgstr "Kategorie erfolgreich hinzugefügt"
23
+
24
+ #: my-calendar-categories.php:43
25
+ msgid "Category addition failed."
26
+ msgstr "Fehler beim hinzufügen der Kategorie"
27
+
28
+ #: my-calendar-categories.php:53
29
+ msgid "Category deleted successfully. Categories in calendar updated."
30
+ msgstr "Kategorie erfolgreich gelöscht. Kategorien im Kalender aktualisiert"
31
+
32
+ #: my-calendar-categories.php:55
33
+ msgid "Category deleted successfully. Categories in calendar not updated."
34
+ msgstr "Kategorie erfolgreich gelöscht. Kategorien im Kalender nicht aktualisiert."
35
+
36
+ #: my-calendar-categories.php:57
37
+ msgid "Category not deleted. Categories in calendar updated."
38
+ msgstr "Kategorie nicht gelöscht. Kategorien im Kalender aktualisiert"
39
+
40
+ #: my-calendar-categories.php:66
41
+ msgid "Category edited successfully"
42
+ msgstr "Kategorie erfolgreich bearbeited."
43
+
44
+ #: my-calendar-categories.php:88
45
+ #: my-calendar-categories.php:112
46
+ #: my-calendar-categories.php:130
47
+ msgid "Add Category"
48
+ msgstr "Kategorie hinzufügen"
49
+
50
+ #: my-calendar-categories.php:90
51
+ #: my-calendar-categories.php:112
52
+ msgid "Edit Category"
53
+ msgstr "Kategorie editieren"
54
+
55
+ #: my-calendar-categories.php:97
56
+ msgid "Category Editor"
57
+ msgstr "Kategorie Editor"
58
+
59
+ #: my-calendar-categories.php:113
60
+ #: my-calendar-categories.php:156
61
+ msgid "Category Name"
62
+ msgstr "Kategorie Name"
63
+
64
+ #: my-calendar-categories.php:114
65
+ msgid "Category Color (Hex format)"
66
+ msgstr "Kategorie Farbe (Hex Format)"
67
+
68
+ #: my-calendar-categories.php:115
69
+ #: my-calendar-categories.php:158
70
+ msgid "Category Icon"
71
+ msgstr "Kategorie Icon"
72
+
73
+ #: my-calendar-categories.php:130
74
+ #: my-calendar-locations.php:121
75
+ msgid "Save Changes"
76
+ msgstr "Änderungen speichern"
77
+
78
+ #: my-calendar-categories.php:143
79
+ #: my-calendar.php:177
80
+ msgid "Manage Categories"
81
+ msgstr "Kategorien verwalten"
82
+
83
+ #: my-calendar-categories.php:155
84
+ #: my-calendar-event-manager.php:531
85
+ #: my-calendar-locations.php:147
86
+ msgid "ID"
87
+ msgstr "ID"
88
+
89
+ #: my-calendar-categories.php:157
90
+ msgid "Category Color"
91
+ msgstr "Kategorie-Farbe"
92
+
93
+ #: my-calendar-categories.php:159
94
+ #: my-calendar-categories.php:173
95
+ #: my-calendar-event-manager.php:591
96
+ #: my-calendar-locations.php:149
97
+ #: my-calendar-locations.php:161
98
+ msgid "Edit"
99
+ msgstr "Editieren"
100
+
101
+ #: my-calendar-categories.php:160
102
+ #: my-calendar-categories.php:179
103
+ #: my-calendar-event-manager.php:76
104
+ #: my-calendar-event-manager.php:591
105
+ #: my-calendar-locations.php:150
106
+ #: my-calendar-locations.php:162
107
+ msgid "Delete"
108
+ msgstr "Löschen"
109
+
110
+ #: my-calendar-categories.php:176
111
+ #: my-calendar-event-manager.php:572
112
+ #: my-calendar-settings.php:207
113
+ #: my-calendar.php:638
114
+ msgid "N/A"
115
+ msgstr "n/v"
116
+
117
+ #: my-calendar-categories.php:179
118
+ #: my-calendar-locations.php:162
119
+ msgid "Are you sure you want to delete this category?"
120
+ msgstr "Sind sie sicher, dass sie diese Kategorie löschen wollen?"
121
+
122
+ #: my-calendar-categories.php:190
123
+ msgid "There are no categories in the database - something has gone wrong!"
124
+ msgstr "Es sind keine Kategorie in der Datenbank - etwas lief schief!"
125
+
126
+ #: my-calendar-event-manager.php:30
127
+ #: my-calendar-settings.php:298
128
+ msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
129
+ msgstr "My Calender hat erkannt, dass sie das Kalenderplugin von Kieran O'Shea installiert haben - wollen sie diese Events und Kategorien importieren?"
130
+
131
+ #: my-calendar-event-manager.php:36
132
+ #: my-calendar-settings.php:304
133
+ msgid "Import from Calendar"
134
+ msgstr "Importieren von Calender"
135
+
136
+ #: my-calendar-event-manager.php:41
137
+ msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
138
+ msgstr "Trotzdem kann es sein, dass der Import fehlschlägt, dies wird aber keine Auswirkungen auf die existierende Kalender-Datenbank haben. Wenn sie ein Problem gefunden haben, schreiben sie eine eMail an <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
139
+
140
+ #: my-calendar-event-manager.php:71
141
+ msgid "Delete Event"
142
+ msgstr "Event löschen"
143
+
144
+ #: my-calendar-event-manager.php:71
145
+ msgid "Are you sure you want to delete this event?"
146
+ msgstr "Sind sie sicher, dass sie das Event löschen wollen?"
147
+
148
+ #: my-calendar-event-manager.php:84
149
+ msgid "You do not have permission to delete that event."
150
+ msgstr "Sie haben keine Rechte das Event zu löschen!"
151
+
152
+ #: my-calendar-event-manager.php:107
153
+ #: my-calendar-event-manager.php:124
154
+ #: my-calendar-event-manager.php:148
155
+ #: my-calendar-event-manager.php:163
156
+ #: my-calendar-event-manager.php:700
157
+ #: my-calendar-event-manager.php:705
158
+ #: my-calendar-event-manager.php:710
159
+ #: my-calendar-event-manager.php:722
160
+ #: my-calendar-event-manager.php:732
161
+ #: my-calendar-event-manager.php:740
162
+ #: my-calendar-event-manager.php:749
163
+ #: my-calendar-event-manager.php:757
164
+ msgid "Error"
165
+ msgstr "Fehler"
166
+
167
+ #: my-calendar-event-manager.php:107
168
+ msgid "I'm sorry! I couldn'd add that event to the database."
169
+ msgstr "Es ist ein Fehler beim hinzufügen des Events aufgetreten!"
170
+
171
+ #: my-calendar-event-manager.php:109
172
+ msgid "Event added. It will now show in your calendar."
173
+ msgstr "Event hinzugefügt und im Kalender erschienen."
174
+
175
+ #: my-calendar-event-manager.php:124
176
+ msgid "Your event was not updated."
177
+ msgstr "Ihr Event wurde nicht aktualisiert"
178
+
179
+ #: my-calendar-event-manager.php:128
180
+ msgid "Nothing was changed in that update."
181
+ msgstr "In diesem Update gab es keine Änderungen"
182
+
183
+ #: my-calendar-event-manager.php:132
184
+ msgid "Event updated successfully"
185
+ msgstr "Event erfolgreich aktualisert"
186
+
187
+ #: my-calendar-event-manager.php:138
188
+ msgid "You do not have sufficient permissions to edit that event."
189
+ msgstr "Sie haben keine ausreichenden Rechte um das Event zu ändern."
190
+
191
+ #: my-calendar-event-manager.php:148
192
+ msgid "You can't delete an event if you haven't submitted an event id"
193
+ msgstr "Sie können kein Event löschen, wenn sie nicht die event-id eingegeben haben"
194
+
195
+ #: my-calendar-event-manager.php:159
196
+ msgid "Event deleted successfully"
197
+ msgstr "Event erfolgreich gelöscht"
198
+
199
+ #: my-calendar-event-manager.php:163
200
+ msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
201
+ msgstr "Trotz des Versuchts das Event zu löschen befindet es sich noch in der Datenbank, bitte untersuchen sie das Problem"
202
+
203
+ #: my-calendar-event-manager.php:182
204
+ #: my-calendar-event-manager.php:268
205
+ msgid "Edit Event"
206
+ msgstr "Event editieren"
207
+
208
+ #: my-calendar-event-manager.php:186
209
+ #: my-calendar-event-manager.php:195
210
+ msgid "You must provide an event id in order to edit it"
211
+ msgstr "Sie müssen eine event-id angeben um ein Event zu editieren"
212
+
213
+ #: my-calendar-event-manager.php:191
214
+ #: my-calendar-event-manager.php:268
215
+ msgid "Copy Event"
216
+ msgstr "Event kopieren"
217
+
218
+ #: my-calendar-event-manager.php:201
219
+ msgid "Add Event"
220
+ msgstr "Event hinzufügen"
221
+
222
+ #: my-calendar-event-manager.php:206
223
+ msgid "Manage Events"
224
+ msgstr "Events verwalten"
225
+
226
+ #: my-calendar-event-manager.php:240
227
+ msgid "Sorry! That's an invalid event key."
228
+ msgstr "Entschuldigung, das ist ein falscher Event-Schlüssel."
229
+
230
+ #: my-calendar-event-manager.php:245
231
+ msgid "Sorry! We couldn't find an event with that ID."
232
+ msgstr "Entschuldigung, wir konnten mit kein Event mit dieser ID finden."
233
+
234
+ #: my-calendar-event-manager.php:268
235
+ msgid "Add an Event"
236
+ msgstr "Event hinzufügen"
237
+
238
+ #: my-calendar-event-manager.php:277
239
+ msgid "Enter your Event Information"
240
+ msgstr "Geben sie ihre Eventinformationen ein"
241
+
242
+ #: my-calendar-event-manager.php:280
243
+ msgid "Event Title"
244
+ msgstr "Event Titel"
245
+
246
+ #: my-calendar-event-manager.php:284
247
+ msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
248
+ msgstr "Event Beschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
249
+
250
+ #: my-calendar-event-manager.php:289
251
+ msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
252
+ msgstr "Event Kurzbeschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
253
+
254
+ #: my-calendar-event-manager.php:294
255
+ msgid "Event Category"
256
+ msgstr "Event Kategorie"
257
+
258
+ #: my-calendar-event-manager.php:319
259
+ msgid "Event Link (Optional)"
260
+ msgstr "Event Link (optional)"
261
+
262
+ #: my-calendar-event-manager.php:319
263
+ msgid "This link will expire when the event passes."
264
+ msgstr "Dieser Link wird ungültig, wenn das Event vorrüber ist."
265
+
266
+ #: my-calendar-event-manager.php:323
267
+ msgid "Start Date (YYYY-MM-DD)"
268
+ msgstr "Start Datum (JJJJ-MM-TT)"
269
+
270
+ #: my-calendar-event-manager.php:326
271
+ msgid "End Date (YYYY-MM-DD) (Optional)"
272
+ msgstr "End Datum (JJJJ-MM-TT) (optional)"
273
+
274
+ #: my-calendar-event-manager.php:329
275
+ msgid "Time (hh:mm)"
276
+ msgstr "Zeit (ss:mm)"
277
+
278
+ #: my-calendar-event-manager.php:341
279
+ msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
280
+ msgstr "\"optional\": freilassen wenn das Event den ganzen Tag dauert oder es keine bestimmte Zeit hinterlegt werden soll. "
281
+
282
+ #: my-calendar-event-manager.php:341
283
+ msgid "Current time difference from GMT is "
284
+ msgstr "Aktuelle Zeitdifferenz vom GMT ist"
285
+
286
+ #: my-calendar-event-manager.php:341
287
+ msgid " hour(s)"
288
+ msgstr "Stunde(n)"
289
+
290
+ #: my-calendar-event-manager.php:344
291
+ msgid "End Time (hh:mm)"
292
+ msgstr "Endzeit (ss:mm)"
293
+
294
+ #: my-calendar-event-manager.php:355
295
+ msgid "Optional. End times will not be displayed on events where this is not set."
296
+ msgstr "\"optional\": Endzeit wird nicht angezeigt, wenn sie nicht gesetzt ist"
297
+
298
+ #: my-calendar-event-manager.php:360
299
+ msgid "Recurring Events"
300
+ msgstr "Wiederkehrende Events"
301
+
302
+ #: my-calendar-event-manager.php:363
303
+ msgid "Repeats for"
304
+ msgstr "Wiederholen für"
305
+
306
+ #: my-calendar-event-manager.php:364
307
+ msgid "Units"
308
+ msgstr "Einheiten"
309
+
310
+ #: my-calendar-event-manager.php:365
311
+ msgid "Does not recur"
312
+ msgstr "Erscheint nicht"
313
+
314
+ #: my-calendar-event-manager.php:366
315
+ #: my-calendar-event-manager.php:565
316
+ msgid "Daily"
317
+ msgstr "täglich"
318
+
319
+ #: my-calendar-event-manager.php:367
320
+ #: my-calendar-event-manager.php:566
321
+ msgid "Weekly"
322
+ msgstr "wöchentlich"
323
+
324
+ #: my-calendar-event-manager.php:368
325
+ msgid "Bi-weekly"
326
+ msgstr "aller zwei Wochen"
327
+
328
+ #: my-calendar-event-manager.php:369
329
+ #: my-calendar-event-manager.php:568
330
+ msgid "Monthly"
331
+ msgstr "monatlich"
332
+
333
+ #: my-calendar-event-manager.php:370
334
+ msgid "Annually"
335
+ msgstr "jährlich"
336
+
337
+ #: my-calendar-event-manager.php:372
338
+ msgid "Entering 0 means forever, if a unit is selected. If the recurrance unit is left at \"Does not recur,\" the event will not reoccur."
339
+ msgstr "\"0\" meint für immer, wenn eine Einheit ausgewählt ist. Wenn die Einheit auf \"Erscheint nicht\" gesetzt ist, wird das Event nicht wiederholt"
340
+
341
+ #: my-calendar-event-manager.php:375
342
+ msgid "Group this event as a single item"
343
+ msgstr "Dieses Event als einzelne Einheit gruppieren"
344
+
345
+ #: my-calendar-event-manager.php:386
346
+ msgid "Event Registration Status"
347
+ msgstr "Registierungsstatus des Events"
348
+
349
+ #: my-calendar-event-manager.php:388
350
+ msgid "Open"
351
+ msgstr "offen"
352
+
353
+ #: my-calendar-event-manager.php:389
354
+ msgid "Closed"
355
+ msgstr "geschlossen"
356
+
357
+ #: my-calendar-event-manager.php:390
358
+ msgid "Does not apply"
359
+ msgstr "wird nicht angenommen"
360
+
361
+ #: my-calendar-event-manager.php:400
362
+ #: my-calendar-locations.php:81
363
+ msgid "Event Location"
364
+ msgstr "Veranstaltungsort"
365
+
366
+ #: my-calendar-event-manager.php:409
367
+ msgid "Choose a preset location:"
368
+ msgstr "Einen vordefinierten Ort auswählen"
369
+
370
+ #: my-calendar-event-manager.php:423
371
+ msgid "Add recurring locations for later use."
372
+ msgstr "Wiederkehrenden Ort für spätere benutzung hinzufügen"
373
+
374
+ #: my-calendar-event-manager.php:430
375
+ #: my-calendar-locations.php:83
376
+ msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
377
+ msgstr "Alle Felder sind optional (können aber in einem Kartenfehler resultieren)."
378
+
379
+ #: my-calendar-event-manager.php:433
380
+ #: my-calendar-locations.php:86
381
+ msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
382
+ msgstr "Name des Orts"
383
+
384
+ #: my-calendar-event-manager.php:436
385
+ #: my-calendar-locations.php:89
386
+ msgid "Street Address"
387
+ msgstr "Straßenname"
388
+
389
+ #: my-calendar-event-manager.php:439
390
+ #: my-calendar-locations.php:92
391
+ msgid "Street Address (2)"
392
+ msgstr "Straßenname (2)"
393
+
394
+ #: my-calendar-event-manager.php:442
395
+ #: my-calendar-locations.php:95
396
+ msgid "City"
397
+ msgstr "Stadt"
398
+
399
+ #: my-calendar-event-manager.php:442
400
+ #: my-calendar-locations.php:95
401
+ msgid "State/Province"
402
+ msgstr "Bundesland/Provinz"
403
+
404
+ #: my-calendar-event-manager.php:442
405
+ #: my-calendar-locations.php:95
406
+ msgid "Postal Code"
407
+ msgstr "Postleitzahl"
408
+
409
+ #: my-calendar-event-manager.php:445
410
+ #: my-calendar-locations.php:98
411
+ msgid "Country"
412
+ msgstr "Land"
413
+
414
+ #: my-calendar-event-manager.php:448
415
+ #: my-calendar-locations.php:101
416
+ msgid "Initial Zoom"
417
+ msgstr "Zoomstufe"
418
+
419
+ #: my-calendar-event-manager.php:450
420
+ #: my-calendar-locations.php:103
421
+ msgid "Neighborhood"
422
+ msgstr "Nachbarschaft"
423
+
424
+ #: my-calendar-event-manager.php:451
425
+ #: my-calendar-locations.php:104
426
+ msgid "Small City"
427
+ msgstr "Kleinstadt"
428
+
429
+ #: my-calendar-event-manager.php:452
430
+ #: my-calendar-locations.php:105
431
+ msgid "Large City"
432
+ msgstr "Großstadt"
433
+
434
+ #: my-calendar-event-manager.php:453
435
+ #: my-calendar-locations.php:106
436
+ msgid "Greater Metro Area"
437
+ msgstr "Größeres Ballungsgebiet"
438
+
439
+ #: my-calendar-event-manager.php:454
440
+ #: my-calendar-locations.php:107
441
+ msgid "State"
442
+ msgstr "Bundesland"
443
+
444
+ #: my-calendar-event-manager.php:455
445
+ #: my-calendar-locations.php:108
446
+ msgid "Region"
447
+ msgstr "Region"
448
+
449
+ #: my-calendar-event-manager.php:459
450
+ #: my-calendar-locations.php:112
451
+ msgid "GPS Coordinates (optional)"
452
+ msgstr "GPS Koordinaten (optional)"
453
+
454
+ #: my-calendar-event-manager.php:461
455
+ #: my-calendar-locations.php:114
456
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
457
+ msgstr "Wenn Sie GPS Koordinaten eingeben, werden diese statt der Adresse verwendent"
458
+
459
+ #: my-calendar-event-manager.php:464
460
+ #: my-calendar-locations.php:117
461
+ msgid "Longitude"
462
+ msgstr "Länge"
463
+
464
+ #: my-calendar-event-manager.php:464
465
+ #: my-calendar-locations.php:117
466
+ msgid "Latitude"
467
+ msgstr "Breite"
468
+
469
+ #: my-calendar-event-manager.php:472
470
+ msgid "Save Event"
471
+ msgstr "Event speichern"
472
+
473
+ #: my-calendar-event-manager.php:532
474
+ #: my-calendar-widgets.php:37
475
+ #: my-calendar-widgets.php:122
476
+ msgid "Title"
477
+ msgstr "Titel"
478
+
479
+ #: my-calendar-event-manager.php:533
480
+ msgid "Link"
481
+ msgstr "Link"
482
+
483
+ #: my-calendar-event-manager.php:534
484
+ #: my-calendar-locations.php:148
485
+ msgid "Location"
486
+ msgstr "Ort"
487
+
488
+ #: my-calendar-event-manager.php:535
489
+ msgid "Description"
490
+ msgstr "Beschreibung"
491
+
492
+ #: my-calendar-event-manager.php:536
493
+ msgid "Start Date"
494
+ msgstr "Anfangsdatum"
495
+
496
+ #: my-calendar-event-manager.php:537
497
+ msgid "Recurs"
498
+ msgstr "Wiederholungen"
499
+
500
+ #: my-calendar-event-manager.php:538
501
+ #: my-calendar-settings.php:195
502
+ msgid "Author"
503
+ msgstr "Autor"
504
+
505
+ #: my-calendar-event-manager.php:539
506
+ msgid "Category"
507
+ msgstr "Kategorie"
508
+
509
+ #: my-calendar-event-manager.php:540
510
+ msgid "Edit / Delete"
511
+ msgstr "editieren/löschen"
512
+
513
+ #: my-calendar-event-manager.php:564
514
+ msgid "Never"
515
+ msgstr "niemals"
516
+
517
+ #: my-calendar-event-manager.php:567
518
+ msgid "Bi-Weekly"
519
+ msgstr "aller zwei Wochen"
520
+
521
+ #: my-calendar-event-manager.php:569
522
+ msgid "Yearly"
523
+ msgstr "jährlich"
524
+
525
+ #: my-calendar-event-manager.php:573
526
+ msgid "Forever"
527
+ msgstr "für immer"
528
+
529
+ #: my-calendar-event-manager.php:574
530
+ msgid "Times"
531
+ msgstr "Zeiten"
532
+
533
+ #: my-calendar-event-manager.php:589
534
+ msgid "Copy"
535
+ msgstr "kopieren"
536
+
537
+ #: my-calendar-event-manager.php:602
538
+ msgid "There are no events in the database!"
539
+ msgstr "Es sind keine Events in der Datenbank"
540
+
541
+ #: my-calendar-event-manager.php:700
542
+ msgid "Your event end date must be either after or the same as your event begin date"
543
+ msgstr "Das Eventende muss entweder am oder nach dem Startdatum liegen"
544
+
545
+ #: my-calendar-event-manager.php:705
546
+ msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
547
+ msgstr "Die Datumsformatierung ist korrekt aber eine oder mehrere Daten sind ungültig. Überprüfen sie die Anzahl der Tage im Monat oder Fehler auf Grund eines Schaltjahres"
548
+
549
+ #: my-calendar-event-manager.php:710
550
+ msgid "Both start and end dates must be in the format YYYY-MM-DD"
551
+ msgstr "Start und Enddatum muss im Format JJJJ-MM-TT sein (bspw. 2010-11-25)"
552
+
553
+ #: my-calendar-event-manager.php:722
554
+ msgid "The time field must either be blank or be entered in the format hh:mm"
555
+ msgstr "Das Start-Zeitfeld muss endweder frei gelassen werden oder im Format ss-mm eingegeben werden (bspw. 19:50)"
556
+
557
+ #: my-calendar-event-manager.php:732
558
+ msgid "The end time field must either be blank or be entered in the format hh:mm"
559
+ msgstr "Das End-Zeitfeld muss endweder frei gelassen werden oder im Format ss-mm eingegeben werden (bspw. 19:50)"
560
+
561
+ #: my-calendar-event-manager.php:740
562
+ msgid "The URL entered must either be prefixed with http:// or be completely blank"
563
+ msgstr "Die URL muss den Prefix http:// führen (bspw. http://google.de)"
564
+
565
+ #: my-calendar-event-manager.php:749
566
+ msgid "The event title must be between 1 and 255 characters in length."
567
+ msgstr "Der Eventtitel muss zwischen 1 und 255 Zeichen haben"
568
+
569
+ #: my-calendar-event-manager.php:757
570
+ msgid "The repetition value must be 0 unless a type of recurrance is selected."
571
+ msgstr "Die Anzahl der Wiederholungen muss entweder 0 sein oder es muss ein Wiederholungstyp ausgewählt werden"
572
+
573
+ #: my-calendar-help.php:6
574
+ msgid "How to use My Calendar"
575
+ msgstr "Wie My Calender benutzt wird"
576
+
577
+ #: my-calendar-help.php:11
578
+ msgid "Shortcode Syntax"
579
+ msgstr "Shortcode Syntax"
580
+
581
+ #: my-calendar-help.php:14
582
+ msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
583
+ msgstr "Diese Shortcodes können in Artikeln, Seiten oder in Textwidgets verwendet werden."
584
+
585
+ #: my-calendar-help.php:18
586
+ msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
587
+ msgstr "Dieser Shortcodes zeigt den Kalender in Artikeln oder Seiten inklusive aller Kategorien und Kategorie-Schlüssel in einem Monat-für-Monat format an"
588
+
589
+ #: my-calendar-help.php:21
590
+ msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
591
+ msgstr "Der Shortcode unterstützt drei Attribute: <code>category</code>, <code>format</code> and <code>showkey</code>. Es gibt zwei Alternativoptionen für <code>format</code> &mdash; <code>list</code> &mdash; welche den Kalender in einem Listenformat anzeigen und die Daten ohne Event überspringen. Mit <code>mini</code> wird der Kalender in einer kleinen Version angezeigt, passend z.B. für die Sidebar.Das <code>category</code> Attribut braucht endweder den Namen oder die ID einer Eventkategorie. Es zeigt nur Events aus der angegebenen Kategorie. Mehrere Kategorien (Namen oder IDs) können durch das Trennzeichen <code>|</code> angeben werden. Durch das Setzten von <code>showkey</code> zu <code>no</code> werden die Kategorieschlüssel ausgeblendet (nützlich für die Einzelkategorieanzeige)"
592
+
593
+ #: my-calendar-help.php:24
594
+ msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
595
+ msgstr "Dieser Shortcode zeigt den Output des \"Kommende Events Widgets\". Ohne Attribute wird die Anzeige von den Einstellungen des Widgets gesteuert. Die Attribute überschreiben die Widget-Einstellungen. Die <code>before</code> und <code>after</code> Attribute sollten Nummern sein, das <code>type</code> Attribut kann endweder \"event\" or \"days\" sein. Das <code>category</code> Attribut funktioniert genau wie das Attribut des Hauptkalenders. Templates funktionieren mit den unten stehenden Codes."
596
+
597
+ #: my-calendar-help.php:27
598
+ msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
599
+ msgstr "Wie erwartet, dieser Shortcode zeigt den Outpot des Today's Event Widgets mit zwei konfigurierbaren Attributen: category und template"
600
+
601
+ #: my-calendar-help.php:34
602
+ msgid "Category Icons"
603
+ msgstr "Kategorie Icon"
604
+
605
+ #: my-calendar-help.php:37
606
+ msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
607
+ msgstr "My Calender ist designt um mehrere Kalender zu verwalten. Die Basis dieser Kalender sind Kategorien. Sie können einfach eine Kalenderseite erstellen, die alle Kategorien einschließt oder mehre Seiten erstellen und verschiedene Kategorien in jeder anzeigen. Zum Beispiel könnte dies sinnvoll sein, wenn Sie einen Tourkalender für mehre Bands verwalten wollen oder Kalender für mehre Veranstaltungsorte usw."
608
+
609
+ #: my-calendar-help.php:40
610
+ msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
611
+ msgstr "Das vorinstallierte Kategorie Icon ist möglicherweise nicht sinnvoll für ihre Anforderung oder ihre Homepagedesign. Ich nehme an, dass sie ihr eigenes Icon hochladen. Dazu müssen sie das Icon in den \"icon\"-Ordner im \"plugin\"-Verzeichnis hochladen oder sie ersetzten den order \"my-candar-costum\" um das Überschreiben bei Updates zu vermeiden."
612
+
613
+ #: my-calendar-help.php:40
614
+ msgid "Your icons folder is:"
615
+ msgstr "Ihr Icon-Ordnder ist:"
616
+
617
+ #: my-calendar-help.php:40
618
+ msgid "You can alternately place icons in:"
619
+ msgstr "Sie können Icons alternativ ablegen unter:"
620
+
621
+ #: my-calendar-help.php:48
622
+ msgid "Widget Templating"
623
+ msgstr "Widget-Einstellungen"
624
+
625
+ #: my-calendar-help.php:51
626
+ msgid "These codes are available in calendar widgets to create your own custom calendar format."
627
+ msgstr "Diese Codes sind verfügbar im Kalender-Widget um ihr eigenes Kalenderformat zu erstellen"
628
+
629
+ #: my-calendar-help.php:55
630
+ msgid "Displays the name of the category the event is in."
631
+ msgstr "Zeigt den Namen der Kategorie in der das Event ist."
632
+
633
+ #: my-calendar-help.php:58
634
+ msgid "Displays the title of the event."
635
+ msgstr "Zeigt den Titel des Events."
636
+
637
+ #: my-calendar-help.php:61
638
+ msgid "Displays the start time for the event."
639
+ msgstr "Zeigt die Startzeit des Events."
640
+
641
+ #: my-calendar-help.php:64
642
+ msgid "Displays the date on which the event begins."
643
+ msgstr "Zeigt das Startdatum des Events."
644
+
645
+ #: my-calendar-help.php:67
646
+ msgid "Displays the date on which the event ends."
647
+ msgstr "Zeigt das Enddatum des Events."
648
+
649
+ #: my-calendar-help.php:70
650
+ msgid "Displays the time at which the event ends."
651
+ msgstr "Zeigt die Endzeit des Events."
652
+
653
+ #: my-calendar-help.php:73
654
+ msgid "Displays the WordPress author who posted the event."
655
+ msgstr "Zeigt den Wordpress Autor des Events."
656
+
657
+ #: my-calendar-help.php:76
658
+ msgid "Displays the URL provided for the event."
659
+ msgstr "Zeigt die URL im Events."
660
+
661
+ #: my-calendar-help.php:79
662
+ msgid "Displays the description of the event."
663
+ msgstr "Zeigt die Beschreibung des Events."
664
+
665
+ #: my-calendar-help.php:82
666
+ msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
667
+ msgstr "Zeigt den Titel des Events als einen Link wenn eine URL hinterlegt wurde oder nur den Titel, wenn keine URL hinterlegt ist."
668
+
669
+ #: my-calendar-help.php:85
670
+ msgid "Displays the name of the location of the event."
671
+ msgstr "Zeigt den Namen des Veranstaltungsortes des Events."
672
+
673
+ #: my-calendar-help.php:88
674
+ msgid "Displays the first line of the site address."
675
+ msgstr "Zeigt die erste Zeile des Straßenfeldes."
676
+
677
+ #: my-calendar-help.php:91
678
+ msgid "Displays the second line of the site address."
679
+ msgstr "Zeigt die zweite Zeile des Straßenfeldes."
680
+
681
+ #: my-calendar-help.php:94
682
+ msgid "Displays the city for the event."
683
+ msgstr "Zeigt die Stadt des Events"
684
+
685
+ #: my-calendar-help.php:97
686
+ msgid "Displays the state for the event."
687
+ msgstr "Zeigt das Bundesland des Events"
688
+
689
+ #: my-calendar-help.php:100
690
+ msgid "Displays the postcode for the event."
691
+ msgstr "Zeigt die Postleitzahl des Events"
692
+
693
+ #: my-calendar-help.php:103
694
+ msgid "Displays the country for the event location."
695
+ msgstr "Zeigt das Land das Veranstaltungsortes"
696
+
697
+ #: my-calendar-help.php:106
698
+ msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
699
+ msgstr "Zeigt die Eventadresse im <a href=\"http://microformats.org/wiki/hcard\">HCard</a>-Format"
700
+
701
+ #: my-calendar-help.php:109
702
+ msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
703
+ msgstr "Zeigt den Link zu Google Maps für das Event, wenn genügend Informationen hinterlegt sind, sonst bleibt das Feld leer."
704
+
705
+ #: my-calendar-help.php:112
706
+ msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
707
+ msgstr "Zeigt die Text an, ob die Registration geöffnet oder geschlossen ist. "
708
+
709
+ #: my-calendar-help.php:115
710
+ msgid "Displays the short version of the event description."
711
+ msgstr "Zeigt die Kurtversion der Eventbeschreibung"
712
+
713
+ #: my-calendar-locations.php:22
714
+ msgid "Location added successfully"
715
+ msgstr "Ort erfolgreich hinzugefügt"
716
+
717
+ #: my-calendar-locations.php:24
718
+ msgid "Location could not be added to database"
719
+ msgstr "Ort konnte nicht zur Datenbank hinzugefügt werden"
720
+
721
+ #: my-calendar-locations.php:30
722
+ msgid "Location deleted successfully"
723
+ msgstr "Ort erfolgreich gelöscht"
724
+
725
+ #: my-calendar-locations.php:32
726
+ msgid "Location could not be deleted"
727
+ msgstr "Ort konnte nicht gelöscht werden"
728
+
729
+ #: my-calendar-locations.php:43
730
+ msgid "Location could not be edited."
731
+ msgstr "Ort konnte nicht geändert werden"
732
+
733
+ #: my-calendar-locations.php:45
734
+ msgid "Location was not changed."
735
+ msgstr "Ort konnte nicht geladen werden"
736
+
737
+ #: my-calendar-locations.php:47
738
+ msgid "Location edited successfully"
739
+ msgstr "Ort erfolgreich bearbeitet"
740
+
741
+ #: my-calendar-locations.php:59
742
+ msgid "Add New Location"
743
+ msgstr "Neuen Ort hinzufügen"
744
+
745
+ #: my-calendar-locations.php:61
746
+ msgid "Edit Location"
747
+ msgstr "Ort bearbeiten"
748
+
749
+ #: my-calendar-locations.php:66
750
+ msgid "Location Editor"
751
+ msgstr "Orts-Editor"
752
+
753
+ #: my-calendar-locations.php:121
754
+ msgid "Add Location"
755
+ msgstr "Ort hinzufügen"
756
+
757
+ #: my-calendar-locations.php:135
758
+ #: my-calendar.php:178
759
+ msgid "Manage Locations"
760
+ msgstr "Orte verwalten"
761
+
762
+ #: my-calendar-locations.php:170
763
+ msgid "There are no locations in the database yet!"
764
+ msgstr "Bisher sind keine Orte in der Datenbank"
765
+
766
+ #: my-calendar-locations.php:174
767
+ msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
768
+ msgstr "Achtung: Ändern oder Löschen von Orten, die für die Wiederverwendung gespeichert wurden, wird keinen Effekt auf vorher geplante Events haben haben."
769
+
770
+ #: my-calendar-settings.php:67
771
+ msgid "Categories imported successfully."
772
+ msgstr "Kategorie erfolgreich importiert."
773
+
774
+ #: my-calendar-settings.php:69
775
+ msgid "Categories not imported."
776
+ msgstr "Kategorie nicht importiert."
777
+
778
+ #: my-calendar-settings.php:72
779
+ msgid "Events imported successfully."
780
+ msgstr "Events erfolgreich importiert."
781
+
782
+ #: my-calendar-settings.php:74
783
+ msgid "Events not imported."
784
+ msgstr "Events nicht importiert."
785
+
786
+ #: my-calendar-settings.php:153
787
+ msgid "Settings saved"
788
+ msgstr "Einstellungen gespeichert"
789
+
790
+ #: my-calendar-settings.php:179
791
+ msgid "My Calendar Options"
792
+ msgstr "My Calender Optionen"
793
+
794
+ #: my-calendar-settings.php:186
795
+ msgid "Calendar Settings"
796
+ msgstr "Kalender-Einstellungen"
797
+
798
+ #: my-calendar-settings.php:190
799
+ msgid "Calendar Options: Management"
800
+ msgstr "Kalender Optionen: Management"
801
+
802
+ #: my-calendar-settings.php:192
803
+ msgid "Choose the lowest user group that may manage events"
804
+ msgstr "Wählen sie die niedrigste Benutzergruppe, die Events bearbeiten kann"
805
+
806
+ #: my-calendar-settings.php:193
807
+ msgid "Subscriber"
808
+ msgstr "Abonnent"
809
+
810
+ #: my-calendar-settings.php:194
811
+ msgid "Contributor"
812
+ msgstr "Mitarbeiter"
813
+
814
+ #: my-calendar-settings.php:196
815
+ msgid "Editor"
816
+ msgstr "Redakteur"
817
+
818
+ #: my-calendar-settings.php:197
819
+ msgid "Administrator"
820
+ msgstr "Administrator"
821
+
822
+ #: my-calendar-settings.php:202
823
+ msgid "Calendar Options: Customize Text"
824
+ msgstr "Kalender-Optionen: Text anpassen"
825
+
826
+ #: my-calendar-settings.php:204
827
+ msgid "Show Heading for Calendar"
828
+ msgstr "Zeige Überschrift des Kalenders"
829
+
830
+ #: my-calendar-settings.php:207
831
+ msgid "Label for events without a specific time"
832
+ msgstr "Beschriftung für Events mit unbestimmter Zeit"
833
+
834
+ #: my-calendar-settings.php:210
835
+ msgid "Previous events link text"
836
+ msgstr "Vorherige Events Text"
837
+
838
+ #: my-calendar-settings.php:210
839
+ msgid "Previous Events"
840
+ msgstr "Vorherige Events"
841
+
842
+ #: my-calendar-settings.php:213
843
+ msgid "Next events link text"
844
+ msgstr "Kommende Events Text"
845
+
846
+ #: my-calendar-settings.php:213
847
+ msgid "Next Events"
848
+ msgstr "Kommende Events"
849
+
850
+ #: my-calendar-settings.php:216
851
+ msgid "Text when events are open"
852
+ msgstr "Text für offene Events"
853
+
854
+ #: my-calendar-settings.php:216
855
+ msgid "Registration is open"
856
+ msgstr "Registrierung geöffnet"
857
+
858
+ #: my-calendar-settings.php:219
859
+ msgid "Text when events are closed"
860
+ msgstr "Text für geschlossene Events"
861
+
862
+ #: my-calendar-settings.php:219
863
+ msgid "Registration is closed"
864
+ msgstr "Registrierung geschlossen"
865
+
866
+ #: my-calendar-settings.php:222
867
+ msgid "Additional caption text"
868
+ msgstr "Zusätzlicher Beschriftungstext"
869
+
870
+ #: my-calendar-settings.php:222
871
+ msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
872
+ msgstr "Die Kalender Beschriftung ist der Text, der die den Angezeigten Monat und das Jahr endweder in der Listen-/ oder der Kalenderansicht beinhaltet. Der Text wird nach dem existierenden Text angezeigt."
873
+
874
+ #: my-calendar-settings.php:226
875
+ msgid "Calendar Options: Output"
876
+ msgstr "Kalender-Optionen: Ausgabe"
877
+
878
+ #: my-calendar-settings.php:228
879
+ msgid "In list mode, show how many months of events at a time:"
880
+ msgstr "Im Listenmodus wie viele Monate auf einmal:"
881
+
882
+ #: my-calendar-settings.php:231
883
+ msgid "Date format in list mode"
884
+ msgstr "Datumsvormat im Listenmodus"
885
+
886
+ #: my-calendar-settings.php:232
887
+ msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
888
+ msgstr "Datumsvormat benutzt den gleichen Syntax wie die<a href=\"http://php.net/date\">PHP <code>date()</code> Funktion</a>. Optionen speichern um das Beispiel zu updaten."
889
+
890
+ #: my-calendar-settings.php:235
891
+ msgid "Do you want to display the author name on events?"
892
+ msgstr "Wollen sie den Autor eines Events anzeigen?"
893
+
894
+ #: my-calendar-settings.php:238
895
+ msgid "Display a jumpbox for changing month and year quickly?"
896
+ msgstr "Eine Auswahlliste für die Wahl des Monats/Jahres anzeigen?"
897
+
898
+ #: my-calendar-settings.php:242
899
+ msgid "Hide category icons in output"
900
+ msgstr "Kategorien Icons verstecken"
901
+
902
+ #: my-calendar-settings.php:245
903
+ msgid "Show Link to Google Map (when sufficient address information is available.)"
904
+ msgstr "Zeige einen Link zu Google Maps (wenn genügend Informationen hinterlegt sind)."
905
+
906
+ #: my-calendar-settings.php:248
907
+ msgid "Show Event Address in Details"
908
+ msgstr "Zeige Veranstaltungsort im Detail"
909
+
910
+ #: my-calendar-settings.php:251
911
+ msgid "Show short description field on calendar."
912
+ msgstr "Zeige das Kurzbeschreibungsfeld im Kalender"
913
+
914
+ #: my-calendar-settings.php:254
915
+ msgid "Show full description field on calendar."
916
+ msgstr "Zeige die das Komplettbeschreibungsfeld im Kalender"
917
+
918
+ #: my-calendar-settings.php:257
919
+ msgid "Links associated with events will automatically expire after the event has passed."
920
+ msgstr "Links, die mit einem Event verbunden sind, werden nach dem Ende des Events automatisch gelöscht."
921
+
922
+ #: my-calendar-settings.php:260
923
+ msgid "Show current availability status of events."
924
+ msgstr "Zeige aktuellen Verfügbarkeitsstatus von Events"
925
+
926
+ #: my-calendar-settings.php:264
927
+ msgid "Calendar Options: Input"
928
+ msgstr "Kalender-Optionen: Eingabe"
929
+
930
+ #: my-calendar-settings.php:267
931
+ msgid "Show Event Location Dropdown Menu"
932
+ msgstr "Zeige Veranstaltungsort Auswahlliste"
933
+
934
+ #: my-calendar-settings.php:267
935
+ msgid "Show Event Short Description field"
936
+ msgstr "Zeige Event Kurzbeschreibungsfeld"
937
+
938
+ #: my-calendar-settings.php:267
939
+ msgid "Show Event Description Field"
940
+ msgstr "Zeige Event Beschreibungsfeld"
941
+
942
+ #: my-calendar-settings.php:267
943
+ msgid "Show Event Category field"
944
+ msgstr "Zeige Event Kategorienfeld"
945
+
946
+ #: my-calendar-settings.php:267
947
+ msgid "Show Event Link field"
948
+ msgstr "Zeige Event Link-Feld"
949
+
950
+ #: my-calendar-settings.php:267
951
+ msgid "Show Event Recurrance Options"
952
+ msgstr "Zeige Event Wiederholungsoptionen"
953
+
954
+ #: my-calendar-settings.php:267
955
+ msgid "Show event registration options"
956
+ msgstr "Zeige Event Registierungsoptionen"
957
+
958
+ #: my-calendar-settings.php:267
959
+ msgid "Show event location fields"
960
+ msgstr "Zeige Veranstaltungsort-Felder"
961
+
962
+ #: my-calendar-settings.php:276
963
+ msgid "Administrators see all input options"
964
+ msgstr "Administratoren sehen alle Eingabefelder"
965
+
966
+ #: my-calendar-settings.php:280
967
+ msgid "Calendar Options: Style"
968
+ msgstr "Kalender-Optionen: Style"
969
+
970
+ #: my-calendar-settings.php:282
971
+ msgid "Default usage of category colors."
972
+ msgstr "Standartbenutzung von Kategoriefarben"
973
+
974
+ #: my-calendar-settings.php:283
975
+ msgid "Apply category colors to event titles as a font color."
976
+ msgstr "Kategoriefarben zu Eventtiteln als Textfarbe zuweisen"
977
+
978
+ #: my-calendar-settings.php:284
979
+ msgid "Apply category colors to event titles as a background color."
980
+ msgstr "Kategoriefarben zu Eventtiteln als Hintergrundfarbe zuweisen"
981
+
982
+ #: my-calendar-settings.php:288
983
+ msgid "Save Settings"
984
+ msgstr "Einstellungen speichern"
985
+
986
+ #: my-calendar-styles.php:46
987
+ msgid "Style Settings saved"
988
+ msgstr "Style-Einstellungen gespeichert"
989
+
990
+ #: my-calendar-styles.php:70
991
+ msgid "My Calendar Styles"
992
+ msgstr "My Calendar Styles"
993
+
994
+ #: my-calendar-styles.php:74
995
+ msgid "Calendar Style Settings"
996
+ msgstr "Kalender Style-Einstellungen"
997
+
998
+ #: my-calendar-styles.php:78
999
+ msgid "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
1000
+ msgstr "Zeige CSS &amp; JavaScript nur auf folgenden Seiten (durch Kommas getrennte Seiten-IDs)"
1001
+
1002
+ #: my-calendar-styles.php:81
1003
+ msgid "CSS Style Options"
1004
+ msgstr "CSS Style-Optionen"
1005
+
1006
+ #: my-calendar-styles.php:83
1007
+ msgid "Reset the My Calendar stylesheet to the default"
1008
+ msgstr "My Calendar Style-Einstellungen zurücksetzten"
1009
+
1010
+ #: my-calendar-styles.php:83
1011
+ msgid "Disable My Calendar Stylesheet"
1012
+ msgstr "Die My Calendar Styledatei deaktivieren"
1013
+
1014
+ #: my-calendar-styles.php:86
1015
+ msgid "Edit the stylesheet for My Calendar"
1016
+ msgstr "Die My Calendar Styledatei bearbeiten"
1017
+
1018
+ #: my-calendar-styles.php:89
1019
+ #: my-calendar-styles.php:101
1020
+ #: my-calendar-styles.php:113
1021
+ #: my-calendar-styles.php:125
1022
+ msgid "Save"
1023
+ msgstr "Speichern"
1024
+
1025
+ #: my-calendar-styles.php:93
1026
+ msgid "Calendar Behaviors: Calendar View"
1027
+ msgstr "Kalenderverhalten: Kalenderansicht"
1028
+
1029
+ #: my-calendar-styles.php:95
1030
+ msgid "Reset the My Calendar Calendar Javascript"
1031
+ msgstr "Im Kalenderformat JavaScript zurücksetzten"
1032
+
1033
+ #: my-calendar-styles.php:95
1034
+ msgid "Disable Calendar Javascript Effects"
1035
+ msgstr "Im Kalenderformat JavaScript Effekte deaktivieren"
1036
+
1037
+ #: my-calendar-styles.php:98
1038
+ msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1039
+ msgstr "jQuery Scripte für My Calendar im Kalenderformat"
1040
+
1041
+ #: my-calendar-styles.php:105
1042
+ msgid "Calendar Behaviors: List View"
1043
+ msgstr "Kalenderverhalten: Listenansicht"
1044
+
1045
+ #: my-calendar-styles.php:107
1046
+ msgid "Reset the My Calendar List Javascript"
1047
+ msgstr "My Calendar My Calendar-Listen zurücksetzten"
1048
+
1049
+ #: my-calendar-styles.php:107
1050
+ msgid "Disable List Javascript Effects"
1051
+ msgstr "JavaScript Effekte in der Listenansicht deaktivieren"
1052
+
1053
+ #: my-calendar-styles.php:110
1054
+ msgid "Edit the jQuery scripts for My Calendar in List format"
1055
+ msgstr "jQuery Scripte für My Calendar in der Listenansicht editieren"
1056
+
1057
+ #: my-calendar-styles.php:117
1058
+ msgid "Calendar Behaviors: Mini Calendar View"
1059
+ msgstr "Kalenderverhalten: Mini Kalender Ansicht"
1060
+
1061
+ #: my-calendar-styles.php:119
1062
+ msgid "Reset the My Calendar Mini Format Javascript"
1063
+ msgstr "In der Minikalenderansicht JavaScript zurücksetzten"
1064
+
1065
+ #: my-calendar-styles.php:119
1066
+ msgid "Disable Mini Javascript Effects"
1067
+ msgstr "In der Minikalenderansicht JavaScript Effekte deaktivieren"
1068
+
1069
+ #: my-calendar-styles.php:122
1070
+ msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1071
+ msgstr "jQuery Scripte für die Miniansicht editieren"
1072
+
1073
+ #: my-calendar-upgrade-db.php:19
1074
+ msgid "The My Calendar database needs to be updated."
1075
+ msgstr "Die My Calendar Datenbank muss aktualisiert werden."
1076
+
1077
+ #: my-calendar-upgrade-db.php:20
1078
+ #: my-calendar-upgrade-db.php:34
1079
+ msgid "Update now"
1080
+ msgstr "jetzt updaten"
1081
+
1082
+ #: my-calendar-upgrade-db.php:33
1083
+ msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
1084
+ msgstr "Sie haben keine Events eingegeben. My Calendar kann daher nicht sagen, ob ihre Datenbank aktuell ist. Wenn sie keine Events eintragen können, upgraden sie ihre Datenbank!"
1085
+
1086
+ #: my-calendar-upgrade-db.php:44
1087
+ msgid "My Calendar Database is updated."
1088
+ msgstr "My Calendar Datenbank ist geupdated."
1089
+
1090
+ #: my-calendar-widgets.php:11
1091
+ #: my-calendar-widgets.php:51
1092
+ #: my-calendar-widgets.php:52
1093
+ msgid "Today's Events"
1094
+ msgstr "Heutige Events"
1095
+
1096
+ #: my-calendar-widgets.php:41
1097
+ #: my-calendar-widgets.php:126
1098
+ msgid "Template"
1099
+ msgstr "Template"
1100
+
1101
+ #: my-calendar-widgets.php:45
1102
+ msgid "Show this text if there are no events today:"
1103
+ msgstr "Zeige diesen Text, wenn heute keine Events stattfinden:"
1104
+
1105
+ #: my-calendar-widgets.php:65
1106
+ #: my-calendar-widgets.php:152
1107
+ #: my-calendar-widgets.php:153
1108
+ msgid "Upcoming Events"
1109
+ msgstr "Kommende Events"
1110
+
1111
+ #: my-calendar-widgets.php:130
1112
+ msgid "Widget Options"
1113
+ msgstr "Widget Optionen"
1114
+
1115
+ #: my-calendar-widgets.php:132
1116
+ msgid "Display upcoming events by:"
1117
+ msgstr "Zeige kommende Events:"
1118
+
1119
+ #: my-calendar-widgets.php:133
1120
+ msgid "Events (e.g. 2 past, 3 future)"
1121
+ msgstr "Events (z.B. 2 in der Vergangenheit, 3 in der Zukunft)"
1122
+
1123
+ #: my-calendar-widgets.php:134
1124
+ msgid "Dates (e.g. 4 days past, 5 forward)"
1125
+ msgstr "Daten (z.B. vor 4 Tagen in 5 Tagen)"
1126
+
1127
+ #: my-calendar-widgets.php:138
1128
+ msgid "events into the future;"
1129
+ msgstr "Events in der Zukunft"
1130
+
1131
+ #: my-calendar-widgets.php:139
1132
+ msgid "events from the past"
1133
+ msgstr "Events in der Vergangenheit"
1134
+
1135
+ #: my-calendar-widgets.php:142
1136
+ msgid "days into the future;"
1137
+ msgstr "Tage in der Zukunft"
1138
+
1139
+ #: my-calendar-widgets.php:143
1140
+ msgid "days from the past"
1141
+ msgstr "Tage in der Vergangenheit"
1142
+
1143
+ #: my-calendar-widgets.php:146
1144
+ msgid "Show only this category:"
1145
+ msgstr "Zeige nur diese Kategorie:"
1146
+
1147
+ #: my-calendar-widgets.php:272
1148
+ msgid "There are no events currently scheduled."
1149
+ msgstr "Im moment sind keine Events geplant."
1150
+
1151
+ #: my-calendar.php:56
1152
+ #: my-calendar.php:179
1153
+ msgid "Settings"
1154
+ msgstr "Einstellungen"
1155
+
1156
+ #: my-calendar.php:57
1157
+ #: my-calendar.php:181
1158
+ msgid "Help"
1159
+ msgstr "Hilfe"
1160
+
1161
+ #: my-calendar.php:82
1162
+ msgid "Get Support"
1163
+ msgstr "Support bekommen"
1164
+
1165
+ #: my-calendar.php:83
1166
+ #: my-calendar.php:181
1167
+ msgid "My Calendar Help"
1168
+ msgstr "My Calendar Hilfe"
1169
+
1170
+ #: my-calendar.php:84
1171
+ msgid "Make a Donation"
1172
+ msgstr "Spenden"
1173
+
1174
+ #. #-#-#-#-# plugin.pot (My Calendar 1.4.8) #-#-#-#-#
1175
+ #. Plugin Name of the plugin/theme
1176
+ #: my-calendar.php:170
1177
+ msgid "My Calendar"
1178
+ msgstr "My Calendar"
1179
+
1180
+ #: my-calendar.php:173
1181
+ msgid "Add/Edit Events"
1182
+ msgstr "Events hinzufügen/editieren"
1183
+
1184
+ #: my-calendar.php:180
1185
+ msgid "Style Editor"
1186
+ msgstr "Style Editor"
1187
+
1188
+ #: my-calendar.php:619
1189
+ msgid "Event Details"
1190
+ msgstr "Event Details"
1191
+
1192
+ #: my-calendar.php:628
1193
+ msgid "Close"
1194
+ msgstr "geschlossen"
1195
+
1196
+ #: my-calendar.php:638
1197
+ msgid "Not Applicable"
1198
+ msgstr "entfällt"
1199
+
1200
+ #: my-calendar.php:650
1201
+ msgid "Posted by"
1202
+ msgstr "Verfasst von:"
1203
+
1204
+ #: my-calendar.php:696
1205
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1206
+ msgstr "Dieses Veranstaltung ist Teil einer Serie. Sie müssen sich für das erste Event anmelden, um teilzunehmen."
1207
+
1208
+ #: my-calendar.php:1199
1209
+ msgid "Month"
1210
+ msgstr "Monat"
1211
+
1212
+ #: my-calendar.php:1200
1213
+ #: my-calendar.php:1286
1214
+ msgid "January"
1215
+ msgstr "Januar"
1216
+
1217
+ #: my-calendar.php:1201
1218
+ #: my-calendar.php:1286
1219
+ msgid "February"
1220
+ msgstr "Februar"
1221
+
1222
+ #: my-calendar.php:1202
1223
+ #: my-calendar.php:1286
1224
+ msgid "March"
1225
+ msgstr "März"
1226
+
1227
+ #: my-calendar.php:1203
1228
+ #: my-calendar.php:1286
1229
+ msgid "April"
1230
+ msgstr "April"
1231
+
1232
+ #: my-calendar.php:1204
1233
+ #: my-calendar.php:1286
1234
+ msgid "May"
1235
+ msgstr "Mai"
1236
+
1237
+ #: my-calendar.php:1205
1238
+ #: my-calendar.php:1286
1239
+ msgid "June"
1240
+ msgstr "Juni"
1241
+
1242
+ #: my-calendar.php:1206
1243
+ #: my-calendar.php:1286
1244
+ msgid "July"
1245
+ msgstr "Juli"
1246
+
1247
+ #: my-calendar.php:1207
1248
+ #: my-calendar.php:1286
1249
+ msgid "August"
1250
+ msgstr "August"
1251
+
1252
+ #: my-calendar.php:1208
1253
+ #: my-calendar.php:1286
1254
+ msgid "September"
1255
+ msgstr "September"
1256
+
1257
+ #: my-calendar.php:1209
1258
+ #: my-calendar.php:1286
1259
+ msgid "October"
1260
+ msgstr "Oktober"
1261
+
1262
+ #: my-calendar.php:1210
1263
+ #: my-calendar.php:1286
1264
+ msgid "November"
1265
+ msgstr "November"
1266
+
1267
+ #: my-calendar.php:1211
1268
+ #: my-calendar.php:1286
1269
+ msgid "December"
1270
+ msgstr "Dezember"
1271
+
1272
+ #: my-calendar.php:1213
1273
+ msgid "Year"
1274
+ msgstr "Jahr"
1275
+
1276
+ #: my-calendar.php:1238
1277
+ msgid "Go"
1278
+ msgstr "los"
1279
+
1280
+ #: my-calendar.php:1260
1281
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1282
+ msgstr "<abbr title=\"Sonntag\">So</abbr>"
1283
+
1284
+ #: my-calendar.php:1261
1285
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1286
+ msgstr "<abbr title=\"Montag\">Mo</abbr>"
1287
+
1288
+ #: my-calendar.php:1262
1289
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1290
+ msgstr "<abbr title=\"Dienstag\">Di</abbr>"
1291
+
1292
+ #: my-calendar.php:1263
1293
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1294
+ msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
1295
+
1296
+ #: my-calendar.php:1264
1297
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1298
+ msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
1299
+
1300
+ #: my-calendar.php:1265
1301
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1302
+ msgstr "<abbr title=\"Freitag\">Fr</abbr>"
1303
+
1304
+ #: my-calendar.php:1266
1305
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
1306
+ msgstr "<abbr title=\"Samstag\">Sa</abbr>"
1307
+
1308
+ #: my-calendar.php:1271
1309
+ msgid "<abbr title=\"Sunday\">S</abbr>"
1310
+ msgstr "<abbr title=\"Sonntag\">So</abbr>"
1311
+
1312
+ #: my-calendar.php:1272
1313
+ msgid "<abbr title=\"Monday\">M</abbr>"
1314
+ msgstr "<abbr title=\"Montag\">M</abbr>"
1315
+
1316
+ #: my-calendar.php:1273
1317
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1318
+ msgstr "<abbr title=\"Dienstag\">M</abbr>"
1319
+
1320
+ #: my-calendar.php:1274
1321
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1322
+ msgstr "<abbr title=\"Mittwoch\">M</abbr>"
1323
+
1324
+ #: my-calendar.php:1275
1325
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1326
+ msgstr "<abbr title=\"Donnerstag\">D</abbr>"
1327
+
1328
+ #: my-calendar.php:1276
1329
+ msgid "<abbr title=\"Friday\">F</abbr>"
1330
+ msgstr "<abbr title=\"Freitag\">F</abbr>"
1331
+
1332
+ #: my-calendar.php:1277
1333
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1334
+ msgstr "<abbr title=\"Samstag\">Sa</abbr>"
1335
+
1336
+ #: my-calendar.php:1323
1337
+ msgid "and"
1338
+ msgstr "und"
1339
+
1340
+ #: my-calendar.php:1352
1341
+ #: my-calendar.php:1356
1342
+ msgid "Calendar"
1343
+ msgstr "Kalender"
1344
+
1345
+ #: my-calendar.php:1359
1346
+ msgid "Events in"
1347
+ msgstr "Events in"
1348
+
1349
+ #: my-calendar.php:1456
1350
+ msgid "There are no events scheduled during this period."
1351
+ msgstr "In dieser Periode sind keine Events geplant"
1352
+
1353
+ #: my-calendar.php:1466
1354
+ msgid "Category Key"
1355
+ msgstr "Kategorie-Schlüssel"
1356
+
1357
+ #. Plugin URI of the plugin/theme
1358
+ msgid "http://www.joedolson.com/articles/my-calendar/"
1359
+ msgstr ""
1360
+
1361
+ #. Description of the plugin/theme
1362
+ msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
1363
+ msgstr "Wordpress Kalenderplugin welches Events für mehre Kalender auf Seiten, in Artikeln, Beiträgen oder in Widgets anzeigt."
1364
+
1365
+ #. Author of the plugin/theme
1366
+ msgid "Joseph C Dolson"
1367
+ msgstr ""
1368
+
1369
+ #. Author URI of the plugin/theme
1370
+ msgid "http://www.joedolson.com"
1371
+ msgstr ""
1372
+
my-calendar-event-manager.php CHANGED
@@ -1,6 +1,22 @@
1
  <?php
2
- // The actual function called to render the manage events page and
3
- // to deal with posts
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  function edit_my_calendar() {
5
  global $current_user, $wpdb, $users_entries;
6
 
@@ -35,6 +51,10 @@ if ($_GET['mode'] == 'edit') {
35
  $action = "edit";
36
  $event_id = (int) $_GET['event_id'];
37
  }
 
 
 
 
38
 
39
  // Lets see if this is first run and create us a table if it is!
40
  check_my_calendar();
@@ -64,36 +84,65 @@ if ($_GET['mode'] == 'delete') {
64
  }
65
  }
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  if ( isset( $_POST['action'] ) ) {
68
  $proceed = false;
69
  // Deal with adding an event to the database
70
- $event_author = (int) ($action == 'add')?($current_user->ID):($_POST['event_author']);
71
 
72
  $output = mc_check_data($action,$_POST);
73
  $proceed = $output[0];
74
  // end data checking and gathering
75
- if ( $action == 'add' && $proceed == true ) {
76
  $add = $output[2];
77
- $formats = array('%s','%s','%s','%s','%s','%s','%d','%d','%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d','%f','%f','%d');
78
  $result = $wpdb->insert(
79
  MY_CALENDAR_TABLE,
80
  $add,
81
  $formats
82
  );
83
- if ( !$result ) {
84
- ?>
85
- <div class="error"><p><strong><?php _e('Error','my-calendar'); ?>:</strong> <?php _e('I\'m sorry! I couldn\'d add that event to the database.','my-calendar'); ?></p></div>
86
- <?php
87
- } else {
88
- ?>
89
- <div class="updated"><p><?php _e('Event added. It will now show in your calendar.','my-calendar'); ?></p></div>
90
- <?php
91
- }
92
  }
93
  if ( $action == 'edit' && $proceed == true ) {
94
  if ( mc_can_edit_event( $event_author ) ) {
95
  $update = $output[2];
96
- $formats = array('%s','%s','%s','%s','%s','%s','%d','%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d','%f','%f','%d');
97
  $result = $wpdb->update(
98
  MY_CALENDAR_TABLE,
99
  $update,
@@ -112,7 +161,7 @@ $proceed = $output[0];
112
  ?>
113
  <div class="updated"><p><?php _e('Event updated successfully','my-calendar'); ?></p></div>
114
  <?php
115
- }
116
  } else {
117
  ?>
118
  <div class="error">
@@ -147,8 +196,36 @@ $proceed = $output[0];
147
  }
148
  }
149
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  // Now follows a little bit of code that pulls in the main
153
  // components of this page; the edit form and the list of events
154
  ?>
@@ -158,7 +235,7 @@ $proceed = $output[0];
158
  my_calendar_check_db();
159
  ?>
160
  <?php
161
- if ( $action == 'edit' || ($action == 'edit' && $error_with_saving == 1)) {
162
  ?>
163
  <h2><?php _e('Edit Event','my-calendar'); ?></h2>
164
  <?php jd_show_support_box(); ?>
@@ -168,15 +245,30 @@ my_calendar_check_db();
168
  } else {
169
  jd_events_edit_form('edit', $event_id);
170
  }
 
 
 
 
 
 
 
 
 
171
  } else {
172
- ?>
173
  <h2><?php _e('Add Event','my-calendar'); ?></h2>
174
  <?php jd_show_support_box(); ?>
175
 
176
  <?php jd_events_edit_form(); ?>
177
 
178
  <h2><?php _e('Manage Events','my-calendar'); ?></h2>
179
-
 
 
 
 
 
 
180
  <?php
181
 
182
  if ( isset( $_GET['sort'] ) ) {
@@ -194,11 +286,22 @@ my_calendar_check_db();
194
  } else {
195
  $sortdir = 'default';
196
  }
197
- jd_events_display_list($sortby,$sortdir);
 
 
 
 
 
 
 
 
 
 
 
 
198
  }
199
  ?>
200
  </div>
201
-
202
  <?php
203
  }
204
 
@@ -229,12 +332,26 @@ function jd_events_edit_form($mode='add', $event_id=false) {
229
  }
230
  global $user_ID;
231
  get_currentuserinfo();
 
 
 
 
232
  ?>
233
 
234
  <div id="poststuff" class="jd-my-calendar">
235
  <div class="postbox">
236
- <h3><?php if ($mode == "add") { _e('Add an Event','my-calendar'); } else { _e('Edit Event'); } ?></h3>
237
  <div class="inside">
 
 
 
 
 
 
 
 
 
 
238
  <form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar">
239
  <div>
240
  <input type="hidden" name="action" value="<?php echo $mode; ?>" />
@@ -245,10 +362,32 @@ function jd_events_edit_form($mode='add', $event_id=false) {
245
  <legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
246
  <p>
247
  <label for="event_title"><?php _e('Event Title','my-calendar'); ?></label> <input type="text" id="event_title" name="event_title" class="input" size="60" value="<?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_title)); ?>" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  </p>
 
 
249
  <p>
250
- <label for="event_desc"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><textarea id="event_desc" name="event_desc" class="input" rows="5" cols="50"><?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_desc)); ?></textarea>
251
  </p>
 
 
252
  <p>
253
  <label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
254
  <select id="event_category" name="event_category">
@@ -266,11 +405,18 @@ function jd_events_edit_form($mode='add', $event_id=false) {
266
  echo '>'.$cat->category_name.'</option>';
267
  }
268
  ?>
269
- </select>
270
  </p>
 
 
 
 
 
 
271
  <p>
272
  <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( !empty($data) ) echo htmlspecialchars($data->event_link); ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( !empty($data) && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('This link will expire when the event passes.','my-calendar'); ?></label>
273
  </p>
 
274
  <p>
275
  <label for="event_begin"><?php _e('Start Date (YYYY-MM-DD)','my-calendar'); ?></label> <input type="text" id="event_begin" name="event_begin" class="calendar_input" size="12" value="<?php if ( !empty($data) ) { echo htmlspecialchars($data->event_begin);} else {echo date_i18n("Y-m-d");} ?>" />
276
  </p>
@@ -294,7 +440,7 @@ function jd_events_edit_form($mode='add', $event_id=false) {
294
  </p>
295
  <p>
296
  <label for="event_endtime"><?php _e('End Time (hh:mm)','my-calendar'); ?></label> <input type="text" id="event_endtime" name="event_endtime" class="input" size="12"
297
- value="<?php
298
  if ( !empty($data) ) {
299
  if ($data->event_endtime == "00:00:00") {
300
  echo '';
@@ -303,50 +449,57 @@ function jd_events_edit_form($mode='add', $event_id=false) {
303
  }
304
  } else {
305
  echo '';
306
- }
307
- ?>" /> <?php _e('Optional. End times will not be displayed on events where this is not set.','my-calendar'); ?>
308
  </p>
309
  </fieldset>
 
310
  <fieldset>
311
- <legend><?php _e('Recurring Events','my-calendar'); ?></legend> <?php
312
- if ($data->event_repeats != NULL) {
313
- $repeats = $data->event_repeats;
314
- } else {
315
- $repeats = 0;
316
- }
317
- if ($data->event_recur == "S") {
318
- $selected_s = 'selected="selected"';
319
- } else if ($data->event_recur == "D") {
320
- $selected_d = 'selected="selected"';
321
- } else if ($data->event_recur == "W") {
322
- $selected_w = 'selected="selected"';
323
- } else if ($data->event_recur == "B") {
324
- $selected_b = 'selected="selected"';
325
- } else if ($data->event_recur == "M") {
326
- $selected_m = 'selected="selected"';
327
- } else if ($data->event_recur == "Y") {
328
- $selected_y = 'selected="selected"';
329
- }
330
- ?>
331
  <p>
332
  <label for="event_repeats"><?php _e('Repeats for','my-calendar'); ?></label> <input type="text" name="event_repeats" id="event_repeats" class="input" size="1" value="<?php echo $repeats; ?>" />
333
  <label for="event_recur"><?php _e('Units','my-calendar'); ?></label> <select name="event_recur" class="input" id="event_recur">
334
- <option class="input" <?php echo $selected_s; ?> value="S"><?php _e('Does not recur','my-calendar'); ?></option>
335
- <option class="input" <?php echo $selected_d; ?> value="D"><?php _e('Daily','my-calendar'); ?></option>
336
- <option class="input" <?php echo $selected_w; ?> value="W"><?php _e('Weekly','my-calendar'); ?></option>
337
- <option class="input" <?php echo $selected_b; ?> value="B"><?php _e('Bi-weekly','my-calendar'); ?></option>
338
- <option class="input" <?php echo $selected_m; ?> value="M"><?php _e('Monthly','my-calendar'); ?></option>
339
- <option class="input" <?php echo $selected_y; ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
 
340
  </select><br />
341
- <?php _e('Entering 0 means forever, if a unit is selected. If the recurrance unit is left at "Does not recur," the event will not reoccur.','my-calendar'); ?>
342
  </p>
343
- </fieldset>
344
- <?php if ( get_option( 'my_calendar_show_address' ) == 'true' || get_option( 'my_calendar_show_map' ) == 'true' ) { ?>
 
 
 
 
 
 
345
  <fieldset>
346
- <legend><?php _e('Event Location','my-calendar'); ?></legend>
 
 
 
 
 
347
  <p>
348
- <?php _e('All location fields are optional: <em>insufficient information may result in an inaccurate map</em>.','my-calendar'); ?>
349
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  <?php $locations = $wpdb->get_results("SELECT location_id,location_label FROM " . MY_CALENDAR_LOCATIONS_TABLE . " ORDER BY location_id ASC");
351
  if ( !empty($locations) ) {
352
  ?>
@@ -368,7 +521,14 @@ function jd_events_edit_form($mode='add', $event_id=false) {
368
  <p><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-locations"><?php _e('Add recurring locations for later use.','my-calendar'); ?></a></p>
369
  <?php
370
  }
371
- ?>
 
 
 
 
 
 
 
372
  <p>
373
  <label for="event_label"><?php _e('Name of Location (e.g. <em>Joe\'s Bar and Grill</em>)','my-calendar'); ?></label> <input type="text" id="event_label" name="event_label" class="input" size="40" value="<?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_label)); ?>" />
374
  </p>
@@ -394,16 +554,18 @@ function jd_events_edit_form($mode='add', $event_id=false) {
394
  <option value="8"<?php if ( !empty( $data ) && ( $data->event_zoom == 8 ) ) { echo " selected=\"selected\""; } ?>><?php _e('State','my-calendar'); ?></option>
395
  <option value="6"<?php if ( !empty( $data ) && ( $data->event_zoom == 6 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Region','my-calendar'); ?></option>
396
  </select>
397
- </p>
398
  <fieldset>
399
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
400
  <p>
401
- <small><?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location.','my-calendar'); ?></small>
402
  </p>
403
  <p>
404
  <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) echo htmlspecialchars(stripslashes($data->event_longitude)); ?>" /> <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) echo htmlspecialchars(stripslashes($data->event_latitude)); ?>" />
405
  </p>
406
- </fieldset>
 
 
407
  </fieldset>
408
  <?php } ?>
409
  <p>
@@ -416,8 +578,10 @@ function jd_events_edit_form($mode='add', $event_id=false) {
416
  </div>
417
  <?php
418
  }
 
 
419
  // Used on the manage events admin page to display a list of events
420
- function jd_events_display_list($sortby='default',$sortdir='default') {
421
  global $wpdb;
422
  if ($sortby == 'default') {
423
  $sortbyvalue = 'event_begin';
@@ -453,7 +617,22 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
453
  } else {
454
  $sortbydirection = $sortdir;
455
  }
456
- $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " ORDER BY $sortbyvalue $sortbydirection");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
 
458
  if ($sortbydirection == 'DESC') {
459
  $sorting = "&amp;order=ASC";
@@ -471,12 +650,12 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
471
  <th class="manage-column" scope="col"><?php _e('Link','my-calendar') ?></th>
472
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=7<?php echo $sorting; ?>"><?php _e('Location','my-calendar') ?></a></th>
473
  <th class="manage-column n8" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=3<?php echo $sorting; ?>"><?php _e('Description','my-calendar') ?></a></th>
474
- <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=4<?php echo $sorting; ?>"><?php _e('Start Date','my-calendar') ?></a></th>
475
  <th class="manage-column n6" scope="col"><?php _e('Recurs','my-calendar') ?></th>
476
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=5<?php echo $sorting; ?>"><?php _e('Author','my-calendar') ?></a></th>
477
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=6<?php echo $sorting; ?>"><?php _e('Category','my-calendar') ?></a></th>
478
  <th class="manage-column n7" scope="col"><?php _e('Edit / Delete','my-calendar') ?></th>
479
- </tr>
480
  </thead>
481
  <?php
482
  $class = '';
@@ -494,7 +673,7 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
494
  <td><?php echo stripslashes($event->event_label); ?></td>
495
  <td><?php echo substr(strip_tags(stripslashes($event->event_desc)),0,60); ?>&hellip;</td>
496
  <?php if ($event->event_time != "00:00:00") { $eventTime = date_i18n(get_option('time_format'), strtotime($event->event_time)); } else { $eventTime = get_option('my_calendar_notime_text'); } ?>
497
- <td><?php echo "$event->event_begin ($eventTime)"; ?></td>
498
  <?php /* <td><?php echo $event->event_end; ?></td> */ ?>
499
  <td>
500
  <?php
@@ -503,7 +682,8 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
503
  else if ($event->event_recur == 'D') { _e('Daily','my-calendar'); }
504
  else if ($event->event_recur == 'W') { _e('Weekly','my-calendar'); }
505
  else if ($event->event_recur == 'B') { _e('Bi-Weekly','my-calendar'); }
506
- else if ($event->event_recur == 'M') { _e('Monthly','my-calendar'); }
 
507
  else if ($event->event_recur == 'Y') { _e('Yearly','my-calendar'); }
508
  ?>&thinsp;&ndash;&thinsp;<?php
509
  // Interpret the DB values into something human readable
@@ -524,9 +704,31 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
524
  <td><div class="category-color" style="background-color:<?php echo $this_cat->category_color;?>;"> </div> <?php echo stripslashes($this_cat->category_name); ?></td>
525
  <?php unset($this_cat); ?>
526
  <td>
 
527
  <?php if ( mc_can_edit_event( $event->event_author ) ) { ?>
528
- <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=edit&amp;event_id=<?php echo $event->event_id;?>" class='edit'><?php echo __('Edit','my-calendar'); ?></a> &middot; <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=delete&amp;event_id=<?php echo $event->event_id;?>" class="delete"><?php echo __('Delete','my-calendar'); ?></a></td>
529
- <?php } else { echo "Not editable."; } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
  </tr>
531
  <?php
532
  }
@@ -539,23 +741,26 @@ function jd_events_display_list($sortby='default',$sortdir='default') {
539
  <?php
540
  }
541
  }
542
-
543
  function mc_check_data($action,$_POST) {
544
- global $wpdb, $current_user;
545
- if ( $action == 'add' || $action == 'edit' ) {
546
- $title = !empty($_POST['event_title']) ? $_POST['event_title'] : '';
547
- $desc = !empty($_POST['event_desc']) ? $_POST['event_desc'] : '';
548
- $begin = !empty($_POST['event_begin']) ? $_POST['event_begin'] : '';
549
- $end = !empty($_POST['event_end']) ? $_POST['event_end'] : $begin;
550
- $time = !empty($_POST['event_time']) ? $_POST['event_time'] : '';
551
- $endtime = !empty($_POST['event_endtime']) ? $_POST['event_endtime'] : '';
552
- $recur = !empty($_POST['event_recur']) ? $_POST['event_recur'] : '';
553
- $repeats = !empty($_POST['event_repeats']) ? $_POST['event_repeats'] : 0;
 
554
  $category = !empty($_POST['event_category']) ? $_POST['event_category'] : '';
555
- $linky = !empty($_POST['event_link']) ? $_POST['event_link'] : '';
556
- $expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
 
557
  $location_preset = !empty($_POST['location_preset']) ? $_POST['location_preset'] : '';
558
  $event_author = !empty($_POST['event_author']) ? $_POST['event_author'] : '';
 
 
559
  // set location
560
  if ($location_preset != 'none') {
561
  $sql = "SELECT * FROM " . MY_CALENDAR_LOCATIONS_TABLE . " WHERE location_id = $location_preset";
@@ -586,6 +791,7 @@ if ( $action == 'add' || $action == 'edit' ) {
586
  if ( ini_get('magic_quotes_gpc') ) {
587
  $title = stripslashes($title);
588
  $desc = stripslashes($desc);
 
589
  $begin = stripslashes($begin);
590
  $end = stripslashes($end);
591
  $time = stripslashes($time);
@@ -595,6 +801,7 @@ if ( $action == 'add' || $action == 'edit' ) {
595
  $category = stripslashes($category);
596
  $linky = stripslashes($linky);
597
  $expires = stripslashes($expires);
 
598
  $event_label = stripslashes($event_label);
599
  $event_street = stripslashes($event_street);
600
  $event_street2 = stripslashes($event_street2);
@@ -604,7 +811,10 @@ if ( $action == 'add' || $action == 'edit' ) {
604
  $event_country = stripslashes($event_country);
605
  $event_longitude = stripslashes($event_longitude);
606
  $event_latitude = stripslashes($event_latitude);
607
- $event_zoom = stripslashes($event_zoom);
 
 
 
608
  }
609
 
610
  // Perform some validation on the submitted dates - this checks for valid years and months
@@ -680,16 +890,16 @@ if ( $action == 'add' || $action == 'edit' ) {
680
  <?php
681
  }
682
  // We run some checks on recurrance
683
- if (($repeats == 0 && $recur == 'S') || (($repeats >= 0) && ($recur == 'W' || $recur == 'B' || $recur == 'M' || $recur == 'Y' || $recur == 'D'))) {
684
  $recurring_ok = 1;
685
  } else {
686
  ?>
687
- <div class="error"><p><strong><?php _e('Error','my-calendar'); ?>:</strong> <?php _e('The repetition value must be 0 unless a type of recurrance is selected.','my-calendar'); ?></p></div>
688
  <?php
689
  }
690
  if ($start_date_ok == 1 && $end_date_ok == 1 && $time_ok == 1 && $endtime_ok == 1 && $url_ok == 1 && $title_ok == 1 && $recurring_ok == 1) {
691
  $proceed = true;
692
- if ($action == 'add' ) {
693
  $submit = array(
694
  'event_begin'=>$begin,
695
  'event_end'=>$end,
@@ -712,7 +922,11 @@ if ( $action == 'add' || $action == 'edit' ) {
712
  'event_link_expires'=>$expires,
713
  'event_longitude'=>$event_longitude,
714
  'event_latitude'=>$event_latitude,
715
- 'event_zoom'=>$event_zoom);
 
 
 
 
716
 
717
  } else if ($action == 'edit') {
718
  $submit = array(
@@ -736,9 +950,12 @@ if ( $action == 'add' || $action == 'edit' ) {
736
  'event_link_expires'=>$expires,
737
  'event_longitude'=>$event_longitude,
738
  'event_latitude'=>$event_latitude,
739
- 'event_zoom'=>$event_zoom);
740
- }
741
-
 
 
 
742
 
743
  } else {
744
  // The form is going to be rejected due to field validation issues, so we preserve the users entries here
@@ -764,6 +981,10 @@ if ( $action == 'add' || $action == 'edit' ) {
764
  $users_entries->event_latitude = $event_latitude;
765
  $users_entries->event_zoom = $event_zoom;
766
  $users_entries->event_author = $event_author;
 
 
 
 
767
  $proceed = false;
768
  }
769
 
@@ -772,5 +993,4 @@ if ( $action == 'add' || $action == 'edit' ) {
772
  $data = array($proceed, $users_entries, $submit);
773
  return $data;
774
  }
775
-
776
  ?>
1
  <?php
2
+ function jd_option_selected($field,$value,$type='checkbox') {
3
+ switch ($type) {
4
+ case 'radio':
5
+ case 'checkbox':
6
+ $result = ' checked="checked"';
7
+ break;
8
+ case 'option':
9
+ $result = ' selected="selected"';
10
+ break;
11
+ }
12
+ if ($field == $value) {
13
+ $output = $result;
14
+ } else {
15
+ $output = '';
16
+ }
17
+ return $output;
18
+ }
19
+
20
  function edit_my_calendar() {
21
  global $current_user, $wpdb, $users_entries;
22
 
51
  $action = "edit";
52
  $event_id = (int) $_GET['event_id'];
53
  }
54
+ if ($_GET['mode'] == 'copy') {
55
+ $action = "copy";
56
+ $event_id = (int) $_GET['event_id'];
57
+ }
58
 
59
  // Lets see if this is first run and create us a table if it is!
60
  check_my_calendar();
84
  }
85
  }
86
 
87
+
88
+ // Approve and show an Event ...by Roland
89
+ if ( $_GET['mode'] == 'approve' ) {
90
+ if ( current_user_can( get_option( 'mc_event_approve_perms' ) ) ) {
91
+ $sql = "UPDATE " . MY_CALENDAR_TABLE . " SET event_approved = 1 WHERE event_id=" . (int) $_GET['event_id'];
92
+ $result = $wpdb->get_results( $sql, ARRAY_A );
93
+ } else {
94
+ ?>
95
+ <div class="error">
96
+ <p><strong><?php _e('You do not have permission to approve that event.','my-calendar'); ?></strong></p>
97
+ </div>
98
+ <?php
99
+ }
100
+ }
101
+
102
+ // Reject and hide an Event ...by Roland
103
+ if ($_GET['mode'] == 'reject') {
104
+ if ( current_user_can( get_option( 'mc_event_approve_perms' ) ) ) {
105
+ $sql = "UPDATE " . MY_CALENDAR_TABLE . " SET event_approved = 2 WHERE event_id=" . (int) $_GET['event_id'];
106
+ $result = $wpdb->get_results( $sql, ARRAY_A );
107
+ } else {
108
+ ?>
109
+ <div class="error">
110
+ <p><strong><?php _e('You do not have permission to reject that event.','my-calendar'); ?></strong></p>
111
+ </div>
112
+ <?php
113
+ }
114
+ }
115
+
116
  if ( isset( $_POST['action'] ) ) {
117
  $proceed = false;
118
  // Deal with adding an event to the database
119
+ $event_author = (int) ($action == 'add' || $action == 'copy')?($current_user->ID):($_POST['event_author']);
120
 
121
  $output = mc_check_data($action,$_POST);
122
  $proceed = $output[0];
123
  // end data checking and gathering
124
+ if ( ( $action == 'add' || $action == 'copy' ) && $proceed == true ) {
125
  $add = $output[2];
126
+ $formats = array( '%s','%s','%s','%s','%s','%s','%d','%d','%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d','%f','%f','%d','%s','%d','%d' );
127
  $result = $wpdb->insert(
128
  MY_CALENDAR_TABLE,
129
  $add,
130
  $formats
131
  );
132
+ if ( !$result ) {
133
+ echo "<div class='error'><p><strong>". __('Error','my-calendar') .":</strong>". _e('I\'m sorry! I couldn\'t add that event to the database.','my-calendar') . "</p></div>";
134
+ } else {
135
+ echo "<div class='updated'><p>". __('Event added. It will now show in your calendar.','my-calendar') . "</p></div>";
136
+ // Call mail function
137
+ $sql = "SELECT * FROM ". MY_CALENDAR_TABLE." WHERE event_id = ".$wpdb->insert_id;
138
+ $event = $wpdb->get_results($sql);
139
+ my_calendar_send_email( $event[0] );
140
+ }
141
  }
142
  if ( $action == 'edit' && $proceed == true ) {
143
  if ( mc_can_edit_event( $event_author ) ) {
144
  $update = $output[2];
145
+ $formats = array('%s','%s','%s','%s','%s','%s','%d','%d','%s','%s','%s','%s','%s','%s','%s','%s','%s','%d','%f','%f','%d','%s','%d','%d');
146
  $result = $wpdb->update(
147
  MY_CALENDAR_TABLE,
148
  $update,
161
  ?>
162
  <div class="updated"><p><?php _e('Event updated successfully','my-calendar'); ?></p></div>
163
  <?php
164
+ }
165
  } else {
166
  ?>
167
  <div class="error">
196
  }
197
  }
198
  }
199
+
200
+
201
+ // Approve and show an Event ...by Roland
202
+ if ($_GET['mode'] == 'approve') {
203
+ if ( current_user_can( get_option('mc_event_approve_perms') ) ) {
204
+ $sql = "UPDATE " . MY_CALENDAR_TABLE . " SET event_approved = 1 WHERE event_id=" . (int) $_GET['event_id'];
205
+ $result = $wpdb->get_results( $sql, ARRAY_A );
206
+ } else {
207
+ ?>
208
+ <div class="error">
209
+ <p><strong><?php _e('You do not have permission to approve that event.','my-calendar'); ?></strong></p>
210
+ </div>
211
+ <?php
212
+ }
213
  }
214
 
215
+ // Reject and hide an Event ...by Roland
216
+ if ($_GET['mode'] == 'reject') {
217
+ if ( current_user_can( get_option('mc_event_approve_perms') ) ) {
218
+ $sql = "UPDATE " . MY_CALENDAR_TABLE . " SET event_approved = 0 WHERE event_id=" . (int) $_GET['event_id'];
219
+ $result = $wpdb->get_results( $sql, ARRAY_A );
220
+ } else {
221
+ ?>
222
+ <div class="error">
223
+ <p><strong><?php _e('You do not have permission to reject that event.','my-calendar'); ?></strong></p>
224
+ </div>
225
+ <?php
226
+ }
227
+ }
228
+ }
229
  // Now follows a little bit of code that pulls in the main
230
  // components of this page; the edit form and the list of events
231
  ?>
235
  my_calendar_check_db();
236
  ?>
237
  <?php
238
+ if ( $action == 'edit' || ($action == 'edit' && $error_with_saving == 1) ) {
239
  ?>
240
  <h2><?php _e('Edit Event','my-calendar'); ?></h2>
241
  <?php jd_show_support_box(); ?>
245
  } else {
246
  jd_events_edit_form('edit', $event_id);
247
  }
248
+ } else if ( $action == 'copy' || ($action == 'copy' && $error_with_saving == 1)) { ?>
249
+ <h2><?php _e('Copy Event','my-calendar'); ?></h2>
250
+ <?php jd_show_support_box(); ?>
251
+ <?php
252
+ if ( empty($event_id) ) {
253
+ echo "<div class=\"error\"><p>".__("You must provide an event id in order to edit it",'my-calendar')."</p></div>";
254
+ } else {
255
+ jd_events_edit_form('copy', $event_id);
256
+ }
257
  } else {
258
+ ?>
259
  <h2><?php _e('Add Event','my-calendar'); ?></h2>
260
  <?php jd_show_support_box(); ?>
261
 
262
  <?php jd_events_edit_form(); ?>
263
 
264
  <h2><?php _e('Manage Events','my-calendar'); ?></h2>
265
+ <?php if ( get_option('mc_event_approve') == 'true' ) { ?>
266
+ <ul class="links">
267
+ <li><a <?php echo ($_GET['limit']=='published')?' class="active-link"':''; ?> href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;limit=published">Published</a></li>
268
+ <li><a <?php echo ($_GET['limit']=='reserved')?' class="active-link"':''; ?> href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;limit=reserved">Reserved</a></li>
269
+ <li><a <?php echo ($_GET['limit']=='all' || !isset($_GET['limit']))?' class="active-link"':''; ?> href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;limit=all">All</a></li>
270
+ </ul>
271
+ <?php } ?>
272
  <?php
273
 
274
  if ( isset( $_GET['sort'] ) ) {
286
  } else {
287
  $sortdir = 'default';
288
  }
289
+ if ( isset( $_GET['limit'] ) ) {
290
+ switch ($_GET['limit']) {
291
+ case 'reserved':
292
+ $limit = 'reserved';
293
+ break;
294
+ case 'published':
295
+ $limit ='published';
296
+ break;
297
+ }
298
+ } else {
299
+ $limit = 'all';
300
+ }
301
+ jd_events_display_list($sortby,$sortdir,$limit);
302
  }
303
  ?>
304
  </div>
 
305
  <?php
306
  }
307
 
332
  }
333
  global $user_ID;
334
  get_currentuserinfo();
335
+ $user = get_userdata($user_ID);
336
+ $mc_input_administrator = (get_option('mc_input_options_administrators')=='true' && current_user_can('manage_options'))?true:false;
337
+ $mc_input = get_option('mc_input_options');
338
+
339
  ?>
340
 
341
  <div id="poststuff" class="jd-my-calendar">
342
  <div class="postbox">
343
+ <h3><?php if ($mode == "add") { _e('Add an Event','my-calendar'); } else if ($mode == "copy") { _e('Copy Event','my-calendar'); } else { _e('Edit Event'); } ?></h3>
344
  <div class="inside">
345
+ <?php
346
+ if ($data->event_approved != 1 && $mode == 'edit' ) {
347
+ $message = __('This event must be approved in order for it to appear on the calendar.','my-calendar');
348
+ } else {
349
+ $message = "";
350
+ }
351
+ if ($message != '') {
352
+ echo "<div class='error'><p>$message</p></div>";
353
+ }
354
+ ?>
355
  <form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar">
356
  <div>
357
  <input type="hidden" name="action" value="<?php echo $mode; ?>" />
362
  <legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
363
  <p>
364
  <label for="event_title"><?php _e('Event Title','my-calendar'); ?></label> <input type="text" id="event_title" name="event_title" class="input" size="60" value="<?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_title)); ?>" />
365
+ <?php if ( $mode == 'edit' ) { ?>
366
+ <?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
367
+ <?php if ( current_user_can( get_option('mc_event_approve_perms') ) ) { // (Added by Roland P. ?>
368
+ <input type="checkbox" value="1" id="event_approved" name="event_approved"<?php if ( !empty($data) && $data->event_approved == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_approved == '0' ) { echo ""; } else if ( get_option( 'mc_event_approve' ) == 'true' ) { echo "checked=\"checked\""; } ?> /> <label for="event_approved"><?php _e('Publish','my-calendar'); ?><?php if ($event->event_approved != 1) { ?> <small>[<?php _e('You must approve this event to promote it to the calendar.','my-calendar'); ?>]</small> <?php } ?></label>
369
+ <?php } else { // case: editing, approval enabled, user cannot approve ?>
370
+ <p><input type="hidden" value="0" name="event_approved" /><?php _e('An administrator must approve your new event.','my-calendar'); ?></p>
371
+ <?php } ?>
372
+ <?php } else { // Case: editing, approval system is disabled - auto approve ?>
373
+ <p><input type="hidden" value="1" name="event_approved" /></p>
374
+ <?php } ?>
375
+ <?php } else { // case: adding new event (if use can, then 1, else 0) ?>
376
+ <?php if ( current_user_can( get_option('mc_event_approve_perms') ) ) { $dvalue = 1; } else { $dvalue = 0; } ?>
377
+ <div><input type="hidden" value="<?php echo $dvalue; ?>" name="event_approved" /></div>
378
+ <?php } ?>
379
+ </p>
380
+ <?php if ($mc_input['event_desc'] == 'on' || $mc_input_administrator ) { ?>
381
+ <p>
382
+ <label for="event_desc"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><textarea id="event_desc" name="event_desc" class="input" rows="5" cols="80"><?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_desc)); ?></textarea>
383
  </p>
384
+ <?php } ?>
385
+ <?php if ($mc_input['event_short'] == 'on') { ?>
386
  <p>
387
+ <label for="event_short"><?php _e('Event Short Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><textarea id="event_short" name="event_short" class="input" rows="2" cols="80"><?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_short)); ?></textarea>
388
  </p>
389
+ <?php } ?>
390
+ <?php if ($mc_input['event_category'] == 'on') { ?>
391
  <p>
392
  <label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
393
  <select id="event_category" name="event_category">
405
  echo '>'.$cat->category_name.'</option>';
406
  }
407
  ?>
408
+ </select>
409
  </p>
410
+ <?php } else { ?>
411
+ <div>
412
+ <input type="hidden" name="event_category" value="1" />
413
+ </div>
414
+ <?php } ?>
415
+ <?php if ($mc_input['event_link'] == 'on') { ?>
416
  <p>
417
  <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( !empty($data) ) echo htmlspecialchars($data->event_link); ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( !empty($data) && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('This link will expire when the event passes.','my-calendar'); ?></label>
418
  </p>
419
+ <?php } ?>
420
  <p>
421
  <label for="event_begin"><?php _e('Start Date (YYYY-MM-DD)','my-calendar'); ?></label> <input type="text" id="event_begin" name="event_begin" class="calendar_input" size="12" value="<?php if ( !empty($data) ) { echo htmlspecialchars($data->event_begin);} else {echo date_i18n("Y-m-d");} ?>" />
422
  </p>
440
  </p>
441
  <p>
442
  <label for="event_endtime"><?php _e('End Time (hh:mm)','my-calendar'); ?></label> <input type="text" id="event_endtime" name="event_endtime" class="input" size="12"
443
+ value="<?php
444
  if ( !empty($data) ) {
445
  if ($data->event_endtime == "00:00:00") {
446
  echo '';
449
  }
450
  } else {
451
  echo '';
452
+ }?>" /> <?php _e('Optional. End times will not be displayed on events where this is not set.','my-calendar'); ?>
 
453
  </p>
454
  </fieldset>
455
+ <?php if ($mc_input['event_recurs'] == 'on') { ?>
456
  <fieldset>
457
+ <legend><?php _e('Recurring Events','my-calendar'); ?></legend>
458
+ <?php if ( $data->event_repeats != NULL ) { $repeats = $data->event_repeats; } else { $repeats = 0; } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  <p>
460
  <label for="event_repeats"><?php _e('Repeats for','my-calendar'); ?></label> <input type="text" name="event_repeats" id="event_repeats" class="input" size="1" value="<?php echo $repeats; ?>" />
461
  <label for="event_recur"><?php _e('Units','my-calendar'); ?></label> <select name="event_recur" class="input" id="event_recur">
462
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'S','option'); ?> value="S"><?php _e('Does not recur','my-calendar'); ?></option>
463
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'D','option'); ?> value="D"><?php _e('Daily','my-calendar'); ?></option>
464
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'W','option'); ?> value="W"><?php _e('Weekly','my-calendar'); ?></option>
465
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'B','option'); ?> value="B"><?php _e('Bi-weekly','my-calendar'); ?></option>
466
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'M','option'); ?> value="M"><?php _e('Date of Month (e.g., the 24th of each month)','my-calendar'); ?></option>
467
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'U','option'); ?> value="U"><?php _e('Day of Month (e.g., the 3rd Monday of each month)','my-calendar'); ?></option>
468
+ <option class="input" <?php echo jd_option_selected( $data->event_recur,'Y','option'); ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
469
  </select><br />
470
+ <?php _e('Entering 0 means forever, if a unit is selected. If the recurrence unit is left at "Does not recur," the event will not reoccur.','my-calendar'); ?>
471
  </p>
472
+ </fieldset>
473
+ <?php } else { ?>
474
+ <div>
475
+ <input type="hidden" name="event_repeats" value="0" />
476
+ <input type="hidden" name="event_recur" value="S" />
477
+ </div>
478
+ <?php } ?>
479
+ <?php if ($mc_input['event_open'] == 'on') { ?>
480
  <fieldset>
481
+ <legend><?php _e('Event Registration Status','my-calendar'); ?></legend>
482
+ <p>
483
+ <input type="radio" id="event_open" name="event_open" value="1" <?php if (!empty($data)) { echo jd_option_selected( $data->event_open,'1'); } else { echo " checked='checked'"; } ?> /> <label for="event_open"><?php _e('Open','my-calendar'); ?></label>
484
+ <input type="radio" id="event_closed" name="event_open" value="0" <?php if (!empty($data)) { echo jd_option_selected( $data->event_open,'0'); } ?> /> <label for="event_closed"><?php _e('Closed','my-calendar'); ?></label>
485
+ <input type="radio" id="event_none" name="event_open" value="2" <?php if (!empty($data)) { echo jd_option_selected( $data->event_open, '2' ); } ?> /> <label for="event_none"><?php _e('Does not apply','my-calendar'); ?></label>
486
+ </p>
487
  <p>
488
+ <input type="checkbox" name="event_group" id="event_group" <?php echo jd_option_selected( $data->event_group,'1'); ?> /> <label for="event_group"><?php _e('If this event recurs, it can only be registered for as a complete series.','my-calendar'); ?></label>
489
+ </p>
490
+ </fieldset>
491
+ <?php } else { ?>
492
+ <div>
493
+ <input type="hidden" name="event_open" value="2" />
494
+ </div>
495
+ <?php } ?>
496
+ <?php if ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') { ?>
497
+ <fieldset>
498
+ <legend><?php _e('Event Location','my-calendar'); ?></legend>
499
+ <?php } ?>
500
+ <?php if ($mc_input['event_location_dropdown'] == 'on') { ?>
501
+
502
+
503
  <?php $locations = $wpdb->get_results("SELECT location_id,location_label FROM " . MY_CALENDAR_LOCATIONS_TABLE . " ORDER BY location_id ASC");
504
  if ( !empty($locations) ) {
505
  ?>
521
  <p><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-locations"><?php _e('Add recurring locations for later use.','my-calendar'); ?></a></p>
522
  <?php
523
  }
524
+ ?>
525
+ <?php } else { ?>
526
+ <input type="hidden" name="location_preset" value="none" />
527
+ <?php } ?>
528
+ <?php if ($mc_input['event_location'] == 'on') { ?>
529
+ <p>
530
+ <?php _e('All location fields are optional: <em>insufficient information may result in an inaccurate map</em>.','my-calendar'); ?>
531
+ </p>
532
  <p>
533
  <label for="event_label"><?php _e('Name of Location (e.g. <em>Joe\'s Bar and Grill</em>)','my-calendar'); ?></label> <input type="text" id="event_label" name="event_label" class="input" size="40" value="<?php if ( !empty($data) ) echo htmlspecialchars(stripslashes($data->event_label)); ?>" />
534
  </p>
554
  <option value="8"<?php if ( !empty( $data ) && ( $data->event_zoom == 8 ) ) { echo " selected=\"selected\""; } ?>><?php _e('State','my-calendar'); ?></option>
555
  <option value="6"<?php if ( !empty( $data ) && ( $data->event_zoom == 6 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Region','my-calendar'); ?></option>
556
  </select>
557
+ </p>
558
  <fieldset>
559
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
560
  <p>
561
+ <small><?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link.','my-calendar'); ?></small>
562
  </p>
563
  <p>
564
  <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) echo htmlspecialchars(stripslashes($data->event_longitude)); ?>" /> <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) echo htmlspecialchars(stripslashes($data->event_latitude)); ?>" />
565
  </p>
566
+ </fieldset>
567
+ <?php } ?>
568
+ <?php if ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') { ?>
569
  </fieldset>
570
  <?php } ?>
571
  <p>
578
  </div>
579
  <?php
580
  }
581
+
582
+
583
  // Used on the manage events admin page to display a list of events
584
+ function jd_events_display_list($sortby='default',$sortdir='default',$status='all') {
585
  global $wpdb;
586
  if ($sortby == 'default') {
587
  $sortbyvalue = 'event_begin';
617
  } else {
618
  $sortbydirection = $sortdir;
619
  }
620
+
621
+ switch ($status) {
622
+ case 'all':
623
+ $limit = '';
624
+ break;
625
+ case 'reserved':
626
+ $limit = 'WHERE event_approved = 0';
627
+ break;
628
+ case 'published':
629
+ $limit = 'WHERE event_approved = 1';
630
+ break;
631
+ default:
632
+ $limit = '';
633
+ }
634
+
635
+ $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " $limit ORDER BY $sortbyvalue $sortbydirection");
636
 
637
  if ($sortbydirection == 'DESC') {
638
  $sorting = "&amp;order=ASC";
650
  <th class="manage-column" scope="col"><?php _e('Link','my-calendar') ?></th>
651
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=7<?php echo $sorting; ?>"><?php _e('Location','my-calendar') ?></a></th>
652
  <th class="manage-column n8" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=3<?php echo $sorting; ?>"><?php _e('Description','my-calendar') ?></a></th>
653
+ <th class="manage-column n5" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=4<?php echo $sorting; ?>"><?php _e('Start Date','my-calendar') ?></a></th>
654
  <th class="manage-column n6" scope="col"><?php _e('Recurs','my-calendar') ?></th>
655
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=5<?php echo $sorting; ?>"><?php _e('Author','my-calendar') ?></a></th>
656
  <th class="manage-column" scope="col"><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;sort=6<?php echo $sorting; ?>"><?php _e('Category','my-calendar') ?></a></th>
657
  <th class="manage-column n7" scope="col"><?php _e('Edit / Delete','my-calendar') ?></th>
658
+ </tr>
659
  </thead>
660
  <?php
661
  $class = '';
673
  <td><?php echo stripslashes($event->event_label); ?></td>
674
  <td><?php echo substr(strip_tags(stripslashes($event->event_desc)),0,60); ?>&hellip;</td>
675
  <?php if ($event->event_time != "00:00:00") { $eventTime = date_i18n(get_option('time_format'), strtotime($event->event_time)); } else { $eventTime = get_option('my_calendar_notime_text'); } ?>
676
+ <td><?php echo "$event->event_begin, $eventTime"; ?></td>
677
  <?php /* <td><?php echo $event->event_end; ?></td> */ ?>
678
  <td>
679
  <?php
682
  else if ($event->event_recur == 'D') { _e('Daily','my-calendar'); }
683
  else if ($event->event_recur == 'W') { _e('Weekly','my-calendar'); }
684
  else if ($event->event_recur == 'B') { _e('Bi-Weekly','my-calendar'); }
685
+ else if ($event->event_recur == 'M') { _e('Monthly (by date)','my-calendar'); }
686
+ else if ($event->event_recur == 'U') { _e('Monthly (by day)','my-calendar'); }
687
  else if ($event->event_recur == 'Y') { _e('Yearly','my-calendar'); }
688
  ?>&thinsp;&ndash;&thinsp;<?php
689
  // Interpret the DB values into something human readable
704
  <td><div class="category-color" style="background-color:<?php echo $this_cat->category_color;?>;"> </div> <?php echo stripslashes($this_cat->category_name); ?></td>
705
  <?php unset($this_cat); ?>
706
  <td>
707
+ <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=copy&amp;event_id=<?php echo $event->event_id;?>" class='copy'><?php echo __('Copy','my-calendar'); ?></a> &middot;
708
  <?php if ( mc_can_edit_event( $event->event_author ) ) { ?>
709
+ <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=edit&amp;event_id=<?php echo $event->event_id;?>" class='edit'><?php echo __('Edit','my-calendar'); ?></a> &middot; <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=delete&amp;event_id=<?php echo $event->event_id;?>" class="delete"><?php echo __('Delete','my-calendar'); ?></a>
710
+ <?php } else { _e("Not editable.",'my-calendar'); } ?>
711
+ <?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
712
+ &middot;
713
+ <?php if ( current_user_can( get_option('mc_event_approve_perms') ) ) { // Added by Roland P.?>
714
+ <?php // by Roland
715
+ if ( $event->event_approved == '1' ) { ?>
716
+ <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=reject&amp;event_id=<?php echo $event->event_id;?>" class='reject'><?php echo __('Reject','my-calendar'); ?></a>
717
+ <?php } else { ?>
718
+ <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar&amp;mode=approve&amp;event_id=<?php echo $event->event_id;?>" class='publish'><?php echo __('Approve','my-calendar'); ?></a>
719
+ <?php } ?>
720
+ <?php } else { ?>
721
+ <?php // by Roland
722
+ if ( $event->event_approved == '1' ) { ?>
723
+ <?php echo __('Approved','my-calendar'); ?>
724
+ <?php } else if ($event->event_approved == '2' ) { ?>
725
+ <?php echo __('Rejected','my-calendar'); ?>
726
+ <?php } else { ?>
727
+ <?php echo __('Awaiting Approval','my-calendar'); ?>
728
+ <?php } ?>
729
+ <?php } ?>
730
+ <?php } ?>
731
+ </td>
732
  </tr>
733
  <?php
734
  }
741
  <?php
742
  }
743
  }
 
744
  function mc_check_data($action,$_POST) {
745
+ global $wpdb, $current_user, $users_entries;
746
+ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
747
+ $title = !empty($_POST['event_title']) ? trim($_POST['event_title']) : '';
748
+ $desc = !empty($_POST['event_desc']) ? trim($_POST['event_desc']) : '';
749
+ $short = !empty($_POST['event_short']) ? trim($_POST['event_short']) : '';
750
+ $begin = !empty($_POST['event_begin']) ? trim($_POST['event_begin']) : '';
751
+ $end = !empty($_POST['event_end']) ? trim($_POST['event_end']) : $begin;
752
+ $time = !empty($_POST['event_time']) ? trim($_POST['event_time']) : '';
753
+ $endtime = !empty($_POST['event_endtime']) ? trim($_POST['event_endtime']) : '';
754
+ $recur = !empty($_POST['event_recur']) ? trim($_POST['event_recur']) : '';
755
+ $repeats = !empty($_POST['event_repeats']) ? trim($_POST['event_repeats']) : 0;
756
  $category = !empty($_POST['event_category']) ? $_POST['event_category'] : '';
757
+ $linky = !empty($_POST['event_link']) ? trim($_POST['event_link']) : '';
758
+ $expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
759
+ $approved = !empty($_POST['event_approved']) ? $_POST['event_approved'] : '0';
760
  $location_preset = !empty($_POST['location_preset']) ? $_POST['location_preset'] : '';
761
  $event_author = !empty($_POST['event_author']) ? $_POST['event_author'] : '';
762
+ $event_open = !empty($_POST['event_open']) ? $_POST['event_open'] : '2';
763
+ $event_group = !empty($_POST['event_group']) ? 1 : 0;
764
  // set location
765
  if ($location_preset != 'none') {
766
  $sql = "SELECT * FROM " . MY_CALENDAR_LOCATIONS_TABLE . " WHERE location_id = $location_preset";
791
  if ( ini_get('magic_quotes_gpc') ) {
792
  $title = stripslashes($title);
793
  $desc = stripslashes($desc);
794
+ $short = stripslashes($short);
795
  $begin = stripslashes($begin);
796
  $end = stripslashes($end);
797
  $time = stripslashes($time);
801
  $category = stripslashes($category);
802
  $linky = stripslashes($linky);
803
  $expires = stripslashes($expires);
804
+ $event_open = stripslashes($event_open);
805
  $event_label = stripslashes($event_label);
806
  $event_street = stripslashes($event_street);
807
  $event_street2 = stripslashes($event_street2);
811
  $event_country = stripslashes($event_country);
812
  $event_longitude = stripslashes($event_longitude);
813
  $event_latitude = stripslashes($event_latitude);
814
+ $event_zoom = stripslashes($event_zoom);
815
+ $event_group = stripslashes($event_group);
816
+ $approved = stripslashes($approved);
817
+
818
  }
819
 
820
  // Perform some validation on the submitted dates - this checks for valid years and months
890
  <?php
891
  }
892
  // We run some checks on recurrance
893
+ if (($repeats == 0 && $recur == 'S') || (($repeats >= 0) && ($recur == 'W' || $recur == 'B' || $recur == 'M' || $recur == 'U' || $recur == 'Y' || $recur == 'D'))) {
894
  $recurring_ok = 1;
895
  } else {
896
  ?>
897
+ <div class="error"><p><strong><?php _e('Error','my-calendar'); ?>:</strong> <?php _e('The repetition value must be 0 unless a type of recurrence is selected.','my-calendar'); ?></p></div>
898
  <?php
899
  }
900
  if ($start_date_ok == 1 && $end_date_ok == 1 && $time_ok == 1 && $endtime_ok == 1 && $url_ok == 1 && $title_ok == 1 && $recurring_ok == 1) {
901
  $proceed = true;
902
+ if ($action == 'add' || $action == 'copy' ) {
903
  $submit = array(
904
  'event_begin'=>$begin,
905
  'event_end'=>$end,
922
  'event_link_expires'=>$expires,
923
  'event_longitude'=>$event_longitude,
924
  'event_latitude'=>$event_latitude,
925
+ 'event_zoom'=>$event_zoom,
926
+ 'event_short'=>$short,
927
+ 'event_open'=>$event_open,
928
+ 'event_group'=>$event_group,
929
+ 'event_approved'=>$approved);
930
 
931
  } else if ($action == 'edit') {
932
  $submit = array(
950
  'event_link_expires'=>$expires,
951
  'event_longitude'=>$event_longitude,
952
  'event_latitude'=>$event_latitude,
953
+ 'event_zoom'=>$event_zoom,
954
+ 'event_short'=>$short,
955
+ 'event_open'=>$event_open,
956
+ 'event_group'=>$event_group,
957
+ 'event_approved'=>$approved);
958
+ }
959
 
960
  } else {
961
  // The form is going to be rejected due to field validation issues, so we preserve the users entries here
981
  $users_entries->event_latitude = $event_latitude;
982
  $users_entries->event_zoom = $event_zoom;
983
  $users_entries->event_author = $event_author;
984
+ $users_entries->event_open = $event_open;
985
+ $users_entries->event_short = $short;
986
+ $users_entries->event_group = $event_group;
987
+ $users_entries->event_approved = $approved;
988
  $proceed = false;
989
  }
990
 
993
  $data = array($proceed, $users_entries, $submit);
994
  return $data;
995
  }
 
996
  ?>
my-calendar-help.php CHANGED
@@ -5,28 +5,29 @@ function my_calendar_help() {
5
  <div class="wrap">
6
  <h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
7
  <?php jd_show_support_box(); ?>
 
8
 
9
- <div id="shortcode" class="jd-my-calendar">
10
  <div class="postbox">
11
  <h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
12
  <div class="inside">
13
  <p>
14
  <?php _e('These shortcodes can be used in Posts, Pages, or in text widgets.','my-calendar'); ?>
15
- <ul>
16
- <li><code>[my_calendar]</code><br />
 
17
  <?php _e('This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format.','my-calendar'); ?>
18
- </li>
19
- <li><code>[my_calendar category="General|Other" format="list" showkey="no"]</code><br />
20
- <?php _e('The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output.','my-calendar'); ?>
21
- </li>
22
- <li><code>[my_calendar_upcoming before="3" after="3" type="event" category="General" template="{title} {date}"]</code><br />
 
 
23
  <?php _e('This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either "event" or "days", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below.','my-calendar'); ?>
24
- </li>
25
- <li><code>[my_calendar_today category="" template="{title} {date}"]</code><br />
26
  <?php _e('Predictably enough, this shortcode displays the output of the Today\'s Events widget, with two configurable attributes: category and template.','my-calendar'); ?>
27
- </li>
28
- </ul>
29
- </div>
30
  </div>
31
  </div>
32
  <div id="icons" class="jd-my-calendar">
@@ -107,7 +108,27 @@ function my_calendar_help() {
107
 
108
  <dt><code>{link_map}</code></dt>
109
  <dd><?php _e('Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty.','my-calendar'); ?></dd>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  </div>
 
111
  </div>
112
  </div>
113
  </div>
5
  <div class="wrap">
6
  <h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
7
  <?php jd_show_support_box(); ?>
8
+ <div id="poststuff" class="jd-my-calendar">
9
 
 
10
  <div class="postbox">
11
  <h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
12
  <div class="inside">
13
  <p>
14
  <?php _e('These shortcodes can be used in Posts, Pages, or in text widgets.','my-calendar'); ?>
15
+ </p>
16
+ <p>
17
+ <code>[my_calendar]</code><br />
18
  <?php _e('This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format.','my-calendar'); ?>
19
+ </p>
20
+ <p>
21
+ <code>[my_calendar category="General|Other" format="list" showkey="no"]</code><br />
22
+ <?php _e('The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate options for <code>format</code>: <code>list</code>, which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output.','my-calendar'); ?>
23
+ </p>
24
+ <p>
25
+ <code>[my_calendar_upcoming before="3" after="3" type="event" category="General" template="{title} {date}"]</code><br />
26
  <?php _e('This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either "event" or "days", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below.','my-calendar'); ?>
27
+ </p>
28
+ <p><code>[my_calendar_today category="" template="{title} {date}"]</code><br />
29
  <?php _e('Predictably enough, this shortcode displays the output of the Today\'s Events widget, with two configurable attributes: category and template.','my-calendar'); ?>
30
+ </p>
 
 
31
  </div>
32
  </div>
33
  <div id="icons" class="jd-my-calendar">
108
 
109
  <dt><code>{link_map}</code></dt>
110
  <dd><?php _e('Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty.','my-calendar'); ?></dd>
111
+
112
+ <dt><code>{event_open}</code></dt>
113
+ <dd><?php _e('Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event.','my-calendar'); ?></dd>
114
+
115
+ <dt><code>{shortdesc}</code></dt>
116
+ <dd><?php _e('Displays the short version of the event description.','my-calendar'); ?></dd>
117
+
118
+ <dt><code>{event_status}</code></dt>
119
+ <dd><?php _e('Displays the current status of the event: either "Published" or "Reserved" - primary used in email templates.','my-calendar'); ?></dd>
120
+
121
+ <dt><code>{icon}</code></dt>
122
+ <dd><?php _e('Produces the address of the current event\'s category icon.','my-calendar'); ?></dd>
123
+
124
+ <dt><code>{color}</code></dt>
125
+ <dd><?php _e('Produces the hex code for the current event\'s category color.','my-calendar'); ?></dd>
126
+
127
+ </dl>
128
+ </div>
129
+
130
  </div>
131
+
132
  </div>
133
  </div>
134
  </div>
my-calendar-install.php CHANGED
@@ -437,6 +437,8 @@ $initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
437
  event_end DATE NOT NULL,
438
  event_title VARCHAR(255) NOT NULL,
439
  event_desc TEXT NOT NULL,
 
 
440
  event_time TIME,
441
  event_endtime TIME,
442
  event_recur CHAR(1),
@@ -455,6 +457,8 @@ $initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
455
  event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
456
  event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
457
  event_zoom INT(2) NOT NULL DEFAULT '14',
 
 
458
  PRIMARY KEY (event_id),
459
  KEY event_recur (event_recur)
460
  );";
@@ -517,6 +521,15 @@ global $initial_style, $default_template, $initial_listjs, $initial_caljs, $init
517
  add_option('my_calendar_hide_icons','false');
518
  add_option('mc_event_link_expires','no');
519
  add_option('mc_apply_color','default');
 
 
 
 
 
 
 
 
 
520
 
521
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
522
  dbDelta($initial_db);
437
  event_end DATE NOT NULL,
438
  event_title VARCHAR(255) NOT NULL,
439
  event_desc TEXT NOT NULL,
440
+ event_short TEXT NOT NULL,
441
+ event_open INT(3) DEFAULT '2',
442
  event_time TIME,
443
  event_endtime TIME,
444
  event_recur CHAR(1),
457
  event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
458
  event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
459
  event_zoom INT(2) NOT NULL DEFAULT '14',
460
+ event_group INT(1) NOT NULL DEFAULT '0',
461
+ event_approved INT(1) NOT NULL DEFAULT '1',
462
  PRIMARY KEY (event_id),
463
  KEY event_recur (event_recur)
464
  );";
521
  add_option('my_calendar_hide_icons','false');
522
  add_option('mc_event_link_expires','no');
523
  add_option('mc_apply_color','default');
524
+ add_option('mc_input_options',array('event_short'=>'on','event_desc'=>'on','event_category'=>'on','event_link'=>'on','event_recurs'=>'on','event_open'=>'on','event_location'=>'on','event_location_dropdown'=>'on') );
525
+ add_option('mc_input_options_administrators','false');
526
+ add_option('mc_event_mail','false');
527
+ add_option('mc_event_mail_subject','');
528
+ add_option('mc_event_mail_to','');
529
+ add_option('mc_event_mail_message','');
530
+ add_option('mc_event_approve','false');
531
+ add_option('mc_event_approve_perms','manage_options');
532
+ add_option('mc_no_fifth_week','true');
533
 
534
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
535
  dbDelta($initial_db);
my-calendar-ja.mo ADDED
Binary file
my-calendar-ja.po ADDED
@@ -0,0 +1,1513 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of the WordPress plugin My Calendar 1.5.0 by Joseph C Dolson.
2
+ # Copyright (C) 2010 Joseph C Dolson
3
+ # This file is distributed under the same license as the My Calendar package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: My Calendar 1.5.0\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
10
+ "POT-Creation-Date: 2010-10-05 19:19+0000\n"
11
+ "PO-Revision-Date: 2010-10-21 15:31+0900\n"
12
+ "Last-Translator: Daisuke Abe <r1916s@gmai.com>\n"
13
+ "Language-Team: evian <r1916s@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-Language: Japanese\n"
18
+ "X-Poedit-Country: JAPAN\n"
19
+
20
+ #: my-calendar-categories.php:41
21
+ msgid "Category added successfully"
22
+ msgstr "カテゴリーが正常に追加されました"
23
+
24
+ #: my-calendar-categories.php:43
25
+ msgid "Category addition failed."
26
+ msgstr "カテゴリーの追加に失敗しました"
27
+
28
+ #: my-calendar-categories.php:53
29
+ msgid "Category deleted successfully. Categories in calendar updated."
30
+ msgstr "カテゴリーが正常に削除されました。カレンダーの中のカテゴリーが更新されました。"
31
+
32
+ #: my-calendar-categories.php:55
33
+ msgid "Category deleted successfully. Categories in calendar not updated."
34
+ msgstr "カテゴリーが正常に削除されました。カレンダーの中のカテゴリーは更新されませんでした。"
35
+
36
+ #: my-calendar-categories.php:57
37
+ msgid "Category not deleted. Categories in calendar updated."
38
+ msgstr "カテゴリーの削除に失敗しました。カレンダーの中のカテゴリーは更新されました。"
39
+
40
+ #: my-calendar-categories.php:66
41
+ msgid "Category edited successfully"
42
+ msgstr "カテゴリーが正常に編集されました"
43
+
44
+ #: my-calendar-categories.php:88
45
+ #: my-calendar-categories.php:112
46
+ #: my-calendar-categories.php:130
47
+ msgid "Add Category"
48
+ msgstr "カテゴリーを追加する"
49
+
50
+ #: my-calendar-categories.php:90
51
+ #: my-calendar-categories.php:112
52
+ msgid "Edit Category"
53
+ msgstr "カテゴリーを編集する"
54
+
55
+ #: my-calendar-categories.php:97
56
+ msgid "Category Editor"
57
+ msgstr "カテゴリーの編集"
58
+
59
+ #: my-calendar-categories.php:113
60
+ #: my-calendar-categories.php:156
61
+ msgid "Category Name"
62
+ msgstr "カテゴリー名"
63
+
64
+ #: my-calendar-categories.php:114
65
+ msgid "Category Color (Hex format)"
66
+ msgstr "カテゴリーの色(16進数形式:#000000など)"
67
+
68
+ #: my-calendar-categories.php:115
69
+ #: my-calendar-categories.php:158
70
+ msgid "Category Icon"
71
+ msgstr "カテゴリー別アイコン"
72
+
73
+ #: my-calendar-categories.php:130
74
+ #: my-calendar-locations.php:121
75
+ msgid "Save Changes"
76
+ msgstr "変更を保存する"
77
+
78
+ #: my-calendar-categories.php:143
79
+ #: my-calendar.php:179
80
+ msgid "Manage Categories"
81
+ msgstr "カテゴリーの管理"
82
+
83
+ #: my-calendar-categories.php:155
84
+ #: my-calendar-event-manager.php:643
85
+ #: my-calendar-locations.php:147
86
+ msgid "ID"
87
+ msgstr "ID"
88
+
89
+ #: my-calendar-categories.php:157
90
+ msgid "Category Color"
91
+ msgstr "カテゴリーの色"
92
+
93
+ #: my-calendar-categories.php:159
94
+ #: my-calendar-categories.php:173
95
+ #: my-calendar-event-manager.php:704
96
+ #: my-calendar-locations.php:149
97
+ #: my-calendar-locations.php:161
98
+ msgid "Edit"
99
+ msgstr "編集"
100
+
101
+ #: my-calendar-categories.php:160
102
+ #: my-calendar-categories.php:179
103
+ #: my-calendar-event-manager.php:73
104
+ #: my-calendar-event-manager.php:704
105
+ #: my-calendar-locations.php:150
106
+ #: my-calendar-locations.php:162
107
+ msgid "Delete"
108
+ msgstr "消去"
109
+
110
+ #: my-calendar-categories.php:176
111
+ #: my-calendar-event-manager.php:685
112
+ #: my-calendar-settings.php:228
113
+ #: my-calendar.php:652
114
+ msgid "N/A"
115
+ msgstr "設定できません"
116
+
117
+ #: my-calendar-categories.php:179
118
+ #: my-calendar-locations.php:162
119
+ msgid "Are you sure you want to delete this category?"
120
+ msgstr "本当にこのカテゴリーを削除してもいいですか?"
121
+
122
+ #: my-calendar-categories.php:190
123
+ msgid "There are no categories in the database - something has gone wrong!"
124
+ msgstr "データベースの中にカテゴリー情報がありません。"
125
+
126
+ #: my-calendar-event-manager.php:27
127
+ #: my-calendar-settings.php:351
128
+ msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
129
+ msgstr ""
130
+
131
+ #: my-calendar-event-manager.php:33
132
+ #: my-calendar-settings.php:357
133
+ msgid "Import from Calendar"
134
+ msgstr ""
135
+
136
+ #: my-calendar-event-manager.php:38
137
+ msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
138
+ msgstr ""
139
+
140
+ #: my-calendar-event-manager.php:68
141
+ msgid "Delete Event"
142
+ msgstr "イベントを削除"
143
+
144
+ #: my-calendar-event-manager.php:68
145
+ msgid "Are you sure you want to delete this event?"
146
+ msgstr "本当にこのイベントを削除していいですか?"
147
+
148
+ #: my-calendar-event-manager.php:81
149
+ msgid "You do not have permission to delete that event."
150
+ msgstr "このイベントを削除する権限がありません"
151
+
152
+ #: my-calendar-event-manager.php:96
153
+ #: my-calendar-event-manager.php:209
154
+ msgid "You do not have permission to approve that event."
155
+ msgstr "このイベントを承認する権限がありません"
156
+
157
+ #: my-calendar-event-manager.php:110
158
+ #: my-calendar-event-manager.php:223
159
+ msgid "You do not have permission to reject that event."
160
+ msgstr "このイベントを却下する権限がありません"
161
+
162
+ #: my-calendar-event-manager.php:133
163
+ #: my-calendar-event-manager.php:154
164
+ #: my-calendar-event-manager.php:178
165
+ #: my-calendar-event-manager.php:193
166
+ #: my-calendar-event-manager.php:833
167
+ #: my-calendar-event-manager.php:838
168
+ #: my-calendar-event-manager.php:843
169
+ #: my-calendar-event-manager.php:855
170
+ #: my-calendar-event-manager.php:865
171
+ #: my-calendar-event-manager.php:873
172
+ #: my-calendar-event-manager.php:882
173
+ #: my-calendar-event-manager.php:890
174
+ msgid "Error"
175
+ msgstr "エラー"
176
+
177
+ #: my-calendar-event-manager.php:133
178
+ msgid "I'm sorry! I couldn't add that event to the database."
179
+ msgstr ""
180
+
181
+ #: my-calendar-event-manager.php:135
182
+ msgid "Event added. It will now show in your calendar."
183
+ msgstr "イベントが追加されました。カレンダー上で確認出来ます。"
184
+
185
+ #: my-calendar-event-manager.php:154
186
+ msgid "Your event was not updated."
187
+ msgstr ""
188
+
189
+ #: my-calendar-event-manager.php:158
190
+ msgid "Nothing was changed in that update."
191
+ msgstr "この更新で変更された箇所はありません"
192
+
193
+ #: my-calendar-event-manager.php:162
194
+ msgid "Event updated successfully"
195
+ msgstr "イベントが正常に更新されました"
196
+
197
+ #: my-calendar-event-manager.php:168
198
+ msgid "You do not have sufficient permissions to edit that event."
199
+ msgstr ""
200
+
201
+ #: my-calendar-event-manager.php:178
202
+ msgid "You can't delete an event if you haven't submitted an event id"
203
+ msgstr ""
204
+
205
+ #: my-calendar-event-manager.php:189
206
+ msgid "Event deleted successfully"
207
+ msgstr "イベントが正常に削除されました"
208
+
209
+ #: my-calendar-event-manager.php:193
210
+ msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
211
+ msgstr ""
212
+
213
+ #: my-calendar-event-manager.php:240
214
+ #: my-calendar-event-manager.php:343
215
+ msgid "Edit Event"
216
+ msgstr "イベントの編集"
217
+
218
+ #: my-calendar-event-manager.php:244
219
+ #: my-calendar-event-manager.php:253
220
+ msgid "You must provide an event id in order to edit it"
221
+ msgstr ""
222
+
223
+ #: my-calendar-event-manager.php:249
224
+ #: my-calendar-event-manager.php:343
225
+ msgid "Copy Event"
226
+ msgstr "イベントのコピー"
227
+
228
+ #: my-calendar-event-manager.php:259
229
+ msgid "Add Event"
230
+ msgstr "イベントの追加"
231
+
232
+ #: my-calendar-event-manager.php:264
233
+ msgid "Manage Events"
234
+ msgstr "イベントの管理"
235
+
236
+ #: my-calendar-event-manager.php:315
237
+ msgid "Sorry! That's an invalid event key."
238
+ msgstr ""
239
+
240
+ #: my-calendar-event-manager.php:320
241
+ msgid "Sorry! We couldn't find an event with that ID."
242
+ msgstr ""
243
+
244
+ #: my-calendar-event-manager.php:343
245
+ msgid "Add an Event"
246
+ msgstr "イベントを追加する"
247
+
248
+ #: my-calendar-event-manager.php:347
249
+ msgid "This event must be approved in order for it to appear on the calendar."
250
+ msgstr ""
251
+
252
+ #: my-calendar-event-manager.php:362
253
+ msgid "Enter your Event Information"
254
+ msgstr "イベントの内容を入力して下さい"
255
+
256
+ #: my-calendar-event-manager.php:364
257
+ msgid "Event Title"
258
+ msgstr "イベント名"
259
+
260
+ #: my-calendar-event-manager.php:367
261
+ msgid "Publish"
262
+ msgstr "公開"
263
+
264
+ #: my-calendar-event-manager.php:367
265
+ msgid "You must approve this event to promote it to the calendar."
266
+ msgstr "このイベントをカレンダーに反映させるには管理者の承認が必要です"
267
+
268
+ #: my-calendar-event-manager.php:369
269
+ msgid "An administrator must approve your new event."
270
+ msgstr ""
271
+
272
+ #: my-calendar-event-manager.php:377
273
+ msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
274
+ msgstr "イベントの説明(HTMLが使えます)"
275
+
276
+ #: my-calendar-event-manager.php:382
277
+ msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
278
+ msgstr "イベントの概要(HTMLが使えます)"
279
+
280
+ #: my-calendar-event-manager.php:387
281
+ msgid "Event Category"
282
+ msgstr "イベントのカテゴリー"
283
+
284
+ #: my-calendar-event-manager.php:412
285
+ msgid "Event Link (Optional)"
286
+ msgstr "イベントへのリンク(オプション)"
287
+
288
+ #: my-calendar-event-manager.php:412
289
+ msgid "This link will expire when the event passes."
290
+ msgstr "イベント終了後、リンクを消す"
291
+
292
+ #: my-calendar-event-manager.php:416
293
+ msgid "Start Date (YYYY-MM-DD)"
294
+ msgstr "イベント開始日 (YYYY-MM-DD)"
295
+
296
+ #: my-calendar-event-manager.php:419
297
+ msgid "End Date (YYYY-MM-DD) (Optional)"
298
+ msgstr "イベント終了日 (YYYY-MM-DD) (オプション)"
299
+
300
+ #: my-calendar-event-manager.php:422
301
+ msgid "Time (hh:mm)"
302
+ msgstr "開始時刻 (hh:mm)"
303
+
304
+ #: my-calendar-event-manager.php:434
305
+ msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
306
+ msgstr "オプション項目です。もし終日イベントの場合や、開始時刻が未定の場合は空欄にして下さい"
307
+
308
+ #: my-calendar-event-manager.php:434
309
+ msgid "Current time difference from GMT is "
310
+ msgstr "現在の時刻はGMTより"
311
+
312
+ #: my-calendar-event-manager.php:434
313
+ msgid " hour(s)"
314
+ msgstr "時間前です。"
315
+
316
+ #: my-calendar-event-manager.php:437
317
+ msgid "End Time (hh:mm)"
318
+ msgstr "終了時刻 (hh:mm)"
319
+
320
+ #: my-calendar-event-manager.php:447
321
+ msgid "Optional. End times will not be displayed on events where this is not set."
322
+ msgstr "オプション項目です。設定しない場合、終了時刻は表示されません"
323
+
324
+ #: my-calendar-event-manager.php:452
325
+ msgid "Recurring Events"
326
+ msgstr "繰り返しイベント"
327
+
328
+ #: my-calendar-event-manager.php:455
329
+ msgid "Repeats for"
330
+ msgstr "繰り返し回数"
331
+
332
+ #: my-calendar-event-manager.php:456
333
+ msgid "Units"
334
+ msgstr "回数"
335
+
336
+ #: my-calendar-event-manager.php:457
337
+ msgid "Does not recur"
338
+ msgstr "繰り返さない"
339
+
340
+ #: my-calendar-event-manager.php:458
341
+ #: my-calendar-event-manager.php:677
342
+ msgid "Daily"
343
+ msgstr "毎日"
344
+
345
+ #: my-calendar-event-manager.php:459
346
+ #: my-calendar-event-manager.php:678
347
+ msgid "Weekly"
348
+ msgstr "毎週"
349
+
350
+ #: my-calendar-event-manager.php:460
351
+ msgid "Bi-weekly"
352
+ msgstr "隔週"
353
+
354
+ #: my-calendar-event-manager.php:461
355
+ msgid "Date of Month (e.g., the 24th of each month)"
356
+ msgstr "月の同じ日付で(例:毎月24日)"
357
+
358
+ #: my-calendar-event-manager.php:462
359
+ msgid "Day of Month (e.g., the 3rd Monday of each month)"
360
+ msgstr "月の同じ曜日で(例:毎月第3月曜日)"
361
+
362
+ #: my-calendar-event-manager.php:463
363
+ msgid "Annually"
364
+ msgstr "毎年"
365
+
366
+ #: my-calendar-event-manager.php:465
367
+ msgid "Entering 0 means forever, if a unit is selected. If the recurrence unit is left at \"Does not recur,\" the event will not reoccur."
368
+ msgstr "0を入力すると永久に繰り返します。回数を指定すると、その回数分を繰り返した後に、繰り返しを停止します。"
369
+
370
+ #: my-calendar-event-manager.php:476
371
+ msgid "Event Registration Status"
372
+ msgstr "イベント登録状況"
373
+
374
+ #: my-calendar-event-manager.php:478
375
+ msgid "Open"
376
+ msgstr "公開"
377
+
378
+ #: my-calendar-event-manager.php:479
379
+ msgid "Closed"
380
+ msgstr "非公開"
381
+
382
+ #: my-calendar-event-manager.php:480
383
+ msgid "Does not apply"
384
+ msgstr "適用しない"
385
+
386
+ #: my-calendar-event-manager.php:483
387
+ msgid "If this event recurs, it can only be registered for as a complete series."
388
+ msgstr "このイベントが繰り返しの場合、一つの完結したセットとして登録されます"
389
+
390
+ #: my-calendar-event-manager.php:493
391
+ #: my-calendar-locations.php:81
392
+ msgid "Event Location"
393
+ msgstr "イベントの場所"
394
+
395
+ #: my-calendar-event-manager.php:502
396
+ msgid "Choose a preset location:"
397
+ msgstr "登録された場所から選択する"
398
+
399
+ #: my-calendar-event-manager.php:516
400
+ msgid "Add recurring locations for later use."
401
+ msgstr "繰り返し使う場所を登録する"
402
+
403
+ #: my-calendar-event-manager.php:525
404
+ #: my-calendar-locations.php:83
405
+ msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
406
+ msgstr "場所についての項目は全てオプションです。<注意:不正確な情報が記入された場合、地図の表示も不正確になります>"
407
+
408
+ #: my-calendar-event-manager.php:528
409
+ #: my-calendar-locations.php:86
410
+ msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
411
+ msgstr "場所の名前(例:福岡タワー)"
412
+
413
+ #: my-calendar-event-manager.php:531
414
+ #: my-calendar-locations.php:89
415
+ msgid "Street Address"
416
+ msgstr "住所(町名・通り名など)"
417
+
418
+ #: my-calendar-event-manager.php:534
419
+ #: my-calendar-locations.php:92
420
+ msgid "Street Address (2)"
421
+ msgstr "住所(ビル・マンション名など)"
422
+
423
+ #: my-calendar-event-manager.php:537
424
+ #: my-calendar-locations.php:95
425
+ msgid "City"
426
+ msgstr "市町村"
427
+
428
+ #: my-calendar-event-manager.php:537
429
+ #: my-calendar-locations.php:95
430
+ msgid "State/Province"
431
+ msgstr "都道府県"
432
+
433
+ #: my-calendar-event-manager.php:537
434
+ #: my-calendar-locations.php:95
435
+ msgid "Postal Code"
436
+ msgstr "郵便番号"
437
+
438
+ #: my-calendar-event-manager.php:540
439
+ #: my-calendar-locations.php:98
440
+ msgid "Country"
441
+ msgstr "国名"
442
+
443
+ #: my-calendar-event-manager.php:543
444
+ #: my-calendar-locations.php:101
445
+ msgid "Initial Zoom"
446
+ msgstr "ズーム初期設定"
447
+
448
+ #: my-calendar-event-manager.php:545
449
+ #: my-calendar-locations.php:103
450
+ msgid "Neighborhood"
451
+ msgstr "ご近所"
452
+
453
+ #: my-calendar-event-manager.php:546
454
+ #: my-calendar-locations.php:104
455
+ msgid "Small City"
456
+ msgstr "市街"
457
+
458
+ #: my-calendar-event-manager.php:547
459
+ #: my-calendar-locations.php:105
460
+ msgid "Large City"
461
+ msgstr "大都市"
462
+
463
+ #: my-calendar-event-manager.php:548
464
+ #: my-calendar-locations.php:106
465
+ msgid "Greater Metro Area"
466
+ msgstr "都市圏"
467
+
468
+ #: my-calendar-event-manager.php:549
469
+ #: my-calendar-locations.php:107
470
+ msgid "State"
471
+ msgstr "都道府県"
472
+
473
+ #: my-calendar-event-manager.php:550
474
+ #: my-calendar-locations.php:108
475
+ msgid "Region"
476
+ msgstr "地方"
477
+
478
+ #: my-calendar-event-manager.php:554
479
+ #: my-calendar-locations.php:112
480
+ msgid "GPS Coordinates (optional)"
481
+ msgstr "GPS情報(オプション)"
482
+
483
+ #: my-calendar-event-manager.php:556
484
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
485
+ msgstr "イベント開催場所についてGPS情報がある場合には、住所を入力せずに地図上にリンクを生成出来ます。"
486
+
487
+ #: my-calendar-event-manager.php:559
488
+ #: my-calendar-locations.php:117
489
+ msgid "Longitude"
490
+ msgstr "経度"
491
+
492
+ #: my-calendar-event-manager.php:559
493
+ #: my-calendar-locations.php:117
494
+ msgid "Latitude"
495
+ msgstr "緯度"
496
+
497
+ #: my-calendar-event-manager.php:567
498
+ msgid "Save Event"
499
+ msgstr "イベントを保存する"
500
+
501
+ #: my-calendar-event-manager.php:644
502
+ #: my-calendar-widgets.php:37
503
+ #: my-calendar-widgets.php:122
504
+ msgid "Title"
505
+ msgstr "イベント名"
506
+
507
+ #: my-calendar-event-manager.php:645
508
+ msgid "Link"
509
+ msgstr "リンク"
510
+
511
+ #: my-calendar-event-manager.php:646
512
+ #: my-calendar-locations.php:148
513
+ msgid "Location"
514
+ msgstr "場所"
515
+
516
+ #: my-calendar-event-manager.php:647
517
+ msgid "Description"
518
+ msgstr "説明"
519
+
520
+ #: my-calendar-event-manager.php:648
521
+ msgid "Start Date"
522
+ msgstr "開始日時"
523
+
524
+ #: my-calendar-event-manager.php:649
525
+ msgid "Recurs"
526
+ msgstr "繰り返し"
527
+
528
+ #: my-calendar-event-manager.php:650
529
+ #: my-calendar-settings.php:204
530
+ #: my-calendar-settings.php:213
531
+ msgid "Author"
532
+ msgstr "登録者"
533
+
534
+ #: my-calendar-event-manager.php:651
535
+ msgid "Category"
536
+ msgstr "カテゴリー"
537
+
538
+ #: my-calendar-event-manager.php:652
539
+ msgid "Edit / Delete"
540
+ msgstr "編集/消去"
541
+
542
+ #: my-calendar-event-manager.php:676
543
+ msgid "Never"
544
+ msgstr "繰り返さない"
545
+
546
+ #: my-calendar-event-manager.php:679
547
+ msgid "Bi-Weekly"
548
+ msgstr ""
549
+
550
+ #: my-calendar-event-manager.php:680
551
+ msgid "Monthly (by date)"
552
+ msgstr ""
553
+
554
+ #: my-calendar-event-manager.php:681
555
+ msgid "Monthly (by day)"
556
+ msgstr ""
557
+
558
+ #: my-calendar-event-manager.php:682
559
+ msgid "Yearly"
560
+ msgstr ""
561
+
562
+ #: my-calendar-event-manager.php:686
563
+ msgid "Forever"
564
+ msgstr "永久"
565
+
566
+ #: my-calendar-event-manager.php:687
567
+ msgid "Times"
568
+ msgstr "回"
569
+
570
+ #: my-calendar-event-manager.php:702
571
+ msgid "Copy"
572
+ msgstr "コピー"
573
+
574
+ #: my-calendar-event-manager.php:705
575
+ msgid "Not editable."
576
+ msgstr "編集権限がありません"
577
+
578
+ #: my-calendar-event-manager.php:711
579
+ msgid "Reject"
580
+ msgstr "却下"
581
+
582
+ #: my-calendar-event-manager.php:713
583
+ msgid "Approve"
584
+ msgstr "承認"
585
+
586
+ #: my-calendar-event-manager.php:718
587
+ msgid "Approved"
588
+ msgstr "承認済み"
589
+
590
+ #: my-calendar-event-manager.php:720
591
+ msgid "Rejected"
592
+ msgstr "却下されました"
593
+
594
+ #: my-calendar-event-manager.php:733
595
+ msgid "There are no events in the database!"
596
+ msgstr "データベースにイベント情報がありません!"
597
+
598
+ #: my-calendar-event-manager.php:833
599
+ msgid "Your event end date must be either after or the same as your event begin date"
600
+ msgstr "イベント終了日は、開始日と同日かそれ以降の日付にしてください"
601
+
602
+ #: my-calendar-event-manager.php:838
603
+ msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
604
+ msgstr ""
605
+
606
+ #: my-calendar-event-manager.php:843
607
+ msgid "Both start and end dates must be in the format YYYY-MM-DD"
608
+ msgstr "開始日と終了日は、YYYY-MM-DD(例:2010-10-15)のように指定してください"
609
+
610
+ #: my-calendar-event-manager.php:855
611
+ msgid "The time field must either be blank or be entered in the format hh:mm"
612
+ msgstr "開始時刻は空欄にするか、hh:mm(例:15:00)のように指定してください"
613
+
614
+ #: my-calendar-event-manager.php:865
615
+ msgid "The end time field must either be blank or be entered in the format hh:mm"
616
+ msgstr "終了時刻は空欄にするか、hh:mm(例:18:00)のように指定してください"
617
+
618
+ #: my-calendar-event-manager.php:873
619
+ msgid "The URL entered must either be prefixed with http:// or be completely blank"
620
+ msgstr "イベントへのリンク欄は、http://から始まるURLを入れるか、空欄にしてください"
621
+
622
+ #: my-calendar-event-manager.php:882
623
+ msgid "The event title must be between 1 and 255 characters in length."
624
+ msgstr "イベント名は1文字以上255文字(全角128文字)以下にしてください"
625
+
626
+ #: my-calendar-event-manager.php:890
627
+ msgid "The repetition value must be 0 unless a type of recurrence is selected."
628
+ msgstr "繰り返しイベントを「繰り返さない」に設定した場合、繰り返し回数は必ず「0」にしてください"
629
+
630
+ #: my-calendar-help.php:6
631
+ msgid "How to use My Calendar"
632
+ msgstr "My Calendar の使い方"
633
+
634
+ #: my-calendar-help.php:11
635
+ msgid "Shortcode Syntax"
636
+ msgstr "ショートコードの構文"
637
+
638
+ #: my-calendar-help.php:14
639
+ msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
640
+ msgstr "これらのショートコードは、投稿、ページ、ウィジェットで使えます。"
641
+
642
+ #: my-calendar-help.php:18
643
+ msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
644
+ msgstr "基本のショートコードです。投稿・ページの中に、カテゴリーが反映できる通常の月毎カレンダーを表示します。"
645
+
646
+ #: my-calendar-help.php:21
647
+ msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
648
+ msgstr "このショートコードは、<code>category</code>, <code>format</code> ,<code>showkey</code>という3つの属性をサポートしています。カテゴリーの属性にはカテゴリー名かカテゴリー ID を設定します(カテゴリー名はうまく動作しない場合があります)。カテゴリーを設定する事で、そのカテゴリーに属するイベントだけを表示する事ができます。複数のカテゴリーを表示する場合は、カテゴリー名かカテゴリーIDの間を<code>|</code>(パイプ)で区切ります。次に<code>format</code> を<code>list</code>にする事で予定のない日付を飛ばしたリスト表示にできます。また<code>mini</code>は、サイドバーなど狭い場所へ適した小さいカレンダーを表示します。最後に<code>showkey</code>ですが、<code>no</code>にするとイベントリスト下のカテゴリーリストを非表示にします。一つしかカテゴリーを設定しない場合は<code>no</code>にするといいでしょう。"
649
+
650
+ #: my-calendar-help.php:24
651
+ msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
652
+ msgstr "このショートコードは「登録済のイベント」ウィジェットを表示します。ここで設定した属性はウィジェットの設定を上書きします。属性を設定しないと、ウィジェットの設定で表示されます。<code>before</code>と<code>after</code>属性には数字で件数を指定します。<code>type</code>属性には\"event\" か \"days\" のどちらかを指定します。<code>category</code>属性の設定は上記を参考にしてください。テンプレート用コードの詳細は下の方で詳しく解説します。"
653
+
654
+ #: my-calendar-help.php:27
655
+ msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
656
+ msgstr "このショートコードは「本日のイベント」ウィジェットを表示します。設定できる属性はカテゴリーとテンプレートです。"
657
+
658
+ #: my-calendar-help.php:34
659
+ msgid "Category Icons"
660
+ msgstr "カテゴリーのアイコン"
661
+
662
+ #: my-calendar-help.php:37
663
+ msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
664
+ msgstr "My Calendar プラグインは様々な形のカレンダーを管理出来るよう設計されています。各カレンダーの基本はカテゴリーです。全てのカテゴリーを含んだカレンダーはもちろん、カテゴリー別にページを分けたカレンダーを作ったりする事も簡単に出来ます。場所も設定出来るので、色々な場所を含むカレンダーも作れます。"
665
+
666
+ #: my-calendar-help.php:40
667
+ msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
668
+ msgstr "最初から用意されているカテゴリーアイコンはあなたの用途やデザインに合わないかもしれません。そこであなたの準備したアイコンをプラグインの中の「icons」フォルダにアップロードする事で、すぐにカレンダーで使えるようになります。また、アイコンを「\"my-calendar-custom\"」フォルダを作成してそこにアップロードする事で、プラグインをアップグレードした時に上書きされるのを防止できます。"
669
+
670
+ #: my-calendar-help.php:40
671
+ msgid "Your icons folder is:"
672
+ msgstr "アイコンフォルダの位置:"
673
+
674
+ #: my-calendar-help.php:40
675
+ msgid "You can alternately place icons in:"
676
+ msgstr "こちらのディレクトリにアイコンを配置する事もできます:"
677
+
678
+ #: my-calendar-help.php:48
679
+ msgid "Widget Templating"
680
+ msgstr "ウィジェットテンプレートのコード"
681
+
682
+ #: my-calendar-help.php:51
683
+ msgid "These codes are available in calendar widgets to create your own custom calendar format."
684
+ msgstr "これらのコードがカレンダーウィジェットをカスタマイズするために用意されています。"
685
+
686
+ #: my-calendar-help.php:55
687
+ msgid "Displays the name of the category the event is in."
688
+ msgstr "イベントが含まれるカテゴリー名を表示します"
689
+
690
+ #: my-calendar-help.php:58
691
+ msgid "Displays the title of the event."
692
+ msgstr "イベントのタイトルを表示します"
693
+
694
+ #: my-calendar-help.php:61
695
+ msgid "Displays the start time for the event."
696
+ msgstr "イベントの開始時刻を表示します"
697
+
698
+ #: my-calendar-help.php:64
699
+ msgid "Displays the date on which the event begins."
700
+ msgstr "イベントの開始日時を表示します"
701
+
702
+ #: my-calendar-help.php:67
703
+ msgid "Displays the date on which the event ends."
704
+ msgstr "イベントの終了日時を表示します"
705
+
706
+ #: my-calendar-help.php:70
707
+ msgid "Displays the time at which the event ends."
708
+ msgstr "イベントの終了時刻を表示します"
709
+
710
+ #: my-calendar-help.php:73
711
+ msgid "Displays the WordPress author who posted the event."
712
+ msgstr "イベントの登録者を表示します"
713
+
714
+ #: my-calendar-help.php:76
715
+ msgid "Displays the URL provided for the event."
716
+ msgstr "イベントのURLを表示します"
717
+
718
+ #: my-calendar-help.php:79
719
+ msgid "Displays the description of the event."
720
+ msgstr "イベントの説明を表示します"
721
+
722
+ #: my-calendar-help.php:82
723
+ msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
724
+ msgstr "タイトルをリンクとして表示します(リンク情報がない場合はタイトルのみ表示)"
725
+
726
+ #: my-calendar-help.php:85
727
+ msgid "Displays the name of the location of the event."
728
+ msgstr "イベントの場所を表示します"
729
+
730
+ #: my-calendar-help.php:88
731
+ msgid "Displays the first line of the site address."
732
+ msgstr "住所(町名・通り名など)を表示します"
733
+
734
+ #: my-calendar-help.php:91
735
+ msgid "Displays the second line of the site address."
736
+ msgstr "住所(ビル・マンション名など)を表示します"
737
+
738
+ #: my-calendar-help.php:94
739
+ msgid "Displays the city for the event."
740
+ msgstr "市町村を表示します"
741
+
742
+ #: my-calendar-help.php:97
743
+ msgid "Displays the state for the event."
744
+ msgstr "都道府県を表示します"
745
+
746
+ #: my-calendar-help.php:100
747
+ msgid "Displays the postcode for the event."
748
+ msgstr "郵便番号を表示します"
749
+
750
+ #: my-calendar-help.php:103
751
+ msgid "Displays the country for the event location."
752
+ msgstr "国名を表示します"
753
+
754
+ #: my-calendar-help.php:106
755
+ msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
756
+ msgstr "イベントの場所を <a href=\"http://microformats.org/wiki/hcard\">hcard</a> 様式で表示します"
757
+
758
+ #: my-calendar-help.php:109
759
+ msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
760
+ msgstr "正しく緯度・経度情報が入っている場合、Googleマップへのリンクを表示します"
761
+
762
+ #: my-calendar-help.php:112
763
+ msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
764
+ msgstr "イベント登録状況の公開・非公開を表示します。「適用しない」を選ぶと空欄で表示されます。"
765
+
766
+ #: my-calendar-help.php:115
767
+ msgid "Displays the short version of the event description."
768
+ msgstr "イベントの概要を表示します"
769
+
770
+ #: my-calendar-help.php:118
771
+ msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
772
+ msgstr "イベントのステータスを「投稿済」か「保留中」で表示します。メールのテンプレートで使用します。"
773
+
774
+ #: my-calendar-help.php:121
775
+ msgid "Produces the address of the current event¥'s category icon."
776
+ msgstr "現在のイベントのカテゴリーのアイコンを表示します"
777
+
778
+ #: my-calendar-help.php:124
779
+ msgid "Produces the hex code for the current event¥'s category color."
780
+ msgstr "現在のイベントの色を表示します"
781
+
782
+ #: my-calendar-locations.php:22
783
+ msgid "Location added successfully"
784
+ msgstr "場所が正常に追加されました"
785
+
786
+ #: my-calendar-locations.php:24
787
+ msgid "Location could not be added to database"
788
+ msgstr "場所をデータベースに追加出来ませんでした"
789
+
790
+ #: my-calendar-locations.php:30
791
+ msgid "Location deleted successfully"
792
+ msgstr "場所を正常に削除しました"
793
+
794
+ #: my-calendar-locations.php:32
795
+ msgid "Location could not be deleted"
796
+ msgstr "場所を削除する事が出来ませんでした"
797
+
798
+ #: my-calendar-locations.php:43
799
+ msgid "Location could not be edited."
800
+ msgstr "場所を編集する事が出来ませんでした"
801
+
802
+ #: my-calendar-locations.php:45
803
+ msgid "Location was not changed."
804
+ msgstr "場所を変更する事が出来ませんでした"
805
+
806
+ #: my-calendar-locations.php:47
807
+ msgid "Location edited successfully"
808
+ msgstr "場所が正常に編集されました"
809
+
810
+ #: my-calendar-locations.php:59
811
+ msgid "Add New Location"
812
+ msgstr "新しい場所の追加"
813
+
814
+ #: my-calendar-locations.php:61
815
+ msgid "Edit Location"
816
+ msgstr "場所を編集する"
817
+
818
+ #: my-calendar-locations.php:66
819
+ msgid "Location Editor"
820
+ msgstr "場所の編集"
821
+
822
+ #: my-calendar-locations.php:114
823
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
824
+ msgstr "もしGPS等による緯度・経度のデータがある場合は、入力した住所よりも正確にピンポイントで地図上に表示出来ます。"
825
+
826
+ #: my-calendar-locations.php:121
827
+ msgid "Add Location"
828
+ msgstr "場所を追加する"
829
+
830
+ #: my-calendar-locations.php:135
831
+ #: my-calendar.php:180
832
+ msgid "Manage Locations"
833
+ msgstr "場所の管理"
834
+
835
+ #: my-calendar-locations.php:170
836
+ msgid "There are no locations in the database yet!"
837
+ msgstr "データベースにまだ場所が登録されていません。"
838
+
839
+ #: my-calendar-locations.php:174
840
+ msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
841
+ msgstr "注記:再利用のために登録されている場所を編集/削除しても、すでに登録されているイベントのデータに影響はありません。場所のデータベースは、イベントの場所としてよく登録される場所を保存するだけのものです。"
842
+
843
+ #: my-calendar-settings.php:67
844
+ msgid "Categories imported successfully."
845
+ msgstr "カテゴリーのインポートに成功しました"
846
+
847
+ #: my-calendar-settings.php:69
848
+ msgid "Categories not imported."
849
+ msgstr ""
850
+
851
+ #: my-calendar-settings.php:72
852
+ msgid "Events imported successfully."
853
+ msgstr ""
854
+
855
+ #: my-calendar-settings.php:74
856
+ msgid "Events not imported."
857
+ msgstr ""
858
+
859
+ #: my-calendar-settings.php:165
860
+ msgid "Settings saved"
861
+ msgstr "設定が保存されました"
862
+
863
+ #: my-calendar-settings.php:188
864
+ msgid "My Calendar Options"
865
+ msgstr "My Calendar の設定オプション"
866
+
867
+ #: my-calendar-settings.php:195
868
+ msgid "Calendar Settings"
869
+ msgstr "カレンダーの設定"
870
+
871
+ #: my-calendar-settings.php:199
872
+ msgid "Calendar Options: Management"
873
+ msgstr "カレンダーのオプション:管理"
874
+
875
+ #: my-calendar-settings.php:201
876
+ msgid "Choose the lowest user group that may create events"
877
+ msgstr "どのユーザ権限からイベントを作成出来るようにしますか?"
878
+
879
+ #: my-calendar-settings.php:202
880
+ #: my-calendar-settings.php:211
881
+ msgid "Subscriber"
882
+ msgstr "購読者"
883
+
884
+ #: my-calendar-settings.php:203
885
+ #: my-calendar-settings.php:212
886
+ msgid "Contributor"
887
+ msgstr "寄稿者"
888
+
889
+ #: my-calendar-settings.php:205
890
+ #: my-calendar-settings.php:214
891
+ msgid "Editor"
892
+ msgstr "編集者"
893
+
894
+ #: my-calendar-settings.php:206
895
+ #: my-calendar-settings.php:215
896
+ msgid "Administrator"
897
+ msgstr "管理者"
898
+
899
+ #: my-calendar-settings.php:210
900
+ msgid "Choose the lowest user group that may approve events"
901
+ msgstr "どのユーザ権限からイベントを承認出来るようにしますか?"
902
+
903
+ #: my-calendar-settings.php:219
904
+ msgid "Enable approval options."
905
+ msgstr "承認機能を有効にする"
906
+
907
+ #: my-calendar-settings.php:223
908
+ msgid "Calendar Options: Customize Text"
909
+ msgstr "カレンダーのオプション:テキストのカスタマイズ"
910
+
911
+ #: my-calendar-settings.php:225
912
+ msgid "Show Heading for Calendar"
913
+ msgstr "カレンダーに見出しを付ける"
914
+
915
+ #: my-calendar-settings.php:228
916
+ msgid "Label for events without a specific time"
917
+ msgstr "時間の詳細がない場合のラベル"
918
+
919
+ #: my-calendar-settings.php:231
920
+ msgid "Previous events link text"
921
+ msgstr "前のリンクへのテキスト"
922
+
923
+ #: my-calendar-settings.php:231
924
+ msgid "Previous Events"
925
+ msgstr "先月のイベント"
926
+
927
+ #: my-calendar-settings.php:234
928
+ msgid "Next events link text"
929
+ msgstr "次のリンクへのテキスト"
930
+
931
+ #: my-calendar-settings.php:234
932
+ msgid "Next Events"
933
+ msgstr "来月のイベント"
934
+
935
+ #: my-calendar-settings.php:237
936
+ msgid "Text when events are open"
937
+ msgstr "公開イベントの場合"
938
+
939
+ #: my-calendar-settings.php:237
940
+ msgid "Registration is open"
941
+ msgstr "登録を受け付けています"
942
+
943
+ #: my-calendar-settings.php:240
944
+ msgid "Text when events are closed"
945
+ msgstr "非公開イベントの場合"
946
+
947
+ #: my-calendar-settings.php:240
948
+ msgid "Registration is closed"
949
+ msgstr "登録は受け付けていません"
950
+
951
+ #: my-calendar-settings.php:243
952
+ msgid "Additional caption text"
953
+ msgstr "見出しのタイトル"
954
+
955
+ #: my-calendar-settings.php:243
956
+ msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
957
+ msgstr "見出しはカレンダー・イベントリストの年月部分の横に表示されます。"
958
+
959
+ #: my-calendar-settings.php:247
960
+ msgid "Calendar Options: Output"
961
+ msgstr "カレンダーのオプション:表示"
962
+
963
+ #: my-calendar-settings.php:249
964
+ msgid "In list mode, show how many months of events at a time:"
965
+ msgstr "リストモードで一度に表示する月数:"
966
+
967
+ #: my-calendar-settings.php:252
968
+ msgid "Date format in list mode"
969
+ msgstr "リストモードでの日付様式"
970
+
971
+ #: my-calendar-settings.php:253
972
+ msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
973
+ msgstr "日付様式は<a href=\"http://php.net/date\">PHP <code>date()</code> function</a>の様な構文を使います。オプションを保存することで反映されます。"
974
+
975
+ #: my-calendar-settings.php:256
976
+ msgid "Do you want to display the author name on events?"
977
+ msgstr "登録者の名前を表示しますか?"
978
+
979
+ #: my-calendar-settings.php:259
980
+ msgid "Display a jumpbox for changing month and year quickly?"
981
+ msgstr "年月指定ボックスを表示しますか?"
982
+
983
+ #: my-calendar-settings.php:262
984
+ msgid "Hide category icons in output"
985
+ msgstr "カテゴリーアイコンを非表示にする"
986
+
987
+ #: my-calendar-settings.php:265
988
+ msgid "Show Link to Google Map (when sufficient address information is available.)"
989
+ msgstr "Google Mapのリンクを表示する(緯度・経度のデータがある場合のみ)"
990
+
991
+ #: my-calendar-settings.php:268
992
+ msgid "Show Event Address in Details"
993
+ msgstr "イベントの詳細場所を表示する"
994
+
995
+ #: my-calendar-settings.php:271
996
+ msgid "Show short description field on calendar."
997
+ msgstr "イベントの概要のみを表示する"
998
+
999
+ #: my-calendar-settings.php:274
1000
+ msgid "Show full description field on calendar."
1001
+ msgstr "イベントの説明を全文表示する"
1002
+
1003
+ #: my-calendar-settings.php:277
1004
+ msgid "Links associated with events will automatically expire after the event has passed."
1005
+ msgstr "イベント関連のリンクを、イベント終了後自動的に無効にする。"
1006
+
1007
+ #: my-calendar-settings.php:280
1008
+ msgid "Show current availability status of events."
1009
+ msgstr "イベントの登録受付状況を表示する"
1010
+
1011
+ #: my-calendar-settings.php:283
1012
+ msgid "If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
1013
+ msgstr "もし繰り返しイベントの設定が存在しない日付に当たる場合(例:2月の第5水曜日)、イベントを前の週に移動させる"
1014
+
1015
+ #: my-calendar-settings.php:284
1016
+ msgid "If this option is unchecked, recurring events which fall on dates which don't exist will simply not be shown on the calendar."
1017
+ msgstr "このオプションにチェックがない場合、存在しない日付に当たった繰り返しイベントはカレンダーに表示されません"
1018
+
1019
+ #: my-calendar-settings.php:288
1020
+ msgid "Calendar Options: Input"
1021
+ msgstr "カレンダーのオプション:入力画面"
1022
+
1023
+ #: my-calendar-settings.php:291
1024
+ msgid "Show Event Location Dropdown Menu"
1025
+ msgstr "登録された場所のドロップダウンメニューを表示"
1026
+
1027
+ #: my-calendar-settings.php:291
1028
+ msgid "Show Event Short Description field"
1029
+ msgstr "イベントの概要を表示"
1030
+
1031
+ #: my-calendar-settings.php:291
1032
+ msgid "Show Event Description Field"
1033
+ msgstr "イベントの説明を表示"
1034
+
1035
+ #: my-calendar-settings.php:291
1036
+ msgid "Show Event Category field"
1037
+ msgstr "イベントのカテゴリーを表示"
1038
+
1039
+ #: my-calendar-settings.php:291
1040
+ msgid "Show Event Link field"
1041
+ msgstr "イベントへのリンクを表示"
1042
+
1043
+ #: my-calendar-settings.php:291
1044
+ msgid "Show Event Recurrence Options"
1045
+ msgstr "繰り返しイベントオプションの表示"
1046
+
1047
+ #: my-calendar-settings.php:291
1048
+ msgid "Show event registration options"
1049
+ msgstr "イベント登録状況の表示"
1050
+
1051
+ #: my-calendar-settings.php:291
1052
+ msgid "Show event location fields"
1053
+ msgstr "イベントの場所の表示"
1054
+
1055
+ #: my-calendar-settings.php:300
1056
+ msgid "Administrators see all input options"
1057
+ msgstr "管理者には全ての入力フィールドを表示"
1058
+
1059
+ #: my-calendar-settings.php:304
1060
+ msgid "Calendar Options: Style"
1061
+ msgstr "カレンダーのオプション:スタイル"
1062
+
1063
+ #: my-calendar-settings.php:306
1064
+ msgid "Default usage of category colors."
1065
+ msgstr "カテゴリーの色をそのまま使う"
1066
+
1067
+ #: my-calendar-settings.php:307
1068
+ msgid "Apply category colors to event titles as a font color."
1069
+ msgstr "カテゴリーの色をイベントのタイトルに使う"
1070
+
1071
+ #: my-calendar-settings.php:308
1072
+ msgid "Apply category colors to event titles as a background color."
1073
+ msgstr "カテゴリーの色をイベントのタイトルの背景に使う"
1074
+
1075
+ #: my-calendar-settings.php:313
1076
+ msgid "Calendar Options: Email Notifications"
1077
+ msgstr "カレンダーのオプション:メール通知"
1078
+
1079
+ #: my-calendar-settings.php:317
1080
+ msgid "Send Email Notifications when new events are scheduled or reserved."
1081
+ msgstr "新規イベントが登録された場合、メールで通知する"
1082
+
1083
+ #: my-calendar-settings.php:323
1084
+ msgid "Notification messages are sent to: "
1085
+ msgstr "通知メールの宛先:"
1086
+
1087
+ #: my-calendar-settings.php:327
1088
+ msgid "Email subject"
1089
+ msgstr "メールのタイトル"
1090
+
1091
+ #: my-calendar-settings.php:327
1092
+ msgid "New event Added"
1093
+ msgstr "新しいイベントが追加されました"
1094
+
1095
+ #: my-calendar-settings.php:331
1096
+ msgid "Message Body"
1097
+ msgstr "メール本文"
1098
+
1099
+ #: my-calendar-settings.php:331
1100
+ msgid "New Event:"
1101
+ msgstr "新しいイベント:"
1102
+
1103
+ #: my-calendar-settings.php:332
1104
+ msgid "Shortcode Help"
1105
+ msgstr "ショートコードのヘルプ"
1106
+
1107
+ #: my-calendar-settings.php:332
1108
+ msgid "All template shortcodes are available."
1109
+ msgstr ":すべてのテンプレートショートコードが使えます"
1110
+
1111
+ #: my-calendar-settings.php:341
1112
+ msgid "Save Settings"
1113
+ msgstr "設定を保存する"
1114
+
1115
+ #: my-calendar-styles.php:46
1116
+ msgid "Style Settings saved"
1117
+ msgstr "スタイルシートの設定を保存しました"
1118
+
1119
+ #: my-calendar-styles.php:70
1120
+ msgid "My Calendar Styles"
1121
+ msgstr "My Calendar の CSS 編集"
1122
+
1123
+ #: my-calendar-styles.php:74
1124
+ msgid "Calendar Style Settings"
1125
+ msgstr "カレンダーのスタイル設定"
1126
+
1127
+ #: my-calendar-styles.php:78
1128
+ msgid "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
1129
+ msgstr "CSS と JavaScript を特定のページにだけ適用する(カンマでページ ID を区切ってください)"
1130
+
1131
+ #: my-calendar-styles.php:81
1132
+ msgid "CSS Style Options"
1133
+ msgstr "CSS スタイルオプション"
1134
+
1135
+ #: my-calendar-styles.php:83
1136
+ msgid "Reset the My Calendar stylesheet to the default"
1137
+ msgstr "My Calendar のスタイルシートをデフォルトにリセットする"
1138
+
1139
+ #: my-calendar-styles.php:83
1140
+ msgid "Disable My Calendar Stylesheet"
1141
+ msgstr "My Calendar のスタイルシートを無効にする"
1142
+
1143
+ #: my-calendar-styles.php:86
1144
+ msgid "Edit the stylesheet for My Calendar"
1145
+ msgstr "My Calendar のスタイルシートを編集する"
1146
+
1147
+ #: my-calendar-styles.php:89
1148
+ #: my-calendar-styles.php:101
1149
+ #: my-calendar-styles.php:113
1150
+ #: my-calendar-styles.php:125
1151
+ msgid "Save"
1152
+ msgstr "保存する"
1153
+
1154
+ #: my-calendar-styles.php:93
1155
+ msgid "Calendar Behaviors: Calendar View"
1156
+ msgstr "カレンダーの動作:カレンダー表示"
1157
+
1158
+ #: my-calendar-styles.php:95
1159
+ msgid "Reset the My Calendar Calendar Javascript"
1160
+ msgstr "JavaScript をリセットする"
1161
+
1162
+ #: my-calendar-styles.php:95
1163
+ msgid "Disable Calendar Javascript Effects"
1164
+ msgstr "JavaScript のエフェクトを無効にする"
1165
+
1166
+ #: my-calendar-styles.php:98
1167
+ msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1168
+ msgstr "カレンダー表示の jQuery を編集する"
1169
+
1170
+ #: my-calendar-styles.php:105
1171
+ msgid "Calendar Behaviors: List View"
1172
+ msgstr "カレンダーの動作:リスト表示"
1173
+
1174
+ #: my-calendar-styles.php:107
1175
+ msgid "Reset the My Calendar List Javascript"
1176
+ msgstr "JavaScript をリセットする"
1177
+
1178
+ #: my-calendar-styles.php:107
1179
+ msgid "Disable List Javascript Effects"
1180
+ msgstr "JavaScript のエフェクトを無効にする"
1181
+
1182
+ #: my-calendar-styles.php:110
1183
+ msgid "Edit the jQuery scripts for My Calendar in List format"
1184
+ msgstr "リスト表示の jQuery を編集する"
1185
+
1186
+ #: my-calendar-styles.php:117
1187
+ msgid "Calendar Behaviors: Mini Calendar View"
1188
+ msgstr "カレンダーの動作:ミニカレンダー"
1189
+
1190
+ #: my-calendar-styles.php:119
1191
+ msgid "Reset the My Calendar Mini Format Javascript"
1192
+ msgstr "JavaScript をリセットする"
1193
+
1194
+ #: my-calendar-styles.php:119
1195
+ msgid "Disable Mini Javascript Effects"
1196
+ msgstr "JavaScript のエフェクトを無効にする"
1197
+
1198
+ #: my-calendar-styles.php:122
1199
+ msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1200
+ msgstr "ミニカレンダーの jQuery を編集する"
1201
+
1202
+ #: my-calendar-upgrade-db.php:19
1203
+ msgid "The My Calendar database needs to be updated."
1204
+ msgstr "データベースを更新してください"
1205
+
1206
+ #: my-calendar-upgrade-db.php:20
1207
+ #: my-calendar-upgrade-db.php:34
1208
+ msgid "Update now"
1209
+ msgstr "アップデートする"
1210
+
1211
+ #: my-calendar-upgrade-db.php:33
1212
+ msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
1213
+ msgstr "イベントのデータが入っていないので、My Calendar はデータベースが最新の物かどうか判断出来ません。もし新規イベントが追加出来ない場合、データベースをアップデートして下さい。"
1214
+
1215
+ #: my-calendar-upgrade-db.php:44
1216
+ msgid "My Calendar Database is updated."
1217
+ msgstr "データベースが更新されました"
1218
+
1219
+ #: my-calendar-widgets.php:11
1220
+ #: my-calendar-widgets.php:51
1221
+ #: my-calendar-widgets.php:52
1222
+ msgid "Today's Events"
1223
+ msgstr "本日のイベント"
1224
+
1225
+ #: my-calendar-widgets.php:41
1226
+ #: my-calendar-widgets.php:126
1227
+ msgid "Template"
1228
+ msgstr "テンプレート"
1229
+
1230
+ #: my-calendar-widgets.php:45
1231
+ msgid "Show this text if there are no events today:"
1232
+ msgstr "当日にイベントがない場合に表示するテキスト"
1233
+
1234
+ #: my-calendar-widgets.php:65
1235
+ #: my-calendar-widgets.php:152
1236
+ #: my-calendar-widgets.php:153
1237
+ msgid "Upcoming Events"
1238
+ msgstr "登録済のイベント"
1239
+
1240
+ #: my-calendar-widgets.php:130
1241
+ msgid "Widget Options"
1242
+ msgstr "ウィジェットオプション"
1243
+
1244
+ #: my-calendar-widgets.php:132
1245
+ msgid "Display upcoming events by:"
1246
+ msgstr "今後のイベントの表示方法:"
1247
+
1248
+ #: my-calendar-widgets.php:133
1249
+ msgid "Events (e.g. 2 past, 3 future)"
1250
+ msgstr "イベント単位"
1251
+
1252
+ #: my-calendar-widgets.php:134
1253
+ msgid "Dates (e.g. 4 days past, 5 forward)"
1254
+ msgstr "日数単位"
1255
+
1256
+ #: my-calendar-widgets.php:138
1257
+ msgid "events into the future;"
1258
+ msgstr "本日より後のイベント表示数"
1259
+
1260
+ #: my-calendar-widgets.php:139
1261
+ msgid "events from the past"
1262
+ msgstr "本日より前のイベント表示数"
1263
+
1264
+ #: my-calendar-widgets.php:142
1265
+ msgid "days into the future;"
1266
+ msgstr "本日より何日後まで表示しますか?"
1267
+
1268
+ #: my-calendar-widgets.php:143
1269
+ msgid "days from the past"
1270
+ msgstr "本日より何日前まで表示しますか?"
1271
+
1272
+ #: my-calendar-widgets.php:146
1273
+ msgid "Show only this category:"
1274
+ msgstr "指定カテゴリーのイベントのみ表示する:"
1275
+
1276
+ #: my-calendar-widgets.php:285
1277
+ msgid "There are no events currently scheduled."
1278
+ msgstr ""
1279
+
1280
+ #: my-calendar-widgets.php:470
1281
+ msgid "Published"
1282
+ msgstr "承認済み"
1283
+
1284
+ #: my-calendar-widgets.php:472
1285
+ msgid "Reserved"
1286
+ msgstr "保留中"
1287
+
1288
+ #: my-calendar.php:56
1289
+ #: my-calendar.php:181
1290
+ msgid "Settings"
1291
+ msgstr "設定"
1292
+
1293
+ #: my-calendar.php:57
1294
+ #: my-calendar.php:183
1295
+ msgid "Help"
1296
+ msgstr "ヘルプ"
1297
+
1298
+ #: my-calendar.php:81
1299
+ msgid "Buy the Beginner's Guide"
1300
+ msgstr "初心者マニュアルを購入する"
1301
+
1302
+ #: my-calendar.php:82
1303
+ msgid "Get Support"
1304
+ msgstr "作者サイト"
1305
+
1306
+ #: my-calendar.php:83
1307
+ #: my-calendar.php:183
1308
+ msgid "My Calendar Help"
1309
+ msgstr "My Calendar ヘルプ"
1310
+
1311
+ #: my-calendar.php:84
1312
+ msgid "Make a Donation"
1313
+ msgstr "作者に寄付する"
1314
+
1315
+ #. #-#-#-#-# plugin.pot (My Calendar 1.5.0) #-#-#-#-#
1316
+ #. Plugin Name of the plugin/theme
1317
+ #: my-calendar.php:172
1318
+ msgid "My Calendar"
1319
+ msgstr "My Calendar"
1320
+
1321
+ #: my-calendar.php:175
1322
+ msgid "Add/Edit Events"
1323
+ msgstr "イベントの追加/編集"
1324
+
1325
+ #: my-calendar.php:182
1326
+ msgid "Style Editor"
1327
+ msgstr "CSS 編集"
1328
+
1329
+ #: my-calendar.php:633
1330
+ msgid "Event Details"
1331
+ msgstr ""
1332
+
1333
+ #: my-calendar.php:642
1334
+ msgid "Close"
1335
+ msgstr ""
1336
+
1337
+ #: my-calendar.php:652
1338
+ msgid "Not Applicable"
1339
+ msgstr "情報がありません"
1340
+
1341
+ #: my-calendar.php:664
1342
+ msgid "Posted by"
1343
+ msgstr "投稿者"
1344
+
1345
+ #: my-calendar.php:710
1346
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1347
+ msgstr "このイベントはシリーズの一つです。このイベントに参加するには最初に登録する必要があります。"
1348
+
1349
+ #: my-calendar.php:1340
1350
+ msgid "Month"
1351
+ msgstr "月"
1352
+
1353
+ #: my-calendar.php:1341
1354
+ #: my-calendar.php:1427
1355
+ msgid "January"
1356
+ msgstr "1月"
1357
+
1358
+ #: my-calendar.php:1342
1359
+ #: my-calendar.php:1427
1360
+ msgid "February"
1361
+ msgstr "2月"
1362
+
1363
+ #: my-calendar.php:1343
1364
+ #: my-calendar.php:1427
1365
+ msgid "March"
1366
+ msgstr "3月"
1367
+
1368
+ #: my-calendar.php:1344
1369
+ #: my-calendar.php:1427
1370
+ msgid "April"
1371
+ msgstr "4月"
1372
+
1373
+ #: my-calendar.php:1345
1374
+ #: my-calendar.php:1427
1375
+ msgid "May"
1376
+ msgstr "5月"
1377
+
1378
+ #: my-calendar.php:1346
1379
+ #: my-calendar.php:1427
1380
+ msgid "June"
1381
+ msgstr "6月"
1382
+
1383
+ #: my-calendar.php:1347
1384
+ #: my-calendar.php:1427
1385
+ msgid "July"
1386
+ msgstr "7月"
1387
+
1388
+ #: my-calendar.php:1348
1389
+ #: my-calendar.php:1427
1390
+ msgid "August"
1391
+ msgstr "8月"
1392
+
1393
+ #: my-calendar.php:1349
1394
+ #: my-calendar.php:1427
1395
+ msgid "September"
1396
+ msgstr "9月"
1397
+
1398
+ #: my-calendar.php:1350
1399
+ #: my-calendar.php:1427
1400
+ msgid "October"
1401
+ msgstr "10月"
1402
+
1403
+ #: my-calendar.php:1351
1404
+ #: my-calendar.php:1427
1405
+ msgid "November"
1406
+ msgstr "11月"
1407
+
1408
+ #: my-calendar.php:1352
1409
+ #: my-calendar.php:1427
1410
+ msgid "December"
1411
+ msgstr "12月"
1412
+
1413
+ #: my-calendar.php:1354
1414
+ msgid "Year"
1415
+ msgstr "年"
1416
+
1417
+ #: my-calendar.php:1379
1418
+ msgid "Go"
1419
+ msgstr "移動"
1420
+
1421
+ #: my-calendar.php:1401
1422
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1423
+ msgstr "<abbr title=\"Sunday\">日曜日</abbr>"
1424
+
1425
+ #: my-calendar.php:1402
1426
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1427
+ msgstr "<abbr title=\"Monday\">月曜日</abbr>"
1428
+
1429
+ #: my-calendar.php:1403
1430
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1431
+ msgstr "<abbr title=\"Tuesday\">火曜日</abbr>"
1432
+
1433
+ #: my-calendar.php:1404
1434
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1435
+ msgstr "<abbr title=\"Wednesday\">水曜日</abbr>"
1436
+
1437
+ #: my-calendar.php:1405
1438
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1439
+ msgstr "<abbr title=\"Thursday\">木曜日</abbr>"
1440
+
1441
+ #: my-calendar.php:1406
1442
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1443
+ msgstr "<abbr title=\"Friday\">金曜日</abbr>"
1444
+
1445
+ #: my-calendar.php:1407
1446
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
1447
+ msgstr "<abbr title=\"Saturday\">土曜日</abbr>"
1448
+
1449
+ #: my-calendar.php:1412
1450
+ msgid "<abbr title=\"Sunday\">S</abbr>"
1451
+ msgstr "<abbr title=\"Sunday\">日</abbr>"
1452
+
1453
+ #: my-calendar.php:1413
1454
+ msgid "<abbr title=\"Monday\">M</abbr>"
1455
+ msgstr "<abbr title=\"Monday\">月</abbr>"
1456
+
1457
+ #: my-calendar.php:1414
1458
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1459
+ msgstr "<abbr title=\"Tuesday\">火</abbr>"
1460
+
1461
+ #: my-calendar.php:1415
1462
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1463
+ msgstr "<abbr title=\"Wednesday\">水</abbr>"
1464
+
1465
+ #: my-calendar.php:1416
1466
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1467
+ msgstr "<abbr title=\"Thursday\">木</abbr>"
1468
+
1469
+ #: my-calendar.php:1417
1470
+ msgid "<abbr title=\"Friday\">F</abbr>"
1471
+ msgstr "<abbr title=\"Friday\">金</abbr>"
1472
+
1473
+ #: my-calendar.php:1418
1474
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1475
+ msgstr "<abbr title=\"Saturday\">土</abbr>"
1476
+
1477
+ #: my-calendar.php:1464
1478
+ msgid "and"
1479
+ msgstr "と"
1480
+
1481
+ #: my-calendar.php:1493
1482
+ #: my-calendar.php:1497
1483
+ msgid "Calendar"
1484
+ msgstr "カテゴリーのカレンダー"
1485
+
1486
+ #: my-calendar.php:1500
1487
+ msgid "Events in"
1488
+ msgstr "今月のイベント:"
1489
+
1490
+ #: my-calendar.php:1597
1491
+ msgid "There are no events scheduled during this period."
1492
+ msgstr "この期間内に設定されているイベントはありません"
1493
+
1494
+ #: my-calendar.php:1607
1495
+ msgid "Category Key"
1496
+ msgstr "カテゴリー名"
1497
+
1498
+ #. Plugin URI of the plugin/theme
1499
+ msgid "http://www.joedolson.com/articles/my-calendar/"
1500
+ msgstr "http://www.joedolson.com/articles/my-calendar/"
1501
+
1502
+ #. Description of the plugin/theme
1503
+ msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
1504
+ msgstr "使い易いイベント管理カレンダーのプラグインです。様々な形のカレンダーをページ、投稿、ウィジェットに表示出来ます。"
1505
+
1506
+ #. Author of the plugin/theme
1507
+ msgid "Joseph C Dolson"
1508
+ msgstr "Joseph C Dolson"
1509
+
1510
+ #. Author URI of the plugin/theme
1511
+ msgid "http://www.joedolson.com"
1512
+ msgstr "http://www.joedolson.com"
1513
+
my-calendar-locations.php CHANGED
@@ -47,7 +47,6 @@ echo my_calendar_check_db();
47
  echo "<div class=\"updated\"><p><strong>".__('Location edited successfully','my-calendar')."</strong></p></div>";
48
  }
49
  }
50
- echo $sql;
51
 
52
  if ($_GET['mode'] != 'edit' || $_POST['mode'] == 'edit') {
53
  mc_show_location_form('add');
@@ -171,9 +170,9 @@ global $wpdb;
171
  echo '<p>'.__('There are no locations in the database yet!','my-calendar').'</p>';
172
  }
173
  ?>
174
- <p>
175
- <em><?php _e('Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records.','my-calendar'); ?>
176
- </p>
177
  </div>
178
  <?php
179
  }
47
  echo "<div class=\"updated\"><p><strong>".__('Location edited successfully','my-calendar')."</strong></p></div>";
48
  }
49
  }
 
50
 
51
  if ($_GET['mode'] != 'edit' || $_POST['mode'] == 'edit') {
52
  mc_show_location_form('add');
170
  echo '<p>'.__('There are no locations in the database yet!','my-calendar').'</p>';
171
  }
172
  ?>
173
+ <p><em>
174
+ <?php _e('Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records.','my-calendar'); ?>
175
+ </em></p>
176
  </div>
177
  <?php
178
  }
my-calendar-nl.mo ADDED
Binary file
my-calendar-nl.po ADDED
@@ -0,0 +1,1394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: Luud Heck <heck@dds.nl>\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=iso-8859-1\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+
12
+ # Translation of the WordPress plugin My Calendar 1.4.10 by Luud Heck.
13
+ # Copyright (C) 2010 Luud Heck
14
+ # This file is distributed under the same license as the My Calendar package.
15
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
16
+ #
17
+ #: my-calendar-categories.php:41
18
+ msgid "Category added successfully"
19
+ msgstr "Categorie succesvol toegevoegd "
20
+
21
+ #: my-calendar-categories.php:43
22
+ msgid "Category addition failed."
23
+ msgstr "Categorie toevoegen mislukt"
24
+
25
+ #: my-calendar-categories.php:53
26
+ msgid "Category deleted successfully. Categories in calendar updated."
27
+ msgstr "Categorie succesvol verwijderd. Categorie&euml;n in kalender bijgewerkt."
28
+
29
+ #: my-calendar-categories.php:55
30
+ msgid "Category deleted successfully. Categories in calendar not updated."
31
+ msgstr "Categorie succesvol verwijderd. Categorie&euml;n in kalender niet bijgewerkt."
32
+
33
+ #: my-calendar-categories.php:57
34
+ msgid "Category not deleted. Categories in calendar updated."
35
+ msgstr "Categorie niet verwijderd. Categorie&euml;n in kalender bijgewerkt."
36
+
37
+ #: my-calendar-categories.php:66
38
+ msgid "Category edited successfully"
39
+ msgstr "Categorie succesvol bewerkt"
40
+
41
+ #: my-calendar-categories.php:88
42
+ #: my-calendar-categories.php:112
43
+ #: my-calendar-categories.php:130
44
+ msgid "Add Category"
45
+ msgstr "Voeg categorie toe"
46
+
47
+ #: my-calendar-categories.php:90
48
+ #: my-calendar-categories.php:112
49
+ msgid "Edit Category"
50
+ msgstr "Bewerk categorie"
51
+
52
+ #: my-calendar-categories.php:97
53
+ msgid "Category Editor"
54
+ msgstr "Categorie bewerker"
55
+
56
+ #: my-calendar-categories.php:113
57
+ #: my-calendar-categories.php:156
58
+ msgid "Category Name"
59
+ msgstr "Categorie naam"
60
+
61
+ #: my-calendar-categories.php:114
62
+ msgid "Category Color (Hex format)"
63
+ msgstr "Categorie kleur (Hex formaat)"
64
+
65
+ #: my-calendar-categories.php:115
66
+ #: my-calendar-categories.php:158
67
+ msgid "Category Icon"
68
+ msgstr "Categorie icoon"
69
+
70
+ #: my-calendar-categories.php:130
71
+ #: my-calendar-locations.php:121
72
+ msgid "Save Changes"
73
+ msgstr "Bewaar veranderingen"
74
+
75
+ #: my-calendar-categories.php:143
76
+ #: my-calendar.php:177
77
+ msgid "Manage Categories"
78
+ msgstr "Beheer categorie&euml;n"
79
+
80
+ #: my-calendar-categories.php:155
81
+ #: my-calendar-event-manager.php:531
82
+ #: my-calendar-locations.php:147
83
+ msgid "ID"
84
+ msgstr "ID"
85
+
86
+ #: my-calendar-categories.php:157
87
+ msgid "Category Color"
88
+ msgstr "Categorie kleur"
89
+
90
+ #: my-calendar-categories.php:159
91
+ #: my-calendar-categories.php:173
92
+ #: my-calendar-event-manager.php:591
93
+ #: my-calendar-locations.php:149
94
+ #: my-calendar-locations.php:161
95
+ msgid "Edit"
96
+ msgstr "Bewerk"
97
+
98
+ #: my-calendar-categories.php:160
99
+ #: my-calendar-categories.php:179
100
+ #: my-calendar-event-manager.php:76
101
+ #: my-calendar-event-manager.php:591
102
+ #: my-calendar-locations.php:150
103
+ #: my-calendar-locations.php:162
104
+ msgid "Delete"
105
+ msgstr "Verwijder"
106
+
107
+ #: my-calendar-categories.php:176
108
+ #: my-calendar-event-manager.php:572
109
+ #: my-calendar-settings.php:207
110
+ #: my-calendar.php:638
111
+ msgid "N/A"
112
+ msgstr "Niet beschikbaar"
113
+
114
+ #: my-calendar-categories.php:179
115
+ #: my-calendar-locations.php:162
116
+ msgid "Are you sure you want to delete this category?"
117
+ msgstr "Weet je zeker dat je deze categorie wilt verwijderen?"
118
+
119
+ #: my-calendar-categories.php:190
120
+ msgid "There are no categories in the database - something has gone wrong!"
121
+ msgstr "Er zijn geen categorie&euml;n in de database - er is iets mis gegaan!"
122
+
123
+ #: my-calendar-event-manager.php:30
124
+ #: my-calendar-settings.php:298
125
+ msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
126
+ msgstr "My Calendar heeft ontdekt dat je de Calendar plugin van Kieran O'Shea geïnstalleerd hebt. Je kunt de activiteiten en categorie&euml;n daarvan importeren in de My Calendar database. Wil je deze activiteiten importeren?"
127
+
128
+ #: my-calendar-event-manager.php:36
129
+ #: my-calendar-settings.php:304
130
+ msgid "Import from Calendar"
131
+ msgstr "Import van kalender"
132
+
133
+ #: my-calendar-event-manager.php:41
134
+ msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
135
+ msgstr "Hoewel het kan dat deze import mislukt zou dit geen invloed moeten hebben op je bestaande Calendar database. Mocht je toch problemen tegenkomen <a href=\"http://www.joedolson.com/contact.php\">waarschuw me dan a.u.b.</a>"
136
+
137
+ #: my-calendar-event-manager.php:71
138
+ msgid "Delete Event"
139
+ msgstr "Verwijder activiteit"
140
+
141
+ #: my-calendar-event-manager.php:71
142
+ msgid "Are you sure you want to delete this event?"
143
+ msgstr "Weet je zeker dat je dit activiteit wilt verwijderen?"
144
+
145
+ #: my-calendar-event-manager.php:84
146
+ msgid "You do not have permission to delete that event."
147
+ msgstr "Je hebt geen rechten om dit activiteit te verwijderen."
148
+
149
+ #: my-calendar-event-manager.php:107
150
+ #: my-calendar-event-manager.php:124
151
+ #: my-calendar-event-manager.php:148
152
+ #: my-calendar-event-manager.php:163
153
+ #: my-calendar-event-manager.php:700
154
+ #: my-calendar-event-manager.php:705
155
+ #: my-calendar-event-manager.php:710
156
+ #: my-calendar-event-manager.php:722
157
+ #: my-calendar-event-manager.php:732
158
+ #: my-calendar-event-manager.php:740
159
+ #: my-calendar-event-manager.php:749
160
+ #: my-calendar-event-manager.php:757
161
+ msgid "Error"
162
+ msgstr "Fout"
163
+
164
+ #: my-calendar-event-manager.php:107
165
+ msgid "I'm sorry! I couldn'd add that event to the database."
166
+ msgstr "Sorrie! I kon dit event niet aan de database toevoegen."
167
+
168
+ #: my-calendar-event-manager.php:109
169
+ msgid "Event added. It will now show in your calendar."
170
+ msgstr "Activiteit toegevoegd. Het is nu zichtbaar in je kalender."
171
+
172
+ #: my-calendar-event-manager.php:124
173
+ msgid "Your event was not updated."
174
+ msgstr "Je activiteit was niet bijgewerkt."
175
+
176
+ #: my-calendar-event-manager.php:128
177
+ msgid "Nothing was changed in that update."
178
+ msgstr "Niets was veranderd in deze herziening."
179
+
180
+ #: my-calendar-event-manager.php:132
181
+ msgid "Event updated successfully"
182
+ msgstr "Activiteit succesvol bijgewerkt"
183
+
184
+ #: my-calendar-event-manager.php:138
185
+ msgid "You do not have sufficient permissions to edit that event."
186
+ msgstr "Je hebt niet voldoende rechten om die activiteit te bewerken."
187
+
188
+ #: my-calendar-event-manager.php:148
189
+ msgid "You can't delete an event if you haven't submitted an event id"
190
+ msgstr "Je kunt geen activiteit verwijderen als je geen activiteit id hebt opgegeven."
191
+
192
+ #: my-calendar-event-manager.php:159
193
+ msgid "Event deleted successfully"
194
+ msgstr "Activiteit succesvol verwijderd"
195
+
196
+ #: my-calendar-event-manager.php:163
197
+ msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
198
+ msgstr "Ondanks het verzoek om verwijderen staat de activiteit nog steeds in de database. Graag onderzoeken a.u.b."
199
+
200
+ #: my-calendar-event-manager.php:182
201
+ #: my-calendar-event-manager.php:268
202
+ msgid "Edit Event"
203
+ msgstr "Bewerk activiteit"
204
+
205
+ #: my-calendar-event-manager.php:186
206
+ #: my-calendar-event-manager.php:195
207
+ msgid "You must provide an event id in order to edit it"
208
+ msgstr "Je moet een activiteit id opgeven om het te bewerken"
209
+
210
+ #: my-calendar-event-manager.php:191
211
+ #: my-calendar-event-manager.php:268
212
+ msgid "Copy Event"
213
+ msgstr "Kopieer activiteit"
214
+
215
+ #: my-calendar-event-manager.php:201
216
+ msgid "Add Event"
217
+ msgstr "Voeg activiteit toe"
218
+
219
+ #: my-calendar-event-manager.php:206
220
+ msgid "Manage Events"
221
+ msgstr "Beheer activiteiten"
222
+
223
+ #: my-calendar-event-manager.php:240
224
+ msgid "Sorry! That's an invalid event key."
225
+ msgstr "Sorrie! Dat is een ongeldige activiteit id."
226
+
227
+ #: my-calendar-event-manager.php:245
228
+ msgid "Sorry! We couldn't find an event with that ID."
229
+ msgstr "Sorrie! We kunnen geen activiteit vinden met dat id."
230
+
231
+ #: my-calendar-event-manager.php:268
232
+ msgid "Add an Event"
233
+ msgstr "Voeg een activiteit toe"
234
+
235
+ #: my-calendar-event-manager.php:277
236
+ msgid "Enter your Event Information"
237
+ msgstr "Voer de informatie voor deze activiteit in"
238
+
239
+ #: my-calendar-event-manager.php:280
240
+ msgid "Event Title"
241
+ msgstr "Activiteit titel"
242
+
243
+ #: my-calendar-event-manager.php:284
244
+ msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
245
+ msgstr "Activiteit omschrijving (<abbr title=\"hypertext markup language\">HTML</abbr> toegestaan)"
246
+
247
+ #: my-calendar-event-manager.php:289
248
+ msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
249
+ msgstr "Verkorte activiteit omschrijving (<abbr title=\"hypertext markup language\">HTML</abbr> toegestaan)"
250
+
251
+ #: my-calendar-event-manager.php:294
252
+ msgid "Event Category"
253
+ msgstr "Activiteit categorie"
254
+
255
+ #: my-calendar-event-manager.php:319
256
+ msgid "Event Link (Optional)"
257
+ msgstr "Activiteit link (optioneel)"
258
+
259
+ #: my-calendar-event-manager.php:319
260
+ msgid "This link will expire when the event passes."
261
+ msgstr "Deze link zal verlopen als de activiteit geweest is."
262
+
263
+ #: my-calendar-event-manager.php:323
264
+ msgid "Start Date (YYYY-MM-DD)"
265
+ msgstr "Begindatum (JJJJ-MM-DD)"
266
+
267
+ #: my-calendar-event-manager.php:326
268
+ msgid "End Date (YYYY-MM-DD) (Optional)"
269
+ msgstr "Einddatum (JJJJ-MM-DD) (Optioneel)"
270
+
271
+ #: my-calendar-event-manager.php:329
272
+ msgid "Time (hh:mm)"
273
+ msgstr "Tijd (uu:mm)"
274
+
275
+ #: my-calendar-event-manager.php:341
276
+ msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
277
+ msgstr "Optioneel, laat leeg indien deze activiteit de gehele dag duurt of niet op een specifiek tijdstip plaats vindt."
278
+
279
+ #: my-calendar-event-manager.php:341
280
+ msgid "Current time difference from GMT is "
281
+ msgstr "Huidig tijdsverschil met GMT is "
282
+
283
+ #: my-calendar-event-manager.php:341
284
+ msgid " hour(s)"
285
+ msgstr " uur."
286
+
287
+ #: my-calendar-event-manager.php:344
288
+ msgid "End Time (hh:mm)"
289
+ msgstr "Eindtijd (uu:mm)"
290
+
291
+ #: my-calendar-event-manager.php:355
292
+ msgid "Optional. End times will not be displayed on events where this is not set."
293
+ msgstr "Optioneel. Eindtijd wordt niet weergegeven voor activiteiten waarvoor dit niet is opgegeven."
294
+
295
+ #: my-calendar-event-manager.php:360
296
+ msgid "Recurring Events"
297
+ msgstr "Terugkomende activiteiten"
298
+
299
+ #: my-calendar-event-manager.php:363
300
+ msgid "Repeats for"
301
+ msgstr "Herhaald voor"
302
+
303
+ #: my-calendar-event-manager.php:364
304
+ msgid "Units"
305
+ msgstr "Eenheden"
306
+
307
+ #: my-calendar-event-manager.php:365
308
+ msgid "Does not recur"
309
+ msgstr "Wordt niet herhaald"
310
+
311
+ #: my-calendar-event-manager.php:366
312
+ #: my-calendar-event-manager.php:565
313
+ msgid "Daily"
314
+ msgstr "Dagelijks"
315
+
316
+ #: my-calendar-event-manager.php:367
317
+ #: my-calendar-event-manager.php:566
318
+ msgid "Weekly"
319
+ msgstr "Wekelijks"
320
+
321
+ #: my-calendar-event-manager.php:368
322
+ msgid "Bi-weekly"
323
+ msgstr "Twee-wekelijks"
324
+
325
+ #: my-calendar-event-manager.php:369
326
+ #: my-calendar-event-manager.php:568
327
+ msgid "Monthly"
328
+ msgstr "Maandelijks"
329
+
330
+ #: my-calendar-event-manager.php:370
331
+ msgid "Annually"
332
+ msgstr "Jaarlijks"
333
+
334
+ #: my-calendar-event-manager.php:372
335
+ msgid "Entering 0 means forever, if a unit is selected. If the recurrance unit is left at \"Does not recur,\" the event will not reoccur."
336
+ msgstr "Opgeven van 0 betekent oneindig indien een eenheid van tijd is geselecteerd. Als de herhaling blijft staan op \"Wordt niet herhaald\" dan zal de activiteit niet vaker voorkomen."
337
+
338
+ #: my-calendar-event-manager.php:375
339
+ msgid "Group this event as a single item"
340
+ msgstr "Groepeer deze activiteit als een enkel onderdeel."
341
+
342
+ #: my-calendar-event-manager.php:386
343
+ msgid "Event Registration Status"
344
+ msgstr "Activiteit registratie status"
345
+
346
+ #: my-calendar-event-manager.php:388
347
+ msgid "Open"
348
+ msgstr "Open"
349
+
350
+ #: my-calendar-event-manager.php:389
351
+ msgid "Closed"
352
+ msgstr "Gesloten"
353
+
354
+ #: my-calendar-event-manager.php:390
355
+ msgid "Does not apply"
356
+ msgstr "Niet van toepassing"
357
+
358
+ #: my-calendar-event-manager.php:400
359
+ #: my-calendar-locations.php:81
360
+ msgid "Event Location"
361
+ msgstr "Activiteit locatie"
362
+
363
+ #: my-calendar-event-manager.php:409
364
+ msgid "Choose a preset location:"
365
+ msgstr "Kies een voorkeurslocatie:"
366
+
367
+ #: my-calendar-event-manager.php:423
368
+ msgid "Add recurring locations for later use."
369
+ msgstr "Voeg herhaalde locaties toe voor later gebruik."
370
+
371
+ #: my-calendar-event-manager.php:430
372
+ #: my-calendar-locations.php:83
373
+ msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
374
+ msgstr "Alle locatie velden zijn optioneel: <em>onvoldoende informatie kan resulteren in een inaccurate kaart</em>."
375
+
376
+ #: my-calendar-event-manager.php:433
377
+ #: my-calendar-locations.php:86
378
+ msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
379
+ msgstr "Naam van locatie (bijv. <em>Joe's Bar & Grill</em>)"
380
+
381
+ #: my-calendar-event-manager.php:436
382
+ #: my-calendar-locations.php:89
383
+ msgid "Street Address"
384
+ msgstr "Adres"
385
+
386
+ #: my-calendar-event-manager.php:439
387
+ #: my-calendar-locations.php:92
388
+ msgid "Street Address (2)"
389
+ msgstr "Adres (2)"
390
+
391
+ #: my-calendar-event-manager.php:442
392
+ #: my-calendar-locations.php:95
393
+ msgid "City"
394
+ msgstr "Stad"
395
+
396
+ #: my-calendar-event-manager.php:442
397
+ #: my-calendar-locations.php:95
398
+ msgid "State/Province"
399
+ msgstr "Staat/Provincie"
400
+
401
+ #: my-calendar-event-manager.php:442
402
+ #: my-calendar-locations.php:95
403
+ msgid "Postal Code"
404
+ msgstr "Postcode"
405
+
406
+ #: my-calendar-event-manager.php:445
407
+ #: my-calendar-locations.php:98
408
+ msgid "Country"
409
+ msgstr "Land"
410
+
411
+ #: my-calendar-event-manager.php:448
412
+ #: my-calendar-locations.php:101
413
+ msgid "Initial Zoom"
414
+ msgstr "Initi&euml;le Zoom"
415
+
416
+ #: my-calendar-event-manager.php:450
417
+ #: my-calendar-locations.php:103
418
+ msgid "Neighborhood"
419
+ msgstr "Omgeving"
420
+
421
+ #: my-calendar-event-manager.php:451
422
+ #: my-calendar-locations.php:104
423
+ msgid "Small City"
424
+ msgstr "Kleine stad"
425
+
426
+ #: my-calendar-event-manager.php:452
427
+ #: my-calendar-locations.php:105
428
+ msgid "Large City"
429
+ msgstr "Grote stad"
430
+
431
+ #: my-calendar-event-manager.php:453
432
+ #: my-calendar-locations.php:106
433
+ msgid "Greater Metro Area"
434
+ msgstr "Grote Metropool"
435
+
436
+ #: my-calendar-event-manager.php:454
437
+ #: my-calendar-locations.php:107
438
+ msgid "State"
439
+ msgstr "Staat"
440
+
441
+ #: my-calendar-event-manager.php:455
442
+ #: my-calendar-locations.php:108
443
+ msgid "Region"
444
+ msgstr "Regio"
445
+
446
+ #: my-calendar-event-manager.php:459
447
+ #: my-calendar-locations.php:112
448
+ msgid "GPS Coordinates (optional)"
449
+ msgstr "GPS-co&ouml;rdinaten (optioneel)"
450
+
451
+ #: my-calendar-event-manager.php:461
452
+ #: my-calendar-locations.php:114
453
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
454
+ msgstr "Als je GPS co&ouml;rdinaten voor je locatie opgeeft zullen deze gebruikt worden in plaats van enige andere adres informatie om je locatie te identificeren."
455
+
456
+ #: my-calendar-event-manager.php:464
457
+ #: my-calendar-locations.php:117
458
+ msgid "Longitude"
459
+ msgstr "Lengte"
460
+
461
+ #: my-calendar-event-manager.php:464
462
+ #: my-calendar-locations.php:117
463
+ msgid "Latitude"
464
+ msgstr "Breedte"
465
+
466
+ #: my-calendar-event-manager.php:472
467
+ msgid "Save Event"
468
+ msgstr "Bewaar activiteit"
469
+
470
+ #: my-calendar-event-manager.php:532
471
+ #: my-calendar-widgets.php:37
472
+ #: my-calendar-widgets.php:122
473
+ msgid "Title"
474
+ msgstr "Titel"
475
+
476
+ #: my-calendar-event-manager.php:533
477
+ msgid "Link"
478
+ msgstr "Koppeling"
479
+
480
+ #: my-calendar-event-manager.php:534
481
+ #: my-calendar-locations.php:148
482
+ msgid "Location"
483
+ msgstr "Locatie"
484
+
485
+ #: my-calendar-event-manager.php:535
486
+ msgid "Description"
487
+ msgstr "Omschrijving"
488
+
489
+ #: my-calendar-event-manager.php:536
490
+ msgid "Start Date"
491
+ msgstr "Begindatum"
492
+
493
+ #: my-calendar-event-manager.php:537
494
+ msgid "Recurs"
495
+ msgstr "Herhaling"
496
+
497
+ #: my-calendar-event-manager.php:538
498
+ #: my-calendar-settings.php:195
499
+ msgid "Author"
500
+ msgstr "Auteur"
501
+
502
+ #: my-calendar-event-manager.php:539
503
+ msgid "Category"
504
+ msgstr "Categorie"
505
+
506
+ #: my-calendar-event-manager.php:540
507
+ msgid "Edit / Delete"
508
+ msgstr "Bewerk / Verwijder"
509
+
510
+ #: my-calendar-event-manager.php:564
511
+ msgid "Never"
512
+ msgstr "Nooit"
513
+
514
+ #: my-calendar-event-manager.php:567
515
+ msgid "Bi-Weekly"
516
+ msgstr "Twee wekelijks"
517
+
518
+ #: my-calendar-event-manager.php:569
519
+ msgid "Yearly"
520
+ msgstr "Jaarlijks"
521
+
522
+ #: my-calendar-event-manager.php:573
523
+ msgid "Forever"
524
+ msgstr "Altijd"
525
+
526
+ #: my-calendar-event-manager.php:574
527
+ msgid "Times"
528
+ msgstr "Tijden"
529
+
530
+ #: my-calendar-event-manager.php:589
531
+ msgid "Copy"
532
+ msgstr "Kopi&euml;er"
533
+
534
+ #: my-calendar-event-manager.php:602
535
+ msgid "There are no events in the database!"
536
+ msgstr "Er zijn geen activiteiten in de database!"
537
+
538
+ #: my-calendar-event-manager.php:700
539
+ msgid "Your event end date must be either after or the same as your event begin date"
540
+ msgstr "De einddatum moet of later dan of gelijk zijn aan de begindatum."
541
+
542
+ #: my-calendar-event-manager.php:705
543
+ msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
544
+ msgstr "Het opegegeven datumformaat is correct maar een of meer van je datums is ongeldig. Controleer of het juiste aantal dagen voor maanden en (schrikkel)jaren is opgegeven."
545
+
546
+ #: my-calendar-event-manager.php:710
547
+ msgid "Both start and end dates must be in the format YYYY-MM-DD"
548
+ msgstr "Zowel begin- en einddatum moeten worden gespecificeerd in het formaat JJJJ-MM-DD"
549
+
550
+ #: my-calendar-event-manager.php:722
551
+ msgid "The time field must either be blank or be entered in the format hh:mm"
552
+ msgstr "Het tijd veld moet of leeg zijn of opgegeven worden in het formaat uu:mm"
553
+
554
+ #: my-calendar-event-manager.php:732
555
+ msgid "The end time field must either be blank or be entered in the format hh:mm"
556
+ msgstr "Het eindtijd veld moet leeg zijn of opgegeven worden in het formaat uu:mm"
557
+
558
+ #: my-calendar-event-manager.php:740
559
+ msgid "The URL entered must either be prefixed with http:// or be completely blank"
560
+ msgstr "De opgegeven koppeling moet vooraf gegaan worden door http:// of volledig leeg zijn"
561
+
562
+ #: my-calendar-event-manager.php:749
563
+ msgid "The event title must be between 1 and 255 characters in length."
564
+ msgstr "De activiteit titel moet minstens 1 en mag maximaal 255 karakters lang zijn."
565
+
566
+ #: my-calendar-event-manager.php:757
567
+ msgid "The repetition value must be 0 unless a type of recurrance is selected."
568
+ msgstr "De herhalingswaarde moet 0 zijn tenzij er een type herhaling is geselecteerd."
569
+
570
+ #: my-calendar-help.php:6
571
+ msgid "How to use My Calendar"
572
+ msgstr "Hoe My Calendar te gebruiken"
573
+
574
+ #: my-calendar-help.php:11
575
+ msgid "Shortcode Syntax"
576
+ msgstr "Verkorte code syntaxis"
577
+
578
+ #: my-calendar-help.php:14
579
+ msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
580
+ msgstr "Deze verkorte codes kunnen worden gebruikt in Berichten, Pagina's of in tekts widgets."
581
+
582
+ #: my-calendar-help.php:18
583
+ msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
584
+ msgstr "Deze eenvoudige verkorte code toont de kalender in een bericht of pagina inclusief alle categorien en de categorie sleutel in een traditioneel maand-bij-maand formaat."
585
+
586
+ #: my-calendar-help.php:21
587
+ msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
588
+ msgstr "De verkorte code ondersteund drie attributen, <code>category</code>, <code>format</code> en <code>showkey</code>. Er zijn twee alternatieve opties voor <code>format</code> &mdash; <code>list</code> &mdash; zal de kalender in lijst formaat weergeven waarin datums zonder activiteiten weggelaten worden, en <code>mini</code> welke de kalender in een formaat weergeeft dat meer bruikbaar is in kleinere ruimten zoals de zijbalk. Het <code>category</code> attributt verwacht of de naam of het id getal van een van je activiteit categorieen (de naam is letterkast gevoelig, i.e. hoofd- en kleine letters). deze toont een kalender met alleen activiteiten in de opgegeven categorie. Meerdere categorieen kunnen opgegeven worden door ze te scheiden met het pijp character: <code>|</code>. Het instellen van <code>showkey</code> naar <code>no</code> zal voorkoemn dat de categoriesleutel wordt weergegeven &mdash; dit kan handig zijn als er maar een enkele categorie wordt weergegeven."
589
+
590
+ #: my-calendar-help.php:24
591
+ msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
592
+ msgstr "Deze verkorte code toont de uitvoor van de Komende activiteiten widget. Zonder attributen zal het de instellingen van je widget gebruiken voor weergave. De attributen worden gebruikt om de widget instellingen te vervangen. De <code>before</code> en <code>after</code> attributen werken hetzelfde als de categorie attributen voor de hoofd kalender verkorte code. Sjablonen werken met gebruikmaking van de verkorte codes opgesomd hieronder."
593
+
594
+ #: my-calendar-help.php:27
595
+ msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
596
+ msgstr "Voorspelbaar genoeg toont deze verkorte code de uitvoor van de Geberutenissen van vandaag widget met twee configureerbare attributen: categorie en sjabloon."
597
+
598
+ #: my-calendar-help.php:34
599
+ msgid "Category Icons"
600
+ msgstr "Categorie iconen"
601
+
602
+ #: my-calendar-help.php:37
603
+ msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
604
+ msgstr "My Calendar is ontworpen om meerder kalenders te beheren. De basis voor deze calenders zijn categorieen. Je kunt eenvoudig een kalender pagina maken die alle categorieen bevat, of je kunt besluiten om aparte pagina's aan kalenders in iedere categorie toe te kennen. Bijvoorbeeld kan dit handig zijn als je de tournee voor meerdere bands beheerd, kalenders beheerd voor meedere locaties, etc."
605
+
606
+ #: my-calendar-help.php:40
607
+ msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
608
+ msgstr "De voorgeinstalleerde categorie iconen zouden niet specifiek bruikbaar kunnen zijn voor jouw toepassing. Ik neem aan dat je je eigen iconen zult uploaden -- het enige dat je moet doen is ze te uploaden naar de plugin's iconen map en ze zijn meteen klaar voor gebruik. Of plaats ze in een map \"my-calendar-custom\" om te voorkomen dat ze worden overschreven bij opwaarderingen."
609
+
610
+ #: my-calendar-help.php:40
611
+ msgid "Your icons folder is:"
612
+ msgstr "Jouw iconen map is:"
613
+
614
+ #: my-calendar-help.php:40
615
+ msgid "You can alternately place icons in:"
616
+ msgstr "Als alternatief kun je iconen plaatsen in:"
617
+
618
+ #: my-calendar-help.php:48
619
+ msgid "Widget Templating"
620
+ msgstr "Widget sjabloneren"
621
+
622
+ #: my-calendar-help.php:51
623
+ msgid "These codes are available in calendar widgets to create your own custom calendar format."
624
+ msgstr "Deze codes zijn beschikbaar in kalender widgets om je eigen aangapste kalender formaat te maken."
625
+
626
+ #: my-calendar-help.php:55
627
+ msgid "Displays the name of the category the event is in."
628
+ msgstr "Toont de naam van de categorie waarin de activiteit is geplaatst."
629
+
630
+ #: my-calendar-help.php:58
631
+ msgid "Displays the title of the event."
632
+ msgstr "Toont de titel van de activiteit."
633
+
634
+ #: my-calendar-help.php:61
635
+ msgid "Displays the start time for the event."
636
+ msgstr "Toont het aanvangstijdstip van de activiteit."
637
+
638
+ #: my-calendar-help.php:64
639
+ msgid "Displays the date on which the event begins."
640
+ msgstr "Toont de datum waarop de activiteit begint."
641
+
642
+ #: my-calendar-help.php:67
643
+ msgid "Displays the date on which the event ends."
644
+ msgstr "Toont de datum waarop de activiteit eindigd."
645
+
646
+ #: my-calendar-help.php:70
647
+ msgid "Displays the time at which the event ends."
648
+ msgstr "Toont de tijd waarop de activiteit eindigt."
649
+
650
+ #: my-calendar-help.php:73
651
+ msgid "Displays the WordPress author who posted the event."
652
+ msgstr "Toont de WordPress auteur die de activiteit heeft ingevoerd."
653
+
654
+ #: my-calendar-help.php:76
655
+ msgid "Displays the URL provided for the event."
656
+ msgstr "Toont de URL zoals opgegeven voor de activiteit."
657
+
658
+ #: my-calendar-help.php:79
659
+ msgid "Displays the description of the event."
660
+ msgstr "Toont de omschrijving van de activiteit"
661
+
662
+ #: my-calendar-help.php:82
663
+ msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
664
+ msgstr "Toont de titel van de activiteit als een koppeling indien een URL beschikbaar is, of alleen de titel indien geen koppeling beschikbaar is."
665
+
666
+ #: my-calendar-help.php:85
667
+ msgid "Displays the name of the location of the event."
668
+ msgstr "Toont de naam van de locatie voor de activiteit."
669
+
670
+ #: my-calendar-help.php:88
671
+ msgid "Displays the first line of the site address."
672
+ msgstr "Toont de eerste adres regel voor de activiteit."
673
+
674
+ #: my-calendar-help.php:91
675
+ msgid "Displays the second line of the site address."
676
+ msgstr "Toont de tweede adres regel voor de activiteit."
677
+
678
+ #: my-calendar-help.php:94
679
+ msgid "Displays the city for the event."
680
+ msgstr "Toont de stad voor de activiteit."
681
+
682
+ #: my-calendar-help.php:97
683
+ msgid "Displays the state for the event."
684
+ msgstr "Toont de staat/provincie voor de activiteit."
685
+
686
+ #: my-calendar-help.php:100
687
+ msgid "Displays the postcode for the event."
688
+ msgstr "Toont de postcode voor de activiteit."
689
+
690
+ #: my-calendar-help.php:103
691
+ msgid "Displays the country for the event location."
692
+ msgstr "Toont het land voor de activiteit."
693
+
694
+ #: my-calendar-help.php:106
695
+ msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
696
+ msgstr "Toont het adres van de activiteit in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> formaat."
697
+
698
+ #: my-calendar-help.php:109
699
+ msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
700
+ msgstr "Toont een koppeling naar een Google Map van de activiteit indien voldoende adres informatie beschikbaar is. Zo niet, dan zal het leeg zijn."
701
+
702
+ #: my-calendar-help.php:112
703
+ msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
704
+ msgstr "Toont tekst die aangeeft of registratie voor de activiteit momenteel open of gesloten is; toont niets indien die keuze is geselecteerd in de activiteit."
705
+
706
+ #: my-calendar-help.php:115
707
+ msgid "Displays the short version of the event description."
708
+ msgstr "Toont de verkorte versie van de activiteitomschrijving."
709
+
710
+ #: my-calendar-locations.php:22
711
+ msgid "Location added successfully"
712
+ msgstr "Locatie succesvol toegevoegd"
713
+
714
+ #: my-calendar-locations.php:24
715
+ msgid "Location could not be added to database"
716
+ msgstr "Locatie kon niet toegevoegd worden aan de database."
717
+
718
+ #: my-calendar-locations.php:30
719
+ msgid "Location deleted successfully"
720
+ msgstr "Locatie succesvol verwijderd"
721
+
722
+ #: my-calendar-locations.php:32
723
+ msgid "Location could not be deleted"
724
+ msgstr "Locatie kon niet verwijderd worden"
725
+
726
+ #: my-calendar-locations.php:43
727
+ msgid "Location could not be edited."
728
+ msgstr "Locatie kon niet bewerkt worden."
729
+
730
+ #: my-calendar-locations.php:45
731
+ msgid "Location was not changed."
732
+ msgstr "Locatie was niet veranderd."
733
+
734
+ #: my-calendar-locations.php:47
735
+ msgid "Location edited successfully"
736
+ msgstr "Locatie succesvol bewerkt"
737
+
738
+ #: my-calendar-locations.php:59
739
+ msgid "Add New Location"
740
+ msgstr "Voeg nieuwe locatie toe"
741
+
742
+ #: my-calendar-locations.php:61
743
+ msgid "Edit Location"
744
+ msgstr "Bewerk locatie"
745
+
746
+ #: my-calendar-locations.php:66
747
+ msgid "Location Editor"
748
+ msgstr "Locatie bewerker"
749
+
750
+ #: my-calendar-locations.php:121
751
+ msgid "Add Location"
752
+ msgstr "Voeg locatie toe"
753
+
754
+ #: my-calendar-locations.php:135
755
+ #: my-calendar.php:178
756
+ msgid "Manage Locations"
757
+ msgstr "Beheer locaties"
758
+
759
+ #: my-calendar-locations.php:170
760
+ msgid "There are no locations in the database yet!"
761
+ msgstr "Er zijn nog geen locaties in de database!"
762
+
763
+ #: my-calendar-locations.php:174
764
+ msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
765
+ msgstr "Let op: bewerken of verwijderen van locaties opgeslagen voor hergebruik zal geen invloed hebben op enige activiteit die eerder is ingeroosterd op die locatie. De locatie database bestaat puur als een verkorte methode om regelmatig gebruikte locaties in te voeren in activiteiten."
766
+
767
+ #: my-calendar-settings.php:67
768
+ msgid "Categories imported successfully."
769
+ msgstr "Categorie&euml;n successvol geimporteerd"
770
+
771
+ #: my-calendar-settings.php:69
772
+ msgid "Categories not imported."
773
+ msgstr "Categorie&euml;n niet geimporteerd"
774
+
775
+ #: my-calendar-settings.php:72
776
+ msgid "Events imported successfully."
777
+ msgstr "Geberutenissen succesvol geimporteerd"
778
+
779
+ #: my-calendar-settings.php:74
780
+ msgid "Events not imported."
781
+ msgstr "Activiteiten niet geimporteerd"
782
+
783
+ #: my-calendar-settings.php:153
784
+ msgid "Settings saved"
785
+ msgstr "Instellingen bewaard"
786
+
787
+ #: my-calendar-settings.php:179
788
+ msgid "My Calendar Options"
789
+ msgstr "My Calendar Opties"
790
+
791
+ #: my-calendar-settings.php:186
792
+ msgid "Calendar Settings"
793
+ msgstr "Kalenderindstellingen"
794
+
795
+ #: my-calendar-settings.php:190
796
+ msgid "Calendar Options: Management"
797
+ msgstr "Kalender opties: Beheer"
798
+
799
+ #: my-calendar-settings.php:192
800
+ msgid "Choose the lowest user group that may manage events"
801
+ msgstr "Kies de laagste gebruikersgroep die activiteiten mag beheren"
802
+
803
+ #: my-calendar-settings.php:193
804
+ msgid "Subscriber"
805
+ msgstr "Abonnee"
806
+
807
+ #: my-calendar-settings.php:194
808
+ msgid "Contributor"
809
+ msgstr "Bijdrager"
810
+
811
+ #: my-calendar-settings.php:196
812
+ msgid "Editor"
813
+ msgstr "Redacteur"
814
+
815
+ #: my-calendar-settings.php:197
816
+ msgid "Administrator"
817
+ msgstr "Beheerder"
818
+
819
+ #: my-calendar-settings.php:202
820
+ msgid "Calendar Options: Customize Text"
821
+ msgstr "Kalender opties: aanpassen tekst"
822
+
823
+ #: my-calendar-settings.php:204
824
+ msgid "Show Heading for Calendar"
825
+ msgstr "Toon opschrift voor Kalender"
826
+
827
+ #: my-calendar-settings.php:207
828
+ msgid "Label for events without a specific time"
829
+ msgstr "Label voor activiteiten zonder een specifieke tijd"
830
+
831
+ #: my-calendar-settings.php:210
832
+ msgid "Previous events link text"
833
+ msgstr "Koppelingstekst voor voorgaande activiteiten"
834
+
835
+ #: my-calendar-settings.php:210
836
+ msgid "Previous Events"
837
+ msgstr "Vorige activiteiten"
838
+
839
+ #: my-calendar-settings.php:213
840
+ msgid "Next events link text"
841
+ msgstr "Koppelingstekst voor komende activiteiten"
842
+
843
+ #: my-calendar-settings.php:213
844
+ msgid "Next Events"
845
+ msgstr "Komende activiteiten"
846
+
847
+ #: my-calendar-settings.php:216
848
+ msgid "Text when events are open"
849
+ msgstr "Tekst, indien activiteiten open zijn"
850
+
851
+ #: my-calendar-settings.php:216
852
+ msgid "Registration is open"
853
+ msgstr "Registratie is open"
854
+
855
+ #: my-calendar-settings.php:219
856
+ msgid "Text when events are closed"
857
+ msgstr "Tekst, indien activiteiten zijn gesloten"
858
+
859
+ #: my-calendar-settings.php:219
860
+ msgid "Registration is closed"
861
+ msgstr "Registratie is gesloten"
862
+
863
+ #: my-calendar-settings.php:222
864
+ msgid "Additional caption text"
865
+ msgstr "Additionele onderschrift tekst"
866
+
867
+ #: my-calendar-settings.php:222
868
+ msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
869
+ msgstr "Het kalenderonderschrift is de tekst met de weergegeven maand en jaar in lijst en kalender formaat. De hier opgegeven tekst zal weergegeven worden achter die bestaande tekst."
870
+
871
+ #: my-calendar-settings.php:226
872
+ msgid "Calendar Options: Output"
873
+ msgstr "Kalender opties: Uitvoer"
874
+
875
+ #: my-calendar-settings.php:228
876
+ msgid "In list mode, show how many months of events at a time:"
877
+ msgstr "In lijstweergave, toon zoveel maanden aan activiteiten tegelijk:"
878
+
879
+ #: my-calendar-settings.php:231
880
+ msgid "Date format in list mode"
881
+ msgstr "Datumformaat in lijstweergave"
882
+
883
+ #: my-calendar-settings.php:232
884
+ msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
885
+ msgstr "Datumformaat gebruikt dezelfde syntaxis als de <a href=\"http://php.net/date\">PHP <code>date()</code> functie</a>. Bewaar opties om de voorbeelduitvoer bij te werken."
886
+
887
+ #: my-calendar-settings.php:235
888
+ msgid "Do you want to display the author name on events?"
889
+ msgstr "Wil je de auteursnaam weergeven bij activiteiten?"
890
+
891
+ #: my-calendar-settings.php:238
892
+ msgid "Display a jumpbox for changing month and year quickly?"
893
+ msgstr "Toon een opspring-vak voor snel veranderen van maand en jaar?"
894
+
895
+ #: my-calendar-settings.php:242
896
+ msgid "Hide category icons in output"
897
+ msgstr "Verberg categorie iconen in uitvoer"
898
+
899
+ #: my-calendar-settings.php:245
900
+ msgid "Show Link to Google Map (when sufficient address information is available.)"
901
+ msgstr "Toon koppeling naar Google Maps (nindien voldoende adres informatie beschikbaar is)"
902
+
903
+ #: my-calendar-settings.php:248
904
+ msgid "Show Event Address in Details"
905
+ msgstr "Toon activiteit adres in details"
906
+
907
+ #: my-calendar-settings.php:251
908
+ msgid "Show short description field on calendar."
909
+ msgstr "Toon verkort omschrijvingsveld in kalender."
910
+
911
+ #: my-calendar-settings.php:254
912
+ msgid "Show full description field on calendar."
913
+ msgstr "Toon volledig omschrijvingsveld in kalender."
914
+
915
+ #: my-calendar-settings.php:257
916
+ msgid "Links associated with events will automatically expire after the event has passed."
917
+ msgstr "Koppelingen verbonden aan activiteiten zullen automatisch verlopen als de activiteit is geweest."
918
+
919
+ #: my-calendar-settings.php:260
920
+ msgid "Show current availability status of events."
921
+ msgstr "Toon huidige beschikbaarheidsstatus van activiteiten."
922
+
923
+ #: my-calendar-settings.php:264
924
+ msgid "Calendar Options: Input"
925
+ msgstr "Kalender opties: Input"
926
+
927
+ #: my-calendar-settings.php:267
928
+ msgid "Show Event Location Dropdown Menu"
929
+ msgstr "Toon activiteit locatie uitklapmenu"
930
+
931
+ #: my-calendar-settings.php:267
932
+ msgid "Show Event Short Description field"
933
+ msgstr "Toon activiteit verkort omschrijvingsveld"
934
+
935
+ #: my-calendar-settings.php:267
936
+ msgid "Show Event Description Field"
937
+ msgstr "Toon activiteit omschrijvingsveld"
938
+
939
+ #: my-calendar-settings.php:267
940
+ msgid "Show Event Category field"
941
+ msgstr "Toon activiteit categorieveld"
942
+
943
+ #: my-calendar-settings.php:267
944
+ msgid "Show Event Link field"
945
+ msgstr "Toon activiteit koppelingsveld"
946
+
947
+ #: my-calendar-settings.php:267
948
+ msgid "Show Event Recurrance Options"
949
+ msgstr "Toon activiteit herhalingsopties"
950
+
951
+ #: my-calendar-settings.php:267
952
+ msgid "Show event registration options"
953
+ msgstr "Toon activiteit registratie opties"
954
+
955
+ #: my-calendar-settings.php:267
956
+ msgid "Show event location fields"
957
+ msgstr "Toon activiteit locatie velden"
958
+
959
+ #: my-calendar-settings.php:276
960
+ msgid "Administrators see all input options"
961
+ msgstr "Beheerder ziet alle invoer opties"
962
+
963
+ #: my-calendar-settings.php:280
964
+ msgid "Calendar Options: Style"
965
+ msgstr "Kalender opties: stijl"
966
+
967
+ #: my-calendar-settings.php:282
968
+ msgid "Default usage of category colors."
969
+ msgstr "Standaard gebruik van categorie kleuren."
970
+
971
+ #: my-calendar-settings.php:283
972
+ msgid "Apply category colors to event titles as a font color."
973
+ msgstr "Pas categorie kleuren toe op activiteit titels als tekst kleur."
974
+
975
+ #: my-calendar-settings.php:284
976
+ msgid "Apply category colors to event titles as a background color."
977
+ msgstr "Pas categorie kleuren toe op activiteit titels als achtergrond kleur."
978
+
979
+ #: my-calendar-settings.php:288
980
+ msgid "Save Settings"
981
+ msgstr "Bewaar instellingen"
982
+
983
+ #: my-calendar-styles.php:46
984
+ msgid "Style Settings saved"
985
+ msgstr "Stijl instellingen bewaard"
986
+
987
+ #: my-calendar-styles.php:70
988
+ msgid "My Calendar Styles"
989
+ msgstr "My Calendar Stijlen"
990
+
991
+ #: my-calendar-styles.php:74
992
+ msgid "Calendar Style Settings"
993
+ msgstr "Kalender stijl instellingen"
994
+
995
+ #: my-calendar-styles.php:78
996
+ msgid "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
997
+ msgstr "Toon CSS &amp JavaScript alleen op deze pagina's (pagina IDs scheiden door comma's)"
998
+
999
+ #: my-calendar-styles.php:81
1000
+ msgid "CSS Style Options"
1001
+ msgstr "CSS stijl opties"
1002
+
1003
+ #: my-calendar-styles.php:83
1004
+ msgid "Reset the My Calendar stylesheet to the default"
1005
+ msgstr "Herstel de stijlbladen voor My Calendar naar de standaard"
1006
+
1007
+ #: my-calendar-styles.php:83
1008
+ msgid "Disable My Calendar Stylesheet"
1009
+ msgstr "Schakel het stijlblad voor My Calendar uit"
1010
+
1011
+ #: my-calendar-styles.php:86
1012
+ msgid "Edit the stylesheet for My Calendar"
1013
+ msgstr "Bewerk het stijlblad voor My Calendar"
1014
+
1015
+ #: my-calendar-styles.php:89
1016
+ #: my-calendar-styles.php:101
1017
+ #: my-calendar-styles.php:113
1018
+ #: my-calendar-styles.php:125
1019
+ msgid "Save"
1020
+ msgstr "Bewaar"
1021
+
1022
+ #: my-calendar-styles.php:93
1023
+ msgid "Calendar Behaviors: Calendar View"
1024
+ msgstr "Kalender gedrag: Kalenderweergave"
1025
+
1026
+ #: my-calendar-styles.php:95
1027
+ msgid "Reset the My Calendar Calendar Javascript"
1028
+ msgstr "Herstel de My Calendars kalender Javascript"
1029
+
1030
+ #: my-calendar-styles.php:95
1031
+ msgid "Disable Calendar Javascript Effects"
1032
+ msgstr "Schakel de kalender Javascript effecten uit"
1033
+
1034
+ #: my-calendar-styles.php:98
1035
+ msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1036
+ msgstr "Bewerk de jQuery-scripts voor My Calendar in kalender formaat."
1037
+
1038
+ #: my-calendar-styles.php:105
1039
+ msgid "Calendar Behaviors: List View"
1040
+ msgstr "Kalender gedrag: lijstweergave"
1041
+
1042
+ #: my-calendar-styles.php:107
1043
+ msgid "Reset the My Calendar List Javascript"
1044
+ msgstr "Herstel de My Calendars lijst Javascript"
1045
+
1046
+ #: my-calendar-styles.php:107
1047
+ msgid "Disable List Javascript Effects"
1048
+ msgstr "Schakel lijst Javascript effecten uit"
1049
+
1050
+ #: my-calendar-styles.php:110
1051
+ msgid "Edit the jQuery scripts for My Calendar in List format"
1052
+ msgstr "Bewerk de jQuery scripts voor My Calendar in lijst formaat"
1053
+
1054
+ #: my-calendar-styles.php:117
1055
+ msgid "Calendar Behaviors: Mini Calendar View"
1056
+ msgstr "Kalender gedrag: Mini kalender weergave"
1057
+
1058
+ #: my-calendar-styles.php:119
1059
+ msgid "Reset the My Calendar Mini Format Javascript"
1060
+ msgstr "Herstel de My Calendar mini Formaat Javascript "
1061
+
1062
+ #: my-calendar-styles.php:119
1063
+ msgid "Disable Mini Javascript Effects"
1064
+ msgstr "Schakel mini Javascript effecten uit"
1065
+
1066
+ #: my-calendar-styles.php:122
1067
+ msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1068
+ msgstr "Bewerk de jQueryc scripts for My Calendar in mini kalender formaat"
1069
+
1070
+ #: my-calendar-upgrade-db.php:19
1071
+ msgid "The My Calendar database needs to be updated."
1072
+ msgstr "My Calendars database moet up-to-date gemaakt worden"
1073
+
1074
+ #: my-calendar-upgrade-db.php:20
1075
+ #: my-calendar-upgrade-db.php:34
1076
+ msgid "Update now"
1077
+ msgstr "Maak nu up-to-date"
1078
+
1079
+ #: my-calendar-upgrade-db.php:33
1080
+ msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
1081
+ msgstr "Je hebt nog geen activiteiten opgegeven en My Calendar kan daarom niet afleiden of je database bij de tijd is. Als je geen activiteiten kunt invoeren, maak je database dan up-to-date!"
1082
+
1083
+ #: my-calendar-upgrade-db.php:44
1084
+ msgid "My Calendar Database is updated."
1085
+ msgstr "My Calendars database is bijgewerkt."
1086
+
1087
+ #: my-calendar-widgets.php:11
1088
+ #: my-calendar-widgets.php:51
1089
+ #: my-calendar-widgets.php:52
1090
+ msgid "Today's Events"
1091
+ msgstr "Activiteiten voor vandaag"
1092
+
1093
+ #: my-calendar-widgets.php:41
1094
+ #: my-calendar-widgets.php:126
1095
+ msgid "Template"
1096
+ msgstr "Sjabloon"
1097
+
1098
+ #: my-calendar-widgets.php:45
1099
+ msgid "Show this text if there are no events today:"
1100
+ msgstr "Toon deze tekst alleen als er vandaag geen activiteiten zijn:"
1101
+
1102
+ #: my-calendar-widgets.php:65
1103
+ #: my-calendar-widgets.php:152
1104
+ #: my-calendar-widgets.php:153
1105
+ msgid "Upcoming Events"
1106
+ msgstr "Komende activiteiten"
1107
+
1108
+ #: my-calendar-widgets.php:130
1109
+ msgid "Widget Options"
1110
+ msgstr "Widget indstellingen"
1111
+
1112
+ #: my-calendar-widgets.php:132
1113
+ msgid "Display upcoming events by:"
1114
+ msgstr "Toon aankomende activiteiten per:"
1115
+
1116
+ #: my-calendar-widgets.php:133
1117
+ msgid "Events (e.g. 2 past, 3 future)"
1118
+ msgstr "Activiteiten (bijv. 2 terug, 3 aankomend)"
1119
+
1120
+ #: my-calendar-widgets.php:134
1121
+ msgid "Dates (e.g. 4 days past, 5 forward)"
1122
+ msgstr "Datums (bijv. 4 dagen terug, 5 vooruit)"
1123
+
1124
+ #: my-calendar-widgets.php:138
1125
+ msgid "events into the future;"
1126
+ msgstr "Activiteiten in de toekomst;"
1127
+
1128
+ #: my-calendar-widgets.php:139
1129
+ msgid "events from the past"
1130
+ msgstr "activiteiten in het verleden;"
1131
+
1132
+ #: my-calendar-widgets.php:142
1133
+ msgid "days into the future;"
1134
+ msgstr "dagen in de toekomst;"
1135
+
1136
+ #: my-calendar-widgets.php:143
1137
+ msgid "days from the past"
1138
+ msgstr "dagen in het verleden"
1139
+
1140
+ #: my-calendar-widgets.php:146
1141
+ msgid "Show only this category:"
1142
+ msgstr "Toon alleen deze categorie:"
1143
+
1144
+ #: my-calendar-widgets.php:272
1145
+ msgid "There are no events currently scheduled."
1146
+ msgstr "Er zijn momenteel geen activiteiten gepland."
1147
+
1148
+ #: my-calendar.php:56
1149
+ #: my-calendar.php:179
1150
+ msgid "Settings"
1151
+ msgstr "Instellingen"
1152
+
1153
+ #: my-calendar.php:57
1154
+ #: my-calendar.php:181
1155
+ msgid "Help"
1156
+ msgstr "Help"
1157
+
1158
+ #: my-calendar.php:82
1159
+ msgid "Get Support"
1160
+ msgstr "Krijg ondersteuning"
1161
+
1162
+ #: my-calendar.php:83
1163
+ #: my-calendar.php:181
1164
+ msgid "My Calendar Help"
1165
+ msgstr "My Calendar help"
1166
+
1167
+ #: my-calendar.php:84
1168
+ msgid "Make a Donation"
1169
+ msgstr "Maak een donatie"
1170
+
1171
+ #. #-#-#-#-# plugin.pot (My Calendar 1.4.8) #-#-#-#-#
1172
+ #. Plugin Name of the plugin/theme
1173
+ #: my-calendar.php:170
1174
+ msgid "My Calendar"
1175
+ msgstr "My Calendar"
1176
+
1177
+ #: my-calendar.php:173
1178
+ msgid "Add/Edit Events"
1179
+ msgstr "Voeg toe/bewerk activiteiten"
1180
+
1181
+ #: my-calendar.php:180
1182
+ msgid "Style Editor"
1183
+ msgstr "Stijl bewerker"
1184
+
1185
+ #: my-calendar.php:619
1186
+ msgid "Event Details"
1187
+ msgstr "Activiteit details"
1188
+
1189
+ #: my-calendar.php:628
1190
+ msgid "Close"
1191
+ msgstr "Sluit"
1192
+
1193
+ #: my-calendar.php:638
1194
+ msgid "Not Applicable"
1195
+ msgstr "Niet van toepassing"
1196
+
1197
+ #: my-calendar.php:650
1198
+ msgid "Posted by"
1199
+ msgstr "Gepubliceerd door"
1200
+
1201
+ #: my-calendar.php:696
1202
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1203
+ msgstr "Deze activiteit is onderdeel van een reeks. Je moet registreren voor de eerste activiteit om mee te doen."
1204
+
1205
+ #: my-calendar.php:1199
1206
+ msgid "Month"
1207
+ msgstr "Maand"
1208
+
1209
+ #: my-calendar.php:1200
1210
+ #: my-calendar.php:1286
1211
+ msgid "January"
1212
+ msgstr "Januari"
1213
+
1214
+ #: my-calendar.php:1201
1215
+ #: my-calendar.php:1286
1216
+ msgid "February"
1217
+ msgstr "Februari"
1218
+
1219
+ #: my-calendar.php:1202
1220
+ #: my-calendar.php:1286
1221
+ msgid "March"
1222
+ msgstr "Maart"
1223
+
1224
+ #: my-calendar.php:1203
1225
+ #: my-calendar.php:1286
1226
+ msgid "April"
1227
+ msgstr "April"
1228
+
1229
+ #: my-calendar.php:1204
1230
+ #: my-calendar.php:1286
1231
+ msgid "May"
1232
+ msgstr "Mei"
1233
+
1234
+ #: my-calendar.php:1205
1235
+ #: my-calendar.php:1286
1236
+ msgid "June"
1237
+ msgstr "Juni"
1238
+
1239
+ #: my-calendar.php:1206
1240
+ #: my-calendar.php:1286
1241
+ msgid "July"
1242
+ msgstr "Juli"
1243
+
1244
+ #: my-calendar.php:1207
1245
+ #: my-calendar.php:1286
1246
+ msgid "August"
1247
+ msgstr "Augustus"
1248
+
1249
+ #: my-calendar.php:1208
1250
+ #: my-calendar.php:1286
1251
+ msgid "September"
1252
+ msgstr "September"
1253
+
1254
+ #: my-calendar.php:1209
1255
+ #: my-calendar.php:1286
1256
+ msgid "October"
1257
+ msgstr "Oktober"
1258
+
1259
+ #: my-calendar.php:1210
1260
+ #: my-calendar.php:1286
1261
+ msgid "November"
1262
+ msgstr "November"
1263
+
1264
+ #: my-calendar.php:1211
1265
+ #: my-calendar.php:1286
1266
+ msgid "December"
1267
+ msgstr "December"
1268
+
1269
+ #: my-calendar.php:1213
1270
+ msgid "Year"
1271
+ msgstr "Jaar"
1272
+
1273
+ #: my-calendar.php:1238
1274
+ msgid "Go"
1275
+ msgstr "Ga"
1276
+
1277
+ #: my-calendar.php:1260
1278
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1279
+ msgstr "<abbr title=\"Zondag\">Zo</abbr>"
1280
+
1281
+ #: my-calendar.php:1261
1282
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1283
+ msgstr "<abbr title=\"Maandag\">Ma</abbr>"
1284
+
1285
+ #: my-calendar.php:1262
1286
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1287
+ msgstr "<abbr title=\"Dinsdag\">Di</abbr>"
1288
+
1289
+ #: my-calendar.php:1263
1290
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1291
+ msgstr "<abbr title=\"Woensdag\">Wo</abbr>"
1292
+
1293
+ #: my-calendar.php:1264
1294
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1295
+ msgstr "<abbr title=\"Donderdag\">Do</abbr>"
1296
+
1297
+ #: my-calendar.php:1265
1298
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1299
+ msgstr "<abbr title=\"Vrijdag\">Vr</abbr>"
1300
+
1301
+ #: my-calendar.php:1266
1302
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
1303
+ msgstr "<abbr title=\"zaterdag\">Za</abbr>"
1304
+
1305
+ #: my-calendar.php:1271
1306
+ msgid "<abbr title=\"Sunday\">S</abbr>"
1307
+ msgstr "<abbr title=\"Zondag\">Z</abbr>"
1308
+
1309
+ #: my-calendar.php:1272
1310
+ msgid "<abbr title=\"Monday\">M</abbr>"
1311
+ msgstr "<abbr title=\"Maandag\">M</abbr>"
1312
+
1313
+ #: my-calendar.php:1273
1314
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1315
+ msgstr "<abbr title=\"Dinsdag\">D</abbr>"
1316
+
1317
+ #: my-calendar.php:1274
1318
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1319
+ msgstr "<abbr title=\"Woensdag\">W</abbr>"
1320
+
1321
+ #: my-calendar.php:1275
1322
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1323
+ msgstr "<abbr title=\"Donderdag\">D</abbr>"
1324
+
1325
+ #: my-calendar.php:1276
1326
+ msgid "<abbr title=\"Friday\">F</abbr>"
1327
+ msgstr "<abbr title=\"Vrijdag\">V</abbr>"
1328
+
1329
+ #: my-calendar.php:1277
1330
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1331
+ msgstr "<abbr title=\"Zaterdag\">Z</abbr>"
1332
+
1333
+ #: my-calendar.php:1323
1334
+ msgid "and"
1335
+ msgstr "en"
1336
+
1337
+ #: my-calendar.php:1352
1338
+ #: my-calendar.php:1356
1339
+ msgid "Calendar"
1340
+ msgstr "Kalender"
1341
+
1342
+ #: my-calendar.php:1359
1343
+ msgid "Events in"
1344
+ msgstr "Activiteiten in"
1345
+
1346
+ #: my-calendar.php:1456
1347
+ msgid "There are no events scheduled during this period."
1348
+ msgstr "Er zijn geen activiteiten gepland voor deze periode."
1349
+
1350
+ #: my-calendar.php:1466
1351
+ msgid "Category Key"
1352
+ msgstr "Categorie sleutel"
1353
+
1354
+ #. Plugin URI of the plugin/theme
1355
+ msgid "http://www.joedolson.com/articles/my-calendar/"
1356
+ msgstr "http://www.joedolson.com/articles/my-calendar/"
1357
+
1358
+ #. Description of the plugin/theme
1359
+ msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
1360
+ msgstr "Toegankelijke Wordpress activiteiten kalender plugin. Toont activiteiten van meerdere kalenders in pagina's, berichten of widgets."
1361
+
1362
+ #. Author of the plugin/theme
1363
+ msgid "Joseph C Dolson"
1364
+ msgstr "Joseph C Dolson"
1365
+
1366
+ #. Author URI of the plugin/theme
1367
+ msgid "http://www.joedolson.com"
1368
+ msgstr "http://www.joedolson.com"
1369
+
1370
+ #~ msgid "Yes"
1371
+ #~ msgstr "Ja"
1372
+
1373
+ #~ msgid "No"
1374
+ #~ msgstr "Nee"
1375
+
1376
+ #~ msgid "Add New Category"
1377
+ #~ msgstr "Voeg nieuwe categorie toeTilføj Ny Kategori"
1378
+
1379
+ #~ msgid ""
1380
+ #~ "An event with the details you submitted could not be found in the "
1381
+ #~ "database. This may indicate a problem with your database or the way in "
1382
+ #~ "which it is configured."
1383
+ #~ msgstr ""
1384
+ #~ "En begivenhed med de angivne detaljer kunne ikke findes i databasen. "
1385
+ #~ "Dette indikerer muligvis et problem med din database eller måden, den er "
1386
+ #~ "konfigureret på."
1387
+
1388
+ #~ msgid "Failure"
1389
+ #~ msgstr "FEJL"
1390
+
1391
+ #~ msgid "You can't update an event if you haven't submitted an event id"
1392
+ #~ msgstr ""
1393
+ #~ "Du kan ikke opdatere en begivenhed, hvis du ikke har sendt et begivenheds-"
1394
+ #~ "id."
my-calendar-nl_NL.mo ADDED
Binary file
my-calendar-nl_NL.po ADDED
@@ -0,0 +1,1394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: Luud Heck <heck@dds.nl>\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=iso-8859-1\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+
12
+ # Translation of the WordPress plugin My Calendar 1.4.10 by Luud Heck.
13
+ # Copyright (C) 2010 Luud Heck
14
+ # This file is distributed under the same license as the My Calendar package.
15
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
16
+ #
17
+ #: my-calendar-categories.php:41
18
+ msgid "Category added successfully"
19
+ msgstr "Categorie succesvol toegevoegd "
20
+
21
+ #: my-calendar-categories.php:43
22
+ msgid "Category addition failed."
23
+ msgstr "Categorie toevoegen mislukt"
24
+
25
+ #: my-calendar-categories.php:53
26
+ msgid "Category deleted successfully. Categories in calendar updated."
27
+ msgstr "Categorie succesvol verwijderd. Categorie&euml;n in kalender bijgewerkt."
28
+
29
+ #: my-calendar-categories.php:55
30
+ msgid "Category deleted successfully. Categories in calendar not updated."
31
+ msgstr "Categorie succesvol verwijderd. Categorie&euml;n in kalender niet bijgewerkt."
32
+
33
+ #: my-calendar-categories.php:57
34
+ msgid "Category not deleted. Categories in calendar updated."
35
+ msgstr "Categorie niet verwijderd. Categorie&euml;n in kalender bijgewerkt."
36
+
37
+ #: my-calendar-categories.php:66
38
+ msgid "Category edited successfully"
39
+ msgstr "Categorie succesvol bewerkt"
40
+
41
+ #: my-calendar-categories.php:88
42
+ #: my-calendar-categories.php:112
43
+ #: my-calendar-categories.php:130
44
+ msgid "Add Category"
45
+ msgstr "Voeg categorie toe"
46
+
47
+ #: my-calendar-categories.php:90
48
+ #: my-calendar-categories.php:112
49
+ msgid "Edit Category"
50
+ msgstr "Bewerk categorie"
51
+
52
+ #: my-calendar-categories.php:97
53
+ msgid "Category Editor"
54
+ msgstr "Categorie bewerker"
55
+
56
+ #: my-calendar-categories.php:113
57
+ #: my-calendar-categories.php:156
58
+ msgid "Category Name"
59
+ msgstr "Categorie naam"
60
+
61
+ #: my-calendar-categories.php:114
62
+ msgid "Category Color (Hex format)"
63
+ msgstr "Categorie kleur (Hex formaat)"
64
+
65
+ #: my-calendar-categories.php:115
66
+ #: my-calendar-categories.php:158
67
+ msgid "Category Icon"
68
+ msgstr "Categorie icoon"
69
+
70
+ #: my-calendar-categories.php:130
71
+ #: my-calendar-locations.php:121
72
+ msgid "Save Changes"
73
+ msgstr "Bewaar veranderingen"
74
+
75
+ #: my-calendar-categories.php:143
76
+ #: my-calendar.php:177
77
+ msgid "Manage Categories"
78
+ msgstr "Beheer categorie&euml;n"
79
+
80
+ #: my-calendar-categories.php:155
81
+ #: my-calendar-event-manager.php:531
82
+ #: my-calendar-locations.php:147
83
+ msgid "ID"
84
+ msgstr "ID"
85
+
86
+ #: my-calendar-categories.php:157
87
+ msgid "Category Color"
88
+ msgstr "Categorie kleur"
89
+
90
+ #: my-calendar-categories.php:159
91
+ #: my-calendar-categories.php:173
92
+ #: my-calendar-event-manager.php:591
93
+ #: my-calendar-locations.php:149
94
+ #: my-calendar-locations.php:161
95
+ msgid "Edit"
96
+ msgstr "Bewerk"
97
+
98
+ #: my-calendar-categories.php:160
99
+ #: my-calendar-categories.php:179
100
+ #: my-calendar-event-manager.php:76
101
+ #: my-calendar-event-manager.php:591
102
+ #: my-calendar-locations.php:150
103
+ #: my-calendar-locations.php:162
104
+ msgid "Delete"
105
+ msgstr "Verwijder"
106
+
107
+ #: my-calendar-categories.php:176
108
+ #: my-calendar-event-manager.php:572
109
+ #: my-calendar-settings.php:207
110
+ #: my-calendar.php:638
111
+ msgid "N/A"
112
+ msgstr "Niet beschikbaar"
113
+
114
+ #: my-calendar-categories.php:179
115
+ #: my-calendar-locations.php:162
116
+ msgid "Are you sure you want to delete this category?"
117
+ msgstr "Weet je zeker dat je deze categorie wilt verwijderen?"
118
+
119
+ #: my-calendar-categories.php:190
120
+ msgid "There are no categories in the database - something has gone wrong!"
121
+ msgstr "Er zijn geen categorie&euml;n in de database - er is iets mis gegaan!"
122
+
123
+ #: my-calendar-event-manager.php:30
124
+ #: my-calendar-settings.php:298
125
+ msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
126
+ msgstr "My Calendar heeft ontdekt dat je de Calendar plugin van Kieran O'Shea geïnstalleerd hebt. Je kunt de activiteiten en categorie&euml;n daarvan importeren in de My Calendar database. Wil je deze activiteiten importeren?"
127
+
128
+ #: my-calendar-event-manager.php:36
129
+ #: my-calendar-settings.php:304
130
+ msgid "Import from Calendar"
131
+ msgstr "Import van kalender"
132
+
133
+ #: my-calendar-event-manager.php:41
134
+ msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
135
+ msgstr "Hoewel het kan dat deze import mislukt zou dit geen invloed moeten hebben op je bestaande Calendar database. Mocht je toch problemen tegenkomen <a href=\"http://www.joedolson.com/contact.php\">waarschuw me dan a.u.b.</a>"
136
+
137
+ #: my-calendar-event-manager.php:71
138
+ msgid "Delete Event"
139
+ msgstr "Verwijder activiteit"
140
+
141
+ #: my-calendar-event-manager.php:71
142
+ msgid "Are you sure you want to delete this event?"
143
+ msgstr "Weet je zeker dat je dit activiteit wilt verwijderen?"
144
+
145
+ #: my-calendar-event-manager.php:84
146
+ msgid "You do not have permission to delete that event."
147
+ msgstr "Je hebt geen rechten om dit activiteit te verwijderen."
148
+
149
+ #: my-calendar-event-manager.php:107
150
+ #: my-calendar-event-manager.php:124
151
+ #: my-calendar-event-manager.php:148
152
+ #: my-calendar-event-manager.php:163
153
+ #: my-calendar-event-manager.php:700
154
+ #: my-calendar-event-manager.php:705
155
+ #: my-calendar-event-manager.php:710
156
+ #: my-calendar-event-manager.php:722
157
+ #: my-calendar-event-manager.php:732
158
+ #: my-calendar-event-manager.php:740
159
+ #: my-calendar-event-manager.php:749
160
+ #: my-calendar-event-manager.php:757
161
+ msgid "Error"
162
+ msgstr "Fout"
163
+
164
+ #: my-calendar-event-manager.php:107
165
+ msgid "I'm sorry! I couldn'd add that event to the database."
166
+ msgstr "Sorrie! I kon dit event niet aan de database toevoegen."
167
+
168
+ #: my-calendar-event-manager.php:109
169
+ msgid "Event added. It will now show in your calendar."
170
+ msgstr "Activiteit toegevoegd. Het is nu zichtbaar in je kalender."
171
+
172
+ #: my-calendar-event-manager.php:124
173
+ msgid "Your event was not updated."
174
+ msgstr "Je activiteit was niet bijgewerkt."
175
+
176
+ #: my-calendar-event-manager.php:128
177
+ msgid "Nothing was changed in that update."
178
+ msgstr "Niets was veranderd in deze herziening."
179
+
180
+ #: my-calendar-event-manager.php:132
181
+ msgid "Event updated successfully"
182
+ msgstr "Activiteit succesvol bijgewerkt"
183
+
184
+ #: my-calendar-event-manager.php:138
185
+ msgid "You do not have sufficient permissions to edit that event."
186
+ msgstr "Je hebt niet voldoende rechten om die activiteit te bewerken."
187
+
188
+ #: my-calendar-event-manager.php:148
189
+ msgid "You can't delete an event if you haven't submitted an event id"
190
+ msgstr "Je kunt geen activiteit verwijderen als je geen activiteit id hebt opgegeven."
191
+
192
+ #: my-calendar-event-manager.php:159
193
+ msgid "Event deleted successfully"
194
+ msgstr "Activiteit succesvol verwijderd"
195
+
196
+ #: my-calendar-event-manager.php:163
197
+ msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
198
+ msgstr "Ondanks het verzoek om verwijderen staat de activiteit nog steeds in de database. Graag onderzoeken a.u.b."
199
+
200
+ #: my-calendar-event-manager.php:182
201
+ #: my-calendar-event-manager.php:268
202
+ msgid "Edit Event"
203
+ msgstr "Bewerk activiteit"
204
+
205
+ #: my-calendar-event-manager.php:186
206
+ #: my-calendar-event-manager.php:195
207
+ msgid "You must provide an event id in order to edit it"
208
+ msgstr "Je moet een activiteit id opgeven om het te bewerken"
209
+
210
+ #: my-calendar-event-manager.php:191
211
+ #: my-calendar-event-manager.php:268
212
+ msgid "Copy Event"
213
+ msgstr "Kopieer activiteit"
214
+
215
+ #: my-calendar-event-manager.php:201
216
+ msgid "Add Event"
217
+ msgstr "Voeg activiteit toe"
218
+
219
+ #: my-calendar-event-manager.php:206
220
+ msgid "Manage Events"
221
+ msgstr "Beheer activiteiten"
222
+
223
+ #: my-calendar-event-manager.php:240
224
+ msgid "Sorry! That's an invalid event key."
225
+ msgstr "Sorrie! Dat is een ongeldige activiteit id."
226
+
227
+ #: my-calendar-event-manager.php:245
228
+ msgid "Sorry! We couldn't find an event with that ID."
229
+ msgstr "Sorrie! We kunnen geen activiteit vinden met dat id."
230
+
231
+ #: my-calendar-event-manager.php:268
232
+ msgid "Add an Event"
233
+ msgstr "Voeg een activiteit toe"
234
+
235
+ #: my-calendar-event-manager.php:277
236
+ msgid "Enter your Event Information"
237
+ msgstr "Voer de informatie voor deze activiteit in"
238
+
239
+ #: my-calendar-event-manager.php:280
240
+ msgid "Event Title"
241
+ msgstr "Activiteit titel"
242
+
243
+ #: my-calendar-event-manager.php:284
244
+ msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
245
+ msgstr "Activiteit omschrijving (<abbr title=\"hypertext markup language\">HTML</abbr> toegestaan)"
246
+
247
+ #: my-calendar-event-manager.php:289
248
+ msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
249
+ msgstr "Verkorte activiteit omschrijving (<abbr title=\"hypertext markup language\">HTML</abbr> toegestaan)"
250
+
251
+ #: my-calendar-event-manager.php:294
252
+ msgid "Event Category"
253
+ msgstr "Activiteit categorie"
254
+
255
+ #: my-calendar-event-manager.php:319
256
+ msgid "Event Link (Optional)"
257
+ msgstr "Activiteit link (optioneel)"
258
+
259
+ #: my-calendar-event-manager.php:319
260
+ msgid "This link will expire when the event passes."
261
+ msgstr "Deze link zal verlopen als de activiteit geweest is."
262
+
263
+ #: my-calendar-event-manager.php:323
264
+ msgid "Start Date (YYYY-MM-DD)"
265
+ msgstr "Begindatum (JJJJ-MM-DD)"
266
+
267
+ #: my-calendar-event-manager.php:326
268
+ msgid "End Date (YYYY-MM-DD) (Optional)"
269
+ msgstr "Einddatum (JJJJ-MM-DD) (Optioneel)"
270
+
271
+ #: my-calendar-event-manager.php:329
272
+ msgid "Time (hh:mm)"
273
+ msgstr "Tijd (uu:mm)"
274
+
275
+ #: my-calendar-event-manager.php:341
276
+ msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
277
+ msgstr "Optioneel, laat leeg indien deze activiteit de gehele dag duurt of niet op een specifiek tijdstip plaats vindt."
278
+
279
+ #: my-calendar-event-manager.php:341
280
+ msgid "Current time difference from GMT is "
281
+ msgstr "Huidig tijdsverschil met GMT is "
282
+
283
+ #: my-calendar-event-manager.php:341
284
+ msgid " hour(s)"
285
+ msgstr " uur."
286
+
287
+ #: my-calendar-event-manager.php:344
288
+ msgid "End Time (hh:mm)"
289
+ msgstr "Eindtijd (uu:mm)"
290
+
291
+ #: my-calendar-event-manager.php:355
292
+ msgid "Optional. End times will not be displayed on events where this is not set."
293
+ msgstr "Optioneel. Eindtijd wordt niet weergegeven voor activiteiten waarvoor dit niet is opgegeven."
294
+
295
+ #: my-calendar-event-manager.php:360
296
+ msgid "Recurring Events"
297
+ msgstr "Terugkomende activiteiten"
298
+
299
+ #: my-calendar-event-manager.php:363
300
+ msgid "Repeats for"
301
+ msgstr "Herhaald voor"
302
+
303
+ #: my-calendar-event-manager.php:364
304
+ msgid "Units"
305
+ msgstr "Eenheden"
306
+
307
+ #: my-calendar-event-manager.php:365
308
+ msgid "Does not recur"
309
+ msgstr "Wordt niet herhaald"
310
+
311
+ #: my-calendar-event-manager.php:366
312
+ #: my-calendar-event-manager.php:565
313
+ msgid "Daily"
314
+ msgstr "Dagelijks"
315
+
316
+ #: my-calendar-event-manager.php:367
317
+ #: my-calendar-event-manager.php:566
318
+ msgid "Weekly"
319
+ msgstr "Wekelijks"
320
+
321
+ #: my-calendar-event-manager.php:368
322
+ msgid "Bi-weekly"
323
+ msgstr "Twee-wekelijks"
324
+
325
+ #: my-calendar-event-manager.php:369
326
+ #: my-calendar-event-manager.php:568
327
+ msgid "Monthly"
328
+ msgstr "Maandelijks"
329
+
330
+ #: my-calendar-event-manager.php:370
331
+ msgid "Annually"
332
+ msgstr "Jaarlijks"
333
+
334
+ #: my-calendar-event-manager.php:372
335
+ msgid "Entering 0 means forever, if a unit is selected. If the recurrance unit is left at \"Does not recur,\" the event will not reoccur."
336
+ msgstr "Opgeven van 0 betekent oneindig indien een eenheid van tijd is geselecteerd. Als de herhaling blijft staan op \"Wordt niet herhaald\" dan zal de activiteit niet vaker voorkomen."
337
+
338
+ #: my-calendar-event-manager.php:375
339
+ msgid "Group this event as a single item"
340
+ msgstr "Groepeer deze activiteit als een enkel onderdeel."
341
+
342
+ #: my-calendar-event-manager.php:386
343
+ msgid "Event Registration Status"
344
+ msgstr "Activiteit registratie status"
345
+
346
+ #: my-calendar-event-manager.php:388
347
+ msgid "Open"
348
+ msgstr "Open"
349
+
350
+ #: my-calendar-event-manager.php:389
351
+ msgid "Closed"
352
+ msgstr "Gesloten"
353
+
354
+ #: my-calendar-event-manager.php:390
355
+ msgid "Does not apply"
356
+ msgstr "Niet van toepassing"
357
+
358
+ #: my-calendar-event-manager.php:400
359
+ #: my-calendar-locations.php:81
360
+ msgid "Event Location"
361
+ msgstr "Activiteit locatie"
362
+
363
+ #: my-calendar-event-manager.php:409
364
+ msgid "Choose a preset location:"
365
+ msgstr "Kies een voorkeurslocatie:"
366
+
367
+ #: my-calendar-event-manager.php:423
368
+ msgid "Add recurring locations for later use."
369
+ msgstr "Voeg herhaalde locaties toe voor later gebruik."
370
+
371
+ #: my-calendar-event-manager.php:430
372
+ #: my-calendar-locations.php:83
373
+ msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
374
+ msgstr "Alle locatie velden zijn optioneel: <em>onvoldoende informatie kan resulteren in een inaccurate kaart</em>."
375
+
376
+ #: my-calendar-event-manager.php:433
377
+ #: my-calendar-locations.php:86
378
+ msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
379
+ msgstr "Naam van locatie (bijv. <em>Joe's Bar & Grill</em>)"
380
+
381
+ #: my-calendar-event-manager.php:436
382
+ #: my-calendar-locations.php:89
383
+ msgid "Street Address"
384
+ msgstr "Adres"
385
+
386
+ #: my-calendar-event-manager.php:439
387
+ #: my-calendar-locations.php:92
388
+ msgid "Street Address (2)"
389
+ msgstr "Adres (2)"
390
+
391
+ #: my-calendar-event-manager.php:442
392
+ #: my-calendar-locations.php:95
393
+ msgid "City"
394
+ msgstr "Stad"
395
+
396
+ #: my-calendar-event-manager.php:442
397
+ #: my-calendar-locations.php:95
398
+ msgid "State/Province"
399
+ msgstr "Staat/Provincie"
400
+
401
+ #: my-calendar-event-manager.php:442
402
+ #: my-calendar-locations.php:95
403
+ msgid "Postal Code"
404
+ msgstr "Postcode"
405
+
406
+ #: my-calendar-event-manager.php:445
407
+ #: my-calendar-locations.php:98
408
+ msgid "Country"
409
+ msgstr "Land"
410
+
411
+ #: my-calendar-event-manager.php:448
412
+ #: my-calendar-locations.php:101
413
+ msgid "Initial Zoom"
414
+ msgstr "Initi&euml;le Zoom"
415
+
416
+ #: my-calendar-event-manager.php:450
417
+ #: my-calendar-locations.php:103
418
+ msgid "Neighborhood"
419
+ msgstr "Omgeving"
420
+
421
+ #: my-calendar-event-manager.php:451
422
+ #: my-calendar-locations.php:104
423
+ msgid "Small City"
424
+ msgstr "Kleine stad"
425
+
426
+ #: my-calendar-event-manager.php:452
427
+ #: my-calendar-locations.php:105
428
+ msgid "Large City"
429
+ msgstr "Grote stad"
430
+
431
+ #: my-calendar-event-manager.php:453
432
+ #: my-calendar-locations.php:106
433
+ msgid "Greater Metro Area"
434
+ msgstr "Grote Metropool"
435
+
436
+ #: my-calendar-event-manager.php:454
437
+ #: my-calendar-locations.php:107
438
+ msgid "State"
439
+ msgstr "Staat"
440
+
441
+ #: my-calendar-event-manager.php:455
442
+ #: my-calendar-locations.php:108
443
+ msgid "Region"
444
+ msgstr "Regio"
445
+
446
+ #: my-calendar-event-manager.php:459
447
+ #: my-calendar-locations.php:112
448
+ msgid "GPS Coordinates (optional)"
449
+ msgstr "GPS-co&ouml;rdinaten (optioneel)"
450
+
451
+ #: my-calendar-event-manager.php:461
452
+ #: my-calendar-locations.php:114
453
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
454
+ msgstr "Als je GPS co&ouml;rdinaten voor je locatie opgeeft zullen deze gebruikt worden in plaats van enige andere adres informatie om je locatie te identificeren."
455
+
456
+ #: my-calendar-event-manager.php:464
457
+ #: my-calendar-locations.php:117
458
+ msgid "Longitude"
459
+ msgstr "Lengte"
460
+
461
+ #: my-calendar-event-manager.php:464
462
+ #: my-calendar-locations.php:117
463
+ msgid "Latitude"
464
+ msgstr "Breedte"
465
+
466
+ #: my-calendar-event-manager.php:472
467
+ msgid "Save Event"
468
+ msgstr "Bewaar activiteit"
469
+
470
+ #: my-calendar-event-manager.php:532
471
+ #: my-calendar-widgets.php:37
472
+ #: my-calendar-widgets.php:122
473
+ msgid "Title"
474
+ msgstr "Titel"
475
+
476
+ #: my-calendar-event-manager.php:533
477
+ msgid "Link"
478
+ msgstr "Koppeling"
479
+
480
+ #: my-calendar-event-manager.php:534
481
+ #: my-calendar-locations.php:148
482
+ msgid "Location"
483
+ msgstr "Locatie"
484
+
485
+ #: my-calendar-event-manager.php:535
486
+ msgid "Description"
487
+ msgstr "Omschrijving"
488
+
489
+ #: my-calendar-event-manager.php:536
490
+ msgid "Start Date"
491
+ msgstr "Begindatum"
492
+
493
+ #: my-calendar-event-manager.php:537
494
+ msgid "Recurs"
495
+ msgstr "Herhaling"
496
+
497
+ #: my-calendar-event-manager.php:538
498
+ #: my-calendar-settings.php:195
499
+ msgid "Author"
500
+ msgstr "Auteur"
501
+
502
+ #: my-calendar-event-manager.php:539
503
+ msgid "Category"
504
+ msgstr "Categorie"
505
+
506
+ #: my-calendar-event-manager.php:540
507
+ msgid "Edit / Delete"
508
+ msgstr "Bewerk / Verwijder"
509
+
510
+ #: my-calendar-event-manager.php:564
511
+ msgid "Never"
512
+ msgstr "Nooit"
513
+
514
+ #: my-calendar-event-manager.php:567
515
+ msgid "Bi-Weekly"
516
+ msgstr "Twee wekelijks"
517
+
518
+ #: my-calendar-event-manager.php:569
519
+ msgid "Yearly"
520
+ msgstr "Jaarlijks"
521
+
522
+ #: my-calendar-event-manager.php:573
523
+ msgid "Forever"
524
+ msgstr "Altijd"
525
+
526
+ #: my-calendar-event-manager.php:574
527
+ msgid "Times"
528
+ msgstr "Tijden"
529
+
530
+ #: my-calendar-event-manager.php:589
531
+ msgid "Copy"
532
+ msgstr "Kopi&euml;er"
533
+
534
+ #: my-calendar-event-manager.php:602
535
+ msgid "There are no events in the database!"
536
+ msgstr "Er zijn geen activiteiten in de database!"
537
+
538
+ #: my-calendar-event-manager.php:700
539
+ msgid "Your event end date must be either after or the same as your event begin date"
540
+ msgstr "De einddatum moet of later dan of gelijk zijn aan de begindatum."
541
+
542
+ #: my-calendar-event-manager.php:705
543
+ msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
544
+ msgstr "Het opegegeven datumformaat is correct maar een of meer van je datums is ongeldig. Controleer of het juiste aantal dagen voor maanden en (schrikkel)jaren is opgegeven."
545
+
546
+ #: my-calendar-event-manager.php:710
547
+ msgid "Both start and end dates must be in the format YYYY-MM-DD"
548
+ msgstr "Zowel begin- en einddatum moeten worden gespecificeerd in het formaat JJJJ-MM-DD"
549
+
550
+ #: my-calendar-event-manager.php:722
551
+ msgid "The time field must either be blank or be entered in the format hh:mm"
552
+ msgstr "Het tijd veld moet of leeg zijn of opgegeven worden in het formaat uu:mm"
553
+
554
+ #: my-calendar-event-manager.php:732
555
+ msgid "The end time field must either be blank or be entered in the format hh:mm"
556
+ msgstr "Het eindtijd veld moet leeg zijn of opgegeven worden in het formaat uu:mm"
557
+
558
+ #: my-calendar-event-manager.php:740
559
+ msgid "The URL entered must either be prefixed with http:// or be completely blank"
560
+ msgstr "De opgegeven koppeling moet vooraf gegaan worden door http:// of volledig leeg zijn"
561
+
562
+ #: my-calendar-event-manager.php:749
563
+ msgid "The event title must be between 1 and 255 characters in length."
564
+ msgstr "De activiteit titel moet minstens 1 en mag maximaal 255 karakters lang zijn."
565
+
566
+ #: my-calendar-event-manager.php:757
567
+ msgid "The repetition value must be 0 unless a type of recurrance is selected."
568
+ msgstr "De herhalingswaarde moet 0 zijn tenzij er een type herhaling is geselecteerd."
569
+
570
+ #: my-calendar-help.php:6
571
+ msgid "How to use My Calendar"
572
+ msgstr "Hoe My Calendar te gebruiken"
573
+
574
+ #: my-calendar-help.php:11
575
+ msgid "Shortcode Syntax"
576
+ msgstr "Verkorte code syntaxis"
577
+
578
+ #: my-calendar-help.php:14
579
+ msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
580
+ msgstr "Deze verkorte codes kunnen worden gebruikt in Berichten, Pagina's of in tekts widgets."
581
+
582
+ #: my-calendar-help.php:18
583
+ msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
584
+ msgstr "Deze eenvoudige verkorte code toont de kalender in een bericht of pagina inclusief alle categorien en de categorie sleutel in een traditioneel maand-bij-maand formaat."
585
+
586
+ #: my-calendar-help.php:21
587
+ msgid "The shortcode supports three attributes, <code>category</code>, <code>format</code> and <code>showkey</code>. There two alternate option for <code>format</code> &mdash; <code>list</code> &mdash; which will show the calendar in a list format, skipping dates without any events, and <code>mini</code>, which will display the calendar in a form more suitable to being displayed in smaller spaces, such as the sidebar. The <code>category</code> attribute requires either the name of or ID number one of your event categories (the name is case-sensitive). This will show a calendar only including events in that category. Multiple categories can be specified by separating the category names or IDs using the pipe character: <code>|</code>. Setting <code>showkey</code> to <code>no</code> will prevent the category key from being displayed &mdash; this can be useful with single-category output."
588
+ msgstr "De verkorte code ondersteund drie attributen, <code>category</code>, <code>format</code> en <code>showkey</code>. Er zijn twee alternatieve opties voor <code>format</code> &mdash; <code>list</code> &mdash; zal de kalender in lijst formaat weergeven waarin datums zonder activiteiten weggelaten worden, en <code>mini</code> welke de kalender in een formaat weergeeft dat meer bruikbaar is in kleinere ruimten zoals de zijbalk. Het <code>category</code> attributt verwacht of de naam of het id getal van een van je activiteit categorieen (de naam is letterkast gevoelig, i.e. hoofd- en kleine letters). deze toont een kalender met alleen activiteiten in de opgegeven categorie. Meerdere categorieen kunnen opgegeven worden door ze te scheiden met het pijp character: <code>|</code>. Het instellen van <code>showkey</code> naar <code>no</code> zal voorkoemn dat de categoriesleutel wordt weergegeven &mdash; dit kan handig zijn als er maar een enkele categorie wordt weergegeven."
589
+
590
+ #: my-calendar-help.php:24
591
+ msgid "This shortcode displays the output of the Upcoming Events widget. Without attributes, it will display using the settings in your widget; the attributes are used to override the widget settings. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below."
592
+ msgstr "Deze verkorte code toont de uitvoor van de Komende activiteiten widget. Zonder attributen zal het de instellingen van je widget gebruiken voor weergave. De attributen worden gebruikt om de widget instellingen te vervangen. De <code>before</code> en <code>after</code> attributen werken hetzelfde als de categorie attributen voor de hoofd kalender verkorte code. Sjablonen werken met gebruikmaking van de verkorte codes opgesomd hieronder."
593
+
594
+ #: my-calendar-help.php:27
595
+ msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
596
+ msgstr "Voorspelbaar genoeg toont deze verkorte code de uitvoor van de Geberutenissen van vandaag widget met twee configureerbare attributen: categorie en sjabloon."
597
+
598
+ #: my-calendar-help.php:34
599
+ msgid "Category Icons"
600
+ msgstr "Categorie iconen"
601
+
602
+ #: my-calendar-help.php:37
603
+ msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
604
+ msgstr "My Calendar is ontworpen om meerder kalenders te beheren. De basis voor deze calenders zijn categorieen. Je kunt eenvoudig een kalender pagina maken die alle categorieen bevat, of je kunt besluiten om aparte pagina's aan kalenders in iedere categorie toe te kennen. Bijvoorbeeld kan dit handig zijn als je de tournee voor meerdere bands beheerd, kalenders beheerd voor meedere locaties, etc."
605
+
606
+ #: my-calendar-help.php:40
607
+ msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
608
+ msgstr "De voorgeinstalleerde categorie iconen zouden niet specifiek bruikbaar kunnen zijn voor jouw toepassing. Ik neem aan dat je je eigen iconen zult uploaden -- het enige dat je moet doen is ze te uploaden naar de plugin's iconen map en ze zijn meteen klaar voor gebruik. Of plaats ze in een map \"my-calendar-custom\" om te voorkomen dat ze worden overschreven bij opwaarderingen."
609
+
610
+ #: my-calendar-help.php:40
611
+ msgid "Your icons folder is:"
612
+ msgstr "Jouw iconen map is:"
613
+
614
+ #: my-calendar-help.php:40
615
+ msgid "You can alternately place icons in:"
616
+ msgstr "Als alternatief kun je iconen plaatsen in:"
617
+
618
+ #: my-calendar-help.php:48
619
+ msgid "Widget Templating"
620
+ msgstr "Widget sjabloneren"
621
+
622
+ #: my-calendar-help.php:51
623
+ msgid "These codes are available in calendar widgets to create your own custom calendar format."
624
+ msgstr "Deze codes zijn beschikbaar in kalender widgets om je eigen aangapste kalender formaat te maken."
625
+
626
+ #: my-calendar-help.php:55
627
+ msgid "Displays the name of the category the event is in."
628
+ msgstr "Toont de naam van de categorie waarin de activiteit is geplaatst."
629
+
630
+ #: my-calendar-help.php:58
631
+ msgid "Displays the title of the event."
632
+ msgstr "Toont de titel van de activiteit."
633
+
634
+ #: my-calendar-help.php:61
635
+ msgid "Displays the start time for the event."
636
+ msgstr "Toont het aanvangstijdstip van de activiteit."
637
+
638
+ #: my-calendar-help.php:64
639
+ msgid "Displays the date on which the event begins."
640
+ msgstr "Toont de datum waarop de activiteit begint."
641
+
642
+ #: my-calendar-help.php:67
643
+ msgid "Displays the date on which the event ends."
644
+ msgstr "Toont de datum waarop de activiteit eindigd."
645
+
646
+ #: my-calendar-help.php:70
647
+ msgid "Displays the time at which the event ends."
648
+ msgstr "Toont de tijd waarop de activiteit eindigt."
649
+
650
+ #: my-calendar-help.php:73
651
+ msgid "Displays the WordPress author who posted the event."
652
+ msgstr "Toont de WordPress auteur die de activiteit heeft ingevoerd."
653
+
654
+ #: my-calendar-help.php:76
655
+ msgid "Displays the URL provided for the event."
656
+ msgstr "Toont de URL zoals opgegeven voor de activiteit."
657
+
658
+ #: my-calendar-help.php:79
659
+ msgid "Displays the description of the event."
660
+ msgstr "Toont de omschrijving van de activiteit"
661
+
662
+ #: my-calendar-help.php:82
663
+ msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
664
+ msgstr "Toont de titel van de activiteit als een koppeling indien een URL beschikbaar is, of alleen de titel indien geen koppeling beschikbaar is."
665
+
666
+ #: my-calendar-help.php:85
667
+ msgid "Displays the name of the location of the event."
668
+ msgstr "Toont de naam van de locatie voor de activiteit."
669
+
670
+ #: my-calendar-help.php:88
671
+ msgid "Displays the first line of the site address."
672
+ msgstr "Toont de eerste adres regel voor de activiteit."
673
+
674
+ #: my-calendar-help.php:91
675
+ msgid "Displays the second line of the site address."
676
+ msgstr "Toont de tweede adres regel voor de activiteit."
677
+
678
+ #: my-calendar-help.php:94
679
+ msgid "Displays the city for the event."
680
+ msgstr "Toont de stad voor de activiteit."
681
+
682
+ #: my-calendar-help.php:97
683
+ msgid "Displays the state for the event."
684
+ msgstr "Toont de staat/provincie voor de activiteit."
685
+
686
+ #: my-calendar-help.php:100
687
+ msgid "Displays the postcode for the event."
688
+ msgstr "Toont de postcode voor de activiteit."
689
+
690
+ #: my-calendar-help.php:103
691
+ msgid "Displays the country for the event location."
692
+ msgstr "Toont het land voor de activiteit."
693
+
694
+ #: my-calendar-help.php:106
695
+ msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
696
+ msgstr "Toont het adres van de activiteit in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> formaat."
697
+
698
+ #: my-calendar-help.php:109
699
+ msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
700
+ msgstr "Toont een koppeling naar een Google Map van de activiteit indien voldoende adres informatie beschikbaar is. Zo niet, dan zal het leeg zijn."
701
+
702
+ #: my-calendar-help.php:112
703
+ msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
704
+ msgstr "Toont tekst die aangeeft of registratie voor de activiteit momenteel open of gesloten is; toont niets indien die keuze is geselecteerd in de activiteit."
705
+
706
+ #: my-calendar-help.php:115
707
+ msgid "Displays the short version of the event description."
708
+ msgstr "Toont de verkorte versie van de activiteitomschrijving."
709
+
710
+ #: my-calendar-locations.php:22
711
+ msgid "Location added successfully"
712
+ msgstr "Locatie succesvol toegevoegd"
713
+
714
+ #: my-calendar-locations.php:24
715
+ msgid "Location could not be added to database"
716
+ msgstr "Locatie kon niet toegevoegd worden aan de database."
717
+
718
+ #: my-calendar-locations.php:30
719
+ msgid "Location deleted successfully"
720
+ msgstr "Locatie succesvol verwijderd"
721
+
722
+ #: my-calendar-locations.php:32
723
+ msgid "Location could not be deleted"
724
+ msgstr "Locatie kon niet verwijderd worden"
725
+
726
+ #: my-calendar-locations.php:43
727
+ msgid "Location could not be edited."
728
+ msgstr "Locatie kon niet bewerkt worden."
729
+
730
+ #: my-calendar-locations.php:45
731
+ msgid "Location was not changed."
732
+ msgstr "Locatie was niet veranderd."
733
+
734
+ #: my-calendar-locations.php:47
735
+ msgid "Location edited successfully"
736
+ msgstr "Locatie succesvol bewerkt"
737
+
738
+ #: my-calendar-locations.php:59
739
+ msgid "Add New Location"
740
+ msgstr "Voeg nieuwe locatie toe"
741
+
742
+ #: my-calendar-locations.php:61
743
+ msgid "Edit Location"
744
+ msgstr "Bewerk locatie"
745
+
746
+ #: my-calendar-locations.php:66
747
+ msgid "Location Editor"
748
+ msgstr "Locatie bewerker"
749
+
750
+ #: my-calendar-locations.php:121
751
+ msgid "Add Location"
752
+ msgstr "Voeg locatie toe"
753
+
754
+ #: my-calendar-locations.php:135
755
+ #: my-calendar.php:178
756
+ msgid "Manage Locations"
757
+ msgstr "Beheer locaties"
758
+
759
+ #: my-calendar-locations.php:170
760
+ msgid "There are no locations in the database yet!"
761
+ msgstr "Er zijn nog geen locaties in de database!"
762
+
763
+ #: my-calendar-locations.php:174
764
+ msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
765
+ msgstr "Let op: bewerken of verwijderen van locaties opgeslagen voor hergebruik zal geen invloed hebben op enige activiteit die eerder is ingeroosterd op die locatie. De locatie database bestaat puur als een verkorte methode om regelmatig gebruikte locaties in te voeren in activiteiten."
766
+
767
+ #: my-calendar-settings.php:67
768
+ msgid "Categories imported successfully."
769
+ msgstr "Categorie&euml;n successvol geimporteerd"
770
+
771
+ #: my-calendar-settings.php:69
772
+ msgid "Categories not imported."
773
+ msgstr "Categorie&euml;n niet geimporteerd"
774
+
775
+ #: my-calendar-settings.php:72
776
+ msgid "Events imported successfully."
777
+ msgstr "Geberutenissen succesvol geimporteerd"
778
+
779
+ #: my-calendar-settings.php:74
780
+ msgid "Events not imported."
781
+ msgstr "Activiteiten niet geimporteerd"
782
+
783
+ #: my-calendar-settings.php:153
784
+ msgid "Settings saved"
785
+ msgstr "Instellingen bewaard"
786
+
787
+ #: my-calendar-settings.php:179
788
+ msgid "My Calendar Options"
789
+ msgstr "My Calendar Opties"
790
+
791
+ #: my-calendar-settings.php:186
792
+ msgid "Calendar Settings"
793
+ msgstr "Kalenderindstellingen"
794
+
795
+ #: my-calendar-settings.php:190
796
+ msgid "Calendar Options: Management"
797
+ msgstr "Kalender opties: Beheer"
798
+
799
+ #: my-calendar-settings.php:192
800
+ msgid "Choose the lowest user group that may manage events"
801
+ msgstr "Kies de laagste gebruikersgroep die activiteiten mag beheren"
802
+
803
+ #: my-calendar-settings.php:193
804
+ msgid "Subscriber"
805
+ msgstr "Abonnee"
806
+
807
+ #: my-calendar-settings.php:194
808
+ msgid "Contributor"
809
+ msgstr "Bijdrager"
810
+
811
+ #: my-calendar-settings.php:196
812
+ msgid "Editor"
813
+ msgstr "Redacteur"
814
+
815
+ #: my-calendar-settings.php:197
816
+ msgid "Administrator"
817
+ msgstr "Beheerder"
818
+
819
+ #: my-calendar-settings.php:202
820
+ msgid "Calendar Options: Customize Text"
821
+ msgstr "Kalender opties: aanpassen tekst"
822
+
823
+ #: my-calendar-settings.php:204
824
+ msgid "Show Heading for Calendar"
825
+ msgstr "Toon opschrift voor Kalender"
826
+
827
+ #: my-calendar-settings.php:207
828
+ msgid "Label for events without a specific time"
829
+ msgstr "Label voor activiteiten zonder een specifieke tijd"
830
+
831
+ #: my-calendar-settings.php:210
832
+ msgid "Previous events link text"
833
+ msgstr "Koppelingstekst voor voorgaande activiteiten"
834
+
835
+ #: my-calendar-settings.php:210
836
+ msgid "Previous Events"
837
+ msgstr "Vorige activiteiten"
838
+
839
+ #: my-calendar-settings.php:213
840
+ msgid "Next events link text"
841
+ msgstr "Koppelingstekst voor komende activiteiten"
842
+
843
+ #: my-calendar-settings.php:213
844
+ msgid "Next Events"
845
+ msgstr "Komende activiteiten"
846
+
847
+ #: my-calendar-settings.php:216
848
+ msgid "Text when events are open"
849
+ msgstr "Tekst, indien activiteiten open zijn"
850
+
851
+ #: my-calendar-settings.php:216
852
+ msgid "Registration is open"
853
+ msgstr "Registratie is open"
854
+
855
+ #: my-calendar-settings.php:219
856
+ msgid "Text when events are closed"
857
+ msgstr "Tekst, indien activiteiten zijn gesloten"
858
+
859
+ #: my-calendar-settings.php:219
860
+ msgid "Registration is closed"
861
+ msgstr "Registratie is gesloten"
862
+
863
+ #: my-calendar-settings.php:222
864
+ msgid "Additional caption text"
865
+ msgstr "Additionele onderschrift tekst"
866
+
867
+ #: my-calendar-settings.php:222
868
+ msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
869
+ msgstr "Het kalenderonderschrift is de tekst met de weergegeven maand en jaar in lijst en kalender formaat. De hier opgegeven tekst zal weergegeven worden achter die bestaande tekst."
870
+
871
+ #: my-calendar-settings.php:226
872
+ msgid "Calendar Options: Output"
873
+ msgstr "Kalender opties: Uitvoer"
874
+
875
+ #: my-calendar-settings.php:228
876
+ msgid "In list mode, show how many months of events at a time:"
877
+ msgstr "In lijstweergave, toon zoveel maanden aan activiteiten tegelijk:"
878
+
879
+ #: my-calendar-settings.php:231
880
+ msgid "Date format in list mode"
881
+ msgstr "Datumformaat in lijstweergave"
882
+
883
+ #: my-calendar-settings.php:232
884
+ msgid "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
885
+ msgstr "Datumformaat gebruikt dezelfde syntaxis als de <a href=\"http://php.net/date\">PHP <code>date()</code> functie</a>. Bewaar opties om de voorbeelduitvoer bij te werken."
886
+
887
+ #: my-calendar-settings.php:235
888
+ msgid "Do you want to display the author name on events?"
889
+ msgstr "Wil je de auteursnaam weergeven bij activiteiten?"
890
+
891
+ #: my-calendar-settings.php:238
892
+ msgid "Display a jumpbox for changing month and year quickly?"
893
+ msgstr "Toon een opspring-vak voor snel veranderen van maand en jaar?"
894
+
895
+ #: my-calendar-settings.php:242
896
+ msgid "Hide category icons in output"
897
+ msgstr "Verberg categorie iconen in uitvoer"
898
+
899
+ #: my-calendar-settings.php:245
900
+ msgid "Show Link to Google Map (when sufficient address information is available.)"
901
+ msgstr "Toon koppeling naar Google Maps (nindien voldoende adres informatie beschikbaar is)"
902
+
903
+ #: my-calendar-settings.php:248
904
+ msgid "Show Event Address in Details"
905
+ msgstr "Toon activiteit adres in details"
906
+
907
+ #: my-calendar-settings.php:251
908
+ msgid "Show short description field on calendar."
909
+ msgstr "Toon verkort omschrijvingsveld in kalender."
910
+
911
+ #: my-calendar-settings.php:254
912
+ msgid "Show full description field on calendar."
913
+ msgstr "Toon volledig omschrijvingsveld in kalender."
914
+
915
+ #: my-calendar-settings.php:257
916
+ msgid "Links associated with events will automatically expire after the event has passed."
917
+ msgstr "Koppelingen verbonden aan activiteiten zullen automatisch verlopen als de activiteit is geweest."
918
+
919
+ #: my-calendar-settings.php:260
920
+ msgid "Show current availability status of events."
921
+ msgstr "Toon huidige beschikbaarheidsstatus van activiteiten."
922
+
923
+ #: my-calendar-settings.php:264
924
+ msgid "Calendar Options: Input"
925
+ msgstr "Kalender opties: Input"
926
+
927
+ #: my-calendar-settings.php:267
928
+ msgid "Show Event Location Dropdown Menu"
929
+ msgstr "Toon activiteit locatie uitklapmenu"
930
+
931
+ #: my-calendar-settings.php:267
932
+ msgid "Show Event Short Description field"
933
+ msgstr "Toon activiteit verkort omschrijvingsveld"
934
+
935
+ #: my-calendar-settings.php:267
936
+ msgid "Show Event Description Field"
937
+ msgstr "Toon activiteit omschrijvingsveld"
938
+
939
+ #: my-calendar-settings.php:267
940
+ msgid "Show Event Category field"
941
+ msgstr "Toon activiteit categorieveld"
942
+
943
+ #: my-calendar-settings.php:267
944
+ msgid "Show Event Link field"
945
+ msgstr "Toon activiteit koppelingsveld"
946
+
947
+ #: my-calendar-settings.php:267
948
+ msgid "Show Event Recurrance Options"
949
+ msgstr "Toon activiteit herhalingsopties"
950
+
951
+ #: my-calendar-settings.php:267
952
+ msgid "Show event registration options"
953
+ msgstr "Toon activiteit registratie opties"
954
+
955
+ #: my-calendar-settings.php:267
956
+ msgid "Show event location fields"
957
+ msgstr "Toon activiteit locatie velden"
958
+
959
+ #: my-calendar-settings.php:276
960
+ msgid "Administrators see all input options"
961
+ msgstr "Beheerder ziet alle invoer opties"
962
+
963
+ #: my-calendar-settings.php:280
964
+ msgid "Calendar Options: Style"
965
+ msgstr "Kalender opties: stijl"
966
+
967
+ #: my-calendar-settings.php:282
968
+ msgid "Default usage of category colors."
969
+ msgstr "Standaard gebruik van categorie kleuren."
970
+
971
+ #: my-calendar-settings.php:283
972
+ msgid "Apply category colors to event titles as a font color."
973
+ msgstr "Pas categorie kleuren toe op activiteit titels als tekst kleur."
974
+
975
+ #: my-calendar-settings.php:284
976
+ msgid "Apply category colors to event titles as a background color."
977
+ msgstr "Pas categorie kleuren toe op activiteit titels als achtergrond kleur."
978
+
979
+ #: my-calendar-settings.php:288
980
+ msgid "Save Settings"
981
+ msgstr "Bewaar instellingen"
982
+
983
+ #: my-calendar-styles.php:46
984
+ msgid "Style Settings saved"
985
+ msgstr "Stijl instellingen bewaard"
986
+
987
+ #: my-calendar-styles.php:70
988
+ msgid "My Calendar Styles"
989
+ msgstr "My Calendar Stijlen"
990
+
991
+ #: my-calendar-styles.php:74
992
+ msgid "Calendar Style Settings"
993
+ msgstr "Kalender stijl instellingen"
994
+
995
+ #: my-calendar-styles.php:78
996
+ msgid "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
997
+ msgstr "Toon CSS &amp JavaScript alleen op deze pagina's (pagina IDs scheiden door comma's)"
998
+
999
+ #: my-calendar-styles.php:81
1000
+ msgid "CSS Style Options"
1001
+ msgstr "CSS stijl opties"
1002
+
1003
+ #: my-calendar-styles.php:83
1004
+ msgid "Reset the My Calendar stylesheet to the default"
1005
+ msgstr "Herstel de stijlbladen voor My Calendar naar de standaard"
1006
+
1007
+ #: my-calendar-styles.php:83
1008
+ msgid "Disable My Calendar Stylesheet"
1009
+ msgstr "Schakel het stijlblad voor My Calendar uit"
1010
+
1011
+ #: my-calendar-styles.php:86
1012
+ msgid "Edit the stylesheet for My Calendar"
1013
+ msgstr "Bewerk het stijlblad voor My Calendar"
1014
+
1015
+ #: my-calendar-styles.php:89
1016
+ #: my-calendar-styles.php:101
1017
+ #: my-calendar-styles.php:113
1018
+ #: my-calendar-styles.php:125
1019
+ msgid "Save"
1020
+ msgstr "Bewaar"
1021
+
1022
+ #: my-calendar-styles.php:93
1023
+ msgid "Calendar Behaviors: Calendar View"
1024
+ msgstr "Kalender gedrag: Kalenderweergave"
1025
+
1026
+ #: my-calendar-styles.php:95
1027
+ msgid "Reset the My Calendar Calendar Javascript"
1028
+ msgstr "Herstel de My Calendars kalender Javascript"
1029
+
1030
+ #: my-calendar-styles.php:95
1031
+ msgid "Disable Calendar Javascript Effects"
1032
+ msgstr "Schakel de kalender Javascript effecten uit"
1033
+
1034
+ #: my-calendar-styles.php:98
1035
+ msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1036
+ msgstr "Bewerk de jQuery-scripts voor My Calendar in kalender formaat."
1037
+
1038
+ #: my-calendar-styles.php:105
1039
+ msgid "Calendar Behaviors: List View"
1040
+ msgstr "Kalender gedrag: lijstweergave"
1041
+
1042
+ #: my-calendar-styles.php:107
1043
+ msgid "Reset the My Calendar List Javascript"
1044
+ msgstr "Herstel de My Calendars lijst Javascript"
1045
+
1046
+ #: my-calendar-styles.php:107
1047
+ msgid "Disable List Javascript Effects"
1048
+ msgstr "Schakel lijst Javascript effecten uit"
1049
+
1050
+ #: my-calendar-styles.php:110
1051
+ msgid "Edit the jQuery scripts for My Calendar in List format"
1052
+ msgstr "Bewerk de jQuery scripts voor My Calendar in lijst formaat"
1053
+
1054
+ #: my-calendar-styles.php:117
1055
+ msgid "Calendar Behaviors: Mini Calendar View"
1056
+ msgstr "Kalender gedrag: Mini kalender weergave"
1057
+
1058
+ #: my-calendar-styles.php:119
1059
+ msgid "Reset the My Calendar Mini Format Javascript"
1060
+ msgstr "Herstel de My Calendar mini Formaat Javascript "
1061
+
1062
+ #: my-calendar-styles.php:119
1063
+ msgid "Disable Mini Javascript Effects"
1064
+ msgstr "Schakel mini Javascript effecten uit"
1065
+
1066
+ #: my-calendar-styles.php:122
1067
+ msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1068
+ msgstr "Bewerk de jQueryc scripts for My Calendar in mini kalender formaat"
1069
+
1070
+ #: my-calendar-upgrade-db.php:19
1071
+ msgid "The My Calendar database needs to be updated."
1072
+ msgstr "My Calendars database moet up-to-date gemaakt worden"
1073
+
1074
+ #: my-calendar-upgrade-db.php:20
1075
+ #: my-calendar-upgrade-db.php:34
1076
+ msgid "Update now"
1077
+ msgstr "Maak nu up-to-date"
1078
+
1079
+ #: my-calendar-upgrade-db.php:33
1080
+ msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
1081
+ msgstr "Je hebt nog geen activiteiten opgegeven en My Calendar kan daarom niet afleiden of je database bij de tijd is. Als je geen activiteiten kunt invoeren, maak je database dan up-to-date!"
1082
+
1083
+ #: my-calendar-upgrade-db.php:44
1084
+ msgid "My Calendar Database is updated."
1085
+ msgstr "My Calendars database is bijgewerkt."
1086
+
1087
+ #: my-calendar-widgets.php:11
1088
+ #: my-calendar-widgets.php:51
1089
+ #: my-calendar-widgets.php:52
1090
+ msgid "Today's Events"
1091
+ msgstr "Activiteiten voor vandaag"
1092
+
1093
+ #: my-calendar-widgets.php:41
1094
+ #: my-calendar-widgets.php:126
1095
+ msgid "Template"
1096
+ msgstr "Sjabloon"
1097
+
1098
+ #: my-calendar-widgets.php:45
1099
+ msgid "Show this text if there are no events today:"
1100
+ msgstr "Toon deze tekst alleen als er vandaag geen activiteiten zijn:"
1101
+
1102
+ #: my-calendar-widgets.php:65
1103
+ #: my-calendar-widgets.php:152
1104
+ #: my-calendar-widgets.php:153
1105
+ msgid "Upcoming Events"
1106
+ msgstr "Komende activiteiten"
1107
+
1108
+ #: my-calendar-widgets.php:130
1109
+ msgid "Widget Options"
1110
+ msgstr "Widget indstellingen"
1111
+
1112
+ #: my-calendar-widgets.php:132
1113
+ msgid "Display upcoming events by:"
1114
+ msgstr "Toon aankomende activiteiten per:"
1115
+
1116
+ #: my-calendar-widgets.php:133
1117
+ msgid "Events (e.g. 2 past, 3 future)"
1118
+ msgstr "Activiteiten (bijv. 2 terug, 3 aankomend)"
1119
+
1120
+ #: my-calendar-widgets.php:134
1121
+ msgid "Dates (e.g. 4 days past, 5 forward)"
1122
+ msgstr "Datums (bijv. 4 dagen terug, 5 vooruit)"
1123
+
1124
+ #: my-calendar-widgets.php:138
1125
+ msgid "events into the future;"
1126
+ msgstr "Activiteiten in de toekomst;"
1127
+
1128
+ #: my-calendar-widgets.php:139
1129
+ msgid "events from the past"
1130
+ msgstr "activiteiten in het verleden;"
1131
+
1132
+ #: my-calendar-widgets.php:142
1133
+ msgid "days into the future;"
1134
+ msgstr "dagen in de toekomst;"
1135
+
1136
+ #: my-calendar-widgets.php:143
1137
+ msgid "days from the past"
1138
+ msgstr "dagen in het verleden"
1139
+
1140
+ #: my-calendar-widgets.php:146
1141
+ msgid "Show only this category:"
1142
+ msgstr "Toon alleen deze categorie:"
1143
+
1144
+ #: my-calendar-widgets.php:272
1145
+ msgid "There are no events currently scheduled."
1146
+ msgstr "Er zijn momenteel geen activiteiten gepland."
1147
+
1148
+ #: my-calendar.php:56
1149
+ #: my-calendar.php:179
1150
+ msgid "Settings"
1151
+ msgstr "Instellingen"
1152
+
1153
+ #: my-calendar.php:57
1154
+ #: my-calendar.php:181
1155
+ msgid "Help"
1156
+ msgstr "Help"
1157
+
1158
+ #: my-calendar.php:82
1159
+ msgid "Get Support"
1160
+ msgstr "Krijg ondersteuning"
1161
+
1162
+ #: my-calendar.php:83
1163
+ #: my-calendar.php:181
1164
+ msgid "My Calendar Help"
1165
+ msgstr "My Calendar help"
1166
+
1167
+ #: my-calendar.php:84
1168
+ msgid "Make a Donation"
1169
+ msgstr "Maak een donatie"
1170
+
1171
+ #. #-#-#-#-# plugin.pot (My Calendar 1.4.8) #-#-#-#-#
1172
+ #. Plugin Name of the plugin/theme
1173
+ #: my-calendar.php:170
1174
+ msgid "My Calendar"
1175
+ msgstr "My Calendar"
1176
+
1177
+ #: my-calendar.php:173
1178
+ msgid "Add/Edit Events"
1179
+ msgstr "Voeg toe/bewerk activiteiten"
1180
+
1181
+ #: my-calendar.php:180
1182
+ msgid "Style Editor"
1183
+ msgstr "Stijl bewerker"
1184
+
1185
+ #: my-calendar.php:619
1186
+ msgid "Event Details"
1187
+ msgstr "Activiteit details"
1188
+
1189
+ #: my-calendar.php:628
1190
+ msgid "Close"
1191
+ msgstr "Sluit"
1192
+
1193
+ #: my-calendar.php:638
1194
+ msgid "Not Applicable"
1195
+ msgstr "Niet van toepassing"
1196
+
1197
+ #: my-calendar.php:650
1198
+ msgid "Posted by"
1199
+ msgstr "Gepubliceerd door"
1200
+
1201
+ #: my-calendar.php:696
1202
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1203
+ msgstr "Deze activiteit is onderdeel van een reeks. Je moet registreren voor de eerste activiteit om mee te doen."
1204
+
1205
+ #: my-calendar.php:1199
1206
+ msgid "Month"
1207
+ msgstr "Maand"
1208
+
1209
+ #: my-calendar.php:1200
1210
+ #: my-calendar.php:1286
1211
+ msgid "January"
1212
+ msgstr "Januari"
1213
+
1214
+ #: my-calendar.php:1201
1215
+ #: my-calendar.php:1286
1216
+ msgid "February"
1217
+ msgstr "Februari"
1218
+
1219
+ #: my-calendar.php:1202
1220
+ #: my-calendar.php:1286
1221
+ msgid "March"
1222
+ msgstr "Maart"
1223
+
1224
+ #: my-calendar.php:1203
1225
+ #: my-calendar.php:1286
1226
+ msgid "April"
1227
+ msgstr "April"
1228
+
1229
+ #: my-calendar.php:1204
1230
+ #: my-calendar.php:1286
1231
+ msgid "May"
1232
+ msgstr "Mei"
1233
+
1234
+ #: my-calendar.php:1205
1235
+ #: my-calendar.php:1286
1236
+ msgid "June"
1237
+ msgstr "Juni"
1238
+
1239
+ #: my-calendar.php:1206
1240
+ #: my-calendar.php:1286
1241
+ msgid "July"
1242
+ msgstr "Juli"
1243
+
1244
+ #: my-calendar.php:1207
1245
+ #: my-calendar.php:1286
1246
+ msgid "August"
1247
+ msgstr "Augustus"
1248
+
1249
+ #: my-calendar.php:1208
1250
+ #: my-calendar.php:1286
1251
+ msgid "September"
1252
+ msgstr "September"
1253
+
1254
+ #: my-calendar.php:1209
1255
+ #: my-calendar.php:1286
1256
+ msgid "October"
1257
+ msgstr "Oktober"
1258
+
1259
+ #: my-calendar.php:1210
1260
+ #: my-calendar.php:1286
1261
+ msgid "November"
1262
+ msgstr "November"
1263
+
1264
+ #: my-calendar.php:1211
1265
+ #: my-calendar.php:1286
1266
+ msgid "December"
1267
+ msgstr "December"
1268
+
1269
+ #: my-calendar.php:1213
1270
+ msgid "Year"
1271
+ msgstr "Jaar"
1272
+
1273
+ #: my-calendar.php:1238
1274
+ msgid "Go"
1275
+ msgstr "Ga"
1276
+
1277
+ #: my-calendar.php:1260
1278
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1279
+ msgstr "<abbr title=\"Zondag\">Zo</abbr>"
1280
+
1281
+ #: my-calendar.php:1261
1282
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1283
+ msgstr "<abbr title=\"Maandag\">Ma</abbr>"
1284
+
1285
+ #: my-calendar.php:1262
1286
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1287
+ msgstr "<abbr title=\"Dinsdag\">Di</abbr>"
1288
+
1289
+ #: my-calendar.php:1263
1290
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1291
+ msgstr "<abbr title=\"Woensdag\">Wo</abbr>"
1292
+
1293
+ #: my-calendar.php:1264
1294
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1295
+ msgstr "<abbr title=\"Donderdag\">Do</abbr>"
1296
+
1297
+ #: my-calendar.php:1265
1298
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1299
+ msgstr "<abbr title=\"Vrijdag\">Vr</abbr>"
1300
+
1301
+ #: my-calendar.php:1266
1302
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
1303
+ msgstr "<abbr title=\"zaterdag\">Za</abbr>"
1304
+
1305
+ #: my-calendar.php:1271
1306
+ msgid "<abbr title=\"Sunday\">S</abbr>"
1307
+ msgstr "<abbr title=\"Zondag\">Z</abbr>"
1308
+
1309
+ #: my-calendar.php:1272
1310
+ msgid "<abbr title=\"Monday\">M</abbr>"
1311
+ msgstr "<abbr title=\"Maandag\">M</abbr>"
1312
+
1313
+ #: my-calendar.php:1273
1314
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1315
+ msgstr "<abbr title=\"Dinsdag\">D</abbr>"
1316
+
1317
+ #: my-calendar.php:1274
1318
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1319
+ msgstr "<abbr title=\"Woensdag\">W</abbr>"
1320
+
1321
+ #: my-calendar.php:1275
1322
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1323
+ msgstr "<abbr title=\"Donderdag\">D</abbr>"
1324
+
1325
+ #: my-calendar.php:1276
1326
+ msgid "<abbr title=\"Friday\">F</abbr>"
1327
+ msgstr "<abbr title=\"Vrijdag\">V</abbr>"
1328
+
1329
+ #: my-calendar.php:1277
1330
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1331
+ msgstr "<abbr title=\"Zaterdag\">Z</abbr>"
1332
+
1333
+ #: my-calendar.php:1323
1334
+ msgid "and"
1335
+ msgstr "en"
1336
+
1337
+ #: my-calendar.php:1352
1338
+ #: my-calendar.php:1356
1339
+ msgid "Calendar"
1340
+ msgstr "Kalender"
1341
+
1342
+ #: my-calendar.php:1359
1343
+ msgid "Events in"
1344
+ msgstr "Activiteiten in"
1345
+
1346
+ #: my-calendar.php:1456
1347
+ msgid "There are no events scheduled during this period."
1348
+ msgstr "Er zijn geen activiteiten gepland voor deze periode."
1349
+
1350
+ #: my-calendar.php:1466
1351
+ msgid "Category Key"
1352
+ msgstr "Categorie sleutel"
1353
+
1354
+ #. Plugin URI of the plugin/theme
1355
+ msgid "http://www.joedolson.com/articles/my-calendar/"
1356
+ msgstr "http://www.joedolson.com/articles/my-calendar/"
1357
+
1358
+ #. Description of the plugin/theme
1359
+ msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
1360
+ msgstr "Toegankelijke Wordpress activiteiten kalender plugin. Toont activiteiten van meerdere kalenders in pagina's, berichten of widgets."
1361
+
1362
+ #. Author of the plugin/theme
1363
+ msgid "Joseph C Dolson"
1364
+ msgstr "Joseph C Dolson"
1365
+
1366
+ #. Author URI of the plugin/theme
1367
+ msgid "http://www.joedolson.com"
1368
+ msgstr "http://www.joedolson.com"
1369
+
1370
+ #~ msgid "Yes"
1371
+ #~ msgstr "Ja"
1372
+
1373
+ #~ msgid "No"
1374
+ #~ msgstr "Nee"
1375
+
1376
+ #~ msgid "Add New Category"
1377
+ #~ msgstr "Voeg nieuwe categorie toeTilføj Ny Kategori"
1378
+
1379
+ #~ msgid ""
1380
+ #~ "An event with the details you submitted could not be found in the "
1381
+ #~ "database. This may indicate a problem with your database or the way in "
1382
+ #~ "which it is configured."
1383
+ #~ msgstr ""
1384
+ #~ "En begivenhed med de angivne detaljer kunne ikke findes i databasen. "
1385
+ #~ "Dette indikerer muligvis et problem med din database eller måden, den er "
1386
+ #~ "konfigureret på."
1387
+
1388
+ #~ msgid "Failure"
1389
+ #~ msgstr "FEJL"
1390
+
1391
+ #~ msgid "You can't update an event if you haven't submitted an event id"
1392
+ #~ msgstr ""
1393
+ #~ "Du kan ikke opdatere en begivenhed, hvis du ikke har sendt et begivenheds-"
1394
+ #~ "id."
my-calendar-settings.php CHANGED
@@ -89,17 +89,20 @@ function edit_my_calendar_config() {
89
 
90
  if (isset($_POST['permissions'])) {
91
 
92
- if ($_POST['permissions'] == 'subscriber') { $new_perms = 'read'; }
93
- else if ($_POST['permissions'] == 'contributor') { $new_perms = 'edit_posts'; }
94
- else if ($_POST['permissions'] == 'author') { $new_perms = 'publish_posts'; }
95
- else if ($_POST['permissions'] == 'editor') { $new_perms = 'moderate_comments'; }
96
- else if ($_POST['permissions'] == 'admin') { $new_perms = 'manage_options'; }
97
- else { $new_perms = 'manage_options'; }
98
-
99
  $my_calendar_show_months = (int) $_POST['my_calendar_show_months'];
100
  $my_calendar_date_format = $_POST['my_calendar_date_format'];
101
-
102
-
 
 
 
 
 
 
 
 
 
103
  $disp_author = ($_POST['display_author']=='on')?'true':'false';
104
  $disp_jump = ($_POST['display_jump']=='on')?'true':'false';
105
  $my_calendar_show_map = ($_POST['my_calendar_show_map']=='on')?'true':'false';
@@ -108,14 +111,34 @@ function edit_my_calendar_config() {
108
  $my_calendar_notime_text = $_POST['my_calendar_notime_text'];
109
  $mc_previous_events = $_POST['mc_previous_events'];
110
  $mc_next_events = $_POST['mc_next_events'];
111
-
 
 
 
 
112
  $my_calendar_hide_icons = ($_POST['my_calendar_hide_icons']=='on')?'true':'false';
113
  $mc_apply_color = $_POST['mc_apply_color'];
114
-
115
  $my_calendar_caption = $_POST['my_calendar_caption'];
116
  $my_calendar_event_link_expires = ($_POST['mc_event_link_expires']=='on')?'true':'false';
117
-
118
- update_option('can_manage_events',$new_perms);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  update_option('display_author',$disp_author);
120
  update_option('display_jump',$disp_jump);
121
  update_option('my_calendar_show_months',$my_calendar_show_months);
@@ -130,10 +153,17 @@ function edit_my_calendar_config() {
130
  update_option('my_calendar_caption',$my_calendar_caption);
131
  update_option('mc_event_link_expires',$my_calendar_event_link_expires);
132
  update_option('mc_apply_color',$mc_apply_color);
133
-
 
 
 
 
 
 
 
134
 
135
  echo "<div class=\"updated\"><p><strong>".__('Settings saved','my-calendar').".</strong></p></div>";
136
- }
137
 
138
  // Pull the values out of the database that we need for the form
139
  $allowed_group = get_option('can_manage_events');
@@ -142,18 +172,15 @@ function edit_my_calendar_config() {
142
  $my_calendar_show_address = get_option('my_calendar_show_address');
143
  $disp_author = get_option('display_author');
144
  $mc_event_link_expires = get_option('mc_event_link_expires');
145
- // checkbox
 
 
 
 
 
146
  $disp_jump = get_option('display_jump');
147
- //checkbox
148
-
149
- if ($allowed_group == 'read') { $subscriber_selected='selected="selected"';}
150
- else if ($allowed_group == 'edit_posts') { $contributor_selected='selected="selected"';}
151
- else if ($allowed_group == 'publish_posts') { $author_selected='selected="selected"';}
152
- else if ($allowed_group == 'moderate_comments') { $editor_selected='selected="selected"';}
153
- else if ($allowed_group == 'manage_options') { $admin_selected='selected="selected"';}
154
-
155
- // Now we render the form
156
- ?>
157
  <div class="wrap">
158
  <?php
159
  echo my_calendar_check_db();
@@ -171,52 +198,66 @@ echo my_calendar_check_db();
171
  <fieldset>
172
  <legend><?php _e('Calendar Options: Management','my-calendar'); ?></legend>
173
  <p>
174
- <label for="permissions"><?php _e('Choose the lowest user group that may manage events','my-calendar'); ?></label> <select id="permissions" name="permissions">
175
- <option value="subscriber"<?php echo $subscriber_selected ?>><?php _e('Subscriber','my-calendar')?></option>
176
- <option value="contributor" <?php echo $contributor_selected ?>><?php _e('Contributor','my-calendar')?></option>
177
- <option value="author" <?php echo $author_selected ?>><?php _e('Author','my-calendar')?></option>
178
- <option value="editor" <?php echo $editor_selected ?>><?php _e('Editor','my-calendar')?></option>
179
- <option value="admin" <?php echo $admin_selected ?>><?php _e('Administrator','my-calendar')?></option>
180
  </select>
181
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
182
  </fieldset>
183
- <fieldset>
184
- <legend><?php _e('Calendar Options: Output','my-calendar'); ?></legend>
185
  <p>
186
- <label for="display_author"><?php _e('Do you want to display the author name on events?','my-calendar'); ?></label> <select id="display_author" name="display_author">
187
- <option value="on" <?php jd_cal_checkSelect('display_author','true'); ?>><?php _e('Yes','my-calendar') ?></option>
188
- <option value="off" <?php jd_cal_checkSelect('display_author','false'); ?>><?php _e('No','my-calendar') ?></option>
189
- </select>
190
  </p>
191
-
192
  <p>
193
- <label for="display_jump"><?php _e('Display a jumpbox for changing month and year quickly?','my-calendar'); ?></label> <select id="display_jump" name="display_jump">
194
- <option value="on" <?php jd_cal_checkSelect('display_jump','true'); ?>><?php _e('Yes','my-calendar') ?></option>
195
- <option value="off" <?php jd_cal_checkSelect('display_jump','false'); ?>><?php _e('No','my-calendar') ?></option>
196
- </select>
197
  </p>
198
  <p>
199
- <label for="my_calendar_show_months"><?php _e('In list mode, show how many months of events at a time:','my-calendar'); ?></label> <input type="text" size="3" id="my_calendar_show_months" name="my_calendar_show_months" value="<?php echo $my_calendar_show_months; ?>" />
200
  </p>
201
  <p>
202
- <label for="my_calendar_date_format"><?php _e('Date format in list mode','my-calendar'); ?></label> <input type="text" id="my_calendar_date_format" name="my_calendar_date_format" value="<?php if ( get_option('my_calendar_date_format') == "") { echo get_option('date_format'); } else { echo get_option( 'my_calendar_date_format'); } ?>" /> Current: <?php if ( get_option('my_calendar_date_format') == '') { echo date_i18n(get_option('date_format')); } else { echo date_i18n(get_option('my_calendar_date_format')); } ?><br />
203
- <small><?php _e('Date format uses the same syntax as the <a href="http://php.net/date">PHP <code>date()</code> function</a>. Save option to update sample output.','my-calendar'); ?></small>
204
  </p>
205
  <p>
206
- <input type="checkbox" id="my_calendar_show_heading" name="my_calendar_show_heading" <?php jd_cal_checkCheckbox('my_calendar_show_heading','true'); ?> /> <label for="my_calendar_show_heading"><?php _e('Show Heading for Calendar','my-calendar'); ?></label>
207
- </p>
208
  <p>
209
- <label for="my_calendar_notime_text"><?php _e('Label for events without a specific time'); ?></label> <input type="text" id="my_calendar_notime_text" name="my_calendar_notime_text" value="<?php if ( get_option('my_calendar_notime_text') == "") { _e('N/A','my-calendar'); } else { echo stripslashes( get_option('my_calendar_notime_text') ); } ?>" />
210
  </p>
 
 
 
211
  <p>
212
- <label for="mc_previous_events"><?php _e('Previous events link text'); ?></label> <input type="text" id="mc_previous_events" name="mc_previous_events" value="<?php if ( get_option('mc_previous_events') == "") { _e('Previous Events','my-calendar'); } else { echo stripslashes( get_option('mc_previous_events') ); } ?>" />
213
  </p>
214
  <p>
215
- <label for="mc_next_events"><?php _e('Next events link text'); ?></label> <input type="text" id="mc_next_events" name="mc_next_events" value="<?php if ( get_option('mc_next_events') == "") { _e('Next Events','my-calendar'); } else { echo stripslashes( get_option('mc_next_events') ); } ?>" />
 
 
 
 
216
  </p>
217
  <p>
218
- <label for="my_calendar_caption"><?php _e('Additional caption text','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" value="<?php echo stripslashes( get_option('my_calendar_caption') ); ?>" /><br /><small><?php _e('The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text.'); ?></small>
219
- </p>
220
  <p>
221
  <input type="checkbox" id="my_calendar_hide_icons" name="my_calendar_hide_icons" <?php jd_cal_checkCheckbox('my_calendar_hide_icons','true'); ?> /> <label for="my_calendar_hide_icons"><?php _e('Hide category icons in output','my-calendar'); ?></label>
222
  </p>
@@ -227,14 +268,75 @@ echo my_calendar_check_db();
227
  <input type="checkbox" id="my_calendar_show_address" name="my_calendar_show_address" <?php jd_cal_checkCheckbox('my_calendar_show_address','true'); ?> /> <label for="my_calendar_show_address"><?php _e('Show Event Address in Details','my-calendar'); ?></label>
228
  </p>
229
  <p>
 
 
 
 
 
 
230
  <input type="checkbox" id="mc_event_link_expires" name="mc_event_link_expires" <?php jd_cal_checkCheckbox('mc_event_link_expires','true'); ?> /> <label for="mc_event_link_expires"><?php _e('Links associated with events will automatically expire after the event has passed.','my-calendar'); ?></label>
231
  </p>
232
  <p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  <input type="radio" id="mc_apply_color_default" name="mc_apply_color" value="default" <?php jd_cal_checkCheckbox('mc_apply_color','default'); ?> /> <label for="mc_apply_color_default"><?php _e('Default usage of category colors.','my-calendar'); ?></label><br />
234
  <input type="radio" id="mc_apply_color_to_titles" name="mc_apply_color" value="font" <?php jd_cal_checkCheckbox('mc_apply_color','font'); ?> /> <label for="mc_apply_color_to_titles"><?php _e('Apply category colors to event titles as a font color.','my-calendar'); ?></label><br />
235
  <input type="radio" id="mc_apply_bgcolor_to_titles" name="mc_apply_color" value="background" <?php jd_cal_checkCheckbox('mc_apply_color','background'); ?> /> <label for="mc_apply_bgcolor_to_titles"><?php _e('Apply category colors to event titles as a background color.','my-calendar'); ?></label>
236
  </p>
237
  </fieldset>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  <p>
239
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Settings','my-calendar'); ?> &raquo;" />
240
  </p>
89
 
90
  if (isset($_POST['permissions'])) {
91
 
92
+ $new_perms = $_POST['permissions'];
 
 
 
 
 
 
93
  $my_calendar_show_months = (int) $_POST['my_calendar_show_months'];
94
  $my_calendar_date_format = $_POST['my_calendar_date_format'];
95
+ $mc_input_options_administrators = ($_POST['mc_input_options_administrators']=='on')?'true':'false';
96
+ $mc_input_options = array(
97
+ 'event_short'=>$_POST['mci_event_short'],
98
+ 'event_desc'=>$_POST['mci_event_desc'],
99
+ 'event_category'=>$_POST['mci_event_category'],
100
+ 'event_link'=>$_POST['mci_event_link'],
101
+ 'event_recurs'=>$_POST['mci_event_recurs'],
102
+ 'event_open'=>$_POST['mci_event_open'],
103
+ 'event_location'=>$_POST['mci_event_location'],
104
+ 'event_location_dropdown'=>$_POST['mci_event_location_dropdown']
105
+ );
106
  $disp_author = ($_POST['display_author']=='on')?'true':'false';
107
  $disp_jump = ($_POST['display_jump']=='on')?'true':'false';
108
  $my_calendar_show_map = ($_POST['my_calendar_show_map']=='on')?'true':'false';
111
  $my_calendar_notime_text = $_POST['my_calendar_notime_text'];
112
  $mc_previous_events = $_POST['mc_previous_events'];
113
  $mc_next_events = $_POST['mc_next_events'];
114
+ $mc_event_open = $_POST['mc_event_open'];
115
+ $mc_event_closed = $_POST['mc_event_closed'];
116
+ $mc_event_registration = ($_POST['mc_event_registration']=='on')?'true':'false';
117
+ $mc_short = ($_POST['mc_short']=='on')?'true':'false';
118
+ $mc_desc = ($_POST['mc_desc']=='on')?'true':'false';
119
  $my_calendar_hide_icons = ($_POST['my_calendar_hide_icons']=='on')?'true':'false';
120
  $mc_apply_color = $_POST['mc_apply_color'];
121
+ $mc_no_fifth_week = $_POST['mc_no_fifth_week'];
122
  $my_calendar_caption = $_POST['my_calendar_caption'];
123
  $my_calendar_event_link_expires = ($_POST['mc_event_link_expires']=='on')?'true':'false';
124
+
125
+ // Mail function by Roland
126
+
127
+ $mc_event_mail = ($_POST['mc_event_mail']=='on')?'true':'false';
128
+ $mc_event_mail_to = $_POST['mc_event_mail_to'];
129
+ $mc_event_mail_subject = $_POST['mc_event_mail_subject'];
130
+ $mc_event_mail_message = $_POST['mc_event_mail_message'];
131
+ update_option('mc_event_mail_to',$mc_event_mail_to);
132
+ update_option('mc_event_mail_subject',$mc_event_mail_subject);
133
+ update_option('mc_event_mail_message',$mc_event_mail_message);
134
+ update_option('mc_event_mail',$mc_event_mail);
135
+
136
+ // approve feature by Roland
137
+ $mc_event_approve = ($_POST['mc_event_approve']=='on')?'true':'false';
138
+ update_option('mc_event_approve',$mc_event_approve);
139
+ $mc_event_approve_perms = $_POST['mc_event_approve_perms'];
140
+ update_option('mc_event_approve_perms',$mc_event_approve_perms);
141
+ update_option('can_manage_events',$new_perms);
142
  update_option('display_author',$disp_author);
143
  update_option('display_jump',$disp_jump);
144
  update_option('my_calendar_show_months',$my_calendar_show_months);
153
  update_option('my_calendar_caption',$my_calendar_caption);
154
  update_option('mc_event_link_expires',$my_calendar_event_link_expires);
155
  update_option('mc_apply_color',$mc_apply_color);
156
+ update_option('mc_event_open',$mc_event_open);
157
+ update_option('mc_event_closed',$mc_event_closed);
158
+ update_option('mc_event_registration',$mc_event_registration);
159
+ update_option('mc_short',$mc_short);
160
+ update_option('mc_desc',$mc_desc);
161
+ update_option('mc_input_options',$mc_input_options);
162
+ update_option('mc_input_options_administrators',$mc_input_options_administrators);
163
+ update_option('mc_no_fifth_week',$mc_no_fifth_week);
164
 
165
  echo "<div class=\"updated\"><p><strong>".__('Settings saved','my-calendar').".</strong></p></div>";
166
+ }
167
 
168
  // Pull the values out of the database that we need for the form
169
  $allowed_group = get_option('can_manage_events');
172
  $my_calendar_show_address = get_option('my_calendar_show_address');
173
  $disp_author = get_option('display_author');
174
  $mc_event_link_expires = get_option('mc_event_link_expires');
175
+ $mc_event_mail = get_option('mc_event_mail');
176
+ $mc_event_mail_to = get_option('mc_event_mail_to');
177
+ $mc_event_mail_subject = get_option('mc_event_mail_subject');
178
+ $mc_event_mail_message = get_option('mc_event_mail_message');
179
+ $mc_event_approve = get_option('mc_event_approve');
180
+ $mc_event_approve_perms = get_option('mc_event_approve_perms');
181
  $disp_jump = get_option('display_jump');
182
+ $mc_no_fifth_week = get_option('mc_no_fifth_week');
183
+ ?>
 
 
 
 
 
 
 
 
184
  <div class="wrap">
185
  <?php
186
  echo my_calendar_check_db();
198
  <fieldset>
199
  <legend><?php _e('Calendar Options: Management','my-calendar'); ?></legend>
200
  <p>
201
+ <label for="permissions"><?php _e('Choose the lowest user group that may create events','my-calendar'); ?></label> <select id="permissions" name="permissions">
202
+ <option value="read"<?php echo jd_option_selected( get_option('can_manage_events'),'read','option'); ?>><?php _e('Subscriber','my-calendar')?></option>
203
+ <option value="edit_posts"<?php echo jd_option_selected(get_option('can_manage_events'),'edit_posts','option'); ?>><?php _e('Contributor','my-calendar')?></option>
204
+ <option value="publish_posts"<?php echo jd_option_selected(get_option('can_manage_events'),'publish_posts','option'); ?>><?php _e('Author','my-calendar')?></option>
205
+ <option value="moderate_comments"<?php echo jd_option_selected(get_option('can_manage_events'),'moderate_comments','option'); ?>><?php _e('Editor','my-calendar')?></option>
206
+ <option value="manage_options"<?php echo jd_option_selected(get_option('can_manage_events'),'manage_options','option'); ?>><?php _e('Administrator','my-calendar')?></option>
207
  </select>
208
  </p>
209
+ <p>
210
+ <label for="mc_event_approve_perms"><?php _e('Choose the lowest user group that may approve events','my-calendar'); ?></label> <select id="mc_event_approve_perms" name="mc_event_approve_perms">
211
+ <option value="read"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'read','option'); ?>><?php _e('Subscriber','my-calendar')?></option>
212
+ <option value="edit_posts"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'edit_posts','option'); ?>><?php _e('Contributor','my-calendar')?></option>
213
+ <option value="publish_posts"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'publish_posts','option'); ?>><?php _e('Author','my-calendar')?></option>
214
+ <option value="moderate_comments"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'moderate_comments','option'); ?>><?php _e('Editor','my-calendar')?></option>
215
+ <option value="manage_options"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'manage_options','option'); ?>><?php _e('Administrator','my-calendar')?></option>
216
+ </select>
217
+ </p>
218
+ <p>
219
+ <input type="checkbox" id="mc_event_approve" name="mc_event_approve" <?php jd_cal_checkCheckbox('mc_event_approve','true'); ?> /> <label for="mc_event_approve"><?php _e('Enable approval options.','my-calendar'); ?></label>
220
+ </p>
221
  </fieldset>
222
+ <fieldset>
223
+ <legend><?php _e('Calendar Options: Customize Text','my-calendar'); ?></legend>
224
  <p>
225
+ <input type="checkbox" id="my_calendar_show_heading" name="my_calendar_show_heading" <?php jd_cal_checkCheckbox('my_calendar_show_heading','true'); ?> /> <label for="my_calendar_show_heading"><?php _e('Show Heading for Calendar','my-calendar'); ?></label>
226
+ </p>
227
+ <p>
228
+ <label for="my_calendar_notime_text"><?php _e('Label for events without a specific time','my-calendar'); ?></label> <input type="text" id="my_calendar_notime_text" name="my_calendar_notime_text" value="<?php if ( get_option('my_calendar_notime_text') == "") { _e('N/A','my-calendar'); } else { echo stripslashes( get_option('my_calendar_notime_text') ); } ?>" />
229
  </p>
 
230
  <p>
231
+ <label for="mc_previous_events"><?php _e('Previous events link text','my-calendar'); ?></label> <input type="text" id="mc_previous_events" name="mc_previous_events" value="<?php if ( get_option('mc_previous_events') == "") { _e('Previous Events','my-calendar'); } else { echo stripslashes( get_option('mc_previous_events') ); } ?>" />
 
 
 
232
  </p>
233
  <p>
234
+ <label for="mc_next_events"><?php _e('Next events link text','my-calendar'); ?></label> <input type="text" id="mc_next_events" name="mc_next_events" value="<?php if ( get_option('mc_next_events') == "") { _e('Next Events','my-calendar'); } else { echo stripslashes( get_option('mc_next_events') ); } ?>" />
235
  </p>
236
  <p>
237
+ <label for="mc_event_open"><?php _e('Text when events are open','my-calendar'); ?></label> <input type="text" id="mc_event_open" name="mc_event_open" value="<?php if ( get_option('mc_event_open') == "") { _e('Registration is open','my-calendar'); } else { echo stripslashes( get_option('mc_event_open') ); } ?>" />
 
238
  </p>
239
  <p>
240
+ <label for="mc_event_closed"><?php _e('Text when events are closed','my-calendar'); ?></label> <input type="text" id="mc_event_closed" name="mc_event_closed" value="<?php if ( get_option('mc_event_closed') == "") { _e('Registration is closed','my-calendar'); } else { echo stripslashes( get_option('mc_event_closed') ); } ?>" />
241
+ </p>
242
  <p>
243
+ <label for="my_calendar_caption"><?php _e('Additional caption text','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" value="<?php echo stripslashes( get_option('my_calendar_caption') ); ?>" /><br /><small><?php _e('The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text.','my-calendar'); ?></small>
244
  </p>
245
+ </fieldset>
246
+ <fieldset>
247
+ <legend><?php _e('Calendar Options: Output','my-calendar'); ?></legend>
248
  <p>
249
+ <label for="my_calendar_show_months"><?php _e('In list mode, show how many months of events at a time:','my-calendar'); ?></label> <input type="text" size="3" id="my_calendar_show_months" name="my_calendar_show_months" value="<?php echo $my_calendar_show_months; ?>" />
250
  </p>
251
  <p>
252
+ <label for="my_calendar_date_format"><?php _e('Date format in list mode','my-calendar'); ?></label> <input type="text" id="my_calendar_date_format" name="my_calendar_date_format" value="<?php if ( get_option('my_calendar_date_format') == "") { echo get_option('date_format'); } else { echo get_option( 'my_calendar_date_format'); } ?>" /> Current: <?php if ( get_option('my_calendar_date_format') == '') { echo date_i18n(get_option('date_format')); } else { echo date_i18n(get_option('my_calendar_date_format')); } ?><br />
253
+ <small><?php _e('Date format uses the same syntax as the <a href="http://php.net/date">PHP <code>date()</code> function</a>. Save options to update sample output.','my-calendar'); ?></small>
254
+ </p>
255
+ <p>
256
+ <input type="checkbox" id="display_author" name="display_author" <?php jd_cal_checkCheckbox('display_author','true'); ?> /> <label for="display_jump"><?php _e('Do you want to display the author name on events?','my-calendar'); ?></label>
257
  </p>
258
  <p>
259
+ <input type="checkbox" id="display_jump" name="display_jump" <?php jd_cal_checkCheckbox('display_jump','true'); ?> /> <label for="display_jump"><?php _e('Display a jumpbox for changing month and year quickly?','my-calendar'); ?></label>
260
+ </p>
261
  <p>
262
  <input type="checkbox" id="my_calendar_hide_icons" name="my_calendar_hide_icons" <?php jd_cal_checkCheckbox('my_calendar_hide_icons','true'); ?> /> <label for="my_calendar_hide_icons"><?php _e('Hide category icons in output','my-calendar'); ?></label>
263
  </p>
268
  <input type="checkbox" id="my_calendar_show_address" name="my_calendar_show_address" <?php jd_cal_checkCheckbox('my_calendar_show_address','true'); ?> /> <label for="my_calendar_show_address"><?php _e('Show Event Address in Details','my-calendar'); ?></label>
269
  </p>
270
  <p>
271
+ <input type="checkbox" id="mc_short" name="mc_short" <?php jd_cal_checkCheckbox('mc_short','true'); ?> /> <label for="mc_short"><?php _e('Show short description field on calendar.','my-calendar'); ?></label>
272
+ </p>
273
+ <p>
274
+ <input type="checkbox" id="mc_desc" name="mc_desc" <?php jd_cal_checkCheckbox('mc_desc','true'); ?> /> <label for="mc_desc"><?php _e('Show full description field on calendar.','my-calendar'); ?></label>
275
+ </p>
276
+ <p>
277
  <input type="checkbox" id="mc_event_link_expires" name="mc_event_link_expires" <?php jd_cal_checkCheckbox('mc_event_link_expires','true'); ?> /> <label for="mc_event_link_expires"><?php _e('Links associated with events will automatically expire after the event has passed.','my-calendar'); ?></label>
278
  </p>
279
  <p>
280
+ <input type="checkbox" id="mc_event_registration" name="mc_event_registration" <?php jd_cal_checkCheckbox('mc_event_registration','true'); ?> /> <label for="mc_event_registration"><?php _e('Show current availability status of events.','my-calendar'); ?></label>
281
+ </p>
282
+ <p>
283
+ <input type="checkbox" id="mc_no_fifth_week" name="mc_no_fifth_week" <?php jd_cal_checkCheckbox('mc_no_fifth_week','true'); ?> /> <label for="mc_no_fifth_week"><?php _e('If a recurring event is scheduled for a date which doesn\'t exist (such as the 5th Wednesday in February), move it back one week.','my-calendar'); ?></label>
284
+ <?php _e('If this option is unchecked, recurring events which fall on dates which don\'t exist will simply not be shown on the calendar.','my-calendar'); ?>
285
+ </p>
286
+ </fieldset>
287
+ <fieldset>
288
+ <legend><?php _e('Calendar Options: Input','my-calendar'); ?></legend>
289
+ <?php
290
+ $input_options = get_option('mc_input_options');
291
+ $input_labels = array('event_location_dropdown'=>__('Show Event Location Dropdown Menu','my-calendar'),'event_short'=>__('Show Event Short Description field','my-calendar'),'event_desc'=>__('Show Event Description Field','my-calendar'),'event_category'=>__('Show Event Category field','my-calendar'),'event_link'=>__('Show Event Link field','my-calendar'),'event_recurs'=>__('Show Event Recurrence Options','my-calendar'),'event_open'=>__('Show event registration options','my-calendar'),'event_location'=>__('Show event location fields','my-calendar') );
292
+ $output = '';
293
+ foreach ($input_options as $key=>$value) {
294
+ $checked = ($value == 'on')?"checked='checked'":'';
295
+ $output .= "<p><input type=\"checkbox\" id=\"mci_$key\" name=\"mci_$key\" $checked /> <label for=\"mci_$key\">$input_labels[$key]</label></p>";
296
+ }
297
+ echo $output;
298
+ ?>
299
+ <p>
300
+ <input type="checkbox" id="mc_input_options_administrators" name="mc_input_options_administrators" <?php jd_cal_checkCheckbox('mc_input_options_administrators','true'); ?> /> <label for="mc_input_options_administrators"><strong><?php _e('Administrators see all input options','my-calendar'); ?></strong></label>
301
+ </p>
302
+ </fieldset>
303
+ <fieldset>
304
+ <legend><?php _e('Calendar Options: Style','my-calendar'); ?></legend>
305
+ <p>
306
  <input type="radio" id="mc_apply_color_default" name="mc_apply_color" value="default" <?php jd_cal_checkCheckbox('mc_apply_color','default'); ?> /> <label for="mc_apply_color_default"><?php _e('Default usage of category colors.','my-calendar'); ?></label><br />
307
  <input type="radio" id="mc_apply_color_to_titles" name="mc_apply_color" value="font" <?php jd_cal_checkCheckbox('mc_apply_color','font'); ?> /> <label for="mc_apply_color_to_titles"><?php _e('Apply category colors to event titles as a font color.','my-calendar'); ?></label><br />
308
  <input type="radio" id="mc_apply_bgcolor_to_titles" name="mc_apply_color" value="background" <?php jd_cal_checkCheckbox('mc_apply_color','background'); ?> /> <label for="mc_apply_bgcolor_to_titles"><?php _e('Apply category colors to event titles as a background color.','my-calendar'); ?></label>
309
  </p>
310
  </fieldset>
311
+
312
+ <fieldset>
313
+ <legend><?php _e('Calendar Options: Email Notifications','my-calendar'); ?></legend>
314
+
315
+ <p>
316
+
317
+ <input type="checkbox" id="mc_event_mail" name="mc_event_mail" <?php jd_cal_checkCheckbox('mc_event_mail','true'); ?> /> <label for="mc_event_mail"><?php _e('Send Email Notifications when new events are scheduled or reserved.','my-calendar'); ?></label>
318
+ </p>
319
+
320
+ <?php if ( get_option('mc_event_mail') == "true") { ?>
321
+
322
+ <p>
323
+ <label for="mc_event_mail_to"><?php _e('Notification messages are sent to: ','my-calendar'); ?></label> <input type="text" id="mc_event_mail_to" name="mc_event_mail_to" size="40" value="<?php if ( get_option('mc_event_mail_to') == "") { bloginfo('admin_email'); } else { echo stripslashes( get_option('mc_event_mail_to') ); } ?>" />
324
+ </p>
325
+
326
+ <p>
327
+ <label for="mc_event_mail_subject"><?php _e('Email subject','my-calendar'); ?></label> <input type="text" id="mc_event_mail_subject" name="mc_event_mail_subject" size="60" value="<?php if ( get_option('mc_event_mail_subject') == "") { bloginfo('name'); echo ': '; _e('New event Added','my-calendar'); } else { echo stripslashes( get_option('mc_event_mail_subject') ); } ?>" />
328
+ </p>
329
+
330
+ <p>
331
+ <label for="mc_event_mail_message"><?php _e('Message Body','my-calendar'); ?></label><br> <textarea rows="6" cols="80" id="mc_event_mail_message" name="mc_event_mail_message"/><?php if ( get_option('mc_event_mail_message') == "") { _e('New Event:','my-calendar'); echo "\n{title}: {date}, {time} - {event_status}"; } else { echo stripcslashes( get_option('mc_event_mail_message') ); } ?></textarea><br />
332
+ <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-help#templates"><?php _e("Shortcode Help",'my-calendar'); ?></a> <?php _e('All template shortcodes are available.','my-calendar'); ?>
333
+ </p>
334
+ <?php } else { ?>
335
+
336
+ <?php } ?>
337
+
338
+ </fieldset>
339
+
340
  <p>
341
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Settings','my-calendar'); ?> &raquo;" />
342
  </p>
my-calendar-styles.php CHANGED
@@ -75,7 +75,7 @@ echo my_calendar_check_db();
75
  <div class="inside">
76
  <form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-styles">
77
  <p>
78
- <label for="my_calendar_show_css"><?php _e('Show CSS & JavaScript only on these pages (comma separated page IDs)','my-calendar'); ?></label> <input type="text" id="my_calendar_show_css" name="my_calendar_show_css" value="<?php echo $my_calendar_show_css; ?>" />
79
  </p>
80
  <fieldset>
81
  <legend><?php _e('CSS Style Options','my-calendar'); ?></legend>
75
  <div class="inside">
76
  <form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-styles">
77
  <p>
78
+ <label for="my_calendar_show_css"><?php _e('Show CSS &amp; JavaScript only on these pages (comma separated page IDs)','my-calendar'); ?></label> <input type="text" id="my_calendar_show_css" name="my_calendar_show_css" value="<?php echo $my_calendar_show_css; ?>" />
79
  </p>
80
  <fieldset>
81
  <legend><?php _e('CSS Style Options','my-calendar'); ?></legend>
my-calendar-upgrade-db.php CHANGED
@@ -7,7 +7,7 @@ if ( $_POST['upgrade'] == 'true' ) {
7
  my_calendar_upgrade_db();
8
  }
9
 
10
- if ( !isset( $row->event_longitude ) && isset( $row->event_id ) ) {
11
  ?>
12
 
13
  <div class='upgrade-db error'>
@@ -30,7 +30,7 @@ if ( $_POST['upgrade'] == 'true' ) {
30
  <input type="hidden" name="upgrade" value="true" />
31
  </div>
32
  <p>
33
- <?php _e('You haven\'t entered any events, so My Calendar can\'t tell whether your database needs to be updated. If you can\'t add events, upgrade your database!','my-calendar'); ?>
34
  <input type="submit" value="<?php _e('Update now','my-calendar'); ?>" name="update-calendar" class="button-primary" />
35
  </p>
36
  </form>
@@ -63,6 +63,8 @@ $initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
63
  event_endtime TIME,
64
  event_recur CHAR(1),
65
  event_repeats INT(3),
 
 
66
  event_author BIGINT(20) UNSIGNED,
67
  event_category BIGINT(20) UNSIGNED,
68
  event_link TEXT,
@@ -77,6 +79,8 @@ $initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
77
  event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
78
  event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
79
  event_zoom INT(2) NOT NULL DEFAULT '14',
 
 
80
  PRIMARY KEY (event_id),
81
  KEY event_recur (event_recur)
82
  );";
7
  my_calendar_upgrade_db();
8
  }
9
 
10
+ if ( !isset( $row->event_approved ) && isset( $row->event_id ) ) {
11
  ?>
12
 
13
  <div class='upgrade-db error'>
30
  <input type="hidden" name="upgrade" value="true" />
31
  </div>
32
  <p>
33
+ <?php _e('You haven\'t entered any events, so My Calendar can\'t tell whether your database is up to date. If you can\'t add events, upgrade your database!','my-calendar'); ?>
34
  <input type="submit" value="<?php _e('Update now','my-calendar'); ?>" name="update-calendar" class="button-primary" />
35
  </p>
36
  </form>
63
  event_endtime TIME,
64
  event_recur CHAR(1),
65
  event_repeats INT(3),
66
+ event_status INT(1) NOT NULL DEFAULT '1',
67
+ event_group INT(1) NOT NULL DEFAULT '0',
68
  event_author BIGINT(20) UNSIGNED,
69
  event_category BIGINT(20) UNSIGNED,
70
  event_link TEXT,
79
  event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
80
  event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
81
  event_zoom INT(2) NOT NULL DEFAULT '14',
82
+ event_group INT(1) NOT NULL DEFAULT '0',
83
+ event_approved INT(1) NOT NULL DEFAULT '1',
84
  PRIMARY KEY (event_id),
85
  KEY event_recur (event_recur)
86
  );";
my-calendar-widgets.php CHANGED
@@ -158,7 +158,6 @@ function init_my_calendar_upcoming() {
158
  function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default') {
159
  global $wpdb;
160
  $offset = (60*60*get_option('gmt_offset'));
161
-
162
  // This function cannot be called unless calendar is up to date
163
  check_my_calendar();
164
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
@@ -221,8 +220,16 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
221
 
222
  $event_details['date'] = $date;
223
  $event_details['date_end'] = $date_end;
224
-
225
- $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
 
 
 
 
 
 
 
 
226
  }
227
  $day_count = $day_count+1;
228
  }
@@ -265,7 +272,13 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
265
  if ( my_calendar_date_equal( $date,$today ) ) {
266
  $class = "today";
267
  }
268
- $output .= "<li class=\"$class\">".jd_draw_widget_event($event_details,$template)."</li>\n";
 
 
 
 
 
 
269
  }
270
  $day_count = $day_count+1;
271
  } else {
@@ -277,12 +290,13 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
277
  $output .= "</ul>";
278
  return $output;
279
  }
 
280
  }
281
 
282
  // Widget todays events
283
  function my_calendar_todays_events($category='default',$template='default') {
284
- global $wpdb, $offset;
285
-
286
  // This function cannot be called unless calendar is up to date
287
  check_my_calendar();
288
 
@@ -297,8 +311,7 @@ function my_calendar_todays_events($category='default',$template='default') {
297
  } else {
298
  $category = $category;
299
  }
300
-
301
- $events = my_calendar_grab_events(date("Y"),date("m"),date("d"),$category);
302
  if (count($events) != 0) {
303
  $output = "<ul>";
304
  }
@@ -313,7 +326,13 @@ function my_calendar_todays_events($category='default',$template='default') {
313
  }
314
  // correct displayed time to today
315
  $event_details['date'] = $date;
316
- $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
 
 
 
 
 
 
317
  }
318
  if (count($events) != 0) {
319
  $output .= "</ul>";
@@ -340,9 +359,18 @@ function event_as_array($event) {
340
  check_my_calendar();
341
 
342
  $offset = (60*60*get_option('gmt_offset'));
343
-
344
- $sql = "SELECT category_name FROM " . MY_CALENDAR_CATEGORIES_TABLE . " WHERE category_id=".$event->event_category;
345
- $category_name = $wpdb->get_row($sql);
 
 
 
 
 
 
 
 
 
346
  $e = get_userdata($event->event_author);
347
 
348
  $hcard = "<div class=\"address vcard\">";
@@ -381,7 +409,7 @@ if ( strlen( trim( $map_string ) ) > 0 ) {
381
  $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
382
 
383
  if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
384
- $map_string = "$event->event_longitude,$event->event_latitude";
385
  }
386
 
387
  $map = "<a href=\"http://maps.google.com/maps?f=q&z=$zoom&q=$map_string\">Map<span> to $map_label</span></a>";
@@ -399,7 +427,7 @@ $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
399
 
400
 
401
  $details = array();
402
- $details['category'] = stripslashes($category_name->category_name);
403
  $details['title'] = stripslashes($event->event_title);
404
  if ($event->event_time == '00:00:00' ) {
405
  $details['time'] = get_option( 'my_calendar_notime_text' );
@@ -415,12 +443,19 @@ $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
415
  if ( $event->event_link_expires == 0 ) {
416
  $details['link'] = $event->event_link;
417
  } else {
418
- if ( my_calendar_date_comp( $event->event_begin, date_i18n('Y-m-d',time() ) ) ) {
419
  $details['link'] = '';
420
  } else {
421
  $details['link'] = $event->event_link;
422
  }
423
  }
 
 
 
 
 
 
 
424
  $details['description'] = stripslashes($event->event_desc);
425
  if ($details['link'] != '') {
426
  $details['link_title'] = "<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>";
@@ -438,7 +473,16 @@ $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
438
  $details['country'] = stripslashes($event->event_country);
439
  $details['hcard'] = stripslashes($hcard);
440
  $details['link_map'] = $map;
441
-
 
 
 
 
 
 
 
 
 
442
  return $details;
443
  }
444
 
158
  function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default') {
159
  global $wpdb;
160
  $offset = (60*60*get_option('gmt_offset'));
 
161
  // This function cannot be called unless calendar is up to date
162
  check_my_calendar();
163
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
220
 
221
  $event_details['date'] = $date;
222
  $event_details['date_end'] = $date_end;
223
+
224
+ // by Roland
225
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
226
+ if ( $event->event_approved != 0 ) {
227
+ $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
228
+ }
229
+ } else {
230
+ $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
231
+ }
232
+ // by Roland end
233
  }
234
  $day_count = $day_count+1;
235
  }
272
  if ( my_calendar_date_equal( $date,$today ) ) {
273
  $class = "today";
274
  }
275
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
276
+ if ( $event->event_approved != 0 ) {
277
+ $output .= "<li class=\"$class\">".jd_draw_widget_event($event_details,$template)."</li>\n";
278
+ }
279
+ } else {
280
+ $output .= "<li class=\"$class\">".jd_draw_widget_event($event_details,$template)."</li>\n";
281
+ }
282
  }
283
  $day_count = $day_count+1;
284
  } else {
290
  $output .= "</ul>";
291
  return $output;
292
  }
293
+
294
  }
295
 
296
  // Widget todays events
297
  function my_calendar_todays_events($category='default',$template='default') {
298
+ global $wpdb;
299
+ $offset = (60*60*get_option('gmt_offset'));
300
  // This function cannot be called unless calendar is up to date
301
  check_my_calendar();
302
 
311
  } else {
312
  $category = $category;
313
  }
314
+ $events = my_calendar_grab_events(date("Y",time()+$offset),date("m",time()+$offset),date("d",time()+$offset),$category);
 
315
  if (count($events) != 0) {
316
  $output = "<ul>";
317
  }
326
  }
327
  // correct displayed time to today
328
  $event_details['date'] = $date;
329
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
330
+ if ( $event->event_approved != 0 ) {
331
+ $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
332
+ }
333
+ } else {
334
+ $output .= "<li>".jd_draw_widget_event($event_details,$template)."</li>";
335
+ }
336
  }
337
  if (count($events) != 0) {
338
  $output .= "</ul>";
359
  check_my_calendar();
360
 
361
  $offset = (60*60*get_option('gmt_offset'));
362
+
363
+ $category_name = $event->category_name;
364
+ $category_color = $event->category_color;
365
+ $category_icon = $event->category_icon;
366
+
367
+ if ( file_exists( WP_PLUGIN_DIR . '/my-calendar-custom/' ) ) {
368
+ $path = '/my-calendar-custom';
369
+ } else {
370
+ $path = '/my-calendar/icons';
371
+ }
372
+ $category_icon = WP_PLUGIN_URL . $path . '/' . $category_icon;
373
+
374
  $e = get_userdata($event->event_author);
375
 
376
  $hcard = "<div class=\"address vcard\">";
409
  $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
410
 
411
  if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
412
+ $map_string = "$event->event_latitude,$event->event_longitude";
413
  }
414
 
415
  $map = "<a href=\"http://maps.google.com/maps?f=q&z=$zoom&q=$map_string\">Map<span> to $map_label</span></a>";
427
 
428
 
429
  $details = array();
430
+ $details['category'] = stripslashes($event->category_name);
431
  $details['title'] = stripslashes($event->event_title);
432
  if ($event->event_time == '00:00:00' ) {
433
  $details['time'] = get_option( 'my_calendar_notime_text' );
443
  if ( $event->event_link_expires == 0 ) {
444
  $details['link'] = $event->event_link;
445
  } else {
446
+ if ( my_calendar_date_comp( $event->event_end, date('Y-m-d',time()+$offset ) ) ) {
447
  $details['link'] = '';
448
  } else {
449
  $details['link'] = $event->event_link;
450
  }
451
  }
452
+ if ( $event->event_open == '1' ) {
453
+ $event_open = get_option( 'mc_event_open' );
454
+ } else if ( $event->event_open == '0' ) {
455
+ $event_open = get_option( 'mc_event_closed' );
456
+ } else {
457
+ $event_open = '';
458
+ }
459
  $details['description'] = stripslashes($event->event_desc);
460
  if ($details['link'] != '') {
461
  $details['link_title'] = "<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>";
473
  $details['country'] = stripslashes($event->event_country);
474
  $details['hcard'] = stripslashes($hcard);
475
  $details['link_map'] = $map;
476
+ $details['shortdesc'] = stripslashes($event->event_short);
477
+ $details['event_open'] = $event_open;
478
+ $details['icon'] = $category_icon;
479
+ $details['color'] = $category_color;
480
+ if ($event->event_approve == 1 ) {
481
+ $details['event_status'] = __('Published','my-calendar');
482
+ } else {
483
+ $details['event_status'] = __('Reserved','my-calendar');
484
+ }
485
+
486
  return $details;
487
  }
488
 
my-calendar.php CHANGED
@@ -5,9 +5,9 @@ Plugin URI: http://www.joedolson.com/articles/my-calendar/
5
  Description: Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
6
  Author: Joseph C Dolson
7
  Author URI: http://www.joedolson.com
8
- Version: 1.4.6
9
  */
10
- /* Copyright 2009 Joe Dolson (email : joe@joedolson.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
@@ -52,9 +52,10 @@ register_activation_hook( __FILE__, 'check_my_calendar' );
52
  add_filter( 'widget_text', 'do_shortcode', 9 );
53
 
54
  function jd_calendar_plugin_action($links, $file) {
55
- if ($file == plugin_basename(dirname(__FILE__).'/my-calendar.php'))
56
  $links[] = "<a href='admin.php?page=my-calendar-config'>" . __('Settings', 'my-calendar') . "</a>";
57
  $links[] = "<a href='admin.php?page=my-calendar-help'>" . __('Help', 'my-calendar') . "</a>";
 
58
  return $links;
59
  }
60
  add_filter('plugin_action_links', 'jd_calendar_plugin_action', -10, 2);
@@ -77,10 +78,10 @@ function jd_show_support_box() {
77
  ?>
78
  <div class="resources">
79
  <ul>
80
- <li><a href="http://mywpworks.com/wp-plugin-guides/my-calendar-plugin-beginners-guide/">Buy the Beginner's Guide</a></li>
81
  <li><a href="http://www.joedolson.com/articles/my-calendar/"><?php _e("Get Support",'my-calendar'); ?></a></li>
82
  <li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-help"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
83
- <li><a href="http://www.joedolson.com/donate.php"><?php _e("Make a Donation",'my-calendar'); ?></a></li>
84
  <li><form action="https://www.paypal.com/cgi-bin/webscr" method="post">
85
  <div>
86
  <input type="hidden" name="cmd" value="_s-xclick" />
@@ -135,7 +136,9 @@ $categories = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE
135
  } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
136
  $type = 'background';
137
  }
 
138
  $category_styles .= "\n#jd-calendar .$class { $type: $color; }";
 
139
  }
140
 
141
  echo "
@@ -215,15 +218,12 @@ add_action('init','my_calendar_add_display_javascript');
215
 
216
  function my_calendar_fouc() {
217
  global $wp_query;
218
-
219
  if ( get_option('calendar_javascript') != 1 || get_option('list_javascript') != 1 || get_option('mini_javascript') != 1 ) {
220
  $scripting = "\n<script type='text/javascript'>\n";
221
  $scripting .= "var \$mc = jQuery.noConflict();\n";
222
  $scripting .= "\$mc('html').addClass('js');\n";
223
  $scripting .= "\$mc(document).ready(function() { \$mc('html').removeClass('js') });\n";
224
  $scripting .= "</script>\n";
225
- }
226
- if ( get_option('calendar_javascript') != 1 || get_option('list_javascript') != 1 || get_option('mini_javascript') != 1 ) {
227
  $this_post = $wp_query->get_queried_object();
228
  if (is_object($this_post)) {
229
  $id = $this_post->ID;
@@ -234,10 +234,10 @@ global $wp_query;
234
  $array = array();
235
  }
236
  }
237
- if ( @in_array( $id, $array ) || get_option( 'my_calendar_show_css' ) == '' ) {
238
- echo $scripting;
239
  }
240
- }
241
  }
242
 
243
  function my_calendar_calendar_javascript() {
@@ -273,76 +273,10 @@ add_action('wp_footer','my_calendar_calendar_javascript');
273
  add_action('wp_head','my_calendar_fouc');
274
 
275
  function my_calendar_add_styles() {
276
-
277
  echo '<link type="text/css" rel="stylesheet" href="'.WP_PLUGIN_URL.'/my-calendar/js/ui.datepicker.css" />';
278
-
279
- echo '
280
- <style type="text/css">
281
- <!--
282
- .jd-my-calendar {
283
- margin-right: 190px!important;
284
- }
285
- #my-calendar legend {
286
- font-weight: 700;
287
- font-size: 1em;
288
- }
289
- .resources {
290
- float: right;
291
- border: 1px solid #aaa;
292
- padding: 10px 10px 0;
293
- margin-left: 10px;
294
- -moz-border-radius: 5px;
295
- -webkit-border-radius: 5px;
296
- border-radius: 5px;
297
- background: #fff;
298
- text-align: center;
299
- }
300
- .resources form {
301
- margin: 0!important;
302
- }
303
- #category_icon option {
304
- padding: 5px 0 5px 24px;
305
- }
306
- #my-calendar-admin-table .delete {
307
- background: #a00;
308
- color: #fff;
309
- padding: 2px 8px;
310
- font-size: .8em;
311
- border: 1px solid #fff;
312
- -moz-border-radius: 8px;
313
- -webkit-border-radius: 8px;
314
- border-radius: 8px;
315
- text-decoration: none;
316
- }
317
- #my-calendar-admin-table .delete:hover, #my-calendar-admin-table .delete:focus {
318
- border: 1px solid #999;
319
- background: #b11;
320
- }
321
- .import {
322
- background: #ffa;
323
- padding: 5px 10px;
324
- border: 1px solid #aaa;
325
- -moz-border-radius: 5px;
326
- -webkit-border-radius: 5px;
327
- border-radius: 5px;
328
- margin: 15px 0;
329
- }
330
- .n4 {width: 32px;}
331
- .n5 {width: 32px;}
332
- .n6 {width: 64px;}
333
- .n7 {width: 128px;}
334
- .n8 {width: 256px;}
335
- .category-color {
336
- width: 1.2em;
337
- height: 1.2em;
338
- display: inline-block;
339
- -moz-border-radius: 3px;
340
- -webkit-border-radius: 3px;
341
- border-radius: 3px;
342
- border: 1px solid #000;
343
- }
344
- //-->
345
- </style>';
346
  }
347
 
348
  function my_calendar_insert($atts) {
@@ -388,7 +322,7 @@ function check_my_calendar() {
388
  global $wpdb, $initial_style, $initial_listjs, $initial_caljs, $initial_minijs, $mini_styles;
389
  $current_version = get_option('my_calendar_version');
390
  // If current version matches, don't bother running this.
391
- if ($current_version == '1.4.6') {
392
  return true;
393
  }
394
 
@@ -418,10 +352,16 @@ function check_my_calendar() {
418
  $upgrade_path[] = "1.3.8";
419
  } else if ( version_compare( $current_version, "1.4.0", "<" ) ) {
420
  $upgrade_path[] = "1.4.0";
421
- }
 
 
 
 
 
 
422
 
423
  // having determined upgrade path, assign new version number
424
- update_option( 'my_calendar_version' , '1.4.6' );
425
 
426
  // Now we've determined what the current install is or isn't
427
  if ( $new_install == true ) {
@@ -453,6 +393,27 @@ function check_my_calendar() {
453
  add_option( 'mini_javascript', 1);
454
  upgrade_db();
455
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
456
  default:
457
  break;
458
  }
@@ -495,26 +456,30 @@ function my_calendar_permalink_prefix() {
495
  $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
496
  $real_link = $protocol.'://'.$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];
497
 
498
- // Now use all of that to get the correctly craft the My Calendar link prefix
499
  if (strstr($p_link, '?') && $p_link == $real_link) {
500
  $link_part = $p_link.'&';
501
  } else if ($p_link == $real_link) {
502
  $link_part = $p_link.'?';
503
  } else if (strstr($real_link, '?')) {
 
504
  if (isset($_GET['month']) && isset($_GET['yr'])) {
505
- $new_tail = split("&", $real_link);
506
- foreach ($new_tail as $item) {
507
- if (!strstr($item, 'month') && !strstr($item, 'yr')) {
508
- $link_part .= $item.'&amp;';
 
 
 
 
509
  }
510
  }
511
- if (!strstr($link_part, '?')) {
512
- $new_tail = split("month", $link_part);
513
- $link_part = $new_tail[0].'?'.$new_tail[1];
514
- }
515
  } else {
516
- $link_part = $real_link.'&amp;';
517
  }
 
 
518
  } else {
519
  $link_part = $real_link.'?';
520
  }
@@ -566,42 +531,31 @@ function my_calendar_prev_link($cur_year,$cur_month,$format) {
566
  }
567
 
568
  // Used to draw multiple events
569
- function my_calendar_draw_events($events, $type) {
570
  // We need to sort arrays of objects by time
571
  usort($events, "my_calendar_time_cmp");
572
- if ($type == "mini" && count($events)>0) {
573
- $output .= "<div class='calendar-events'>";
574
- }
575
- foreach($events as $event) {
576
- $output .= my_calendar_draw_event($event, $type);
577
- }
578
- if ($type == "mini" && count($events)>0) {
579
- $output .= "</div>";
580
- }
581
  return $output;
582
  }
583
  // Used to draw an event to the screen
584
- function my_calendar_draw_event($event, $type="calendar") {
585
- global $wpdb, $categories;
586
- // My Calendar must be updated to run this function
587
- check_my_calendar();
588
-
589
- $display_author = get_option('display_author');
590
- $display_map = get_option('my_calendar_show_map');
591
- $display_address = get_option('my_calendar_show_address');
592
  $this_category = $event->event_category;
593
- foreach ($categories as $key=>$value) {
594
- if ($value->category_id == $this_category) {
595
- $cat_details = $categories[$key];
596
- }
597
- }
598
- $category = "mc_".sanitize_title( $cat_details->category_name );
599
  if ( get_option('my_calendar_hide_icons')=='true' ) {
600
  $image = "";
601
  } else {
602
- if ($cat_details->category_icon != "") {
603
  $path = ( file_exists( WP_PLUGIN_DIR . '/my-calendar-custom/' ) )?'/my-calendar-custom' : '/my-calendar/icons';
604
- $image = '<img src="'.WP_PLUGIN_URL.$path.'/'.$cat_details->category_icon.'" alt="" class="category-icon" style="background:'.$cat_details->category_color.';" />';
605
  } else {
606
  $image = "";
607
  }
@@ -636,7 +590,7 @@ function my_calendar_draw_event($event, $type="calendar") {
636
  }
637
  $address .= "</div>";
638
  }
639
- if ($display_map == 'true' && strlen($location_string) > 0 ) {
640
  $map_string = str_replace(" ","+",$map_string);
641
  if ($event->event_label != "") {
642
  $map_label = stripslashes($event->event_label);
@@ -644,9 +598,10 @@ function my_calendar_draw_event($event, $type="calendar") {
644
  $map_label = stripslashes($event->event_title);
645
  }
646
  $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
 
647
 
648
  if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
649
- $map_string = "$event->event_longitude,$event->event_latitude";
650
  }
651
 
652
  $map = "<a href=\"http://maps.google.com/maps?f=q&amp;z=$zoom&amp;q=$map_string\">Map<span> to $map_label</span></a>";
@@ -660,7 +615,7 @@ function my_calendar_draw_event($event, $type="calendar") {
660
  if ( $event->event_link_expires == 0 ) {
661
  $event_link = $event->event_link;
662
  } else {
663
- if ( my_calendar_date_comp( $event->event_begin,date_i18n('Y-m-d',time()+$offset ) ) ) {
664
  $event_link = '';
665
  } else {
666
  $event_link = $event->event_link;
@@ -715,23 +670,68 @@ function my_calendar_draw_event($event, $type="calendar") {
715
  if ( $event->event_link_expires == 0 ) {
716
  $event_link = $event->event_link;
717
  } else {
718
- if ( my_calendar_date_comp( $event->event_begin,date_i18n('Y-m-d',time()+$offset ) ) ) {
719
  $event_link = '';
720
  } else {
721
  $event_link = $event->event_link;
722
  }
723
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
 
725
  if ($event_link != '') {
726
- $details = "\n". $header_details . '' . wpautop(stripcslashes($event->event_desc),1) . '<p><a href="'.$event_link.'" class="event-link">' . stripslashes($event->event_title) . '&raquo; </a></p>'."</div></div></div>\n";
727
  } else {
728
- $details = "\n". $header_details . '' . wpautop(stripcslashes($event->event_desc),1) . "</div></div></div>\n";
 
 
 
 
 
 
 
 
729
  }
730
- return $details;
731
  }
732
  function mc_select_category($category, $type='event') {
733
  global $wpdb;
734
- if ( strpos( $category, "|" ) ) {
 
 
 
735
  $categories = explode( "|", $category );
736
  $numcat = count($categories);
737
  $i = 1;
@@ -777,6 +777,7 @@ global $wpdb;
777
  }
778
  }
779
  return $select_category;
 
780
  }
781
  // used to generate upcoming events lists
782
  function mc_get_all_events($category) {
@@ -786,7 +787,7 @@ global $wpdb;
786
  } else {
787
  $select_category = "";
788
  }
789
- $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . "$select_category");
790
  $offset = (60*60*get_option('gmt_offset'));
791
  $date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
792
  if (!empty($events)) {
@@ -839,6 +840,24 @@ global $wpdb;
839
  $arr_events[]=${$i};
840
  }
841
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  case "Y":
843
  for ($i=$numback;$i<=$numforward;$i++) {
844
  $begin = my_calendar_add_date($orig_begin,0,0,$i);
@@ -848,7 +867,7 @@ global $wpdb;
848
  ${$i}->event_end = $end;
849
  $arr_events[]=${$i};
850
  }
851
- break;
852
  }
853
  } else {
854
  switch ($event->event_recur) {
@@ -857,7 +876,6 @@ global $wpdb;
857
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
858
  $nDays = get_option('display_past_events');
859
  $fDays = get_option('display_upcoming_events');
860
- if ( my_calendar_date_comp($event_begin, $today) ) { // compare first date against today's date
861
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
862
  $diff = jd_date_diff_precise(strtotime($event_begin));
863
  $diff_days = $diff/(86400);
@@ -885,9 +903,6 @@ global $wpdb;
885
  }
886
  }
887
  }
888
- } else {
889
- break;
890
- }
891
  break;
892
 
893
  case "W":
@@ -895,9 +910,8 @@ global $wpdb;
895
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
896
  $nDays = get_option('display_past_events');
897
  $fDays = get_option('display_upcoming_events');
898
-
899
- if ( my_calendar_date_comp($event_begin, $today) ) { // compare first date against today's date
900
- if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays*7),0,0) )) {
901
  $diff = jd_date_diff_precise(strtotime($event_begin));
902
  $diff_weeks = $diff/(86400*7);
903
  $weeks = explode(".",$diff_weeks);
@@ -906,7 +920,8 @@ global $wpdb;
906
 
907
  for ($realStart;$realStart<=$realFinish;$realStart++) { // jump forward to near present.
908
  $this_date = my_calendar_add_date($event_begin,($realStart*7),0,0);
909
- if ( my_calendar_date_comp( $event->event_begin,$this_date ) ) {
 
910
  ${$realStart} = clone($event);
911
  ${$realStart}->event_begin = $this_date;
912
  $arr_events[] = ${$realStart};
@@ -924,9 +939,6 @@ global $wpdb;
924
  }
925
  }
926
  }
927
- } else {
928
- break;
929
- }
930
  break;
931
 
932
  case "B":
@@ -935,7 +947,6 @@ global $wpdb;
935
  $nDays = get_option('display_past_events');
936
  $fDays = get_option('display_upcoming_events');
937
 
938
- if ( my_calendar_date_comp($event_begin, $today) ) { // compare first date against today's date
939
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays*14),0,0) )) {
940
  $diff = jd_date_diff_precise(strtotime($event_begin));
941
  $diff_weeks = $diff/(86400*14);
@@ -963,9 +974,6 @@ global $wpdb;
963
  }
964
  }
965
  }
966
- } else {
967
- break;
968
- }
969
  break;
970
 
971
  case "M":
@@ -974,7 +982,6 @@ global $wpdb;
974
  $nDays = get_option('display_past_events');
975
  $fDays = get_option('display_upcoming_events');
976
 
977
- if ( my_calendar_date_comp($event_begin, $today) ) { // compare first date against today's date
978
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
979
  $diff = jd_date_diff_precise(strtotime($event_begin));
980
  $diff_days = $diff/(86400*30);
@@ -1002,9 +1009,55 @@ global $wpdb;
1002
  }
1003
  }
1004
  }
1005
- } else {
1006
- break;
1007
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1008
  break;
1009
 
1010
  case "Y":
@@ -1013,7 +1066,6 @@ global $wpdb;
1013
  $nDays = get_option('display_past_events');
1014
  $fDays = get_option('display_upcoming_events');
1015
 
1016
- if ( my_calendar_date_comp($event_begin, $today) ) { // compare first date against today's date
1017
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
1018
  $diff = jd_date_diff_precise(strtotime($event_begin));
1019
  $diff_days = $diff/(86400*365);
@@ -1041,9 +1093,6 @@ global $wpdb;
1041
  }
1042
  }
1043
  }
1044
- } else {
1045
- break;
1046
- }
1047
  break;
1048
  }
1049
  }
@@ -1074,31 +1123,36 @@ function my_calendar_grab_events($y,$m,$d,$category=null) {
1074
 
1075
  // First we check for conventional events. These will form the first instance of a recurring event
1076
  // or the only instance of a one-off event
1077
- $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_begin <= '$date' AND event_end >= '$date' AND event_recur = 'S' ORDER BY event_id");
 
1078
  if (!empty($events)) {
1079
  foreach($events as $event) {
1080
  $arr_events[]=$event;
1081
  }
1082
  }
1083
 
1084
- // Fetch Annual Events
1085
- $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'Y' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin)
1086
  UNION ALL
1087
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'M' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats = 0
1088
  UNION ALL
1089
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'M' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats != 0 AND (PERIOD_DIFF(EXTRACT(YEAR_MONTH FROM '$date'),EXTRACT(YEAR_MONTH FROM event_begin))) <= event_repeats
1090
  UNION ALL
1091
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'B' AND '$date' >= event_begin AND event_repeats = 0
1092
  UNION ALL
1093
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'B' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats*14) >= (TO_DAYS('$date') - TO_DAYS(event_end))
 
 
1094
  UNION ALL
1095
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'W' AND '$date' >= event_begin AND event_repeats = 0
1096
  UNION ALL
1097
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'W' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats*7) >= (TO_DAYS('$date') - TO_DAYS(event_end))
1098
  UNION ALL
1099
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'D' AND '$date' >= event_begin AND event_repeats = 0
1100
  UNION ALL
1101
- SELECT * FROM " . MY_CALENDAR_TABLE . " WHERE $select_category event_recur = 'D' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats) >= (TO_DAYS('$date') - TO_DAYS(event_end))
 
 
1102
  ORDER BY event_id");
1103
 
1104
  if (!empty($events)) {
@@ -1140,31 +1194,97 @@ function my_calendar_grab_events($y,$m,$d,$category=null) {
1140
  }
1141
  }
1142
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1143
  case 'B':
1144
  // Now we are going to check to see what day the original event
1145
  // fell on and see if the current date is both after it and on
1146
  // the correct day. If it is, display the event!
1147
- $day_start_event = date('D',strtotime($event->event_begin));
1148
- $day_end_event = date('D',strtotime($event->event_end));
1149
- $current_day = date('D',strtotime($date));
1150
  $current_date = date('Y-m-d',strtotime($date));
1151
  $start_date = $event->event_begin;
1152
 
1153
- $plan = array("Mon"=>1,"Tue"=>2,"Wed"=>3,"Thu"=>4,"Fri"=>5,"Sat"=>6,"Sun"=>7);
1154
-
1155
  for ($n=0;$n<=$event->event_repeats;$n++) {
1156
  if ( $current_date == my_calendar_add_date($start_date,(14*$n)) ) {
1157
- if ($plan[$day_start_event] > $plan[$day_end_event]) {
1158
- if (($plan[$day_start_event] <= $plan[$current_day]) || ($plan[$current_day] <= $plan[$day_end_event])) {
1159
  $arr_events[]=$event;
1160
  }
1161
- } else if (($plan[$day_start_event] < $plan[$day_end_event]) || ($plan[$day_start_event]== $plan[$day_end_event])) {
1162
- if (($plan[$day_start_event] <= $plan[$current_day]) && ($plan[$current_day] <= $plan[$day_end_event])) {
1163
  $arr_events[]=$event;
1164
  }
1165
  }
1166
  }
1167
- }
 
 
 
 
 
 
 
 
1168
  break;
1169
  case 'W':
1170
  // Now we are going to check to see what day the original event
@@ -1280,11 +1400,7 @@ function mc_build_date_switcher() {
1280
  // Compared to searching for and displaying events
1281
  // this bit is really rather easy!
1282
  function my_calendar($name,$format,$category,$showkey) {
1283
- global $wpdb,$categories;
1284
-
1285
- $sql = "SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE ;
1286
- $categories = $wpdb->get_results($sql);
1287
-
1288
  if ($category == "") {
1289
  $category=null;
1290
  }
@@ -1420,6 +1536,7 @@ if ( $format == "calendar" || $format == "mini" ) {
1420
  $my_calendar_body .= "</tr>\n</thead>\n<tbody>";
1421
 
1422
  for ($i=1; $i<=$days_in_month;) {
 
1423
  $my_calendar_body .= '<tr>';
1424
  for ($ii=0; $ii<=6; $ii++) {
1425
  if ($ii==$first_weekday && $i==1) {
@@ -1447,9 +1564,9 @@ if ( $format == "calendar" || $format == "mini" ) {
1447
  }
1448
  }
1449
  if (get_option('start_of_week') == 0) {
1450
- $my_calendar_body .= '<td class="'.(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date_i18n("Ymd",time()+$offset)?'current-day':'day-with-date').$events_class.'">'."\n <$element class='mc-date ".($ii<6&&$ii>0?"$trigger":"weekend$trigger")."'>".$i++."</$element>\n ". my_calendar_draw_events($grabbed_events, $format) . "\n</td>\n";
1451
  } else {
1452
- $my_calendar_body .= '<td class="'.(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date_i18n("Ymd",time()+$offset)?'current-day':'day-with-date').$events_class.'">'."\n <$element class='mc-date ".($ii<5?"$trigger":"weekend$trigger'")."'>".$i++."</$element>\n ". my_calendar_draw_events($grabbed_events, $format) . "\n</td>\n";
1453
  }
1454
  } else {
1455
  $my_calendar_body .= "<td class='day-without-date'>&nbsp;</td>\n";
@@ -1472,6 +1589,7 @@ if ( $format == "calendar" || $format == "mini" ) {
1472
  }
1473
  $c_month = (int) $c_month + $add_month;
1474
  for ($i=1; $i<=31; $i++) {
 
1475
  $grabbed_events = my_calendar_grab_events($c_year,$c_month,$i,$category);
1476
  if (count($grabbed_events)) {
1477
  if ( get_option('list_javascript') != 1) {
@@ -1480,7 +1598,7 @@ if ( $format == "calendar" || $format == "mini" ) {
1480
  } else {
1481
  $is_anchor = $is_close_anchor = "";
1482
  }
1483
- $my_calendar_body .= "<li class='$class".(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date("Ymd",time()+($offset))?' current-day':'')."'><strong class=\"event-date\">$is_anchor".date_i18n($date_format,mktime(0,0,0,$c_month,$i,$c_year))."$is_close_anchor</strong>".my_calendar_draw_events($grabbed_events, $format)."</li>";
1484
  $num_events++;
1485
  }
1486
  $class = (my_calendar_is_odd($num_events))?"odd":"even";
@@ -1531,7 +1649,7 @@ function mc_can_edit_event($author_id) {
1531
  get_currentuserinfo();
1532
  $user = get_userdata($user_ID);
1533
 
1534
- if ( current_user_can('create_users') ) {
1535
  return true;
1536
  } elseif ( $user_ID == $author_id ) {
1537
  return true;
@@ -1548,4 +1666,16 @@ if (version_compare(phpversion(), '5.0') < 0) {
1548
  }
1549
  ');
1550
  }
 
 
 
 
 
 
 
 
 
 
 
 
1551
  ?>
5
  Description: Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
6
  Author: Joseph C Dolson
7
  Author URI: http://www.joedolson.com
8
+ Version: 1.5.4
9
  */
10
+ /* Copyright 2009-2010 Joe Dolson (email : joe@joedolson.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
52
  add_filter( 'widget_text', 'do_shortcode', 9 );
53
 
54
  function jd_calendar_plugin_action($links, $file) {
55
+ if ($file == plugin_basename(dirname(__FILE__).'/my-calendar.php')) {
56
  $links[] = "<a href='admin.php?page=my-calendar-config'>" . __('Settings', 'my-calendar') . "</a>";
57
  $links[] = "<a href='admin.php?page=my-calendar-help'>" . __('Help', 'my-calendar') . "</a>";
58
+ }
59
  return $links;
60
  }
61
  add_filter('plugin_action_links', 'jd_calendar_plugin_action', -10, 2);
78
  ?>
79
  <div class="resources">
80
  <ul>
81
+ <li><a href="http://mywpworks.com/wp-plugin-guides/my-calendar-plugin-beginners-guide/"><?php _e("Buy the Beginner's Guide",'my-calendar'); ?></a></li>
82
  <li><a href="http://www.joedolson.com/articles/my-calendar/"><?php _e("Get Support",'my-calendar'); ?></a></li>
83
  <li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-help"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
84
+ <li><strong><a href="http://www.joedolson.com/donate.php"><?php _e("Make a Donation",'my-calendar'); ?></a></strong></li>
85
  <li><form action="https://www.paypal.com/cgi-bin/webscr" method="post">
86
  <div>
87
  <input type="hidden" name="cmd" value="_s-xclick" />
136
  } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
137
  $type = 'background';
138
  }
139
+ if ( get_option( 'mc_apply_color' ) == 'font' || get_option( 'mc_apply_color' ) == 'background' ) {
140
  $category_styles .= "\n#jd-calendar .$class { $type: $color; }";
141
+ }
142
  }
143
 
144
  echo "
218
 
219
  function my_calendar_fouc() {
220
  global $wp_query;
 
221
  if ( get_option('calendar_javascript') != 1 || get_option('list_javascript') != 1 || get_option('mini_javascript') != 1 ) {
222
  $scripting = "\n<script type='text/javascript'>\n";
223
  $scripting .= "var \$mc = jQuery.noConflict();\n";
224
  $scripting .= "\$mc('html').addClass('js');\n";
225
  $scripting .= "\$mc(document).ready(function() { \$mc('html').removeClass('js') });\n";
226
  $scripting .= "</script>\n";
 
 
227
  $this_post = $wp_query->get_queried_object();
228
  if (is_object($this_post)) {
229
  $id = $this_post->ID;
234
  $array = array();
235
  }
236
  }
237
+ if ( @in_array( $id, $array ) || trim ( get_option( 'my_calendar_show_css' ) ) == '' ) {
238
+ echo $scripting;
239
  }
240
+ }
241
  }
242
 
243
  function my_calendar_calendar_javascript() {
273
  add_action('wp_head','my_calendar_fouc');
274
 
275
  function my_calendar_add_styles() {
276
+ if ($_GET['page'] == 'my-calendar' || $_GET['page'] == 'my-calendar-categories' || $_GET['page'] == 'my-calendar-locations' || $_GET['page'] == 'my-calendar-config' || $_GET['page'] == 'my-calendar-styles' || $_GET['page'] == 'my-calendar-help' ) {
277
  echo '<link type="text/css" rel="stylesheet" href="'.WP_PLUGIN_URL.'/my-calendar/js/ui.datepicker.css" />';
278
+ echo '<link type="text/css" rel="stylesheet" href="'.WP_PLUGIN_URL.'/my-calendar/mc-styles.css" />';
279
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  }
281
 
282
  function my_calendar_insert($atts) {
322
  global $wpdb, $initial_style, $initial_listjs, $initial_caljs, $initial_minijs, $mini_styles;
323
  $current_version = get_option('my_calendar_version');
324
  // If current version matches, don't bother running this.
325
+ if ($current_version == '1.5.4') {
326
  return true;
327
  }
328
 
352
  $upgrade_path[] = "1.3.8";
353
  } else if ( version_compare( $current_version, "1.4.0", "<" ) ) {
354
  $upgrade_path[] = "1.4.0";
355
+ } else if ( version_compare( $current_version, "1.4.7", "<" ) ) {
356
+ $upgrade_path[] = "1.4.7";
357
+ } else if ( version_compare( $current_version, "1.4.8", "<" ) ) {
358
+ $upgrade_path[] = "1.4.8";
359
+ } else if ( version_compare( $current_version, "1.5.0", "<" ) ) {
360
+ $upgrade_path[] = "1.5.0";
361
+ }
362
 
363
  // having determined upgrade path, assign new version number
364
+ update_option( 'my_calendar_version' , '1.5.4' );
365
 
366
  // Now we've determined what the current install is or isn't
367
  if ( $new_install == true ) {
393
  add_option( 'mini_javascript', 1);
394
  upgrade_db();
395
  break;
396
+ case '1.4.7':
397
+ add_option( 'mc_event_open', 'Registration is open' );
398
+ add_option( 'mc_event_closed', 'Registration is closed' );
399
+ add_option( 'mc_event_registration', 'false' );
400
+ add_option( 'mc_short', 'false' );
401
+ add_option( 'mc_desc', 'true' );
402
+ upgrade_db();
403
+ break;
404
+ case '1.4.8':
405
+ add_option('mc_input_options',array('event_short'=>'on','event_desc'=>'on','event_category'=>'on','event_link'=>'on','event_recurs'=>'on','event_open'=>'on','event_location'=>'on','event_location_dropdown'=>'on') );
406
+ add_option('mc_input_options_administrators','false');
407
+ break;
408
+ case '1.5.0':
409
+ add_option('mc_event_mail','false');
410
+ add_option('mc_event_mail_subject','');
411
+ add_option('mc_event_mail_to','');
412
+ add_option('mc_event_mail_message','');
413
+ add_option('mc_event_approve','false');
414
+ add_option('mc_event_approve_perms','manage_options');
415
+ add_option('mc_no_fifth_week','true');
416
+ upgrade_db();
417
  default:
418
  break;
419
  }
456
  $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
457
  $real_link = $protocol.'://'.$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];
458
 
459
+ // Now use all of that to get the My Calendar link prefix
460
  if (strstr($p_link, '?') && $p_link == $real_link) {
461
  $link_part = $p_link.'&';
462
  } else if ($p_link == $real_link) {
463
  $link_part = $p_link.'?';
464
  } else if (strstr($real_link, '?')) {
465
+
466
  if (isset($_GET['month']) && isset($_GET['yr'])) {
467
+ $link_part = '';
468
+ $new_base = split('\?', $real_link);
469
+ if(count($new_base) > 1) {
470
+ $new_tail = split('&', $new_base[1]);
471
+ foreach ($new_tail as $item) {
472
+ if (!strstr($item, 'month') && !strstr($item, 'yr')) {
473
+ $link_part .= $item.'&';
474
+ }
475
  }
476
  }
477
+ $link_part = $new_base[0] . ($link_part ? "?$link_part" : '?');
 
 
 
478
  } else {
479
+ $link_part = $real_link.'&';
480
  }
481
+
482
+
483
  } else {
484
  $link_part = $real_link.'?';
485
  }
531
  }
532
 
533
  // Used to draw multiple events
534
+ function my_calendar_draw_events($events, $type, $process_date) {
535
  // We need to sort arrays of objects by time
536
  usort($events, "my_calendar_time_cmp");
537
+ if ($type == "mini" && count($events) > 0) { $output .= "<div class='calendar-events'>"; }
538
+ foreach($events as $event) { $output .= my_calendar_draw_event($event, $type, $process_date); }
539
+ if ($type == "mini" && count($events) > 0) { $output .= "</div>"; }
 
 
 
 
 
 
540
  return $output;
541
  }
542
  // Used to draw an event to the screen
543
+ function my_calendar_draw_event($event, $type="calendar", $process_date) {
544
+ global $wpdb;
545
+ // My Calendar must be updated to run this function
546
+ check_my_calendar();
547
+ $display_author = get_option('display_author');
548
+ $display_map = get_option('my_calendar_show_map');
549
+ $display_address = get_option('my_calendar_show_address');
 
550
  $this_category = $event->event_category;
551
+
552
+ $category = "mc_".sanitize_title( $event->category_name );
 
 
 
 
553
  if ( get_option('my_calendar_hide_icons')=='true' ) {
554
  $image = "";
555
  } else {
556
+ if ($event->category_icon != "") {
557
  $path = ( file_exists( WP_PLUGIN_DIR . '/my-calendar-custom/' ) )?'/my-calendar-custom' : '/my-calendar/icons';
558
+ $image = '<img src="'.WP_PLUGIN_URL.$path.'/'.$event->category_icon.'" alt="" class="category-icon" style="background:'.$event->category_color.';" />';
559
  } else {
560
  $image = "";
561
  }
590
  }
591
  $address .= "</div>";
592
  }
593
+ if ($display_map == 'true' && (strlen($location_string) > 0 || ( $event->event_longitude != '0.000000' && $event->event_latitude != '0.000000' ) ) ) {
594
  $map_string = str_replace(" ","+",$map_string);
595
  if ($event->event_label != "") {
596
  $map_label = stripslashes($event->event_label);
598
  $map_label = stripslashes($event->event_title);
599
  }
600
  $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
601
+ $map_string_label = urlencode($map_label);
602
 
603
  if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
604
+ $map_string = "$event->event_latitude,$event->event_longitude+($map_string_label)";
605
  }
606
 
607
  $map = "<a href=\"http://maps.google.com/maps?f=q&amp;z=$zoom&amp;q=$map_string\">Map<span> to $map_label</span></a>";
615
  if ( $event->event_link_expires == 0 ) {
616
  $event_link = $event->event_link;
617
  } else {
618
+ if ( my_calendar_date_comp( $event->event_end,date_i18n('Y-m-d',time()+$offset ) ) ) {
619
  $event_link = '';
620
  } else {
621
  $event_link = $event->event_link;
670
  if ( $event->event_link_expires == 0 ) {
671
  $event_link = $event->event_link;
672
  } else {
673
+ if ( my_calendar_date_comp( $event->event_end,date_i18n('Y-m-d',time()+$offset ) ) ) {
674
  $event_link = '';
675
  } else {
676
  $event_link = $event->event_link;
677
  }
678
  }
679
+
680
+ if ( get_option('mc_short') == 'true' ) {
681
+ $short = "<div class='shortdesc'>".wpautop(stripcslashes($event->event_short),1)."</div>";
682
+ }
683
+ if ( get_option('mc_desc') == 'true' ) {
684
+ $description = "<div class='longdesc'>".wpautop(stripcslashes($event->event_desc),1)."</div>";
685
+ }
686
+ if ( get_option('mc_event_registration') == 'true' ) {
687
+ switch ($event->event_open) {
688
+ case '0':
689
+ $status = get_option('mc_event_closed');
690
+ break;
691
+ case '1':
692
+ $status = get_option('mc_event_open');
693
+ break;
694
+ case '2':
695
+ $status = '';
696
+ break;
697
+ default:
698
+ $status = '';
699
+ }
700
+ }
701
+ // if the event is a member of a group of events, but not the first, note that.
702
+ if ($event->event_group == 1 ) {
703
+ $info = array();
704
+ $info[] = $event->event_id;
705
+ update_option( 'mc_event_groups' , $info );
706
+ }
707
+ if ( is_array( get_option( 'mc_event_groups' ) ) ) {
708
+ if ( in_array ( $event->event_id , get_option( 'mc_event_groups') ) ) {
709
+ if ( $process_date != $event->event_original_begin ) {
710
+ $status = __("This class is part of a series. You must register for the first event in this series to attend.",'my-calendar');
711
+ }
712
+ }
713
+ }
714
 
715
  if ($event_link != '') {
716
+ $details = "\n". $header_details . '' . $description . $short . '<p>'.$status.'</p><p><a href="'.$event_link.'" class="event-link">' . stripslashes($event->event_title) . '&raquo; </a></p>'."</div></div></div>\n";
717
  } else {
718
+ $details = "\n". $header_details . '' . $description . $short . '<p>'.$status."</p></div></div></div>\n";
719
+ }
720
+
721
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
722
+ if ( $event->event_approved == 1 ) {
723
+ return $details;
724
+ }
725
+ } else {
726
+ return $details;
727
  }
 
728
  }
729
  function mc_select_category($category, $type='event') {
730
  global $wpdb;
731
+ if ($category == 'all' ) {
732
+ return '';
733
+ } else {
734
+ if ( strpos( $category, "|" ) ) {
735
  $categories = explode( "|", $category );
736
  $numcat = count($categories);
737
  $i = 1;
777
  }
778
  }
779
  return $select_category;
780
+ }
781
  }
782
  // used to generate upcoming events lists
783
  function mc_get_all_events($category) {
787
  } else {
788
  $select_category = "";
789
  }
790
+ $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $select_category");
791
  $offset = (60*60*get_option('gmt_offset'));
792
  $date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
793
  if (!empty($events)) {
840
  $arr_events[]=${$i};
841
  }
842
  break;
843
+ case "U":
844
+ for ($i=$numback;$i<=$numforward;$i++) {
845
+ $approxbegin = my_calendar_add_date($orig_begin,0,$i,0);
846
+ $approxend = my_calendar_add_date($orig_end,0,$i,0);
847
+ for ($n=-6;$n<=6;$n++) {
848
+ $beginday = date('D',strtotime(my_calendar_add_date($approxbegin,$n,0,0)));
849
+ if ($beginday == date('D',strtotime($orig_begin)) && floor(date('d',strtotime($orig_begin))/7) == floor(date('d',strtotime($approxbegin))/7) ) {
850
+ $begin = my_calendar_add_date($approxbegin,$n,0,0);
851
+ $end = my_calendar_add_date($approxend,$n,0,0);
852
+ //$i=4;
853
+ ${$i} = clone($event);
854
+ ${$i}->event_begin = $begin;
855
+ ${$i}->event_end = $end;
856
+ $arr_events[]=${$i};
857
+ }
858
+ }
859
+ }
860
+ break;
861
  case "Y":
862
  for ($i=$numback;$i<=$numforward;$i++) {
863
  $begin = my_calendar_add_date($orig_begin,0,0,$i);
867
  ${$i}->event_end = $end;
868
  $arr_events[]=${$i};
869
  }
870
+ break;
871
  }
872
  } else {
873
  switch ($event->event_recur) {
876
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
877
  $nDays = get_option('display_past_events');
878
  $fDays = get_option('display_upcoming_events');
 
879
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
880
  $diff = jd_date_diff_precise(strtotime($event_begin));
881
  $diff_days = $diff/(86400);
903
  }
904
  }
905
  }
 
 
 
906
  break;
907
 
908
  case "W":
910
  $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
911
  $nDays = get_option('display_past_events');
912
  $fDays = get_option('display_upcoming_events');
913
+
914
+ if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays*7),0,0) ) ) {
 
915
  $diff = jd_date_diff_precise(strtotime($event_begin));
916
  $diff_weeks = $diff/(86400*7);
917
  $weeks = explode(".",$diff_weeks);
920
 
921
  for ($realStart;$realStart<=$realFinish;$realStart++) { // jump forward to near present.
922
  $this_date = my_calendar_add_date($event_begin,($realStart*7),0,0);
923
+
924
+ if ( my_calendar_date_comp( $event->event_begin,$this_date ) ) {
925
  ${$realStart} = clone($event);
926
  ${$realStart}->event_begin = $this_date;
927
  $arr_events[] = ${$realStart};
939
  }
940
  }
941
  }
 
 
 
942
  break;
943
 
944
  case "B":
947
  $nDays = get_option('display_past_events');
948
  $fDays = get_option('display_upcoming_events');
949
 
 
950
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays*14),0,0) )) {
951
  $diff = jd_date_diff_precise(strtotime($event_begin));
952
  $diff_weeks = $diff/(86400*14);
974
  }
975
  }
976
  }
 
 
 
977
  break;
978
 
979
  case "M":
982
  $nDays = get_option('display_past_events');
983
  $fDays = get_option('display_upcoming_events');
984
 
 
985
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
986
  $diff = jd_date_diff_precise(strtotime($event_begin));
987
  $diff_days = $diff/(86400*30);
1009
  }
1010
  }
1011
  }
1012
+ break;
1013
+
1014
+ case "U":
1015
+ $event_begin = $event->event_begin;
1016
+ $event_end = $event->event_end;
1017
+ $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
1018
+ $nDays = get_option('display_past_events');
1019
+ $fDays = get_option('display_upcoming_events');
1020
+
1021
+ if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
1022
+ $diff = jd_date_diff_precise(strtotime($event_begin));
1023
+ $diff_days = floor($diff/(86400*30));
1024
+ $realStart = $diff_days - $nDays;
1025
+ $realFinish = $diff_days + $fDays;
1026
+
1027
+ for ($realStart;$realStart<=$realFinish;$realStart++) { // jump forward to near present.
1028
+ $approxbegin = my_calendar_add_date($event_begin,0,$realStart,0);
1029
+ $approxend = my_calendar_add_date($event_end,0,$realStart,0);
1030
+ for ($n=-6;$n<=6;$n++) {
1031
+ $beginday = date('D',strtotime(my_calendar_add_date($approxbegin,$n,0,0)));
1032
+ if ($beginday == date('D',strtotime($event_begin)) && floor(date('d',strtotime($event_begin))/7) == floor(date('d',strtotime($approxbegin))/7) ) {
1033
+ $begin = my_calendar_add_date($approxbegin,$n,0,0);
1034
+ $end = my_calendar_add_date($approxend,$n,0,0);
1035
+ ${$realStart} = clone($event);
1036
+ ${$realStart}->event_begin = $begin;
1037
+ ${$realStart}->event_end = $end;
1038
+ $arr_events[]=${$realStart};
1039
+ }
1040
+ }
1041
+ }
1042
+
1043
+ } else {
1044
+ $realDays = -($nDays);
1045
+ for ($realDays;$realDays<=$fDays;$realDays++) { // for each event within plus or minus range, mod date and add to array.
1046
+ $approxbegin = my_calendar_add_date($event_begin,0,$realDays,0);
1047
+ $approxend = my_calendar_add_date($event_end,0,$realDays,0);
1048
+ for ($n=-6;$n<=6;$n++) {
1049
+ $beginday = date('D',strtotime(my_calendar_add_date($approxbegin,$n,0,0)));
1050
+ if ($beginday == date('D',strtotime($event_begin)) && floor(date('d',strtotime($event_begin))/7) == floor(date('d',strtotime($approxbegin))/7) ) {
1051
+ $begin = my_calendar_add_date($approxbegin,$n,0,0);
1052
+ $end = my_calendar_add_date($approxend,$n,0,0);
1053
+ ${$realDays} = clone($event);
1054
+ ${$realDays}->event_begin = $begin;
1055
+ ${$realDays}->event_end = $end;
1056
+ $arr_events[]=${$realDays};
1057
+ }
1058
+ }
1059
+ }
1060
+ }
1061
  break;
1062
 
1063
  case "Y":
1066
  $nDays = get_option('display_past_events');
1067
  $fDays = get_option('display_upcoming_events');
1068
 
 
1069
  if (my_calendar_date_comp( $event_begin, my_calendar_add_date($today,-($nDays),0,0) )) {
1070
  $diff = jd_date_diff_precise(strtotime($event_begin));
1071
  $diff_days = $diff/(86400*365);
1093
  }
1094
  }
1095
  }
 
 
 
1096
  break;
1097
  }
1098
  }
1123
 
1124
  // First we check for conventional events. These will form the first instance of a recurring event
1125
  // or the only instance of a one-off event
1126
+ $events = $wpdb->get_results("
1127
+ SELECT * FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_begin <= '$date' AND event_end >= '$date' AND event_recur = 'S' ORDER BY event_id");
1128
  if (!empty($events)) {
1129
  foreach($events as $event) {
1130
  $arr_events[]=$event;
1131
  }
1132
  }
1133
 
1134
+ $events = $wpdb->get_results("
1135
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'Y' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin)
1136
  UNION ALL
1137
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'M' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats = 0
1138
  UNION ALL
1139
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'M' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats != 0 AND (PERIOD_DIFF(EXTRACT(YEAR_MONTH FROM '$date'),EXTRACT(YEAR_MONTH FROM event_begin))) <= event_repeats
1140
  UNION ALL
1141
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'U' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats = 0
1142
  UNION ALL
1143
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'U' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin) AND event_repeats != 0 AND (PERIOD_DIFF(EXTRACT(YEAR_MONTH FROM '$date'),EXTRACT(YEAR_MONTH FROM event_begin))) <= event_repeats
1144
+ UNION ALL
1145
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'B' AND '$date' >= event_begin AND event_repeats = 0
1146
  UNION ALL
1147
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'B' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats*14) >= (TO_DAYS('$date') - TO_DAYS(event_end))
1148
  UNION ALL
1149
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'W' AND '$date' >= event_begin AND event_repeats = 0
1150
  UNION ALL
1151
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'W' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats*7) >= (TO_DAYS('$date') - TO_DAYS(event_end))
1152
  UNION ALL
1153
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'D' AND '$date' >= event_begin AND event_repeats = 0
1154
+ UNION ALL
1155
+ SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category event_recur = 'D' AND '$date' >= event_begin AND event_repeats != 0 AND (event_repeats) >= (TO_DAYS('$date') - TO_DAYS(event_end))
1156
  ORDER BY event_id");
1157
 
1158
  if (!empty($events)) {
1194
  }
1195
  }
1196
  break;
1197
+ case 'U':
1198
+ // Technically we don't care about the years or months, but we need to find out if the
1199
+ // event spans the turn of a year or month so we can deal with it appropriately.
1200
+ $month_begin = date( 'm',strtotime($event->event_begin) );
1201
+ $month_end = date( 'm',strtotime($event->event_end) );
1202
+ $day_of_event = date( 'D',strtotime($event->event_begin) );
1203
+ $date_of_event = date( 'd',strtotime($event->event_begin) );
1204
+ //$end_day_of_event = date( 'D',strtotime($event->event_end) );
1205
+ //$end_date_of_event = date( 'd',strtotime($event->event_end) );
1206
+ $current_day = date('D',strtotime($date));
1207
+ $current_date = date('d',strtotime($date));
1208
+ $week_of_event = week_of_month($date_of_event);
1209
+ $current_week = week_of_month($current_date);
1210
+
1211
+ $day_diff = jd_date_diff($event->event_begin,$event->event_end);
1212
+
1213
+
1214
+
1215
+ for ($i=1;$i<=31;$i++) {
1216
+ $string = date( 'Y',strtotime($date) ).'-'.date('m',strtotime($date)).'-'.$i;
1217
+
1218
+ $week = week_of_month($i);
1219
+
1220
+ if ( date('D',strtotime($string)) == $day_of_event && $week == $week_of_event ) {
1221
+ $date_of_event_this_month = $i;
1222
+ }
1223
+ }
1224
+ if ( get_option('mc_no_fifth_week') == 'true' && $date_of_event_this_month == '' ) {
1225
+ $new_week_of_event = $week_of_event-1;
1226
+ for ($i=1;$i<=31;$i++) {
1227
+ $string = date( 'Y',strtotime($date) ).'-'.date('m',strtotime($date)).'-'.$i;
1228
+ if ( date('D',strtotime($string)) == $day_of_event && $week == $new_week_of_event ) {
1229
+ $date_of_event_this_month = $i;
1230
+ }
1231
+ }
1232
+ }
1233
+
1234
+ /*
1235
+ if ( $event->event_title == 'Every 3rd Thursday' ) {
1236
+ echo ("$event->event_title $day_of_event=$current_day, $date_of_event, $week_of_event=$current_week, <br />");
1237
+ echo ("$event->event_title $current_date>=$date_of_event_this_month, $current_date<=$date_of_event_this_month+$day_diff, <br />");
1238
+ }
1239
+ */
1240
+ if ( my_calendar_date_comp($event->event_begin,$date) ) {
1241
+ if ( ($current_day == $day_of_event && $current_week == $week_of_event) || ($current_date >= $date_of_event_this_month && $current_date <= $date_of_event_this_month+$day_diff && $date_of_event_this_month != '' ) ) {
1242
+ if ($month_begin == $month_end) {
1243
+ if (true) {
1244
+ $arr_events[]=$event;
1245
+ }
1246
+ } else if ($month_begin < $month_end) {
1247
+ if (true) {
1248
+ $arr_events[]=$event;
1249
+ }
1250
+ }
1251
+ } else {
1252
+ break;
1253
+ }
1254
+ }
1255
+ break;
1256
  case 'B':
1257
  // Now we are going to check to see what day the original event
1258
  // fell on and see if the current date is both after it and on
1259
  // the correct day. If it is, display the event!
1260
+ $day_start_event = date('w',strtotime($event->event_begin));
1261
+ $day_end_event = date('w',strtotime($event->event_end));
1262
+ $current_day = date('w',strtotime($date));
1263
  $current_date = date('Y-m-d',strtotime($date));
1264
  $start_date = $event->event_begin;
1265
 
1266
+ if ($event->event_repeats != 0) {
 
1267
  for ($n=0;$n<=$event->event_repeats;$n++) {
1268
  if ( $current_date == my_calendar_add_date($start_date,(14*$n)) ) {
1269
+ if ($day_start_event > $day_end_event) {
1270
+ if (($day_start_event <= $current_day) || ($current_day <= $day_end_event)) {
1271
  $arr_events[]=$event;
1272
  }
1273
+ } else if (($day_start_event < $day_end_event) || ($day_start_event == $day_end_event)) {
1274
+ if (($day_start_event <= $current_day) && ($current_day <= $day_end_event)) {
1275
  $arr_events[]=$event;
1276
  }
1277
  }
1278
  }
1279
+ }
1280
+ } else {
1281
+ // there's got to be a better way to do this, but I can't think of it right now.
1282
+ for ($n=0;$n<=52;$n++) {
1283
+ if ( $current_date == my_calendar_add_date($start_date,(14*$n)) ) {
1284
+ $arr_events[]=$event;
1285
+ }
1286
+ }
1287
+ }
1288
  break;
1289
  case 'W':
1290
  // Now we are going to check to see what day the original event
1400
  // Compared to searching for and displaying events
1401
  // this bit is really rather easy!
1402
  function my_calendar($name,$format,$category,$showkey) {
1403
+ global $wpdb;
 
 
 
 
1404
  if ($category == "") {
1405
  $category=null;
1406
  }
1536
  $my_calendar_body .= "</tr>\n</thead>\n<tbody>";
1537
 
1538
  for ($i=1; $i<=$days_in_month;) {
1539
+ $process_date = date_i18n('Y-m-d',mktime(0,0,0,$c_month,$i,$c_year));
1540
  $my_calendar_body .= '<tr>';
1541
  for ($ii=0; $ii<=6; $ii++) {
1542
  if ($ii==$first_weekday && $i==1) {
1564
  }
1565
  }
1566
  if (get_option('start_of_week') == 0) {
1567
+ $my_calendar_body .= '<td class="'.(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date_i18n("Ymd",time()+$offset)?'current-day':'day-with-date').$events_class.'">'."\n <$element class='mc-date ".($ii<6&&$ii>0?"$trigger":"weekend$trigger")."'>".$i++."</$element>\n ". my_calendar_draw_events($grabbed_events, $format, $process_date) . "\n</td>\n";
1568
  } else {
1569
+ $my_calendar_body .= '<td class="'.(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date_i18n("Ymd",time()+$offset)?'current-day':'day-with-date').$events_class.'">'."\n <$element class='mc-date ".($ii<5?"$trigger":"weekend$trigger'")."'>".$i++."</$element>\n ". my_calendar_draw_events($grabbed_events, $format, $process_date) . "\n</td>\n";
1570
  }
1571
  } else {
1572
  $my_calendar_body .= "<td class='day-without-date'>&nbsp;</td>\n";
1589
  }
1590
  $c_month = (int) $c_month + $add_month;
1591
  for ($i=1; $i<=31; $i++) {
1592
+ $process_date = date_i18n('Y-m-d',mktime(0,0,0,$c_month,$i,$c_year));
1593
  $grabbed_events = my_calendar_grab_events($c_year,$c_month,$i,$category);
1594
  if (count($grabbed_events)) {
1595
  if ( get_option('list_javascript') != 1) {
1598
  } else {
1599
  $is_anchor = $is_close_anchor = "";
1600
  }
1601
+ $my_calendar_body .= "<li class='$class".(date("Ymd", mktime (0,0,0,$c_month,$i,$c_year))==date("Ymd",time()+($offset))?' current-day':'')."'><strong class=\"event-date\">$is_anchor".date_i18n($date_format,mktime(0,0,0,$c_month,$i,$c_year))."$is_close_anchor</strong>".my_calendar_draw_events($grabbed_events, $format, $process_date)."</li>";
1602
  $num_events++;
1603
  }
1604
  $class = (my_calendar_is_odd($num_events))?"odd":"even";
1649
  get_currentuserinfo();
1650
  $user = get_userdata($user_ID);
1651
 
1652
+ if ( current_user_can('manage_options') ) {
1653
  return true;
1654
  } elseif ( $user_ID == $author_id ) {
1655
  return true;
1666
  }
1667
  ');
1668
  }
1669
+
1670
+ // Mail functions by Roland
1671
+ function my_calendar_send_email( $details ) {
1672
+ $event = event_as_array($details);
1673
+
1674
+ if ( get_option('mc_event_mail') == 'true' ) {
1675
+ $to = get_option('mc_event_mail_to');
1676
+ $subject = get_option('mc_event_mail_subject');
1677
+ $message = jd_draw_widget_event( $event, get_option('mc_event_mail_message') );
1678
+ $mail = wp_mail($to, $subject, $message);
1679
+ }
1680
+ }
1681
  ?>
my-calendar.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Translation of the WordPress plugin My Calendar 1.4.5 by Joseph C Dolson.
2
  # Copyright (C) 2010 Joseph C Dolson
3
  # This file is distributed under the same license as the My Calendar package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: My Calendar 1.4.5\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
11
- "POT-Creation-Date: 2010-08-12 18:38+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40,7 +40,8 @@ msgstr ""
40
  msgid "Category edited successfully"
41
  msgstr ""
42
 
43
- #: my-calendar-categories.php:88
 
44
  msgid "Add Category"
45
  msgstr ""
46
 
@@ -64,16 +65,16 @@ msgstr ""
64
  msgid "Category Icon"
65
  msgstr ""
66
 
67
- #: my-calendar-categories.php:130 my-calendar-locations.php:123
68
  msgid "Save Changes"
69
  msgstr ""
70
 
71
- #: my-calendar-categories.php:143 my-calendar.php:175
72
  msgid "Manage Categories"
73
  msgstr ""
74
 
75
- #: my-calendar-categories.php:155 my-calendar-event-manager.php:469
76
- #: my-calendar-locations.php:149
77
  msgid "ID"
78
  msgstr ""
79
 
@@ -82,23 +83,23 @@ msgid "Category Color"
82
  msgstr ""
83
 
84
  #: my-calendar-categories.php:159 my-calendar-categories.php:173
85
- #: my-calendar-event-manager.php:528 my-calendar-locations.php:151
86
- #: my-calendar-locations.php:163
87
  msgid "Edit"
88
  msgstr ""
89
 
90
  #: my-calendar-categories.php:160 my-calendar-categories.php:179
91
- #: my-calendar-event-manager.php:53 my-calendar-event-manager.php:528
92
- #: my-calendar-locations.php:152 my-calendar-locations.php:164
93
  msgid "Delete"
94
  msgstr ""
95
 
96
- #: my-calendar-categories.php:176 my-calendar-event-manager.php:510
97
- #: my-calendar-settings.php:209 my-calendar.php:680
98
  msgid "N/A"
99
  msgstr ""
100
 
101
- #: my-calendar-categories.php:179 my-calendar-locations.php:164
102
  msgid "Are you sure you want to delete this category?"
103
  msgstr ""
104
 
@@ -106,18 +107,18 @@ msgstr ""
106
  msgid "There are no categories in the database - something has gone wrong!"
107
  msgstr ""
108
 
109
- #: my-calendar-event-manager.php:11 my-calendar-settings.php:249
110
  msgid ""
111
  "My Calendar has identified that you have the Calendar plugin by Kieran "
112
  "O'Shea installed. You can import those events and categories into the My "
113
  "Calendar database. Would you like to import these events?"
114
  msgstr ""
115
 
116
- #: my-calendar-event-manager.php:17 my-calendar-settings.php:255
117
  msgid "Import from Calendar"
118
  msgstr ""
119
 
120
- #: my-calendar-event-manager.php:22
121
  msgid ""
122
  "Although it is possible that this import could fail to import your events "
123
  "correctly, it should not have any impact on your existing Calendar database. "
@@ -125,388 +126,480 @@ msgid ""
125
  "\">please contact me</a>!"
126
  msgstr ""
127
 
128
- #: my-calendar-event-manager.php:48
129
  msgid "Delete Event"
130
  msgstr ""
131
 
132
- #: my-calendar-event-manager.php:48
133
  msgid "Are you sure you want to delete this event?"
134
  msgstr ""
135
 
136
- #: my-calendar-event-manager.php:61
137
  msgid "You do not have permission to delete that event."
138
  msgstr ""
139
 
140
- #: my-calendar-event-manager.php:85 my-calendar-event-manager.php:105
141
- #: my-calendar-event-manager.php:129 my-calendar-event-manager.php:144
142
- #: my-calendar-event-manager.php:630 my-calendar-event-manager.php:635
143
- #: my-calendar-event-manager.php:640 my-calendar-event-manager.php:652
144
- #: my-calendar-event-manager.php:662 my-calendar-event-manager.php:670
145
- #: my-calendar-event-manager.php:679 my-calendar-event-manager.php:687
 
 
 
 
 
 
 
 
146
  msgid "Error"
147
  msgstr ""
148
 
149
- #: my-calendar-event-manager.php:85
150
- msgid "I'm sorry! I couldn'd add that event to the database."
151
  msgstr ""
152
 
153
- #: my-calendar-event-manager.php:89
154
  msgid "Event added. It will now show in your calendar."
155
  msgstr ""
156
 
157
- #: my-calendar-event-manager.php:105
158
  msgid "Your event was not updated."
159
  msgstr ""
160
 
161
- #: my-calendar-event-manager.php:109
162
  msgid "Nothing was changed in that update."
163
  msgstr ""
164
 
165
- #: my-calendar-event-manager.php:113
166
  msgid "Event updated successfully"
167
  msgstr ""
168
 
169
- #: my-calendar-event-manager.php:119
170
  msgid "You do not have sufficient permissions to edit that event."
171
  msgstr ""
172
 
173
- #: my-calendar-event-manager.php:129
174
  msgid "You can't delete an event if you haven't submitted an event id"
175
  msgstr ""
176
 
177
- #: my-calendar-event-manager.php:140
178
  msgid "Event deleted successfully"
179
  msgstr ""
180
 
181
- #: my-calendar-event-manager.php:144
182
  msgid ""
183
  "Despite issuing a request to delete, the event still remains in the "
184
  "database. Please investigate."
185
  msgstr ""
186
 
187
- #: my-calendar-event-manager.php:163 my-calendar-event-manager.php:236
188
  msgid "Edit Event"
189
  msgstr ""
190
 
191
- #: my-calendar-event-manager.php:167
192
  msgid "You must provide an event id in order to edit it"
193
  msgstr ""
194
 
195
- #: my-calendar-event-manager.php:173
 
 
 
 
196
  msgid "Add Event"
197
  msgstr ""
198
 
199
- #: my-calendar-event-manager.php:178
200
  msgid "Manage Events"
201
  msgstr ""
202
 
203
- #: my-calendar-event-manager.php:212
204
  msgid "Sorry! That's an invalid event key."
205
  msgstr ""
206
 
207
- #: my-calendar-event-manager.php:217
208
  msgid "Sorry! We couldn't find an event with that ID."
209
  msgstr ""
210
 
211
- #: my-calendar-event-manager.php:236
212
  msgid "Add an Event"
213
  msgstr ""
214
 
215
- #: my-calendar-event-manager.php:245
 
 
 
 
216
  msgid "Enter your Event Information"
217
  msgstr ""
218
 
219
- #: my-calendar-event-manager.php:247
220
  msgid "Event Title"
221
  msgstr ""
222
 
223
- #: my-calendar-event-manager.php:250
 
 
 
 
 
 
 
 
 
 
 
 
224
  msgid ""
225
  "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
226
  "allowed)"
227
  msgstr ""
228
 
229
- #: my-calendar-event-manager.php:253
 
 
 
 
 
 
230
  msgid "Event Category"
231
  msgstr ""
232
 
233
- #: my-calendar-event-manager.php:272
234
  msgid "Event Link (Optional)"
235
  msgstr ""
236
 
237
- #: my-calendar-event-manager.php:272
238
  msgid "This link will expire when the event passes."
239
  msgstr ""
240
 
241
- #: my-calendar-event-manager.php:275
242
  msgid "Start Date (YYYY-MM-DD)"
243
  msgstr ""
244
 
245
- #: my-calendar-event-manager.php:278
246
  msgid "End Date (YYYY-MM-DD) (Optional)"
247
  msgstr ""
248
 
249
- #: my-calendar-event-manager.php:281
250
  msgid "Time (hh:mm)"
251
  msgstr ""
252
 
253
- #: my-calendar-event-manager.php:293
254
  msgid ""
255
  "Optional, set blank if your event is an all-day event or does not happen at "
256
  "a specific time."
257
  msgstr ""
258
 
259
- #: my-calendar-event-manager.php:293
260
  msgid "Current time difference from GMT is "
261
  msgstr ""
262
 
263
- #: my-calendar-event-manager.php:293
264
  msgid " hour(s)"
265
  msgstr ""
266
 
267
- #: my-calendar-event-manager.php:296
268
  msgid "End Time (hh:mm)"
269
  msgstr ""
270
 
271
- #: my-calendar-event-manager.php:307
272
  msgid ""
273
  "Optional. End times will not be displayed on events where this is not set."
274
  msgstr ""
275
 
276
- #: my-calendar-event-manager.php:311
277
  msgid "Recurring Events"
278
  msgstr ""
279
 
280
- #: my-calendar-event-manager.php:332
281
  msgid "Repeats for"
282
  msgstr ""
283
 
284
- #: my-calendar-event-manager.php:333
285
  msgid "Units"
286
  msgstr ""
287
 
288
- #: my-calendar-event-manager.php:334
289
  msgid "Does not recur"
290
  msgstr ""
291
 
292
- #: my-calendar-event-manager.php:335 my-calendar-event-manager.php:503
293
  msgid "Daily"
294
  msgstr ""
295
 
296
- #: my-calendar-event-manager.php:336 my-calendar-event-manager.php:504
297
  msgid "Weekly"
298
  msgstr ""
299
 
300
- #: my-calendar-event-manager.php:337
301
  msgid "Bi-weekly"
302
  msgstr ""
303
 
304
- #: my-calendar-event-manager.php:338 my-calendar-event-manager.php:506
305
- msgid "Monthly"
 
 
 
 
306
  msgstr ""
307
 
308
- #: my-calendar-event-manager.php:339
309
  msgid "Annually"
310
  msgstr ""
311
 
312
- #: my-calendar-event-manager.php:341
313
  msgid ""
314
- "Entering 0 means forever, if a unit is selected. If the recurrance unit is "
315
  "left at \"Does not recur,\" the event will not reoccur."
316
  msgstr ""
317
 
318
- #: my-calendar-event-manager.php:346 my-calendar-locations.php:83
319
- msgid "Event Location"
320
  msgstr ""
321
 
322
- #: my-calendar-event-manager.php:348 my-calendar-locations.php:85
 
 
 
 
 
 
 
 
 
 
 
 
323
  msgid ""
324
- "All location fields are optional: <em>insufficient information may result in "
325
- "an inaccurate map</em>."
 
 
 
326
  msgstr ""
327
 
328
- #: my-calendar-event-manager.php:354
329
  msgid "Choose a preset location:"
330
  msgstr ""
331
 
332
- #: my-calendar-event-manager.php:368
333
  msgid "Add recurring locations for later use."
334
  msgstr ""
335
 
336
- #: my-calendar-event-manager.php:373 my-calendar-locations.php:88
 
 
 
 
 
 
337
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
338
  msgstr ""
339
 
340
- #: my-calendar-event-manager.php:376 my-calendar-locations.php:91
341
  msgid "Street Address"
342
  msgstr ""
343
 
344
- #: my-calendar-event-manager.php:379 my-calendar-locations.php:94
345
  msgid "Street Address (2)"
346
  msgstr ""
347
 
348
- #: my-calendar-event-manager.php:382 my-calendar-locations.php:97
349
  msgid "City"
350
  msgstr ""
351
 
352
- #: my-calendar-event-manager.php:382 my-calendar-locations.php:97
353
  msgid "State/Province"
354
  msgstr ""
355
 
356
- #: my-calendar-event-manager.php:382 my-calendar-locations.php:97
357
  msgid "Postal Code"
358
  msgstr ""
359
 
360
- #: my-calendar-event-manager.php:385 my-calendar-locations.php:100
361
  msgid "Country"
362
  msgstr ""
363
 
364
- #: my-calendar-event-manager.php:388 my-calendar-locations.php:103
365
  msgid "Initial Zoom"
366
  msgstr ""
367
 
368
- #: my-calendar-event-manager.php:390 my-calendar-locations.php:105
369
  msgid "Neighborhood"
370
  msgstr ""
371
 
372
- #: my-calendar-event-manager.php:391 my-calendar-locations.php:106
373
  msgid "Small City"
374
  msgstr ""
375
 
376
- #: my-calendar-event-manager.php:392 my-calendar-locations.php:107
377
  msgid "Large City"
378
  msgstr ""
379
 
380
- #: my-calendar-event-manager.php:393 my-calendar-locations.php:108
381
  msgid "Greater Metro Area"
382
  msgstr ""
383
 
384
- #: my-calendar-event-manager.php:394 my-calendar-locations.php:109
385
  msgid "State"
386
  msgstr ""
387
 
388
- #: my-calendar-event-manager.php:395 my-calendar-locations.php:110
389
  msgid "Region"
390
  msgstr ""
391
 
392
- #: my-calendar-event-manager.php:399 my-calendar-locations.php:114
393
  msgid "GPS Coordinates (optional)"
394
  msgstr ""
395
 
396
- #: my-calendar-event-manager.php:401 my-calendar-locations.php:116
397
  msgid ""
398
  "If you supply GPS coordinates for your location, they will be used in place "
399
- "of any other address information to pinpoint your location."
400
  msgstr ""
401
 
402
- #: my-calendar-event-manager.php:404 my-calendar-locations.php:119
403
  msgid "Longitude"
404
  msgstr ""
405
 
406
- #: my-calendar-event-manager.php:404 my-calendar-locations.php:119
407
  msgid "Latitude"
408
  msgstr ""
409
 
410
- #: my-calendar-event-manager.php:410
411
  msgid "Save Event"
412
  msgstr ""
413
 
414
- #: my-calendar-event-manager.php:470 my-calendar-widgets.php:37
415
  #: my-calendar-widgets.php:122
416
  msgid "Title"
417
  msgstr ""
418
 
419
- #: my-calendar-event-manager.php:471
420
  msgid "Link"
421
  msgstr ""
422
 
423
- #: my-calendar-event-manager.php:472 my-calendar-locations.php:150
424
  msgid "Location"
425
  msgstr ""
426
 
427
- #: my-calendar-event-manager.php:473
428
  msgid "Description"
429
  msgstr ""
430
 
431
- #: my-calendar-event-manager.php:474
432
  msgid "Start Date"
433
  msgstr ""
434
 
435
- #: my-calendar-event-manager.php:475
436
  msgid "Recurs"
437
  msgstr ""
438
 
439
- #: my-calendar-event-manager.php:476 my-calendar-settings.php:177
 
440
  msgid "Author"
441
  msgstr ""
442
 
443
- #: my-calendar-event-manager.php:477
444
  msgid "Category"
445
  msgstr ""
446
 
447
- #: my-calendar-event-manager.php:478
448
  msgid "Edit / Delete"
449
  msgstr ""
450
 
451
- #: my-calendar-event-manager.php:502
452
  msgid "Never"
453
  msgstr ""
454
 
455
- #: my-calendar-event-manager.php:505
456
  msgid "Bi-Weekly"
457
  msgstr ""
458
 
459
- #: my-calendar-event-manager.php:507
 
 
 
 
 
 
 
 
460
  msgid "Yearly"
461
  msgstr ""
462
 
463
- #: my-calendar-event-manager.php:511
464
  msgid "Forever"
465
  msgstr ""
466
 
467
- #: my-calendar-event-manager.php:512
468
  msgid "Times"
469
  msgstr ""
470
 
471
- #: my-calendar-event-manager.php:538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  msgid "There are no events in the database!"
473
  msgstr ""
474
 
475
- #: my-calendar-event-manager.php:630
476
  msgid ""
477
  "Your event end date must be either after or the same as your event begin date"
478
  msgstr ""
479
 
480
- #: my-calendar-event-manager.php:635
481
  msgid ""
482
  "Your date formatting is correct but one or more of your dates is invalid. "
483
  "Check for number of days in month and leap year related errors."
484
  msgstr ""
485
 
486
- #: my-calendar-event-manager.php:640
487
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
488
  msgstr ""
489
 
490
- #: my-calendar-event-manager.php:652
491
  msgid "The time field must either be blank or be entered in the format hh:mm"
492
  msgstr ""
493
 
494
- #: my-calendar-event-manager.php:662
495
  msgid ""
496
  "The end time field must either be blank or be entered in the format hh:mm"
497
  msgstr ""
498
 
499
- #: my-calendar-event-manager.php:670
500
  msgid ""
501
  "The URL entered must either be prefixed with http:// or be completely blank"
502
  msgstr ""
503
 
504
- #: my-calendar-event-manager.php:679
505
  msgid "The event title must be between 1 and 255 characters in length."
506
  msgstr ""
507
 
508
- #: my-calendar-event-manager.php:687
509
- msgid "The repetition value must be 0 unless a type of recurrance is selected."
510
  msgstr ""
511
 
512
  #: my-calendar-help.php:6
@@ -521,13 +614,13 @@ msgstr ""
521
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
522
  msgstr ""
523
 
524
- #: my-calendar-help.php:17
525
  msgid ""
526
  "This basic shortcode will show the calendar on a post or page including all "
527
  "categories and the category key, in a traditional month-by-month format."
528
  msgstr ""
529
 
530
- #: my-calendar-help.php:20
531
  msgid ""
532
  "The shortcode supports three attributes, <code>category</code>, "
533
  "<code>format</code> and <code>showkey</code>. There two alternate option for "
@@ -544,7 +637,7 @@ msgid ""
544
  "category output."
545
  msgstr ""
546
 
547
- #: my-calendar-help.php:23
548
  msgid ""
549
  "This shortcode displays the output of the Upcoming Events widget. Without "
550
  "attributes, it will display using the settings in your widget; the "
@@ -555,7 +648,7 @@ msgid ""
555
  "shortcode. Templates work using the template codes listed below."
556
  msgstr ""
557
 
558
- #: my-calendar-help.php:26
559
  msgid ""
560
  "Predictably enough, this shortcode displays the output of the Today's Events "
561
  "widget, with two configurable attributes: category and template."
@@ -684,6 +777,22 @@ msgid ""
684
  "information is available. If not, will be empty."
685
  msgstr ""
686
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
687
  #: my-calendar-locations.php:22
688
  msgid "Location added successfully"
689
  msgstr ""
@@ -700,43 +809,49 @@ msgstr ""
700
  msgid "Location could not be deleted"
701
  msgstr ""
702
 
703
- #: my-calendar-locations.php:44
704
  msgid "Location could not be edited."
705
  msgstr ""
706
 
707
- #: my-calendar-locations.php:46
708
  msgid "Location was not changed."
709
  msgstr ""
710
 
711
- #: my-calendar-locations.php:48
712
  msgid "Location edited successfully"
713
  msgstr ""
714
 
715
- #: my-calendar-locations.php:61
716
  msgid "Add New Location"
717
  msgstr ""
718
 
719
- #: my-calendar-locations.php:63
720
  msgid "Edit Location"
721
  msgstr ""
722
 
723
- #: my-calendar-locations.php:68
724
  msgid "Location Editor"
725
  msgstr ""
726
 
727
- #: my-calendar-locations.php:123
 
 
 
 
 
 
728
  msgid "Add Location"
729
  msgstr ""
730
 
731
- #: my-calendar-locations.php:137 my-calendar.php:176
732
  msgid "Manage Locations"
733
  msgstr ""
734
 
735
- #: my-calendar-locations.php:172
736
  msgid "There are no locations in the database yet!"
737
  msgstr ""
738
 
739
- #: my-calendar-locations.php:176
740
  msgid ""
741
  "Please note: editing or deleting locations stored for re-use will have no "
742
  "effect on any event previously scheduled at that location. The location "
@@ -760,143 +875,267 @@ msgstr ""
760
  msgid "Events not imported."
761
  msgstr ""
762
 
763
- #: my-calendar-settings.php:135
764
  msgid "Settings saved"
765
  msgstr ""
766
 
767
- #: my-calendar-settings.php:161
768
  msgid "My Calendar Options"
769
  msgstr ""
770
 
771
- #: my-calendar-settings.php:168
772
  msgid "Calendar Settings"
773
  msgstr ""
774
 
775
- #: my-calendar-settings.php:172
776
  msgid "Calendar Options: Management"
777
  msgstr ""
778
 
779
- #: my-calendar-settings.php:174
780
- msgid "Choose the lowest user group that may manage events"
781
  msgstr ""
782
 
783
- #: my-calendar-settings.php:175
784
  msgid "Subscriber"
785
  msgstr ""
786
 
787
- #: my-calendar-settings.php:176
788
  msgid "Contributor"
789
  msgstr ""
790
 
791
- #: my-calendar-settings.php:178
792
  msgid "Editor"
793
  msgstr ""
794
 
795
- #: my-calendar-settings.php:179
796
  msgid "Administrator"
797
  msgstr ""
798
 
799
- #: my-calendar-settings.php:184
800
- msgid "Calendar Options: Output"
801
  msgstr ""
802
 
803
- #: my-calendar-settings.php:186
804
- msgid "Do you want to display the author name on events?"
805
  msgstr ""
806
 
807
- #: my-calendar-settings.php:187 my-calendar-settings.php:194
808
- msgid "Yes"
809
  msgstr ""
810
 
811
- #: my-calendar-settings.php:188 my-calendar-settings.php:195
812
- msgid "No"
813
- msgstr ""
814
-
815
- #: my-calendar-settings.php:193
816
- msgid "Display a jumpbox for changing month and year quickly?"
817
  msgstr ""
818
 
819
- #: my-calendar-settings.php:199
820
- msgid "In list mode, show how many months of events at a time:"
821
  msgstr ""
822
 
823
- #: my-calendar-settings.php:202
824
- msgid "Date format in list mode"
825
  msgstr ""
826
 
827
- #: my-calendar-settings.php:203
828
- msgid ""
829
- "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
830
- "<code>date()</code> function</a>. Save option to update sample output."
831
  msgstr ""
832
 
833
- #: my-calendar-settings.php:206
834
- msgid "Show Heading for Calendar"
835
  msgstr ""
836
 
837
- #: my-calendar-settings.php:209
838
- msgid "Label for events without a specific time"
839
  msgstr ""
840
 
841
- #: my-calendar-settings.php:212
842
- msgid "Previous events link text"
843
  msgstr ""
844
 
845
- #: my-calendar-settings.php:212
846
- msgid "Previous Events"
847
  msgstr ""
848
 
849
- #: my-calendar-settings.php:215
850
- msgid "Next events link text"
851
  msgstr ""
852
 
853
- #: my-calendar-settings.php:215
854
- msgid "Next Events"
855
  msgstr ""
856
 
857
- #: my-calendar-settings.php:218
858
  msgid "Additional caption text"
859
  msgstr ""
860
 
861
- #: my-calendar-settings.php:218
862
  msgid ""
863
  "The calendar caption is the text containing the displayed month and year in "
864
  "either list or calendar format. This text will be displayed following that "
865
  "existing text."
866
  msgstr ""
867
 
868
- #: my-calendar-settings.php:221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
869
  msgid "Hide category icons in output"
870
  msgstr ""
871
 
872
- #: my-calendar-settings.php:224
873
  msgid ""
874
  "Show Link to Google Map (when sufficient address information is available.)"
875
  msgstr ""
876
 
877
- #: my-calendar-settings.php:227
878
  msgid "Show Event Address in Details"
879
  msgstr ""
880
 
881
- #: my-calendar-settings.php:230
 
 
 
 
 
 
 
 
882
  msgid ""
883
  "Links associated with events will automatically expire after the event has "
884
  "passed."
885
  msgstr ""
886
 
887
- #: my-calendar-settings.php:233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  msgid "Default usage of category colors."
889
  msgstr ""
890
 
891
- #: my-calendar-settings.php:234
892
  msgid "Apply category colors to event titles as a font color."
893
  msgstr ""
894
 
895
- #: my-calendar-settings.php:235
896
  msgid "Apply category colors to event titles as a background color."
897
  msgstr ""
898
 
899
- #: my-calendar-settings.php:239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
900
  msgid "Save Settings"
901
  msgstr ""
902
 
@@ -913,7 +1152,8 @@ msgid "Calendar Style Settings"
913
  msgstr ""
914
 
915
  #: my-calendar-styles.php:78
916
- msgid "Show CSS & JavaScript only on these pages (comma separated page IDs)"
 
917
  msgstr ""
918
 
919
  #: my-calendar-styles.php:81
@@ -996,7 +1236,7 @@ msgstr ""
996
  #: my-calendar-upgrade-db.php:33
997
  msgid ""
998
  "You haven't entered any events, so My Calendar can't tell whether your "
999
- "database needs to be updated. If you can't add events, upgrade your database!"
1000
  msgstr ""
1001
 
1002
  #: my-calendar-upgrade-db.php:44
@@ -1057,193 +1297,211 @@ msgstr ""
1057
  msgid "Show only this category:"
1058
  msgstr ""
1059
 
1060
- #: my-calendar-widgets.php:272
1061
  msgid "There are no events currently scheduled."
1062
  msgstr ""
1063
 
1064
- #: my-calendar.php:56 my-calendar.php:177
 
 
 
 
 
 
 
 
1065
  msgid "Settings"
1066
  msgstr ""
1067
 
1068
- #: my-calendar.php:57 my-calendar.php:179
1069
  msgid "Help"
1070
  msgstr ""
1071
 
1072
  #: my-calendar.php:81
 
 
 
 
1073
  msgid "Get Support"
1074
  msgstr ""
1075
 
1076
- #: my-calendar.php:82 my-calendar.php:179
1077
  msgid "My Calendar Help"
1078
  msgstr ""
1079
 
1080
- #: my-calendar.php:83
1081
  msgid "Make a Donation"
1082
  msgstr ""
1083
 
1084
- #. #-#-#-#-# plugin.pot (My Calendar 1.4.5) #-#-#-#-#
1085
  #. Plugin Name of the plugin/theme
1086
- #: my-calendar.php:168
1087
  msgid "My Calendar"
1088
  msgstr ""
1089
 
1090
- #: my-calendar.php:171
1091
  msgid "Add/Edit Events"
1092
  msgstr ""
1093
 
1094
- #: my-calendar.php:178
1095
  msgid "Style Editor"
1096
  msgstr ""
1097
 
1098
- #: my-calendar.php:661
1099
  msgid "Event Details"
1100
  msgstr ""
1101
 
1102
- #: my-calendar.php:670
1103
  msgid "Close"
1104
  msgstr ""
1105
 
1106
- #: my-calendar.php:680
1107
  msgid "Not Applicable"
1108
  msgstr ""
1109
 
1110
- #: my-calendar.php:692
1111
  msgid "Posted by"
1112
  msgstr ""
1113
 
1114
- #: my-calendar.php:1218
 
 
 
 
 
 
1115
  msgid "Month"
1116
  msgstr ""
1117
 
1118
- #: my-calendar.php:1219 my-calendar.php:1305
1119
  msgid "January"
1120
  msgstr ""
1121
 
1122
- #: my-calendar.php:1220 my-calendar.php:1305
1123
  msgid "February"
1124
  msgstr ""
1125
 
1126
- #: my-calendar.php:1221 my-calendar.php:1305
1127
  msgid "March"
1128
  msgstr ""
1129
 
1130
- #: my-calendar.php:1222 my-calendar.php:1305
1131
  msgid "April"
1132
  msgstr ""
1133
 
1134
- #: my-calendar.php:1223 my-calendar.php:1305
1135
  msgid "May"
1136
  msgstr ""
1137
 
1138
- #: my-calendar.php:1224 my-calendar.php:1305
1139
  msgid "June"
1140
  msgstr ""
1141
 
1142
- #: my-calendar.php:1225 my-calendar.php:1305
1143
  msgid "July"
1144
  msgstr ""
1145
 
1146
- #: my-calendar.php:1226 my-calendar.php:1305
1147
  msgid "August"
1148
  msgstr ""
1149
 
1150
- #: my-calendar.php:1227 my-calendar.php:1305
1151
  msgid "September"
1152
  msgstr ""
1153
 
1154
- #: my-calendar.php:1228 my-calendar.php:1305
1155
  msgid "October"
1156
  msgstr ""
1157
 
1158
- #: my-calendar.php:1229 my-calendar.php:1305
1159
  msgid "November"
1160
  msgstr ""
1161
 
1162
- #: my-calendar.php:1230 my-calendar.php:1305
1163
  msgid "December"
1164
  msgstr ""
1165
 
1166
- #: my-calendar.php:1232
1167
  msgid "Year"
1168
  msgstr ""
1169
 
1170
- #: my-calendar.php:1257
1171
  msgid "Go"
1172
  msgstr ""
1173
 
1174
- #: my-calendar.php:1279
1175
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1176
  msgstr ""
1177
 
1178
- #: my-calendar.php:1280
1179
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1180
  msgstr ""
1181
 
1182
- #: my-calendar.php:1281
1183
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1184
  msgstr ""
1185
 
1186
- #: my-calendar.php:1282
1187
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1188
  msgstr ""
1189
 
1190
- #: my-calendar.php:1283
1191
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1192
  msgstr ""
1193
 
1194
- #: my-calendar.php:1284
1195
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1196
  msgstr ""
1197
 
1198
- #: my-calendar.php:1285
1199
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1200
  msgstr ""
1201
 
1202
- #: my-calendar.php:1290
1203
  msgid "<abbr title=\"Sunday\">S</abbr>"
1204
  msgstr ""
1205
 
1206
- #: my-calendar.php:1291
1207
  msgid "<abbr title=\"Monday\">M</abbr>"
1208
  msgstr ""
1209
 
1210
- #: my-calendar.php:1292
1211
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1212
  msgstr ""
1213
 
1214
- #: my-calendar.php:1293
1215
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1216
  msgstr ""
1217
 
1218
- #: my-calendar.php:1294
1219
  msgid "<abbr title=\"Thursday\">T</abbr>"
1220
  msgstr ""
1221
 
1222
- #: my-calendar.php:1295
1223
  msgid "<abbr title=\"Friday\">F</abbr>"
1224
  msgstr ""
1225
 
1226
- #: my-calendar.php:1296
1227
  msgid "<abbr title=\"Saturday\">S</abbr>"
1228
  msgstr ""
1229
 
1230
- #: my-calendar.php:1342
1231
  msgid "and"
1232
  msgstr ""
1233
 
1234
- #: my-calendar.php:1371 my-calendar.php:1375
1235
  msgid "Calendar"
1236
  msgstr ""
1237
 
1238
- #: my-calendar.php:1378
1239
  msgid "Events in"
1240
  msgstr ""
1241
 
1242
- #: my-calendar.php:1473
1243
  msgid "There are no events scheduled during this period."
1244
  msgstr ""
1245
 
1246
- #: my-calendar.php:1483
1247
  msgid "Category Key"
1248
  msgstr ""
1249
 
1
+ # Translation of the WordPress plugin My Calendar 1.5.0 by Joseph C Dolson.
2
  # Copyright (C) 2010 Joseph C Dolson
3
  # This file is distributed under the same license as the My Calendar package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: My Calendar 1.5.0\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
11
+ "POT-Creation-Date: 2010-10-05 19:19+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
40
  msgid "Category edited successfully"
41
  msgstr ""
42
 
43
+ #: my-calendar-categories.php:88 my-calendar-categories.php:112
44
+ #: my-calendar-categories.php:130
45
  msgid "Add Category"
46
  msgstr ""
47
 
65
  msgid "Category Icon"
66
  msgstr ""
67
 
68
+ #: my-calendar-categories.php:130 my-calendar-locations.php:121
69
  msgid "Save Changes"
70
  msgstr ""
71
 
72
+ #: my-calendar-categories.php:143 my-calendar.php:179
73
  msgid "Manage Categories"
74
  msgstr ""
75
 
76
+ #: my-calendar-categories.php:155 my-calendar-event-manager.php:643
77
+ #: my-calendar-locations.php:147
78
  msgid "ID"
79
  msgstr ""
80
 
83
  msgstr ""
84
 
85
  #: my-calendar-categories.php:159 my-calendar-categories.php:173
86
+ #: my-calendar-event-manager.php:704 my-calendar-locations.php:149
87
+ #: my-calendar-locations.php:161
88
  msgid "Edit"
89
  msgstr ""
90
 
91
  #: my-calendar-categories.php:160 my-calendar-categories.php:179
92
+ #: my-calendar-event-manager.php:73 my-calendar-event-manager.php:704
93
+ #: my-calendar-locations.php:150 my-calendar-locations.php:162
94
  msgid "Delete"
95
  msgstr ""
96
 
97
+ #: my-calendar-categories.php:176 my-calendar-event-manager.php:685
98
+ #: my-calendar-settings.php:228 my-calendar.php:652
99
  msgid "N/A"
100
  msgstr ""
101
 
102
+ #: my-calendar-categories.php:179 my-calendar-locations.php:162
103
  msgid "Are you sure you want to delete this category?"
104
  msgstr ""
105
 
107
  msgid "There are no categories in the database - something has gone wrong!"
108
  msgstr ""
109
 
110
+ #: my-calendar-event-manager.php:27 my-calendar-settings.php:351
111
  msgid ""
112
  "My Calendar has identified that you have the Calendar plugin by Kieran "
113
  "O'Shea installed. You can import those events and categories into the My "
114
  "Calendar database. Would you like to import these events?"
115
  msgstr ""
116
 
117
+ #: my-calendar-event-manager.php:33 my-calendar-settings.php:357
118
  msgid "Import from Calendar"
119
  msgstr ""
120
 
121
+ #: my-calendar-event-manager.php:38
122
  msgid ""
123
  "Although it is possible that this import could fail to import your events "
124
  "correctly, it should not have any impact on your existing Calendar database. "
126
  "\">please contact me</a>!"
127
  msgstr ""
128
 
129
+ #: my-calendar-event-manager.php:68
130
  msgid "Delete Event"
131
  msgstr ""
132
 
133
+ #: my-calendar-event-manager.php:68
134
  msgid "Are you sure you want to delete this event?"
135
  msgstr ""
136
 
137
+ #: my-calendar-event-manager.php:81
138
  msgid "You do not have permission to delete that event."
139
  msgstr ""
140
 
141
+ #: my-calendar-event-manager.php:96 my-calendar-event-manager.php:209
142
+ msgid "You do not have permission to approve that event."
143
+ msgstr ""
144
+
145
+ #: my-calendar-event-manager.php:110 my-calendar-event-manager.php:223
146
+ msgid "You do not have permission to reject that event."
147
+ msgstr ""
148
+
149
+ #: my-calendar-event-manager.php:133 my-calendar-event-manager.php:154
150
+ #: my-calendar-event-manager.php:178 my-calendar-event-manager.php:193
151
+ #: my-calendar-event-manager.php:833 my-calendar-event-manager.php:838
152
+ #: my-calendar-event-manager.php:843 my-calendar-event-manager.php:855
153
+ #: my-calendar-event-manager.php:865 my-calendar-event-manager.php:873
154
+ #: my-calendar-event-manager.php:882 my-calendar-event-manager.php:890
155
  msgid "Error"
156
  msgstr ""
157
 
158
+ #: my-calendar-event-manager.php:133
159
+ msgid "I'm sorry! I couldn't add that event to the database."
160
  msgstr ""
161
 
162
+ #: my-calendar-event-manager.php:135
163
  msgid "Event added. It will now show in your calendar."
164
  msgstr ""
165
 
166
+ #: my-calendar-event-manager.php:154
167
  msgid "Your event was not updated."
168
  msgstr ""
169
 
170
+ #: my-calendar-event-manager.php:158
171
  msgid "Nothing was changed in that update."
172
  msgstr ""
173
 
174
+ #: my-calendar-event-manager.php:162
175
  msgid "Event updated successfully"
176
  msgstr ""
177
 
178
+ #: my-calendar-event-manager.php:168
179
  msgid "You do not have sufficient permissions to edit that event."
180
  msgstr ""
181
 
182
+ #: my-calendar-event-manager.php:178
183
  msgid "You can't delete an event if you haven't submitted an event id"
184
  msgstr ""
185
 
186
+ #: my-calendar-event-manager.php:189
187
  msgid "Event deleted successfully"
188
  msgstr ""
189
 
190
+ #: my-calendar-event-manager.php:193
191
  msgid ""
192
  "Despite issuing a request to delete, the event still remains in the "
193
  "database. Please investigate."
194
  msgstr ""
195
 
196
+ #: my-calendar-event-manager.php:240 my-calendar-event-manager.php:343
197
  msgid "Edit Event"
198
  msgstr ""
199
 
200
+ #: my-calendar-event-manager.php:244 my-calendar-event-manager.php:253
201
  msgid "You must provide an event id in order to edit it"
202
  msgstr ""
203
 
204
+ #: my-calendar-event-manager.php:249 my-calendar-event-manager.php:343
205
+ msgid "Copy Event"
206
+ msgstr ""
207
+
208
+ #: my-calendar-event-manager.php:259
209
  msgid "Add Event"
210
  msgstr ""
211
 
212
+ #: my-calendar-event-manager.php:264
213
  msgid "Manage Events"
214
  msgstr ""
215
 
216
+ #: my-calendar-event-manager.php:315
217
  msgid "Sorry! That's an invalid event key."
218
  msgstr ""
219
 
220
+ #: my-calendar-event-manager.php:320
221
  msgid "Sorry! We couldn't find an event with that ID."
222
  msgstr ""
223
 
224
+ #: my-calendar-event-manager.php:343
225
  msgid "Add an Event"
226
  msgstr ""
227
 
228
+ #: my-calendar-event-manager.php:347
229
+ msgid "This event must be approved in order for it to appear on the calendar."
230
+ msgstr ""
231
+
232
+ #: my-calendar-event-manager.php:362
233
  msgid "Enter your Event Information"
234
  msgstr ""
235
 
236
+ #: my-calendar-event-manager.php:364
237
  msgid "Event Title"
238
  msgstr ""
239
 
240
+ #: my-calendar-event-manager.php:367
241
+ msgid "Publish"
242
+ msgstr ""
243
+
244
+ #: my-calendar-event-manager.php:367
245
+ msgid "You must approve this event to promote it to the calendar."
246
+ msgstr ""
247
+
248
+ #: my-calendar-event-manager.php:369
249
+ msgid "An administrator must approve your new event."
250
+ msgstr ""
251
+
252
+ #: my-calendar-event-manager.php:377
253
  msgid ""
254
  "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
255
  "allowed)"
256
  msgstr ""
257
 
258
+ #: my-calendar-event-manager.php:382
259
+ msgid ""
260
+ "Event Short Description (<abbr title=\"hypertext markup language\">HTML</"
261
+ "abbr> allowed)"
262
+ msgstr ""
263
+
264
+ #: my-calendar-event-manager.php:387
265
  msgid "Event Category"
266
  msgstr ""
267
 
268
+ #: my-calendar-event-manager.php:412
269
  msgid "Event Link (Optional)"
270
  msgstr ""
271
 
272
+ #: my-calendar-event-manager.php:412
273
  msgid "This link will expire when the event passes."
274
  msgstr ""
275
 
276
+ #: my-calendar-event-manager.php:416
277
  msgid "Start Date (YYYY-MM-DD)"
278
  msgstr ""
279
 
280
+ #: my-calendar-event-manager.php:419
281
  msgid "End Date (YYYY-MM-DD) (Optional)"
282
  msgstr ""
283
 
284
+ #: my-calendar-event-manager.php:422
285
  msgid "Time (hh:mm)"
286
  msgstr ""
287
 
288
+ #: my-calendar-event-manager.php:434
289
  msgid ""
290
  "Optional, set blank if your event is an all-day event or does not happen at "
291
  "a specific time."
292
  msgstr ""
293
 
294
+ #: my-calendar-event-manager.php:434
295
  msgid "Current time difference from GMT is "
296
  msgstr ""
297
 
298
+ #: my-calendar-event-manager.php:434
299
  msgid " hour(s)"
300
  msgstr ""
301
 
302
+ #: my-calendar-event-manager.php:437
303
  msgid "End Time (hh:mm)"
304
  msgstr ""
305
 
306
+ #: my-calendar-event-manager.php:447
307
  msgid ""
308
  "Optional. End times will not be displayed on events where this is not set."
309
  msgstr ""
310
 
311
+ #: my-calendar-event-manager.php:452
312
  msgid "Recurring Events"
313
  msgstr ""
314
 
315
+ #: my-calendar-event-manager.php:455
316
  msgid "Repeats for"
317
  msgstr ""
318
 
319
+ #: my-calendar-event-manager.php:456
320
  msgid "Units"
321
  msgstr ""
322
 
323
+ #: my-calendar-event-manager.php:457
324
  msgid "Does not recur"
325
  msgstr ""
326
 
327
+ #: my-calendar-event-manager.php:458 my-calendar-event-manager.php:677
328
  msgid "Daily"
329
  msgstr ""
330
 
331
+ #: my-calendar-event-manager.php:459 my-calendar-event-manager.php:678
332
  msgid "Weekly"
333
  msgstr ""
334
 
335
+ #: my-calendar-event-manager.php:460
336
  msgid "Bi-weekly"
337
  msgstr ""
338
 
339
+ #: my-calendar-event-manager.php:461
340
+ msgid "Date of Month (e.g., the 24th of each month)"
341
+ msgstr ""
342
+
343
+ #: my-calendar-event-manager.php:462
344
+ msgid "Day of Month (e.g., the 3rd Monday of each month)"
345
  msgstr ""
346
 
347
+ #: my-calendar-event-manager.php:463
348
  msgid "Annually"
349
  msgstr ""
350
 
351
+ #: my-calendar-event-manager.php:465
352
  msgid ""
353
+ "Entering 0 means forever, if a unit is selected. If the recurrence unit is "
354
  "left at \"Does not recur,\" the event will not reoccur."
355
  msgstr ""
356
 
357
+ #: my-calendar-event-manager.php:476
358
+ msgid "Event Registration Status"
359
  msgstr ""
360
 
361
+ #: my-calendar-event-manager.php:478
362
+ msgid "Open"
363
+ msgstr ""
364
+
365
+ #: my-calendar-event-manager.php:479
366
+ msgid "Closed"
367
+ msgstr ""
368
+
369
+ #: my-calendar-event-manager.php:480
370
+ msgid "Does not apply"
371
+ msgstr ""
372
+
373
+ #: my-calendar-event-manager.php:483
374
  msgid ""
375
+ "If this event recurs, it can only be registered for as a complete series."
376
+ msgstr ""
377
+
378
+ #: my-calendar-event-manager.php:493 my-calendar-locations.php:81
379
+ msgid "Event Location"
380
  msgstr ""
381
 
382
+ #: my-calendar-event-manager.php:502
383
  msgid "Choose a preset location:"
384
  msgstr ""
385
 
386
+ #: my-calendar-event-manager.php:516
387
  msgid "Add recurring locations for later use."
388
  msgstr ""
389
 
390
+ #: my-calendar-event-manager.php:525 my-calendar-locations.php:83
391
+ msgid ""
392
+ "All location fields are optional: <em>insufficient information may result in "
393
+ "an inaccurate map</em>."
394
+ msgstr ""
395
+
396
+ #: my-calendar-event-manager.php:528 my-calendar-locations.php:86
397
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
398
  msgstr ""
399
 
400
+ #: my-calendar-event-manager.php:531 my-calendar-locations.php:89
401
  msgid "Street Address"
402
  msgstr ""
403
 
404
+ #: my-calendar-event-manager.php:534 my-calendar-locations.php:92
405
  msgid "Street Address (2)"
406
  msgstr ""
407
 
408
+ #: my-calendar-event-manager.php:537 my-calendar-locations.php:95
409
  msgid "City"
410
  msgstr ""
411
 
412
+ #: my-calendar-event-manager.php:537 my-calendar-locations.php:95
413
  msgid "State/Province"
414
  msgstr ""
415
 
416
+ #: my-calendar-event-manager.php:537 my-calendar-locations.php:95
417
  msgid "Postal Code"
418
  msgstr ""
419
 
420
+ #: my-calendar-event-manager.php:540 my-calendar-locations.php:98
421
  msgid "Country"
422
  msgstr ""
423
 
424
+ #: my-calendar-event-manager.php:543 my-calendar-locations.php:101
425
  msgid "Initial Zoom"
426
  msgstr ""
427
 
428
+ #: my-calendar-event-manager.php:545 my-calendar-locations.php:103
429
  msgid "Neighborhood"
430
  msgstr ""
431
 
432
+ #: my-calendar-event-manager.php:546 my-calendar-locations.php:104
433
  msgid "Small City"
434
  msgstr ""
435
 
436
+ #: my-calendar-event-manager.php:547 my-calendar-locations.php:105
437
  msgid "Large City"
438
  msgstr ""
439
 
440
+ #: my-calendar-event-manager.php:548 my-calendar-locations.php:106
441
  msgid "Greater Metro Area"
442
  msgstr ""
443
 
444
+ #: my-calendar-event-manager.php:549 my-calendar-locations.php:107
445
  msgid "State"
446
  msgstr ""
447
 
448
+ #: my-calendar-event-manager.php:550 my-calendar-locations.php:108
449
  msgid "Region"
450
  msgstr ""
451
 
452
+ #: my-calendar-event-manager.php:554 my-calendar-locations.php:112
453
  msgid "GPS Coordinates (optional)"
454
  msgstr ""
455
 
456
+ #: my-calendar-event-manager.php:556
457
  msgid ""
458
  "If you supply GPS coordinates for your location, they will be used in place "
459
+ "of any other address information to provide your map link."
460
  msgstr ""
461
 
462
+ #: my-calendar-event-manager.php:559 my-calendar-locations.php:117
463
  msgid "Longitude"
464
  msgstr ""
465
 
466
+ #: my-calendar-event-manager.php:559 my-calendar-locations.php:117
467
  msgid "Latitude"
468
  msgstr ""
469
 
470
+ #: my-calendar-event-manager.php:567
471
  msgid "Save Event"
472
  msgstr ""
473
 
474
+ #: my-calendar-event-manager.php:644 my-calendar-widgets.php:37
475
  #: my-calendar-widgets.php:122
476
  msgid "Title"
477
  msgstr ""
478
 
479
+ #: my-calendar-event-manager.php:645
480
  msgid "Link"
481
  msgstr ""
482
 
483
+ #: my-calendar-event-manager.php:646 my-calendar-locations.php:148
484
  msgid "Location"
485
  msgstr ""
486
 
487
+ #: my-calendar-event-manager.php:647
488
  msgid "Description"
489
  msgstr ""
490
 
491
+ #: my-calendar-event-manager.php:648
492
  msgid "Start Date"
493
  msgstr ""
494
 
495
+ #: my-calendar-event-manager.php:649
496
  msgid "Recurs"
497
  msgstr ""
498
 
499
+ #: my-calendar-event-manager.php:650 my-calendar-settings.php:204
500
+ #: my-calendar-settings.php:213
501
  msgid "Author"
502
  msgstr ""
503
 
504
+ #: my-calendar-event-manager.php:651
505
  msgid "Category"
506
  msgstr ""
507
 
508
+ #: my-calendar-event-manager.php:652
509
  msgid "Edit / Delete"
510
  msgstr ""
511
 
512
+ #: my-calendar-event-manager.php:676
513
  msgid "Never"
514
  msgstr ""
515
 
516
+ #: my-calendar-event-manager.php:679
517
  msgid "Bi-Weekly"
518
  msgstr ""
519
 
520
+ #: my-calendar-event-manager.php:680
521
+ msgid "Monthly (by date)"
522
+ msgstr ""
523
+
524
+ #: my-calendar-event-manager.php:681
525
+ msgid "Monthly (by day)"
526
+ msgstr ""
527
+
528
+ #: my-calendar-event-manager.php:682
529
  msgid "Yearly"
530
  msgstr ""
531
 
532
+ #: my-calendar-event-manager.php:686
533
  msgid "Forever"
534
  msgstr ""
535
 
536
+ #: my-calendar-event-manager.php:687
537
  msgid "Times"
538
  msgstr ""
539
 
540
+ #: my-calendar-event-manager.php:702
541
+ msgid "Copy"
542
+ msgstr ""
543
+
544
+ #: my-calendar-event-manager.php:705
545
+ msgid "Not editable."
546
+ msgstr ""
547
+
548
+ #: my-calendar-event-manager.php:711
549
+ msgid "Reject"
550
+ msgstr ""
551
+
552
+ #: my-calendar-event-manager.php:713
553
+ msgid "Approve"
554
+ msgstr ""
555
+
556
+ #: my-calendar-event-manager.php:718
557
+ msgid "Approved"
558
+ msgstr ""
559
+
560
+ #: my-calendar-event-manager.php:720
561
+ msgid "Rejected"
562
+ msgstr ""
563
+
564
+ #: my-calendar-event-manager.php:733
565
  msgid "There are no events in the database!"
566
  msgstr ""
567
 
568
+ #: my-calendar-event-manager.php:833
569
  msgid ""
570
  "Your event end date must be either after or the same as your event begin date"
571
  msgstr ""
572
 
573
+ #: my-calendar-event-manager.php:838
574
  msgid ""
575
  "Your date formatting is correct but one or more of your dates is invalid. "
576
  "Check for number of days in month and leap year related errors."
577
  msgstr ""
578
 
579
+ #: my-calendar-event-manager.php:843
580
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
581
  msgstr ""
582
 
583
+ #: my-calendar-event-manager.php:855
584
  msgid "The time field must either be blank or be entered in the format hh:mm"
585
  msgstr ""
586
 
587
+ #: my-calendar-event-manager.php:865
588
  msgid ""
589
  "The end time field must either be blank or be entered in the format hh:mm"
590
  msgstr ""
591
 
592
+ #: my-calendar-event-manager.php:873
593
  msgid ""
594
  "The URL entered must either be prefixed with http:// or be completely blank"
595
  msgstr ""
596
 
597
+ #: my-calendar-event-manager.php:882
598
  msgid "The event title must be between 1 and 255 characters in length."
599
  msgstr ""
600
 
601
+ #: my-calendar-event-manager.php:890
602
+ msgid "The repetition value must be 0 unless a type of recurrence is selected."
603
  msgstr ""
604
 
605
  #: my-calendar-help.php:6
614
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
615
  msgstr ""
616
 
617
+ #: my-calendar-help.php:18
618
  msgid ""
619
  "This basic shortcode will show the calendar on a post or page including all "
620
  "categories and the category key, in a traditional month-by-month format."
621
  msgstr ""
622
 
623
+ #: my-calendar-help.php:21
624
  msgid ""
625
  "The shortcode supports three attributes, <code>category</code>, "
626
  "<code>format</code> and <code>showkey</code>. There two alternate option for "
637
  "category output."
638
  msgstr ""
639
 
640
+ #: my-calendar-help.php:24
641
  msgid ""
642
  "This shortcode displays the output of the Upcoming Events widget. Without "
643
  "attributes, it will display using the settings in your widget; the "
648
  "shortcode. Templates work using the template codes listed below."
649
  msgstr ""
650
 
651
+ #: my-calendar-help.php:27
652
  msgid ""
653
  "Predictably enough, this shortcode displays the output of the Today's Events "
654
  "widget, with two configurable attributes: category and template."
777
  "information is available. If not, will be empty."
778
  msgstr ""
779
 
780
+ #: my-calendar-help.php:112
781
+ msgid ""
782
+ "Displays text indicating whether registration for the event is currently "
783
+ "open or closed; displays nothing if that choice is selected in the event."
784
+ msgstr ""
785
+
786
+ #: my-calendar-help.php:115
787
+ msgid "Displays the short version of the event description."
788
+ msgstr ""
789
+
790
+ #: my-calendar-help.php:118
791
+ msgid ""
792
+ "Displays the current status of the event: either \"Published\" or \"Reserved"
793
+ "\" - primary used in email templates."
794
+ msgstr ""
795
+
796
  #: my-calendar-locations.php:22
797
  msgid "Location added successfully"
798
  msgstr ""
809
  msgid "Location could not be deleted"
810
  msgstr ""
811
 
812
+ #: my-calendar-locations.php:43
813
  msgid "Location could not be edited."
814
  msgstr ""
815
 
816
+ #: my-calendar-locations.php:45
817
  msgid "Location was not changed."
818
  msgstr ""
819
 
820
+ #: my-calendar-locations.php:47
821
  msgid "Location edited successfully"
822
  msgstr ""
823
 
824
+ #: my-calendar-locations.php:59
825
  msgid "Add New Location"
826
  msgstr ""
827
 
828
+ #: my-calendar-locations.php:61
829
  msgid "Edit Location"
830
  msgstr ""
831
 
832
+ #: my-calendar-locations.php:66
833
  msgid "Location Editor"
834
  msgstr ""
835
 
836
+ #: my-calendar-locations.php:114
837
+ msgid ""
838
+ "If you supply GPS coordinates for your location, they will be used in place "
839
+ "of any other address information to pinpoint your location."
840
+ msgstr ""
841
+
842
+ #: my-calendar-locations.php:121
843
  msgid "Add Location"
844
  msgstr ""
845
 
846
+ #: my-calendar-locations.php:135 my-calendar.php:180
847
  msgid "Manage Locations"
848
  msgstr ""
849
 
850
+ #: my-calendar-locations.php:170
851
  msgid "There are no locations in the database yet!"
852
  msgstr ""
853
 
854
+ #: my-calendar-locations.php:174
855
  msgid ""
856
  "Please note: editing or deleting locations stored for re-use will have no "
857
  "effect on any event previously scheduled at that location. The location "
875
  msgid "Events not imported."
876
  msgstr ""
877
 
878
+ #: my-calendar-settings.php:165
879
  msgid "Settings saved"
880
  msgstr ""
881
 
882
+ #: my-calendar-settings.php:188
883
  msgid "My Calendar Options"
884
  msgstr ""
885
 
886
+ #: my-calendar-settings.php:195
887
  msgid "Calendar Settings"
888
  msgstr ""
889
 
890
+ #: my-calendar-settings.php:199
891
  msgid "Calendar Options: Management"
892
  msgstr ""
893
 
894
+ #: my-calendar-settings.php:201
895
+ msgid "Choose the lowest user group that may create events"
896
  msgstr ""
897
 
898
+ #: my-calendar-settings.php:202 my-calendar-settings.php:211
899
  msgid "Subscriber"
900
  msgstr ""
901
 
902
+ #: my-calendar-settings.php:203 my-calendar-settings.php:212
903
  msgid "Contributor"
904
  msgstr ""
905
 
906
+ #: my-calendar-settings.php:205 my-calendar-settings.php:214
907
  msgid "Editor"
908
  msgstr ""
909
 
910
+ #: my-calendar-settings.php:206 my-calendar-settings.php:215
911
  msgid "Administrator"
912
  msgstr ""
913
 
914
+ #: my-calendar-settings.php:210
915
+ msgid "Choose the lowest user group that may approve events"
916
  msgstr ""
917
 
918
+ #: my-calendar-settings.php:219
919
+ msgid "Enable approval options."
920
  msgstr ""
921
 
922
+ #: my-calendar-settings.php:223
923
+ msgid "Calendar Options: Customize Text"
924
  msgstr ""
925
 
926
+ #: my-calendar-settings.php:225
927
+ msgid "Show Heading for Calendar"
 
 
 
 
928
  msgstr ""
929
 
930
+ #: my-calendar-settings.php:228
931
+ msgid "Label for events without a specific time"
932
  msgstr ""
933
 
934
+ #: my-calendar-settings.php:231
935
+ msgid "Previous events link text"
936
  msgstr ""
937
 
938
+ #: my-calendar-settings.php:231
939
+ msgid "Previous Events"
 
 
940
  msgstr ""
941
 
942
+ #: my-calendar-settings.php:234
943
+ msgid "Next events link text"
944
  msgstr ""
945
 
946
+ #: my-calendar-settings.php:234
947
+ msgid "Next Events"
948
  msgstr ""
949
 
950
+ #: my-calendar-settings.php:237
951
+ msgid "Text when events are open"
952
  msgstr ""
953
 
954
+ #: my-calendar-settings.php:237
955
+ msgid "Registration is open"
956
  msgstr ""
957
 
958
+ #: my-calendar-settings.php:240
959
+ msgid "Text when events are closed"
960
  msgstr ""
961
 
962
+ #: my-calendar-settings.php:240
963
+ msgid "Registration is closed"
964
  msgstr ""
965
 
966
+ #: my-calendar-settings.php:243
967
  msgid "Additional caption text"
968
  msgstr ""
969
 
970
+ #: my-calendar-settings.php:243
971
  msgid ""
972
  "The calendar caption is the text containing the displayed month and year in "
973
  "either list or calendar format. This text will be displayed following that "
974
  "existing text."
975
  msgstr ""
976
 
977
+ #: my-calendar-settings.php:247
978
+ msgid "Calendar Options: Output"
979
+ msgstr ""
980
+
981
+ #: my-calendar-settings.php:249
982
+ msgid "In list mode, show how many months of events at a time:"
983
+ msgstr ""
984
+
985
+ #: my-calendar-settings.php:252
986
+ msgid "Date format in list mode"
987
+ msgstr ""
988
+
989
+ #: my-calendar-settings.php:253
990
+ msgid ""
991
+ "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
992
+ "<code>date()</code> function</a>. Save options to update sample output."
993
+ msgstr ""
994
+
995
+ #: my-calendar-settings.php:256
996
+ msgid "Do you want to display the author name on events?"
997
+ msgstr ""
998
+
999
+ #: my-calendar-settings.php:259
1000
+ msgid "Display a jumpbox for changing month and year quickly?"
1001
+ msgstr ""
1002
+
1003
+ #: my-calendar-settings.php:262
1004
  msgid "Hide category icons in output"
1005
  msgstr ""
1006
 
1007
+ #: my-calendar-settings.php:265
1008
  msgid ""
1009
  "Show Link to Google Map (when sufficient address information is available.)"
1010
  msgstr ""
1011
 
1012
+ #: my-calendar-settings.php:268
1013
  msgid "Show Event Address in Details"
1014
  msgstr ""
1015
 
1016
+ #: my-calendar-settings.php:271
1017
+ msgid "Show short description field on calendar."
1018
+ msgstr ""
1019
+
1020
+ #: my-calendar-settings.php:274
1021
+ msgid "Show full description field on calendar."
1022
+ msgstr ""
1023
+
1024
+ #: my-calendar-settings.php:277
1025
  msgid ""
1026
  "Links associated with events will automatically expire after the event has "
1027
  "passed."
1028
  msgstr ""
1029
 
1030
+ #: my-calendar-settings.php:280
1031
+ msgid "Show current availability status of events."
1032
+ msgstr ""
1033
+
1034
+ #: my-calendar-settings.php:283
1035
+ msgid ""
1036
+ "If a recurring event is scheduled for a date which doesn't exist (such as "
1037
+ "the 5th Wednesday in February), move it back one week."
1038
+ msgstr ""
1039
+
1040
+ #: my-calendar-settings.php:284
1041
+ msgid ""
1042
+ "If this option is unchecked, recurring events which fall on dates which "
1043
+ "don't exist will simply not be shown on the calendar."
1044
+ msgstr ""
1045
+
1046
+ #: my-calendar-settings.php:288
1047
+ msgid "Calendar Options: Input"
1048
+ msgstr ""
1049
+
1050
+ #: my-calendar-settings.php:291
1051
+ msgid "Show Event Location Dropdown Menu"
1052
+ msgstr ""
1053
+
1054
+ #: my-calendar-settings.php:291
1055
+ msgid "Show Event Short Description field"
1056
+ msgstr ""
1057
+
1058
+ #: my-calendar-settings.php:291
1059
+ msgid "Show Event Description Field"
1060
+ msgstr ""
1061
+
1062
+ #: my-calendar-settings.php:291
1063
+ msgid "Show Event Category field"
1064
+ msgstr ""
1065
+
1066
+ #: my-calendar-settings.php:291
1067
+ msgid "Show Event Link field"
1068
+ msgstr ""
1069
+
1070
+ #: my-calendar-settings.php:291
1071
+ msgid "Show Event Recurrence Options"
1072
+ msgstr ""
1073
+
1074
+ #: my-calendar-settings.php:291
1075
+ msgid "Show event registration options"
1076
+ msgstr ""
1077
+
1078
+ #: my-calendar-settings.php:291
1079
+ msgid "Show event location fields"
1080
+ msgstr ""
1081
+
1082
+ #: my-calendar-settings.php:300
1083
+ msgid "Administrators see all input options"
1084
+ msgstr ""
1085
+
1086
+ #: my-calendar-settings.php:304
1087
+ msgid "Calendar Options: Style"
1088
+ msgstr ""
1089
+
1090
+ #: my-calendar-settings.php:306
1091
  msgid "Default usage of category colors."
1092
  msgstr ""
1093
 
1094
+ #: my-calendar-settings.php:307
1095
  msgid "Apply category colors to event titles as a font color."
1096
  msgstr ""
1097
 
1098
+ #: my-calendar-settings.php:308
1099
  msgid "Apply category colors to event titles as a background color."
1100
  msgstr ""
1101
 
1102
+ #: my-calendar-settings.php:313
1103
+ msgid "Calendar Options: Email Notifications"
1104
+ msgstr ""
1105
+
1106
+ #: my-calendar-settings.php:317
1107
+ msgid "Send Email Notifications when new events are scheduled or reserved."
1108
+ msgstr ""
1109
+
1110
+ #: my-calendar-settings.php:323
1111
+ msgid "Notification messages are sent to: "
1112
+ msgstr ""
1113
+
1114
+ #: my-calendar-settings.php:327
1115
+ msgid "Email subject"
1116
+ msgstr ""
1117
+
1118
+ #: my-calendar-settings.php:327
1119
+ msgid "New event Added"
1120
+ msgstr ""
1121
+
1122
+ #: my-calendar-settings.php:331
1123
+ msgid "Message Body"
1124
+ msgstr ""
1125
+
1126
+ #: my-calendar-settings.php:331
1127
+ msgid "New Event:"
1128
+ msgstr ""
1129
+
1130
+ #: my-calendar-settings.php:332
1131
+ msgid "Shortcode Help"
1132
+ msgstr ""
1133
+
1134
+ #: my-calendar-settings.php:332
1135
+ msgid "All template shortcodes are available."
1136
+ msgstr ""
1137
+
1138
+ #: my-calendar-settings.php:341
1139
  msgid "Save Settings"
1140
  msgstr ""
1141
 
1152
  msgstr ""
1153
 
1154
  #: my-calendar-styles.php:78
1155
+ msgid ""
1156
+ "Show CSS &amp; JavaScript only on these pages (comma separated page IDs)"
1157
  msgstr ""
1158
 
1159
  #: my-calendar-styles.php:81
1236
  #: my-calendar-upgrade-db.php:33
1237
  msgid ""
1238
  "You haven't entered any events, so My Calendar can't tell whether your "
1239
+ "database is up to date. If you can't add events, upgrade your database!"
1240
  msgstr ""
1241
 
1242
  #: my-calendar-upgrade-db.php:44
1297
  msgid "Show only this category:"
1298
  msgstr ""
1299
 
1300
+ #: my-calendar-widgets.php:285
1301
  msgid "There are no events currently scheduled."
1302
  msgstr ""
1303
 
1304
+ #: my-calendar-widgets.php:470
1305
+ msgid "Published"
1306
+ msgstr ""
1307
+
1308
+ #: my-calendar-widgets.php:472
1309
+ msgid "Reserved"
1310
+ msgstr ""
1311
+
1312
+ #: my-calendar.php:56 my-calendar.php:181
1313
  msgid "Settings"
1314
  msgstr ""
1315
 
1316
+ #: my-calendar.php:57 my-calendar.php:183
1317
  msgid "Help"
1318
  msgstr ""
1319
 
1320
  #: my-calendar.php:81
1321
+ msgid "Buy the Beginner's Guide"
1322
+ msgstr ""
1323
+
1324
+ #: my-calendar.php:82
1325
  msgid "Get Support"
1326
  msgstr ""
1327
 
1328
+ #: my-calendar.php:83 my-calendar.php:183
1329
  msgid "My Calendar Help"
1330
  msgstr ""
1331
 
1332
+ #: my-calendar.php:84
1333
  msgid "Make a Donation"
1334
  msgstr ""
1335
 
1336
+ #. #-#-#-#-# plugin.pot (My Calendar 1.5.0) #-#-#-#-#
1337
  #. Plugin Name of the plugin/theme
1338
+ #: my-calendar.php:172
1339
  msgid "My Calendar"
1340
  msgstr ""
1341
 
1342
+ #: my-calendar.php:175
1343
  msgid "Add/Edit Events"
1344
  msgstr ""
1345
 
1346
+ #: my-calendar.php:182
1347
  msgid "Style Editor"
1348
  msgstr ""
1349
 
1350
+ #: my-calendar.php:633
1351
  msgid "Event Details"
1352
  msgstr ""
1353
 
1354
+ #: my-calendar.php:642
1355
  msgid "Close"
1356
  msgstr ""
1357
 
1358
+ #: my-calendar.php:652
1359
  msgid "Not Applicable"
1360
  msgstr ""
1361
 
1362
+ #: my-calendar.php:664
1363
  msgid "Posted by"
1364
  msgstr ""
1365
 
1366
+ #: my-calendar.php:710
1367
+ msgid ""
1368
+ "This class is part of a series. You must register for the first event in "
1369
+ "this series to attend."
1370
+ msgstr ""
1371
+
1372
+ #: my-calendar.php:1340
1373
  msgid "Month"
1374
  msgstr ""
1375
 
1376
+ #: my-calendar.php:1341 my-calendar.php:1427
1377
  msgid "January"
1378
  msgstr ""
1379
 
1380
+ #: my-calendar.php:1342 my-calendar.php:1427
1381
  msgid "February"
1382
  msgstr ""
1383
 
1384
+ #: my-calendar.php:1343 my-calendar.php:1427
1385
  msgid "March"
1386
  msgstr ""
1387
 
1388
+ #: my-calendar.php:1344 my-calendar.php:1427
1389
  msgid "April"
1390
  msgstr ""
1391
 
1392
+ #: my-calendar.php:1345 my-calendar.php:1427
1393
  msgid "May"
1394
  msgstr ""
1395
 
1396
+ #: my-calendar.php:1346 my-calendar.php:1427
1397
  msgid "June"
1398
  msgstr ""
1399
 
1400
+ #: my-calendar.php:1347 my-calendar.php:1427
1401
  msgid "July"
1402
  msgstr ""
1403
 
1404
+ #: my-calendar.php:1348 my-calendar.php:1427
1405
  msgid "August"
1406
  msgstr ""
1407
 
1408
+ #: my-calendar.php:1349 my-calendar.php:1427
1409
  msgid "September"
1410
  msgstr ""
1411
 
1412
+ #: my-calendar.php:1350 my-calendar.php:1427
1413
  msgid "October"
1414
  msgstr ""
1415
 
1416
+ #: my-calendar.php:1351 my-calendar.php:1427
1417
  msgid "November"
1418
  msgstr ""
1419
 
1420
+ #: my-calendar.php:1352 my-calendar.php:1427
1421
  msgid "December"
1422
  msgstr ""
1423
 
1424
+ #: my-calendar.php:1354
1425
  msgid "Year"
1426
  msgstr ""
1427
 
1428
+ #: my-calendar.php:1379
1429
  msgid "Go"
1430
  msgstr ""
1431
 
1432
+ #: my-calendar.php:1401
1433
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1434
  msgstr ""
1435
 
1436
+ #: my-calendar.php:1402
1437
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1438
  msgstr ""
1439
 
1440
+ #: my-calendar.php:1403
1441
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1442
  msgstr ""
1443
 
1444
+ #: my-calendar.php:1404
1445
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1446
  msgstr ""
1447
 
1448
+ #: my-calendar.php:1405
1449
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1450
  msgstr ""
1451
 
1452
+ #: my-calendar.php:1406
1453
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1454
  msgstr ""
1455
 
1456
+ #: my-calendar.php:1407
1457
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1458
  msgstr ""
1459
 
1460
+ #: my-calendar.php:1412
1461
  msgid "<abbr title=\"Sunday\">S</abbr>"
1462
  msgstr ""
1463
 
1464
+ #: my-calendar.php:1413
1465
  msgid "<abbr title=\"Monday\">M</abbr>"
1466
  msgstr ""
1467
 
1468
+ #: my-calendar.php:1414
1469
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1470
  msgstr ""
1471
 
1472
+ #: my-calendar.php:1415
1473
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1474
  msgstr ""
1475
 
1476
+ #: my-calendar.php:1416
1477
  msgid "<abbr title=\"Thursday\">T</abbr>"
1478
  msgstr ""
1479
 
1480
+ #: my-calendar.php:1417
1481
  msgid "<abbr title=\"Friday\">F</abbr>"
1482
  msgstr ""
1483
 
1484
+ #: my-calendar.php:1418
1485
  msgid "<abbr title=\"Saturday\">S</abbr>"
1486
  msgstr ""
1487
 
1488
+ #: my-calendar.php:1464
1489
  msgid "and"
1490
  msgstr ""
1491
 
1492
+ #: my-calendar.php:1493 my-calendar.php:1497
1493
  msgid "Calendar"
1494
  msgstr ""
1495
 
1496
+ #: my-calendar.php:1500
1497
  msgid "Events in"
1498
  msgstr ""
1499
 
1500
+ #: my-calendar.php:1597
1501
  msgid "There are no events scheduled during this period."
1502
  msgstr ""
1503
 
1504
+ #: my-calendar.php:1607
1505
  msgid "Category Key"
1506
  msgstr ""
1507
 
readme.txt CHANGED
@@ -1,46 +1,34 @@
1
  === My Calendar ===
2
  Contributors: joedolson
3
  Donate link: http://www.joedolson.com/donate.php
4
- Tags: calendar, dates, times, events, scheduling
5
  Requires at least: 2.7
6
- Tested up to: 3.0
7
  Stable tag: trunk
8
 
9
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
10
 
11
  == Description ==
12
 
13
- My Calendar provides basic event management and provides numerous methods to display your events.
14
-
15
- This calendar is branched from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/). The output has been pretty much completely re-written, the settings methods have been revamped, and the widgets have been completely revamped. The information you can provide for an event has been expanded to include location information. The UI has been completely revamped.
16
-
17
- In short, there isn't actually much left of the original plugin.
18
 
19
  Features:
20
 
21
- * Monthly view of events
22
- * List view of events; multiple months can be viewed at once.
23
- * Events can display their author (optional)
24
- * Events can span more than one day
25
- * Events can include location information
26
- * Event listings can show address and/or a link to a Google Map with the address
27
- * Locations can be shown in [hCard format](http://microformats.org/wiki/hcard).
28
- * Multiple events per day possible
29
- * Events can repeat on a daily, weekly, monthly or yearly basis
30
- * Repeats can occur indefinitely or a limited number of times
31
- * Easy to use events manager
32
  * Widget to show today's events
33
- * Highly configurable widget to show upcoming events
34
  * Widget templating to control what information is displayed in widget output.
35
- * Extensive settings panel for administration
36
  * Edit or disable default CSS and default JavaScript from the style editor
37
- * Optional drop down boxes to quickly change month and year
38
- * User groups other than admin can be permitted to manage events
39
- * Events can be placed into categories
40
  * Calendar can be displayed including a single category, all categories, or a selection of categories
41
- * Events can be links pointing to a location of your choice
42
  * Import method from Kieran's Calendar plugin
43
- * Help information within the plugin for shortcodes and widget templates.
 
 
 
 
 
44
 
45
  Languages available:
46
 
@@ -48,6 +36,9 @@ Languages available:
48
  * Brazilian Portuguese ([Daniel Prata](daniel@grudaemmim.com.br))
49
  * Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
50
  * Danish ([Jakob Smith](http://www.omkalfatring.dk/))
 
 
 
51
 
52
  == Installation ==
53
 
@@ -70,6 +61,68 @@ Languages available:
70
 
71
  == Changelog ==
72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  = 1.4.6 =
74
 
75
  * Fixed: Flash of unstyled content prevention scripts weren't disabled when other scripting was disabled.
@@ -262,5 +315,9 @@ The widgets both use templates to determine what they'll display. You can edit t
262
  3. Event management page
263
  4. Category management page
264
  5. Settings page
 
 
 
 
265
 
266
- == Upgrade Notice ==
1
  === My Calendar ===
2
  Contributors: joedolson
3
  Donate link: http://www.joedolson.com/donate.php
4
+ Tags: calendar, dates, times, events, scheduling, event manager
5
  Requires at least: 2.7
6
+ Tested up to: 3.1-alpha
7
  Stable tag: trunk
8
 
9
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
10
 
11
  == Description ==
12
 
13
+ My Calendar provides basic event management and provides numerous methods to display your events. The plug-in can support individual calendars within WordPress Multi-User, or multiple calendars displaying different categories of events.
 
 
 
 
14
 
15
  Features:
16
 
17
+ * Standard calendar or list views of events in calendar
18
+ * Mini-calendar view for compact displays
 
 
 
 
 
 
 
 
 
19
  * Widget to show today's events
20
+ * Configurable widget to show upcoming or past events
21
  * Widget templating to control what information is displayed in widget output.
 
22
  * Edit or disable default CSS and default JavaScript from the style editor
23
+ * Events can be configured to be added by any level of user; either directly to calendar or reserved for administrative approval
 
 
24
  * Calendar can be displayed including a single category, all categories, or a selection of categories
 
25
  * Import method from Kieran's Calendar plugin
26
+ * Help information within the plugin for shortcode usage and widget templates.
27
+ * Editable CSS styles and JavaScript behaviors
28
+ * Store and display the following information for each event: title, description, alternate description, event category, URL, start date, start time, end date, end time, registration status (open, closed or irrelevant), event location.
29
+
30
+ This calendar is a branch from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/). You can import any previous scheduled events from Kieran's calendar into this one.
31
+
32
 
33
  Languages available:
34
 
36
  * Brazilian Portuguese ([Daniel Prata](daniel@grudaemmim.com.br))
37
  * Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
38
  * Danish ([Jakob Smith](http://www.omkalfatring.dk/))
39
+ * German (Roland P)
40
+ * Dutch (Luud Heck)
41
+ * Japanese ([Daisuke Abe](http://www.alter-ego.jp/))
42
 
43
  == Installation ==
44
 
61
 
62
  == Changelog ==
63
 
64
+ = 1.5.4 =
65
+
66
+ * Fixed: Bug with permissions in event approval process.
67
+
68
+ = 1.5.3 =
69
+
70
+ * Fixed: Bug which broke the {category} template tag
71
+ * Fixed: Bug which moved extra parameters before the "?" in URLs
72
+ * Fixed: Bug which produced an incorrect date with day/month recurring events on dates with no remainder
73
+ * Added: Japanese translation by [Daisuke Abe](http://www.alter-ego.jp/)
74
+
75
+ = 1.5.2 =
76
+
77
+ * Fixed: Bug where event data wasn't remembered if an error was triggered on submission.
78
+
79
+ = 1.5.1 =
80
+
81
+ * Fixed: Bug where events recurring monthly by days appeared on wrong date when month begins on Sunday.
82
+ * Fixed: Bug where events recurring monthly by days appeared on dates prior to the scheduled event start.
83
+ * Performance improvement: Added SQL join to incorporate category data in event object
84
+ * Added quicktag to provide access to category color and icon in widget templates
85
+ * Changed link expiration to be associated with the end date of events rather than the beginning date.
86
+ * Updated readme plugin description, help files, and screenshots.
87
+
88
+ = 1.5.0 =
89
+
90
+ * Added: German translation.
91
+ * Updated: Danish translation.
92
+ * Added: Administrator notification by email feature [Contributions by Roland]
93
+ * Added: Reservations and Approval system for events. [Contributions by Roland]
94
+ * Added: Events can be recurring on x day of month, e.g. 3rd Monday of the month.
95
+
96
+ = 1.4.10 =
97
+
98
+ * Fixed: Failed to increment internal version pointer in previous version.
99
+ * Fixed: Invalid styles created if category color set to default.
100
+ * Fixed: (Performance) Default calendar view attempted to select invalid category.
101
+ * Updated: Danish translation.
102
+
103
+ = 1.4.9 =
104
+
105
+ * Fixed: Bug where location edits couldn't be saved if location fields were on and dropdown was off
106
+ * Fixed: Bug where latitude and longitude were switched on Google Maps links
107
+ * Fixed: Bug where map link would not be provided if no location data was entered except Lat/Long coordinates.
108
+
109
+ = 1.4.8 =
110
+
111
+ * Added: Ability to copy events to create a new instance of that event
112
+ * Added: Customization of which input elements are visible separate from what output is shown.
113
+ * Fixed: Issue where one JS element could not be fully disabled
114
+ * Fixed: Internationalization fault with Today's Events showing events from previous day
115
+ * Fixed some assorted text errors and missing internationalization strings.
116
+ * Fixed issue where the 'Help' link was added to all plug-in listings.
117
+ * Reorganized settings page UI.
118
+
119
+ = 1.4.7 =
120
+
121
+ * Fixed: Bug where infinitely recurring events whose first occurrence was in the future were not rendered in upcoming events
122
+ * Fixed: Bug where infinitely recurring bi-weekly events only rendered their first event in calendar view
123
+ * Added: Option to indicate whether registration for an event is open or closed, with customizable text.
124
+ * Added: Option to supply a short description alternative to the full description.
125
+
126
  = 1.4.6 =
127
 
128
  * Fixed: Flash of unstyled content prevention scripts weren't disabled when other scripting was disabled.
315
  3. Event management page
316
  4. Category management page
317
  5. Settings page
318
+ 6. Location management
319
+ 7. Style and behavior editing
320
+
321
+ == Upgrade Notice ==
322
 
323
+ Minor bug fixes with recurring events.
screenshot-3.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png ADDED
Binary file
screenshot-7.png ADDED
Binary file
uninstall.php CHANGED
@@ -50,6 +50,15 @@ delete_option('my_calendar_show_css');
50
  delete_option('mc_apply_color');
51
  delete_option('mc_next_events');
52
  delete_option('mc_previous_events');
 
 
 
 
 
 
 
 
 
53
 
54
  add_option('my_calendar_uninstalled','true');
55
  }
50
  delete_option('mc_apply_color');
51
  delete_option('mc_next_events');
52
  delete_option('mc_previous_events');
53
+ delete_option('mc_input_options');
54
+ delete_option('mc_input_options_administrators');
55
+ delete_option('mc_event_mail','false');
56
+ delete_option('mc_event_mail_subject');
57
+ delete_option('mc_event_mail_to');
58
+ delete_option('mc_event_mail_message');
59
+ delete_option('mc_event_approve');
60
+ delete_option('mc_event_approve_perms');
61
+ delete_option('mc_no_fifth_week');
62
 
63
  add_option('my_calendar_uninstalled','true');
64
  }