My Calendar - Version 1.7.8

Version Description

  • Bug fix: Behaviors page limits lost on settings refresh
  • Bug fix: Fix {enddate} shortcode output.
  • Bug fix: iCal output improvements
  • Modification: RSS and iCal output are disabled entirely when turned off, rather than just hidden.
  • Modification: Added styles for days out of current month
Download this release

Release Info

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

Code changes from version 1.7.2 to 1.7.8

date-utilities.php CHANGED
@@ -133,4 +133,18 @@ function get_week_date( $week, $year, $start_of_week=0 ) {
133
  return $first_day;
134
  }
135
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  ?>
133
  return $first_day;
134
  }
135
 
136
+ function add_days_to_date( $givendate,$day=0 ) {
137
+ $cd = strtotime($givendate);
138
+ $newdate = date('Y-m-d h:i:s',
139
+ mktime(
140
+ date('h',$cd),
141
+ date('i',$cd),
142
+ date('s',$cd),
143
+ date('m',$cd),
144
+ date('d',$cd)+$day,
145
+ date('Y',$cd)
146
+ ) );
147
+ return $newdate;
148
+ }
149
+
150
  ?>
my-calendar-behaviors.php CHANGED
@@ -24,7 +24,9 @@ function edit_my_calendar_behaviors() {
24
  update_option('my_calendar_caljs',$my_calendar_caljs);
25
  update_option('my_calendar_ajaxjs',$my_calendar_ajaxjs);
26
 
27
-
 
 
28
  if ( $_POST['reset_caljs'] == 'on') {
29
  update_option('my_calendar_caljs',$initial_caljs);
30
  }
@@ -51,9 +53,9 @@ function edit_my_calendar_behaviors() {
51
 
52
  $my_calendar_ajaxjs = stripcslashes(get_option('my_calendar_ajaxjs'));
53
  $ajax_javascript = get_option('ajax_javascript');
54
-
55
- $my_calendar_show_js = ($_POST['my_calendar_show_js']=='')?'':$_POST['my_calendar_show_js'];
56
- update_option('my_calendar_show_js',$my_calendar_show_js);
57
  // Now we render the form
58
  ?>
59
  <div class="wrap">
24
  update_option('my_calendar_caljs',$my_calendar_caljs);
25
  update_option('my_calendar_ajaxjs',$my_calendar_ajaxjs);
26
 
27
+ $my_calendar_show_js = ($_POST['my_calendar_show_js']=='')?'':$_POST['my_calendar_show_js'];
28
+ update_option('my_calendar_show_js',$my_calendar_show_js);
29
+
30
  if ( $_POST['reset_caljs'] == 'on') {
31
  update_option('my_calendar_caljs',$initial_caljs);
32
  }
53
 
54
  $my_calendar_ajaxjs = stripcslashes(get_option('my_calendar_ajaxjs'));
55
  $ajax_javascript = get_option('ajax_javascript');
56
+
57
+ $my_calendar_showjs = stripcslashes(get_option('my_calendar_showjs'));
58
+
59
  // Now we render the form
60
  ?>
61
  <div class="wrap">
my-calendar-categories.php CHANGED
@@ -164,7 +164,7 @@ global $path, $wp_plugin_dir,$wp_plugin_url;
164
  <fieldset>
165
  <legend><?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Edit Category','my-calendar'); } ?></legend>
166
  <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 />
167
- <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 />
168
  <label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
169
  <?php
170
  foreach ($iconlist as $value) {
@@ -220,8 +220,8 @@ function mc_manage_categories() {
220
  <tr class="<?php echo $class; ?>">
221
  <th scope="row"><?php echo $category->category_id; ?></th>
222
  <td><?php echo $category->category_name; ?></td>
223
- <td style="background-color:<?php echo $category->category_color; ?>;">&nbsp;</td>
224
- <td style="background-color:<?php echo $category->category_color; ?>;"><img src="<?php echo $wp_plugin_url . $path; ?>/<?php echo $category->category_icon; ?>" alt="" /></td>
225
  <td><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-categories&amp;mode=edit&amp;category_id=<?php echo $category->category_id;?>" class='edit'><?php echo __('Edit','my-calendar'); ?></a></td>
226
  <?php
227
  if ($category->category_id == 1) {
164
  <fieldset>
165
  <legend><?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Edit Category','my-calendar'); } ?></legend>
166
  <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 />
167
+ <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 (strpos($cur_cat->category_color,'#') !== 0)?'#':''; echo $cur_cat->category_color ?>" /><br />
168
  <label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
169
  <?php
170
  foreach ($iconlist as $value) {
220
  <tr class="<?php echo $class; ?>">
221
  <th scope="row"><?php echo $category->category_id; ?></th>
222
  <td><?php echo $category->category_name; ?></td>
223
+ <td style="background-color:<?php echo (strpos($category->category_color,'#') !== 0)?'#':''; echo $category->category_color; ?>;">&nbsp;</td>
224
+ <td style="background-color:<?php echo (strpos($category->category_color,'#') !== 0)?'#':''; echo $category->category_color; ?>;"><img src="<?php echo $wp_plugin_url . $path; ?>/<?php echo $category->category_icon; ?>" alt="" /></td>
225
  <td><a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-categories&amp;mode=edit&amp;category_id=<?php echo $category->category_id;?>" class='edit'><?php echo __('Edit','my-calendar'); ?></a></td>
226
  <?php
227
  if ($category->category_id == 1) {
my-calendar-da_DK.mo CHANGED
Binary file
my-calendar-da_DK.po CHANGED
@@ -7,8 +7,8 @@ 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-12-23 19:33:22+00:00\n"
11
- "PO-Revision-Date: 2011-01-06 19:15+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"
@@ -18,11 +18,11 @@ msgstr ""
18
  "X-Poedit-Country: DENMARK\n"
19
  "X-Poedit-SourceCharset: utf-8\n"
20
 
21
- #: my-calendar-templates.php:151
22
  msgid "Published"
23
  msgstr "Publiceret"
24
 
25
- #: my-calendar-templates.php:153
26
  msgid "Reserved"
27
  msgstr "Reserveret"
28
 
@@ -30,162 +30,177 @@ msgstr "Reserveret"
30
  msgid "My Calendar User Settings"
31
  msgstr "My Calendar brugerindstillinger"
32
 
33
- #: my-calendar-event-manager.php:27
34
- #: my-calendar-settings.php:511
35
  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?"
36
  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?"
37
 
38
- #: my-calendar-event-manager.php:33
39
- #: my-calendar-settings.php:517
40
  msgid "Import from Calendar"
41
  msgstr "Importer fra Calendar"
42
 
43
- #: my-calendar-event-manager.php:38
44
  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>!"
45
  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."
46
 
47
- #: my-calendar-event-manager.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  msgid "Delete Event"
49
  msgstr "Slet begivenhed"
50
 
51
- #: my-calendar-event-manager.php:68
52
  msgid "Are you sure you want to delete this event?"
53
  msgstr "Er du sikker på, at du vil slette denne begivenhed?"
54
 
55
- #: my-calendar-event-manager.php:73
56
- #: my-calendar-event-manager.php:743
57
- #: my-calendar-categories.php:160
58
- #: my-calendar-categories.php:179
59
- #: my-calendar-locations.php:150
60
- #: my-calendar-locations.php:162
61
  msgid "Delete"
62
  msgstr "Slet"
63
 
64
- #: my-calendar-event-manager.php:81
65
  msgid "You do not have permission to delete that event."
66
  msgstr "Du har ikke tilladelse til at slette denne begivenhed."
67
 
68
- #: my-calendar-event-manager.php:96
69
- #: my-calendar-event-manager.php:211
70
  msgid "You do not have permission to approve that event."
71
  msgstr "Du har ikke tilladelse til at godkende denne begivenhed."
72
 
73
- #: my-calendar-event-manager.php:110
74
- #: my-calendar-event-manager.php:225
75
  msgid "You do not have permission to reject that event."
76
  msgstr "Du har ikke tilladelse til at afvise denne begivenhed."
77
 
78
- #: my-calendar-event-manager.php:133
79
- #: my-calendar-event-manager.php:156
80
- #: my-calendar-event-manager.php:180
81
- #: my-calendar-event-manager.php:195
82
- #: my-calendar-event-manager.php:875
83
- #: my-calendar-event-manager.php:880
84
- #: my-calendar-event-manager.php:885
85
- #: my-calendar-event-manager.php:897
86
- #: my-calendar-event-manager.php:907
87
- #: my-calendar-event-manager.php:915
88
- #: my-calendar-event-manager.php:924
89
- #: my-calendar-event-manager.php:932
90
- msgid "Error"
91
- msgstr "Fejl"
 
 
 
 
92
 
93
- #: my-calendar-event-manager.php:133
 
 
 
 
94
  msgid "I'm sorry! I couldn't add that event to the database."
95
  msgstr "Beklager! Jeg kunne ikke tilføje den begivenhed til databasen."
96
 
97
- #: my-calendar-event-manager.php:135
98
  msgid "Event added. It will now show in your calendar."
99
  msgstr "Begivenhed tilføjet. Den vises nu i din kalender."
100
 
101
- #: my-calendar-event-manager.php:156
102
  msgid "Your event was not updated."
103
  msgstr "Din begivenhed blev ikke opdateret."
104
 
105
- #: my-calendar-event-manager.php:160
106
  msgid "Nothing was changed in that update."
107
  msgstr "Intet blev ændret i denne opdatering af begivenheden."
108
 
109
- #: my-calendar-event-manager.php:164
110
  msgid "Event updated successfully"
111
  msgstr "Begivenhed opdateret med succes"
112
 
113
- #: my-calendar-event-manager.php:170
114
  msgid "You do not have sufficient permissions to edit that event."
115
  msgstr "Du har ikke tilstrækkelige tilladelser til at redigere denne begivenhed."
116
 
117
- #: my-calendar-event-manager.php:180
118
  msgid "You can't delete an event if you haven't submitted an event id"
119
  msgstr "Du kan ikke redigere en begivenhed, hvis du ikke har sendt et begivenheds-id."
120
 
121
- #: my-calendar-event-manager.php:191
122
  msgid "Event deleted successfully"
123
  msgstr "Begivenhed slettet med succes"
124
 
125
- #: my-calendar-event-manager.php:195
126
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
127
  msgstr "Selvom der blev sendt en forespørgsel om sletning, eksisterer begivenheden stadig i databasen. Undersøg venligst."
128
 
129
- #: my-calendar-event-manager.php:242
130
- #: my-calendar-event-manager.php:345
131
- msgid "Edit Event"
132
- msgstr "Rediger begivenhed"
133
-
134
- #: my-calendar-event-manager.php:246
135
- #: my-calendar-event-manager.php:255
136
- msgid "You must provide an event id in order to edit it"
137
- msgstr "Du skal angive et begivenheds-id for at kunne redigere den"
138
-
139
- #: my-calendar-event-manager.php:251
140
- #: my-calendar-event-manager.php:345
141
- msgid "Copy Event"
142
- msgstr "Kopier begivenhed"
143
-
144
- #: my-calendar-event-manager.php:261
145
- msgid "Add Event"
146
- msgstr "Tilføj begivenhed"
147
-
148
- #: my-calendar-event-manager.php:266
149
- msgid "Manage Events"
150
- msgstr "Administrer begivenheder"
151
-
152
- #: my-calendar-event-manager.php:317
153
  msgid "Sorry! That's an invalid event key."
154
  msgstr "Beklager! Det er et ugyldigt begivenheds-id."
155
 
156
- #: my-calendar-event-manager.php:322
157
  msgid "Sorry! We couldn't find an event with that ID."
158
  msgstr "Beklager! Vi kunne ikke finde en begivenhed med det id."
159
 
160
- #: my-calendar-event-manager.php:345
161
  msgid "Add an Event"
162
  msgstr "Tilføj en begivenhed"
163
 
164
- #: my-calendar-event-manager.php:349
165
  msgid "This event must be approved in order for it to appear on the calendar."
166
  msgstr "Denne begivenhed skal godkendes for at blive vist i kalenderen."
167
 
168
- #: my-calendar-event-manager.php:364
 
 
 
 
169
  msgid "Enter your Event Information"
170
  msgstr "Indtast oplysninger om begivenheden"
171
 
172
- #: my-calendar-event-manager.php:366
173
  msgid "Event Title"
174
  msgstr "Begivenhedens titel"
175
 
176
- #: my-calendar-event-manager.php:370
 
 
 
 
 
177
  msgid "Publish"
178
  msgstr "Publicer"
179
 
180
- #: my-calendar-event-manager.php:370
181
  msgid "You must approve this event to promote it to the calendar."
182
  msgstr "Du skal godkende denne begivenhed for at den bliver vist i kalenderen."
183
 
184
- #: my-calendar-event-manager.php:372
185
  msgid "An administrator must approve your new event."
186
  msgstr "En administrator skal godkende din nye begivenhed."
187
 
188
- #: my-calendar-event-manager.php:384
189
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
190
  msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
191
 
@@ -193,37 +208,45 @@ msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTM
193
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
194
  msgstr "Kort beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
195
 
196
- #: my-calendar-event-manager.php:405
197
  msgid "Event Host"
198
  msgstr "Begivenhedens vært"
199
 
200
- #: my-calendar-event-manager.php:426
201
  msgid "Event Category"
202
  msgstr "Begivenheds kategori"
203
 
204
- #: my-calendar-event-manager.php:451
205
  msgid "Event Link (Optional)"
206
  msgstr "Begivenhedslink (valgfri)"
207
 
208
- #: my-calendar-event-manager.php:451
209
  msgid "This link will expire when the event passes."
210
  msgstr "Dette link udløber, når begivenheden er overstået."
211
 
212
- #: my-calendar-event-manager.php:455
 
 
 
 
 
 
 
 
213
  msgid "Start Date (YYYY-MM-DD)"
214
  msgstr "Startdato (ÅÅÅÅ-MM-DD)"
215
 
216
- #: my-calendar-event-manager.php:458
217
- msgid "End Date (YYYY-MM-DD) (Optional)"
218
- msgstr "Slutdato (ÅÅÅÅ-MM-DD) (Valgfri)"
219
-
220
- #: my-calendar-event-manager.php:461
221
  msgid "Time (hh:mm)"
222
  msgstr "Tidspunkt (tt:mm)"
223
 
224
- #: my-calendar-event-manager.php:473
225
- msgid "Optional, set blank if your event is an all-day event or does not happen at a specific time."
226
- msgstr "Valgfri, lad feltet være tomt, hvis begivenheden er en heldagsbegivenhed eller ikke foregår på et bestemt tidspunkt."
 
 
 
 
227
 
228
  #: my-calendar-event-manager.php:473
229
  msgid "Current time difference from GMT is "
@@ -233,749 +256,765 @@ msgstr "Nuværende tidsforskel fra GMT er "
233
  msgid " hour(s)"
234
  msgstr " time(r)."
235
 
236
- #: my-calendar-event-manager.php:476
237
- msgid "End Time (hh:mm)"
238
- msgstr "Sluttidspunkt (tt:mm)"
239
-
240
- #: my-calendar-event-manager.php:486
241
- msgid "Optional. End times will not be displayed on events where this is not set."
242
- msgstr "Valgfri. Sluttidspunkter bliver ikke vist på begivenheder, hvor de ikke er valgt."
243
-
244
- #: my-calendar-event-manager.php:491
245
  msgid "Recurring Events"
246
  msgstr "Tilbagevendende begivenheder"
247
 
248
- #: my-calendar-event-manager.php:494
249
  msgid "Repeats for"
250
  msgstr "Gentages"
251
 
252
- #: my-calendar-event-manager.php:495
253
  msgid "Units"
254
  msgstr "gange"
255
 
256
- #: my-calendar-event-manager.php:496
257
  msgid "Does not recur"
258
  msgstr "Gentages ikke"
259
 
260
- #: my-calendar-event-manager.php:497
261
- #: my-calendar-event-manager.php:716
262
  msgid "Daily"
263
  msgstr "Dagligt"
264
 
265
- #: my-calendar-event-manager.php:498
266
- #: my-calendar-event-manager.php:717
267
  msgid "Weekly"
268
  msgstr "Ugentligt"
269
 
270
- #: my-calendar-event-manager.php:499
271
  msgid "Bi-weekly"
272
  msgstr "Hveranden uge"
273
 
274
- #: my-calendar-event-manager.php:500
275
  msgid "Date of Month (e.g., the 24th of each month)"
276
  msgstr "Dato i måneden (f.eks. den 24. i hver måned)"
277
 
278
- #: my-calendar-event-manager.php:501
279
  msgid "Day of Month (e.g., the 3rd Monday of each month)"
280
  msgstr "Dag i måneden (f.eks. den 3. mandag i hver måned)"
281
 
282
- #: my-calendar-event-manager.php:502
283
  msgid "Annually"
284
  msgstr "Årligt"
285
 
286
- #: my-calendar-event-manager.php:504
287
- 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."
288
- msgstr "Indtastning af 0 betyder \"altid\", hvis en enhed er valgt. Hvis typen af gentagelse er sat til \"Gentages ikke\", vil begivenheden ikke gentages."
289
 
290
- #: my-calendar-event-manager.php:515
291
  msgid "Event Registration Status"
292
  msgstr "Status for tilmelding til begivenhed"
293
 
294
- #: my-calendar-event-manager.php:517
 
 
 
 
295
  msgid "Open"
296
  msgstr "Åben"
297
 
298
- #: my-calendar-event-manager.php:518
299
  msgid "Closed"
300
  msgstr "Lukket"
301
 
302
- #: my-calendar-event-manager.php:519
303
  msgid "Does not apply"
304
  msgstr "Ikke relevant"
305
 
306
- #: my-calendar-event-manager.php:522
307
  msgid "If this event recurs, it can only be registered for as a complete series."
308
  msgstr "Hvis denne begivenhed gentages, kan tilmelding kun ske til den samlede serie af begivenheder."
309
 
310
- #: my-calendar-event-manager.php:532
311
- #: my-calendar-locations.php:81
312
  msgid "Event Location"
313
  msgstr "Begivenhedens sted"
314
 
315
- #: my-calendar-event-manager.php:541
316
  msgid "Choose a preset location:"
317
  msgstr "Vælg et forudindstillet sted:"
318
 
319
- #: my-calendar-event-manager.php:555
320
  msgid "Add recurring locations for later use."
321
  msgstr "Tilføj tilbagevendende steder til senere brug."
322
 
323
- #: my-calendar-event-manager.php:564
324
- #: my-calendar-locations.php:83
325
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
326
  msgstr "Alle stedrelaterede felter er valgfri: <em>Utilstrækkelige oplysninger kan resultere i et upræcist kort</em>."
327
 
328
- #: my-calendar-event-manager.php:567
329
- #: my-calendar-locations.php:86
330
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
331
  msgstr "Stednavn (f.eks. <em>Joe's Bar & Grill</em>)"
332
 
333
- #: my-calendar-event-manager.php:570
334
- #: my-calendar-locations.php:89
335
  msgid "Street Address"
336
  msgstr "Gadenavn"
337
 
338
- #: my-calendar-event-manager.php:573
339
- #: my-calendar-locations.php:92
340
  msgid "Street Address (2)"
341
  msgstr "Gadenavn (2)"
342
 
343
- #: my-calendar-event-manager.php:576
344
- #: my-calendar-settings.php:490
345
- #: my-calendar-locations.php:95
346
  msgid "City"
347
  msgstr "By"
348
 
349
- #: my-calendar-event-manager.php:576
350
- #: my-calendar-settings.php:491
351
- #: my-calendar-locations.php:95
352
  msgid "State/Province"
353
  msgstr "Stat/Provins"
354
 
355
- #: my-calendar-event-manager.php:576
356
- #: my-calendar-settings.php:493
357
- #: my-calendar-locations.php:95
358
  msgid "Postal Code"
359
  msgstr "Postnummer"
360
 
361
- #: my-calendar-event-manager.php:579
362
- #: my-calendar-settings.php:492
363
- #: my-calendar-locations.php:98
364
  msgid "Country"
365
  msgstr "Land"
366
 
367
- #: my-calendar-event-manager.php:582
368
- #: my-calendar-locations.php:101
369
  msgid "Initial Zoom"
370
  msgstr "Indledende Zoom"
371
 
372
- #: my-calendar-event-manager.php:584
373
- #: my-calendar-locations.php:103
374
  msgid "Neighborhood"
375
  msgstr "Nabolag"
376
 
377
- #: my-calendar-event-manager.php:585
378
- #: my-calendar-locations.php:104
379
  msgid "Small City"
380
  msgstr "Lille By"
381
 
382
- #: my-calendar-event-manager.php:586
383
- #: my-calendar-locations.php:105
384
  msgid "Large City"
385
  msgstr "Stor By"
386
 
387
- #: my-calendar-event-manager.php:587
388
- #: my-calendar-locations.php:106
389
  msgid "Greater Metro Area"
390
  msgstr "Større byområde"
391
 
392
- #: my-calendar-event-manager.php:588
393
- #: my-calendar-locations.php:107
394
  msgid "State"
395
  msgstr "Kommune"
396
 
397
- #: my-calendar-event-manager.php:589
398
- #: my-calendar-locations.php:108
399
  msgid "Region"
400
  msgstr "Region"
401
 
402
- #: my-calendar-event-manager.php:593
403
- #: my-calendar-locations.php:112
404
  msgid "GPS Coordinates (optional)"
405
  msgstr "GPS-koordinater (valgfri)"
406
 
407
- #: my-calendar-event-manager.php:595
408
  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."
409
  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."
410
 
411
- #: my-calendar-event-manager.php:598
412
- #: my-calendar-locations.php:117
413
  msgid "Longitude"
414
  msgstr "Længdegrad"
415
 
416
- #: my-calendar-event-manager.php:598
417
- #: my-calendar-locations.php:117
418
  msgid "Latitude"
419
  msgstr "Breddegrad"
420
 
421
- #: my-calendar-event-manager.php:606
422
- msgid "Save Event"
423
- msgstr "Gem begivenhed"
424
 
425
- #: my-calendar-event-manager.php:682
426
- #: my-calendar-categories.php:155
427
- #: my-calendar-locations.php:147
428
  msgid "ID"
429
  msgstr "id"
430
 
431
- #: my-calendar-event-manager.php:683
432
- #: my-calendar-widgets.php:37
433
- #: my-calendar-widgets.php:122
434
  msgid "Title"
435
  msgstr "Titel"
436
 
437
- #: my-calendar-event-manager.php:684
438
- msgid "Link"
439
- msgstr "Link"
440
-
441
- #: my-calendar-event-manager.php:685
442
- #: my-calendar-locations.php:148
443
  msgid "Location"
444
  msgstr "Sted"
445
 
446
- #: my-calendar-event-manager.php:686
447
  msgid "Description"
448
  msgstr "Beskrivelse"
449
 
450
- #: my-calendar-event-manager.php:687
451
  msgid "Start Date"
452
  msgstr "Startdato"
453
 
454
- #: my-calendar-event-manager.php:688
455
  msgid "Recurs"
456
  msgstr "Gentages"
457
 
458
- #: my-calendar-event-manager.php:689
459
- #: my-calendar-settings.php:250
460
- #: my-calendar-settings.php:259
 
461
  msgid "Author"
462
  msgstr "Forfatter"
463
 
464
- #: my-calendar-event-manager.php:690
465
  msgid "Category"
466
  msgstr "Kategori"
467
 
468
- #: my-calendar-event-manager.php:691
469
  msgid "Edit / Delete"
470
  msgstr "Rediger / Slet"
471
 
472
- #: my-calendar-event-manager.php:715
473
  msgid "Never"
474
  msgstr "Aldrig"
475
 
476
- #: my-calendar-event-manager.php:718
477
  msgid "Bi-Weekly"
478
  msgstr "Hveranden uge"
479
 
480
- #: my-calendar-event-manager.php:719
481
  msgid "Monthly (by date)"
482
  msgstr "Månedlig (efter dato)"
483
 
484
- #: my-calendar-event-manager.php:720
485
  msgid "Monthly (by day)"
486
  msgstr "Månedlig (efter dag)"
487
 
488
- #: my-calendar-event-manager.php:721
489
  msgid "Yearly"
490
  msgstr "Årligt"
491
 
492
- #: my-calendar-event-manager.php:724
493
- #: my-calendar-settings.php:281
494
- #: my-calendar-categories.php:176
495
- #: my-calendar-output.php:115
496
  msgid "N/A"
497
  msgstr "Ikke oplyst"
498
 
499
- #: my-calendar-event-manager.php:725
500
  msgid "Forever"
501
  msgstr "Altid"
502
 
503
- #: my-calendar-event-manager.php:726
504
  msgid "Times"
505
  msgstr "gange"
506
 
507
- #: my-calendar-event-manager.php:741
508
  msgid "Copy"
509
  msgstr "Kopier"
510
 
511
- #: my-calendar-event-manager.php:743
512
- #: my-calendar-categories.php:159
513
- #: my-calendar-categories.php:173
514
- #: my-calendar-locations.php:149
515
- #: my-calendar-locations.php:161
516
  msgid "Edit"
517
  msgstr "Rediger"
518
 
519
- #: my-calendar-event-manager.php:744
520
  msgid "Not editable."
521
  msgstr "Ikke redigerbar."
522
 
523
- #: my-calendar-event-manager.php:750
524
  msgid "Reject"
525
  msgstr "Afvis"
526
 
527
- #: my-calendar-event-manager.php:752
528
  msgid "Approve"
529
  msgstr "Godkend"
530
 
531
- #: my-calendar-event-manager.php:757
532
  msgid "Approved"
533
  msgstr "Godkendt"
534
 
535
- #: my-calendar-event-manager.php:759
536
  msgid "Rejected"
537
  msgstr "Afvist"
538
 
539
- #: my-calendar-event-manager.php:761
540
  msgid "Awaiting Approval"
541
  msgstr "Afventer godkendelse"
542
 
543
- #: my-calendar-event-manager.php:774
544
  msgid "There are no events in the database!"
545
  msgstr "Der er ingen begivenheder i databasen!"
546
 
547
- #: my-calendar-event-manager.php:875
548
  msgid "Your event end date must be either after or the same as your event begin date"
549
  msgstr "Din begivenheds slutdato må enten ligge efter eller være lig med begivenhedens startdato."
550
 
551
- #: my-calendar-event-manager.php:880
552
  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."
553
  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."
554
 
555
- #: my-calendar-event-manager.php:885
556
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
557
  msgstr "Både start- og slutdato skal være i formatet ÅÅÅÅ-MM-DD"
558
 
559
- #: my-calendar-event-manager.php:897
560
  msgid "The time field must either be blank or be entered in the format hh:mm"
561
  msgstr "Feltet for tidspunkt skal enten være blankt eller indtastes i formatet tt:mm"
562
 
563
- #: my-calendar-event-manager.php:907
564
  msgid "The end time field must either be blank or be entered in the format hh:mm"
565
  msgstr "Feltet for slutdato skal enten være blankt eller indtastes i formatet tt:mm"
566
 
567
- #: my-calendar-event-manager.php:915
568
- msgid "The URL entered must either be prefixed with http:// or be completely blank"
569
- msgstr "Den indtastede URL skal enten være foranstillet med http:// eller være helt blank"
570
-
571
- #: my-calendar-event-manager.php:924
572
  msgid "The event title must be between 1 and 255 characters in length."
573
  msgstr "Begivenhedens titel skal være mellem 1 og 255 tegn i længde."
574
 
575
- #: my-calendar-event-manager.php:932
576
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
577
  msgstr "Værdien for gentagelse skal være 0, medmindre der er er valgt en type af gentagelse."
578
 
579
- #: my-calendar-settings.php:80
580
  msgid "Categories imported successfully."
581
  msgstr "Kategorier importeret med succes"
582
 
583
- #: my-calendar-settings.php:82
584
  msgid "Categories not imported."
585
  msgstr "Kategorier blev ikke importeret"
586
 
587
- #: my-calendar-settings.php:85
588
  msgid "Events imported successfully."
589
  msgstr "Begivenheder importeret med succes"
590
 
591
- #: my-calendar-settings.php:87
592
  msgid "Events not imported."
593
  msgstr "Begivenheder blev ikke importeret"
594
 
595
- #: my-calendar-settings.php:112
596
  msgid "Permissions Settings saved"
597
  msgstr "Indstillinger for tilladelser gemt"
598
 
599
- #: my-calendar-settings.php:151
600
  msgid "Output Settings saved"
601
  msgstr "Outputindstillinger gemt"
602
 
603
- #: my-calendar-settings.php:168
604
  msgid "Input Settings saved"
605
  msgstr "Inputindstillinger gemt"
606
 
607
- #: my-calendar-settings.php:184
608
  msgid "Custom text settings saved"
609
  msgstr "Indstillinger for tekst gemt"
610
 
611
- #: my-calendar-settings.php:197
612
  msgid "Email notice settings saved"
613
  msgstr "Indstillinger for e-mail-notifikationer gemt"
614
 
615
- #: my-calendar-settings.php:211
616
  msgid "User custom settings saved"
617
  msgstr "Indstillinger for brugere gemt"
618
 
619
- #: my-calendar-settings.php:236
620
  msgid "My Calendar Options"
621
  msgstr "My Calendar indstillinger"
622
 
623
- #: my-calendar-settings.php:239
624
  msgid "Calendar Settings"
625
  msgstr "Kalenderindstillinger"
626
 
627
- #: my-calendar-settings.php:241
628
  msgid "Calendar Management Settings"
629
  msgstr "Indstillinger for kalenderadministration"
630
 
631
- #: my-calendar-settings.php:245
632
  msgid "Calendar Options: Management"
633
  msgstr "Kalenderindstillinger: Administration"
634
 
635
- #: my-calendar-settings.php:247
636
  msgid "Choose the lowest user group that may create events"
637
  msgstr "Vælg den laveste brugergruppe, der må oprette begivenheder"
638
 
639
- #: my-calendar-settings.php:248
640
- #: my-calendar-settings.php:257
641
  msgid "Subscriber"
642
  msgstr "Abonnent"
643
 
644
- #: my-calendar-settings.php:249
645
- #: my-calendar-settings.php:258
 
646
  msgid "Contributor"
647
  msgstr "Bidragyder"
648
 
649
- #: my-calendar-settings.php:251
650
- #: my-calendar-settings.php:260
 
651
  msgid "Editor"
652
  msgstr "Redaktør"
653
 
654
- #: my-calendar-settings.php:252
655
- #: my-calendar-settings.php:261
 
656
  msgid "Administrator"
657
  msgstr "Administrator"
658
 
659
- #: my-calendar-settings.php:256
660
  msgid "Choose the lowest user group that may approve events"
661
  msgstr "Vælg den laveste brugergruppe, der må godkende begivenheder"
662
 
663
- #: my-calendar-settings.php:265
664
  msgid "Enable approval options."
665
  msgstr "Aktiver indstillinger for godkendelse."
666
 
667
- #: my-calendar-settings.php:269
 
 
 
 
 
 
 
 
668
  msgid "Save Approval Settings"
669
  msgstr "Gem indstillinger for godkendelse"
670
 
671
- #: my-calendar-settings.php:275
672
  msgid "Calendar Text Settings"
673
  msgstr "Indstillinger for kalenderens tekst"
674
 
675
- #: my-calendar-settings.php:279
676
  msgid "Calendar Options: Customize Text"
677
  msgstr "Kalenderindstillinger: Tilret tekst"
678
 
679
- #: my-calendar-settings.php:281
680
  msgid "Label for events without a specific time"
681
  msgstr "Etiket for begivenheder uden et specifikt tidspunkt"
682
 
683
- #: my-calendar-settings.php:284
684
  msgid "Previous events link text"
685
  msgstr "Linktekst for tidligere begivenheder"
686
 
687
- #: my-calendar-settings.php:284
688
  msgid "Previous Events"
689
  msgstr "Tidligere begivenheder"
690
 
691
- #: my-calendar-settings.php:287
692
  msgid "Next events link text"
693
  msgstr "Linktekst for kommende begivenheder"
694
 
695
- #: my-calendar-settings.php:287
696
  msgid "Next Events"
697
  msgstr "Kommende begivenheder"
698
 
699
- #: my-calendar-settings.php:290
700
  msgid "Text when events are open"
701
  msgstr "Tekst, der vises når der er åbent for tilmelding"
702
 
703
- #: my-calendar-settings.php:290
704
  msgid "Registration is open"
705
  msgstr "Der er åbent for tilmelding"
706
 
707
- #: my-calendar-settings.php:293
708
  msgid "Text when events are closed"
709
  msgstr "Tekst, der vises, når der er lukket for tilmelding"
710
 
711
- #: my-calendar-settings.php:293
712
  msgid "Registration is closed"
713
  msgstr "Der er lukket for tilmelding"
714
 
715
- #: my-calendar-settings.php:296
716
  msgid "Additional caption text"
717
  msgstr "Yderligere forklarende tekst"
718
 
719
- #: my-calendar-settings.php:296
720
  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."
721
  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."
722
 
723
- #: my-calendar-settings.php:300
724
  msgid "Save Custom Text Settings"
725
  msgstr "Gem indstillinger for tekst"
726
 
727
- #: my-calendar-settings.php:306
728
  msgid "Calendar Output Settings"
729
  msgstr "Indstillinger for output"
730
 
731
- #: my-calendar-settings.php:310
732
  msgid "Calendar Options: Output"
733
  msgstr "Kalenderindstillinger: Output"
734
 
735
- #: my-calendar-settings.php:312
736
  msgid "Event title template"
737
  msgstr "Skabelon for begivenhedstitel"
738
 
739
- #: my-calendar-settings.php:314
740
- #: my-calendar-settings.php:421
741
  msgid "Shortcode Help"
742
  msgstr "Hjælp til shortcodes"
743
 
744
- #: my-calendar-settings.php:314
745
- #: my-calendar-settings.php:421
746
  msgid "All template shortcodes are available."
747
  msgstr "Alle skabelon-shortcodes er tilgængelige."
748
 
749
- #: my-calendar-settings.php:317
750
  msgid "Show Heading for Calendar"
751
  msgstr "Vis overskrift i kalender"
752
 
753
- #: my-calendar-settings.php:320
754
  msgid "In list mode, show how many months of events at a time:"
755
  msgstr "Hvor mange måneders begivenheder skal vises i listevisning ad gangen:"
756
 
757
- #: my-calendar-settings.php:323
758
  msgid "Date format in list mode"
759
  msgstr "Datoformat i listevisning"
760
 
761
- #: my-calendar-settings.php:324
762
  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."
763
  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."
764
 
765
- #: my-calendar-settings.php:327
766
  msgid "Do you want to display the author name on events?"
767
  msgstr "Ønsker du at vise forfatterens navn i begivenheder?"
768
 
769
- #: my-calendar-settings.php:330
770
  msgid "Display a jumpbox for changing month and year quickly?"
771
  msgstr "Vis en popup-boks til hurtig ændring af måned og år?"
772
 
773
- #: my-calendar-settings.php:333
774
  msgid "Hide category icons in output"
775
  msgstr "Skjul kategoriikoner i output"
776
 
777
- #: my-calendar-settings.php:336
778
  msgid "Show Link to Google Map (when sufficient address information is available.)"
779
  msgstr "Vis link til Google Maps (når tilstrækkelige adresseoplysninger er tilgængelige)"
780
 
781
- #: my-calendar-settings.php:339
782
  msgid "Show Event Address in Details"
783
  msgstr "Vis begivenhedsadresse i detaljer"
784
 
785
- #: my-calendar-settings.php:342
786
  msgid "Show short description field on calendar."
787
  msgstr "Vis den korte beskrivelse i kalenderen."
788
 
789
- #: my-calendar-settings.php:345
790
  msgid "Show full description field on calendar."
791
  msgstr "Vis den fulde beskrivelse i kalenderen."
792
 
793
- #: my-calendar-settings.php:348
794
  msgid "Links associated with events will automatically expire after the event has passed."
795
  msgstr "Links associeret med begivenheder vil automatisk udløbe efter en begivenhed er overstået."
796
 
797
- #: my-calendar-settings.php:351
798
  msgid "Show current availability status of events."
799
  msgstr "Vis begivenhedernes aktuelle status for tilgængelighed."
800
 
801
- #: my-calendar-settings.php:354
 
 
 
 
 
 
 
 
802
  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."
803
  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."
804
 
805
- #: my-calendar-settings.php:355
806
  msgid "If this option is unchecked, recurring events which fall on dates which don't exist will simply not be shown on the calendar."
807
  msgstr "Hvis denne indstilling ikke er markeret, vil tilbagevendende begivenheder, der falder på ikke-eksisterende datoer, ikke blive vist på kalenderen."
808
 
809
- #: my-calendar-settings.php:359
 
 
 
 
 
 
 
 
810
  msgid "Calendar Options: Style"
811
  msgstr "Kalenderindstillinger: Output"
812
 
813
- #: my-calendar-settings.php:361
814
  msgid "Default usage of category colors."
815
  msgstr "Standard brug af kategorifarver"
816
 
817
- #: my-calendar-settings.php:362
818
  msgid "Apply category colors to event titles as a font color."
819
  msgstr "Brug kategorifarver som skriftfarve i begivenhedstitler."
820
 
821
- #: my-calendar-settings.php:363
822
  msgid "Apply category colors to event titles as a background color."
823
  msgstr "Brug kategorifarver som baggrundsfarve i begivenhedstitler"
824
 
825
- #: my-calendar-settings.php:367
826
  msgid "Save Output Settings"
827
  msgstr "Gem outputindstillinger"
828
 
829
- #: my-calendar-settings.php:373
830
  msgid "Calendar Input Settings"
831
  msgstr "Indstillinger for input"
832
 
833
- #: my-calendar-settings.php:377
834
  msgid "Calendar Options: Input"
835
  msgstr "Kalenderindstillinger: Output"
836
 
837
- #: my-calendar-settings.php:382
838
  msgid "Show Event Location Dropdown Menu"
839
  msgstr "Vis begivenhedssted i dropdownmenu"
840
 
841
- #: my-calendar-settings.php:382
842
  msgid "Show Event Short Description field"
843
  msgstr "Vis feltet \"Kort beskrivelse af begivenhed\""
844
 
845
- #: my-calendar-settings.php:382
846
  msgid "Show Event Description Field"
847
  msgstr "Vis feltet \"Beskrivelse af begivenhed\""
848
 
849
- #: my-calendar-settings.php:382
850
  msgid "Show Event Category field"
851
  msgstr "Begivenheds kategori"
852
 
853
- #: my-calendar-settings.php:382
854
  msgid "Show Event Link field"
855
  msgstr "Vis feltet \"Begivenhedslink\""
856
 
857
- #: my-calendar-settings.php:382
858
  msgid "Show Event Recurrence Options"
859
  msgstr "Vis indstillinger for tilbagevendende begivenheder"
860
 
861
- #: my-calendar-settings.php:382
862
  msgid "Show event registration options"
863
  msgstr "Vis indstillinger for tilmelding til begivenheder"
864
 
865
- #: my-calendar-settings.php:382
866
  msgid "Show event location fields"
867
  msgstr "Begivenhedens sted"
868
 
869
- #: my-calendar-settings.php:391
870
  msgid "Administrators see all input options"
871
  msgstr "Lad administratorer se alle inputmuligheder"
872
 
873
- #: my-calendar-settings.php:395
874
  msgid "Save Input Settings"
875
  msgstr "Gem indstillinger for input"
876
 
877
- #: my-calendar-settings.php:401
878
  msgid "Calendar Email Settings"
879
  msgstr "Indstillinger for e-mail-notifikationer"
880
 
881
- #: my-calendar-settings.php:405
882
  msgid "Calendar Options: Email Notifications"
883
  msgstr "Kalenderindstillinger: Notifikationer pr. e-mail"
884
 
885
- #: my-calendar-settings.php:409
886
  msgid "Send Email Notifications when new events are scheduled or reserved."
887
  msgstr "Send notifikationer pr. e-mail, når nye begivenheder publiceres eller reserveres."
888
 
889
- #: my-calendar-settings.php:412
890
  msgid "Notification messages are sent to: "
891
  msgstr "Notifikationer pr. e-mail sendes til: "
892
 
893
- #: my-calendar-settings.php:416
894
  msgid "Email subject"
895
  msgstr "E-mail emne"
896
 
897
- #: my-calendar-settings.php:416
898
  msgid "New event Added"
899
  msgstr "Ny begivenhed tilføjet"
900
 
901
- #: my-calendar-settings.php:420
902
  msgid "Message Body"
903
  msgstr "E-mail indhold"
904
 
905
- #: my-calendar-settings.php:420
906
  msgid "New Event:"
907
  msgstr "Ny begivenhed:"
908
 
909
- #: my-calendar-settings.php:425
910
  msgid "Save Email Settings"
911
  msgstr "Gem indstillinger for e-mail-notifikationer"
912
 
913
- #: my-calendar-settings.php:431
914
  msgid "Calendar User Settings"
915
  msgstr "Indstillinger for brugere"
916
 
917
- #: my-calendar-settings.php:437
918
  msgid "My Calendar: User Settings"
919
  msgstr "My Calendar: Brugerindstillinger"
920
 
921
- #: my-calendar-settings.php:440
922
  msgid "Allow registered users to provide timezone or location presets in their user profiles."
923
  msgstr "Tillad registrerede brugere at forudindstille værdier for tidszone eller sted i deres brugerprofiler."
924
 
925
- #: my-calendar-settings.php:447
926
  msgid "Timezone Settings"
927
  msgstr "Indstillinger for tidszone"
928
 
929
- #: my-calendar-settings.php:448
930
  msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
931
  msgstr "Disse indstillinger giver registrerede brugere muligheden for at vælge en tidszone i deres brugerprofil. Når brugeren ser din kalender, bliver begivenhedernes tidspunkt vist i brugerens tidszone såvel som den indtastede værdi."
932
 
933
- #: my-calendar-settings.php:450
934
  msgid "Enable Timezone"
935
  msgstr "Brug tidszone"
936
 
937
- #: my-calendar-settings.php:453
938
  msgid "Select Timezone Label"
939
  msgstr "Vælg tidszoneetiket"
940
 
941
- #: my-calendar-settings.php:456
942
  msgid "Timezone Options"
943
  msgstr "Tidszone valgmuligheder"
944
 
945
- #: my-calendar-settings.php:456
946
- #: my-calendar-settings.php:477
947
  msgid "Value, Label; one per line"
948
  msgstr "Værdi; Etiket; én per linie"
949
 
950
- #: my-calendar-settings.php:468
951
  msgid "Location Settings"
952
  msgstr "Indstillinger for steder"
953
 
954
- #: my-calendar-settings.php:469
955
  msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter."
956
  msgstr "Disse indstillinger giver registrerede brugere muligheden for at vælge et sted i deres brugerprofil. Når brugeren ser din kalender, er visningen som udgangspunkt begrænset til steder, der inkluderer det indtastede sted."
957
 
958
- #: my-calendar-settings.php:471
959
  msgid "Enable Location"
960
  msgstr "Brug sted"
961
 
962
- #: my-calendar-settings.php:474
963
  msgid "Select Location Label"
964
  msgstr "Vælg etiket for sted"
965
 
966
- #: my-calendar-settings.php:477
967
  msgid "Location Options"
968
  msgstr "Sted valgmuligheder"
969
 
970
- #: my-calendar-settings.php:487
971
  msgid "Location Type"
972
  msgstr "Stedtype"
973
 
974
- #: my-calendar-settings.php:489
975
  msgid "Location Name"
976
  msgstr "Stednavn"
977
 
978
- #: my-calendar-settings.php:501
979
  msgid "Save User Settings"
980
  msgstr "Gem indstillinger for brugere"
981
 
@@ -996,712 +1035,789 @@ msgstr "Du har ikke tilføjet nogen begivenheder, så My Calendar ved ikke om di
996
  msgid "My Calendar Database is updated."
997
  msgstr "My Calendars database er opdateret."
998
 
999
- #: my-calendar-categories.php:41
1000
  msgid "Category added successfully"
1001
  msgstr "Kategori tilføjet med succes"
1002
 
1003
- #: my-calendar-categories.php:43
1004
  msgid "Category addition failed."
1005
  msgstr "Tilføjelse af kategori fejlede."
1006
 
1007
- #: my-calendar-categories.php:53
1008
  msgid "Category deleted successfully. Categories in calendar updated."
1009
  msgstr "Kategori slettet med succes. Kalenderens kategorier er opdateret."
1010
 
1011
- #: my-calendar-categories.php:55
1012
  msgid "Category deleted successfully. Categories in calendar not updated."
1013
  msgstr "Kategori slettet med succes. Kalenderens kategorier er ikke opdateret."
1014
 
1015
- #: my-calendar-categories.php:57
1016
  msgid "Category not deleted. Categories in calendar updated."
1017
  msgstr "Kategori ikke slettet. Kalenderens kategorier er opdateret."
1018
 
1019
- #: my-calendar-categories.php:66
1020
  msgid "Category edited successfully"
1021
  msgstr "Kategori redigeret med succes"
1022
 
1023
- #: my-calendar-categories.php:88
1024
- #: my-calendar-categories.php:112
1025
  #: my-calendar-categories.php:130
 
 
1026
  msgid "Add Category"
1027
  msgstr "Tilføj kategori"
1028
 
1029
- #: my-calendar-categories.php:90
1030
- #: my-calendar-categories.php:112
1031
  msgid "Edit Category"
1032
  msgstr "Rediger kategori"
1033
 
1034
- #: my-calendar-categories.php:97
1035
  msgid "Category Editor"
1036
  msgstr "Kategoriredigering"
1037
 
1038
- #: my-calendar-categories.php:113
1039
  #: my-calendar-categories.php:156
 
1040
  msgid "Category Name"
1041
  msgstr "Kategorinavn"
1042
 
1043
- #: my-calendar-categories.php:114
1044
  msgid "Category Color (Hex format)"
1045
  msgstr "Kategorifarve (Hex format)"
1046
 
1047
- #: my-calendar-categories.php:115
1048
  #: my-calendar-categories.php:158
 
1049
  msgid "Category Icon"
1050
  msgstr "Kategoriikon"
1051
 
1052
- #: my-calendar-categories.php:130
1053
- #: my-calendar-locations.php:121
1054
  msgid "Save Changes"
1055
  msgstr "Gem ændringer"
1056
 
1057
- #: my-calendar-categories.php:143
1058
- #: my-calendar.php:202
1059
  msgid "Manage Categories"
1060
  msgstr "Administrer kategorier"
1061
 
1062
- #: my-calendar-categories.php:157
1063
  msgid "Category Color"
1064
  msgstr "Kategorifarve"
1065
 
1066
- #: my-calendar-categories.php:179
1067
- #: my-calendar-locations.php:162
1068
  msgid "Are you sure you want to delete this category?"
1069
  msgstr "Er du sikker på, at du vil slette denne kategori?"
1070
 
1071
- #: my-calendar-categories.php:190
1072
  msgid "There are no categories in the database - something has gone wrong!"
1073
  msgstr "Der er ingen kategorier i databasen - noget er gået galt!"
1074
 
1075
- #: my-calendar-install.php:561
1076
  msgid "My Calendar Default Timezone"
1077
  msgstr "My Calendar default tidszone"
1078
 
1079
- #: my-calendar-install.php:606
1080
  msgid "My Calendar Default Location"
1081
  msgstr "My Calendar default sted"
1082
 
1083
- #: my-calendar.php:60
1084
- #: my-calendar.php:204
1085
  msgid "Settings"
1086
  msgstr "Indstillinger"
1087
 
1088
- #: my-calendar.php:61
1089
- #: my-calendar.php:207
1090
  msgid "Help"
1091
  msgstr "Hjælp"
1092
 
1093
- #: my-calendar.php:100
1094
  msgid "Buy the Beginner's Guide"
1095
  msgstr "Køb Beginner's Guide"
1096
 
1097
- #: my-calendar.php:101
1098
  msgid "Get Support"
1099
  msgstr "Få support"
1100
 
1101
- #: my-calendar.php:102
1102
- #: my-calendar.php:207
1103
  msgid "My Calendar Help"
1104
  msgstr "My Calendar hjælp"
1105
 
1106
- #: my-calendar.php:103
1107
  msgid "Make a Donation"
1108
  msgstr "Giv en donation"
1109
 
1110
- #. #-#-#-#-# plugin.pot (My Calendar 1.6.3) #-#-#-#-#
1111
  #. Plugin Name of the plugin/theme
1112
- #: my-calendar.php:195
1113
  msgid "My Calendar"
1114
  msgstr "My Calendar"
1115
 
1116
- #: my-calendar.php:198
1117
  msgid "Add/Edit Events"
1118
  msgstr "Tilføj/Rediger begivenheder"
1119
 
1120
- #: my-calendar.php:203
1121
- #: my-calendar-locations.php:135
1122
  msgid "Manage Locations"
1123
  msgstr "Administrer steder"
1124
 
1125
- #: my-calendar.php:205
1126
  msgid "Style Editor"
1127
- msgstr "Style-redigering"
1128
 
1129
- #: my-calendar.php:206
1130
  msgid "Behavior Editor"
1131
  msgstr "Rediger kalenderopførsel"
1132
 
1133
- #: my-calendar-behaviors.php:39
1134
  msgid "Behavior Settings saved"
1135
  msgstr "Indstillinger for kalenderopførsel gemt"
1136
 
1137
- #: my-calendar-behaviors.php:62
1138
  msgid "My Calendar Behaviors"
1139
  msgstr "My Calendar opførsel"
1140
 
1141
- #: my-calendar-behaviors.php:66
1142
  msgid "Calendar Behavior Settings"
1143
  msgstr "Indstillinger for kalenderopførsel"
1144
 
1145
- #: my-calendar-behaviors.php:70
1146
  msgid "Apply JavaScript only on these pages (comma separated page IDs)"
1147
  msgstr "Vis kun Javascript på disse sider (kommaseparerede side-id'er)"
1148
 
1149
- #: my-calendar-behaviors.php:73
1150
  msgid "Calendar Behaviors: Calendar View"
1151
  msgstr "Kalenderopførsel: Kalendervisning"
1152
 
1153
- #: my-calendar-behaviors.php:75
1154
  msgid "Reset the My Calendar Calendar Javascript"
1155
  msgstr "Nulstil My Calendars kalenderjavascript"
1156
 
1157
- #: my-calendar-behaviors.php:75
1158
  msgid "Disable Calendar Javascript Effects"
1159
  msgstr "Deaktiver Kalenderens javascripteffekter"
1160
 
1161
- #: my-calendar-behaviors.php:78
1162
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1163
  msgstr "Rediger jQuery-scripts til My Calendar i kalendervisning."
1164
 
1165
- #: my-calendar-behaviors.php:81
1166
- #: my-calendar-behaviors.php:93
1167
- #: my-calendar-behaviors.php:105
1168
- #: my-calendar-behaviors.php:117
1169
- #: my-calendar-styles.php:54
1170
  msgid "Save"
1171
  msgstr "Gem"
1172
 
1173
- #: my-calendar-behaviors.php:85
1174
  msgid "Calendar Behaviors: List View"
1175
  msgstr "Kalenderopførsel: Listevisning"
1176
 
1177
- #: my-calendar-behaviors.php:87
1178
  msgid "Reset the My Calendar List Javascript"
1179
  msgstr "Nulstil My Calendars listevisningsjavascript"
1180
 
1181
- #: my-calendar-behaviors.php:87
1182
- #: my-calendar-behaviors.php:111
1183
  msgid "Disable List Javascript Effects"
1184
  msgstr "Deaktiver listevisningens javascripteffekter"
1185
 
1186
- #: my-calendar-behaviors.php:90
1187
  msgid "Edit the jQuery scripts for My Calendar in List format"
1188
  msgstr "Rediger jQuery-scripts til My Calendar i listevisning"
1189
 
1190
- #: my-calendar-behaviors.php:97
1191
  msgid "Calendar Behaviors: Mini Calendar View"
1192
  msgstr "Kalenderopførsel: Minikalendervisning"
1193
 
1194
- #: my-calendar-behaviors.php:99
1195
  msgid "Reset the My Calendar Mini Format Javascript"
1196
  msgstr "Nulstil My Calendars javascript til minikalendervisning"
1197
 
1198
- #: my-calendar-behaviors.php:99
1199
  msgid "Disable Mini Javascript Effects"
1200
  msgstr "Deaktiver minikalendervisningens javascripteffekter"
1201
 
1202
- #: my-calendar-behaviors.php:102
1203
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1204
  msgstr "Rediger jQuery-scripts til My Calendar i minikalendervisning"
1205
 
1206
- #: my-calendar-behaviors.php:109
1207
  msgid "Calendar Behaviors: AJAX Navigation"
1208
  msgstr "Kalenderopførsel: AJAX-navigation"
1209
 
1210
- #: my-calendar-behaviors.php:111
1211
  msgid "Reset the My Calendar AJAX Javascript"
1212
  msgstr "Nulstil My Calendar AJAX-javascript"
1213
 
1214
- #: my-calendar-behaviors.php:114
 
 
 
 
1215
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
1216
  msgstr "Rediger jQuery-scripts til My Calendar AJAX-javascript"
1217
 
1218
- #: my-calendar-locations.php:22
1219
  msgid "Location added successfully"
1220
  msgstr "Sted tilføjet med succes"
1221
 
1222
- #: my-calendar-locations.php:24
1223
  msgid "Location could not be added to database"
1224
  msgstr "Stedet kunne ikke føjes til databasen."
1225
 
1226
- #: my-calendar-locations.php:30
1227
  msgid "Location deleted successfully"
1228
  msgstr "Sted slettet med succes"
1229
 
1230
- #: my-calendar-locations.php:32
1231
  msgid "Location could not be deleted"
1232
  msgstr "Stedet kunne ikke slettes"
1233
 
1234
- #: my-calendar-locations.php:43
1235
  msgid "Location could not be edited."
1236
  msgstr "Stedet kunne ikke redigeres."
1237
 
1238
- #: my-calendar-locations.php:45
1239
  msgid "Location was not changed."
1240
  msgstr "Stedet blev ikke ændret."
1241
 
1242
- #: my-calendar-locations.php:47
1243
  msgid "Location edited successfully"
1244
  msgstr "Sted redigeret med succes"
1245
 
1246
- #: my-calendar-locations.php:59
1247
  msgid "Add New Location"
1248
  msgstr "Tilføj nyt sted"
1249
 
1250
- #: my-calendar-locations.php:61
1251
  msgid "Edit Location"
1252
  msgstr "Rediger sted"
1253
 
1254
- #: my-calendar-locations.php:66
1255
  msgid "Location Editor"
1256
  msgstr "Redigering af steder"
1257
 
1258
- #: my-calendar-locations.php:114
1259
  msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
1260
  msgstr "Hvis du oplyser GPS-koordinater for dit sted, bliver de brugt i stedet for alle de andre adresseoplysninger til at identificere stedet."
1261
 
1262
- #: my-calendar-locations.php:121
1263
  msgid "Add Location"
1264
  msgstr "Tilføj sted"
1265
 
1266
- #: my-calendar-locations.php:170
1267
  msgid "There are no locations in the database yet!"
1268
  msgstr "Der er endnu ingen steder i databasen!"
1269
 
1270
- #: my-calendar-locations.php:174
1271
  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."
1272
  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."
1273
 
1274
- #: my-calendar-output.php:90
1275
  msgid "Event Details"
1276
  msgstr "Begivenhedsdetaljer"
1277
 
1278
- #: my-calendar-output.php:99
1279
  msgid "Close"
1280
  msgstr "Luk"
1281
 
1282
- #: my-calendar-output.php:109
1283
  msgid "in your time zone"
1284
  msgstr "i din tidszone"
1285
 
1286
- #: my-calendar-output.php:115
1287
  msgid "Not Applicable"
1288
  msgstr "Ikke relevant"
1289
 
1290
- #: my-calendar-output.php:127
1291
  msgid "Posted by"
1292
  msgstr "Publiceret af"
1293
 
1294
- #: my-calendar-output.php:173
1295
  msgid "This class is part of a series. You must register for the first event in this series to attend."
1296
  msgstr "Denne begivenhed er en del af en serie. Du skal melde dig til den første begivenhed i serien for at kunne deltage."
1297
 
1298
- #: my-calendar-output.php:206
1299
  msgid "Month"
1300
  msgstr "Måned"
1301
 
1302
- #: my-calendar-output.php:207
1303
- #: my-calendar-output.php:289
1304
  msgid "January"
1305
  msgstr "Januar"
1306
 
1307
- #: my-calendar-output.php:208
1308
- #: my-calendar-output.php:289
1309
  msgid "February"
1310
  msgstr "Februar"
1311
 
1312
- #: my-calendar-output.php:209
1313
- #: my-calendar-output.php:289
1314
  msgid "March"
1315
  msgstr "Marts"
1316
 
1317
- #: my-calendar-output.php:210
1318
- #: my-calendar-output.php:289
1319
  msgid "April"
1320
  msgstr "April"
1321
 
1322
- #: my-calendar-output.php:211
1323
- #: my-calendar-output.php:289
1324
  msgid "May"
1325
  msgstr "Maj"
1326
 
1327
- #: my-calendar-output.php:212
1328
- #: my-calendar-output.php:289
1329
  msgid "June"
1330
  msgstr "Juni"
1331
 
1332
- #: my-calendar-output.php:213
1333
- #: my-calendar-output.php:289
1334
  msgid "July"
1335
  msgstr "Juli"
1336
 
1337
- #: my-calendar-output.php:214
1338
- #: my-calendar-output.php:289
1339
  msgid "August"
1340
  msgstr "August"
1341
 
1342
- #: my-calendar-output.php:215
1343
- #: my-calendar-output.php:289
1344
  msgid "September"
1345
  msgstr "September"
1346
 
1347
- #: my-calendar-output.php:216
1348
- #: my-calendar-output.php:289
1349
  msgid "October"
1350
  msgstr "Oktober"
1351
 
1352
- #: my-calendar-output.php:217
1353
- #: my-calendar-output.php:289
1354
  msgid "November"
1355
  msgstr "November"
1356
 
1357
- #: my-calendar-output.php:218
1358
- #: my-calendar-output.php:289
1359
  msgid "December"
1360
  msgstr "December"
1361
 
1362
- #: my-calendar-output.php:220
1363
  msgid "Year"
1364
  msgstr "År"
1365
 
1366
- #: my-calendar-output.php:245
1367
  msgid "Go"
1368
  msgstr "Gå"
1369
 
1370
- #: my-calendar-output.php:263
1371
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1372
  msgstr "<abbr title=\"Søndag\">Søn</abbr>"
1373
 
1374
- #: my-calendar-output.php:264
1375
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1376
  msgstr "<abbr title=\"Mandag\">Man</abbr>"
1377
 
1378
- #: my-calendar-output.php:265
1379
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1380
  msgstr "<abbr title=\"Tirsdag\">Tirs</abbr>"
1381
 
1382
- #: my-calendar-output.php:266
1383
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1384
  msgstr "<abbr title=\"Onsdag\">Ons</abbr>"
1385
 
1386
- #: my-calendar-output.php:267
1387
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1388
  msgstr "<abbr title=\"Torsdag\">Tors</abbr>"
1389
 
1390
- #: my-calendar-output.php:268
1391
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1392
  msgstr "<abbr title=\"Fredag\">Fre</abbr>"
1393
 
1394
- #: my-calendar-output.php:269
1395
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1396
  msgstr "<abbr title=\"Lørdag\">Lør</abbr>"
1397
 
1398
- #: my-calendar-output.php:274
1399
  msgid "<abbr title=\"Sunday\">S</abbr>"
1400
  msgstr "<abbr title=\"Søndag\">S</abbr>"
1401
 
1402
- #: my-calendar-output.php:275
1403
  msgid "<abbr title=\"Monday\">M</abbr>"
1404
  msgstr "<abbr title=\"Mandag\">M</abbr>"
1405
 
1406
- #: my-calendar-output.php:276
1407
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1408
  msgstr "<abbr title=\"Tirsdag\">T</abbr>"
1409
 
1410
- #: my-calendar-output.php:277
1411
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1412
  msgstr "<abbr title=\"Onsdag\">O</abbr>"
1413
 
1414
- #: my-calendar-output.php:278
1415
  msgid "<abbr title=\"Thursday\">T</abbr>"
1416
  msgstr "<abbr title=\"Torsdag\">T</abbr>"
1417
 
1418
- #: my-calendar-output.php:279
1419
  msgid "<abbr title=\"Friday\">F</abbr>"
1420
  msgstr "<abbr title=\"Fredag\">F</abbr>"
1421
 
1422
- #: my-calendar-output.php:280
1423
  msgid "<abbr title=\"Saturday\">S</abbr>"
1424
  msgstr "<abbr title=\"Lørdag\">S</abbr>"
1425
 
1426
- #: my-calendar-output.php:323
1427
  msgid "and"
1428
  msgstr "og"
1429
 
1430
- #: my-calendar-output.php:358
1431
- #: my-calendar-output.php:362
1432
  msgid "Calendar"
1433
  msgstr "Calendar"
1434
 
1435
- #: my-calendar-output.php:366
 
 
 
 
1436
  msgid "Events in"
1437
  msgstr "Begivenheder i"
1438
 
1439
- #: my-calendar-output.php:470
 
 
 
 
1440
  msgid "There are no events scheduled during this period."
1441
  msgstr "Der er ikke planlagt begivenheder i denne periode."
1442
 
1443
- #: my-calendar-output.php:480
1444
  msgid "Category Key"
1445
  msgstr "Kategorinøgle"
1446
 
1447
- #: my-calendar-output.php:626
 
 
 
 
 
 
 
 
1448
  msgid "Show events in:"
1449
  msgstr "Vis begivenheder i:"
1450
 
1451
- #: my-calendar-output.php:653
1452
  msgid "Submit"
1453
  msgstr "Send"
1454
 
1455
- #: my-calendar-styles.php:28
1456
- msgid "Style Settings saved"
1457
- msgstr "Style-indstillinger Gemt"
 
 
 
 
 
 
 
 
1458
 
1459
- #: my-calendar-styles.php:35
 
 
 
 
 
 
 
 
 
 
 
 
1460
  msgid "My Calendar Styles"
1461
  msgstr "My Calendar Styles"
1462
 
1463
- #: my-calendar-styles.php:39
1464
  msgid "Calendar Style Settings"
1465
  msgstr "Kalenders style-indstillinger"
1466
 
1467
- #: my-calendar-styles.php:43
1468
- msgid "Apply CSS only on these pages (comma separated page IDs)"
1469
- msgstr "Vis kun CSS på disse sider (kommaseparerede side-id'er)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1470
 
1471
- #: my-calendar-styles.php:46
1472
  msgid "CSS Style Options"
1473
  msgstr "CSS (stylesheets)"
1474
 
1475
- #: my-calendar-styles.php:48
 
 
 
 
1476
  msgid "Reset the My Calendar stylesheet to the default"
1477
  msgstr "Nulstil My Calendar stylesheets til default"
1478
 
1479
- #: my-calendar-styles.php:48
1480
  msgid "Disable My Calendar Stylesheet"
1481
  msgstr "Deaktiver My Calendar stylesheet"
1482
 
1483
- #: my-calendar-styles.php:51
1484
  msgid "Edit the stylesheet for My Calendar"
1485
  msgstr "Rediger My Calendars stylesheet"
1486
 
1487
- #: my-calendar-help.php:6
1488
  msgid "How to use My Calendar"
1489
  msgstr "Sådan bruger du My Calendar"
1490
 
1491
- #: my-calendar-help.php:11
1492
  msgid "Shortcode Syntax"
1493
  msgstr "Shortcode-syntaks"
1494
 
1495
- #: my-calendar-help.php:14
1496
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1497
  msgstr "Disse shortcodes kan bruges i Indlæg, Sider eller i text widgets."
1498
 
1499
- #: my-calendar-help.php:18
1500
  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."
1501
  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."
1502
 
1503
- #: my-calendar-help.php:22
1504
- msgid "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. Setting <code>shownav</code> to <code>no</code> will disable the Previous/Next links."
1505
- 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>: <code>list</code>, 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ættes <code>showkey</code> til <code>no</code>, forhindrer man kategorinøglen i at blive vist &mdash; dette kan være brugbart ved enkeltkategorioutput. Sættes <code>shownav</code> til <code>no</code> bliver Tidligere/Kommende-linksene ikke vist."
1506
 
1507
- #: my-calendar-help.php:26
1508
  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."
1509
  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."
1510
 
1511
- #: my-calendar-help.php:29
1512
  msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
1513
  msgstr "Forudsigeligt nok viser denne shortcode outputtet fra widgetten Dagens Begivenheder, med to indstillelige attributter: <code>category</code> og <code>template</code>."
1514
 
1515
- #: my-calendar-help.php:32
1516
  msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, or <code>zip</code> (postal code)."
1517
  msgstr "Denne shortcode giver som output en liste over begivenhedssteder, enten som en liste af links eller som en dropdown-menu. Attributten <code>show</code> kan enten sættes til <code>list</code> eller <code>form</code>. Attributten <code>type</code> kan enten være <code>saved</code> (henter data fra dine gemte steder) eller <code>custom</code> (henter data ud fra de indstillinger, der er valgt i hver brugerprofil). Attributten <code>datatype</code> sættes til den datatype, som der begrænses ud fra: <code>name</code> (stednavn), <code>city</code>, <code>country</code> eller <code>zip</code> (postnummer)."
1518
 
1519
- #: my-calendar-help.php:38
1520
  msgid "Category Icons"
1521
  msgstr "Kategoriikoner"
1522
 
1523
- #: my-calendar-help.php:41
1524
  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."
1525
  msgstr "My Calendar er designet til at kunne administrere flere kalendere. Udgangspunktet for dette er kategorier; du kan let opsætte en kalenderside, som inkluderer alle kategorier, eller du kan dedikere separate sider til kalendere i hver kategori. Dette kunne f.eks. være relevant, hvis du skulle administrere tourkalenderne for flere bands eller begivenhedskalenderne for en række forskellige steder."
1526
 
1527
- #: my-calendar-help.php:44
1528
  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."
1529
  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."
1530
 
1531
- #: my-calendar-help.php:44
1532
  msgid "Your icons folder is:"
1533
  msgstr "Din mappe til ikoner er:"
1534
 
1535
- #: my-calendar-help.php:44
1536
  msgid "You can alternately place icons in:"
1537
  msgstr "Du kan alternativt placere ikoner i:"
1538
 
1539
- #: my-calendar-help.php:52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1540
  msgid "Widget Templating"
1541
  msgstr "Widgetskabeloner"
1542
 
1543
- #: my-calendar-help.php:55
1544
- msgid "These codes are available in calendar widgets to create your own custom calendar format."
1545
- msgstr "Disse koder er tilgængelige i kalenderwidgets med henblik på at kunne skabe dit eget tilpassede kalenderformat."
1546
 
1547
- #: my-calendar-help.php:59
1548
  msgid "Displays the name of the category the event is in."
1549
  msgstr "Viser navnet på kategorien, som begivenheden er i."
1550
 
1551
- #: my-calendar-help.php:62
1552
  msgid "Displays the title of the event."
1553
  msgstr "Viser begivenhedens titel."
1554
 
1555
- #: my-calendar-help.php:65
1556
  msgid "Displays the start time for the event."
1557
  msgstr "Viser begivenhedens starttidspunkt."
1558
 
1559
- #: my-calendar-help.php:68
1560
  msgid "Displays the start time for the event adjusted to the current user's time zone settings. Blank output if user settings are disabled or the user has not selected a preferred time zone."
1561
  msgstr "Viser begivenhedens starttidspunkt justeret efter den aktuelle brugers indstillinger for tidszone. Giver tomt output, hvis brugerindstillingerne er slået fra eller brugeren ikke har valgt en foretrukken tidszone."
1562
 
1563
- #: my-calendar-help.php:71
1564
  msgid "Displays the date on which the event begins."
1565
  msgstr "Viser begivenhedens startdato."
1566
 
1567
- #: my-calendar-help.php:74
1568
  msgid "Displays the date on which the event ends."
1569
  msgstr "Viser begivenhedens slutdato."
1570
 
1571
- #: my-calendar-help.php:77
1572
  msgid "Displays the time at which the event ends."
1573
  msgstr "Viser begivenhedens sluttidspunkt."
1574
 
1575
- #: my-calendar-help.php:80
1576
  msgid "Displays the WordPress author who posted the event."
1577
  msgstr "Viser den WordPress-forfatter, der publicerede begivenheden."
1578
 
1579
- #: my-calendar-help.php:83
 
 
 
 
1580
  msgid "Displays the URL provided for the event."
1581
  msgstr "Viser URL'en, der er indtastet i begivenhedens oplysninger."
1582
 
1583
- #: my-calendar-help.php:86
1584
  msgid "Displays the description of the event."
1585
  msgstr "Viser beskrivelsen af begivenhden."
1586
 
1587
- #: my-calendar-help.php:89
1588
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1589
  msgstr "Viser begivenhedens titel som et link, hvis en URL er tilgængelig, eller titlen alene, hvis en URL ikke er tilgængelig."
1590
 
1591
- #: my-calendar-help.php:92
1592
  msgid "Displays the name of the location of the event."
1593
  msgstr "Viser navnet på begivenhedens sted."
1594
 
1595
- #: my-calendar-help.php:95
1596
  msgid "Displays the first line of the site address."
1597
  msgstr "Viser første linie af stedets gadenavn."
1598
 
1599
- #: my-calendar-help.php:98
1600
  msgid "Displays the second line of the site address."
1601
  msgstr "Viser anden linie af stedets gadenavn."
1602
 
1603
- #: my-calendar-help.php:101
1604
  msgid "Displays the city for the event."
1605
  msgstr "Viser bynavnet i begivenhedens stedoplysninger."
1606
 
1607
- #: my-calendar-help.php:104
1608
  msgid "Displays the state for the event."
1609
  msgstr "Viser kommunen i begivenhedens stedoplysninger."
1610
 
1611
- #: my-calendar-help.php:107
1612
  msgid "Displays the postcode for the event."
1613
  msgstr "Viser postnummeret i begivenhedens stedoplysninger."
1614
 
1615
- #: my-calendar-help.php:110
1616
  msgid "Displays the country for the event location."
1617
  msgstr "Viser landet i begivenhedens stedoplysninger."
1618
 
1619
- #: my-calendar-help.php:113
1620
  msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1621
  msgstr "Viser begivenhedens adresse i <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1622
 
1623
- #: my-calendar-help.php:116
1624
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
1625
  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."
1626
 
1627
- #: my-calendar-help.php:119
1628
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
1629
  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."
1630
 
1631
- #: my-calendar-help.php:122
1632
  msgid "Displays the short version of the event description."
1633
  msgstr "Viser den korte beskrivelse af begivenheden."
1634
 
1635
- #: my-calendar-help.php:125
1636
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
1637
  msgstr "Viser begivenhedens aktuelle status: Enten \"Publiceret\" eller \"Reserveret\" - bruges primært i e-mail-skabeloner."
1638
 
1639
- #: my-calendar-help.php:128
1640
  msgid "Produces the address of the current event's category icon."
1641
  msgstr "Giver adressen til den aktuelle begivenheds kategoriikon."
1642
 
1643
- #: my-calendar-help.php:131
1644
  msgid "Produces the hex code for the current event's category color."
1645
  msgstr "Giver hexkoden til den aktuelle begivenheds kategorifarve."
1646
 
1647
- #: my-calendar-widgets.php:11
1648
- #: my-calendar-widgets.php:51
1649
- #: my-calendar-widgets.php:52
 
 
 
1650
  msgid "Today's Events"
1651
  msgstr "Dagens begivenheder"
1652
 
1653
- #: my-calendar-widgets.php:41
1654
- #: my-calendar-widgets.php:126
1655
  msgid "Template"
1656
  msgstr "Skabelon"
1657
 
1658
- #: my-calendar-widgets.php:45
1659
  msgid "Show this text if there are no events today:"
1660
  msgstr "Vis denne tekst, hvis der ikke er begivenheder i dag:"
1661
 
1662
- #: my-calendar-widgets.php:65
1663
- #: my-calendar-widgets.php:152
1664
- #: my-calendar-widgets.php:153
1665
- msgid "Upcoming Events"
1666
- msgstr "Kommende begivenheder"
1667
 
1668
- #: my-calendar-widgets.php:130
 
 
 
 
1669
  msgid "Widget Options"
1670
  msgstr "Widgetindstillinger"
1671
 
1672
- #: my-calendar-widgets.php:132
1673
  msgid "Display upcoming events by:"
1674
  msgstr "Vis kommende begivenheder med:"
1675
 
1676
- #: my-calendar-widgets.php:133
1677
  msgid "Events (e.g. 2 past, 3 future)"
1678
  msgstr "Begivenheder (f.eks. 2 overståede, 3 kommende)"
1679
 
1680
- #: my-calendar-widgets.php:134
1681
  msgid "Dates (e.g. 4 days past, 5 forward)"
1682
  msgstr "Datoer (f.eks. 4 dage bagud, 5 fremad)"
1683
 
1684
- #: my-calendar-widgets.php:138
1685
  msgid "events into the future;"
1686
  msgstr "Begivenheder i den kommende tid;"
1687
 
1688
- #: my-calendar-widgets.php:139
1689
  msgid "events from the past"
1690
  msgstr "Hidtidige begivenheder;"
1691
 
1692
- #: my-calendar-widgets.php:142
1693
- msgid "days into the future;"
1694
- msgstr "dage i den kommende tid;"
1695
-
1696
- #: my-calendar-widgets.php:143
1697
- msgid "days from the past"
1698
- msgstr "hidtidige dage"
1699
 
1700
- #: my-calendar-widgets.php:146
1701
- msgid "Show only this category:"
1702
- msgstr "Vis kun denne kategori:"
1703
-
1704
- #: my-calendar-widgets.php:285
1705
  msgid "There are no events currently scheduled."
1706
  msgstr "Der er ikke planlagt nogen begivenheder p.t."
1707
 
@@ -1721,6 +1837,48 @@ msgstr "Joseph C Dolson"
1721
  msgid "http://www.joedolson.com"
1722
  msgstr "http://www.joedolson.com"
1723
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1724
  #~ msgid "Group this event as a single item"
1725
  #~ msgstr "Grupper denne begivenhed som en enkeltstående begivenhed"
1726
 
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: 2011-01-15 16:08:49+00:00\n"
11
+ "PO-Revision-Date: 2011-01-24 22:42+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"
18
  "X-Poedit-Country: DENMARK\n"
19
  "X-Poedit-SourceCharset: utf-8\n"
20
 
21
+ #: my-calendar-templates.php:188
22
  msgid "Published"
23
  msgstr "Publiceret"
24
 
25
+ #: my-calendar-templates.php:190
26
  msgid "Reserved"
27
  msgstr "Reserveret"
28
 
30
  msgid "My Calendar User Settings"
31
  msgstr "My Calendar brugerindstillinger"
32
 
33
+ #: my-calendar-event-manager.php:28
34
+ #: my-calendar-settings.php:577
35
  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?"
36
  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?"
37
 
38
+ #: my-calendar-event-manager.php:35
39
+ #: my-calendar-settings.php:584
40
  msgid "Import from Calendar"
41
  msgstr "Importer fra Calendar"
42
 
43
+ #: my-calendar-event-manager.php:40
44
  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>!"
45
  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."
46
 
47
+ #: my-calendar-event-manager.php:85
48
+ msgid "%1$d events deleted successfully out of %2$d selected"
49
+ msgstr "%1$d begivenheder slettet med succes, ud af %2$d valgte"
50
+
51
+ #: my-calendar-event-manager.php:87
52
+ #: my-calendar-event-manager.php:241
53
+ #: my-calendar-event-manager.php:263
54
+ #: my-calendar-event-manager.php:277
55
+ #: my-calendar-event-manager.php:286
56
+ #: my-calendar-event-manager.php:871
57
+ #: my-calendar-event-manager.php:874
58
+ #: my-calendar-event-manager.php:877
59
+ #: my-calendar-event-manager.php:887
60
+ #: my-calendar-event-manager.php:895
61
+ #: my-calendar-event-manager.php:911
62
+ #: my-calendar-event-manager.php:917
63
+ msgid "Error"
64
+ msgstr "Fejl"
65
+
66
+ #: my-calendar-event-manager.php:87
67
+ msgid "Your events have not been deleted. Please investigate."
68
+ msgstr "Dine begivenheder er ikke blevet slettet. Undersøg venligst problemet."
69
+
70
+ #: my-calendar-event-manager.php:98
71
  msgid "Delete Event"
72
  msgstr "Slet begivenhed"
73
 
74
+ #: my-calendar-event-manager.php:98
75
  msgid "Are you sure you want to delete this event?"
76
  msgstr "Er du sikker på, at du vil slette denne begivenhed?"
77
 
78
+ #: my-calendar-event-manager.php:104
79
+ #: my-calendar-event-manager.php:732
80
+ #: my-calendar-categories.php:202
81
+ #: my-calendar-categories.php:221
82
+ #: my-calendar-locations.php:156
83
+ #: my-calendar-locations.php:168
84
  msgid "Delete"
85
  msgstr "Slet"
86
 
87
+ #: my-calendar-event-manager.php:112
88
  msgid "You do not have permission to delete that event."
89
  msgstr "Du har ikke tilladelse til at slette denne begivenhed."
90
 
91
+ #: my-calendar-event-manager.php:127
 
92
  msgid "You do not have permission to approve that event."
93
  msgstr "Du har ikke tilladelse til at godkende denne begivenhed."
94
 
95
+ #: my-calendar-event-manager.php:141
 
96
  msgid "You do not have permission to reject that event."
97
  msgstr "Du har ikke tilladelse til at afvise denne begivenhed."
98
 
99
+ #: my-calendar-event-manager.php:170
100
+ #: my-calendar-event-manager.php:326
101
+ msgid "Edit Event"
102
+ msgstr "Rediger begivenhed"
103
+
104
+ #: my-calendar-event-manager.php:174
105
+ #: my-calendar-event-manager.php:183
106
+ msgid "You must provide an event id in order to edit it"
107
+ msgstr "Du skal angive et begivenheds-id for at kunne redigere den"
108
+
109
+ #: my-calendar-event-manager.php:179
110
+ #: my-calendar-event-manager.php:326
111
+ msgid "Copy Event"
112
+ msgstr "Kopier begivenhed"
113
+
114
+ #: my-calendar-event-manager.php:189
115
+ msgid "Add Event"
116
+ msgstr "Tilføj begivenhed"
117
 
118
+ #: my-calendar-event-manager.php:193
119
+ msgid "Manage Events"
120
+ msgstr "Administrer begivenheder"
121
+
122
+ #: my-calendar-event-manager.php:241
123
  msgid "I'm sorry! I couldn't add that event to the database."
124
  msgstr "Beklager! Jeg kunne ikke tilføje den begivenhed til databasen."
125
 
126
+ #: my-calendar-event-manager.php:247
127
  msgid "Event added. It will now show in your calendar."
128
  msgstr "Begivenhed tilføjet. Den vises nu i din kalender."
129
 
130
+ #: my-calendar-event-manager.php:263
131
  msgid "Your event was not updated."
132
  msgstr "Din begivenhed blev ikke opdateret."
133
 
134
+ #: my-calendar-event-manager.php:265
135
  msgid "Nothing was changed in that update."
136
  msgstr "Intet blev ændret i denne opdatering af begivenheden."
137
 
138
+ #: my-calendar-event-manager.php:267
139
  msgid "Event updated successfully"
140
  msgstr "Begivenhed opdateret med succes"
141
 
142
+ #: my-calendar-event-manager.php:270
143
  msgid "You do not have sufficient permissions to edit that event."
144
  msgstr "Du har ikke tilstrækkelige tilladelser til at redigere denne begivenhed."
145
 
146
+ #: my-calendar-event-manager.php:277
147
  msgid "You can't delete an event if you haven't submitted an event id"
148
  msgstr "Du kan ikke redigere en begivenhed, hvis du ikke har sendt et begivenheds-id."
149
 
150
+ #: my-calendar-event-manager.php:284
151
  msgid "Event deleted successfully"
152
  msgstr "Begivenhed slettet med succes"
153
 
154
+ #: my-calendar-event-manager.php:286
155
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
156
  msgstr "Selvom der blev sendt en forespørgsel om sletning, eksisterer begivenheden stadig i databasen. Undersøg venligst."
157
 
158
+ #: my-calendar-event-manager.php:298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  msgid "Sorry! That's an invalid event key."
160
  msgstr "Beklager! Det er et ugyldigt begivenheds-id."
161
 
162
+ #: my-calendar-event-manager.php:302
163
  msgid "Sorry! We couldn't find an event with that ID."
164
  msgstr "Beklager! Vi kunne ikke finde en begivenhed med det id."
165
 
166
+ #: my-calendar-event-manager.php:326
167
  msgid "Add an Event"
168
  msgstr "Tilføj en begivenhed"
169
 
170
+ #: my-calendar-event-manager.php:329
171
  msgid "This event must be approved in order for it to appear on the calendar."
172
  msgstr "Denne begivenhed skal godkendes for at blive vist i kalenderen."
173
 
174
+ #: my-calendar-event-manager.php:338
175
+ msgid "Save Event"
176
+ msgstr "Gem begivenhed"
177
+
178
+ #: my-calendar-event-manager.php:362
179
  msgid "Enter your Event Information"
180
  msgstr "Indtast oplysninger om begivenheden"
181
 
182
+ #: my-calendar-event-manager.php:364
183
  msgid "Event Title"
184
  msgstr "Begivenhedens titel"
185
 
186
+ #: my-calendar-event-manager.php:364
187
+ #: my-calendar-event-manager.php:456
188
+ msgid "(required)"
189
+ msgstr "(påkrævet)"
190
+
191
+ #: my-calendar-event-manager.php:368
192
  msgid "Publish"
193
  msgstr "Publicer"
194
 
195
+ #: my-calendar-event-manager.php:368
196
  msgid "You must approve this event to promote it to the calendar."
197
  msgstr "Du skal godkende denne begivenhed for at den bliver vist i kalenderen."
198
 
199
+ #: my-calendar-event-manager.php:370
200
  msgid "An administrator must approve your new event."
201
  msgstr "En administrator skal godkende din nye begivenhed."
202
 
203
+ #: my-calendar-event-manager.php:383
204
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
205
  msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
206
 
208
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
209
  msgstr "Kort beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
210
 
211
+ #: my-calendar-event-manager.php:400
212
  msgid "Event Host"
213
  msgstr "Begivenhedens vært"
214
 
215
+ #: my-calendar-event-manager.php:419
216
  msgid "Event Category"
217
  msgstr "Begivenheds kategori"
218
 
219
+ #: my-calendar-event-manager.php:444
220
  msgid "Event Link (Optional)"
221
  msgstr "Begivenhedslink (valgfri)"
222
 
223
+ #: my-calendar-event-manager.php:444
224
  msgid "This link will expire when the event passes."
225
  msgstr "Dette link udløber, når begivenheden er overstået."
226
 
227
+ #: my-calendar-event-manager.php:452
228
+ msgid "Event Date and Time"
229
+ msgstr "Begivenheds dato og tidspunkt"
230
+
231
+ #: my-calendar-event-manager.php:454
232
+ msgid "Enter the beginning and ending information for the first occurrence of this event."
233
+ msgstr "Indtast start- og slutoplysninger for denne begivenheds første forekomst."
234
+
235
+ #: my-calendar-event-manager.php:456
236
  msgid "Start Date (YYYY-MM-DD)"
237
  msgstr "Startdato (ÅÅÅÅ-MM-DD)"
238
 
239
+ #: my-calendar-event-manager.php:456
 
 
 
 
240
  msgid "Time (hh:mm)"
241
  msgstr "Tidspunkt (tt:mm)"
242
 
243
+ #: my-calendar-event-manager.php:465
244
+ msgid "End Date (YYYY-MM-DD)"
245
+ msgstr "Slutdato (ÅÅÅÅ-MM-DD)"
246
+
247
+ #: my-calendar-event-manager.php:465
248
+ msgid "End Time (hh:mm)"
249
+ msgstr "Sluttidspunkt (tt:mm)"
250
 
251
  #: my-calendar-event-manager.php:473
252
  msgid "Current time difference from GMT is "
256
  msgid " hour(s)"
257
  msgstr " time(r)."
258
 
259
+ #: my-calendar-event-manager.php:482
 
 
 
 
 
 
 
 
260
  msgid "Recurring Events"
261
  msgstr "Tilbagevendende begivenheder"
262
 
263
+ #: my-calendar-event-manager.php:485
264
  msgid "Repeats for"
265
  msgstr "Gentages"
266
 
267
+ #: my-calendar-event-manager.php:486
268
  msgid "Units"
269
  msgstr "gange"
270
 
271
+ #: my-calendar-event-manager.php:487
272
  msgid "Does not recur"
273
  msgstr "Gentages ikke"
274
 
275
+ #: my-calendar-event-manager.php:488
276
+ #: my-calendar-event-manager.php:706
277
  msgid "Daily"
278
  msgstr "Dagligt"
279
 
280
+ #: my-calendar-event-manager.php:489
281
+ #: my-calendar-event-manager.php:707
282
  msgid "Weekly"
283
  msgstr "Ugentligt"
284
 
285
+ #: my-calendar-event-manager.php:490
286
  msgid "Bi-weekly"
287
  msgstr "Hveranden uge"
288
 
289
+ #: my-calendar-event-manager.php:491
290
  msgid "Date of Month (e.g., the 24th of each month)"
291
  msgstr "Dato i måneden (f.eks. den 24. i hver måned)"
292
 
293
+ #: my-calendar-event-manager.php:492
294
  msgid "Day of Month (e.g., the 3rd Monday of each month)"
295
  msgstr "Dag i måneden (f.eks. den 3. mandag i hver måned)"
296
 
297
+ #: my-calendar-event-manager.php:493
298
  msgid "Annually"
299
  msgstr "Årligt"
300
 
301
+ #: my-calendar-event-manager.php:495
302
+ msgid "Enter \"0\" if the event should recur indefinitely."
303
+ msgstr "Indtast \"0\", hvis begivenheden er tilbagevendende og uden slutdato."
304
 
305
+ #: my-calendar-event-manager.php:512
306
  msgid "Event Registration Status"
307
  msgstr "Status for tilmelding til begivenhed"
308
 
309
+ #: my-calendar-event-manager.php:513
310
+ msgid "My Calendar does not manage event registrations. Use this for information only."
311
+ msgstr "My Calendar administrerer ikke tilmeldinger til begivenheder. Brug kun dette til at give information."
312
+
313
+ #: my-calendar-event-manager.php:515
314
  msgid "Open"
315
  msgstr "Åben"
316
 
317
+ #: my-calendar-event-manager.php:516
318
  msgid "Closed"
319
  msgstr "Lukket"
320
 
321
+ #: my-calendar-event-manager.php:517
322
  msgid "Does not apply"
323
  msgstr "Ikke relevant"
324
 
325
+ #: my-calendar-event-manager.php:520
326
  msgid "If this event recurs, it can only be registered for as a complete series."
327
  msgstr "Hvis denne begivenhed gentages, kan tilmelding kun ske til den samlede serie af begivenheder."
328
 
329
+ #: my-calendar-event-manager.php:537
330
+ #: my-calendar-locations.php:87
331
  msgid "Event Location"
332
  msgstr "Begivenhedens sted"
333
 
334
+ #: my-calendar-event-manager.php:544
335
  msgid "Choose a preset location:"
336
  msgstr "Vælg et forudindstillet sted:"
337
 
338
+ #: my-calendar-event-manager.php:557
339
  msgid "Add recurring locations for later use."
340
  msgstr "Tilføj tilbagevendende steder til senere brug."
341
 
342
+ #: my-calendar-event-manager.php:566
343
+ #: my-calendar-locations.php:89
344
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
345
  msgstr "Alle stedrelaterede felter er valgfri: <em>Utilstrækkelige oplysninger kan resultere i et upræcist kort</em>."
346
 
347
+ #: my-calendar-event-manager.php:569
348
+ #: my-calendar-locations.php:92
349
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
350
  msgstr "Stednavn (f.eks. <em>Joe's Bar & Grill</em>)"
351
 
352
+ #: my-calendar-event-manager.php:572
353
+ #: my-calendar-locations.php:95
354
  msgid "Street Address"
355
  msgstr "Gadenavn"
356
 
357
+ #: my-calendar-event-manager.php:575
358
+ #: my-calendar-locations.php:98
359
  msgid "Street Address (2)"
360
  msgstr "Gadenavn (2)"
361
 
362
+ #: my-calendar-event-manager.php:578
363
+ #: my-calendar-settings.php:556
364
+ #: my-calendar-locations.php:101
365
  msgid "City"
366
  msgstr "By"
367
 
368
+ #: my-calendar-event-manager.php:578
369
+ #: my-calendar-settings.php:557
370
+ #: my-calendar-locations.php:101
371
  msgid "State/Province"
372
  msgstr "Stat/Provins"
373
 
374
+ #: my-calendar-event-manager.php:578
375
+ #: my-calendar-settings.php:559
376
+ #: my-calendar-locations.php:101
377
  msgid "Postal Code"
378
  msgstr "Postnummer"
379
 
380
+ #: my-calendar-event-manager.php:581
381
+ #: my-calendar-settings.php:558
382
+ #: my-calendar-locations.php:104
383
  msgid "Country"
384
  msgstr "Land"
385
 
386
+ #: my-calendar-event-manager.php:584
387
+ #: my-calendar-locations.php:107
388
  msgid "Initial Zoom"
389
  msgstr "Indledende Zoom"
390
 
391
+ #: my-calendar-event-manager.php:586
392
+ #: my-calendar-locations.php:109
393
  msgid "Neighborhood"
394
  msgstr "Nabolag"
395
 
396
+ #: my-calendar-event-manager.php:587
397
+ #: my-calendar-locations.php:110
398
  msgid "Small City"
399
  msgstr "Lille By"
400
 
401
+ #: my-calendar-event-manager.php:588
402
+ #: my-calendar-locations.php:111
403
  msgid "Large City"
404
  msgstr "Stor By"
405
 
406
+ #: my-calendar-event-manager.php:589
407
+ #: my-calendar-locations.php:112
408
  msgid "Greater Metro Area"
409
  msgstr "Større byområde"
410
 
411
+ #: my-calendar-event-manager.php:590
412
+ #: my-calendar-locations.php:113
413
  msgid "State"
414
  msgstr "Kommune"
415
 
416
+ #: my-calendar-event-manager.php:591
417
+ #: my-calendar-locations.php:114
418
  msgid "Region"
419
  msgstr "Region"
420
 
421
+ #: my-calendar-event-manager.php:595
422
+ #: my-calendar-locations.php:118
423
  msgid "GPS Coordinates (optional)"
424
  msgstr "GPS-koordinater (valgfri)"
425
 
426
+ #: my-calendar-event-manager.php:597
427
  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."
428
  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."
429
 
430
+ #: my-calendar-event-manager.php:600
431
+ #: my-calendar-locations.php:123
432
  msgid "Longitude"
433
  msgstr "Længdegrad"
434
 
435
+ #: my-calendar-event-manager.php:600
436
+ #: my-calendar-locations.php:123
437
  msgid "Latitude"
438
  msgstr "Breddegrad"
439
 
440
+ #: my-calendar-event-manager.php:666
441
+ msgid "Table of Calendar Events"
442
+ msgstr "Tabel over begivenheder i kalenderen"
443
 
444
+ #: my-calendar-event-manager.php:669
445
+ #: my-calendar-categories.php:197
446
+ #: my-calendar-locations.php:153
447
  msgid "ID"
448
  msgstr "id"
449
 
450
+ #: my-calendar-event-manager.php:670
451
+ #: my-calendar-widgets.php:32
452
+ #: my-calendar-widgets.php:98
453
  msgid "Title"
454
  msgstr "Titel"
455
 
456
+ #: my-calendar-event-manager.php:671
457
+ #: my-calendar-locations.php:154
 
 
 
 
458
  msgid "Location"
459
  msgstr "Sted"
460
 
461
+ #: my-calendar-event-manager.php:672
462
  msgid "Description"
463
  msgstr "Beskrivelse"
464
 
465
+ #: my-calendar-event-manager.php:673
466
  msgid "Start Date"
467
  msgstr "Startdato"
468
 
469
+ #: my-calendar-event-manager.php:674
470
  msgid "Recurs"
471
  msgstr "Gentages"
472
 
473
+ #: my-calendar-event-manager.php:675
474
+ #: my-calendar-settings.php:270
475
+ #: my-calendar-settings.php:279
476
+ #: my-calendar-settings.php:287
477
  msgid "Author"
478
  msgstr "Forfatter"
479
 
480
+ #: my-calendar-event-manager.php:676
481
  msgid "Category"
482
  msgstr "Kategori"
483
 
484
+ #: my-calendar-event-manager.php:677
485
  msgid "Edit / Delete"
486
  msgstr "Rediger / Slet"
487
 
488
+ #: my-calendar-event-manager.php:705
489
  msgid "Never"
490
  msgstr "Aldrig"
491
 
492
+ #: my-calendar-event-manager.php:708
493
  msgid "Bi-Weekly"
494
  msgstr "Hveranden uge"
495
 
496
+ #: my-calendar-event-manager.php:709
497
  msgid "Monthly (by date)"
498
  msgstr "Månedlig (efter dato)"
499
 
500
+ #: my-calendar-event-manager.php:710
501
  msgid "Monthly (by day)"
502
  msgstr "Månedlig (efter dag)"
503
 
504
+ #: my-calendar-event-manager.php:711
505
  msgid "Yearly"
506
  msgstr "Årligt"
507
 
508
+ #: my-calendar-event-manager.php:713
509
+ #: my-calendar-settings.php:308
510
+ #: my-calendar-categories.php:218
511
+ #: my-calendar-output.php:125
512
  msgid "N/A"
513
  msgstr "Ikke oplyst"
514
 
515
+ #: my-calendar-event-manager.php:714
516
  msgid "Forever"
517
  msgstr "Altid"
518
 
519
+ #: my-calendar-event-manager.php:715
520
  msgid "Times"
521
  msgstr "gange"
522
 
523
+ #: my-calendar-event-manager.php:730
524
  msgid "Copy"
525
  msgstr "Kopier"
526
 
527
+ #: my-calendar-event-manager.php:732
528
+ #: my-calendar-categories.php:201
529
+ #: my-calendar-categories.php:215
530
+ #: my-calendar-locations.php:155
531
+ #: my-calendar-locations.php:167
532
  msgid "Edit"
533
  msgstr "Rediger"
534
 
535
+ #: my-calendar-event-manager.php:733
536
  msgid "Not editable."
537
  msgstr "Ikke redigerbar."
538
 
539
+ #: my-calendar-event-manager.php:739
540
  msgid "Reject"
541
  msgstr "Afvis"
542
 
543
+ #: my-calendar-event-manager.php:741
544
  msgid "Approve"
545
  msgstr "Godkend"
546
 
547
+ #: my-calendar-event-manager.php:746
548
  msgid "Approved"
549
  msgstr "Godkendt"
550
 
551
+ #: my-calendar-event-manager.php:748
552
  msgid "Rejected"
553
  msgstr "Afvist"
554
 
555
+ #: my-calendar-event-manager.php:750
556
  msgid "Awaiting Approval"
557
  msgstr "Afventer godkendelse"
558
 
559
+ #: my-calendar-event-manager.php:766
560
  msgid "There are no events in the database!"
561
  msgstr "Der er ingen begivenheder i databasen!"
562
 
563
+ #: my-calendar-event-manager.php:871
564
  msgid "Your event end date must be either after or the same as your event begin date"
565
  msgstr "Din begivenheds slutdato må enten ligge efter eller være lig med begivenhedens startdato."
566
 
567
+ #: my-calendar-event-manager.php:874
568
  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."
569
  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."
570
 
571
+ #: my-calendar-event-manager.php:877
572
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
573
  msgstr "Både start- og slutdato skal være i formatet ÅÅÅÅ-MM-DD"
574
 
575
+ #: my-calendar-event-manager.php:887
576
  msgid "The time field must either be blank or be entered in the format hh:mm"
577
  msgstr "Feltet for tidspunkt skal enten være blankt eller indtastes i formatet tt:mm"
578
 
579
+ #: my-calendar-event-manager.php:895
580
  msgid "The end time field must either be blank or be entered in the format hh:mm"
581
  msgstr "Feltet for slutdato skal enten være blankt eller indtastes i formatet tt:mm"
582
 
583
+ #: my-calendar-event-manager.php:911
 
 
 
 
584
  msgid "The event title must be between 1 and 255 characters in length."
585
  msgstr "Begivenhedens titel skal være mellem 1 og 255 tegn i længde."
586
 
587
+ #: my-calendar-event-manager.php:917
588
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
589
  msgstr "Værdien for gentagelse skal være 0, medmindre der er er valgt en type af gentagelse."
590
 
591
+ #: my-calendar-settings.php:82
592
  msgid "Categories imported successfully."
593
  msgstr "Kategorier importeret med succes"
594
 
595
+ #: my-calendar-settings.php:84
596
  msgid "Categories not imported."
597
  msgstr "Kategorier blev ikke importeret"
598
 
599
+ #: my-calendar-settings.php:87
600
  msgid "Events imported successfully."
601
  msgstr "Begivenheder importeret med succes"
602
 
603
+ #: my-calendar-settings.php:89
604
  msgid "Events not imported."
605
  msgstr "Begivenheder blev ikke importeret"
606
 
607
+ #: my-calendar-settings.php:121
608
  msgid "Permissions Settings saved"
609
  msgstr "Indstillinger for tilladelser gemt"
610
 
611
+ #: my-calendar-settings.php:169
612
  msgid "Output Settings saved"
613
  msgstr "Outputindstillinger gemt"
614
 
615
+ #: my-calendar-settings.php:187
616
  msgid "Input Settings saved"
617
  msgstr "Inputindstillinger gemt"
618
 
619
+ #: my-calendar-settings.php:203
620
  msgid "Custom text settings saved"
621
  msgstr "Indstillinger for tekst gemt"
622
 
623
+ #: my-calendar-settings.php:216
624
  msgid "Email notice settings saved"
625
  msgstr "Indstillinger for e-mail-notifikationer gemt"
626
 
627
+ #: my-calendar-settings.php:230
628
  msgid "User custom settings saved"
629
  msgstr "Indstillinger for brugere gemt"
630
 
631
+ #: my-calendar-settings.php:255
632
  msgid "My Calendar Options"
633
  msgstr "My Calendar indstillinger"
634
 
635
+ #: my-calendar-settings.php:258
636
  msgid "Calendar Settings"
637
  msgstr "Kalenderindstillinger"
638
 
639
+ #: my-calendar-settings.php:260
640
  msgid "Calendar Management Settings"
641
  msgstr "Indstillinger for kalenderadministration"
642
 
643
+ #: my-calendar-settings.php:265
644
  msgid "Calendar Options: Management"
645
  msgstr "Kalenderindstillinger: Administration"
646
 
647
+ #: my-calendar-settings.php:267
648
  msgid "Choose the lowest user group that may create events"
649
  msgstr "Vælg den laveste brugergruppe, der må oprette begivenheder"
650
 
651
+ #: my-calendar-settings.php:268
652
+ #: my-calendar-settings.php:277
653
  msgid "Subscriber"
654
  msgstr "Abonnent"
655
 
656
+ #: my-calendar-settings.php:269
657
+ #: my-calendar-settings.php:278
658
+ #: my-calendar-settings.php:286
659
  msgid "Contributor"
660
  msgstr "Bidragyder"
661
 
662
+ #: my-calendar-settings.php:271
663
+ #: my-calendar-settings.php:280
664
+ #: my-calendar-settings.php:288
665
  msgid "Editor"
666
  msgstr "Redaktør"
667
 
668
+ #: my-calendar-settings.php:272
669
+ #: my-calendar-settings.php:281
670
+ #: my-calendar-settings.php:289
671
  msgid "Administrator"
672
  msgstr "Administrator"
673
 
674
+ #: my-calendar-settings.php:276
675
  msgid "Choose the lowest user group that may approve events"
676
  msgstr "Vælg den laveste brugergruppe, der må godkende begivenheder"
677
 
678
+ #: my-calendar-settings.php:282
679
  msgid "Enable approval options."
680
  msgstr "Aktiver indstillinger for godkendelse."
681
 
682
+ #: my-calendar-settings.php:285
683
+ msgid "Choose the lowest user group that may edit or delete any event"
684
+ msgstr "Vælg den laveste brugergruppe, der må redigere eller slette enhver begivenhed"
685
+
686
+ #: my-calendar-settings.php:291
687
+ msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
688
+ msgstr "Per default kan kun administratorer redigere og slette enhver begivenhed. Andre brugere kan kun redigere og slette begivenheder, som de selv har oprettet."
689
+
690
+ #: my-calendar-settings.php:295
691
  msgid "Save Approval Settings"
692
  msgstr "Gem indstillinger for godkendelse"
693
 
694
+ #: my-calendar-settings.php:301
695
  msgid "Calendar Text Settings"
696
  msgstr "Indstillinger for kalenderens tekst"
697
 
698
+ #: my-calendar-settings.php:306
699
  msgid "Calendar Options: Customize Text"
700
  msgstr "Kalenderindstillinger: Tilret tekst"
701
 
702
+ #: my-calendar-settings.php:308
703
  msgid "Label for events without a specific time"
704
  msgstr "Etiket for begivenheder uden et specifikt tidspunkt"
705
 
706
+ #: my-calendar-settings.php:311
707
  msgid "Previous events link text"
708
  msgstr "Linktekst for tidligere begivenheder"
709
 
710
+ #: my-calendar-settings.php:311
711
  msgid "Previous Events"
712
  msgstr "Tidligere begivenheder"
713
 
714
+ #: my-calendar-settings.php:314
715
  msgid "Next events link text"
716
  msgstr "Linktekst for kommende begivenheder"
717
 
718
+ #: my-calendar-settings.php:314
719
  msgid "Next Events"
720
  msgstr "Kommende begivenheder"
721
 
722
+ #: my-calendar-settings.php:317
723
  msgid "Text when events are open"
724
  msgstr "Tekst, der vises når der er åbent for tilmelding"
725
 
726
+ #: my-calendar-settings.php:317
727
  msgid "Registration is open"
728
  msgstr "Der er åbent for tilmelding"
729
 
730
+ #: my-calendar-settings.php:320
731
  msgid "Text when events are closed"
732
  msgstr "Tekst, der vises, når der er lukket for tilmelding"
733
 
734
+ #: my-calendar-settings.php:320
735
  msgid "Registration is closed"
736
  msgstr "Der er lukket for tilmelding"
737
 
738
+ #: my-calendar-settings.php:323
739
  msgid "Additional caption text"
740
  msgstr "Yderligere forklarende tekst"
741
 
742
+ #: my-calendar-settings.php:323
743
  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."
744
  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."
745
 
746
+ #: my-calendar-settings.php:327
747
  msgid "Save Custom Text Settings"
748
  msgstr "Gem indstillinger for tekst"
749
 
750
+ #: my-calendar-settings.php:333
751
  msgid "Calendar Output Settings"
752
  msgstr "Indstillinger for output"
753
 
754
+ #: my-calendar-settings.php:338
755
  msgid "Calendar Options: Output"
756
  msgstr "Kalenderindstillinger: Output"
757
 
758
+ #: my-calendar-settings.php:340
759
  msgid "Event title template"
760
  msgstr "Skabelon for begivenhedstitel"
761
 
762
+ #: my-calendar-settings.php:342
763
+ #: my-calendar-settings.php:481
764
  msgid "Shortcode Help"
765
  msgstr "Hjælp til shortcodes"
766
 
767
+ #: my-calendar-settings.php:342
768
+ #: my-calendar-settings.php:481
769
  msgid "All template shortcodes are available."
770
  msgstr "Alle skabelon-shortcodes er tilgængelige."
771
 
772
+ #: my-calendar-settings.php:345
773
  msgid "Show Heading for Calendar"
774
  msgstr "Vis overskrift i kalender"
775
 
776
+ #: my-calendar-settings.php:348
777
  msgid "In list mode, show how many months of events at a time:"
778
  msgstr "Hvor mange måneders begivenheder skal vises i listevisning ad gangen:"
779
 
780
+ #: my-calendar-settings.php:351
781
  msgid "Date format in list mode"
782
  msgstr "Datoformat i listevisning"
783
 
784
+ #: my-calendar-settings.php:352
785
  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."
786
  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."
787
 
788
+ #: my-calendar-settings.php:355
789
  msgid "Do you want to display the author name on events?"
790
  msgstr "Ønsker du at vise forfatterens navn i begivenheder?"
791
 
792
+ #: my-calendar-settings.php:358
793
  msgid "Display a jumpbox for changing month and year quickly?"
794
  msgstr "Vis en popup-boks til hurtig ændring af måned og år?"
795
 
796
+ #: my-calendar-settings.php:361
797
  msgid "Hide category icons in output"
798
  msgstr "Skjul kategoriikoner i output"
799
 
800
+ #: my-calendar-settings.php:364
801
  msgid "Show Link to Google Map (when sufficient address information is available.)"
802
  msgstr "Vis link til Google Maps (når tilstrækkelige adresseoplysninger er tilgængelige)"
803
 
804
+ #: my-calendar-settings.php:367
805
  msgid "Show Event Address in Details"
806
  msgstr "Vis begivenhedsadresse i detaljer"
807
 
808
+ #: my-calendar-settings.php:370
809
  msgid "Show short description field on calendar."
810
  msgstr "Vis den korte beskrivelse i kalenderen."
811
 
812
+ #: my-calendar-settings.php:373
813
  msgid "Show full description field on calendar."
814
  msgstr "Vis den fulde beskrivelse i kalenderen."
815
 
816
+ #: my-calendar-settings.php:376
817
  msgid "Links associated with events will automatically expire after the event has passed."
818
  msgstr "Links associeret med begivenheder vil automatisk udløbe efter en begivenhed er overstået."
819
 
820
+ #: my-calendar-settings.php:379
821
  msgid "Show current availability status of events."
822
  msgstr "Vis begivenhedernes aktuelle status for tilgængelighed."
823
 
824
+ #: my-calendar-settings.php:382
825
+ msgid "Show link to My Calendar RSS feed."
826
+ msgstr "Vis link til My Calendar RSS-feed."
827
+
828
+ #: my-calendar-settings.php:385
829
+ msgid "Show link to iCal format download."
830
+ msgstr "Vis link til download i iCal-format."
831
+
832
+ #: my-calendar-settings.php:388
833
  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."
834
  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."
835
 
836
+ #: my-calendar-settings.php:389
837
  msgid "If this option is unchecked, recurring events which fall on dates which don't exist will simply not be shown on the calendar."
838
  msgstr "Hvis denne indstilling ikke er markeret, vil tilbagevendende begivenheder, der falder på ikke-eksisterende datoer, ikke blive vist på kalenderen."
839
 
840
+ #: my-calendar-settings.php:392
841
+ msgid "If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
842
+ msgstr "Vis ikke en begivenhed, hvis den ligger samtidigt med en begivenhed i den kategori, der er gjort til \"Ferie\"-kategori."
843
+
844
+ #: my-calendar-settings.php:395
845
+ msgid "Holiday Category"
846
+ msgstr "Feriekategori"
847
+
848
+ #: my-calendar-settings.php:413
849
  msgid "Calendar Options: Style"
850
  msgstr "Kalenderindstillinger: Output"
851
 
852
+ #: my-calendar-settings.php:415
853
  msgid "Default usage of category colors."
854
  msgstr "Standard brug af kategorifarver"
855
 
856
+ #: my-calendar-settings.php:416
857
  msgid "Apply category colors to event titles as a font color."
858
  msgstr "Brug kategorifarver som skriftfarve i begivenhedstitler."
859
 
860
+ #: my-calendar-settings.php:417
861
  msgid "Apply category colors to event titles as a background color."
862
  msgstr "Brug kategorifarver som baggrundsfarve i begivenhedstitler"
863
 
864
+ #: my-calendar-settings.php:421
865
  msgid "Save Output Settings"
866
  msgstr "Gem outputindstillinger"
867
 
868
+ #: my-calendar-settings.php:427
869
  msgid "Calendar Input Settings"
870
  msgstr "Indstillinger for input"
871
 
872
+ #: my-calendar-settings.php:432
873
  msgid "Calendar Options: Input"
874
  msgstr "Kalenderindstillinger: Output"
875
 
876
+ #: my-calendar-settings.php:437
877
  msgid "Show Event Location Dropdown Menu"
878
  msgstr "Vis begivenhedssted i dropdownmenu"
879
 
880
+ #: my-calendar-settings.php:437
881
  msgid "Show Event Short Description field"
882
  msgstr "Vis feltet \"Kort beskrivelse af begivenhed\""
883
 
884
+ #: my-calendar-settings.php:437
885
  msgid "Show Event Description Field"
886
  msgstr "Vis feltet \"Beskrivelse af begivenhed\""
887
 
888
+ #: my-calendar-settings.php:437
889
  msgid "Show Event Category field"
890
  msgstr "Begivenheds kategori"
891
 
892
+ #: my-calendar-settings.php:437
893
  msgid "Show Event Link field"
894
  msgstr "Vis feltet \"Begivenhedslink\""
895
 
896
+ #: my-calendar-settings.php:437
897
  msgid "Show Event Recurrence Options"
898
  msgstr "Vis indstillinger for tilbagevendende begivenheder"
899
 
900
+ #: my-calendar-settings.php:437
901
  msgid "Show event registration options"
902
  msgstr "Vis indstillinger for tilmelding til begivenheder"
903
 
904
+ #: my-calendar-settings.php:437
905
  msgid "Show event location fields"
906
  msgstr "Begivenhedens sted"
907
 
908
+ #: my-calendar-settings.php:450
909
  msgid "Administrators see all input options"
910
  msgstr "Lad administratorer se alle inputmuligheder"
911
 
912
+ #: my-calendar-settings.php:454
913
  msgid "Save Input Settings"
914
  msgstr "Gem indstillinger for input"
915
 
916
+ #: my-calendar-settings.php:460
917
  msgid "Calendar Email Settings"
918
  msgstr "Indstillinger for e-mail-notifikationer"
919
 
920
+ #: my-calendar-settings.php:465
921
  msgid "Calendar Options: Email Notifications"
922
  msgstr "Kalenderindstillinger: Notifikationer pr. e-mail"
923
 
924
+ #: my-calendar-settings.php:469
925
  msgid "Send Email Notifications when new events are scheduled or reserved."
926
  msgstr "Send notifikationer pr. e-mail, når nye begivenheder publiceres eller reserveres."
927
 
928
+ #: my-calendar-settings.php:472
929
  msgid "Notification messages are sent to: "
930
  msgstr "Notifikationer pr. e-mail sendes til: "
931
 
932
+ #: my-calendar-settings.php:476
933
  msgid "Email subject"
934
  msgstr "E-mail emne"
935
 
936
+ #: my-calendar-settings.php:476
937
  msgid "New event Added"
938
  msgstr "Ny begivenhed tilføjet"
939
 
940
+ #: my-calendar-settings.php:480
941
  msgid "Message Body"
942
  msgstr "E-mail indhold"
943
 
944
+ #: my-calendar-settings.php:480
945
  msgid "New Event:"
946
  msgstr "Ny begivenhed:"
947
 
948
+ #: my-calendar-settings.php:485
949
  msgid "Save Email Settings"
950
  msgstr "Gem indstillinger for e-mail-notifikationer"
951
 
952
+ #: my-calendar-settings.php:491
953
  msgid "Calendar User Settings"
954
  msgstr "Indstillinger for brugere"
955
 
956
+ #: my-calendar-settings.php:498
957
  msgid "My Calendar: User Settings"
958
  msgstr "My Calendar: Brugerindstillinger"
959
 
960
+ #: my-calendar-settings.php:501
961
  msgid "Allow registered users to provide timezone or location presets in their user profiles."
962
  msgstr "Tillad registrerede brugere at forudindstille værdier for tidszone eller sted i deres brugerprofiler."
963
 
964
+ #: my-calendar-settings.php:513
965
  msgid "Timezone Settings"
966
  msgstr "Indstillinger for tidszone"
967
 
968
+ #: my-calendar-settings.php:514
969
  msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
970
  msgstr "Disse indstillinger giver registrerede brugere muligheden for at vælge en tidszone i deres brugerprofil. Når brugeren ser din kalender, bliver begivenhedernes tidspunkt vist i brugerens tidszone såvel som den indtastede værdi."
971
 
972
+ #: my-calendar-settings.php:516
973
  msgid "Enable Timezone"
974
  msgstr "Brug tidszone"
975
 
976
+ #: my-calendar-settings.php:519
977
  msgid "Select Timezone Label"
978
  msgstr "Vælg tidszoneetiket"
979
 
980
+ #: my-calendar-settings.php:522
981
  msgid "Timezone Options"
982
  msgstr "Tidszone valgmuligheder"
983
 
984
+ #: my-calendar-settings.php:522
985
+ #: my-calendar-settings.php:543
986
  msgid "Value, Label; one per line"
987
  msgstr "Værdi; Etiket; én per linie"
988
 
989
+ #: my-calendar-settings.php:534
990
  msgid "Location Settings"
991
  msgstr "Indstillinger for steder"
992
 
993
+ #: my-calendar-settings.php:535
994
  msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter."
995
  msgstr "Disse indstillinger giver registrerede brugere muligheden for at vælge et sted i deres brugerprofil. Når brugeren ser din kalender, er visningen som udgangspunkt begrænset til steder, der inkluderer det indtastede sted."
996
 
997
+ #: my-calendar-settings.php:537
998
  msgid "Enable Location"
999
  msgstr "Brug sted"
1000
 
1001
+ #: my-calendar-settings.php:540
1002
  msgid "Select Location Label"
1003
  msgstr "Vælg etiket for sted"
1004
 
1005
+ #: my-calendar-settings.php:543
1006
  msgid "Location Options"
1007
  msgstr "Sted valgmuligheder"
1008
 
1009
+ #: my-calendar-settings.php:553
1010
  msgid "Location Type"
1011
  msgstr "Stedtype"
1012
 
1013
+ #: my-calendar-settings.php:555
1014
  msgid "Location Name"
1015
  msgstr "Stednavn"
1016
 
1017
+ #: my-calendar-settings.php:567
1018
  msgid "Save User Settings"
1019
  msgstr "Gem indstillinger for brugere"
1020
 
1035
  msgid "My Calendar Database is updated."
1036
  msgstr "My Calendars database er opdateret."
1037
 
1038
+ #: my-calendar-categories.php:80
1039
  msgid "Category added successfully"
1040
  msgstr "Kategori tilføjet med succes"
1041
 
1042
+ #: my-calendar-categories.php:82
1043
  msgid "Category addition failed."
1044
  msgstr "Tilføjelse af kategori fejlede."
1045
 
1046
+ #: my-calendar-categories.php:92
1047
  msgid "Category deleted successfully. Categories in calendar updated."
1048
  msgstr "Kategori slettet med succes. Kalenderens kategorier er opdateret."
1049
 
1050
+ #: my-calendar-categories.php:94
1051
  msgid "Category deleted successfully. Categories in calendar not updated."
1052
  msgstr "Kategori slettet med succes. Kalenderens kategorier er ikke opdateret."
1053
 
1054
+ #: my-calendar-categories.php:96
1055
  msgid "Category not deleted. Categories in calendar updated."
1056
  msgstr "Kategori ikke slettet. Kalenderens kategorier er opdateret."
1057
 
1058
+ #: my-calendar-categories.php:105
1059
  msgid "Category edited successfully"
1060
  msgstr "Kategori redigeret med succes"
1061
 
 
 
1062
  #: my-calendar-categories.php:130
1063
+ #: my-calendar-categories.php:155
1064
+ #: my-calendar-categories.php:172
1065
  msgid "Add Category"
1066
  msgstr "Tilføj kategori"
1067
 
1068
+ #: my-calendar-categories.php:132
1069
+ #: my-calendar-categories.php:155
1070
  msgid "Edit Category"
1071
  msgstr "Rediger kategori"
1072
 
1073
+ #: my-calendar-categories.php:139
1074
  msgid "Category Editor"
1075
  msgstr "Kategoriredigering"
1076
 
 
1077
  #: my-calendar-categories.php:156
1078
+ #: my-calendar-categories.php:198
1079
  msgid "Category Name"
1080
  msgstr "Kategorinavn"
1081
 
1082
+ #: my-calendar-categories.php:157
1083
  msgid "Category Color (Hex format)"
1084
  msgstr "Kategorifarve (Hex format)"
1085
 
 
1086
  #: my-calendar-categories.php:158
1087
+ #: my-calendar-categories.php:200
1088
  msgid "Category Icon"
1089
  msgstr "Kategoriikon"
1090
 
1091
+ #: my-calendar-categories.php:172
1092
+ #: my-calendar-locations.php:127
1093
  msgid "Save Changes"
1094
  msgstr "Gem ændringer"
1095
 
1096
+ #: my-calendar-categories.php:185
1097
+ #: my-calendar.php:224
1098
  msgid "Manage Categories"
1099
  msgstr "Administrer kategorier"
1100
 
1101
+ #: my-calendar-categories.php:199
1102
  msgid "Category Color"
1103
  msgstr "Kategorifarve"
1104
 
1105
+ #: my-calendar-categories.php:221
1106
+ #: my-calendar-locations.php:168
1107
  msgid "Are you sure you want to delete this category?"
1108
  msgstr "Er du sikker på, at du vil slette denne kategori?"
1109
 
1110
+ #: my-calendar-categories.php:232
1111
  msgid "There are no categories in the database - something has gone wrong!"
1112
  msgstr "Der er ingen kategorier i databasen - noget er gået galt!"
1113
 
1114
+ #: my-calendar-install.php:140
1115
  msgid "My Calendar Default Timezone"
1116
  msgstr "My Calendar default tidszone"
1117
 
1118
+ #: my-calendar-install.php:185
1119
  msgid "My Calendar Default Location"
1120
  msgstr "My Calendar default sted"
1121
 
1122
+ #: my-calendar.php:92
1123
+ #: my-calendar.php:226
1124
  msgid "Settings"
1125
  msgstr "Indstillinger"
1126
 
1127
+ #: my-calendar.php:93
1128
+ #: my-calendar.php:229
1129
  msgid "Help"
1130
  msgstr "Hjælp"
1131
 
1132
+ #: my-calendar.php:123
1133
  msgid "Buy the Beginner's Guide"
1134
  msgstr "Køb Beginner's Guide"
1135
 
1136
+ #: my-calendar.php:124
1137
  msgid "Get Support"
1138
  msgstr "Få support"
1139
 
1140
+ #: my-calendar.php:125
1141
+ #: my-calendar.php:229
1142
  msgid "My Calendar Help"
1143
  msgstr "My Calendar hjælp"
1144
 
1145
+ #: my-calendar.php:126
1146
  msgid "Make a Donation"
1147
  msgstr "Giv en donation"
1148
 
1149
+ #. #-#-#-#-# plugin.pot (My Calendar 1.7.0) #-#-#-#-#
1150
  #. Plugin Name of the plugin/theme
1151
+ #: my-calendar.php:217
1152
  msgid "My Calendar"
1153
  msgstr "My Calendar"
1154
 
1155
+ #: my-calendar.php:220
1156
  msgid "Add/Edit Events"
1157
  msgstr "Tilføj/Rediger begivenheder"
1158
 
1159
+ #: my-calendar.php:225
1160
+ #: my-calendar-locations.php:141
1161
  msgid "Manage Locations"
1162
  msgstr "Administrer steder"
1163
 
1164
+ #: my-calendar.php:227
1165
  msgid "Style Editor"
1166
+ msgstr "Stylesheets"
1167
 
1168
+ #: my-calendar.php:228
1169
  msgid "Behavior Editor"
1170
  msgstr "Rediger kalenderopførsel"
1171
 
1172
+ #: my-calendar-behaviors.php:40
1173
  msgid "Behavior Settings saved"
1174
  msgstr "Indstillinger for kalenderopførsel gemt"
1175
 
1176
+ #: my-calendar-behaviors.php:63
1177
  msgid "My Calendar Behaviors"
1178
  msgstr "My Calendar opførsel"
1179
 
1180
+ #: my-calendar-behaviors.php:67
1181
  msgid "Calendar Behavior Settings"
1182
  msgstr "Indstillinger for kalenderopførsel"
1183
 
1184
+ #: my-calendar-behaviors.php:72
1185
  msgid "Apply JavaScript only on these pages (comma separated page IDs)"
1186
  msgstr "Vis kun Javascript på disse sider (kommaseparerede side-id'er)"
1187
 
1188
+ #: my-calendar-behaviors.php:75
1189
  msgid "Calendar Behaviors: Calendar View"
1190
  msgstr "Kalenderopførsel: Kalendervisning"
1191
 
1192
+ #: my-calendar-behaviors.php:77
1193
  msgid "Reset the My Calendar Calendar Javascript"
1194
  msgstr "Nulstil My Calendars kalenderjavascript"
1195
 
1196
+ #: my-calendar-behaviors.php:77
1197
  msgid "Disable Calendar Javascript Effects"
1198
  msgstr "Deaktiver Kalenderens javascripteffekter"
1199
 
1200
+ #: my-calendar-behaviors.php:80
1201
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1202
  msgstr "Rediger jQuery-scripts til My Calendar i kalendervisning."
1203
 
1204
+ #: my-calendar-behaviors.php:83
1205
+ #: my-calendar-behaviors.php:95
1206
+ #: my-calendar-behaviors.php:107
1207
+ #: my-calendar-behaviors.php:119
1208
+ #: my-calendar-styles.php:169
1209
  msgid "Save"
1210
  msgstr "Gem"
1211
 
1212
+ #: my-calendar-behaviors.php:87
1213
  msgid "Calendar Behaviors: List View"
1214
  msgstr "Kalenderopførsel: Listevisning"
1215
 
1216
+ #: my-calendar-behaviors.php:89
1217
  msgid "Reset the My Calendar List Javascript"
1218
  msgstr "Nulstil My Calendars listevisningsjavascript"
1219
 
1220
+ #: my-calendar-behaviors.php:89
 
1221
  msgid "Disable List Javascript Effects"
1222
  msgstr "Deaktiver listevisningens javascripteffekter"
1223
 
1224
+ #: my-calendar-behaviors.php:92
1225
  msgid "Edit the jQuery scripts for My Calendar in List format"
1226
  msgstr "Rediger jQuery-scripts til My Calendar i listevisning"
1227
 
1228
+ #: my-calendar-behaviors.php:99
1229
  msgid "Calendar Behaviors: Mini Calendar View"
1230
  msgstr "Kalenderopførsel: Minikalendervisning"
1231
 
1232
+ #: my-calendar-behaviors.php:101
1233
  msgid "Reset the My Calendar Mini Format Javascript"
1234
  msgstr "Nulstil My Calendars javascript til minikalendervisning"
1235
 
1236
+ #: my-calendar-behaviors.php:101
1237
  msgid "Disable Mini Javascript Effects"
1238
  msgstr "Deaktiver minikalendervisningens javascripteffekter"
1239
 
1240
+ #: my-calendar-behaviors.php:104
1241
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1242
  msgstr "Rediger jQuery-scripts til My Calendar i minikalendervisning"
1243
 
1244
+ #: my-calendar-behaviors.php:111
1245
  msgid "Calendar Behaviors: AJAX Navigation"
1246
  msgstr "Kalenderopførsel: AJAX-navigation"
1247
 
1248
+ #: my-calendar-behaviors.php:113
1249
  msgid "Reset the My Calendar AJAX Javascript"
1250
  msgstr "Nulstil My Calendar AJAX-javascript"
1251
 
1252
+ #: my-calendar-behaviors.php:113
1253
+ msgid "Disable AJAX Effects"
1254
+ msgstr "DeaktiverAJAX-effekter"
1255
+
1256
+ #: my-calendar-behaviors.php:116
1257
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
1258
  msgstr "Rediger jQuery-scripts til My Calendar AJAX-javascript"
1259
 
1260
+ #: my-calendar-locations.php:27
1261
  msgid "Location added successfully"
1262
  msgstr "Sted tilføjet med succes"
1263
 
1264
+ #: my-calendar-locations.php:29
1265
  msgid "Location could not be added to database"
1266
  msgstr "Stedet kunne ikke føjes til databasen."
1267
 
1268
+ #: my-calendar-locations.php:35
1269
  msgid "Location deleted successfully"
1270
  msgstr "Sted slettet med succes"
1271
 
1272
+ #: my-calendar-locations.php:37
1273
  msgid "Location could not be deleted"
1274
  msgstr "Stedet kunne ikke slettes"
1275
 
1276
+ #: my-calendar-locations.php:48
1277
  msgid "Location could not be edited."
1278
  msgstr "Stedet kunne ikke redigeres."
1279
 
1280
+ #: my-calendar-locations.php:50
1281
  msgid "Location was not changed."
1282
  msgstr "Stedet blev ikke ændret."
1283
 
1284
+ #: my-calendar-locations.php:52
1285
  msgid "Location edited successfully"
1286
  msgstr "Sted redigeret med succes"
1287
 
1288
+ #: my-calendar-locations.php:64
1289
  msgid "Add New Location"
1290
  msgstr "Tilføj nyt sted"
1291
 
1292
+ #: my-calendar-locations.php:66
1293
  msgid "Edit Location"
1294
  msgstr "Rediger sted"
1295
 
1296
+ #: my-calendar-locations.php:71
1297
  msgid "Location Editor"
1298
  msgstr "Redigering af steder"
1299
 
1300
+ #: my-calendar-locations.php:120
1301
  msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
1302
  msgstr "Hvis du oplyser GPS-koordinater for dit sted, bliver de brugt i stedet for alle de andre adresseoplysninger til at identificere stedet."
1303
 
1304
+ #: my-calendar-locations.php:127
1305
  msgid "Add Location"
1306
  msgstr "Tilføj sted"
1307
 
1308
+ #: my-calendar-locations.php:176
1309
  msgid "There are no locations in the database yet!"
1310
  msgstr "Der er endnu ingen steder i databasen!"
1311
 
1312
+ #: my-calendar-locations.php:180
1313
  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."
1314
  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."
1315
 
1316
+ #: my-calendar-output.php:103
1317
  msgid "Event Details"
1318
  msgstr "Begivenhedsdetaljer"
1319
 
1320
+ #: my-calendar-output.php:111
1321
  msgid "Close"
1322
  msgstr "Luk"
1323
 
1324
+ #: my-calendar-output.php:120
1325
  msgid "in your time zone"
1326
  msgstr "i din tidszone"
1327
 
1328
+ #: my-calendar-output.php:125
1329
  msgid "Not Applicable"
1330
  msgstr "Ikke relevant"
1331
 
1332
+ #: my-calendar-output.php:137
1333
  msgid "Posted by"
1334
  msgstr "Publiceret af"
1335
 
1336
+ #: my-calendar-output.php:187
1337
  msgid "This class is part of a series. You must register for the first event in this series to attend."
1338
  msgstr "Denne begivenhed er en del af en serie. Du skal melde dig til den første begivenhed i serien for at kunne deltage."
1339
 
1340
+ #: my-calendar-output.php:219
1341
  msgid "Month"
1342
  msgstr "Måned"
1343
 
1344
+ #: my-calendar-output.php:220
1345
+ #: my-calendar-output.php:297
1346
  msgid "January"
1347
  msgstr "Januar"
1348
 
1349
+ #: my-calendar-output.php:221
1350
+ #: my-calendar-output.php:297
1351
  msgid "February"
1352
  msgstr "Februar"
1353
 
1354
+ #: my-calendar-output.php:222
1355
+ #: my-calendar-output.php:297
1356
  msgid "March"
1357
  msgstr "Marts"
1358
 
1359
+ #: my-calendar-output.php:223
1360
+ #: my-calendar-output.php:297
1361
  msgid "April"
1362
  msgstr "April"
1363
 
1364
+ #: my-calendar-output.php:224
1365
+ #: my-calendar-output.php:297
1366
  msgid "May"
1367
  msgstr "Maj"
1368
 
1369
+ #: my-calendar-output.php:225
1370
+ #: my-calendar-output.php:297
1371
  msgid "June"
1372
  msgstr "Juni"
1373
 
1374
+ #: my-calendar-output.php:226
1375
+ #: my-calendar-output.php:297
1376
  msgid "July"
1377
  msgstr "Juli"
1378
 
1379
+ #: my-calendar-output.php:227
1380
+ #: my-calendar-output.php:297
1381
  msgid "August"
1382
  msgstr "August"
1383
 
1384
+ #: my-calendar-output.php:228
1385
+ #: my-calendar-output.php:297
1386
  msgid "September"
1387
  msgstr "September"
1388
 
1389
+ #: my-calendar-output.php:229
1390
+ #: my-calendar-output.php:297
1391
  msgid "October"
1392
  msgstr "Oktober"
1393
 
1394
+ #: my-calendar-output.php:230
1395
+ #: my-calendar-output.php:297
1396
  msgid "November"
1397
  msgstr "November"
1398
 
1399
+ #: my-calendar-output.php:231
1400
+ #: my-calendar-output.php:297
1401
  msgid "December"
1402
  msgstr "December"
1403
 
1404
+ #: my-calendar-output.php:233
1405
  msgid "Year"
1406
  msgstr "År"
1407
 
1408
+ #: my-calendar-output.php:255
1409
  msgid "Go"
1410
  msgstr "Gå"
1411
 
1412
+ #: my-calendar-output.php:271
1413
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1414
  msgstr "<abbr title=\"Søndag\">Søn</abbr>"
1415
 
1416
+ #: my-calendar-output.php:272
1417
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1418
  msgstr "<abbr title=\"Mandag\">Man</abbr>"
1419
 
1420
+ #: my-calendar-output.php:273
1421
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1422
  msgstr "<abbr title=\"Tirsdag\">Tirs</abbr>"
1423
 
1424
+ #: my-calendar-output.php:274
1425
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1426
  msgstr "<abbr title=\"Onsdag\">Ons</abbr>"
1427
 
1428
+ #: my-calendar-output.php:275
1429
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1430
  msgstr "<abbr title=\"Torsdag\">Tors</abbr>"
1431
 
1432
+ #: my-calendar-output.php:276
1433
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1434
  msgstr "<abbr title=\"Fredag\">Fre</abbr>"
1435
 
1436
+ #: my-calendar-output.php:277
1437
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1438
  msgstr "<abbr title=\"Lørdag\">Lør</abbr>"
1439
 
1440
+ #: my-calendar-output.php:282
1441
  msgid "<abbr title=\"Sunday\">S</abbr>"
1442
  msgstr "<abbr title=\"Søndag\">S</abbr>"
1443
 
1444
+ #: my-calendar-output.php:283
1445
  msgid "<abbr title=\"Monday\">M</abbr>"
1446
  msgstr "<abbr title=\"Mandag\">M</abbr>"
1447
 
1448
+ #: my-calendar-output.php:284
1449
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1450
  msgstr "<abbr title=\"Tirsdag\">T</abbr>"
1451
 
1452
+ #: my-calendar-output.php:285
1453
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1454
  msgstr "<abbr title=\"Onsdag\">O</abbr>"
1455
 
1456
+ #: my-calendar-output.php:286
1457
  msgid "<abbr title=\"Thursday\">T</abbr>"
1458
  msgstr "<abbr title=\"Torsdag\">T</abbr>"
1459
 
1460
+ #: my-calendar-output.php:287
1461
  msgid "<abbr title=\"Friday\">F</abbr>"
1462
  msgstr "<abbr title=\"Fredag\">F</abbr>"
1463
 
1464
+ #: my-calendar-output.php:288
1465
  msgid "<abbr title=\"Saturday\">S</abbr>"
1466
  msgstr "<abbr title=\"Lørdag\">S</abbr>"
1467
 
1468
+ #: my-calendar-output.php:396
1469
  msgid "and"
1470
  msgstr "og"
1471
 
1472
+ #: my-calendar-output.php:415
1473
+ #: my-calendar-output.php:420
1474
  msgid "Calendar"
1475
  msgstr "Calendar"
1476
 
1477
+ #: my-calendar-output.php:416
1478
+ msgid "The week's events"
1479
+ msgstr "Ugens begivenheder"
1480
+
1481
+ #: my-calendar-output.php:425
1482
  msgid "Events in"
1483
  msgstr "Begivenheder i"
1484
 
1485
+ #: my-calendar-output.php:427
1486
+ msgid "This week's events"
1487
+ msgstr "Denne uges begivenheder"
1488
+
1489
+ #: my-calendar-output.php:594
1490
  msgid "There are no events scheduled during this period."
1491
  msgstr "Der er ikke planlagt begivenheder i denne periode."
1492
 
1493
+ #: my-calendar-output.php:604
1494
  msgid "Category Key"
1495
  msgstr "Kategorinøgle"
1496
 
1497
+ #: my-calendar-output.php:637
1498
+ msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
1499
+ msgstr "Abonner via <abbr title=\"Really Simple Syndication\">RSS</abbr>"
1500
+
1501
+ #: my-calendar-output.php:638
1502
+ msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
1503
+ msgstr "Download som <abbr title=\"iCal Events Export\">iCal</abbr>"
1504
+
1505
+ #: my-calendar-output.php:789
1506
  msgid "Show events in:"
1507
  msgstr "Vis begivenheder i:"
1508
 
1509
+ #: my-calendar-output.php:821
1510
  msgid "Submit"
1511
  msgstr "Send"
1512
 
1513
+ #: my-calendar-styles.php:51
1514
+ msgid "The stylesheet has been updated."
1515
+ msgstr "Stylesheetet er blevet opdateret."
1516
+
1517
+ #: my-calendar-styles.php:51
1518
+ msgid "Write Error! Please verify write permissions on the style file."
1519
+ msgstr "Skrivefejl! Verificer venligst, at der er skriverettigheder til style-filen."
1520
+
1521
+ #: my-calendar-styles.php:67
1522
+ msgid "Stylesheet reset to default."
1523
+ msgstr "Stylesheet er nulstillet til default."
1524
 
1525
+ #: my-calendar-styles.php:69
1526
+ msgid "Style Settings Saved"
1527
+ msgstr "Style-indstillinger gemt"
1528
+
1529
+ #: my-calendar-styles.php:78
1530
+ msgid "New theme selected."
1531
+ msgstr "Nyt tema valgt."
1532
+
1533
+ #: my-calendar-styles.php:92
1534
+ msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
1535
+ msgstr "Den ønskede fil ser ikke ud til at eksistere. Tjek venligst filnavn og -placering!"
1536
+
1537
+ #: my-calendar-styles.php:100
1538
  msgid "My Calendar Styles"
1539
  msgstr "My Calendar Styles"
1540
 
1541
+ #: my-calendar-styles.php:104
1542
  msgid "Calendar Style Settings"
1543
  msgstr "Kalenders style-indstillinger"
1544
 
1545
+ #: my-calendar-styles.php:111
1546
+ msgid "Select My Calendar Theme"
1547
+ msgstr "Vælg My Calendar-tema"
1548
+
1549
+ #: my-calendar-styles.php:119
1550
+ msgid "Your Custom Stylesheets"
1551
+ msgstr "Dine tilpassede stylesheets"
1552
+
1553
+ #: my-calendar-styles.php:128
1554
+ msgid "Installed Stylesheets"
1555
+ msgstr "Installerede stylesheets"
1556
+
1557
+ #: my-calendar-styles.php:136
1558
+ msgid "Choose Style"
1559
+ msgstr "Vælg style"
1560
+
1561
+ #: my-calendar-styles.php:149
1562
+ msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
1563
+ msgstr "My Calendar kunne ikke opdatere dine CSS-filer under opgraderingen. Tjek venligst dine filrettigheder, hvis du ønsker at redigere dine My Calendar-styles. Dine hidtil gemte styles er herunder. Denne besked og disse styles bliver slettet fra databasen, når du med succes får opdateret dine stylesheets."
1564
 
1565
+ #: my-calendar-styles.php:157
1566
  msgid "CSS Style Options"
1567
  msgstr "CSS (stylesheets)"
1568
 
1569
+ #: my-calendar-styles.php:160
1570
+ msgid "Apply CSS only on these pages (comma separated page IDs)"
1571
+ msgstr "Vis kun CSS på disse sider (kommaseparerede side-id'er)"
1572
+
1573
+ #: my-calendar-styles.php:163
1574
  msgid "Reset the My Calendar stylesheet to the default"
1575
  msgstr "Nulstil My Calendar stylesheets til default"
1576
 
1577
+ #: my-calendar-styles.php:163
1578
  msgid "Disable My Calendar Stylesheet"
1579
  msgstr "Deaktiver My Calendar stylesheet"
1580
 
1581
+ #: my-calendar-styles.php:166
1582
  msgid "Edit the stylesheet for My Calendar"
1583
  msgstr "Rediger My Calendars stylesheet"
1584
 
1585
+ #: my-calendar-help.php:7
1586
  msgid "How to use My Calendar"
1587
  msgstr "Sådan bruger du My Calendar"
1588
 
1589
+ #: my-calendar-help.php:12
1590
  msgid "Shortcode Syntax"
1591
  msgstr "Shortcode-syntaks"
1592
 
1593
+ #: my-calendar-help.php:15
1594
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1595
  msgstr "Disse shortcodes kan bruges i Indlæg, Sider eller i text widgets."
1596
 
1597
+ #: my-calendar-help.php:19
1598
  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."
1599
  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."
1600
 
1601
+ #: my-calendar-help.php:23
1602
+ msgid "The shortcode supports five attributes, <code>category</code>, <code>format</code>, <code>showkey</code>, <code>shownav</code> and <code>time</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. Setting <code>shownav</code> to <code>no</code> will disable the Previous/Next links. The <code>time</code> shortcode switches between a weekly view and the default monthly view."
1603
+ msgstr "Denne shortcode understøtter fem attributter, <code>category</code>, <code>format</code>, <code>showkey</code>, <code>shownav</code> og <code>time</code>. Der er to valgmuligheder for <code>format</code>: <code>list</code>, 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ættes <code>showkey</code> til <code>no</code>, forhindrer man kategorinøglen i at blive vist &mdash; dette kan være brugbart ved enkeltkategorioutput. Sættes <code>shownav</code> til <code>no</code> bliver Tidligere/Kommende-linksene ikke vist. Shortcoden <code>time</code> skifter mellem ugevisning og månedsvisningen, der er default."
1604
 
1605
+ #: my-calendar-help.php:27
1606
  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."
1607
  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."
1608
 
1609
+ #: my-calendar-help.php:30
1610
  msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with two configurable attributes: category and template."
1611
  msgstr "Forudsigeligt nok viser denne shortcode outputtet fra widgetten Dagens Begivenheder, med to indstillelige attributter: <code>category</code> og <code>template</code>."
1612
 
1613
+ #: my-calendar-help.php:33
1614
  msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, or <code>zip</code> (postal code)."
1615
  msgstr "Denne shortcode giver som output en liste over begivenhedssteder, enten som en liste af links eller som en dropdown-menu. Attributten <code>show</code> kan enten sættes til <code>list</code> eller <code>form</code>. Attributten <code>type</code> kan enten være <code>saved</code> (henter data fra dine gemte steder) eller <code>custom</code> (henter data ud fra de indstillinger, der er valgt i hver brugerprofil). Attributten <code>datatype</code> sættes til den datatype, som der begrænses ud fra: <code>name</code> (stednavn), <code>city</code>, <code>country</code> eller <code>zip</code> (postnummer)."
1616
 
1617
+ #: my-calendar-help.php:39
1618
  msgid "Category Icons"
1619
  msgstr "Kategoriikoner"
1620
 
1621
+ #: my-calendar-help.php:42
1622
  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."
1623
  msgstr "My Calendar er designet til at kunne administrere flere kalendere. Udgangspunktet for dette er kategorier; du kan let opsætte en kalenderside, som inkluderer alle kategorier, eller du kan dedikere separate sider til kalendere i hver kategori. Dette kunne f.eks. være relevant, hvis du skulle administrere tourkalenderne for flere bands eller begivenhedskalenderne for en række forskellige steder."
1624
 
1625
+ #: my-calendar-help.php:45
1626
  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."
1627
  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."
1628
 
1629
+ #: my-calendar-help.php:45
1630
  msgid "Your icons folder is:"
1631
  msgstr "Din mappe til ikoner er:"
1632
 
1633
+ #: my-calendar-help.php:45
1634
  msgid "You can alternately place icons in:"
1635
  msgstr "Du kan alternativt placere ikoner i:"
1636
 
1637
+ #: my-calendar-help.php:53
1638
+ msgid "Custom Styles"
1639
+ msgstr "Tilpassede styles"
1640
+
1641
+ #: my-calendar-help.php:56
1642
+ msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
1643
+ msgstr "My Calendar kommer med fire grundlæggende stylesheets. My Calendar gemmer ændringer i disse stylesheets ved opgradering, men hvis du ønsker at tilføje et helt nyt stylesheet, er det en god ide at gemme det i My Calendars mappe for tilpassede styles."
1644
+
1645
+ #: my-calendar-help.php:58
1646
+ msgid "Your stylesheet directory is"
1647
+ msgstr "Din mappe til stylesheets er"
1648
+
1649
+ #: my-calendar-help.php:58
1650
+ msgid "Your custom stylesheets directory is"
1651
+ msgstr "Din mappe til tilpassede stylesheets er"
1652
+
1653
+ #: my-calendar-help.php:66
1654
  msgid "Widget Templating"
1655
  msgstr "Widgetskabeloner"
1656
 
1657
+ #: my-calendar-help.php:69
1658
+ msgid "These codes are available in calendar widgets, email notifications, and event titles."
1659
+ msgstr "Disse koder er tilgængelige i kalenderwidgets, e-mail-notifikationer og begivenhedstitler."
1660
 
1661
+ #: my-calendar-help.php:73
1662
  msgid "Displays the name of the category the event is in."
1663
  msgstr "Viser navnet på kategorien, som begivenheden er i."
1664
 
1665
+ #: my-calendar-help.php:76
1666
  msgid "Displays the title of the event."
1667
  msgstr "Viser begivenhedens titel."
1668
 
1669
+ #: my-calendar-help.php:79
1670
  msgid "Displays the start time for the event."
1671
  msgstr "Viser begivenhedens starttidspunkt."
1672
 
1673
+ #: my-calendar-help.php:82
1674
  msgid "Displays the start time for the event adjusted to the current user's time zone settings. Blank output if user settings are disabled or the user has not selected a preferred time zone."
1675
  msgstr "Viser begivenhedens starttidspunkt justeret efter den aktuelle brugers indstillinger for tidszone. Giver tomt output, hvis brugerindstillingerne er slået fra eller brugeren ikke har valgt en foretrukken tidszone."
1676
 
1677
+ #: my-calendar-help.php:85
1678
  msgid "Displays the date on which the event begins."
1679
  msgstr "Viser begivenhedens startdato."
1680
 
1681
+ #: my-calendar-help.php:88
1682
  msgid "Displays the date on which the event ends."
1683
  msgstr "Viser begivenhedens slutdato."
1684
 
1685
+ #: my-calendar-help.php:91
1686
  msgid "Displays the time at which the event ends."
1687
  msgstr "Viser begivenhedens sluttidspunkt."
1688
 
1689
+ #: my-calendar-help.php:94
1690
  msgid "Displays the WordPress author who posted the event."
1691
  msgstr "Viser den WordPress-forfatter, der publicerede begivenheden."
1692
 
1693
+ #: my-calendar-help.php:97
1694
+ msgid "Displays the name of the person assigned as host for the event."
1695
+ msgstr "Viser navnet på den person, der står som vært for begivenheden."
1696
+
1697
+ #: my-calendar-help.php:100
1698
  msgid "Displays the URL provided for the event."
1699
  msgstr "Viser URL'en, der er indtastet i begivenhedens oplysninger."
1700
 
1701
+ #: my-calendar-help.php:103
1702
  msgid "Displays the description of the event."
1703
  msgstr "Viser beskrivelsen af begivenhden."
1704
 
1705
+ #: my-calendar-help.php:106
1706
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1707
  msgstr "Viser begivenhedens titel som et link, hvis en URL er tilgængelig, eller titlen alene, hvis en URL ikke er tilgængelig."
1708
 
1709
+ #: my-calendar-help.php:109
1710
  msgid "Displays the name of the location of the event."
1711
  msgstr "Viser navnet på begivenhedens sted."
1712
 
1713
+ #: my-calendar-help.php:112
1714
  msgid "Displays the first line of the site address."
1715
  msgstr "Viser første linie af stedets gadenavn."
1716
 
1717
+ #: my-calendar-help.php:115
1718
  msgid "Displays the second line of the site address."
1719
  msgstr "Viser anden linie af stedets gadenavn."
1720
 
1721
+ #: my-calendar-help.php:118
1722
  msgid "Displays the city for the event."
1723
  msgstr "Viser bynavnet i begivenhedens stedoplysninger."
1724
 
1725
+ #: my-calendar-help.php:121
1726
  msgid "Displays the state for the event."
1727
  msgstr "Viser kommunen i begivenhedens stedoplysninger."
1728
 
1729
+ #: my-calendar-help.php:124
1730
  msgid "Displays the postcode for the event."
1731
  msgstr "Viser postnummeret i begivenhedens stedoplysninger."
1732
 
1733
+ #: my-calendar-help.php:127
1734
  msgid "Displays the country for the event location."
1735
  msgstr "Viser landet i begivenhedens stedoplysninger."
1736
 
1737
+ #: my-calendar-help.php:130
1738
  msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1739
  msgstr "Viser begivenhedens adresse i <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1740
 
1741
+ #: my-calendar-help.php:133
1742
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
1743
  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."
1744
 
1745
+ #: my-calendar-help.php:136
1746
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
1747
  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."
1748
 
1749
+ #: my-calendar-help.php:139
1750
  msgid "Displays the short version of the event description."
1751
  msgstr "Viser den korte beskrivelse af begivenheden."
1752
 
1753
+ #: my-calendar-help.php:142
1754
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
1755
  msgstr "Viser begivenhedens aktuelle status: Enten \"Publiceret\" eller \"Reserveret\" - bruges primært i e-mail-skabeloner."
1756
 
1757
+ #: my-calendar-help.php:145
1758
  msgid "Produces the address of the current event's category icon."
1759
  msgstr "Giver adressen til den aktuelle begivenheds kategoriikon."
1760
 
1761
+ #: my-calendar-help.php:148
1762
  msgid "Produces the hex code for the current event's category color."
1763
  msgstr "Giver hexkoden til den aktuelle begivenheds kategorifarve."
1764
 
1765
+ #: my-calendar-widgets.php:5
1766
+ msgid "My Calendar: Today's Events"
1767
+ msgstr "My Calendar: Dagens begivenheder"
1768
+
1769
+ #: my-calendar-widgets.php:14
1770
+ #: my-calendar-widgets.php:76
1771
  msgid "Today's Events"
1772
  msgstr "Dagens begivenheder"
1773
 
1774
+ #: my-calendar-widgets.php:36
1775
+ #: my-calendar-widgets.php:102
1776
  msgid "Template"
1777
  msgstr "Skabelon"
1778
 
1779
+ #: my-calendar-widgets.php:40
1780
  msgid "Show this text if there are no events today:"
1781
  msgstr "Vis denne tekst, hvis der ikke er begivenheder i dag:"
1782
 
1783
+ #: my-calendar-widgets.php:44
1784
+ #: my-calendar-widgets.php:124
1785
+ msgid "Category or categories to display:"
1786
+ msgstr "Kategori eller kategorier, der skal vises:"
 
1787
 
1788
+ #: my-calendar-widgets.php:64
1789
+ msgid "My Calendar: Upcoming Events"
1790
+ msgstr "My Calendar: Kommende begivenheder"
1791
+
1792
+ #: my-calendar-widgets.php:106
1793
  msgid "Widget Options"
1794
  msgstr "Widgetindstillinger"
1795
 
1796
+ #: my-calendar-widgets.php:109
1797
  msgid "Display upcoming events by:"
1798
  msgstr "Vis kommende begivenheder med:"
1799
 
1800
+ #: my-calendar-widgets.php:110
1801
  msgid "Events (e.g. 2 past, 3 future)"
1802
  msgstr "Begivenheder (f.eks. 2 overståede, 3 kommende)"
1803
 
1804
+ #: my-calendar-widgets.php:111
1805
  msgid "Dates (e.g. 4 days past, 5 forward)"
1806
  msgstr "Datoer (f.eks. 4 dage bagud, 5 fremad)"
1807
 
1808
+ #: my-calendar-widgets.php:115
1809
  msgid "events into the future;"
1810
  msgstr "Begivenheder i den kommende tid;"
1811
 
1812
+ #: my-calendar-widgets.php:116
1813
  msgid "events from the past"
1814
  msgstr "Hidtidige begivenheder;"
1815
 
1816
+ #: my-calendar-widgets.php:120
1817
+ msgid "Show this text if there are no events meeting your criteria:"
1818
+ msgstr "Vis denne tekst, hvis der ikke er nogen begivenheder, der opfylder dine kriterier:"
 
 
 
 
1819
 
1820
+ #: my-calendar-widgets.php:282
 
 
 
 
1821
  msgid "There are no events currently scheduled."
1822
  msgstr "Der er ikke planlagt nogen begivenheder p.t."
1823
 
1837
  msgid "http://www.joedolson.com"
1838
  msgstr "http://www.joedolson.com"
1839
 
1840
+ #~ msgid "End Date (YYYY-MM-DD) (Optional)"
1841
+ #~ msgstr "Slutdato (ÅÅÅÅ-MM-DD) (Valgfri)"
1842
+
1843
+ #~ msgid ""
1844
+ #~ "Optional, set blank if your event is an all-day event or does not happen "
1845
+ #~ "at a specific time."
1846
+ #~ msgstr ""
1847
+ #~ "Valgfri, lad feltet være tomt, hvis begivenheden er en heldagsbegivenhed "
1848
+ #~ "eller ikke foregår på et bestemt tidspunkt."
1849
+
1850
+ #~ msgid ""
1851
+ #~ "Optional. End times will not be displayed on events where this is not set."
1852
+ #~ msgstr ""
1853
+ #~ "Valgfri. Sluttidspunkter bliver ikke vist på begivenheder, hvor de ikke "
1854
+ #~ "er valgt."
1855
+
1856
+ #~ msgid ""
1857
+ #~ "Entering 0 means forever, if a unit is selected. If the recurrence unit "
1858
+ #~ "is left at \"Does not recur,\" the event will not reoccur."
1859
+ #~ msgstr ""
1860
+ #~ "Indtastning af 0 betyder \"altid\", hvis en enhed er valgt. Hvis typen af "
1861
+ #~ "gentagelse er sat til \"Gentages ikke\", vil begivenheden ikke gentages."
1862
+
1863
+ #~ msgid "Link"
1864
+ #~ msgstr "Link"
1865
+
1866
+ #~ msgid ""
1867
+ #~ "The URL entered must either be prefixed with http:// or be completely "
1868
+ #~ "blank"
1869
+ #~ msgstr ""
1870
+ #~ "Den indtastede URL skal enten være foranstillet med http:// eller være "
1871
+ #~ "helt blank"
1872
+
1873
+ #~ msgid "days into the future;"
1874
+ #~ msgstr "dage i den kommende tid;"
1875
+
1876
+ #~ msgid "days from the past"
1877
+ #~ msgstr "hidtidige dage"
1878
+
1879
+ #~ msgid "Show only this category:"
1880
+ #~ msgstr "Vis kun denne kategori:"
1881
+
1882
  #~ msgid "Group this event as a single item"
1883
  #~ msgstr "Grupper denne begivenhed som en enkeltstående begivenhed"
1884
 
my-calendar-event-manager.php CHANGED
@@ -148,7 +148,6 @@ if ( isset( $_POST['event_action'] ) ) {
148
  $nonce=$_REQUEST['_wpnonce'];
149
  if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
150
  $proceed = false;
151
- $event_author = (int) ($action == 'add' || $action == 'copy')?($current_user->ID):($_POST['event_author']);
152
  $output = mc_check_data($action,$_POST);
153
  if ($action == 'add' || $action == 'copy' ) {
154
  $response = my_calendar_save($action,$output);
@@ -226,7 +225,7 @@ my_calendar_check_db();
226
 
227
 
228
  function my_calendar_save( $action,$output,$event_id=false ) {
229
- global $wpdb;
230
  $proceed = $output[0];
231
 
232
  if ( ( $action == 'add' || $action == 'copy' ) && $proceed == true ) {
@@ -248,6 +247,7 @@ global $wpdb;
248
  }
249
  }
250
  if ( $action == 'edit' && $proceed == true ) {
 
251
  if ( mc_can_edit_event( $event_author ) ) {
252
  $update = $output[2];
253
  $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','%d','%d' );
@@ -491,7 +491,7 @@ function my_calendar_print_form_fields( $data,$mode,$event_id,$context='' ) {
491
  <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>
492
  <option class="input" <?php echo jd_option_selected( $data->event_recur,'Y','option'); ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
493
  </select><br />
494
- <?php _e('Enter "0" if the event should recur indefinitely.','my-calendar'); ?>
495
  </p>
496
  </fieldset>
497
  </div>
@@ -544,7 +544,8 @@ function my_calendar_print_form_fields( $data,$mode,$event_id,$context='' ) {
544
  <option value="none"> -- </option>
545
  <?php
546
  foreach ( $locations as $location ) {
547
- echo "<option value=\"".$location->location_id."\">".stripslashes($location->location_label)."</option>";
 
548
  }
549
  ?>
550
  </select>
@@ -596,7 +597,7 @@ function my_calendar_print_form_fields( $data,$mode,$event_id,$context='' ) {
596
  <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>
597
  </p>
598
  <p>
599
- <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 ) ) esc_attr_e(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 ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" />
600
  </p>
601
  </fieldset>
602
  <?php } ?>
@@ -723,7 +724,7 @@ function jd_events_display_list($sortby='default',$sortdir='default',$status='al
723
  }
724
  }
725
  ?>
726
- <td><div class="category-color" style="background-color:<?php echo $this_cat->category_color;?>;"> </div> <?php echo stripslashes($this_cat->category_name); ?></td>
727
  <?php unset($this_cat); ?>
728
  <td>
729
  <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;
@@ -791,7 +792,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
791
  $expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
792
  $approved = !empty($_POST['event_approved']) ? $_POST['event_approved'] : '0';
793
  $location_preset = !empty($_POST['location_preset']) ? $_POST['location_preset'] : '';
794
- $event_author = !empty($_POST['event_author']) ? $_POST['event_author'] : '';
795
  $event_open = !empty($_POST['event_open']) ? $_POST['event_open'] : '2';
796
  $event_group = !empty($_POST['event_group']) ? 1 : 0;
797
  // set location
148
  $nonce=$_REQUEST['_wpnonce'];
149
  if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
150
  $proceed = false;
 
151
  $output = mc_check_data($action,$_POST);
152
  if ($action == 'add' || $action == 'copy' ) {
153
  $response = my_calendar_save($action,$output);
225
 
226
 
227
  function my_calendar_save( $action,$output,$event_id=false ) {
228
+ global $wpdb,$event_author;
229
  $proceed = $output[0];
230
 
231
  if ( ( $action == 'add' || $action == 'copy' ) && $proceed == true ) {
247
  }
248
  }
249
  if ( $action == 'edit' && $proceed == true ) {
250
+ $event_author = (int) ($_POST['event_author']);
251
  if ( mc_can_edit_event( $event_author ) ) {
252
  $update = $output[2];
253
  $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','%d','%d' );
491
  <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>
492
  <option class="input" <?php echo jd_option_selected( $data->event_recur,'Y','option'); ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
493
  </select><br />
494
+ <?php _e('Enter "0" if the event should recur indefinitely. Your entry is the number of events after the first occurrence of the event: a recurrence of <em>2</em> means the event will happen three times.','my-calendar'); ?>
495
  </p>
496
  </fieldset>
497
  </div>
544
  <option value="none"> -- </option>
545
  <?php
546
  foreach ( $locations as $location ) {
547
+ $selected = ($data->event_label == $location->location_label)?" selected='selected'":'';
548
+ echo "<option value=\"".$location->location_id."\"$selected>".stripslashes($location->location_label)."</option>";
549
  }
550
  ?>
551
  </select>
597
  <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>
598
  </p>
599
  <p>
600
+ <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 ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" /> <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 ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>" />
601
  </p>
602
  </fieldset>
603
  <?php } ?>
724
  }
725
  }
726
  ?>
727
+ <td><div class="category-color" style="background-color:<?php echo (strpos($this_cat->category_color,'#') !== 0)?'#':''; echo $this_cat->category_color;?>;"> </div> <?php echo stripslashes($this_cat->category_name); ?></td>
728
  <?php unset($this_cat); ?>
729
  <td>
730
  <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;
792
  $expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
793
  $approved = !empty($_POST['event_approved']) ? $_POST['event_approved'] : '0';
794
  $location_preset = !empty($_POST['location_preset']) ? $_POST['location_preset'] : '';
795
+ $event_author = !empty($_POST['event_author']) ? $_POST['event_author'] : $current_user->ID;
796
  $event_open = !empty($_POST['event_open']) ? $_POST['event_open'] : '2';
797
  $event_group = !empty($_POST['event_group']) ? 1 : 0;
798
  // set location
my-calendar-ical.php CHANGED
@@ -2,7 +2,7 @@
2
  function my_calendar_ical() {
3
  global $mc_version;
4
  // establish template
5
- $template = "\nBEGIN:VEVENT
6
  UID:{guid}
7
  LOCATION:{ical_location}
8
  SUMMARY:{title}
@@ -19,14 +19,15 @@ VERSION:2.0
19
  METHOD:PUBLISH
20
  X-WR-CALNAME: '. get_bloginfo('name') .' Calendar
21
  PRODID:-//Accessible Web Design//My Calendar//http://www.mywpcal.com//v'.$mc_version.'//EN';
22
-
 
23
  $events = mc_get_all_events($category);
24
  $before = 0;
25
  $after = 15;
26
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after,'ical' );
27
  $output .= "\nEND:VCALENDAR";
28
  $output = preg_replace("~(?<!\r)\n~","\r\n",$output);
29
- header("Content-Type: text/x-vCalendar");
30
  header("Content-Disposition: inline; filename=my-calendar.ics");
31
  echo $output;
32
  }
2
  function my_calendar_ical() {
3
  global $mc_version;
4
  // establish template
5
+ $template = "BEGIN:VEVENT
6
  UID:{guid}
7
  LOCATION:{ical_location}
8
  SUMMARY:{title}
19
  METHOD:PUBLISH
20
  X-WR-CALNAME: '. get_bloginfo('name') .' Calendar
21
  PRODID:-//Accessible Web Design//My Calendar//http://www.mywpcal.com//v'.$mc_version.'//EN';
22
+
23
+ $template = trim($template);
24
  $events = mc_get_all_events($category);
25
  $before = 0;
26
  $after = 15;
27
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after,'ical' );
28
  $output .= "\nEND:VCALENDAR";
29
  $output = preg_replace("~(?<!\r)\n~","\r\n",$output);
30
+ header("Content-Type: text/calendar");
31
  header("Content-Disposition: inline; filename=my-calendar.ics");
32
  echo $output;
33
  }
my-calendar-install.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  // define global variables;
3
- global $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_loc_db, $initial_cat_db, $default_template,$default_user_settings;
4
 
5
  $initial_ajaxjs = "jQuery(document).ready(function(){
6
 
@@ -438,6 +438,10 @@ border:1px solid #9b5;
438
  background:#fafafa;
439
  }
440
 
 
 
 
 
441
  #jd-calendar #calendar-list .odd {
442
  background:#d3e3e3;
443
  }
@@ -535,7 +539,8 @@ margin:0;
535
  }
536
  #jd-calendar .calendar-event .details, #jd-calendar .calendar-events {
537
  position:absolute;
538
- width:50%;
 
539
  -moz-border-radius:10px;
540
  -moz-box-shadow:3px 3px 6px #777;
541
  -webkit-box-shadow:3px 3px 6px #777;
@@ -705,50 +710,6 @@ display: none;
705
  font-size: 1.1em;
706
  }
707
 
708
- #jd-calendar.mini .day-with-date span, #jd-calendar.mini .day-with-date a {
709
- font-family: Arial, Verdana, sans-serif;
710
- font-size: .9em;
711
- padding:1px;
712
- }
713
- #jd-calendar .mini-event .sub-details {
714
- margin: 0;
715
- border-bottom: 1px solid #ccc;
716
- padding: 2px 0 0;
717
- margin-bottom: 5px;
718
- }
719
- #jd-calendar.mini .day-with-date a {
720
- display: block;
721
- margin: -2px;
722
- font-weight: 700;
723
- text-decoration: underline;
724
- }";
725
-
726
- $mini_styles = ".mini td {
727
- height: auto!important;
728
- }
729
-
730
- .mini .my-calendar-nav ul {
731
- height: 2em!important;
732
- }
733
- .mini .my-calendar-nav li a {
734
- padding: 1px 3px!important;
735
- font-size: .7em;
736
- }
737
- #jd-calendar.mini .my-calendar-date-switcher label {
738
- display: block;
739
- float: left;
740
- width: 6em;
741
- }
742
- #jd-calendar.mini .my-calendar-date-switcher {
743
- padding: 4px;
744
- }
745
- #jd-calendar.mini td .category-icon {
746
- display: none;
747
- }
748
- #jd-calendar.mini h3 {
749
- font-size: 1.1em;
750
- }
751
-
752
  #jd-calendar.mini .day-with-date span, #jd-calendar.mini .day-with-date a {
753
  font-family: Arial, Verdana, sans-serif;
754
  font-size: .9em;
@@ -815,6 +776,10 @@ background:#252525;
815
  color: #eee;
816
  }
817
 
 
 
 
 
818
  #jd-calendar #calendar-list .odd {
819
  background:#353535;
820
  }
@@ -1122,7 +1087,9 @@ border:1px solid #bbb;
1122
  #jd-calendar .list-event .details, #jd-calendar .day-without-date {
1123
  background:#fafafa;
1124
  }
1125
-
 
 
1126
  #jd-calendar #calendar-list .odd {
1127
  background:#e3e3e3;
1128
  }
1
  <?php
2
  // define global variables;
3
+ global $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_loc_db, $initial_cat_db, $default_template,$default_user_settings,$stored_styles;
4
 
5
  $initial_ajaxjs = "jQuery(document).ready(function(){
6
 
438
  background:#fafafa;
439
  }
440
 
441
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
442
+ color: #777;
443
+ }
444
+
445
  #jd-calendar #calendar-list .odd {
446
  background:#d3e3e3;
447
  }
539
  }
540
  #jd-calendar .calendar-event .details, #jd-calendar .calendar-events {
541
  position:absolute;
542
+ left:15%;
543
+ width:70%;
544
  -moz-border-radius:10px;
545
  -moz-box-shadow:3px 3px 6px #777;
546
  -webkit-box-shadow:3px 3px 6px #777;
710
  font-size: 1.1em;
711
  }
712
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
  #jd-calendar.mini .day-with-date span, #jd-calendar.mini .day-with-date a {
714
  font-family: Arial, Verdana, sans-serif;
715
  font-size: .9em;
776
  color: #eee;
777
  }
778
 
779
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
780
+ color: #999;
781
+ }
782
+
783
  #jd-calendar #calendar-list .odd {
784
  background:#353535;
785
  }
1087
  #jd-calendar .list-event .details, #jd-calendar .day-without-date {
1088
  background:#fafafa;
1089
  }
1090
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
1091
+ color: #777;
1092
+ }
1093
  #jd-calendar #calendar-list .odd {
1094
  background:#e3e3e3;
1095
  }
my-calendar-ja.mo CHANGED
Binary file
my-calendar-ja.po CHANGED
@@ -7,9 +7,9 @@ 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"
@@ -17,238 +17,290 @@ msgstr ""
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 "イベントの内容を入力して下さい"
@@ -257,1243 +309,1521 @@ msgstr "イベントの内容を入力して下さい"
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/"
@@ -1511,3 +1841,41 @@ msgstr "Joseph C Dolson"
1511
  msgid "http://www.joedolson.com"
1512
  msgstr "http://www.joedolson.com"
1513
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2011-01-18 19:16:29+00:00\n"
11
+ "PO-Revision-Date: 2011-01-26 18:53+0900\n"
12
+ "Last-Translator: Daisuke ABE <r1916s@gmail.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"
17
  "X-Poedit-Language: Japanese\n"
18
  "X-Poedit-Country: JAPAN\n"
19
 
20
+ #: my-calendar-styles.php:51
21
+ msgid "The stylesheet has been updated."
22
+ msgstr "スタイルシートが更新されました。"
23
 
24
+ #: my-calendar-styles.php:51
25
+ msgid "Write Error! Please verify write permissions on the style file."
26
+ msgstr ""
27
 
28
+ #: my-calendar-styles.php:67
29
+ msgid "Stylesheet reset to default."
30
+ msgstr "スタイルシートが初期状態にリセットされました。"
31
 
32
+ #: my-calendar-styles.php:69
33
+ msgid "Style Settings Saved"
34
+ msgstr "スタイルシートの設定を保存しました"
35
 
36
+ #: my-calendar-styles.php:78
37
+ msgid "New theme selected."
38
+ msgstr "新しいテーマが選択されました。"
39
 
40
+ #: my-calendar-styles.php:92
41
+ msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
42
+ msgstr ""
43
 
44
+ #: my-calendar-styles.php:100
45
+ msgid "My Calendar Styles"
46
+ msgstr "My Calendar の CSS 編集"
 
 
47
 
48
+ #: my-calendar-styles.php:104
49
+ msgid "Calendar Style Settings"
50
+ msgstr "カレンダーのスタイル設定"
 
51
 
52
+ #: my-calendar-styles.php:111
53
+ msgid "Select My Calendar Theme"
54
+ msgstr "My Calendarのテーマを選択する"
55
 
56
+ #: my-calendar-styles.php:119
57
+ msgid "Your Custom Stylesheets"
58
+ msgstr ""
 
59
 
60
+ #: my-calendar-styles.php:128
61
+ msgid "Installed Stylesheets"
62
+ msgstr "インストール済のスタイルシート"
63
 
64
+ #: my-calendar-styles.php:136
65
+ msgid "Choose Style"
66
+ msgstr "選択する"
 
67
 
68
+ #: my-calendar-styles.php:149
69
+ msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
70
+ msgstr ""
 
71
 
72
+ #: my-calendar-styles.php:157
73
+ msgid "CSS Style Options"
74
+ msgstr "CSS スタイルオプション"
 
75
 
76
+ #: my-calendar-styles.php:160
77
+ msgid "Apply CSS only on these pages (comma separated page IDs)"
78
+ msgstr "CSS を特定のページにだけ適用する(カンマでページ ID を区切ってください)"
 
 
79
 
80
+ #: my-calendar-styles.php:163
81
+ msgid "Reset the My Calendar stylesheet to the default"
82
+ msgstr "My Calendar のスタイルシートをデフォルトにリセットする"
83
 
84
+ #: my-calendar-styles.php:163
85
+ msgid "Disable My Calendar Stylesheet"
86
+ msgstr "My Calendar のスタイルシートを無効にする"
 
 
 
 
87
 
88
+ #: my-calendar-styles.php:166
89
+ msgid "Edit the stylesheet for My Calendar"
90
+ msgstr "My Calendar のスタイルシートを編集する"
 
 
 
 
 
91
 
92
+ #: my-calendar-styles.php:169
93
+ #: my-calendar-behaviors.php:83
94
+ #: my-calendar-behaviors.php:95
95
+ #: my-calendar-behaviors.php:107
96
+ #: my-calendar-behaviors.php:119
97
+ msgid "Save"
98
+ msgstr "保存する"
99
 
100
+ #: my-calendar.php:92
101
+ #: my-calendar.php:226
102
+ msgid "Settings"
103
+ msgstr "設定"
104
 
105
+ #: my-calendar.php:93
106
+ #: my-calendar.php:229
107
+ msgid "Help"
108
+ msgstr "ヘルプ"
109
 
110
+ #: my-calendar.php:123
111
+ msgid "Buy the Beginner's Guide"
112
+ msgstr "初心者マニュアルを購入する"
113
+
114
+ #: my-calendar.php:124
115
+ msgid "Get Support"
116
+ msgstr "作者サイト"
117
+
118
+ #: my-calendar.php:125
119
+ #: my-calendar.php:229
120
+ msgid "My Calendar Help"
121
+ msgstr "My Calendar ヘルプ"
122
+
123
+ #: my-calendar.php:126
124
+ msgid "Make a Donation"
125
+ msgstr "作者に寄付する"
126
+
127
+ #. #-#-#-#-# plugin.pot (My Calendar 1.7.1) #-#-#-#-#
128
+ #. Plugin Name of the plugin/theme
129
+ #: my-calendar.php:217
130
+ msgid "My Calendar"
131
+ msgstr "My Calendar"
132
+
133
+ #: my-calendar.php:220
134
+ msgid "Add/Edit Events"
135
+ msgstr "イベントの追加/編集"
136
+
137
+ #: my-calendar.php:224
138
+ #: my-calendar-categories.php:195
139
+ msgid "Manage Categories"
140
+ msgstr "カテゴリーの管理"
141
+
142
+ #: my-calendar.php:225
143
+ #: my-calendar-locations.php:141
144
+ msgid "Manage Locations"
145
+ msgstr "場所の管理"
146
+
147
+ #: my-calendar.php:227
148
+ msgid "Style Editor"
149
+ msgstr "CSS 編集"
150
+
151
+ #: my-calendar.php:228
152
+ msgid "Behavior Editor"
153
+ msgstr "JavaScript編集"
154
+
155
+ #: my-calendar-user.php:39
156
+ msgid "My Calendar User Settings"
157
+ msgstr "カレンダーのユーザー設定"
158
+
159
+ #: my-calendar-event-manager.php:28
160
+ #: my-calendar-settings.php:577
161
  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?"
162
  msgstr ""
163
 
164
+ #: my-calendar-event-manager.php:35
165
+ #: my-calendar-settings.php:584
166
  msgid "Import from Calendar"
167
  msgstr ""
168
 
169
+ #: my-calendar-event-manager.php:40
170
  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>!"
171
  msgstr ""
172
 
173
+ #: my-calendar-event-manager.php:85
174
+ msgid "%1$d events deleted successfully out of %2$d selected"
175
+ msgstr "イベントが正常に削除されました"
176
+
177
+ #: my-calendar-event-manager.php:87
178
+ #: my-calendar-event-manager.php:241
179
+ #: my-calendar-event-manager.php:263
180
+ #: my-calendar-event-manager.php:277
181
+ #: my-calendar-event-manager.php:286
182
+ #: my-calendar-event-manager.php:871
183
+ #: my-calendar-event-manager.php:874
184
+ #: my-calendar-event-manager.php:877
185
+ #: my-calendar-event-manager.php:887
186
+ #: my-calendar-event-manager.php:895
187
+ #: my-calendar-event-manager.php:911
188
+ #: my-calendar-event-manager.php:917
189
+ msgid "Error"
190
+ msgstr "エラー"
191
+
192
+ #: my-calendar-event-manager.php:87
193
+ msgid "Your events have not been deleted. Please investigate."
194
+ msgstr ""
195
+
196
+ #: my-calendar-event-manager.php:98
197
  msgid "Delete Event"
198
  msgstr "イベントを削除"
199
 
200
+ #: my-calendar-event-manager.php:98
201
  msgid "Are you sure you want to delete this event?"
202
  msgstr "本当にこのイベントを削除していいですか?"
203
 
204
+ #: my-calendar-event-manager.php:104
205
+ #: my-calendar-event-manager.php:732
206
+ #: my-calendar-categories.php:212
207
+ #: my-calendar-categories.php:231
208
+ #: my-calendar-locations.php:156
209
+ #: my-calendar-locations.php:168
210
+ msgid "Delete"
211
+ msgstr "消去"
212
+
213
+ #: my-calendar-event-manager.php:112
214
  msgid "You do not have permission to delete that event."
215
  msgstr "このイベントを削除する権限がありません"
216
 
217
+ #: my-calendar-event-manager.php:127
 
218
  msgid "You do not have permission to approve that event."
219
  msgstr "このイベントを承認する権限がありません"
220
 
221
+ #: my-calendar-event-manager.php:141
 
222
  msgid "You do not have permission to reject that event."
223
  msgstr "このイベントを却下する権限がありません"
224
 
225
+ #: my-calendar-event-manager.php:170
226
+ #: my-calendar-event-manager.php:326
227
+ msgid "Edit Event"
228
+ msgstr "イベントの編集"
229
+
230
+ #: my-calendar-event-manager.php:174
231
+ #: my-calendar-event-manager.php:183
232
+ msgid "You must provide an event id in order to edit it"
233
+ msgstr ""
234
+
235
+ #: my-calendar-event-manager.php:179
236
+ #: my-calendar-event-manager.php:326
237
+ msgid "Copy Event"
238
+ msgstr "イベントのコピー"
239
+
240
+ #: my-calendar-event-manager.php:189
241
+ msgid "Add Event"
242
+ msgstr "イベントの追加"
243
+
244
  #: my-calendar-event-manager.php:193
245
+ msgid "Manage Events"
246
+ msgstr "イベントの管理"
 
 
 
 
 
 
 
 
247
 
248
+ #: my-calendar-event-manager.php:241
249
  msgid "I'm sorry! I couldn't add that event to the database."
250
  msgstr ""
251
 
252
+ #: my-calendar-event-manager.php:247
253
  msgid "Event added. It will now show in your calendar."
254
  msgstr "イベントが追加されました。カレンダー上で確認出来ます。"
255
 
256
+ #: my-calendar-event-manager.php:263
257
  msgid "Your event was not updated."
258
  msgstr ""
259
 
260
+ #: my-calendar-event-manager.php:265
261
  msgid "Nothing was changed in that update."
262
  msgstr "この更新で変更された箇所はありません"
263
 
264
+ #: my-calendar-event-manager.php:267
265
  msgid "Event updated successfully"
266
  msgstr "イベントが正常に更新されました"
267
 
268
+ #: my-calendar-event-manager.php:270
269
  msgid "You do not have sufficient permissions to edit that event."
270
  msgstr ""
271
 
272
+ #: my-calendar-event-manager.php:277
273
  msgid "You can't delete an event if you haven't submitted an event id"
274
  msgstr ""
275
 
276
+ #: my-calendar-event-manager.php:284
277
  msgid "Event deleted successfully"
278
  msgstr "イベントが正常に削除されました"
279
 
280
+ #: my-calendar-event-manager.php:286
281
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
282
  msgstr ""
283
 
284
+ #: my-calendar-event-manager.php:298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  msgid "Sorry! That's an invalid event key."
286
  msgstr ""
287
 
288
+ #: my-calendar-event-manager.php:302
289
  msgid "Sorry! We couldn't find an event with that ID."
290
  msgstr ""
291
 
292
+ #: my-calendar-event-manager.php:326
293
  msgid "Add an Event"
294
  msgstr "イベントを追加する"
295
 
296
+ #: my-calendar-event-manager.php:329
297
  msgid "This event must be approved in order for it to appear on the calendar."
298
  msgstr ""
299
 
300
+ #: my-calendar-event-manager.php:338
301
+ msgid "Save Event"
302
+ msgstr "イベントを保存する"
303
+
304
  #: my-calendar-event-manager.php:362
305
  msgid "Enter your Event Information"
306
  msgstr "イベントの内容を入力して下さい"
309
  msgid "Event Title"
310
  msgstr "イベント名"
311
 
312
+ #: my-calendar-event-manager.php:364
313
+ #: my-calendar-event-manager.php:456
314
+ msgid "(required)"
315
+ msgstr "(必須)"
316
+
317
+ #: my-calendar-event-manager.php:368
318
  msgid "Publish"
319
  msgstr "公開"
320
 
321
+ #: my-calendar-event-manager.php:368
322
  msgid "You must approve this event to promote it to the calendar."
323
  msgstr "このイベントをカレンダーに反映させるには管理者の承認が必要です"
324
 
325
+ #: my-calendar-event-manager.php:370
326
  msgid "An administrator must approve your new event."
327
  msgstr ""
328
 
329
+ #: my-calendar-event-manager.php:383
330
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
331
  msgstr "イベントの説明(HTMLが使えます)"
332
 
333
+ #: my-calendar-event-manager.php:389
334
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
335
  msgstr "イベントの概要(HTMLが使えます)"
336
 
337
+ #: my-calendar-event-manager.php:400
338
+ msgid "Event Host"
339
+ msgstr "イベントの主催者"
340
+
341
+ #: my-calendar-event-manager.php:419
342
  msgid "Event Category"
343
  msgstr "イベントのカテゴリー"
344
 
345
+ #: my-calendar-event-manager.php:444
346
  msgid "Event Link (Optional)"
347
  msgstr "イベントへのリンク(オプション)"
348
 
349
+ #: my-calendar-event-manager.php:444
350
  msgid "This link will expire when the event passes."
351
  msgstr "イベント終了後、リンクを消す"
352
 
353
+ #: my-calendar-event-manager.php:452
354
+ msgid "Event Date and Time"
355
+ msgstr "イベントの日時"
356
+
357
+ #: my-calendar-event-manager.php:454
358
+ msgid "Enter the beginning and ending information for the first occurrence of this event."
359
+ msgstr "イベントの開始日時と終了日時を入力してください。"
360
+
361
+ #: my-calendar-event-manager.php:456
362
  msgid "Start Date (YYYY-MM-DD)"
363
  msgstr "イベント開始日 (YYYY-MM-DD)"
364
 
365
+ #: my-calendar-event-manager.php:456
 
 
 
 
366
  msgid "Time (hh:mm)"
367
  msgstr "開始時刻 (hh:mm)"
368
 
369
+ #: my-calendar-event-manager.php:465
370
+ msgid "End Date (YYYY-MM-DD)"
371
+ msgstr "イベント終了日 (YYYY-MM-DD)"
372
+
373
+ #: my-calendar-event-manager.php:465
374
+ msgid "End Time (hh:mm)"
375
+ msgstr "終了時刻 (hh:mm)"
376
 
377
+ #: my-calendar-event-manager.php:473
378
  msgid "Current time difference from GMT is "
379
  msgstr "現在の時刻はGMTより"
380
 
381
+ #: my-calendar-event-manager.php:473
382
  msgid " hour(s)"
383
  msgstr "時間前です。"
384
 
385
+ #: my-calendar-event-manager.php:482
 
 
 
 
 
 
 
 
386
  msgid "Recurring Events"
387
  msgstr "繰り返しイベント"
388
 
389
+ #: my-calendar-event-manager.php:485
390
  msgid "Repeats for"
391
  msgstr "繰り返し回数"
392
 
393
+ #: my-calendar-event-manager.php:486
394
  msgid "Units"
395
  msgstr "回数"
396
 
397
+ #: my-calendar-event-manager.php:487
398
  msgid "Does not recur"
399
  msgstr "繰り返さない"
400
 
401
+ #: my-calendar-event-manager.php:488
402
+ #: my-calendar-event-manager.php:706
403
  msgid "Daily"
404
  msgstr "毎日"
405
 
406
+ #: my-calendar-event-manager.php:489
407
+ #: my-calendar-event-manager.php:707
408
  msgid "Weekly"
409
  msgstr "毎週"
410
 
411
+ #: my-calendar-event-manager.php:490
412
  msgid "Bi-weekly"
413
  msgstr "隔週"
414
 
415
+ #: my-calendar-event-manager.php:491
416
  msgid "Date of Month (e.g., the 24th of each month)"
417
  msgstr "月の同じ日付で(例:毎月24日)"
418
 
419
+ #: my-calendar-event-manager.php:492
420
  msgid "Day of Month (e.g., the 3rd Monday of each month)"
421
  msgstr "月の同じ曜日で(例:毎月第3月曜日)"
422
 
423
+ #: my-calendar-event-manager.php:493
424
  msgid "Annually"
425
  msgstr "毎年"
426
 
427
+ #: my-calendar-event-manager.php:495
428
+ msgid "Enter \"0\" if the event should recur indefinitely."
429
+ msgstr "イベントが無期限に繰り返される場合は\"0\"を入力してください。"
430
 
431
+ #: my-calendar-event-manager.php:512
432
  msgid "Event Registration Status"
433
  msgstr "イベント登録状況"
434
 
435
+ #: my-calendar-event-manager.php:513
436
+ msgid "My Calendar does not manage event registrations. Use this for information only."
437
+ msgstr "このプラグインはイベント登録状況の管理は出来ません。イベント情報としてご利用ください。"
438
+
439
+ #: my-calendar-event-manager.php:515
440
  msgid "Open"
441
  msgstr "公開"
442
 
443
+ #: my-calendar-event-manager.php:516
444
  msgid "Closed"
445
  msgstr "非公開"
446
 
447
+ #: my-calendar-event-manager.php:517
448
  msgid "Does not apply"
449
  msgstr "適用しない"
450
 
451
+ #: my-calendar-event-manager.php:520
452
  msgid "If this event recurs, it can only be registered for as a complete series."
453
  msgstr "このイベントが繰り返しの場合、一つの完結したセットとして登録されます"
454
 
455
+ #: my-calendar-event-manager.php:537
456
+ #: my-calendar-locations.php:87
457
  msgid "Event Location"
458
  msgstr "イベントの場所"
459
 
460
+ #: my-calendar-event-manager.php:544
461
  msgid "Choose a preset location:"
462
  msgstr "登録された場所から選択する"
463
 
464
+ #: my-calendar-event-manager.php:557
465
  msgid "Add recurring locations for later use."
466
  msgstr "繰り返し使う場所を登録する"
467
 
468
+ #: my-calendar-event-manager.php:566
469
+ #: my-calendar-locations.php:89
470
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
471
  msgstr "場所についての項目は全てオプションです。<注意:不正確な情報が記入された場合、地図の表示も不正確になります>"
472
 
473
+ #: my-calendar-event-manager.php:569
474
+ #: my-calendar-locations.php:92
475
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
476
  msgstr "場所の名前(例:福岡タワー)"
477
 
478
+ #: my-calendar-event-manager.php:572
479
+ #: my-calendar-locations.php:95
480
  msgid "Street Address"
481
  msgstr "住所(町名・通り名など)"
482
 
483
+ #: my-calendar-event-manager.php:575
484
+ #: my-calendar-locations.php:98
485
  msgid "Street Address (2)"
486
  msgstr "住所(ビル・マンション名など)"
487
 
488
+ #: my-calendar-event-manager.php:578
489
+ #: my-calendar-locations.php:101
490
+ #: my-calendar-settings.php:556
491
  msgid "City"
492
  msgstr "市町村"
493
 
494
+ #: my-calendar-event-manager.php:578
495
+ #: my-calendar-locations.php:101
496
+ #: my-calendar-settings.php:557
497
  msgid "State/Province"
498
  msgstr "都道府県"
499
 
500
+ #: my-calendar-event-manager.php:578
501
+ #: my-calendar-locations.php:101
502
+ #: my-calendar-settings.php:559
503
  msgid "Postal Code"
504
  msgstr "郵便番号"
505
 
506
+ #: my-calendar-event-manager.php:581
507
+ #: my-calendar-locations.php:104
508
+ #: my-calendar-settings.php:558
509
  msgid "Country"
510
  msgstr "国名"
511
 
512
+ #: my-calendar-event-manager.php:584
513
+ #: my-calendar-locations.php:107
514
  msgid "Initial Zoom"
515
  msgstr "ズーム初期設定"
516
 
517
+ #: my-calendar-event-manager.php:586
518
+ #: my-calendar-locations.php:109
519
  msgid "Neighborhood"
520
  msgstr "ご近所"
521
 
522
+ #: my-calendar-event-manager.php:587
523
+ #: my-calendar-locations.php:110
524
  msgid "Small City"
525
  msgstr "市街"
526
 
527
+ #: my-calendar-event-manager.php:588
528
+ #: my-calendar-locations.php:111
529
  msgid "Large City"
530
  msgstr "大都市"
531
 
532
+ #: my-calendar-event-manager.php:589
533
+ #: my-calendar-locations.php:112
534
  msgid "Greater Metro Area"
535
  msgstr "都市圏"
536
 
537
+ #: my-calendar-event-manager.php:590
538
+ #: my-calendar-locations.php:113
539
  msgid "State"
540
  msgstr "都道府県"
541
 
542
+ #: my-calendar-event-manager.php:591
543
+ #: my-calendar-locations.php:114
544
  msgid "Region"
545
  msgstr "地方"
546
 
547
+ #: my-calendar-event-manager.php:595
548
+ #: my-calendar-locations.php:118
549
  msgid "GPS Coordinates (optional)"
550
  msgstr "GPS情報(オプション)"
551
 
552
+ #: my-calendar-event-manager.php:597
553
  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."
554
  msgstr "イベント開催場所についてGPS情報がある場合には、住所を入力せずに地図上にリンクを生成出来ます。"
555
 
556
+ #: my-calendar-event-manager.php:600
557
+ #: my-calendar-locations.php:123
558
  msgid "Longitude"
559
  msgstr "経度"
560
 
561
+ #: my-calendar-event-manager.php:600
562
+ #: my-calendar-locations.php:123
563
  msgid "Latitude"
564
  msgstr "緯度"
565
 
566
+ #: my-calendar-event-manager.php:666
567
+ msgid "Table of Calendar Events"
568
+ msgstr "イベントテーブル"
569
 
570
+ #: my-calendar-event-manager.php:669
571
+ #: my-calendar-categories.php:207
572
+ #: my-calendar-locations.php:153
573
+ msgid "ID"
574
+ msgstr "ID"
575
+
576
+ #: my-calendar-event-manager.php:670
577
+ #: my-calendar-widgets.php:32
578
+ #: my-calendar-widgets.php:98
579
  msgid "Title"
580
  msgstr "イベント名"
581
 
582
+ #: my-calendar-event-manager.php:671
583
+ #: my-calendar-locations.php:154
 
 
 
 
584
  msgid "Location"
585
  msgstr "場所"
586
 
587
+ #: my-calendar-event-manager.php:672
588
  msgid "Description"
589
  msgstr "説明"
590
 
591
+ #: my-calendar-event-manager.php:673
592
  msgid "Start Date"
593
  msgstr "開始日時"
594
 
595
+ #: my-calendar-event-manager.php:674
596
  msgid "Recurs"
597
  msgstr "繰り返し"
598
 
599
+ #: my-calendar-event-manager.php:675
600
+ #: my-calendar-settings.php:270
601
+ #: my-calendar-settings.php:279
602
+ #: my-calendar-settings.php:287
603
  msgid "Author"
604
  msgstr "登録者"
605
 
606
+ #: my-calendar-event-manager.php:676
607
  msgid "Category"
608
  msgstr "カテゴリー"
609
 
610
+ #: my-calendar-event-manager.php:677
611
  msgid "Edit / Delete"
612
  msgstr "編集/消去"
613
 
614
+ #: my-calendar-event-manager.php:705
615
  msgid "Never"
616
  msgstr "繰り返さない"
617
 
618
+ #: my-calendar-event-manager.php:708
619
  msgid "Bi-Weekly"
620
  msgstr ""
621
 
622
+ #: my-calendar-event-manager.php:709
623
  msgid "Monthly (by date)"
624
  msgstr ""
625
 
626
+ #: my-calendar-event-manager.php:710
627
  msgid "Monthly (by day)"
628
  msgstr ""
629
 
630
+ #: my-calendar-event-manager.php:711
631
  msgid "Yearly"
632
  msgstr ""
633
 
634
+ #: my-calendar-event-manager.php:713
635
+ #: my-calendar-categories.php:228
636
+ #: my-calendar-output.php:125
637
+ #: my-calendar-settings.php:308
638
+ msgid "N/A"
639
+ msgstr "設定できません"
640
+
641
+ #: my-calendar-event-manager.php:714
642
  msgid "Forever"
643
  msgstr "永久"
644
 
645
+ #: my-calendar-event-manager.php:715
646
  msgid "Times"
647
  msgstr "回"
648
 
649
+ #: my-calendar-event-manager.php:730
650
  msgid "Copy"
651
  msgstr "コピー"
652
 
653
+ #: my-calendar-event-manager.php:732
654
+ #: my-calendar-categories.php:211
655
+ #: my-calendar-categories.php:225
656
+ #: my-calendar-locations.php:155
657
+ #: my-calendar-locations.php:167
658
+ msgid "Edit"
659
+ msgstr "編集"
660
+
661
+ #: my-calendar-event-manager.php:733
662
  msgid "Not editable."
663
  msgstr "編集権限がありません"
664
 
665
+ #: my-calendar-event-manager.php:739
666
  msgid "Reject"
667
  msgstr "却下"
668
 
669
+ #: my-calendar-event-manager.php:741
670
  msgid "Approve"
671
  msgstr "承認"
672
 
673
+ #: my-calendar-event-manager.php:746
674
  msgid "Approved"
675
  msgstr "承認済み"
676
 
677
+ #: my-calendar-event-manager.php:748
678
  msgid "Rejected"
679
  msgstr "却下されました"
680
 
681
+ #: my-calendar-event-manager.php:750
682
+ msgid "Awaiting Approval"
683
+ msgstr ""
684
+
685
+ #: my-calendar-event-manager.php:766
686
  msgid "There are no events in the database!"
687
  msgstr "データベースにイベント情報がありません!"
688
 
689
+ #: my-calendar-event-manager.php:871
690
  msgid "Your event end date must be either after or the same as your event begin date"
691
  msgstr "イベント終了日は、開始日と同日かそれ以降の日付にしてください"
692
 
693
+ #: my-calendar-event-manager.php:874
694
  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."
695
  msgstr ""
696
 
697
+ #: my-calendar-event-manager.php:877
698
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
699
  msgstr "開始日と終了日は、YYYY-MM-DD(例:2010-10-15)のように指定してください"
700
 
701
+ #: my-calendar-event-manager.php:887
702
  msgid "The time field must either be blank or be entered in the format hh:mm"
703
  msgstr "開始時刻は空欄にするか、hh:mm(例:15:00)のように指定してください"
704
 
705
+ #: my-calendar-event-manager.php:895
706
  msgid "The end time field must either be blank or be entered in the format hh:mm"
707
  msgstr "終了時刻は空欄にするか、hh:mm(例:18:00)のように指定してください"
708
 
709
+ #: my-calendar-event-manager.php:911
 
 
 
 
710
  msgid "The event title must be between 1 and 255 characters in length."
711
  msgstr "イベント名は1文字以上255文字(全角128文字)以下にしてください"
712
 
713
+ #: my-calendar-event-manager.php:917
714
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
715
  msgstr "繰り返しイベントを「繰り返さない」に設定した場合、繰り返し回数は必ず「0」にしてください"
716
 
717
+ #: my-calendar-upgrade-db.php:21
718
+ #: my-calendar-upgrade-db.php:29
719
+ msgid "The My Calendar database needs to be updated."
720
+ msgstr "データベースを更新してください"
 
 
 
721
 
722
+ #: my-calendar-upgrade-db.php:22
723
+ #: my-calendar-upgrade-db.php:43
724
+ msgid "Update now"
725
+ msgstr "アップデートする"
726
 
727
+ #: my-calendar-upgrade-db.php:29
728
+ msgid "Upgrade now."
729
+ msgstr "アップデートする"
730
 
731
+ #: my-calendar-upgrade-db.php:42
732
+ 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!"
733
+ msgstr "イベントのデータが入っていないので、My Calendar はデータベースが最新の物かどうか判断出来ません。もし新規イベントが追加出来ない場合、データベースをアップデートして下さい。"
734
 
735
+ #: my-calendar-upgrade-db.php:53
736
+ msgid "My Calendar Database is updated."
737
+ msgstr "データベースが更新されました"
738
 
739
+ #: my-calendar-categories.php:90
740
+ msgid "Category added successfully"
741
+ msgstr "カテゴリーが正常に追加されました"
742
 
743
+ #: my-calendar-categories.php:92
744
+ msgid "Category addition failed."
745
+ msgstr "カテゴリーの追加に失敗しました"
746
 
747
+ #: my-calendar-categories.php:102
748
+ msgid "Category deleted successfully. Categories in calendar updated."
749
+ msgstr "カテゴリーが正常に削除されました。カレンダーの中のカテゴリーが更新されました。"
750
+
751
+ #: my-calendar-categories.php:104
752
+ msgid "Category deleted successfully. Categories in calendar not updated."
753
+ msgstr "カテゴリーが正常に削除されました。カレンダーの中のカテゴリーは更新されませんでした。"
754
+
755
+ #: my-calendar-categories.php:106
756
+ msgid "Category not deleted. Categories in calendar updated."
757
+ msgstr "カテゴリーの削除に失敗しました。カレンダーの中のカテゴリーは更新されました。"
758
+
759
+ #: my-calendar-categories.php:115
760
+ msgid "Category edited successfully"
761
+ msgstr "カテゴリーが正常に編集されました"
762
+
763
+ #: my-calendar-categories.php:140
764
+ #: my-calendar-categories.php:165
765
+ #: my-calendar-categories.php:182
766
+ msgid "Add Category"
767
+ msgstr "カテゴリーを追加する"
768
+
769
+ #: my-calendar-categories.php:142
770
+ #: my-calendar-categories.php:165
771
+ msgid "Edit Category"
772
+ msgstr "カテゴリーを編集する"
773
+
774
+ #: my-calendar-categories.php:149
775
+ msgid "Category Editor"
776
+ msgstr "カテゴリーの編集"
777
+
778
+ #: my-calendar-categories.php:166
779
+ #: my-calendar-categories.php:208
780
+ msgid "Category Name"
781
+ msgstr "カテゴリー名"
782
+
783
+ #: my-calendar-categories.php:167
784
+ msgid "Category Color (Hex format)"
785
+ msgstr "カテゴリーの色(16進数形式:#000000など)"
786
+
787
+ #: my-calendar-categories.php:168
788
+ #: my-calendar-categories.php:210
789
+ msgid "Category Icon"
790
+ msgstr "カテゴリー別アイコン"
791
+
792
+ #: my-calendar-categories.php:182
793
+ #: my-calendar-locations.php:127
794
+ msgid "Save Changes"
795
+ msgstr "変更を保存する"
796
+
797
+ #: my-calendar-categories.php:209
798
+ msgid "Category Color"
799
+ msgstr "カテゴリーの色"
800
+
801
+ #: my-calendar-categories.php:231
802
+ #: my-calendar-locations.php:168
803
+ msgid "Are you sure you want to delete this category?"
804
+ msgstr "本当にこのカテゴリーを削除してもいいですか?"
805
+
806
+ #: my-calendar-categories.php:242
807
+ msgid "There are no categories in the database - something has gone wrong!"
808
+ msgstr "データベースの中にカテゴリー情報がありません。"
809
+
810
+ #: my-calendar-install.php:142
811
+ msgid "My Calendar Default Timezone"
812
+ msgstr "My Calendar のデフォルトタイムゾーン"
813
+
814
+ #: my-calendar-install.php:187
815
+ msgid "My Calendar Default Location"
816
+ msgstr "My Calendar に登録されたデフォルトの場所"
817
+
818
+ #: my-calendar-behaviors.php:40
819
+ msgid "Behavior Settings saved"
820
+ msgstr "JavaScript設定が保存されました"
821
+
822
+ #: my-calendar-behaviors.php:63
823
+ msgid "My Calendar Behaviors"
824
+ msgstr "My Calendar のJavaScript編集"
825
+
826
+ #: my-calendar-behaviors.php:67
827
+ msgid "Calendar Behavior Settings"
828
+ msgstr "カレンダーの動作設定"
829
+
830
+ #: my-calendar-behaviors.php:72
831
+ msgid "Apply JavaScript only on these pages (comma separated page IDs)"
832
+ msgstr "JavaScript を特定のページにだけ適用する(カンマでページ ID を区切ってください)"
833
+
834
+ #: my-calendar-behaviors.php:75
835
+ msgid "Calendar Behaviors: Calendar View"
836
+ msgstr "カレンダーの動作:カレンダー表示"
837
+
838
+ #: my-calendar-behaviors.php:77
839
+ msgid "Reset the My Calendar Calendar Javascript"
840
+ msgstr "JavaScript をリセットする"
841
+
842
+ #: my-calendar-behaviors.php:77
843
+ msgid "Disable Calendar Javascript Effects"
844
+ msgstr "JavaScript のエフェクトを無効にする"
845
+
846
+ #: my-calendar-behaviors.php:80
847
+ msgid "Edit the jQuery scripts for My Calendar in Calendar format"
848
+ msgstr "カレンダー表示の jQuery を編集する"
849
+
850
+ #: my-calendar-behaviors.php:87
851
+ msgid "Calendar Behaviors: List View"
852
+ msgstr "カレンダーの動作:リスト表示"
853
+
854
+ #: my-calendar-behaviors.php:89
855
+ msgid "Reset the My Calendar List Javascript"
856
+ msgstr "JavaScript をリセットする"
857
+
858
+ #: my-calendar-behaviors.php:89
859
+ msgid "Disable List Javascript Effects"
860
+ msgstr "JavaScript のエフェクトを無効にする"
861
+
862
+ #: my-calendar-behaviors.php:92
863
+ msgid "Edit the jQuery scripts for My Calendar in List format"
864
+ msgstr "リスト表示の jQuery を編集する"
865
+
866
+ #: my-calendar-behaviors.php:99
867
+ msgid "Calendar Behaviors: Mini Calendar View"
868
+ msgstr "カレンダーの動作:ミニカレンダー"
869
+
870
+ #: my-calendar-behaviors.php:101
871
+ msgid "Reset the My Calendar Mini Format Javascript"
872
+ msgstr "JavaScript をリセットする"
873
+
874
+ #: my-calendar-behaviors.php:101
875
+ msgid "Disable Mini Javascript Effects"
876
+ msgstr "JavaScript のエフェクトを無効にする"
877
+
878
+ #: my-calendar-behaviors.php:104
879
+ msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
880
+ msgstr "ミニカレンダーの jQuery を編集する"
881
+
882
+ #: my-calendar-behaviors.php:111
883
+ msgid "Calendar Behaviors: AJAX Navigation"
884
+ msgstr "カレンダーの動作:AJAXナビゲーション"
885
+
886
+ #: my-calendar-behaviors.php:113
887
+ msgid "Reset the My Calendar AJAX Javascript"
888
+ msgstr "JavaScript をリセットする"
889
+
890
+ #: my-calendar-behaviors.php:113
891
+ msgid "Disable AJAX Effects"
892
+ msgstr "JavaScript のエフェクトを無効にする"
893
+
894
+ #: my-calendar-behaviors.php:116
895
+ msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
896
+ msgstr "Ajaxナビゲーションの jQuery を編集する"
897
+
898
+ #: my-calendar-templates.php:188
899
+ msgid "Published"
900
+ msgstr "承認済み"
901
+
902
+ #: my-calendar-templates.php:190
903
+ msgid "Reserved"
904
+ msgstr "保留中"
905
+
906
+ #: my-calendar-help.php:7
907
+ msgid "How to use My Calendar"
908
+ msgstr "My Calendar の使い方"
909
+
910
+ #: my-calendar-help.php:12
911
+ msgid "Shortcode Syntax"
912
+ msgstr "ショートコードの構文"
913
+
914
+ #: my-calendar-help.php:15
915
+ msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
916
+ msgstr "これらのショートコードは、投稿、ページ、ウィジェットで使えます。"
917
+
918
+ #: my-calendar-help.php:19
919
+ 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."
920
+ msgstr "基本のショートコードです。投稿・ページの中に、カテゴリーが反映できる通常の月毎カレンダーを表示します。"
921
+
922
+ #: my-calendar-help.php:23
923
+ msgid "The shortcode supports five attributes, <code>category</code>, <code>format</code>, <code>showkey</code>, <code>shownav</code> and <code>time</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. Setting <code>shownav</code> to <code>no</code> will disable the Previous/Next links. The <code>time</code> shortcode switches between a weekly view and the default monthly view."
924
+ 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>にするといいでしょう。"
925
+
926
+ #: my-calendar-help.php:27
927
+ msgid "This shortcode displays the output of the Upcoming Events widget. 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. <code>fallback</code> provides text in case there are no events meeting your criteria."
928
+ msgstr "このショートコードは「登録済のイベント」ウィジェットを表示します。ここで設定した属性はウィジェットの設定を上書きします。属性を設定しないと、ウィジェットの設定で表示されます。<code>before</code>と<code>after</code>属性には数字で件数を指定します。<code>fallback</code>属性には条件に合致するイベントがなかった場合のメッセージを設定します。<code>type</code>属性には\"event\" か \"days\" のどちらかを指定します。<code>category</code>属性の設定は上記を参考にしてください。テンプレート用コードの詳細は下の方で詳しく解説します。"
929
+
930
+ #: my-calendar-help.php:30
931
+ msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with three configurable attributes: category, template and fallback text."
932
+ msgstr "このショートコードは「本日のイベント」ウィジェットを表示します。設定できる属性はカテゴリー、テンプレートとフォールバックテキストです。"
933
+
934
+ #: my-calendar-help.php:33
935
+ msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, or <code>zip</code> (postal code)."
936
+ msgstr "このショートコードはイベントの場所をリストまたはドロップダウンメニューとして表示します。<code>show</code> 属性は <code>list</code> または<code>form</code>を表示し、 <code>type</code> 属性は同様に <code>saved</code> (保存済の場所)または<code>custom</code> (ユーザー設定で定義づけられたもの)を表示します。 <code>datatype</code> 属性は以下のデータから選択します:<code>name</code> (business name), <code>city</code>(市町村), <code>state</code>(都道府県), <code>country</code>(国名)または <code>zip</code> (郵便番号)"
937
+
938
+ #: my-calendar-help.php:39
939
+ msgid "Category Icons"
940
+ msgstr "カテゴリーのアイコン"
941
+
942
+ #: my-calendar-help.php:42
943
  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."
944
  msgstr "My Calendar プラグインは様々な形のカレンダーを管理出来るよう設計されています。各カレンダーの基本はカテゴリーです。全てのカテゴリーを含んだカレンダーはもちろん、カテゴリー別にページを分けたカレンダーを作ったりする事も簡単に出来ます。場所も設定出来るので、色々な場所を含むカレンダーも作れます。"
945
 
946
+ #: my-calendar-help.php:45
947
  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."
948
  msgstr "最初から用意されているカテゴリーアイコンはあなたの用途やデザインに合わないかもしれません。そこであなたの準備したアイコンをプラグインの中の「icons」フォルダにアップロードする事で、すぐにカレンダーで使えるようになります。また、アイコンを「\"my-calendar-custom\"」フォルダを作成してそこにアップロードする事で、プラグインをアップグレードした時に上書きされるのを防止できます。"
949
 
950
+ #: my-calendar-help.php:45
951
  msgid "Your icons folder is:"
952
  msgstr "アイコンフォルダの位置:"
953
 
954
+ #: my-calendar-help.php:45
955
  msgid "You can alternately place icons in:"
956
  msgstr "こちらのディレクトリにアイコンを配置する事もできます:"
957
 
958
+ #: my-calendar-help.php:53
959
+ msgid "Custom Styles"
960
+ msgstr "カスタムスタイル"
961
+
962
+ #: my-calendar-help.php:56
963
+ msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
964
+ msgstr "My Calendarプラグインには標準のスタイルシートが用意されていますが、プラグインのアップデートの際に新しいものがあれば書き換えられてしまいます。もし完全に新しいオリジナルのスタイルシートを追加したい場合には、カスタムスタイルのディレクトリーにスタイルシートを保存できます。"
965
+
966
+ #: my-calendar-help.php:58
967
+ msgid "Your stylesheet directory is"
968
+ msgstr "標準スタイルシートのディレクトリー:"
969
+
970
+ #: my-calendar-help.php:58
971
+ msgid "Your custom stylesheets directory is"
972
+ msgstr "カスタムスタイルシートのディレクトリー:"
973
+
974
+ #: my-calendar-help.php:66
975
  msgid "Widget Templating"
976
  msgstr "ウィジェットテンプレートのコード"
977
 
978
+ #: my-calendar-help.php:69
979
+ msgid "These codes are available in calendar widgets, email notifications, and event titles."
980
+ msgstr "これらのショートコードがカレンダーウィジェットをカスタマイズするために用意されています。"
981
 
982
+ #: my-calendar-help.php:73
983
  msgid "Displays the name of the category the event is in."
984
  msgstr "イベントが含まれるカテゴリー名を表示します"
985
 
986
+ #: my-calendar-help.php:76
987
  msgid "Displays the title of the event."
988
  msgstr "イベントのタイトルを表示します"
989
 
990
+ #: my-calendar-help.php:79
991
  msgid "Displays the start time for the event."
992
  msgstr "イベントの開始時刻を表示します"
993
 
994
+ #: my-calendar-help.php:82
995
+ msgid "Displays the start time for the event adjusted to the current user's time zone settings. Blank output if user settings are disabled or the user has not selected a preferred time zone."
996
+ msgstr "表示されるイベント開始時刻を、ユーザーのタイムゾーン設定に合わせて表示します。ユーザーのタイムゾーン設定が未選択、または無効になっている場合は空白で出力されます。"
997
+
998
+ #: my-calendar-help.php:85
999
  msgid "Displays the date on which the event begins."
1000
  msgstr "イベントの開始日時を表示します"
1001
 
1002
+ #: my-calendar-help.php:88
1003
  msgid "Displays the date on which the event ends."
1004
  msgstr "イベントの終了日時を表示します"
1005
 
1006
+ #: my-calendar-help.php:91
1007
  msgid "Displays the time at which the event ends."
1008
  msgstr "イベントの終了時刻を表示します"
1009
 
1010
+ #: my-calendar-help.php:94
1011
  msgid "Displays the WordPress author who posted the event."
1012
  msgstr "イベントの登録者を表示します"
1013
 
1014
+ #: my-calendar-help.php:97
1015
+ msgid "Displays the name of the person assigned as host for the event."
1016
+ msgstr "イベントのホストに設定された人の名前を表示します。"
1017
+
1018
+ #: my-calendar-help.php:100
1019
  msgid "Displays the URL provided for the event."
1020
  msgstr "イベントのURLを表示します"
1021
 
1022
+ #: my-calendar-help.php:103
1023
  msgid "Displays the description of the event."
1024
  msgstr "イベントの説明を表示します"
1025
 
1026
+ #: my-calendar-help.php:106
1027
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1028
  msgstr "タイトルをリンクとして表示します(リンク情報がない場合はタイトルのみ表示)"
1029
 
1030
+ #: my-calendar-help.php:109
1031
  msgid "Displays the name of the location of the event."
1032
  msgstr "イベントの場所を表示します"
1033
 
1034
+ #: my-calendar-help.php:112
1035
  msgid "Displays the first line of the site address."
1036
  msgstr "住所(町名・通り名など)を表示します"
1037
 
1038
+ #: my-calendar-help.php:115
1039
  msgid "Displays the second line of the site address."
1040
  msgstr "住所(ビル・マンション名など)を表示します"
1041
 
1042
+ #: my-calendar-help.php:118
1043
  msgid "Displays the city for the event."
1044
  msgstr "市町村を表示します"
1045
 
1046
+ #: my-calendar-help.php:121
1047
  msgid "Displays the state for the event."
1048
  msgstr "都道府県を表示します"
1049
 
1050
+ #: my-calendar-help.php:124
1051
  msgid "Displays the postcode for the event."
1052
  msgstr "郵便番号を表示します"
1053
 
1054
+ #: my-calendar-help.php:127
1055
  msgid "Displays the country for the event location."
1056
  msgstr "国名を表示します"
1057
 
1058
+ #: my-calendar-help.php:130
1059
  msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1060
  msgstr "イベントの場所を <a href=\"http://microformats.org/wiki/hcard\">hcard</a> 様式で表示します"
1061
 
1062
+ #: my-calendar-help.php:133
1063
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
1064
  msgstr "正しく緯度・経度情報が入っている場合、Googleマップへのリンクを表示します"
1065
 
1066
+ #: my-calendar-help.php:136
1067
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
1068
  msgstr "イベント登録状況の公開・非公開を表示します。「適用しない」を選ぶと空欄で表示されます。"
1069
 
1070
+ #: my-calendar-help.php:139
1071
  msgid "Displays the short version of the event description."
1072
  msgstr "イベントの概要を表示します"
1073
 
1074
+ #: my-calendar-help.php:142
1075
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
1076
  msgstr "イベントのステータスを「投稿済」か「保留中」で表示します。メールのテンプレートで使用します。"
1077
 
1078
+ #: my-calendar-help.php:145
1079
+ msgid "Produces the address of the current event's category icon."
1080
+ msgstr "現在のイベントカテゴリーのアイコンを表示します"
1081
 
1082
+ #: my-calendar-help.php:148
1083
+ msgid "Produces the hex code for the current event's category color."
1084
  msgstr "現在のイベントの色を表示します"
1085
 
1086
+ #: my-calendar-output.php:103
1087
+ msgid "Event Details"
1088
+ msgstr ""
1089
 
1090
+ #: my-calendar-output.php:111
1091
+ msgid "Close"
1092
+ msgstr ""
1093
 
1094
+ #: my-calendar-output.php:120
1095
+ msgid "in your time zone"
1096
+ msgstr ""
1097
 
1098
+ #: my-calendar-output.php:125
1099
+ msgid "Not Applicable"
1100
+ msgstr "情報がありません"
1101
 
1102
+ #: my-calendar-output.php:137
1103
+ msgid "Posted by"
1104
+ msgstr "投稿者"
1105
 
1106
+ #: my-calendar-output.php:187
1107
+ msgid "This class is part of a series. You must register for the first event in this series to attend."
1108
+ msgstr "このイベントはシリーズの一つです。このイベントに参加するには最初に登録する必要があります。"
1109
 
1110
+ #: my-calendar-output.php:219
1111
+ msgid "Month"
1112
+ msgstr ""
1113
 
1114
+ #: my-calendar-output.php:220
1115
+ #: my-calendar-output.php:297
1116
+ msgid "January"
1117
+ msgstr "1月"
1118
 
1119
+ #: my-calendar-output.php:221
1120
+ #: my-calendar-output.php:297
1121
+ msgid "February"
1122
+ msgstr "2月"
1123
 
1124
+ #: my-calendar-output.php:222
1125
+ #: my-calendar-output.php:297
1126
+ msgid "March"
1127
+ msgstr "3月"
1128
 
1129
+ #: my-calendar-output.php:223
1130
+ #: my-calendar-output.php:297
1131
+ msgid "April"
1132
+ msgstr "4月"
1133
 
1134
+ #: my-calendar-output.php:224
1135
+ #: my-calendar-output.php:297
1136
+ msgid "May"
1137
+ msgstr "5月"
1138
 
1139
+ #: my-calendar-output.php:225
1140
+ #: my-calendar-output.php:297
1141
+ msgid "June"
1142
+ msgstr "6月"
1143
 
1144
+ #: my-calendar-output.php:226
1145
+ #: my-calendar-output.php:297
1146
+ msgid "July"
1147
+ msgstr "7月"
1148
 
1149
+ #: my-calendar-output.php:227
1150
+ #: my-calendar-output.php:297
1151
+ msgid "August"
1152
+ msgstr "8月"
1153
 
1154
+ #: my-calendar-output.php:228
1155
+ #: my-calendar-output.php:297
1156
+ msgid "September"
1157
+ msgstr "9月"
1158
 
1159
+ #: my-calendar-output.php:229
1160
+ #: my-calendar-output.php:297
1161
+ msgid "October"
1162
+ msgstr "10月"
1163
 
1164
+ #: my-calendar-output.php:230
1165
+ #: my-calendar-output.php:297
1166
+ msgid "November"
1167
+ msgstr "11月"
1168
 
1169
+ #: my-calendar-output.php:231
1170
+ #: my-calendar-output.php:297
1171
+ msgid "December"
1172
+ msgstr "12月"
1173
 
1174
+ #: my-calendar-output.php:233
1175
+ msgid "Year"
1176
+ msgstr ""
1177
 
1178
+ #: my-calendar-output.php:255
1179
+ msgid "Go"
1180
+ msgstr "移動"
1181
 
1182
+ #: my-calendar-output.php:271
1183
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1184
+ msgstr "<abbr title=\"Sunday\">日曜日</abbr>"
1185
 
1186
+ #: my-calendar-output.php:272
1187
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1188
+ msgstr "<abbr title=\"Monday\">月曜日</abbr>"
1189
 
1190
+ #: my-calendar-output.php:273
1191
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1192
+ msgstr "<abbr title=\"Tuesday\">火曜日</abbr>"
1193
+
1194
+ #: my-calendar-output.php:274
1195
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1196
+ msgstr "<abbr title=\"Wednesday\">水曜日</abbr>"
1197
+
1198
+ #: my-calendar-output.php:275
1199
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1200
+ msgstr "<abbr title=\"Thursday\">木曜日</abbr>"
1201
+
1202
+ #: my-calendar-output.php:276
1203
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1204
+ msgstr "<abbr title=\"Friday\">金曜日</abbr>"
1205
+
1206
+ #: my-calendar-output.php:277
1207
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
1208
+ msgstr "<abbr title=\"Saturday\">土曜日</abbr>"
1209
+
1210
+ #: my-calendar-output.php:282
1211
+ msgid "<abbr title=\"Sunday\">S</abbr>"
1212
+ msgstr "<abbr title=\"Sunday\">日</abbr>"
1213
+
1214
+ #: my-calendar-output.php:283
1215
+ msgid "<abbr title=\"Monday\">M</abbr>"
1216
+ msgstr "<abbr title=\"Monday\">月</abbr>"
1217
+
1218
+ #: my-calendar-output.php:284
1219
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1220
+ msgstr "<abbr title=\"Tuesday\">火</abbr>"
1221
+
1222
+ #: my-calendar-output.php:285
1223
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1224
+ msgstr "<abbr title=\"Wednesday\">水</abbr>"
1225
+
1226
+ #: my-calendar-output.php:286
1227
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1228
+ msgstr "<abbr title=\"Thursday\">木</abbr>"
1229
+
1230
+ #: my-calendar-output.php:287
1231
+ msgid "<abbr title=\"Friday\">F</abbr>"
1232
+ msgstr "<abbr title=\"Friday\">金</abbr>"
1233
+
1234
+ #: my-calendar-output.php:288
1235
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1236
+ msgstr "<abbr title=\"Saturday\">土</abbr>"
1237
+
1238
+ #: my-calendar-output.php:396
1239
+ msgid "and"
1240
+ msgstr "と"
1241
+
1242
+ #: my-calendar-output.php:415
1243
+ #: my-calendar-output.php:420
1244
+ msgid "Calendar"
1245
+ msgstr "カテゴリーのカレンダー"
1246
+
1247
+ #: my-calendar-output.php:416
1248
+ msgid "The week's events"
1249
+ msgstr ""
1250
+
1251
+ #: my-calendar-output.php:425
1252
+ msgid "Events in"
1253
+ msgstr "今月のイベント:"
1254
+
1255
+ #: my-calendar-output.php:427
1256
+ msgid "This week's events"
1257
+ msgstr ""
1258
+
1259
+ #: my-calendar-output.php:594
1260
+ msgid "There are no events scheduled during this period."
1261
+ msgstr "この期間内に設定されているイベントはありません"
1262
+
1263
+ #: my-calendar-output.php:604
1264
+ msgid "Category Key"
1265
+ msgstr "カテゴリー名"
1266
+
1267
+ #: my-calendar-output.php:637
1268
+ msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
1269
+ msgstr "<abbr title=\"Really Simple Syndication\">RSS</abbr>フィード"
1270
+
1271
+ #: my-calendar-output.php:638
1272
+ msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
1273
+ msgstr "<abbr title=\"iCal Events Export\">iCal</abbr>形式でダウンロード"
1274
+
1275
+ #: my-calendar-output.php:789
1276
+ msgid "Show events in:"
1277
+ msgstr "イベントへのリンクを表示"
1278
+
1279
+ #: my-calendar-output.php:821
1280
+ msgid "Submit"
1281
+ msgstr ""
1282
+
1283
+ #: my-calendar-widgets.php:5
1284
+ msgid "My Calendar: Today's Events"
1285
+ msgstr "本日のイベント"
1286
+
1287
+ #: my-calendar-widgets.php:14
1288
+ #: my-calendar-widgets.php:76
1289
+ msgid "Today's Events"
1290
+ msgstr "本日のイベント"
1291
+
1292
+ #: my-calendar-widgets.php:36
1293
+ #: my-calendar-widgets.php:102
1294
+ msgid "Template"
1295
+ msgstr "テンプレート"
1296
+
1297
+ #: my-calendar-widgets.php:40
1298
+ msgid "Show this text if there are no events today:"
1299
+ msgstr "当日にイベントがない場合に表示するテキスト"
1300
+
1301
+ #: my-calendar-widgets.php:44
1302
+ #: my-calendar-widgets.php:124
1303
+ msgid "Category or categories to display:"
1304
+ msgstr "表示するカテゴリー(複数選択可)"
1305
+
1306
+ #: my-calendar-widgets.php:64
1307
+ msgid "My Calendar: Upcoming Events"
1308
+ msgstr "登録済みのイベント"
1309
+
1310
+ #: my-calendar-widgets.php:106
1311
+ msgid "Widget Options"
1312
+ msgstr "ウィジェットオプション"
1313
+
1314
+ #: my-calendar-widgets.php:109
1315
+ msgid "Display upcoming events by:"
1316
+ msgstr "今後のイベントの表示方法:"
1317
+
1318
+ #: my-calendar-widgets.php:110
1319
+ msgid "Events (e.g. 2 past, 3 future)"
1320
+ msgstr "イベント単位"
1321
+
1322
+ #: my-calendar-widgets.php:111
1323
+ msgid "Dates (e.g. 4 days past, 5 forward)"
1324
+ msgstr "日数単位"
1325
+
1326
+ #: my-calendar-widgets.php:115
1327
+ msgid "events into the future;"
1328
+ msgstr "本日より後のイベント表示数"
1329
+
1330
+ #: my-calendar-widgets.php:116
1331
+ msgid "events from the past"
1332
+ msgstr "本日より前のイベント表示数"
1333
+
1334
+ #: my-calendar-widgets.php:120
1335
+ msgid "Show this text if there are no events meeting your criteria:"
1336
+ msgstr "条件に合致するイベントがない場合に表示するテキスト"
1337
+
1338
+ #: my-calendar-widgets.php:282
1339
+ msgid "There are no events currently scheduled."
1340
+ msgstr "現在予定されているイベントはありません。"
1341
+
1342
+ #: my-calendar-locations.php:27
1343
+ msgid "Location added successfully"
1344
+ msgstr "場所が正常に追加されました"
1345
+
1346
+ #: my-calendar-locations.php:29
1347
+ msgid "Location could not be added to database"
1348
+ msgstr "場所をデータベースに追加出来ませんでした"
1349
+
1350
+ #: my-calendar-locations.php:35
1351
+ msgid "Location deleted successfully"
1352
+ msgstr "場所を正常に削除しました"
1353
+
1354
+ #: my-calendar-locations.php:37
1355
+ msgid "Location could not be deleted"
1356
+ msgstr "場所を削除する事が出来ませんでした"
1357
+
1358
+ #: my-calendar-locations.php:48
1359
+ msgid "Location could not be edited."
1360
+ msgstr "場所を編集する事が出来ませんでした"
1361
+
1362
+ #: my-calendar-locations.php:50
1363
+ msgid "Location was not changed."
1364
+ msgstr "場所を変更する事が出来ませんでした"
1365
+
1366
+ #: my-calendar-locations.php:52
1367
+ msgid "Location edited successfully"
1368
+ msgstr "場所が正常に編集されました"
1369
+
1370
+ #: my-calendar-locations.php:64
1371
+ msgid "Add New Location"
1372
+ msgstr "新しい場所の追加"
1373
+
1374
+ #: my-calendar-locations.php:66
1375
+ msgid "Edit Location"
1376
+ msgstr "場所を編集する"
1377
+
1378
+ #: my-calendar-locations.php:71
1379
+ msgid "Location Editor"
1380
+ msgstr "場所の編集"
1381
+
1382
+ #: my-calendar-locations.php:120
1383
+ msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
1384
+ msgstr "もしGPS等による緯度・経度のデータがある場合は、入力した住所よりも正確にピンポイントで地図上に表示出来ます。"
1385
+
1386
+ #: my-calendar-locations.php:127
1387
+ msgid "Add Location"
1388
+ msgstr "場所を追加する"
1389
+
1390
+ #: my-calendar-locations.php:176
1391
+ msgid "There are no locations in the database yet!"
1392
+ msgstr "データベースにまだ場所が登録されていません。"
1393
+
1394
+ #: my-calendar-locations.php:180
1395
+ 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."
1396
+ msgstr "注記:再利用のために登録されている場所を編集/削除しても、すでに登録されているイベントのデータに影響はありません。場所のデータベースは、イベントの場所としてよく登録される場所を保存するだけのものです。"
1397
+
1398
+ #: my-calendar-settings.php:82
1399
+ msgid "Categories imported successfully."
1400
+ msgstr "カテゴリーのインポートに成功しました"
1401
+
1402
+ #: my-calendar-settings.php:84
1403
+ msgid "Categories not imported."
1404
+ msgstr ""
1405
+
1406
+ #: my-calendar-settings.php:87
1407
+ msgid "Events imported successfully."
1408
+ msgstr ""
1409
+
1410
+ #: my-calendar-settings.php:89
1411
+ msgid "Events not imported."
1412
+ msgstr ""
1413
+
1414
+ #: my-calendar-settings.php:121
1415
+ msgid "Permissions Settings saved"
1416
+ msgstr "パーミッション設定を保存しました"
1417
+
1418
+ #: my-calendar-settings.php:169
1419
+ msgid "Output Settings saved"
1420
+ msgstr "設定が保存されました"
1421
+
1422
+ #: my-calendar-settings.php:187
1423
+ msgid "Input Settings saved"
1424
+ msgstr "設定が保存されました"
1425
+
1426
+ #: my-calendar-settings.php:203
1427
+ msgid "Custom text settings saved"
1428
+ msgstr "カスタムテキストの設定を保存しました"
1429
+
1430
+ #: my-calendar-settings.php:216
1431
+ msgid "Email notice settings saved"
1432
+ msgstr "Email通知の設定を保存しました"
1433
+
1434
+ #: my-calendar-settings.php:230
1435
+ msgid "User custom settings saved"
1436
+ msgstr "カスタムスタイルシートの設定を保存しました"
1437
+
1438
+ #: my-calendar-settings.php:255
1439
+ msgid "My Calendar Options"
1440
+ msgstr "My Calendar の設定オプション"
1441
+
1442
+ #: my-calendar-settings.php:258
1443
+ msgid "Calendar Settings"
1444
+ msgstr "カレンダーの設定"
1445
+
1446
+ #: my-calendar-settings.php:260
1447
+ msgid "Calendar Management Settings"
1448
+ msgstr "カレンダーの設定"
1449
+
1450
+ #: my-calendar-settings.php:265
1451
+ msgid "Calendar Options: Management"
1452
+ msgstr "カレンダーのオプション:管理"
1453
+
1454
+ #: my-calendar-settings.php:267
1455
+ msgid "Choose the lowest user group that may create events"
1456
  msgstr "どのユーザ権限からイベントを作成出来るようにしますか?"
1457
 
1458
+ #: my-calendar-settings.php:268
1459
+ #: my-calendar-settings.php:277
1460
  msgid "Subscriber"
1461
  msgstr "購読者"
1462
 
1463
+ #: my-calendar-settings.php:269
1464
+ #: my-calendar-settings.php:278
1465
+ #: my-calendar-settings.php:286
1466
  msgid "Contributor"
1467
  msgstr "寄稿者"
1468
 
1469
+ #: my-calendar-settings.php:271
1470
+ #: my-calendar-settings.php:280
1471
+ #: my-calendar-settings.php:288
1472
  msgid "Editor"
1473
  msgstr "編集者"
1474
 
1475
+ #: my-calendar-settings.php:272
1476
+ #: my-calendar-settings.php:281
1477
+ #: my-calendar-settings.php:289
1478
  msgid "Administrator"
1479
  msgstr "管理者"
1480
 
1481
+ #: my-calendar-settings.php:276
1482
  msgid "Choose the lowest user group that may approve events"
1483
  msgstr "どのユーザ権限からイベントを承認出来るようにしますか?"
1484
 
1485
+ #: my-calendar-settings.php:282
1486
  msgid "Enable approval options."
1487
  msgstr "承認機能を有効にする"
1488
 
1489
+ #: my-calendar-settings.php:285
1490
+ msgid "Choose the lowest user group that may edit or delete any event"
1491
+ msgstr "どのユーザ権限からイベントを作成出来るようにしますか?"
1492
+
1493
+ #: my-calendar-settings.php:291
1494
+ msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
1495
+ msgstr "デフォルトでは管理者のみが全てのイベントの編集・消去を出来る設定です。その他のユーザーは自身が登録したイベントのみ編集・消去が出来ます。"
1496
+
1497
+ #: my-calendar-settings.php:295
1498
+ msgid "Save Approval Settings"
1499
+ msgstr "設定を保存する"
1500
+
1501
+ #: my-calendar-settings.php:301
1502
+ msgid "Calendar Text Settings"
1503
+ msgstr "カレンダーテキスト設定"
1504
+
1505
+ #: my-calendar-settings.php:306
1506
  msgid "Calendar Options: Customize Text"
1507
  msgstr "カレンダーのオプション:テキストのカスタマイズ"
1508
 
1509
+ #: my-calendar-settings.php:308
 
 
 
 
1510
  msgid "Label for events without a specific time"
1511
  msgstr "時間の詳細がない場合のラベル"
1512
 
1513
+ #: my-calendar-settings.php:311
1514
  msgid "Previous events link text"
1515
  msgstr "前のリンクへのテキスト"
1516
 
1517
+ #: my-calendar-settings.php:311
1518
  msgid "Previous Events"
1519
  msgstr "先月のイベント"
1520
 
1521
+ #: my-calendar-settings.php:314
1522
  msgid "Next events link text"
1523
  msgstr "次のリンクへのテキスト"
1524
 
1525
+ #: my-calendar-settings.php:314
1526
  msgid "Next Events"
1527
  msgstr "来月のイベント"
1528
 
1529
+ #: my-calendar-settings.php:317
1530
  msgid "Text when events are open"
1531
  msgstr "公開イベントの場合"
1532
 
1533
+ #: my-calendar-settings.php:317
1534
  msgid "Registration is open"
1535
  msgstr "登録を受け付けています"
1536
 
1537
+ #: my-calendar-settings.php:320
1538
  msgid "Text when events are closed"
1539
  msgstr "非公開イベントの場合"
1540
 
1541
+ #: my-calendar-settings.php:320
1542
  msgid "Registration is closed"
1543
  msgstr "登録は受け付けていません"
1544
 
1545
+ #: my-calendar-settings.php:323
1546
  msgid "Additional caption text"
1547
  msgstr "見出しのタイトル"
1548
 
1549
+ #: my-calendar-settings.php:323
1550
  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."
1551
  msgstr "見出しはカレンダー・イベントリストの年月部分の横に表示されます。"
1552
 
1553
+ #: my-calendar-settings.php:327
1554
+ msgid "Save Custom Text Settings"
1555
+ msgstr "設定を保存する"
1556
+
1557
+ #: my-calendar-settings.php:333
1558
+ msgid "Calendar Output Settings"
1559
+ msgstr "カレンダー出力設定"
1560
+
1561
+ #: my-calendar-settings.php:338
1562
  msgid "Calendar Options: Output"
1563
  msgstr "カレンダーのオプション:表示"
1564
 
1565
+ #: my-calendar-settings.php:340
1566
+ msgid "Event title template"
1567
+ msgstr "イベント名"
1568
+
1569
+ #: my-calendar-settings.php:342
1570
+ #: my-calendar-settings.php:481
1571
+ msgid "Shortcode Help"
1572
+ msgstr "ショートコードのヘルプ"
1573
+
1574
+ #: my-calendar-settings.php:342
1575
+ #: my-calendar-settings.php:481
1576
+ msgid "All template shortcodes are available."
1577
+ msgstr ":すべてのテンプレートショートコードが使えます"
1578
+
1579
+ #: my-calendar-settings.php:345
1580
+ msgid "Show Heading for Calendar"
1581
+ msgstr "カレンダーに見出しを付ける"
1582
+
1583
+ #: my-calendar-settings.php:348
1584
  msgid "In list mode, show how many months of events at a time:"
1585
  msgstr "リストモードで一度に表示する月数:"
1586
 
1587
+ #: my-calendar-settings.php:351
1588
  msgid "Date format in list mode"
1589
  msgstr "リストモードでの日付様式"
1590
 
1591
+ #: my-calendar-settings.php:352
1592
  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."
1593
  msgstr "日付様式は<a href=\"http://php.net/date\">PHP <code>date()</code> function</a>の様な構文を使います。オプションを保存することで反映されます。"
1594
 
1595
+ #: my-calendar-settings.php:355
1596
  msgid "Do you want to display the author name on events?"
1597
  msgstr "登録者の名前を表示しますか?"
1598
 
1599
+ #: my-calendar-settings.php:358
1600
  msgid "Display a jumpbox for changing month and year quickly?"
1601
  msgstr "年月指定ボックスを表示しますか?"
1602
 
1603
+ #: my-calendar-settings.php:361
1604
  msgid "Hide category icons in output"
1605
  msgstr "カテゴリーアイコンを非表示にする"
1606
 
1607
+ #: my-calendar-settings.php:364
1608
  msgid "Show Link to Google Map (when sufficient address information is available.)"
1609
  msgstr "Google Mapのリンクを表示する(緯度・経度のデータがある場合のみ)"
1610
 
1611
+ #: my-calendar-settings.php:367
1612
  msgid "Show Event Address in Details"
1613
  msgstr "イベントの詳細場所を表示する"
1614
 
1615
+ #: my-calendar-settings.php:370
1616
  msgid "Show short description field on calendar."
1617
  msgstr "イベントの概要のみを表示する"
1618
 
1619
+ #: my-calendar-settings.php:373
1620
  msgid "Show full description field on calendar."
1621
  msgstr "イベントの説明を全文表示する"
1622
 
1623
+ #: my-calendar-settings.php:376
1624
  msgid "Links associated with events will automatically expire after the event has passed."
1625
  msgstr "イベント関連のリンクを、イベント終了後自動的に無効にする。"
1626
 
1627
+ #: my-calendar-settings.php:379
1628
  msgid "Show current availability status of events."
1629
  msgstr "イベントの登録受付状況を表示する"
1630
 
1631
+ #: my-calendar-settings.php:382
1632
+ msgid "Show link to My Calendar RSS feed."
1633
+ msgstr "カレンダーのRSSフィードへのリンクを表示する"
1634
+
1635
+ #: my-calendar-settings.php:385
1636
+ msgid "Show link to iCal format download."
1637
+ msgstr "iCalフォーマットのダウンロードを表示する"
1638
+
1639
+ #: my-calendar-settings.php:388
1640
  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."
1641
  msgstr "もし繰り返しイベントの設定が存在しない日付に当たる場合(例:2月の第5水曜日)、イベントを前の週に移動させる"
1642
 
1643
+ #: my-calendar-settings.php:389
1644
  msgid "If this option is unchecked, recurring events which fall on dates which don't exist will simply not be shown on the calendar."
1645
  msgstr "このオプションにチェックがない場合、存在しない日付に当たった繰り返しイベントはカレンダーに表示されません"
1646
 
1647
+ #: my-calendar-settings.php:392
1648
+ msgid "If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
1649
+ msgstr "もしこのイベントが「祝日」カテゴリーに属するイベントと重なった場合は表示しない。"
1650
+
1651
+ #: my-calendar-settings.php:395
1652
+ msgid "Holiday Category"
1653
+ msgstr "「祝日」カテゴリーとして使用する:"
1654
+
1655
+ #: my-calendar-settings.php:413
1656
+ msgid "Calendar Options: Style"
1657
+ msgstr "カレンダーのオプション:スタイル"
1658
+
1659
+ #: my-calendar-settings.php:415
1660
+ msgid "Default usage of category colors."
1661
+ msgstr "カテゴリーの色をそのまま使う"
1662
+
1663
+ #: my-calendar-settings.php:416
1664
+ msgid "Apply category colors to event titles as a font color."
1665
+ msgstr "カテゴリーの色をイベントのタイトルに使う"
1666
+
1667
+ #: my-calendar-settings.php:417
1668
+ msgid "Apply category colors to event titles as a background color."
1669
+ msgstr "カテゴリーの色をイベントのタイトルの背景に使う"
1670
+
1671
+ #: my-calendar-settings.php:421
1672
+ msgid "Save Output Settings"
1673
+ msgstr "設定を保存する"
1674
+
1675
+ #: my-calendar-settings.php:427
1676
+ msgid "Calendar Input Settings"
1677
+ msgstr "カレンダーの入力設定"
1678
+
1679
+ #: my-calendar-settings.php:432
1680
  msgid "Calendar Options: Input"
1681
  msgstr "カレンダーのオプション:入力画面"
1682
 
1683
+ #: my-calendar-settings.php:437
1684
  msgid "Show Event Location Dropdown Menu"
1685
  msgstr "登録された場所のドロップダウンメニューを表示"
1686
 
1687
+ #: my-calendar-settings.php:437
1688
  msgid "Show Event Short Description field"
1689
  msgstr "イベントの概要を表示"
1690
 
1691
+ #: my-calendar-settings.php:437
1692
  msgid "Show Event Description Field"
1693
  msgstr "イベントの説明を表示"
1694
 
1695
+ #: my-calendar-settings.php:437
1696
  msgid "Show Event Category field"
1697
  msgstr "イベントのカテゴリーを表示"
1698
 
1699
+ #: my-calendar-settings.php:437
1700
  msgid "Show Event Link field"
1701
  msgstr "イベントへのリンクを表示"
1702
 
1703
+ #: my-calendar-settings.php:437
1704
  msgid "Show Event Recurrence Options"
1705
  msgstr "繰り返しイベントオプションの表示"
1706
 
1707
+ #: my-calendar-settings.php:437
1708
  msgid "Show event registration options"
1709
  msgstr "イベント登録状況の表示"
1710
 
1711
+ #: my-calendar-settings.php:437
1712
  msgid "Show event location fields"
1713
  msgstr "イベントの場所の表示"
1714
 
1715
+ #: my-calendar-settings.php:450
1716
  msgid "Administrators see all input options"
1717
  msgstr "管理者には全ての入力フィールドを表示"
1718
 
1719
+ #: my-calendar-settings.php:454
1720
+ msgid "Save Input Settings"
1721
+ msgstr "設定を保存する"
 
 
 
 
 
 
 
 
1722
 
1723
+ #: my-calendar-settings.php:460
1724
+ msgid "Calendar Email Settings"
1725
+ msgstr "カレンダーのEメール設定"
1726
 
1727
+ #: my-calendar-settings.php:465
1728
  msgid "Calendar Options: Email Notifications"
1729
  msgstr "カレンダーのオプション:メール通知"
1730
 
1731
+ #: my-calendar-settings.php:469
1732
  msgid "Send Email Notifications when new events are scheduled or reserved."
1733
  msgstr "新規イベントが登録された場合、メールで通知する"
1734
 
1735
+ #: my-calendar-settings.php:472
1736
  msgid "Notification messages are sent to: "
1737
  msgstr "通知メールの宛先:"
1738
 
1739
+ #: my-calendar-settings.php:476
1740
  msgid "Email subject"
1741
  msgstr "メールのタイトル"
1742
 
1743
+ #: my-calendar-settings.php:476
1744
  msgid "New event Added"
1745
  msgstr "新しいイベントが追加されました"
1746
 
1747
+ #: my-calendar-settings.php:480
1748
  msgid "Message Body"
1749
  msgstr "メール本文"
1750
 
1751
+ #: my-calendar-settings.php:480
1752
  msgid "New Event:"
1753
  msgstr "新しいイベント:"
1754
 
1755
+ #: my-calendar-settings.php:485
1756
+ msgid "Save Email Settings"
 
 
 
 
 
 
 
 
1757
  msgstr "設定を保存する"
1758
 
1759
+ #: my-calendar-settings.php:491
1760
+ msgid "Calendar User Settings"
1761
+ msgstr "カレンダーのユーザー設定"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1762
 
1763
+ #: my-calendar-settings.php:498
1764
+ msgid "My Calendar: User Settings"
1765
+ msgstr "カレンダーのオプション:ユーザー設定"
1766
 
1767
+ #: my-calendar-settings.php:501
1768
+ msgid "Allow registered users to provide timezone or location presets in their user profiles."
1769
+ msgstr "登録ユーザーにプロフィールからのタイムゾーンと位置情報の提供を許可する。"
1770
 
1771
+ #: my-calendar-settings.php:513
1772
+ msgid "Timezone Settings"
1773
+ msgstr "タイムゾーンの設定"
1774
 
1775
+ #: my-calendar-settings.php:514
1776
+ msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
1777
+ msgstr "この設定で登録ユーザーはプロフィールのタイムゾーンを選択できるようになります。登録ユーザーがカレンダーのイベントを見る時は、入力された値による表示と同様に登録されたタイムゾーンの時間表示でも見る事が出来ます。"
1778
 
1779
+ #: my-calendar-settings.php:516
1780
+ msgid "Enable Timezone"
1781
+ msgstr "タイムゾーンを適用する"
1782
 
1783
+ #: my-calendar-settings.php:519
1784
+ msgid "Select Timezone Label"
1785
+ msgstr "タイムゾーンを選択"
1786
 
1787
+ #: my-calendar-settings.php:522
1788
+ msgid "Timezone Options"
1789
+ msgstr "タイムゾーンのオプション"
1790
 
1791
+ #: my-calendar-settings.php:522
1792
+ #: my-calendar-settings.php:543
1793
+ msgid "Value, Label; one per line"
1794
+ msgstr "値とラベル;1行ごと"
1795
 
1796
+ #: my-calendar-settings.php:534
1797
+ msgid "Location Settings"
1798
+ msgstr "場所の設定"
1799
 
1800
+ #: my-calendar-settings.php:535
1801
+ msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter."
1802
+ msgstr "これらの設定は、登録ユーザーのプロファイルから取得した情報を使用します。登録ユーザーのカレンダー初期画面は場所パラメーターの内容が反映されます。"
1803
 
1804
+ #: my-calendar-settings.php:537
1805
+ msgid "Enable Location"
1806
+ msgstr "場所を適用する"
 
1807
 
1808
+ #: my-calendar-settings.php:540
1809
+ msgid "Select Location Label"
1810
+ msgstr "場所を選択"
 
 
 
 
 
 
 
 
 
1811
 
1812
+ #: my-calendar-settings.php:543
1813
+ msgid "Location Options"
1814
+ msgstr "場所のオプション"
 
 
 
 
 
1815
 
1816
+ #: my-calendar-settings.php:553
1817
+ msgid "Location Type"
1818
+ msgstr "場所の種類"
 
 
1819
 
1820
+ #: my-calendar-settings.php:555
1821
+ msgid "Location Name"
1822
+ msgstr "場所"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1823
 
1824
+ #: my-calendar-settings.php:567
1825
+ msgid "Save User Settings"
1826
+ msgstr "設定を保存する"
1827
 
1828
  #. Plugin URI of the plugin/theme
1829
  msgid "http://www.joedolson.com/articles/my-calendar/"
1841
  msgid "http://www.joedolson.com"
1842
  msgstr "http://www.joedolson.com"
1843
 
1844
+ #~ msgid "End Date (YYYY-MM-DD) (Optional)"
1845
+ #~ msgstr "イベント終了日 (YYYY-MM-DD) (オプション)"
1846
+
1847
+ #~ msgid ""
1848
+ #~ "Optional, set blank if your event is an all-day event or does not happen "
1849
+ #~ "at a specific time."
1850
+ #~ msgstr ""
1851
+ #~ "オプション項目です。もし終日イベントの場合や、開始時刻が未定の場合は空欄に"
1852
+ #~ "して下さい"
1853
+
1854
+ #~ msgid ""
1855
+ #~ "Optional. End times will not be displayed on events where this is not set."
1856
+ #~ msgstr "オプション項目です。設定しない場合、終了時刻は表示されません"
1857
+
1858
+ #~ msgid ""
1859
+ #~ "Entering 0 means forever, if a unit is selected. If the recurrence unit "
1860
+ #~ "is left at \"Does not recur,\" the event will not reoccur."
1861
+ #~ msgstr ""
1862
+ #~ "0を入力すると永久に繰り返します。回数を指定すると、その回数分を繰り返した"
1863
+ #~ "後に、繰り返しを停止します。"
1864
+
1865
+ #~ msgid "Link"
1866
+ #~ msgstr "リンク"
1867
+
1868
+ #~ msgid ""
1869
+ #~ "The URL entered must either be prefixed with http:// or be completely "
1870
+ #~ "blank"
1871
+ #~ msgstr ""
1872
+ #~ "イベントへのリンク欄は、http://から始まるURLを入れるか、空欄にしてください"
1873
+
1874
+ #~ msgid "days into the future;"
1875
+ #~ msgstr "本日より何日後まで表示しますか?"
1876
+
1877
+ #~ msgid "days from the past"
1878
+ #~ msgstr "本日より何日前まで表示しますか?"
1879
+
1880
+ #~ msgid "Show only this category:"
1881
+ #~ msgstr "指定カテゴリーのイベントのみ表示する:"
my-calendar-locations.php CHANGED
@@ -120,7 +120,8 @@ function mc_show_location_form($view='add',$cur_loc='') {
120
  <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>
121
  </p>
122
  <p>
123
- <label for="location_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="location_longitude" name="location_longitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { echo htmlspecialchars(stripslashes($cur_loc->location_longitude)); } else { echo '0.000000'; } ?>" /> <label for="location_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="location_latitude" name="location_latitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { echo htmlspecialchars(stripslashes($cur_loc->location_latitude)); } else { echo '0.000000'; } ?>" />
 
124
  </p>
125
  </fieldset>
126
  <p>
120
  <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>
121
  </p>
122
  <p>
123
+ <label for="location_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="location_latitude" name="location_latitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { echo htmlspecialchars(stripslashes($cur_loc->location_latitude)); } else { echo '0.000000'; } ?>" />
124
+ <label for="location_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="location_longitude" name="location_longitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { echo htmlspecialchars(stripslashes($cur_loc->location_longitude)); } else { echo '0.000000'; } ?>" />
125
  </p>
126
  </fieldset>
127
  <p>
my-calendar-output.php CHANGED
@@ -3,16 +3,38 @@
3
  function my_calendar_draw_events($events, $type, $process_date) {
4
  // We need to sort arrays of objects by time
5
  usort($events, "my_calendar_time_cmp");
 
 
 
6
  if ($type == "mini" && count($events) > 0) { $output .= "<div class='calendar-events'>"; }
7
  foreach($events as $event) {
8
  if ( get_option('mc_skip_holidays') == 'false' ) {
9
  // if we're not skipping holidays, just add 'em all.
10
  $output_array[] = my_calendar_draw_event($event, $type, $process_date);
11
- } else if ( $event->event_category == get_option('mc_skip_holidays_category') ) {
12
- // if we ARE skipping holidays, only add events in the holiday category
13
- $output_array[] = my_calendar_draw_event($event, $type, $process_date);
14
  }
15
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  if ( is_array($output_array) ) {
17
  foreach ($output_array as $value) {
18
  $output .= $value;
@@ -42,7 +64,8 @@ function my_calendar_draw_event($event, $type="calendar", $process_date) {
42
  } else {
43
  $path = $wp_plugin_url . '/my-calendar/icons/';
44
  }
45
- $image = '<img src="'.$path.'/'.$event->category_icon.'" alt="" class="category-icon" style="background:'.$event->category_color.';" />';
 
46
  } else {
47
  $image = "";
48
  }
@@ -474,7 +497,9 @@ if ( $format == "calendar" || $format == "mini" ) {
474
  $go = FALSE;
475
  }
476
  if ($go) {
 
477
  if ($i > $days_in_month) {
 
478
  $thisday = $useday;
479
  if ($inc_month == false) {
480
  if ($c_month == 12) {
@@ -491,11 +516,11 @@ if ( $format == "calendar" || $format == "mini" ) {
491
  $grabbed_events = my_calendar_grab_events($c_year,$c_month,$thisday,$category);
492
  $events_class = '';
493
  if (!count($grabbed_events)) {
494
- $events_class = ' no-events';
495
  $element = 'span';
496
  $trigger = '';
497
  } else {
498
- $events_class = ' has-events';
499
  if ($format == 'mini') {
500
  $element = 'a href="#"';
501
  $trigger = ' trigger';
@@ -608,11 +633,13 @@ if ( $format == "calendar" || $format == "mini" ) {
608
  $path = $wp_plugin_url . '/my-calendar/icons/';
609
  }
610
  foreach($cat_details as $cat_detail) {
 
 
611
  $title_class = sanitize_title($cat_detail->category_name);
612
  if ($cat_detail->category_icon != "" && get_option('my_calendar_hide_icons')!='true') {
613
- $my_calendar_body .= '<li class="cat_'.$title_class.'"><span class="category-color-sample"><img src="'.$path.'/'.$cat_detail->category_icon.'" alt="" style="background:'.$cat_detail->category_color.';" /></span>'.$cat_detail->category_name."</li>\n";
614
  } else {
615
- $my_calendar_body .= '<li class="cat_'.$title_class.'"><span class="category-color-sample no-icon" style="background:'.$cat_detail->category_color.';"> &nbsp; </span>'.$cat_detail->category_name."</li>\n";
616
  }
617
  }
618
  $my_calendar_body .= "</ul>\n</div>";
@@ -772,7 +799,7 @@ if (strpos($current_url,"/&")!==false || strpos($current_url,".php&")!==false) {
772
  }
773
  if ($show == 'list') {
774
  $output .= "<ul id='mc-locations-list'>
775
- <li><a href='$current_url$char"."loc=none&amp;ltype=none'>Show all</a></li>\n";
776
  } else {
777
  $ltype = ($_GET['ltype']=='')?$datatype:$_GET['ltype'];
778
  $output .= "
3
  function my_calendar_draw_events($events, $type, $process_date) {
4
  // We need to sort arrays of objects by time
5
  usort($events, "my_calendar_time_cmp");
6
+ $temp_array = array();
7
+ $output_array = array();
8
+
9
  if ($type == "mini" && count($events) > 0) { $output .= "<div class='calendar-events'>"; }
10
  foreach($events as $event) {
11
  if ( get_option('mc_skip_holidays') == 'false' ) {
12
  // if we're not skipping holidays, just add 'em all.
13
  $output_array[] = my_calendar_draw_event($event, $type, $process_date);
14
+ } else {
15
+ $temp_array[] = $event;
 
16
  }
17
  }
18
+ // By default, skip no events.
19
+ $skipping = false;
20
+ foreach($temp_array as $event) {
21
+ // if any event this date is in the holiday category, we are skipping
22
+ if ( $event->event_category == get_option('mc_skip_holidays_category') ) {
23
+ $skipping = true;
24
+ break;
25
+ }
26
+ }
27
+ // check each event, if we're skipping, only include the holiday events.
28
+ foreach($temp_array as $event) {
29
+ if ($skipping == true) {
30
+ if ($event->event_category == get_option('mc_skip_holidays_category') ) {
31
+ $output_array[] = my_calendar_draw_event($event, $type, $process_date);
32
+ }
33
+ } else {
34
+ $output_array[] = my_calendar_draw_event($event, $type, $process_date);
35
+ }
36
+ }
37
+
38
  if ( is_array($output_array) ) {
39
  foreach ($output_array as $value) {
40
  $output .= $value;
64
  } else {
65
  $path = $wp_plugin_url . '/my-calendar/icons/';
66
  }
67
+ $hex = (strpos($cur_cat->category_color,'#') !== 0)?'#':'';
68
+ $image = '<img src="'.$path.'/'.$event->category_icon.'" alt="" class="category-icon" style="background:'.$hex.$event->category_color.';" />';
69
  } else {
70
  $image = "";
71
  }
497
  $go = FALSE;
498
  }
499
  if ($go) {
500
+ $addclass = "";
501
  if ($i > $days_in_month) {
502
+ $addclass = " nextmonth";
503
  $thisday = $useday;
504
  if ($inc_month == false) {
505
  if ($c_month == 12) {
516
  $grabbed_events = my_calendar_grab_events($c_year,$c_month,$thisday,$category);
517
  $events_class = '';
518
  if (!count($grabbed_events)) {
519
+ $events_class = " no-events$addclass";
520
  $element = 'span';
521
  $trigger = '';
522
  } else {
523
+ $events_class = " has-events$addclass";
524
  if ($format == 'mini') {
525
  $element = 'a href="#"';
526
  $trigger = ' trigger';
633
  $path = $wp_plugin_url . '/my-calendar/icons/';
634
  }
635
  foreach($cat_details as $cat_detail) {
636
+ $hex = (strpos($cat_detail->category_color,'#') !== 0)?'#':'';
637
+
638
  $title_class = sanitize_title($cat_detail->category_name);
639
  if ($cat_detail->category_icon != "" && get_option('my_calendar_hide_icons')!='true') {
640
+ $my_calendar_body .= '<li class="cat_'.$title_class.'"><span class="category-color-sample"><img src="'.$path.'/'.$cat_detail->category_icon.'" alt="" style="background:'.$hex.$cat_detail->category_color.';" /></span>'.stripcslashes($cat_detail->category_name)."</li>\n";
641
  } else {
642
+ $my_calendar_body .= '<li class="cat_'.$title_class.'"><span class="category-color-sample no-icon" style="background:'.$hex.$cat_detail->category_color.';"> &nbsp; </span>'.stripcslashes($cat_detail->category_name)."</li>\n";
643
  }
644
  }
645
  $my_calendar_body .= "</ul>\n</div>";
799
  }
800
  if ($show == 'list') {
801
  $output .= "<ul id='mc-locations-list'>
802
+ <li><a href='$current_url$char"."loc=none&amp;ltype=none'>".__('Show all','my-calendar')."</a></li>\n";
803
  } else {
804
  $ltype = ($_GET['ltype']=='')?$datatype:$_GET['ltype'];
805
  $output .= "
my-calendar-rss.php CHANGED
@@ -33,7 +33,7 @@ function my_calendar_rss() {
33
  <guid isPermaLink='false'>{guid}</guid>
34
  </item>\n";
35
  // add RSS headers
36
- $output = '<?xml version="1.0" encoding="UTF-8"?>
37
  <rss version="2.0"
38
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
39
  xmlns:dc="http://purl.org/dc/elements/1.1/"
@@ -57,7 +57,7 @@ $output = '<?xml version="1.0" encoding="UTF-8"?>
57
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after,'rss' );
58
  $output .= '</channel>
59
  </rss>';
60
- header('Content-type: text/xml');
61
  header("Pragma: no-cache");
62
  header("Expires: 0");
63
  echo $output;
33
  <guid isPermaLink='false'>{guid}</guid>
34
  </item>\n";
35
  // add RSS headers
36
+ $output = '<?xml version="1.0" encoding="'.get_bloginfo('charset').'"?>
37
  <rss version="2.0"
38
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
39
  xmlns:dc="http://purl.org/dc/elements/1.1/"
57
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after,'rss' );
58
  $output .= '</channel>
59
  </rss>';
60
+ header('Content-type: application/rss+xml');
61
  header("Pragma: no-cache");
62
  header("Expires: 0");
63
  echo $output;
my-calendar-templates.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
-
3
  function jd_draw_template($array,$template,$type='list') {
4
  //1st argument: array of details
5
  //2nd argument: template to print details into
6
  foreach ($array as $key=>$value) {
7
  $search = "{".$key."}";
8
- if ($type == 'list') {
9
  if ($key == 'link' && $value == '') { $value = get_bloginfo('url'); }
 
10
  }
11
  $template = stripcslashes(str_replace($search,$value,$template));
12
  $rss_search = "{rss_$key}";
@@ -18,111 +18,126 @@ function jd_draw_template($array,$template,$type='list') {
18
 
19
  // Draw an event but customise the HTML for use in the widget
20
  function event_as_array($event) {
21
- global $wpdb,$wp_plugin_dir,$wp_plugin_url;
22
- // My Calendar must be updated to run this function
23
- check_my_calendar();
24
-
25
- $offset = (60*60*get_option('gmt_offset'));
26
 
27
- $category_name = $event->category_name;
28
- $category_color = $event->category_color;
29
- $category_icon = $event->category_icon;
 
30
 
31
- if ( file_exists( $wp_plugin_dir . '/my-calendar-custom/' ) ) {
32
- $path = '/my-calendar-custom';
33
- } else {
34
- $path = '/'.dirname(plugin_basename(__FILE__)).'/icons';
35
- }
36
- $category_icon = $wp_plugin_url . $path . '/' . $category_icon;
37
 
38
- $e = get_userdata($event->event_author);
39
- $host = get_userdata($event->event_host);
40
 
41
- $hcard = "<div class=\"address vcard\">";
42
- $hcard .= "<div class=\"adr\">";
43
- if ($event->event_label != "") {
44
- $hcard .= "<strong class=\"org\">".$event->event_label."</strong><br />";
45
- }
46
- if ($event->event_street != "") {
47
- $hcard .= "<div class=\"street-address\">".$event->event_street."</div>";
48
- }
49
- if ($event->event_street2 != "") {
50
- $hcard .= "<div class=\"street-address\">".$event->event_street2."</div>";
51
- }
52
- if ($event->event_city != "") {
53
- $hcard .= "<span class=\"locality\">".$event->event_city.",</span>";
54
- }
55
- if ($event->event_state != "") {
56
- $hcard .= "<span class=\"region\">".$event->event_state."</span> ";
57
- }
58
- if ($event->event_postcode != "") {
59
- $hcard .= " <span class=\"postal-code\">".$event->event_postcode."</span>";
60
- }
61
- if ($event->event_country != "") {
62
- $hcard .= "<div class=\"country-name\">".$event->event_country."</div>";
63
- }
64
- $hcard .= "</div>\n</div>";
65
-
66
- $map_string = $event->event_street.' '.$event->event_street2.' '.$event->event_city.' '.$event->event_state.' '.$event->event_postcode.' '.$event->event_country;
67
- if ( strlen( trim( $map_string ) ) > 0 ) {
68
- $map_string = str_replace(" ","+",$map_string);
69
  if ($event->event_label != "") {
70
- $map_label = $event->event_label;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  } else {
72
- $map_label = $event->event_title;
73
  }
74
- $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
75
 
76
- if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
77
- $map_string = "$event->event_latitude,$event->event_longitude";
 
 
 
 
 
 
78
  }
79
 
80
- $map = "<a href=\"http://maps.google.com/maps?f=q&z=$zoom&q=$map_string\">Map<span> to $map_label</span></a>";
81
- } else {
82
- $map = "";
83
- }
84
-
85
- if (get_option('my_calendar_date_format') != '') {
86
- $date = date_i18n(get_option('my_calendar_date_format'),strtotime($event->event_begin));
87
- $date_end = date_i18n(get_option('my_calendar_date_format'),strtotime($event->event_end));
88
- } else {
89
- $date = date_i18n(get_option('date_format'),strtotime($event->event_begin));
90
- $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
91
- }
92
-
93
-
94
- $details = array();
95
- $details['category'] = stripslashes($event->category_name);
96
- $details['title'] = stripslashes($event->event_title);
97
- if ($event->event_time == '00:00:00' ) {
98
- $details['time'] = get_option( 'my_calendar_notime_text' );
99
  } else {
100
- $details['time'] = date(get_option('time_format'),strtotime($event->event_time));
101
  }
102
 
103
  $tz = mc_user_timezone();
104
-
105
  if ($tz != '') {
106
  $local_begin = date_i18n( get_option('time_format'), strtotime($event->event_time ."+$tz hours") );
107
  $details['usertime'] = "$local_begin";
108
  } else {
109
  $details['usertime'] = '';
110
  }
111
-
112
  if ($event->event_endtime == '00:00:00' ) {
113
- $details['endtime'] = '';
114
  } else {
115
- $details['endtime'] = date( get_option('time_format'),strtotime($event->event_endtime));
116
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  $details['author'] = $e->display_name;
118
  $details['host'] = $host->display_name;
119
  $details['host_email'] = $host->user_email;
120
  if ($host->display_name == '') { $details['host'] = $e->display_name; }
121
  if ($host->user_email == '') { $details['host_email'] = $e->user_email; }
122
  if ( $event->event_link_expires == 0 ) {
123
- $details['link'] = $event->event_link;
124
  } else {
125
- if ( my_calendar_date_comp( $event->event_end, date('Y-m-d',time()+$offset ) ) ) {
126
  $details['link'] = '';
127
  } else {
128
  $details['link'] = $event->event_link;
@@ -130,19 +145,9 @@ $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
130
  }
131
  if ( $event->event_open == '1' ) {
132
  $event_open = get_option( 'mc_event_open' );
133
- } else if ( $event->event_open == '0' ) {
134
- $event_open = get_option( 'mc_event_closed' );
135
- } else {
136
- $event_open = '';
137
- }
138
  $details['description'] = stripslashes($event->event_desc);
139
- if ($details['link'] != '') {
140
- $details['link_title'] = "<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>";
141
- } else {
142
- $details['link_title'] = stripslashes($event->event_title);
143
- }
144
- $details['date'] = $date;
145
- $details['enddate'] = $date_end;
146
  $details['location'] = stripslashes($event->event_label);
147
  $details['street'] = stripslashes($event->event_street);
148
  $details['street2'] = stripslashes($event->event_street2);
@@ -156,43 +161,44 @@ $date_end = date_i18n(get_option('date_format'),strtotime($event->event_end));
156
  $details['event_open'] = $event_open;
157
  $details['icon'] = $category_icon;
158
  $details['color'] = $category_color;
 
 
 
159
  $details['guid'] = sanitize_title($event->event_title).'-'.rand(100000000,999999999);
160
- $details['rssdate'] = date( 'D, d M Y H:i:s +0000', strtotime( $date .' '. $details['time'] ) );
161
- $details['ical_description'] = str_replace( "\r", "=0D=0A=", $event->event_desc );
162
-
163
  $details['ical_location'] = $event->event_label .' '. $event->event_street .' '. $event->event_street2 .' '. $event->event_city .' '. $event->event_state .' '. $event->event_postcode;
164
-
165
- /* ical format */
166
- $ical_description = mc_newline_replace(strip_tags($event->event_desc));
167
-
168
-
169
- $offset = get_option('gmt_offset');
170
- $negative = ($offset < 0)?'true':'false';
171
- $offset = str_pad( abs( $offset ),'0',STR_PAD_LEFT );
172
- $offset = ($negative = 'true')?'-':'+' . $offset;
173
- $offset = str_pad( $offset,5,'0',STR_PAD_RIGHT );
174
-
175
- if ($event->event_endtime == '00:00:00') {
176
- $endtime = '23:59:00';
177
- } else {
178
- $endtime = $event->event_endtime;
179
- }
180
-
181
- $dtstart = date("Ymd\THi00", strtotime($event->event_begin .' '. $event->event_time) ).'Z';
182
- $dtend = date("Ymd\THi00", strtotime($event->event_end .' '. $endtime ) ).'Z';
183
-
184
  $details['ical_desc'] = $ical_description;
185
- $details['ical_start'] = $dtstart;
186
- $details['ical_end'] = $dtend;
187
- if ($event->event_approve == 1 ) {
188
- $details['event_status'] = __('Published','my-calendar');
189
- } else {
190
- $details['event_status'] = __('Reserved','my-calendar');
191
- }
192
-
193
- return $details;
194
  }
195
  function mc_newline_replace($string) {
196
  return (string)str_replace(array("\r", "\r\n", "\n"), '', $string);
197
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  ?>
1
  <?php
 
2
  function jd_draw_template($array,$template,$type='list') {
3
  //1st argument: array of details
4
  //2nd argument: template to print details into
5
  foreach ($array as $key=>$value) {
6
  $search = "{".$key."}";
7
+ if ($type != 'list') {
8
  if ($key == 'link' && $value == '') { $value = get_bloginfo('url'); }
9
+ $value = htmlentities($value);
10
  }
11
  $template = stripcslashes(str_replace($search,$value,$template));
12
  $rss_search = "{rss_$key}";
18
 
19
  // Draw an event but customise the HTML for use in the widget
20
  function event_as_array($event) {
21
+ global $wpdb,$wp_plugin_dir,$wp_plugin_url;
22
+ // My Calendar must be updated to run this function
23
+ check_my_calendar();
24
+ $details = array();
 
25
 
26
+ $offset = (60*60*get_option('gmt_offset'));
27
+ $category_name = $event->category_name;
28
+ $category_color = $event->category_color;
29
+ $category_icon = $event->category_icon;
30
 
31
+ if ( file_exists( $wp_plugin_dir . '/my-calendar-custom/' ) ) {
32
+ $path = '/my-calendar-custom';
33
+ } else {
34
+ $path = '/'.dirname(plugin_basename(__FILE__)).'/icons';
35
+ }
36
+ $category_icon = $wp_plugin_url . $path . '/' . $category_icon;
37
 
38
+ $e = get_userdata($event->event_author);
39
+ $host = get_userdata($event->event_host);
40
 
41
+ $hcard = "<div class=\"address vcard\">";
42
+ $hcard .= "<div class=\"adr\">";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  if ($event->event_label != "") {
44
+ $hcard .= "<strong class=\"org\">".$event->event_label."</strong><br />";
45
+ }
46
+ if ($event->event_street != "") {
47
+ $hcard .= "<div class=\"street-address\">".$event->event_street."</div>";
48
+ }
49
+ if ($event->event_street2 != "") {
50
+ $hcard .= "<div class=\"street-address\">".$event->event_street2."</div>";
51
+ }
52
+ if ($event->event_city != "") {
53
+ $hcard .= "<span class=\"locality\">".$event->event_city.",</span>";
54
+ }
55
+ if ($event->event_state != "") {
56
+ $hcard .= "<span class=\"region\">".$event->event_state."</span> ";
57
+ }
58
+ if ($event->event_postcode != "") {
59
+ $hcard .= " <span class=\"postal-code\">".$event->event_postcode."</span>";
60
+ }
61
+ if ($event->event_country != "") {
62
+ $hcard .= "<div class=\"country-name\">".$event->event_country."</div>";
63
+ }
64
+ $hcard .= "</div>\n</div>";
65
+ $map_string = $event->event_street.' '.$event->event_street2.' '.$event->event_city.' '.$event->event_state.' '.$event->event_postcode.' '.$event->event_country;
66
+ if ( strlen( trim( $map_string ) ) > 0 ) {
67
+ $map_string = str_replace(" ","+",$map_string);
68
+ if ($event->event_label != "") {
69
+ $map_label = $event->event_label;
70
+ } else {
71
+ $map_label = $event->event_title;
72
+ }
73
+ $zoom = ($event->event_zoom != 0)?$event->event_zoom:'15';
74
+
75
+ if ($event->event_longitude != '0.000000' && $event->event_latitude != '0.000000') {
76
+ $map_string = "$event->event_latitude,$event->event_longitude";
77
+ }
78
+ $map = "<a href=\"http://maps.google.com/maps?f=q&z=$zoom&q=$map_string\">Map<span> to $map_label</span></a>";
79
  } else {
80
+ $map = "";
81
  }
 
82
 
83
+ $real_end_date = $event->event_end;
84
+
85
+ if ( get_option('my_calendar_date_format') != '' ) {
86
+ $date = date_i18n( get_option('my_calendar_date_format'),strtotime( $event->event_begin ) );
87
+ $date_end = date_i18n( get_option('my_calendar_date_format'),strtotime($real_end_date) );
88
+ } else {
89
+ $date = date_i18n( get_option('date_format'),strtotime( $event->event_begin ) );
90
+ $date_end = date_i18n( get_option('date_format'),strtotime($real_end_date) );
91
  }
92
 
93
+ if ( $event->event_time == '00:00:00' ) {
94
+ $details['time'] = get_option( 'my_calendar_notime_text' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  } else {
96
+ $details['time'] = date(get_option('time_format'),strtotime($event->event_time));
97
  }
98
 
99
  $tz = mc_user_timezone();
 
100
  if ($tz != '') {
101
  $local_begin = date_i18n( get_option('time_format'), strtotime($event->event_time ."+$tz hours") );
102
  $details['usertime'] = "$local_begin";
103
  } else {
104
  $details['usertime'] = '';
105
  }
 
106
  if ($event->event_endtime == '00:00:00' ) {
107
+ $details['endtime'] = '';
108
  } else {
109
+ $details['endtime'] = date( get_option('time_format'),strtotime($event->event_endtime));
110
  }
111
+ if ($event->event_endtime == '00:00:00') {
112
+ $endtime = '23:59:00';
113
+ } else {
114
+ $endtime = $event->event_endtime;
115
+ }
116
+ $offset = get_option('gmt_offset'); // reset offset in hours
117
+ $os = strtotime($event->event_begin .' '. $event->event_time);
118
+ $oe = strtotime($real_end_date .' '. $endtime );
119
+
120
+ $dtstart = date("Ymd\THi00", mktime(date('h',$os)+$offset,date('i',$os), date('s',$os), date('m',$os),date('d',$os), date('Y',$os) ) ).'Z';
121
+ $dtend = date("Ymd\THi00", mktime(date('h',$oe)+$offset,date('i',$oe), date('s',$oe), date('m',$oe),date('d',$oe), date('Y',$oe) ) ).'Z';
122
+ $details['ical_start'] = $dtstart;
123
+ $details['ical_end'] = $dtend;
124
+ $details['rssdate'] = date( 'D, d M Y H:i:s +0000', strtotime( $date .' '. $details['time'] ) );
125
+ $details['date'] = $date;
126
+ $details['enddate'] = $date_end;
127
+ // end dates
128
+
129
+ $details['cat_id'] = $event->event_category;
130
+ $details['category'] = stripslashes($event->category_name);
131
+ $details['title'] = stripslashes($event->event_title);
132
  $details['author'] = $e->display_name;
133
  $details['host'] = $host->display_name;
134
  $details['host_email'] = $host->user_email;
135
  if ($host->display_name == '') { $details['host'] = $e->display_name; }
136
  if ($host->user_email == '') { $details['host_email'] = $e->user_email; }
137
  if ( $event->event_link_expires == 0 ) {
138
+ $details['link'] = $event->event_link;
139
  } else {
140
+ if ( my_calendar_date_comp( date('Y-m-d',$real_end_date), date('Y-m-d',time()+$offset ) ) ) {
141
  $details['link'] = '';
142
  } else {
143
  $details['link'] = $event->event_link;
145
  }
146
  if ( $event->event_open == '1' ) {
147
  $event_open = get_option( 'mc_event_open' );
148
+ } else if ( $event->event_open == '0' ) { $event_open = get_option( 'mc_event_closed' ); } else { $event_open = ''; }
 
 
 
 
149
  $details['description'] = stripslashes($event->event_desc);
150
+ $details['link_title'] = ($details['link'] != '')?"<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>":stripslashes($event->event_title);
 
 
 
 
 
 
151
  $details['location'] = stripslashes($event->event_label);
152
  $details['street'] = stripslashes($event->event_street);
153
  $details['street2'] = stripslashes($event->event_street2);
161
  $details['event_open'] = $event_open;
162
  $details['icon'] = $category_icon;
163
  $details['color'] = $category_color;
164
+ $details['event_status'] = ($event->event_approve == 1 )?__('Published','my-calendar'):__('Reserved','my-calendar');
165
+
166
+ // RSS guid
167
  $details['guid'] = sanitize_title($event->event_title).'-'.rand(100000000,999999999);
168
+ /* ical format */
 
 
169
  $details['ical_location'] = $event->event_label .' '. $event->event_street .' '. $event->event_street2 .' '. $event->event_city .' '. $event->event_state .' '. $event->event_postcode;
170
+ $ical_description = mc_newline_replace(strip_tags($event->event_desc));
171
+ $details['ical_description'] = str_replace( "\r", "=0D=0A=", $event->event_desc );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  $details['ical_desc'] = $ical_description;
173
+ return $details;
 
 
 
 
 
 
 
 
174
  }
175
  function mc_newline_replace($string) {
176
  return (string)str_replace(array("\r", "\r\n", "\n"), '', $string);
177
  }
178
+
179
+ if ( !function_exists('shortcode_parse_atts') ) {
180
+ function shortcode_parse_atts($text) {
181
+ $atts = array();
182
+ $pattern = '/(\w+)\s*=\s*"([^"]*)"(?:\s|$)|(\w+)\s*=\s*\'([^\']*)\'(?:\s|$)|(\w+)\s*=\s*([^\s\'"]+)(?:\s|$)|"([^"]*)"(?:\s|$)|(\S+)(?:\s|$)/';
183
+ $text = preg_replace("/[\x{00a0}\x{200b}]+/u", " ", $text);
184
+ if ( preg_match_all($pattern, $text, $match, PREG_SET_ORDER) ) {
185
+ foreach ($match as $m) {
186
+ if (!empty($m[1]))
187
+ $atts[strtolower($m[1])] = stripcslashes($m[2]);
188
+ elseif (!empty($m[3]))
189
+ $atts[strtolower($m[3])] = stripcslashes($m[4]);
190
+ elseif (!empty($m[5]))
191
+ $atts[strtolower($m[5])] = stripcslashes($m[6]);
192
+ elseif (isset($m[7]) and strlen($m[7]))
193
+ $atts[] = stripcslashes($m[7]);
194
+ elseif (isset($m[8]))
195
+ $atts[] = stripcslashes($m[8]);
196
+ }
197
+ } else {
198
+ $atts = ltrim($text);
199
+ }
200
+ return $atts;
201
+ }
202
+ }
203
+
204
  ?>
my-calendar-widgets.php CHANGED
@@ -73,7 +73,7 @@ function widget($args, $instance) {
73
  $after = esc_attr($instance['my_calendar_upcoming_after']);
74
  $type = esc_attr($instance['my_calendar_upcoming_type']);
75
  $the_category = ($instance['my_calendar_upcoming_category']=='')?'default':esc_attr($instance['my_calendar_upcoming_category']);
76
- $widget_title = empty($the_title) ? __('Today\'s Events','my-calendar') : $the_title;
77
  $the_events = my_calendar_upcoming_events($before,$after,$type,$the_category,$the_template,$the_substitute);
78
  if ($the_events != '') {
79
  echo $before_widget;
@@ -143,62 +143,88 @@ function form($instance) {
143
 
144
  // Widget upcoming events
145
  function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default',$substitute='') {
146
- global $wpdb;
147
  // This function cannot be called unless calendar is up to date
148
  check_my_calendar();
 
149
  $defaults = get_option('my_calendar_widget_defaults');
150
  $display_upcoming_type = ($type == 'default')?$defaults['upcoming']['type']:$type;
 
151
  // Get number of units we should go into the future
152
  $after = ($after == 'default')?$defaults['upcoming']['after']:$after;
 
153
  // Get number of units we should go into the past
154
  $before = ($before == 'default')?$defaults['upcoming']['before']:$before;
155
- $category = ($category == 'default')?$defaults['upcoming']['category']:$category;
 
156
  $template = ($template == 'default')?$defaults['upcoming']['template']:$template;
 
157
  $no_event_text = ($substitute == '')?$defaults['upcoming']['text']:$substitute;
158
 
159
  $day_count = -($before);
160
  $output = "<ul>";
161
-
162
  if ($display_upcoming_type == "days") {
163
- while ($day_count < $after+1) {
164
- list($y,$m,$d) = split("-",date("Y-m-d",mktime($day_count*24,0,0,date("m"),date("d"),date("Y"))));
165
- $events = my_calendar_grab_events( $y,$m,$d,$category );
 
166
  $current_date = "$y-$m-$d";
167
- @usort($events, "my_calendar_time_cmp");
168
- foreach($events as $event) {
169
- $event_details = event_as_array($event);
170
- $date_diff = jd_date_diff($event_details['date'],$event_details['date_end']);
171
-
172
- if (get_option('my_calendar_date_format') != '') {
173
- $date = date_i18n(get_option('my_calendar_date_format'),strtotime($current_date));
174
- $date_end = date_i18n(get_option('my_calendar_date_format'),strtotime(my_calendar_add_date($current_date,$datediff)));
175
- } else {
176
- $date = date_i18n(get_option('date_format'),strtotime($current_date));
177
- $date_end = date_i18n(get_option('date_format'),strtotime(my_calendar_add_date($current_date,$datediff)));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
  }
179
-
180
- $event_details['date'] = $date;
181
- $event_details['date_end'] = $date_end;
182
-
183
- if ( get_option('mc_skip_holidays') == 'false' ) {
184
- if ( get_option( 'mc_event_approve' ) == 'true' ) {
185
- if ( $event->event_approved != 0 ) {$output .= "<li>".jd_draw_template($event_details,$template)."</li>";}
186
- } else {
187
- $output .= "<li>".jd_draw_template($event_details,$template)."</li>";
188
  }
189
- } else if ( $event->event_category == get_option('mc_skip_holidays_category') ) {
190
- if ( get_option( 'mc_event_approve' ) == 'true' ) {
191
- if ( $event->event_approved != 0 ) {$output .= "<li>".jd_draw_template($event_details,$template)."</li>";}
 
 
 
 
192
  } else {
193
- $output .= "<li>".jd_draw_template($event_details,$template)."</li>";
194
  }
195
- }
196
- // by Roland end
197
- }
198
- $day_count = $day_count+1;
199
- }
200
  } else {
201
- $events = mc_get_all_events($category); // grab all events WITHIN reasonable proximity
202
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after );
203
  }
204
  if ($output != '<ul>') {
@@ -208,7 +234,7 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
208
  return stripcslashes( $no_event_text );
209
  }
210
  }
211
-
212
  function mc_produce_upcoming_events($events,$template,$before=0,$after=10,$type='list') {
213
  $past = 1;
214
  $future = 1;
@@ -217,17 +243,19 @@ function mc_produce_upcoming_events($events,$template,$before=0,$after=10,$type=
217
  @usort( $events, "my_calendar_timediff_cmp" );// sort all events by proximity to current date
218
  $count = count($events);
219
  for ( $i=0;$i<=$count;$i++ ) {
 
 
220
  if ($events[$i]) {
221
  if ( ( $past<=$before && $future<=$after ) ) {
222
  $near_events[] = $events[$i]; // if neither limit is reached, split off freely
223
- } else if ( $past <= $before && ( my_calendar_date_comp( $events[$i]->event_begin,$today ) ) ) {
224
  $near_events[] = $events[$i]; // split off another past event
225
- } else if ( $future <= $after && ( !my_calendar_date_comp( $events[$i]->event_begin,$today ) ) ) {
226
  $near_events[] = $events[$i]; // split off another future event
227
  }
228
- if ( my_calendar_date_comp( $events[$i]->event_begin,$today ) ) {
229
  $past++;
230
- } elseif ( my_calendar_date_equal( $events[$i]->event_begin,$today ) ) {
231
  $present = 1;
232
  } else {
233
  $future++;
@@ -242,7 +270,16 @@ function mc_produce_upcoming_events($events,$template,$before=0,$after=10,$type=
242
  if ( is_array( $events ) ) {
243
  foreach( $events as $event ) {
244
  $event_details = event_as_array( $event );
245
- $date = date('Y-m-d',strtotime($event_details['date']));
 
 
 
 
 
 
 
 
 
246
  if (my_calendar_date_comp( $date,$today )===true) {
247
  $class = "past-event";
248
  } else {
@@ -256,44 +293,64 @@ function mc_produce_upcoming_events($events,$template,$before=0,$after=10,$type=
256
  $append = "</li>\n";
257
  } else {
258
  $prepend = $append = '';
 
 
259
  }
260
- if ( get_option('mc_skip_holidays') == 'false' ) {
261
- if ( get_option( 'mc_event_approve' ) == 'true' ) {
262
- if ( $event->event_approved != 0 ) {$output .= $prepend.jd_draw_template($event_details,$template).$append;}
 
 
 
 
263
  } else {
264
- $output .= $prepend . jd_draw_template($event_details,$template) . $append;
265
  }
266
- } else if ( $event->event_category == get_option('mc_skip_holidays_category') ) {
267
- if ( get_option( 'mc_event_approve' ) == 'true' ) {
268
- if ( $event->event_approved != 0 ) {$output .= $prepend.jd_draw_template($event_details,$template).$append;}
 
 
 
269
  } else {
270
- $output .= $prepend.jd_draw_template($event_details,$template).$append;
 
 
 
 
 
 
271
  }
272
- }
273
- }
 
 
 
 
 
 
 
 
 
 
274
  $day_count = $day_count+1;
275
  } else {
276
- if ( $type == 'list' ) {
277
- $prepend = "<li class=\"no-events\">";
278
- $append = "</li>\n";
279
- } else {
280
- $prepend = $append = '';
281
- }
282
- $output .= $prepend.__('There are no events currently scheduled.','my-calendar').$append;
283
  }
284
  return $output;
285
  }
286
 
287
  // Widget todays events
288
  function my_calendar_todays_events($category='default',$template='default',$substitute='') {
289
- global $wpdb;
290
  $offset = (60*60*get_option('gmt_offset'));
291
  // This function cannot be called unless calendar is up to date
292
  check_my_calendar();
293
  $defaults = get_option('my_calendar_widget_defaults');
294
  $template = ($template == 'default')?$defaults['today']['template']:$template;
 
295
  $category = ($category == 'default')?$defaults['today']['category']:$category;
296
- $no_event_text = ($substitute = '')?$defaults['today']['text']:$substitute;
297
 
298
  $events = my_calendar_grab_events(date("Y",time()+$offset),date("m",time()+$offset),date("d",time()+$offset),$category);
299
  if (count($events) != 0) { $output = "<ul>"; }
73
  $after = esc_attr($instance['my_calendar_upcoming_after']);
74
  $type = esc_attr($instance['my_calendar_upcoming_type']);
75
  $the_category = ($instance['my_calendar_upcoming_category']=='')?'default':esc_attr($instance['my_calendar_upcoming_category']);
76
+ $widget_title = empty($the_title) ? __('Upcoming Events','my-calendar') : $the_title;
77
  $the_events = my_calendar_upcoming_events($before,$after,$type,$the_category,$the_template,$the_substitute);
78
  if ($the_events != '') {
79
  echo $before_widget;
143
 
144
  // Widget upcoming events
145
  function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default',$substitute='') {
146
+ global $wpdb,$default_template;
147
  // This function cannot be called unless calendar is up to date
148
  check_my_calendar();
149
+ $offset = (60*60*get_option('gmt_offset'));
150
  $defaults = get_option('my_calendar_widget_defaults');
151
  $display_upcoming_type = ($type == 'default')?$defaults['upcoming']['type']:$type;
152
+ if ($display_upcoming_type == '') { $display_upcoming_type = 'event'; }
153
  // Get number of units we should go into the future
154
  $after = ($after == 'default')?$defaults['upcoming']['after']:$after;
155
+ if ($after == '') { $after = 10; }
156
  // Get number of units we should go into the past
157
  $before = ($before == 'default')?$defaults['upcoming']['before']:$before;
158
+ if ($before == '') { $before = 0; }
159
+ $category = ($category == 'default')?'':$category;
160
  $template = ($template == 'default')?$defaults['upcoming']['template']:$template;
161
+ if ($template == '' ) { $template = "$default_template"; };
162
  $no_event_text = ($substitute == '')?$defaults['upcoming']['text']:$substitute;
163
 
164
  $day_count = -($before);
165
  $output = "<ul>";
 
166
  if ($display_upcoming_type == "days") {
167
+ $temp_array = array();
168
+ while ($day_count < $after+1) {
169
+ list($y,$m,$d) = split("-",date("Y-m-d",mktime($day_count*24,0,0,date("m",time()+$offset),date("d",time()+$offset),date("Y",time()+$offset))));
170
+ $events = my_calendar_grab_events( $y,$m,$d,$category );
171
  $current_date = "$y-$m-$d";
172
+ @usort($events, "my_calendar_time_cmp");
173
+ if (count($events) != 0) {
174
+ foreach($events as $event) {
175
+ $event_details = event_as_array($event);
176
+ $date_diff = jd_date_diff( strtotime($event_details['date']),strtotime($event_details['enddate']));
177
+
178
+ if (get_option('my_calendar_date_format') != '') {
179
+ $date = date_i18n(get_option('my_calendar_date_format'),strtotime($current_date));
180
+ $date_end = date_i18n(get_option('my_calendar_date_format'),strtotime(my_calendar_add_date($current_date,$date_diff)));
181
+ } else {
182
+ $date = date_i18n(get_option('date_format'),strtotime($current_date));
183
+ $date_end = date_i18n(get_option('date_format'),strtotime(my_calendar_add_date($current_date,$date_diff)));
184
+ }
185
+
186
+ $event_details['date'] = $date;
187
+ $event_details['enddate'] = $date_end;
188
+
189
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
190
+ if ( $event->event_approved != 0 ) {$temp_array[] = $event_details;}
191
+ } else {
192
+ $temp_array[] = $event_details;
193
+ }
194
+ // by Roland end
195
+ }
196
+ }
197
+ $day_count = $day_count+1;
198
+
199
+ }
200
+
201
+ if ( get_option('mc_skip_holidays') == 'false') {
202
+ foreach ($temp_array as $details) {
203
+ $output .= "<li>".jd_draw_template($details,$template)."</li>";
204
  }
205
+ } else {
206
+ // By default, skip no events.
207
+ $skipping = false;
208
+ foreach($temp_array as $details) {
209
+ // if any event this date is in the holiday category, we are skipping
210
+ if ( $details['cat_id'] == get_option('mc_skip_holidays_category') ) {
211
+ $skipping = true;
212
+ break;
 
213
  }
214
+ }
215
+ // check each event, if we're skipping, only include the holiday events.
216
+ foreach($temp_array as $details) {
217
+ if ($skipping == true) {
218
+ if ($details['cat_id'] == get_option('mc_skip_holidays_category') ) {
219
+ $output .= "<li>".jd_draw_template($details,$template)."</li>";
220
+ }
221
  } else {
222
+ $output .= "<li>".jd_draw_template($details,$template)."</li>";
223
  }
224
+ }
225
+ }
 
 
 
226
  } else {
227
+ $events = mc_get_all_events($category); // grab all events within reasonable proximity
228
  $output .= mc_produce_upcoming_events( $events,$template,$before,$after );
229
  }
230
  if ($output != '<ul>') {
234
  return stripcslashes( $no_event_text );
235
  }
236
  }
237
+ // make this function time-sensitive, not date-sensitive.
238
  function mc_produce_upcoming_events($events,$template,$before=0,$after=10,$type='list') {
239
  $past = 1;
240
  $future = 1;
243
  @usort( $events, "my_calendar_timediff_cmp" );// sort all events by proximity to current date
244
  $count = count($events);
245
  for ( $i=0;$i<=$count;$i++ ) {
246
+ $beginning = $events[$i]->event_begin . ' ' . $events[$i]->event_time;
247
+ $current = date('Y-m-d H:i',time()+$offset);
248
  if ($events[$i]) {
249
  if ( ( $past<=$before && $future<=$after ) ) {
250
  $near_events[] = $events[$i]; // if neither limit is reached, split off freely
251
+ } else if ( $past <= $before && ( my_calendar_date_comp( $beginning,$current ) ) ) {
252
  $near_events[] = $events[$i]; // split off another past event
253
+ } else if ( $future <= $after && ( !my_calendar_date_comp( $beginning,$current ) ) ) {
254
  $near_events[] = $events[$i]; // split off another future event
255
  }
256
+ if ( my_calendar_date_comp( $beginning,$current ) ) {
257
  $past++;
258
+ } elseif ( my_calendar_date_equal( $beginning,$current ) ) {
259
  $present = 1;
260
  } else {
261
  $future++;
270
  if ( is_array( $events ) ) {
271
  foreach( $events as $event ) {
272
  $event_details = event_as_array( $event );
273
+ if ( get_option( 'mc_event_approve' ) == 'true' ) {
274
+ if ( $event->event_approved != 0 ) {$temp_array[] = $event_details; }
275
+ } else {
276
+ $temp_array[] = $event_details;
277
+ }
278
+ }
279
+
280
+ if ( get_option('mc_skip_holidays') == 'false') {
281
+ foreach ($temp_array as $details) {
282
+ $date = date('Y-m-d',strtotime($details['date']));
283
  if (my_calendar_date_comp( $date,$today )===true) {
284
  $class = "past-event";
285
  } else {
293
  $append = "</li>\n";
294
  } else {
295
  $prepend = $append = '';
296
+ }
297
+ $output .= "$prepend".jd_draw_template($details,$template,$type)."$append";
298
  }
299
+ } else {
300
+ // By default, skip no events.
301
+ $skipping = false;
302
+ foreach($temp_array as $details) {
303
+ $date = date('Y-m-d',strtotime($details['date']));
304
+ if (my_calendar_date_comp( $date,$today )===true) {
305
+ $class = "past-event";
306
  } else {
307
+ $class = "future-event";
308
  }
309
+ if ( my_calendar_date_equal( $date,$today ) ) {
310
+ $class = "today";
311
+ }
312
+ if ($type == 'list') {
313
+ $prepend = "<li class=\"$class\">";
314
+ $append = "</li>\n";
315
  } else {
316
+ $prepend = $append = '';
317
+ }
318
+ // if any event this date is in the holiday category, we are skipping
319
+ if ( $details['cat_id'] == get_option('mc_skip_holidays_category') ) {
320
+ $skipping = true;
321
+ break;
322
+ }
323
  }
324
+ // check each event, if we're skipping, only include the holiday events.
325
+ foreach($temp_array as $details) {
326
+ if ($skipping == true) {
327
+ if ($details['cat_id'] == get_option('mc_skip_holidays_category') ) {
328
+ $output .= "$prepend".jd_draw_template($details,$template,$type)."$append";
329
+ }
330
+ } else {
331
+ $output .= "$prepend".jd_draw_template($details,$template,$type)."$append";
332
+ }
333
+ }
334
+ }
335
+
336
  $day_count = $day_count+1;
337
  } else {
338
+ $output .= '';
 
 
 
 
 
 
339
  }
340
  return $output;
341
  }
342
 
343
  // Widget todays events
344
  function my_calendar_todays_events($category='default',$template='default',$substitute='') {
345
+ global $wpdb, $default_template;
346
  $offset = (60*60*get_option('gmt_offset'));
347
  // This function cannot be called unless calendar is up to date
348
  check_my_calendar();
349
  $defaults = get_option('my_calendar_widget_defaults');
350
  $template = ($template == 'default')?$defaults['today']['template']:$template;
351
+ if ($template == '' ) { $template = "$default_template"; };
352
  $category = ($category == 'default')?$defaults['today']['category']:$category;
353
+ $no_event_text = ($substitute == '')?$defaults['today']['text']:$substitute;
354
 
355
  $events = my_calendar_grab_events(date("Y",time()+$offset),date("m",time()+$offset),date("d",time()+$offset),$category);
356
  if (count($events) != 0) { $output = "<ul>"; }
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.7.2
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
@@ -23,10 +23,11 @@ Version: 1.7.2
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
- $mc_version = '1.7.2';
 
27
  // Enable internationalisation
28
  $plugin_dir = basename(dirname(__FILE__));
29
- load_plugin_textdomain( 'my-calendar','wp-content/plugins/'.$plugin_dir, $plugin_dir);
30
  global $wpdb;
31
  // Define the tables used in My Calendar
32
  define('MY_CALENDAR_TABLE', $wpdb->prefix . 'my_calendar');
@@ -53,8 +54,12 @@ add_action( 'profile_update', 'mc_user_save_profile');
53
 
54
  add_action( 'init', 'my_calendar_add_feed' );
55
  function my_calendar_add_feed() {
56
- add_feed( 'my-calendar-rss', 'my_calendar_rss' );
57
- add_feed( 'my-calendar-ics', 'my_calendar_ical' );
 
 
 
 
58
  }
59
 
60
  register_activation_hook( __FILE__, 'check_my_calendar' );
@@ -82,6 +87,13 @@ if ( version_compare( get_bloginfo( 'version' ) , '3.0' , '<' ) && is_ssl() ) {
82
  }
83
  $wp_content_url .= '/wp-content';
84
  $wp_content_dir = ABSPATH . 'wp-content';
 
 
 
 
 
 
 
85
  $wp_plugin_url = $wp_content_url . '/plugins';
86
  $wp_plugin_dir = $wp_content_dir . '/plugins';
87
  $wpmu_plugin_url = $wp_content_url . '/mu-plugins';
@@ -173,7 +185,9 @@ $category_styles = '';
173
  $categories = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
174
  foreach ( $categories as $category ) {
175
  $class = "mc_".sanitize_title($category->category_name);
176
- $color = $category->category_color;
 
 
177
  if ( get_option( 'mc_apply_color' ) == 'font' ) {
178
  $type = 'color';
179
  } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
@@ -250,9 +264,12 @@ function my_calendar_write_js() {
250
  });
251
  $("#event_end").datepicker({
252
  numberOfMonths: 2,
253
- dateFormat: "yy-mm-dd"
254
  });
 
 
255
  });
 
256
  //]]>
257
  </script>
258
  ';
@@ -392,10 +409,9 @@ add_shortcode('my_calendar_locations','my_calendar_locations');
392
 
393
  // Function to check what version of My Calendar is installed and install if needed
394
  function check_my_calendar() {
395
- global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $mc_version,$stored_styles;
396
  $current_version = get_option('my_calendar_version');
397
  // If current version matches, don't bother running this.
398
-
399
  if ($current_version == $mc_version) {
400
  return true;
401
  }
@@ -839,7 +855,7 @@ global $wpdb;
839
  $join = '';
840
  }
841
  $limits = $select_category . $join . $limit_string;
842
- $events = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $limits");
843
  $offset = (60*60*get_option('gmt_offset'));
844
  $date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
845
  if (!empty($events)) {
@@ -1321,7 +1337,7 @@ function my_calendar_grab_events($y,$m,$d,$category=null) {
1321
 
1322
  $limit_string = mc_limit_string();
1323
 
1324
- echo $current_settings['my_calendar_location_default'];
1325
  // First we check for conventional events. These will form the first instance of a recurring event
1326
  // or the only instance of a one-off event
1327
  $events = $wpdb->get_results("
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.7.8
9
  */
10
+ /* Copyright 2009-2011 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
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
+ global $mc_version;
27
+ $mc_version = '1.7.8';
28
  // Enable internationalisation
29
  $plugin_dir = basename(dirname(__FILE__));
30
+ load_plugin_textdomain( 'my-calendar',false, dirname( plugin_basename( __FILE__ ) ) );
31
  global $wpdb;
32
  // Define the tables used in My Calendar
33
  define('MY_CALENDAR_TABLE', $wpdb->prefix . 'my_calendar');
54
 
55
  add_action( 'init', 'my_calendar_add_feed' );
56
  function my_calendar_add_feed() {
57
+ if ( get_option('mc_show_rss') == 'true' ) {
58
+ add_feed( 'my-calendar-rss', 'my_calendar_rss' );
59
+ }
60
+ if ( get_option('mc_show-ical') == 'true' ) {
61
+ add_feed( 'my-calendar-ics', 'my_calendar_ical' );
62
+ }
63
  }
64
 
65
  register_activation_hook( __FILE__, 'check_my_calendar' );
87
  }
88
  $wp_content_url .= '/wp-content';
89
  $wp_content_dir = ABSPATH . 'wp-content';
90
+ if ( defined('WP_CONTENT_URL') ) {
91
+ $wp_content_url = constant('WP_CONTENT_URL');
92
+ }
93
+ if ( defined('WP_CONTENT_DIR') ) {
94
+ $wp_content_dir = constant('WP_CONTENT_DIR');
95
+ }
96
+
97
  $wp_plugin_url = $wp_content_url . '/plugins';
98
  $wp_plugin_dir = $wp_content_dir . '/plugins';
99
  $wpmu_plugin_url = $wp_content_url . '/mu-plugins';
185
  $categories = $wpdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
186
  foreach ( $categories as $category ) {
187
  $class = "mc_".sanitize_title($category->category_name);
188
+ $hex = (strpos($category->category_color,'#') !== 0)?'#':'';
189
+ $color = $hex.$category->category_color;
190
+
191
  if ( get_option( 'mc_apply_color' ) == 'font' ) {
192
  $type = 'color';
193
  } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
264
  });
265
  $("#event_end").datepicker({
266
  numberOfMonths: 2,
267
+ dateFormat: "yy-mm-dd",
268
  });
269
+ var prevDate = $("#event_begin").datepicker( "getDate" );
270
+ $("#event_end").datepicker( "option","defaultDate", prevDate );
271
  });
272
+
273
  //]]>
274
  </script>
275
  ';
409
 
410
  // Function to check what version of My Calendar is installed and install if needed
411
  function check_my_calendar() {
412
+ global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs,$mc_version,$stored_styles;
413
  $current_version = get_option('my_calendar_version');
414
  // If current version matches, don't bother running this.
 
415
  if ($current_version == $mc_version) {
416
  return true;
417
  }
855
  $join = '';
856
  }
857
  $limits = $select_category . $join . $limit_string;
858
+ $events = $wpdb->get_results("SELECT *,event_begin as event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $limits");
859
  $offset = (60*60*get_option('gmt_offset'));
860
  $date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
861
  if (!empty($events)) {
1337
 
1338
  $limit_string = mc_limit_string();
1339
 
1340
+ // echo $current_settings['my_calendar_location_default'];
1341
  // First we check for conventional events. These will form the first instance of a recurring event
1342
  // or the only instance of a one-off event
1343
  $events = $wpdb->get_results("
my-calendar.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: My Calendar 1.7.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
7
- "POT-Creation-Date: 2011-01-18 19:16:29+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,142 +12,288 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: my-calendar-styles.php:51
16
- msgid "The stylesheet has been updated."
17
  msgstr ""
18
 
19
- #: my-calendar-styles.php:51
20
- msgid "Write Error! Please verify write permissions on the style file."
21
  msgstr ""
22
 
23
- #: my-calendar-styles.php:67
24
- msgid "Stylesheet reset to default."
25
  msgstr ""
26
 
27
- #: my-calendar-styles.php:69
28
- msgid "Style Settings Saved"
29
  msgstr ""
30
 
31
- #: my-calendar-styles.php:78
32
- msgid "New theme selected."
33
  msgstr ""
34
 
35
- #: my-calendar-styles.php:92
36
- msgid ""
37
- "Sorry. The file you are looking for doesn't appear to exist. Please check "
38
- "your file name and location!"
39
  msgstr ""
40
 
41
- #: my-calendar-styles.php:100
42
- msgid "My Calendar Styles"
 
 
43
  msgstr ""
44
 
45
- #: my-calendar-styles.php:104
46
- msgid "Calendar Style Settings"
47
  msgstr ""
48
 
49
- #: my-calendar-styles.php:111
50
- msgid "Select My Calendar Theme"
51
  msgstr ""
52
 
53
- #: my-calendar-styles.php:119
54
- msgid "Your Custom Stylesheets"
55
  msgstr ""
56
 
57
- #: my-calendar-styles.php:128
58
- msgid "Installed Stylesheets"
59
  msgstr ""
60
 
61
- #: my-calendar-styles.php:136
62
- msgid "Choose Style"
63
  msgstr ""
64
 
65
- #: my-calendar-styles.php:149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgid ""
67
- "My Calendar was unable to update your CSS files during the upgrade. Please "
68
- "check your file permissions if you wish to edit your My Calendar styles. "
69
- "Your previously stored styles are below. This message and these styles will "
70
- "be deleted from the database when you successfully update your stylesheet."
71
  msgstr ""
72
 
73
- #: my-calendar-styles.php:157
74
- msgid "CSS Style Options"
75
  msgstr ""
76
 
77
- #: my-calendar-styles.php:160
78
- msgid "Apply CSS only on these pages (comma separated page IDs)"
79
  msgstr ""
80
 
81
- #: my-calendar-styles.php:163
82
- msgid "Reset the My Calendar stylesheet to the default"
83
  msgstr ""
84
 
85
- #: my-calendar-styles.php:163
86
- msgid "Disable My Calendar Stylesheet"
 
87
  msgstr ""
88
 
89
- #: my-calendar-styles.php:166
90
- msgid "Edit the stylesheet for My Calendar"
 
91
  msgstr ""
92
 
93
- #: my-calendar-styles.php:169 my-calendar-behaviors.php:83
94
- #: my-calendar-behaviors.php:95 my-calendar-behaviors.php:107
95
- #: my-calendar-behaviors.php:119
96
- msgid "Save"
97
  msgstr ""
98
 
99
- #: my-calendar.php:92 my-calendar.php:226
100
- msgid "Settings"
 
101
  msgstr ""
102
 
103
- #: my-calendar.php:93 my-calendar.php:229
104
- msgid "Help"
105
  msgstr ""
106
 
107
- #: my-calendar.php:123
108
- msgid "Buy the Beginner's Guide"
109
  msgstr ""
110
 
111
- #: my-calendar.php:124
112
- msgid "Get Support"
113
  msgstr ""
114
 
115
- #: my-calendar.php:125 my-calendar.php:229
116
- msgid "My Calendar Help"
117
  msgstr ""
118
 
119
- #: my-calendar.php:126
120
- msgid "Make a Donation"
121
  msgstr ""
122
 
123
- #. #-#-#-#-# plugin.pot (My Calendar 1.7.1) #-#-#-#-#
124
- #. Plugin Name of the plugin/theme
125
- #: my-calendar.php:217
126
- msgid "My Calendar"
127
  msgstr ""
128
 
129
- #: my-calendar.php:220
130
- msgid "Add/Edit Events"
131
  msgstr ""
132
 
133
- #: my-calendar.php:224 my-calendar-categories.php:195
134
- msgid "Manage Categories"
135
  msgstr ""
136
 
137
- #: my-calendar.php:225 my-calendar-locations.php:141
138
- msgid "Manage Locations"
 
 
139
  msgstr ""
140
 
141
- #: my-calendar.php:227
142
- msgid "Style Editor"
143
  msgstr ""
144
 
145
- #: my-calendar.php:228
146
- msgid "Behavior Editor"
147
  msgstr ""
148
 
149
- #: my-calendar-user.php:39
150
- msgid "My Calendar User Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  msgstr ""
152
 
153
  #: my-calendar-event-manager.php:28 my-calendar-settings.php:577
@@ -173,12 +319,12 @@ msgstr ""
173
  msgid "%1$d events deleted successfully out of %2$d selected"
174
  msgstr ""
175
 
176
- #: my-calendar-event-manager.php:87 my-calendar-event-manager.php:241
177
  #: my-calendar-event-manager.php:263 my-calendar-event-manager.php:277
178
- #: my-calendar-event-manager.php:286 my-calendar-event-manager.php:871
179
- #: my-calendar-event-manager.php:874 my-calendar-event-manager.php:877
180
- #: my-calendar-event-manager.php:887 my-calendar-event-manager.php:895
181
- #: my-calendar-event-manager.php:911 my-calendar-event-manager.php:917
182
  msgid "Error"
183
  msgstr ""
184
 
@@ -194,12 +340,6 @@ msgstr ""
194
  msgid "Are you sure you want to delete this event?"
195
  msgstr ""
196
 
197
- #: my-calendar-event-manager.php:104 my-calendar-event-manager.php:732
198
- #: my-calendar-categories.php:212 my-calendar-categories.php:231
199
- #: my-calendar-locations.php:156 my-calendar-locations.php:168
200
- msgid "Delete"
201
- msgstr ""
202
-
203
  #: my-calendar-event-manager.php:112
204
  msgid "You do not have permission to delete that event."
205
  msgstr ""
@@ -212,31 +352,31 @@ msgstr ""
212
  msgid "You do not have permission to reject that event."
213
  msgstr ""
214
 
215
- #: my-calendar-event-manager.php:170 my-calendar-event-manager.php:326
216
  msgid "Edit Event"
217
  msgstr ""
218
 
219
- #: my-calendar-event-manager.php:174 my-calendar-event-manager.php:183
220
  msgid "You must provide an event id in order to edit it"
221
  msgstr ""
222
 
223
- #: my-calendar-event-manager.php:179 my-calendar-event-manager.php:326
224
  msgid "Copy Event"
225
  msgstr ""
226
 
227
- #: my-calendar-event-manager.php:189
228
  msgid "Add Event"
229
  msgstr ""
230
 
231
- #: my-calendar-event-manager.php:193
232
  msgid "Manage Events"
233
  msgstr ""
234
 
235
- #: my-calendar-event-manager.php:241
236
  msgid "I'm sorry! I couldn't add that event to the database."
237
  msgstr ""
238
 
239
- #: my-calendar-event-manager.php:247
240
  msgid "Event added. It will now show in your calendar."
241
  msgstr ""
242
 
@@ -298,7 +438,7 @@ msgstr ""
298
  msgid "Event Title"
299
  msgstr ""
300
 
301
- #: my-calendar-event-manager.php:364 my-calendar-event-manager.php:456
302
  msgid "(required)"
303
  msgstr ""
304
 
@@ -352,106 +492,105 @@ msgid ""
352
  "event."
353
  msgstr ""
354
 
355
- #: my-calendar-event-manager.php:456
356
  msgid "Start Date (YYYY-MM-DD)"
357
  msgstr ""
358
 
359
- #: my-calendar-event-manager.php:456
360
  msgid "Time (hh:mm)"
361
  msgstr ""
362
 
363
- #: my-calendar-event-manager.php:465
364
  msgid "End Date (YYYY-MM-DD)"
365
  msgstr ""
366
 
367
- #: my-calendar-event-manager.php:465
368
  msgid "End Time (hh:mm)"
369
  msgstr ""
370
 
371
- #: my-calendar-event-manager.php:473
372
  msgid "Current time difference from GMT is "
373
  msgstr ""
374
 
375
- #: my-calendar-event-manager.php:473
376
  msgid " hour(s)"
377
  msgstr ""
378
 
379
- #: my-calendar-event-manager.php:482
380
  msgid "Recurring Events"
381
  msgstr ""
382
 
383
- #: my-calendar-event-manager.php:485
384
  msgid "Repeats for"
385
  msgstr ""
386
 
387
- #: my-calendar-event-manager.php:486
388
  msgid "Units"
389
  msgstr ""
390
 
391
- #: my-calendar-event-manager.php:487
392
  msgid "Does not recur"
393
  msgstr ""
394
 
395
- #: my-calendar-event-manager.php:488 my-calendar-event-manager.php:706
396
  msgid "Daily"
397
  msgstr ""
398
 
399
- #: my-calendar-event-manager.php:489 my-calendar-event-manager.php:707
400
  msgid "Weekly"
401
  msgstr ""
402
 
403
- #: my-calendar-event-manager.php:490
404
  msgid "Bi-weekly"
405
  msgstr ""
406
 
407
- #: my-calendar-event-manager.php:491
408
  msgid "Date of Month (e.g., the 24th of each month)"
409
  msgstr ""
410
 
411
- #: my-calendar-event-manager.php:492
412
  msgid "Day of Month (e.g., the 3rd Monday of each month)"
413
  msgstr ""
414
 
415
- #: my-calendar-event-manager.php:493
416
  msgid "Annually"
417
  msgstr ""
418
 
419
- #: my-calendar-event-manager.php:495
420
- msgid "Enter \"0\" if the event should recur indefinitely."
 
 
 
421
  msgstr ""
422
 
423
- #: my-calendar-event-manager.php:512
424
  msgid "Event Registration Status"
425
  msgstr ""
426
 
427
- #: my-calendar-event-manager.php:513
428
  msgid ""
429
  "My Calendar does not manage event registrations. Use this for information "
430
  "only."
431
  msgstr ""
432
 
433
- #: my-calendar-event-manager.php:515
434
  msgid "Open"
435
  msgstr ""
436
 
437
- #: my-calendar-event-manager.php:516
438
  msgid "Closed"
439
  msgstr ""
440
 
441
- #: my-calendar-event-manager.php:517
442
  msgid "Does not apply"
443
  msgstr ""
444
 
445
- #: my-calendar-event-manager.php:520
446
  msgid ""
447
  "If this event recurs, it can only be registered for as a complete series."
448
  msgstr ""
449
 
450
- #: my-calendar-event-manager.php:537 my-calendar-locations.php:87
451
- msgid "Event Location"
452
- msgstr ""
453
-
454
- #: my-calendar-event-manager.php:544
455
  msgid "Choose a preset location:"
456
  msgstr ""
457
 
@@ -459,108 +598,16 @@ msgstr ""
459
  msgid "Add recurring locations for later use."
460
  msgstr ""
461
 
462
- #: my-calendar-event-manager.php:566 my-calendar-locations.php:89
463
- msgid ""
464
- "All location fields are optional: <em>insufficient information may result in "
465
- "an inaccurate map</em>."
466
- msgstr ""
467
-
468
- #: my-calendar-event-manager.php:569 my-calendar-locations.php:92
469
- msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
470
- msgstr ""
471
-
472
- #: my-calendar-event-manager.php:572 my-calendar-locations.php:95
473
- msgid "Street Address"
474
- msgstr ""
475
-
476
- #: my-calendar-event-manager.php:575 my-calendar-locations.php:98
477
- msgid "Street Address (2)"
478
- msgstr ""
479
-
480
- #: my-calendar-event-manager.php:578 my-calendar-locations.php:101
481
- #: my-calendar-settings.php:556
482
- msgid "City"
483
- msgstr ""
484
-
485
- #: my-calendar-event-manager.php:578 my-calendar-locations.php:101
486
- #: my-calendar-settings.php:557
487
- msgid "State/Province"
488
- msgstr ""
489
-
490
- #: my-calendar-event-manager.php:578 my-calendar-locations.php:101
491
- #: my-calendar-settings.php:559
492
- msgid "Postal Code"
493
- msgstr ""
494
-
495
- #: my-calendar-event-manager.php:581 my-calendar-locations.php:104
496
- #: my-calendar-settings.php:558
497
- msgid "Country"
498
- msgstr ""
499
-
500
- #: my-calendar-event-manager.php:584 my-calendar-locations.php:107
501
- msgid "Initial Zoom"
502
- msgstr ""
503
-
504
- #: my-calendar-event-manager.php:586 my-calendar-locations.php:109
505
- msgid "Neighborhood"
506
- msgstr ""
507
-
508
- #: my-calendar-event-manager.php:587 my-calendar-locations.php:110
509
- msgid "Small City"
510
- msgstr ""
511
-
512
- #: my-calendar-event-manager.php:588 my-calendar-locations.php:111
513
- msgid "Large City"
514
- msgstr ""
515
-
516
- #: my-calendar-event-manager.php:589 my-calendar-locations.php:112
517
- msgid "Greater Metro Area"
518
- msgstr ""
519
-
520
- #: my-calendar-event-manager.php:590 my-calendar-locations.php:113
521
- msgid "State"
522
- msgstr ""
523
-
524
- #: my-calendar-event-manager.php:591 my-calendar-locations.php:114
525
- msgid "Region"
526
- msgstr ""
527
-
528
- #: my-calendar-event-manager.php:595 my-calendar-locations.php:118
529
- msgid "GPS Coordinates (optional)"
530
- msgstr ""
531
-
532
- #: my-calendar-event-manager.php:597
533
  msgid ""
534
  "If you supply GPS coordinates for your location, they will be used in place "
535
  "of any other address information to provide your map link."
536
  msgstr ""
537
 
538
- #: my-calendar-event-manager.php:600 my-calendar-locations.php:123
539
- msgid "Longitude"
540
- msgstr ""
541
-
542
- #: my-calendar-event-manager.php:600 my-calendar-locations.php:123
543
- msgid "Latitude"
544
- msgstr ""
545
-
546
  #: my-calendar-event-manager.php:666
547
  msgid "Table of Calendar Events"
548
  msgstr ""
549
 
550
- #: my-calendar-event-manager.php:669 my-calendar-categories.php:207
551
- #: my-calendar-locations.php:153
552
- msgid "ID"
553
- msgstr ""
554
-
555
- #: my-calendar-event-manager.php:670 my-calendar-widgets.php:32
556
- #: my-calendar-widgets.php:98
557
- msgid "Title"
558
- msgstr ""
559
-
560
- #: my-calendar-event-manager.php:671 my-calendar-locations.php:154
561
- msgid "Location"
562
- msgstr ""
563
-
564
  #: my-calendar-event-manager.php:672
565
  msgid "Description"
566
  msgstr ""
@@ -573,8 +620,8 @@ msgstr ""
573
  msgid "Recurs"
574
  msgstr ""
575
 
576
- #: my-calendar-event-manager.php:675 my-calendar-settings.php:270
577
- #: my-calendar-settings.php:279 my-calendar-settings.php:287
578
  msgid "Author"
579
  msgstr ""
580
 
@@ -607,7 +654,7 @@ msgid "Yearly"
607
  msgstr ""
608
 
609
  #: my-calendar-event-manager.php:713 my-calendar-categories.php:228
610
- #: my-calendar-output.php:125 my-calendar-settings.php:308
611
  msgid "N/A"
612
  msgstr ""
613
 
@@ -623,12 +670,6 @@ msgstr ""
623
  msgid "Copy"
624
  msgstr ""
625
 
626
- #: my-calendar-event-manager.php:732 my-calendar-categories.php:211
627
- #: my-calendar-categories.php:225 my-calendar-locations.php:155
628
- #: my-calendar-locations.php:167
629
- msgid "Edit"
630
- msgstr ""
631
-
632
  #: my-calendar-event-manager.php:733
633
  msgid "Not editable."
634
  msgstr ""
@@ -653,62 +694,48 @@ msgstr ""
653
  msgid "Awaiting Approval"
654
  msgstr ""
655
 
656
- #: my-calendar-event-manager.php:766
657
  msgid "There are no events in the database!"
658
  msgstr ""
659
 
660
- #: my-calendar-event-manager.php:871
661
  msgid ""
662
  "Your event end date must be either after or the same as your event begin date"
663
  msgstr ""
664
 
665
- #: my-calendar-event-manager.php:874
666
  msgid ""
667
  "Your date formatting is correct but one or more of your dates is invalid. "
668
  "Check for number of days in month and leap year related errors."
669
  msgstr ""
670
 
671
- #: my-calendar-event-manager.php:877
672
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
673
  msgstr ""
674
 
675
- #: my-calendar-event-manager.php:887
676
  msgid "The time field must either be blank or be entered in the format hh:mm"
677
  msgstr ""
678
 
679
- #: my-calendar-event-manager.php:895
680
  msgid ""
681
  "The end time field must either be blank or be entered in the format hh:mm"
682
  msgstr ""
683
 
684
- #: my-calendar-event-manager.php:911
685
  msgid "The event title must be between 1 and 255 characters in length."
686
  msgstr ""
687
 
688
- #: my-calendar-event-manager.php:917
689
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
690
  msgstr ""
691
 
692
- #: my-calendar-upgrade-db.php:21 my-calendar-upgrade-db.php:29
693
- msgid "The My Calendar database needs to be updated."
694
- msgstr ""
695
-
696
- #: my-calendar-upgrade-db.php:22 my-calendar-upgrade-db.php:43
697
- msgid "Update now"
698
- msgstr ""
699
-
700
- #: my-calendar-upgrade-db.php:29
701
- msgid "Upgrade now."
702
- msgstr ""
703
-
704
- #: my-calendar-upgrade-db.php:42
705
- msgid ""
706
- "You haven't entered any events, so My Calendar can't tell whether your "
707
- "database is up to date. If you can't add events, upgrade your database!"
708
  msgstr ""
709
 
710
- #: my-calendar-upgrade-db.php:53
711
- msgid "My Calendar Database is updated."
712
  msgstr ""
713
 
714
  #: my-calendar-categories.php:90
@@ -760,118 +787,100 @@ msgstr ""
760
  msgid "Category Icon"
761
  msgstr ""
762
 
763
- #: my-calendar-categories.php:182 my-calendar-locations.php:127
764
- msgid "Save Changes"
765
- msgstr ""
766
-
767
  #: my-calendar-categories.php:209
768
  msgid "Category Color"
769
  msgstr ""
770
 
771
- #: my-calendar-categories.php:231 my-calendar-locations.php:168
772
- msgid "Are you sure you want to delete this category?"
773
- msgstr ""
774
-
775
  #: my-calendar-categories.php:242
776
  msgid "There are no categories in the database - something has gone wrong!"
777
  msgstr ""
778
 
779
- #: my-calendar-install.php:142
780
- msgid "My Calendar Default Timezone"
781
- msgstr ""
782
-
783
- #: my-calendar-install.php:187
784
- msgid "My Calendar Default Location"
785
- msgstr ""
786
-
787
- #: my-calendar-behaviors.php:40
788
  msgid "Behavior Settings saved"
789
  msgstr ""
790
 
791
- #: my-calendar-behaviors.php:63
792
  msgid "My Calendar Behaviors"
793
  msgstr ""
794
 
795
- #: my-calendar-behaviors.php:67
796
  msgid "Calendar Behavior Settings"
797
  msgstr ""
798
 
799
- #: my-calendar-behaviors.php:72
800
  msgid "Apply JavaScript only on these pages (comma separated page IDs)"
801
  msgstr ""
802
 
803
- #: my-calendar-behaviors.php:75
804
  msgid "Calendar Behaviors: Calendar View"
805
  msgstr ""
806
 
807
- #: my-calendar-behaviors.php:77
808
  msgid "Reset the My Calendar Calendar Javascript"
809
  msgstr ""
810
 
811
- #: my-calendar-behaviors.php:77
812
  msgid "Disable Calendar Javascript Effects"
813
  msgstr ""
814
 
815
- #: my-calendar-behaviors.php:80
816
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
817
  msgstr ""
818
 
819
- #: my-calendar-behaviors.php:87
820
- msgid "Calendar Behaviors: List View"
 
 
821
  msgstr ""
822
 
823
  #: my-calendar-behaviors.php:89
 
 
 
 
824
  msgid "Reset the My Calendar List Javascript"
825
  msgstr ""
826
 
827
- #: my-calendar-behaviors.php:89
828
  msgid "Disable List Javascript Effects"
829
  msgstr ""
830
 
831
- #: my-calendar-behaviors.php:92
832
  msgid "Edit the jQuery scripts for My Calendar in List format"
833
  msgstr ""
834
 
835
- #: my-calendar-behaviors.php:99
836
  msgid "Calendar Behaviors: Mini Calendar View"
837
  msgstr ""
838
 
839
- #: my-calendar-behaviors.php:101
840
  msgid "Reset the My Calendar Mini Format Javascript"
841
  msgstr ""
842
 
843
- #: my-calendar-behaviors.php:101
844
  msgid "Disable Mini Javascript Effects"
845
  msgstr ""
846
 
847
- #: my-calendar-behaviors.php:104
848
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
849
  msgstr ""
850
 
851
- #: my-calendar-behaviors.php:111
852
  msgid "Calendar Behaviors: AJAX Navigation"
853
  msgstr ""
854
 
855
- #: my-calendar-behaviors.php:113
856
  msgid "Reset the My Calendar AJAX Javascript"
857
  msgstr ""
858
 
859
- #: my-calendar-behaviors.php:113
860
  msgid "Disable AJAX Effects"
861
  msgstr ""
862
 
863
- #: my-calendar-behaviors.php:116
864
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
865
  msgstr ""
866
 
867
- #: my-calendar-templates.php:188
868
- msgid "Published"
869
- msgstr ""
870
-
871
- #: my-calendar-templates.php:190
872
- msgid "Reserved"
873
- msgstr ""
874
-
875
  #: my-calendar-help.php:7
876
  msgid "How to use My Calendar"
877
  msgstr ""
@@ -1117,756 +1126,754 @@ msgstr ""
1117
  msgid "Produces the hex code for the current event's category color."
1118
  msgstr ""
1119
 
1120
- #: my-calendar-output.php:103
1121
- msgid "Event Details"
1122
  msgstr ""
1123
 
1124
- #: my-calendar-output.php:111
1125
- msgid "Close"
1126
  msgstr ""
1127
 
1128
- #: my-calendar-output.php:120
1129
- msgid "in your time zone"
1130
  msgstr ""
1131
 
1132
- #: my-calendar-output.php:125
1133
- msgid "Not Applicable"
1134
  msgstr ""
1135
 
1136
- #: my-calendar-output.php:137
1137
- msgid "Posted by"
1138
  msgstr ""
1139
 
1140
- #: my-calendar-output.php:187
1141
- msgid ""
1142
- "This class is part of a series. You must register for the first event in "
1143
- "this series to attend."
1144
  msgstr ""
1145
 
1146
- #: my-calendar-output.php:219
1147
- msgid "Month"
1148
  msgstr ""
1149
 
1150
- #: my-calendar-output.php:220 my-calendar-output.php:297
1151
- msgid "January"
1152
  msgstr ""
1153
 
1154
- #: my-calendar-output.php:221 my-calendar-output.php:297
1155
- msgid "February"
1156
  msgstr ""
1157
 
1158
- #: my-calendar-output.php:222 my-calendar-output.php:297
1159
- msgid "March"
1160
  msgstr ""
1161
 
1162
- #: my-calendar-output.php:223 my-calendar-output.php:297
1163
- msgid "April"
1164
  msgstr ""
1165
 
1166
- #: my-calendar-output.php:224 my-calendar-output.php:297
1167
- msgid "May"
1168
  msgstr ""
1169
 
1170
- #: my-calendar-output.php:225 my-calendar-output.php:297
1171
- msgid "June"
1172
  msgstr ""
1173
 
1174
- #: my-calendar-output.php:226 my-calendar-output.php:297
1175
- msgid "July"
1176
  msgstr ""
1177
 
1178
- #: my-calendar-output.php:227 my-calendar-output.php:297
1179
- msgid "August"
1180
  msgstr ""
1181
 
1182
- #: my-calendar-output.php:228 my-calendar-output.php:297
1183
- msgid "September"
1184
  msgstr ""
1185
 
1186
- #: my-calendar-output.php:229 my-calendar-output.php:297
1187
- msgid "October"
 
1188
  msgstr ""
1189
 
1190
- #: my-calendar-output.php:230 my-calendar-output.php:297
1191
- msgid "November"
 
1192
  msgstr ""
1193
 
1194
- #: my-calendar-output.php:231 my-calendar-output.php:297
1195
- msgid "December"
 
1196
  msgstr ""
1197
 
1198
- #: my-calendar-output.php:233
1199
- msgid "Year"
1200
  msgstr ""
1201
 
1202
- #: my-calendar-output.php:255
1203
- msgid "Go"
1204
  msgstr ""
1205
 
1206
- #: my-calendar-output.php:271
1207
- msgid "<abbr title=\"Sunday\">Sun</abbr>"
1208
  msgstr ""
1209
 
1210
- #: my-calendar-output.php:272
1211
- msgid "<abbr title=\"Monday\">Mon</abbr>"
 
 
1212
  msgstr ""
1213
 
1214
- #: my-calendar-output.php:273
1215
- msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1216
  msgstr ""
1217
 
1218
- #: my-calendar-output.php:274
1219
- msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1220
  msgstr ""
1221
 
1222
- #: my-calendar-output.php:275
1223
- msgid "<abbr title=\"Thursday\">Thur</abbr>"
1224
  msgstr ""
1225
 
1226
- #: my-calendar-output.php:276
1227
- msgid "<abbr title=\"Friday\">Fri</abbr>"
1228
  msgstr ""
1229
 
1230
- #: my-calendar-output.php:277
1231
- msgid "<abbr title=\"Saturday\">Sat</abbr>"
1232
  msgstr ""
1233
 
1234
- #: my-calendar-output.php:282
1235
- msgid "<abbr title=\"Sunday\">S</abbr>"
1236
  msgstr ""
1237
 
1238
- #: my-calendar-output.php:283
1239
- msgid "<abbr title=\"Monday\">M</abbr>"
1240
  msgstr ""
1241
 
1242
- #: my-calendar-output.php:284
1243
- msgid "<abbr title=\"Tuesday\">T</abbr>"
1244
  msgstr ""
1245
 
1246
- #: my-calendar-output.php:285
1247
- msgid "<abbr title=\"Wednesday\">W</abbr>"
1248
  msgstr ""
1249
 
1250
- #: my-calendar-output.php:286
1251
- msgid "<abbr title=\"Thursday\">T</abbr>"
1252
  msgstr ""
1253
 
1254
- #: my-calendar-output.php:287
1255
- msgid "<abbr title=\"Friday\">F</abbr>"
1256
  msgstr ""
1257
 
1258
- #: my-calendar-output.php:288
1259
- msgid "<abbr title=\"Saturday\">S</abbr>"
1260
  msgstr ""
1261
 
1262
- #: my-calendar-output.php:396
1263
- msgid "and"
1264
  msgstr ""
1265
 
1266
- #: my-calendar-output.php:415 my-calendar-output.php:420
1267
- msgid "Calendar"
 
 
 
1268
  msgstr ""
1269
 
1270
- #: my-calendar-output.php:416
1271
- msgid "The week's events"
1272
  msgstr ""
1273
 
1274
- #: my-calendar-output.php:425
1275
- msgid "Events in"
1276
  msgstr ""
1277
 
1278
- #: my-calendar-output.php:427
1279
- msgid "This week's events"
1280
  msgstr ""
1281
 
1282
- #: my-calendar-output.php:594
1283
- msgid "There are no events scheduled during this period."
1284
  msgstr ""
1285
 
1286
- #: my-calendar-output.php:604
1287
- msgid "Category Key"
1288
  msgstr ""
1289
 
1290
- #: my-calendar-output.php:637
1291
- msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
1292
  msgstr ""
1293
 
1294
- #: my-calendar-output.php:638
1295
- msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
1296
  msgstr ""
1297
 
1298
- #: my-calendar-output.php:789
1299
- msgid "Show events in:"
1300
  msgstr ""
1301
 
1302
- #: my-calendar-output.php:821
1303
- msgid "Submit"
1304
  msgstr ""
1305
 
1306
- #: my-calendar-widgets.php:5
1307
- msgid "My Calendar: Today's Events"
 
 
1308
  msgstr ""
1309
 
1310
- #: my-calendar-widgets.php:14 my-calendar-widgets.php:76
1311
- msgid "Today's Events"
1312
  msgstr ""
1313
 
1314
- #: my-calendar-widgets.php:36 my-calendar-widgets.php:102
1315
- msgid "Template"
1316
  msgstr ""
1317
 
1318
- #: my-calendar-widgets.php:40
1319
- msgid "Show this text if there are no events today:"
1320
  msgstr ""
1321
 
1322
- #: my-calendar-widgets.php:44 my-calendar-widgets.php:124
1323
- msgid "Category or categories to display:"
 
1324
  msgstr ""
1325
 
1326
- #: my-calendar-widgets.php:64
1327
- msgid "My Calendar: Upcoming Events"
1328
  msgstr ""
1329
 
1330
- #: my-calendar-widgets.php:106
1331
- msgid "Widget Options"
1332
  msgstr ""
1333
 
1334
- #: my-calendar-widgets.php:109
1335
- msgid "Display upcoming events by:"
1336
  msgstr ""
1337
 
1338
- #: my-calendar-widgets.php:110
1339
- msgid "Events (e.g. 2 past, 3 future)"
 
 
1340
  msgstr ""
1341
 
1342
- #: my-calendar-widgets.php:111
1343
- msgid "Dates (e.g. 4 days past, 5 forward)"
1344
  msgstr ""
1345
 
1346
- #: my-calendar-widgets.php:115
1347
- msgid "events into the future;"
1348
  msgstr ""
1349
 
1350
- #: my-calendar-widgets.php:116
1351
- msgid "events from the past"
1352
  msgstr ""
1353
 
1354
- #: my-calendar-widgets.php:120
1355
- msgid "Show this text if there are no events meeting your criteria:"
 
 
1356
  msgstr ""
1357
 
1358
- #: my-calendar-widgets.php:282
1359
- msgid "There are no events currently scheduled."
 
 
1360
  msgstr ""
1361
 
1362
- #: my-calendar-locations.php:27
1363
- msgid "Location added successfully"
 
 
1364
  msgstr ""
1365
 
1366
- #: my-calendar-locations.php:29
1367
- msgid "Location could not be added to database"
1368
  msgstr ""
1369
 
1370
- #: my-calendar-locations.php:35
1371
- msgid "Location deleted successfully"
1372
  msgstr ""
1373
 
1374
- #: my-calendar-locations.php:37
1375
- msgid "Location could not be deleted"
1376
  msgstr ""
1377
 
1378
- #: my-calendar-locations.php:48
1379
- msgid "Location could not be edited."
1380
  msgstr ""
1381
 
1382
- #: my-calendar-locations.php:50
1383
- msgid "Location was not changed."
1384
  msgstr ""
1385
 
1386
- #: my-calendar-locations.php:52
1387
- msgid "Location edited successfully"
1388
  msgstr ""
1389
 
1390
- #: my-calendar-locations.php:64
1391
- msgid "Add New Location"
1392
  msgstr ""
1393
 
1394
- #: my-calendar-locations.php:66
1395
- msgid "Edit Location"
1396
  msgstr ""
1397
 
1398
- #: my-calendar-locations.php:71
1399
- msgid "Location Editor"
1400
  msgstr ""
1401
 
1402
- #: my-calendar-locations.php:120
1403
- msgid ""
1404
- "If you supply GPS coordinates for your location, they will be used in place "
1405
- "of any other address information to pinpoint your location."
1406
  msgstr ""
1407
 
1408
- #: my-calendar-locations.php:127
1409
- msgid "Add Location"
1410
  msgstr ""
1411
 
1412
- #: my-calendar-locations.php:176
1413
- msgid "There are no locations in the database yet!"
1414
  msgstr ""
1415
 
1416
- #: my-calendar-locations.php:180
1417
- msgid ""
1418
- "Please note: editing or deleting locations stored for re-use will have no "
1419
- "effect on any event previously scheduled at that location. The location "
1420
- "database exists purely as a shorthand method to enter frequently used "
1421
- "locations into event records."
1422
  msgstr ""
1423
 
1424
- #: my-calendar-settings.php:82
1425
- msgid "Categories imported successfully."
1426
  msgstr ""
1427
 
1428
- #: my-calendar-settings.php:84
1429
- msgid "Categories not imported."
1430
  msgstr ""
1431
 
1432
- #: my-calendar-settings.php:87
1433
- msgid "Events imported successfully."
1434
  msgstr ""
1435
 
1436
- #: my-calendar-settings.php:89
1437
- msgid "Events not imported."
1438
  msgstr ""
1439
 
1440
- #: my-calendar-settings.php:121
1441
- msgid "Permissions Settings saved"
1442
  msgstr ""
1443
 
1444
- #: my-calendar-settings.php:169
1445
- msgid "Output Settings saved"
1446
  msgstr ""
1447
 
1448
- #: my-calendar-settings.php:187
1449
- msgid "Input Settings saved"
1450
  msgstr ""
1451
 
1452
- #: my-calendar-settings.php:203
1453
- msgid "Custom text settings saved"
1454
  msgstr ""
1455
 
1456
- #: my-calendar-settings.php:216
1457
- msgid "Email notice settings saved"
1458
  msgstr ""
1459
 
1460
- #: my-calendar-settings.php:230
1461
- msgid "User custom settings saved"
1462
  msgstr ""
1463
 
1464
- #: my-calendar-settings.php:255
1465
- msgid "My Calendar Options"
1466
  msgstr ""
1467
 
1468
- #: my-calendar-settings.php:258
1469
- msgid "Calendar Settings"
1470
  msgstr ""
1471
 
1472
- #: my-calendar-settings.php:260
1473
- msgid "Calendar Management Settings"
1474
  msgstr ""
1475
 
1476
- #: my-calendar-settings.php:265
1477
- msgid "Calendar Options: Management"
1478
  msgstr ""
1479
 
1480
- #: my-calendar-settings.php:267
1481
- msgid "Choose the lowest user group that may create events"
1482
  msgstr ""
1483
 
1484
- #: my-calendar-settings.php:268 my-calendar-settings.php:277
1485
- msgid "Subscriber"
1486
  msgstr ""
1487
 
1488
- #: my-calendar-settings.php:269 my-calendar-settings.php:278
1489
- #: my-calendar-settings.php:286
1490
- msgid "Contributor"
 
1491
  msgstr ""
1492
 
1493
- #: my-calendar-settings.php:271 my-calendar-settings.php:280
1494
- #: my-calendar-settings.php:288
1495
- msgid "Editor"
1496
  msgstr ""
1497
 
1498
- #: my-calendar-settings.php:272 my-calendar-settings.php:281
1499
- #: my-calendar-settings.php:289
1500
- msgid "Administrator"
 
 
 
1501
  msgstr ""
1502
 
1503
- #: my-calendar-settings.php:276
1504
- msgid "Choose the lowest user group that may approve events"
1505
  msgstr ""
1506
 
1507
- #: my-calendar-settings.php:282
1508
- msgid "Enable approval options."
1509
  msgstr ""
1510
 
1511
- #: my-calendar-settings.php:285
1512
- msgid "Choose the lowest user group that may edit or delete any event"
1513
  msgstr ""
1514
 
1515
- #: my-calendar-settings.php:291
1516
- msgid ""
1517
- "By default, only administrators may edit or delete any event. Other users "
1518
- "may only edit or delete events which they authored."
1519
  msgstr ""
1520
 
1521
- #: my-calendar-settings.php:295
1522
- msgid "Save Approval Settings"
1523
  msgstr ""
1524
 
1525
- #: my-calendar-settings.php:301
1526
- msgid "Calendar Text Settings"
 
 
 
1527
  msgstr ""
1528
 
1529
- #: my-calendar-settings.php:306
1530
- msgid "Calendar Options: Customize Text"
1531
  msgstr ""
1532
 
1533
- #: my-calendar-settings.php:308
1534
- msgid "Label for events without a specific time"
1535
  msgstr ""
1536
 
1537
- #: my-calendar-settings.php:311
1538
- msgid "Previous events link text"
1539
  msgstr ""
1540
 
1541
- #: my-calendar-settings.php:311
1542
- msgid "Previous Events"
1543
  msgstr ""
1544
 
1545
- #: my-calendar-settings.php:314
1546
- msgid "Next events link text"
1547
  msgstr ""
1548
 
1549
- #: my-calendar-settings.php:314
1550
- msgid "Next Events"
1551
  msgstr ""
1552
 
1553
- #: my-calendar-settings.php:317
1554
- msgid "Text when events are open"
1555
  msgstr ""
1556
 
1557
- #: my-calendar-settings.php:317
1558
- msgid "Registration is open"
1559
  msgstr ""
1560
 
1561
- #: my-calendar-settings.php:320
1562
- msgid "Text when events are closed"
1563
  msgstr ""
1564
 
1565
- #: my-calendar-settings.php:320
1566
- msgid "Registration is closed"
1567
  msgstr ""
1568
 
1569
- #: my-calendar-settings.php:323
1570
- msgid "Additional caption text"
1571
  msgstr ""
1572
 
1573
- #: my-calendar-settings.php:323
1574
  msgid ""
1575
- "The calendar caption is the text containing the displayed month and year in "
1576
- "either list or calendar format. This text will be displayed following that "
1577
- "existing text."
1578
  msgstr ""
1579
 
1580
- #: my-calendar-settings.php:327
1581
- msgid "Save Custom Text Settings"
1582
  msgstr ""
1583
 
1584
- #: my-calendar-settings.php:333
1585
- msgid "Calendar Output Settings"
1586
  msgstr ""
1587
 
1588
- #: my-calendar-settings.php:338
1589
- msgid "Calendar Options: Output"
1590
  msgstr ""
1591
 
1592
- #: my-calendar-settings.php:340
1593
- msgid "Event title template"
1594
  msgstr ""
1595
 
1596
- #: my-calendar-settings.php:342 my-calendar-settings.php:481
1597
- msgid "Shortcode Help"
1598
  msgstr ""
1599
 
1600
- #: my-calendar-settings.php:342 my-calendar-settings.php:481
1601
- msgid "All template shortcodes are available."
1602
  msgstr ""
1603
 
1604
- #: my-calendar-settings.php:345
1605
- msgid "Show Heading for Calendar"
1606
  msgstr ""
1607
 
1608
- #: my-calendar-settings.php:348
1609
- msgid "In list mode, show how many months of events at a time:"
1610
  msgstr ""
1611
 
1612
- #: my-calendar-settings.php:351
1613
- msgid "Date format in list mode"
1614
  msgstr ""
1615
 
1616
- #: my-calendar-settings.php:352
1617
- msgid ""
1618
- "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
1619
- "<code>date()</code> function</a>. Save options to update sample output."
1620
  msgstr ""
1621
 
1622
- #: my-calendar-settings.php:355
1623
- msgid "Do you want to display the author name on events?"
1624
  msgstr ""
1625
 
1626
- #: my-calendar-settings.php:358
1627
- msgid "Display a jumpbox for changing month and year quickly?"
1628
  msgstr ""
1629
 
1630
- #: my-calendar-settings.php:361
1631
- msgid "Hide category icons in output"
1632
  msgstr ""
1633
 
1634
- #: my-calendar-settings.php:364
1635
- msgid ""
1636
- "Show Link to Google Map (when sufficient address information is available.)"
1637
  msgstr ""
1638
 
1639
- #: my-calendar-settings.php:367
1640
- msgid "Show Event Address in Details"
1641
  msgstr ""
1642
 
1643
- #: my-calendar-settings.php:370
1644
- msgid "Show short description field on calendar."
1645
  msgstr ""
1646
 
1647
- #: my-calendar-settings.php:373
1648
- msgid "Show full description field on calendar."
1649
  msgstr ""
1650
 
1651
- #: my-calendar-settings.php:376
1652
- msgid ""
1653
- "Links associated with events will automatically expire after the event has "
1654
- "passed."
1655
  msgstr ""
1656
 
1657
- #: my-calendar-settings.php:379
1658
- msgid "Show current availability status of events."
1659
  msgstr ""
1660
 
1661
- #: my-calendar-settings.php:382
1662
- msgid "Show link to My Calendar RSS feed."
1663
  msgstr ""
1664
 
1665
- #: my-calendar-settings.php:385
1666
- msgid "Show link to iCal format download."
1667
  msgstr ""
1668
 
1669
- #: my-calendar-settings.php:388
1670
- msgid ""
1671
- "If a recurring event is scheduled for a date which doesn't exist (such as "
1672
- "the 5th Wednesday in February), move it back one week."
1673
  msgstr ""
1674
 
1675
- #: my-calendar-settings.php:389
1676
- msgid ""
1677
- "If this option is unchecked, recurring events which fall on dates which "
1678
- "don't exist will simply not be shown on the calendar."
1679
  msgstr ""
1680
 
1681
- #: my-calendar-settings.php:392
1682
- msgid ""
1683
- "If an event coincides with an event in the designated \"Holiday\" category, "
1684
- "do not show the event."
1685
  msgstr ""
1686
 
1687
- #: my-calendar-settings.php:395
1688
- msgid "Holiday Category"
1689
  msgstr ""
1690
 
1691
- #: my-calendar-settings.php:413
1692
- msgid "Calendar Options: Style"
1693
  msgstr ""
1694
 
1695
- #: my-calendar-settings.php:415
1696
- msgid "Default usage of category colors."
1697
  msgstr ""
1698
 
1699
- #: my-calendar-settings.php:416
1700
- msgid "Apply category colors to event titles as a font color."
1701
  msgstr ""
1702
 
1703
- #: my-calendar-settings.php:417
1704
- msgid "Apply category colors to event titles as a background color."
1705
  msgstr ""
1706
 
1707
- #: my-calendar-settings.php:421
1708
- msgid "Save Output Settings"
1709
  msgstr ""
1710
 
1711
- #: my-calendar-settings.php:427
1712
- msgid "Calendar Input Settings"
1713
  msgstr ""
1714
 
1715
- #: my-calendar-settings.php:432
1716
- msgid "Calendar Options: Input"
1717
  msgstr ""
1718
 
1719
- #: my-calendar-settings.php:437
1720
- msgid "Show Event Location Dropdown Menu"
1721
  msgstr ""
1722
 
1723
- #: my-calendar-settings.php:437
1724
- msgid "Show Event Short Description field"
1725
  msgstr ""
1726
 
1727
- #: my-calendar-settings.php:437
1728
- msgid "Show Event Description Field"
1729
  msgstr ""
1730
 
1731
- #: my-calendar-settings.php:437
1732
- msgid "Show Event Category field"
1733
  msgstr ""
1734
 
1735
- #: my-calendar-settings.php:437
1736
- msgid "Show Event Link field"
1737
  msgstr ""
1738
 
1739
- #: my-calendar-settings.php:437
1740
- msgid "Show Event Recurrence Options"
1741
  msgstr ""
1742
 
1743
- #: my-calendar-settings.php:437
1744
- msgid "Show event registration options"
1745
  msgstr ""
1746
 
1747
- #: my-calendar-settings.php:437
1748
- msgid "Show event location fields"
1749
  msgstr ""
1750
 
1751
- #: my-calendar-settings.php:450
1752
- msgid "Administrators see all input options"
1753
  msgstr ""
1754
 
1755
- #: my-calendar-settings.php:454
1756
- msgid "Save Input Settings"
1757
  msgstr ""
1758
 
1759
- #: my-calendar-settings.php:460
1760
- msgid "Calendar Email Settings"
1761
  msgstr ""
1762
 
1763
- #: my-calendar-settings.php:465
1764
- msgid "Calendar Options: Email Notifications"
1765
  msgstr ""
1766
 
1767
- #: my-calendar-settings.php:469
1768
- msgid "Send Email Notifications when new events are scheduled or reserved."
1769
  msgstr ""
1770
 
1771
- #: my-calendar-settings.php:472
1772
- msgid "Notification messages are sent to: "
1773
  msgstr ""
1774
 
1775
- #: my-calendar-settings.php:476
1776
- msgid "Email subject"
1777
  msgstr ""
1778
 
1779
- #: my-calendar-settings.php:476
1780
- msgid "New event Added"
1781
  msgstr ""
1782
 
1783
- #: my-calendar-settings.php:480
1784
- msgid "Message Body"
 
 
1785
  msgstr ""
1786
 
1787
- #: my-calendar-settings.php:480
1788
- msgid "New Event:"
1789
  msgstr ""
1790
 
1791
- #: my-calendar-settings.php:485
1792
- msgid "Save Email Settings"
1793
  msgstr ""
1794
 
1795
- #: my-calendar-settings.php:491
1796
- msgid "Calendar User Settings"
1797
  msgstr ""
1798
 
1799
- #: my-calendar-settings.php:498
1800
- msgid "My Calendar: User Settings"
1801
  msgstr ""
1802
 
1803
- #: my-calendar-settings.php:501
1804
- msgid ""
1805
- "Allow registered users to provide timezone or location presets in their user "
1806
- "profiles."
1807
  msgstr ""
1808
 
1809
- #: my-calendar-settings.php:513
1810
- msgid "Timezone Settings"
1811
  msgstr ""
1812
 
1813
- #: my-calendar-settings.php:514
1814
  msgid ""
1815
- "These settings provide registered users with the ability to select a time "
1816
- "zone in their user profile. When they view your calendar, the times for "
1817
- "events will display the time the event happens in their time zone as well as "
1818
- "the entered value."
1819
- msgstr ""
1820
-
1821
- #: my-calendar-settings.php:516
1822
- msgid "Enable Timezone"
1823
  msgstr ""
1824
 
1825
- #: my-calendar-settings.php:519
1826
- msgid "Select Timezone Label"
1827
  msgstr ""
1828
 
1829
- #: my-calendar-settings.php:522
1830
- msgid "Timezone Options"
1831
  msgstr ""
1832
 
1833
- #: my-calendar-settings.php:522 my-calendar-settings.php:543
1834
- msgid "Value, Label; one per line"
1835
  msgstr ""
1836
 
1837
- #: my-calendar-settings.php:534
1838
- msgid "Location Settings"
1839
  msgstr ""
1840
 
1841
- #: my-calendar-settings.php:535
1842
- msgid ""
1843
- "These settings provide registered users with the ability to select a "
1844
- "location in their user profile. When they view your calendar, their initial "
1845
- "view will be limited to locations which include that location parameter."
1846
  msgstr ""
1847
 
1848
- #: my-calendar-settings.php:537
1849
- msgid "Enable Location"
1850
  msgstr ""
1851
 
1852
- #: my-calendar-settings.php:540
1853
- msgid "Select Location Label"
1854
  msgstr ""
1855
 
1856
- #: my-calendar-settings.php:543
1857
- msgid "Location Options"
1858
  msgstr ""
1859
 
1860
- #: my-calendar-settings.php:553
1861
- msgid "Location Type"
 
 
1862
  msgstr ""
1863
 
1864
- #: my-calendar-settings.php:555
1865
- msgid "Location Name"
1866
  msgstr ""
1867
 
1868
- #: my-calendar-settings.php:567
1869
- msgid "Save User Settings"
1870
  msgstr ""
1871
 
1872
  #. Plugin URI of the plugin/theme
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: My Calendar 1.7.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
7
+ "POT-Creation-Date: 2011-03-04 01:12:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: my-calendar.php:104 my-calendar.php:240
16
+ msgid "Settings"
17
  msgstr ""
18
 
19
+ #: my-calendar.php:105 my-calendar.php:243
20
+ msgid "Help"
21
  msgstr ""
22
 
23
+ #: my-calendar.php:135
24
+ msgid "Buy the Beginner's Guide"
25
  msgstr ""
26
 
27
+ #: my-calendar.php:136
28
+ msgid "Get Support"
29
  msgstr ""
30
 
31
+ #: my-calendar.php:137 my-calendar.php:243
32
+ msgid "My Calendar Help"
33
  msgstr ""
34
 
35
+ #: my-calendar.php:138
36
+ msgid "Make a Donation"
 
 
37
  msgstr ""
38
 
39
+ #. #-#-#-#-# plugin.pot (My Calendar 1.7.8) #-#-#-#-#
40
+ #. Plugin Name of the plugin/theme
41
+ #: my-calendar.php:231
42
+ msgid "My Calendar"
43
  msgstr ""
44
 
45
+ #: my-calendar.php:234
46
+ msgid "Add/Edit Events"
47
  msgstr ""
48
 
49
+ #: my-calendar.php:238 my-calendar-categories.php:195
50
+ msgid "Manage Categories"
51
  msgstr ""
52
 
53
+ #: my-calendar.php:239 my-calendar-locations.php:142
54
+ msgid "Manage Locations"
55
  msgstr ""
56
 
57
+ #: my-calendar.php:241
58
+ msgid "Style Editor"
59
  msgstr ""
60
 
61
+ #: my-calendar.php:242
62
+ msgid "Behavior Editor"
63
  msgstr ""
64
 
65
+ #: my-calendar-widgets.php:5
66
+ msgid "My Calendar: Today's Events"
67
+ msgstr ""
68
+
69
+ #: my-calendar-widgets.php:14
70
+ msgid "Today's Events"
71
+ msgstr ""
72
+
73
+ #: my-calendar-widgets.php:32 my-calendar-widgets.php:98
74
+ #: my-calendar-event-manager.php:670
75
+ msgid "Title"
76
+ msgstr ""
77
+
78
+ #: my-calendar-widgets.php:36 my-calendar-widgets.php:102
79
+ msgid "Template"
80
+ msgstr ""
81
+
82
+ #: my-calendar-widgets.php:40
83
+ msgid "Show this text if there are no events today:"
84
+ msgstr ""
85
+
86
+ #: my-calendar-widgets.php:44 my-calendar-widgets.php:124
87
+ msgid "Category or categories to display:"
88
+ msgstr ""
89
+
90
+ #: my-calendar-widgets.php:64
91
+ msgid "My Calendar: Upcoming Events"
92
+ msgstr ""
93
+
94
+ #: my-calendar-widgets.php:76
95
+ msgid "Upcoming Events"
96
+ msgstr ""
97
+
98
+ #: my-calendar-widgets.php:106
99
+ msgid "Widget Options"
100
+ msgstr ""
101
+
102
+ #: my-calendar-widgets.php:109
103
+ msgid "Display upcoming events by:"
104
+ msgstr ""
105
+
106
+ #: my-calendar-widgets.php:110
107
+ msgid "Events (e.g. 2 past, 3 future)"
108
+ msgstr ""
109
+
110
+ #: my-calendar-widgets.php:111
111
+ msgid "Dates (e.g. 4 days past, 5 forward)"
112
+ msgstr ""
113
+
114
+ #: my-calendar-widgets.php:115
115
+ msgid "events into the future;"
116
+ msgstr ""
117
+
118
+ #: my-calendar-widgets.php:116
119
+ msgid "events from the past"
120
+ msgstr ""
121
+
122
+ #: my-calendar-widgets.php:120
123
+ msgid "Show this text if there are no events meeting your criteria:"
124
+ msgstr ""
125
+
126
+ #: my-calendar-locations.php:27
127
+ msgid "Location added successfully"
128
+ msgstr ""
129
+
130
+ #: my-calendar-locations.php:29
131
+ msgid "Location could not be added to database"
132
+ msgstr ""
133
+
134
+ #: my-calendar-locations.php:35
135
+ msgid "Location deleted successfully"
136
+ msgstr ""
137
+
138
+ #: my-calendar-locations.php:37
139
+ msgid "Location could not be deleted"
140
+ msgstr ""
141
+
142
+ #: my-calendar-locations.php:48
143
+ msgid "Location could not be edited."
144
+ msgstr ""
145
+
146
+ #: my-calendar-locations.php:50
147
+ msgid "Location was not changed."
148
+ msgstr ""
149
+
150
+ #: my-calendar-locations.php:52
151
+ msgid "Location edited successfully"
152
+ msgstr ""
153
+
154
+ #: my-calendar-locations.php:64
155
+ msgid "Add New Location"
156
+ msgstr ""
157
+
158
+ #: my-calendar-locations.php:66
159
+ msgid "Edit Location"
160
+ msgstr ""
161
+
162
+ #: my-calendar-locations.php:71
163
+ msgid "Location Editor"
164
+ msgstr ""
165
+
166
+ #: my-calendar-locations.php:87 my-calendar-event-manager.php:536
167
+ msgid "Event Location"
168
+ msgstr ""
169
+
170
+ #: my-calendar-locations.php:89 my-calendar-event-manager.php:566
171
  msgid ""
172
+ "All location fields are optional: <em>insufficient information may result in "
173
+ "an inaccurate map</em>."
 
 
174
  msgstr ""
175
 
176
+ #: my-calendar-locations.php:92 my-calendar-event-manager.php:569
177
+ msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
178
  msgstr ""
179
 
180
+ #: my-calendar-locations.php:95 my-calendar-event-manager.php:572
181
+ msgid "Street Address"
182
  msgstr ""
183
 
184
+ #: my-calendar-locations.php:98 my-calendar-event-manager.php:575
185
+ msgid "Street Address (2)"
186
  msgstr ""
187
 
188
+ #: my-calendar-locations.php:101 my-calendar-event-manager.php:578
189
+ #: my-calendar-settings.php:550
190
+ msgid "City"
191
  msgstr ""
192
 
193
+ #: my-calendar-locations.php:101 my-calendar-event-manager.php:578
194
+ #: my-calendar-settings.php:551
195
+ msgid "State/Province"
196
  msgstr ""
197
 
198
+ #: my-calendar-locations.php:101 my-calendar-event-manager.php:578
199
+ #: my-calendar-settings.php:553
200
+ msgid "Postal Code"
 
201
  msgstr ""
202
 
203
+ #: my-calendar-locations.php:104 my-calendar-event-manager.php:581
204
+ #: my-calendar-settings.php:552
205
+ msgid "Country"
206
  msgstr ""
207
 
208
+ #: my-calendar-locations.php:107 my-calendar-event-manager.php:584
209
+ msgid "Initial Zoom"
210
  msgstr ""
211
 
212
+ #: my-calendar-locations.php:109 my-calendar-event-manager.php:586
213
+ msgid "Neighborhood"
214
  msgstr ""
215
 
216
+ #: my-calendar-locations.php:110 my-calendar-event-manager.php:587
217
+ msgid "Small City"
218
  msgstr ""
219
 
220
+ #: my-calendar-locations.php:111 my-calendar-event-manager.php:588
221
+ msgid "Large City"
222
  msgstr ""
223
 
224
+ #: my-calendar-locations.php:112 my-calendar-event-manager.php:589
225
+ msgid "Greater Metro Area"
226
  msgstr ""
227
 
228
+ #: my-calendar-locations.php:113 my-calendar-event-manager.php:590
229
+ msgid "State"
 
 
230
  msgstr ""
231
 
232
+ #: my-calendar-locations.php:114 my-calendar-event-manager.php:591
233
+ msgid "Region"
234
  msgstr ""
235
 
236
+ #: my-calendar-locations.php:118 my-calendar-event-manager.php:595
237
+ msgid "GPS Coordinates (optional)"
238
  msgstr ""
239
 
240
+ #: my-calendar-locations.php:120
241
+ msgid ""
242
+ "If you supply GPS coordinates for your location, they will be used in place "
243
+ "of any other address information to pinpoint your location."
244
  msgstr ""
245
 
246
+ #: my-calendar-locations.php:123 my-calendar-event-manager.php:600
247
+ msgid "Latitude"
248
  msgstr ""
249
 
250
+ #: my-calendar-locations.php:124 my-calendar-event-manager.php:600
251
+ msgid "Longitude"
252
  msgstr ""
253
 
254
+ #: my-calendar-locations.php:128 my-calendar-categories.php:182
255
+ msgid "Save Changes"
256
+ msgstr ""
257
+
258
+ #: my-calendar-locations.php:128
259
+ msgid "Add Location"
260
+ msgstr ""
261
+
262
+ #: my-calendar-locations.php:154 my-calendar-event-manager.php:669
263
+ #: my-calendar-categories.php:207
264
+ msgid "ID"
265
+ msgstr ""
266
+
267
+ #: my-calendar-locations.php:155 my-calendar-event-manager.php:671
268
+ msgid "Location"
269
+ msgstr ""
270
+
271
+ #: my-calendar-locations.php:156 my-calendar-locations.php:168
272
+ #: my-calendar-event-manager.php:732 my-calendar-categories.php:211
273
+ #: my-calendar-categories.php:225
274
+ msgid "Edit"
275
+ msgstr ""
276
+
277
+ #: my-calendar-locations.php:157 my-calendar-locations.php:169
278
+ #: my-calendar-event-manager.php:104 my-calendar-event-manager.php:732
279
+ #: my-calendar-categories.php:212 my-calendar-categories.php:231
280
+ msgid "Delete"
281
+ msgstr ""
282
+
283
+ #: my-calendar-locations.php:169 my-calendar-categories.php:231
284
+ msgid "Are you sure you want to delete this category?"
285
+ msgstr ""
286
+
287
+ #: my-calendar-locations.php:177
288
+ msgid "There are no locations in the database yet!"
289
+ msgstr ""
290
+
291
+ #: my-calendar-locations.php:181
292
+ msgid ""
293
+ "Please note: editing or deleting locations stored for re-use will have no "
294
+ "effect on any event previously scheduled at that location. The location "
295
+ "database exists purely as a shorthand method to enter frequently used "
296
+ "locations into event records."
297
  msgstr ""
298
 
299
  #: my-calendar-event-manager.php:28 my-calendar-settings.php:577
319
  msgid "%1$d events deleted successfully out of %2$d selected"
320
  msgstr ""
321
 
322
+ #: my-calendar-event-manager.php:87 my-calendar-event-manager.php:240
323
  #: my-calendar-event-manager.php:263 my-calendar-event-manager.php:277
324
+ #: my-calendar-event-manager.php:286 my-calendar-event-manager.php:872
325
+ #: my-calendar-event-manager.php:875 my-calendar-event-manager.php:878
326
+ #: my-calendar-event-manager.php:888 my-calendar-event-manager.php:896
327
+ #: my-calendar-event-manager.php:912 my-calendar-event-manager.php:918
328
  msgid "Error"
329
  msgstr ""
330
 
340
  msgid "Are you sure you want to delete this event?"
341
  msgstr ""
342
 
 
 
 
 
 
 
343
  #: my-calendar-event-manager.php:112
344
  msgid "You do not have permission to delete that event."
345
  msgstr ""
352
  msgid "You do not have permission to reject that event."
353
  msgstr ""
354
 
355
+ #: my-calendar-event-manager.php:169 my-calendar-event-manager.php:326
356
  msgid "Edit Event"
357
  msgstr ""
358
 
359
+ #: my-calendar-event-manager.php:173 my-calendar-event-manager.php:182
360
  msgid "You must provide an event id in order to edit it"
361
  msgstr ""
362
 
363
+ #: my-calendar-event-manager.php:178 my-calendar-event-manager.php:326
364
  msgid "Copy Event"
365
  msgstr ""
366
 
367
+ #: my-calendar-event-manager.php:188
368
  msgid "Add Event"
369
  msgstr ""
370
 
371
+ #: my-calendar-event-manager.php:192
372
  msgid "Manage Events"
373
  msgstr ""
374
 
375
+ #: my-calendar-event-manager.php:240
376
  msgid "I'm sorry! I couldn't add that event to the database."
377
  msgstr ""
378
 
379
+ #: my-calendar-event-manager.php:246
380
  msgid "Event added. It will now show in your calendar."
381
  msgstr ""
382
 
438
  msgid "Event Title"
439
  msgstr ""
440
 
441
+ #: my-calendar-event-manager.php:364 my-calendar-event-manager.php:455
442
  msgid "(required)"
443
  msgstr ""
444
 
492
  "event."
493
  msgstr ""
494
 
495
+ #: my-calendar-event-manager.php:455
496
  msgid "Start Date (YYYY-MM-DD)"
497
  msgstr ""
498
 
499
+ #: my-calendar-event-manager.php:455
500
  msgid "Time (hh:mm)"
501
  msgstr ""
502
 
503
+ #: my-calendar-event-manager.php:464
504
  msgid "End Date (YYYY-MM-DD)"
505
  msgstr ""
506
 
507
+ #: my-calendar-event-manager.php:464
508
  msgid "End Time (hh:mm)"
509
  msgstr ""
510
 
511
+ #: my-calendar-event-manager.php:472
512
  msgid "Current time difference from GMT is "
513
  msgstr ""
514
 
515
+ #: my-calendar-event-manager.php:472
516
  msgid " hour(s)"
517
  msgstr ""
518
 
519
+ #: my-calendar-event-manager.php:481
520
  msgid "Recurring Events"
521
  msgstr ""
522
 
523
+ #: my-calendar-event-manager.php:484
524
  msgid "Repeats for"
525
  msgstr ""
526
 
527
+ #: my-calendar-event-manager.php:485
528
  msgid "Units"
529
  msgstr ""
530
 
531
+ #: my-calendar-event-manager.php:486
532
  msgid "Does not recur"
533
  msgstr ""
534
 
535
+ #: my-calendar-event-manager.php:487 my-calendar-event-manager.php:706
536
  msgid "Daily"
537
  msgstr ""
538
 
539
+ #: my-calendar-event-manager.php:488 my-calendar-event-manager.php:707
540
  msgid "Weekly"
541
  msgstr ""
542
 
543
+ #: my-calendar-event-manager.php:489
544
  msgid "Bi-weekly"
545
  msgstr ""
546
 
547
+ #: my-calendar-event-manager.php:490
548
  msgid "Date of Month (e.g., the 24th of each month)"
549
  msgstr ""
550
 
551
+ #: my-calendar-event-manager.php:491
552
  msgid "Day of Month (e.g., the 3rd Monday of each month)"
553
  msgstr ""
554
 
555
+ #: my-calendar-event-manager.php:492
556
  msgid "Annually"
557
  msgstr ""
558
 
559
+ #: my-calendar-event-manager.php:494
560
+ msgid ""
561
+ "Enter \"0\" if the event should recur indefinitely. Your entry is the number "
562
+ "of events after the first occurrence of the event: a recurrence of <em>2</"
563
+ "em> means the event will happen three times."
564
  msgstr ""
565
 
566
+ #: my-calendar-event-manager.php:511
567
  msgid "Event Registration Status"
568
  msgstr ""
569
 
570
+ #: my-calendar-event-manager.php:512
571
  msgid ""
572
  "My Calendar does not manage event registrations. Use this for information "
573
  "only."
574
  msgstr ""
575
 
576
+ #: my-calendar-event-manager.php:514
577
  msgid "Open"
578
  msgstr ""
579
 
580
+ #: my-calendar-event-manager.php:515
581
  msgid "Closed"
582
  msgstr ""
583
 
584
+ #: my-calendar-event-manager.php:516
585
  msgid "Does not apply"
586
  msgstr ""
587
 
588
+ #: my-calendar-event-manager.php:519
589
  msgid ""
590
  "If this event recurs, it can only be registered for as a complete series."
591
  msgstr ""
592
 
593
+ #: my-calendar-event-manager.php:543
 
 
 
 
594
  msgid "Choose a preset location:"
595
  msgstr ""
596
 
598
  msgid "Add recurring locations for later use."
599
  msgstr ""
600
 
601
+ #: my-calendar-event-manager.php:597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
  msgid ""
603
  "If you supply GPS coordinates for your location, they will be used in place "
604
  "of any other address information to provide your map link."
605
  msgstr ""
606
 
 
 
 
 
 
 
 
 
607
  #: my-calendar-event-manager.php:666
608
  msgid "Table of Calendar Events"
609
  msgstr ""
610
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
611
  #: my-calendar-event-manager.php:672
612
  msgid "Description"
613
  msgstr ""
620
  msgid "Recurs"
621
  msgstr ""
622
 
623
+ #: my-calendar-event-manager.php:675 my-calendar-settings.php:264
624
+ #: my-calendar-settings.php:273 my-calendar-settings.php:281
625
  msgid "Author"
626
  msgstr ""
627
 
654
  msgstr ""
655
 
656
  #: my-calendar-event-manager.php:713 my-calendar-categories.php:228
657
+ #: my-calendar-settings.php:302 my-calendar-output.php:148
658
  msgid "N/A"
659
  msgstr ""
660
 
670
  msgid "Copy"
671
  msgstr ""
672
 
 
 
 
 
 
 
673
  #: my-calendar-event-manager.php:733
674
  msgid "Not editable."
675
  msgstr ""
694
  msgid "Awaiting Approval"
695
  msgstr ""
696
 
697
+ #: my-calendar-event-manager.php:767
698
  msgid "There are no events in the database!"
699
  msgstr ""
700
 
701
+ #: my-calendar-event-manager.php:872
702
  msgid ""
703
  "Your event end date must be either after or the same as your event begin date"
704
  msgstr ""
705
 
706
+ #: my-calendar-event-manager.php:875
707
  msgid ""
708
  "Your date formatting is correct but one or more of your dates is invalid. "
709
  "Check for number of days in month and leap year related errors."
710
  msgstr ""
711
 
712
+ #: my-calendar-event-manager.php:878
713
  msgid "Both start and end dates must be in the format YYYY-MM-DD"
714
  msgstr ""
715
 
716
+ #: my-calendar-event-manager.php:888
717
  msgid "The time field must either be blank or be entered in the format hh:mm"
718
  msgstr ""
719
 
720
+ #: my-calendar-event-manager.php:896
721
  msgid ""
722
  "The end time field must either be blank or be entered in the format hh:mm"
723
  msgstr ""
724
 
725
+ #: my-calendar-event-manager.php:912
726
  msgid "The event title must be between 1 and 255 characters in length."
727
  msgstr ""
728
 
729
+ #: my-calendar-event-manager.php:918
730
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
731
  msgstr ""
732
 
733
+ #: my-calendar-templates.php:164
734
+ msgid "Published"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
735
  msgstr ""
736
 
737
+ #: my-calendar-templates.php:164
738
+ msgid "Reserved"
739
  msgstr ""
740
 
741
  #: my-calendar-categories.php:90
787
  msgid "Category Icon"
788
  msgstr ""
789
 
 
 
 
 
790
  #: my-calendar-categories.php:209
791
  msgid "Category Color"
792
  msgstr ""
793
 
 
 
 
 
794
  #: my-calendar-categories.php:242
795
  msgid "There are no categories in the database - something has gone wrong!"
796
  msgstr ""
797
 
798
+ #: my-calendar-behaviors.php:42
 
 
 
 
 
 
 
 
799
  msgid "Behavior Settings saved"
800
  msgstr ""
801
 
802
+ #: my-calendar-behaviors.php:65
803
  msgid "My Calendar Behaviors"
804
  msgstr ""
805
 
806
+ #: my-calendar-behaviors.php:69
807
  msgid "Calendar Behavior Settings"
808
  msgstr ""
809
 
810
+ #: my-calendar-behaviors.php:74
811
  msgid "Apply JavaScript only on these pages (comma separated page IDs)"
812
  msgstr ""
813
 
814
+ #: my-calendar-behaviors.php:77
815
  msgid "Calendar Behaviors: Calendar View"
816
  msgstr ""
817
 
818
+ #: my-calendar-behaviors.php:79
819
  msgid "Reset the My Calendar Calendar Javascript"
820
  msgstr ""
821
 
822
+ #: my-calendar-behaviors.php:79
823
  msgid "Disable Calendar Javascript Effects"
824
  msgstr ""
825
 
826
+ #: my-calendar-behaviors.php:82
827
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
828
  msgstr ""
829
 
830
+ #: my-calendar-behaviors.php:85 my-calendar-behaviors.php:97
831
+ #: my-calendar-behaviors.php:109 my-calendar-behaviors.php:121
832
+ #: my-calendar-styles.php:169
833
+ msgid "Save"
834
  msgstr ""
835
 
836
  #: my-calendar-behaviors.php:89
837
+ msgid "Calendar Behaviors: List View"
838
+ msgstr ""
839
+
840
+ #: my-calendar-behaviors.php:91
841
  msgid "Reset the My Calendar List Javascript"
842
  msgstr ""
843
 
844
+ #: my-calendar-behaviors.php:91
845
  msgid "Disable List Javascript Effects"
846
  msgstr ""
847
 
848
+ #: my-calendar-behaviors.php:94
849
  msgid "Edit the jQuery scripts for My Calendar in List format"
850
  msgstr ""
851
 
852
+ #: my-calendar-behaviors.php:101
853
  msgid "Calendar Behaviors: Mini Calendar View"
854
  msgstr ""
855
 
856
+ #: my-calendar-behaviors.php:103
857
  msgid "Reset the My Calendar Mini Format Javascript"
858
  msgstr ""
859
 
860
+ #: my-calendar-behaviors.php:103
861
  msgid "Disable Mini Javascript Effects"
862
  msgstr ""
863
 
864
+ #: my-calendar-behaviors.php:106
865
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
866
  msgstr ""
867
 
868
+ #: my-calendar-behaviors.php:113
869
  msgid "Calendar Behaviors: AJAX Navigation"
870
  msgstr ""
871
 
872
+ #: my-calendar-behaviors.php:115
873
  msgid "Reset the My Calendar AJAX Javascript"
874
  msgstr ""
875
 
876
+ #: my-calendar-behaviors.php:115
877
  msgid "Disable AJAX Effects"
878
  msgstr ""
879
 
880
+ #: my-calendar-behaviors.php:118
881
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
882
  msgstr ""
883
 
 
 
 
 
 
 
 
 
884
  #: my-calendar-help.php:7
885
  msgid "How to use My Calendar"
886
  msgstr ""
1126
  msgid "Produces the hex code for the current event's category color."
1127
  msgstr ""
1128
 
1129
+ #: my-calendar-settings.php:76
1130
+ msgid "Categories imported successfully."
1131
  msgstr ""
1132
 
1133
+ #: my-calendar-settings.php:78
1134
+ msgid "Categories not imported."
1135
  msgstr ""
1136
 
1137
+ #: my-calendar-settings.php:81
1138
+ msgid "Events imported successfully."
1139
  msgstr ""
1140
 
1141
+ #: my-calendar-settings.php:83
1142
+ msgid "Events not imported."
1143
  msgstr ""
1144
 
1145
+ #: my-calendar-settings.php:115
1146
+ msgid "Permissions Settings saved"
1147
  msgstr ""
1148
 
1149
+ #: my-calendar-settings.php:163
1150
+ msgid "Output Settings saved"
 
 
1151
  msgstr ""
1152
 
1153
+ #: my-calendar-settings.php:181
1154
+ msgid "Input Settings saved"
1155
  msgstr ""
1156
 
1157
+ #: my-calendar-settings.php:197
1158
+ msgid "Custom text settings saved"
1159
  msgstr ""
1160
 
1161
+ #: my-calendar-settings.php:210
1162
+ msgid "Email notice settings saved"
1163
  msgstr ""
1164
 
1165
+ #: my-calendar-settings.php:224
1166
+ msgid "User custom settings saved"
1167
  msgstr ""
1168
 
1169
+ #: my-calendar-settings.php:249
1170
+ msgid "My Calendar Options"
1171
  msgstr ""
1172
 
1173
+ #: my-calendar-settings.php:252
1174
+ msgid "Calendar Settings"
1175
  msgstr ""
1176
 
1177
+ #: my-calendar-settings.php:254
1178
+ msgid "Calendar Management Settings"
1179
  msgstr ""
1180
 
1181
+ #: my-calendar-settings.php:259
1182
+ msgid "Calendar Options: Management"
1183
  msgstr ""
1184
 
1185
+ #: my-calendar-settings.php:261
1186
+ msgid "Choose the lowest user group that may create events"
1187
  msgstr ""
1188
 
1189
+ #: my-calendar-settings.php:262 my-calendar-settings.php:271
1190
+ msgid "Subscriber"
1191
  msgstr ""
1192
 
1193
+ #: my-calendar-settings.php:263 my-calendar-settings.php:272
1194
+ #: my-calendar-settings.php:280
1195
+ msgid "Contributor"
1196
  msgstr ""
1197
 
1198
+ #: my-calendar-settings.php:265 my-calendar-settings.php:274
1199
+ #: my-calendar-settings.php:282
1200
+ msgid "Editor"
1201
  msgstr ""
1202
 
1203
+ #: my-calendar-settings.php:266 my-calendar-settings.php:275
1204
+ #: my-calendar-settings.php:283
1205
+ msgid "Administrator"
1206
  msgstr ""
1207
 
1208
+ #: my-calendar-settings.php:270
1209
+ msgid "Choose the lowest user group that may approve events"
1210
  msgstr ""
1211
 
1212
+ #: my-calendar-settings.php:276
1213
+ msgid "Enable approval options."
1214
  msgstr ""
1215
 
1216
+ #: my-calendar-settings.php:279
1217
+ msgid "Choose the lowest user group that may edit or delete any event"
1218
  msgstr ""
1219
 
1220
+ #: my-calendar-settings.php:285
1221
+ msgid ""
1222
+ "By default, only administrators may edit or delete any event. Other users "
1223
+ "may only edit or delete events which they authored."
1224
  msgstr ""
1225
 
1226
+ #: my-calendar-settings.php:289
1227
+ msgid "Save Approval Settings"
1228
  msgstr ""
1229
 
1230
+ #: my-calendar-settings.php:295
1231
+ msgid "Calendar Text Settings"
1232
  msgstr ""
1233
 
1234
+ #: my-calendar-settings.php:300
1235
+ msgid "Calendar Options: Customize Text"
1236
  msgstr ""
1237
 
1238
+ #: my-calendar-settings.php:302
1239
+ msgid "Label for events without a specific time"
1240
  msgstr ""
1241
 
1242
+ #: my-calendar-settings.php:305
1243
+ msgid "Previous events link text"
1244
  msgstr ""
1245
 
1246
+ #: my-calendar-settings.php:305
1247
+ msgid "Previous Events"
1248
  msgstr ""
1249
 
1250
+ #: my-calendar-settings.php:308
1251
+ msgid "Next events link text"
1252
  msgstr ""
1253
 
1254
+ #: my-calendar-settings.php:308
1255
+ msgid "Next Events"
1256
  msgstr ""
1257
 
1258
+ #: my-calendar-settings.php:311
1259
+ msgid "Text when events are open"
1260
  msgstr ""
1261
 
1262
+ #: my-calendar-settings.php:311
1263
+ msgid "Registration is open"
1264
  msgstr ""
1265
 
1266
+ #: my-calendar-settings.php:314
1267
+ msgid "Text when events are closed"
1268
  msgstr ""
1269
 
1270
+ #: my-calendar-settings.php:314
1271
+ msgid "Registration is closed"
1272
  msgstr ""
1273
 
1274
+ #: my-calendar-settings.php:317
1275
+ msgid "Additional caption text"
1276
  msgstr ""
1277
 
1278
+ #: my-calendar-settings.php:317
1279
+ msgid ""
1280
+ "The calendar caption is the text containing the displayed month and year in "
1281
+ "either list or calendar format. This text will be displayed following that "
1282
+ "existing text."
1283
  msgstr ""
1284
 
1285
+ #: my-calendar-settings.php:321
1286
+ msgid "Save Custom Text Settings"
1287
  msgstr ""
1288
 
1289
+ #: my-calendar-settings.php:327
1290
+ msgid "Calendar Output Settings"
1291
  msgstr ""
1292
 
1293
+ #: my-calendar-settings.php:332
1294
+ msgid "Calendar Options: Output"
1295
  msgstr ""
1296
 
1297
+ #: my-calendar-settings.php:334
1298
+ msgid "Event title template"
1299
  msgstr ""
1300
 
1301
+ #: my-calendar-settings.php:336 my-calendar-settings.php:475
1302
+ msgid "Shortcode Help"
1303
  msgstr ""
1304
 
1305
+ #: my-calendar-settings.php:336 my-calendar-settings.php:475
1306
+ msgid "All template shortcodes are available."
1307
  msgstr ""
1308
 
1309
+ #: my-calendar-settings.php:339
1310
+ msgid "Show Heading for Calendar"
1311
  msgstr ""
1312
 
1313
+ #: my-calendar-settings.php:342
1314
+ msgid "In list mode, show how many months of events at a time:"
1315
  msgstr ""
1316
 
1317
+ #: my-calendar-settings.php:345
1318
+ msgid "Date format in list mode"
1319
  msgstr ""
1320
 
1321
+ #: my-calendar-settings.php:346
1322
+ msgid ""
1323
+ "Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
1324
+ "<code>date()</code> function</a>. Save options to update sample output."
1325
  msgstr ""
1326
 
1327
+ #: my-calendar-settings.php:349
1328
+ msgid "Do you want to display the author name on events?"
1329
  msgstr ""
1330
 
1331
+ #: my-calendar-settings.php:352
1332
+ msgid "Display a jumpbox for changing month and year quickly?"
1333
  msgstr ""
1334
 
1335
+ #: my-calendar-settings.php:355
1336
+ msgid "Hide category icons in output"
1337
  msgstr ""
1338
 
1339
+ #: my-calendar-settings.php:358
1340
+ msgid ""
1341
+ "Show Link to Google Map (when sufficient address information is available.)"
1342
  msgstr ""
1343
 
1344
+ #: my-calendar-settings.php:361
1345
+ msgid "Show Event Address in Details"
1346
  msgstr ""
1347
 
1348
+ #: my-calendar-settings.php:364
1349
+ msgid "Show short description field on calendar."
1350
  msgstr ""
1351
 
1352
+ #: my-calendar-settings.php:367
1353
+ msgid "Show full description field on calendar."
1354
  msgstr ""
1355
 
1356
+ #: my-calendar-settings.php:370
1357
+ msgid ""
1358
+ "Links associated with events will automatically expire after the event has "
1359
+ "passed."
1360
  msgstr ""
1361
 
1362
+ #: my-calendar-settings.php:373
1363
+ msgid "Show current availability status of events."
1364
  msgstr ""
1365
 
1366
+ #: my-calendar-settings.php:376
1367
+ msgid "Show link to My Calendar RSS feed."
1368
  msgstr ""
1369
 
1370
+ #: my-calendar-settings.php:379
1371
+ msgid "Show link to iCal format download."
1372
  msgstr ""
1373
 
1374
+ #: my-calendar-settings.php:382
1375
+ msgid ""
1376
+ "If a recurring event is scheduled for a date which doesn't exist (such as "
1377
+ "the 5th Wednesday in February), move it back one week."
1378
  msgstr ""
1379
 
1380
+ #: my-calendar-settings.php:383
1381
+ msgid ""
1382
+ "If this option is unchecked, recurring events which fall on dates which "
1383
+ "don't exist will simply not be shown on the calendar."
1384
  msgstr ""
1385
 
1386
+ #: my-calendar-settings.php:386
1387
+ msgid ""
1388
+ "If an event coincides with an event in the designated \"Holiday\" category, "
1389
+ "do not show the event."
1390
  msgstr ""
1391
 
1392
+ #: my-calendar-settings.php:389
1393
+ msgid "Holiday Category"
1394
  msgstr ""
1395
 
1396
+ #: my-calendar-settings.php:407
1397
+ msgid "Calendar Options: Style"
1398
  msgstr ""
1399
 
1400
+ #: my-calendar-settings.php:409
1401
+ msgid "Default usage of category colors."
1402
  msgstr ""
1403
 
1404
+ #: my-calendar-settings.php:410
1405
+ msgid "Apply category colors to event titles as a font color."
1406
  msgstr ""
1407
 
1408
+ #: my-calendar-settings.php:411
1409
+ msgid "Apply category colors to event titles as a background color."
1410
  msgstr ""
1411
 
1412
+ #: my-calendar-settings.php:415
1413
+ msgid "Save Output Settings"
1414
  msgstr ""
1415
 
1416
+ #: my-calendar-settings.php:421
1417
+ msgid "Calendar Input Settings"
1418
  msgstr ""
1419
 
1420
+ #: my-calendar-settings.php:426
1421
+ msgid "Calendar Options: Input"
1422
  msgstr ""
1423
 
1424
+ #: my-calendar-settings.php:431
1425
+ msgid "Show Event Location Dropdown Menu"
1426
  msgstr ""
1427
 
1428
+ #: my-calendar-settings.php:431
1429
+ msgid "Show Event Short Description field"
 
 
1430
  msgstr ""
1431
 
1432
+ #: my-calendar-settings.php:431
1433
+ msgid "Show Event Description Field"
1434
  msgstr ""
1435
 
1436
+ #: my-calendar-settings.php:431
1437
+ msgid "Show Event Category field"
1438
  msgstr ""
1439
 
1440
+ #: my-calendar-settings.php:431
1441
+ msgid "Show Event Link field"
 
 
 
 
1442
  msgstr ""
1443
 
1444
+ #: my-calendar-settings.php:431
1445
+ msgid "Show Event Recurrence Options"
1446
  msgstr ""
1447
 
1448
+ #: my-calendar-settings.php:431
1449
+ msgid "Show event registration options"
1450
  msgstr ""
1451
 
1452
+ #: my-calendar-settings.php:431
1453
+ msgid "Show event location fields"
1454
  msgstr ""
1455
 
1456
+ #: my-calendar-settings.php:444
1457
+ msgid "Administrators see all input options"
1458
  msgstr ""
1459
 
1460
+ #: my-calendar-settings.php:448
1461
+ msgid "Save Input Settings"
1462
  msgstr ""
1463
 
1464
+ #: my-calendar-settings.php:454
1465
+ msgid "Calendar Email Settings"
1466
  msgstr ""
1467
 
1468
+ #: my-calendar-settings.php:459
1469
+ msgid "Calendar Options: Email Notifications"
1470
  msgstr ""
1471
 
1472
+ #: my-calendar-settings.php:463
1473
+ msgid "Send Email Notifications when new events are scheduled or reserved."
1474
  msgstr ""
1475
 
1476
+ #: my-calendar-settings.php:466
1477
+ msgid "Notification messages are sent to: "
1478
  msgstr ""
1479
 
1480
+ #: my-calendar-settings.php:470
1481
+ msgid "Email subject"
1482
  msgstr ""
1483
 
1484
+ #: my-calendar-settings.php:470
1485
+ msgid "New event Added"
1486
  msgstr ""
1487
 
1488
+ #: my-calendar-settings.php:474
1489
+ msgid "Message Body"
1490
  msgstr ""
1491
 
1492
+ #: my-calendar-settings.php:474
1493
+ msgid "New Event:"
1494
  msgstr ""
1495
 
1496
+ #: my-calendar-settings.php:479
1497
+ msgid "Save Email Settings"
1498
  msgstr ""
1499
 
1500
+ #: my-calendar-settings.php:485
1501
+ msgid "Calendar User Settings"
1502
  msgstr ""
1503
 
1504
+ #: my-calendar-settings.php:492
1505
+ msgid "My Calendar: User Settings"
1506
  msgstr ""
1507
 
1508
+ #: my-calendar-settings.php:495
1509
+ msgid ""
1510
+ "Allow registered users to provide timezone or location presets in their user "
1511
+ "profiles."
1512
  msgstr ""
1513
 
1514
+ #: my-calendar-settings.php:507
1515
+ msgid "Timezone Settings"
 
1516
  msgstr ""
1517
 
1518
+ #: my-calendar-settings.php:508
1519
+ msgid ""
1520
+ "These settings provide registered users with the ability to select a time "
1521
+ "zone in their user profile. When they view your calendar, the times for "
1522
+ "events will display the time the event happens in their time zone as well as "
1523
+ "the entered value."
1524
  msgstr ""
1525
 
1526
+ #: my-calendar-settings.php:510
1527
+ msgid "Enable Timezone"
1528
  msgstr ""
1529
 
1530
+ #: my-calendar-settings.php:513
1531
+ msgid "Select Timezone Label"
1532
  msgstr ""
1533
 
1534
+ #: my-calendar-settings.php:516
1535
+ msgid "Timezone Options"
1536
  msgstr ""
1537
 
1538
+ #: my-calendar-settings.php:516 my-calendar-settings.php:537
1539
+ msgid "Value, Label; one per line"
 
 
1540
  msgstr ""
1541
 
1542
+ #: my-calendar-settings.php:528
1543
+ msgid "Location Settings"
1544
  msgstr ""
1545
 
1546
+ #: my-calendar-settings.php:529
1547
+ msgid ""
1548
+ "These settings provide registered users with the ability to select a "
1549
+ "location in their user profile. When they view your calendar, their initial "
1550
+ "view will be limited to locations which include that location parameter."
1551
  msgstr ""
1552
 
1553
+ #: my-calendar-settings.php:531
1554
+ msgid "Enable Location"
1555
  msgstr ""
1556
 
1557
+ #: my-calendar-settings.php:534
1558
+ msgid "Select Location Label"
1559
  msgstr ""
1560
 
1561
+ #: my-calendar-settings.php:537
1562
+ msgid "Location Options"
1563
  msgstr ""
1564
 
1565
+ #: my-calendar-settings.php:547
1566
+ msgid "Location Type"
1567
  msgstr ""
1568
 
1569
+ #: my-calendar-settings.php:549
1570
+ msgid "Location Name"
1571
  msgstr ""
1572
 
1573
+ #: my-calendar-settings.php:561
1574
+ msgid "Save User Settings"
1575
  msgstr ""
1576
 
1577
+ #: my-calendar-output.php:126
1578
+ msgid "Event Details"
1579
  msgstr ""
1580
 
1581
+ #: my-calendar-output.php:134
1582
+ msgid "Close"
1583
  msgstr ""
1584
 
1585
+ #: my-calendar-output.php:143
1586
+ msgid "in your time zone"
1587
  msgstr ""
1588
 
1589
+ #: my-calendar-output.php:148
1590
+ msgid "Not Applicable"
1591
  msgstr ""
1592
 
1593
+ #: my-calendar-output.php:160
1594
+ msgid "Posted by"
1595
  msgstr ""
1596
 
1597
+ #: my-calendar-output.php:210
1598
  msgid ""
1599
+ "This class is part of a series. You must register for the first event in "
1600
+ "this series to attend."
 
1601
  msgstr ""
1602
 
1603
+ #: my-calendar-output.php:242
1604
+ msgid "Month"
1605
  msgstr ""
1606
 
1607
+ #: my-calendar-output.php:243 my-calendar-output.php:320
1608
+ msgid "January"
1609
  msgstr ""
1610
 
1611
+ #: my-calendar-output.php:244 my-calendar-output.php:320
1612
+ msgid "February"
1613
  msgstr ""
1614
 
1615
+ #: my-calendar-output.php:245 my-calendar-output.php:320
1616
+ msgid "March"
1617
  msgstr ""
1618
 
1619
+ #: my-calendar-output.php:246 my-calendar-output.php:320
1620
+ msgid "April"
1621
  msgstr ""
1622
 
1623
+ #: my-calendar-output.php:247 my-calendar-output.php:320
1624
+ msgid "May"
1625
  msgstr ""
1626
 
1627
+ #: my-calendar-output.php:248 my-calendar-output.php:320
1628
+ msgid "June"
1629
  msgstr ""
1630
 
1631
+ #: my-calendar-output.php:249 my-calendar-output.php:320
1632
+ msgid "July"
1633
  msgstr ""
1634
 
1635
+ #: my-calendar-output.php:250 my-calendar-output.php:320
1636
+ msgid "August"
1637
  msgstr ""
1638
 
1639
+ #: my-calendar-output.php:251 my-calendar-output.php:320
1640
+ msgid "September"
 
 
1641
  msgstr ""
1642
 
1643
+ #: my-calendar-output.php:252 my-calendar-output.php:320
1644
+ msgid "October"
1645
  msgstr ""
1646
 
1647
+ #: my-calendar-output.php:253 my-calendar-output.php:320
1648
+ msgid "November"
1649
  msgstr ""
1650
 
1651
+ #: my-calendar-output.php:254 my-calendar-output.php:320
1652
+ msgid "December"
1653
  msgstr ""
1654
 
1655
+ #: my-calendar-output.php:256
1656
+ msgid "Year"
 
1657
  msgstr ""
1658
 
1659
+ #: my-calendar-output.php:278
1660
+ msgid "Go"
1661
  msgstr ""
1662
 
1663
+ #: my-calendar-output.php:294
1664
+ msgid "<abbr title=\"Sunday\">Sun</abbr>"
1665
  msgstr ""
1666
 
1667
+ #: my-calendar-output.php:295
1668
+ msgid "<abbr title=\"Monday\">Mon</abbr>"
1669
  msgstr ""
1670
 
1671
+ #: my-calendar-output.php:296
1672
+ msgid "<abbr title=\"Tuesday\">Tues</abbr>"
 
 
1673
  msgstr ""
1674
 
1675
+ #: my-calendar-output.php:297
1676
+ msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1677
  msgstr ""
1678
 
1679
+ #: my-calendar-output.php:298
1680
+ msgid "<abbr title=\"Thursday\">Thur</abbr>"
1681
  msgstr ""
1682
 
1683
+ #: my-calendar-output.php:299
1684
+ msgid "<abbr title=\"Friday\">Fri</abbr>"
1685
  msgstr ""
1686
 
1687
+ #: my-calendar-output.php:300
1688
+ msgid "<abbr title=\"Saturday\">Sat</abbr>"
 
 
1689
  msgstr ""
1690
 
1691
+ #: my-calendar-output.php:305
1692
+ msgid "<abbr title=\"Sunday\">S</abbr>"
 
 
1693
  msgstr ""
1694
 
1695
+ #: my-calendar-output.php:306
1696
+ msgid "<abbr title=\"Monday\">M</abbr>"
 
 
1697
  msgstr ""
1698
 
1699
+ #: my-calendar-output.php:307
1700
+ msgid "<abbr title=\"Tuesday\">T</abbr>"
1701
  msgstr ""
1702
 
1703
+ #: my-calendar-output.php:308
1704
+ msgid "<abbr title=\"Wednesday\">W</abbr>"
1705
  msgstr ""
1706
 
1707
+ #: my-calendar-output.php:309
1708
+ msgid "<abbr title=\"Thursday\">T</abbr>"
1709
  msgstr ""
1710
 
1711
+ #: my-calendar-output.php:310
1712
+ msgid "<abbr title=\"Friday\">F</abbr>"
1713
  msgstr ""
1714
 
1715
+ #: my-calendar-output.php:311
1716
+ msgid "<abbr title=\"Saturday\">S</abbr>"
1717
  msgstr ""
1718
 
1719
+ #: my-calendar-output.php:419
1720
+ msgid "and"
1721
  msgstr ""
1722
 
1723
+ #: my-calendar-output.php:438 my-calendar-output.php:443
1724
+ msgid "Calendar"
1725
  msgstr ""
1726
 
1727
+ #: my-calendar-output.php:439
1728
+ msgid "The week's events"
1729
  msgstr ""
1730
 
1731
+ #: my-calendar-output.php:448
1732
+ msgid "Events in"
1733
  msgstr ""
1734
 
1735
+ #: my-calendar-output.php:450
1736
+ msgid "This week's events"
1737
  msgstr ""
1738
 
1739
+ #: my-calendar-output.php:619
1740
+ msgid "There are no events scheduled during this period."
1741
  msgstr ""
1742
 
1743
+ #: my-calendar-output.php:629
1744
+ msgid "Category Key"
1745
  msgstr ""
1746
 
1747
+ #: my-calendar-output.php:664
1748
+ msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
1749
  msgstr ""
1750
 
1751
+ #: my-calendar-output.php:665
1752
+ msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
1753
  msgstr ""
1754
 
1755
+ #: my-calendar-output.php:802
1756
+ msgid "Show all"
1757
  msgstr ""
1758
 
1759
+ #: my-calendar-output.php:816
1760
+ msgid "Show events in:"
1761
  msgstr ""
1762
 
1763
+ #: my-calendar-output.php:848
1764
+ msgid "Submit"
1765
  msgstr ""
1766
 
1767
+ #: my-calendar-install.php:142
1768
+ msgid "My Calendar Default Timezone"
1769
  msgstr ""
1770
 
1771
+ #: my-calendar-install.php:187
1772
+ msgid "My Calendar Default Location"
1773
  msgstr ""
1774
 
1775
+ #: my-calendar-styles.php:51
1776
+ msgid "The stylesheet has been updated."
1777
  msgstr ""
1778
 
1779
+ #: my-calendar-styles.php:51
1780
+ msgid "Write Error! Please verify write permissions on the style file."
1781
  msgstr ""
1782
 
1783
+ #: my-calendar-styles.php:67
1784
+ msgid "Stylesheet reset to default."
1785
  msgstr ""
1786
 
1787
+ #: my-calendar-styles.php:69
1788
+ msgid "Style Settings Saved"
1789
  msgstr ""
1790
 
1791
+ #: my-calendar-styles.php:78
1792
+ msgid "New theme selected."
1793
  msgstr ""
1794
 
1795
+ #: my-calendar-styles.php:92
1796
+ msgid ""
1797
+ "Sorry. The file you are looking for doesn't appear to exist. Please check "
1798
+ "your file name and location!"
1799
  msgstr ""
1800
 
1801
+ #: my-calendar-styles.php:100
1802
+ msgid "My Calendar Styles"
1803
  msgstr ""
1804
 
1805
+ #: my-calendar-styles.php:104
1806
+ msgid "Calendar Style Settings"
1807
  msgstr ""
1808
 
1809
+ #: my-calendar-styles.php:111
1810
+ msgid "Select My Calendar Theme"
1811
  msgstr ""
1812
 
1813
+ #: my-calendar-styles.php:119
1814
+ msgid "Your Custom Stylesheets"
1815
  msgstr ""
1816
 
1817
+ #: my-calendar-styles.php:128
1818
+ msgid "Installed Stylesheets"
 
 
1819
  msgstr ""
1820
 
1821
+ #: my-calendar-styles.php:136
1822
+ msgid "Choose Style"
1823
  msgstr ""
1824
 
1825
+ #: my-calendar-styles.php:149
1826
  msgid ""
1827
+ "My Calendar was unable to update your CSS files during the upgrade. Please "
1828
+ "check your file permissions if you wish to edit your My Calendar styles. "
1829
+ "Your previously stored styles are below. This message and these styles will "
1830
+ "be deleted from the database when you successfully update your stylesheet."
 
 
 
 
1831
  msgstr ""
1832
 
1833
+ #: my-calendar-styles.php:157
1834
+ msgid "CSS Style Options"
1835
  msgstr ""
1836
 
1837
+ #: my-calendar-styles.php:160
1838
+ msgid "Apply CSS only on these pages (comma separated page IDs)"
1839
  msgstr ""
1840
 
1841
+ #: my-calendar-styles.php:163
1842
+ msgid "Reset the My Calendar stylesheet to the default"
1843
  msgstr ""
1844
 
1845
+ #: my-calendar-styles.php:163
1846
+ msgid "Disable My Calendar Stylesheet"
1847
  msgstr ""
1848
 
1849
+ #: my-calendar-styles.php:166
1850
+ msgid "Edit the stylesheet for My Calendar"
 
 
 
1851
  msgstr ""
1852
 
1853
+ #: my-calendar-upgrade-db.php:21 my-calendar-upgrade-db.php:29
1854
+ msgid "The My Calendar database needs to be updated."
1855
  msgstr ""
1856
 
1857
+ #: my-calendar-upgrade-db.php:22 my-calendar-upgrade-db.php:43
1858
+ msgid "Update now"
1859
  msgstr ""
1860
 
1861
+ #: my-calendar-upgrade-db.php:29
1862
+ msgid "Upgrade now."
1863
  msgstr ""
1864
 
1865
+ #: my-calendar-upgrade-db.php:42
1866
+ msgid ""
1867
+ "You haven't entered any events, so My Calendar can't tell whether your "
1868
+ "database is up to date. If you can't add events, upgrade your database!"
1869
  msgstr ""
1870
 
1871
+ #: my-calendar-upgrade-db.php:53
1872
+ msgid "My Calendar Database is updated."
1873
  msgstr ""
1874
 
1875
+ #: my-calendar-user.php:39
1876
+ msgid "My Calendar User Settings"
1877
  msgstr ""
1878
 
1879
  #. Plugin URI of the plugin/theme
readme.txt CHANGED
@@ -1,9 +1,10 @@
 
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.9.2
6
- Tested up to: 3.1-RC2
7
  Stable tag: trunk
8
 
9
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
@@ -12,36 +13,44 @@ Accessible WordPress event calendar plugin. Show events from multiple calendars
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
 
35
  * American English (Default)
36
- * Brazilian Portuguese (Leonardo Kfoury)
 
 
 
 
 
 
 
 
 
37
  * Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
38
- * Danish ([Jakob Smith](http://www.omkalfatring.dk/))
39
- * German (Roland P)
40
  * Finnish (Ilpo Puhakka)
41
- * Dutch (Luud Heck)
42
- * Japanese ([Daisuke Abe](http://www.alter-ego.jp/))
43
- * Italian ([Sabir Musta](http://mustaphasabir.altervista.org))
44
- * Czech ([Jan Rybarik](http://janrybarik.cz))
45
 
46
  == Installation ==
47
 
@@ -56,6 +65,7 @@ Languages available:
56
  My Calendar -> Manage Locations
57
  My Calendar -> Settings
58
  My Calendar -> Style Editor
 
59
 
60
 
61
  4. Edit or create a page on your blog which includes the shortcode [my_calendar] and visit
@@ -64,6 +74,55 @@ Languages available:
64
 
65
  == Changelog ==
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  = 1.7.2 =
68
 
69
  * Bug fix: Fixed import from Calendar feature.
@@ -365,19 +424,9 @@ Languages available:
365
 
366
  == Frequently Asked Questions ==
367
 
368
- = This looks terrible with my template! You suck! =
369
-
370
- Hey, give me a break. I'm only going to release this with one default CSS - it works pretty well with Kubrick or Twenty Ten, and should be usable in many other themes. However, I'm not about to make any guarantees that it'll work with your theme. If you want it to look a particular way, you'll need to do some customization.
371
-
372
- = Why are past events showing up in my upcoming events widget? =
373
-
374
- The upcoming events widget has a number of options, including the choice to display any number of past or future events. The default settings allow for both, so if you only want future events to be shown you'll need to change the settings.
375
-
376
- = I don't want to show event categories in my widgets. How can I change that? =
377
-
378
- The widgets both use templates to determine what they'll display. You can edit those templates to show whatever you need within your list of events. The available shortcodes can be found on the plugin's Help page.
379
-
380
 
 
381
 
382
  == Screenshots ==
383
 
@@ -391,4 +440,4 @@ The widgets both use templates to determine what they'll display. You can edit t
391
 
392
  == Upgrade Notice ==
393
 
394
- Upgrading to version 1.6.4 will require you to re-configure your upcoming events and today's events widgets.
1
+
2
  === My Calendar ===
3
  Contributors: joedolson
4
  Donate link: http://www.joedolson.com/donate.php
5
  Tags: calendar, dates, times, events, scheduling, event manager
6
  Requires at least: 2.9.2
7
+ Tested up to: 3.1-RC5
8
  Stable tag: trunk
9
 
10
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
13
 
14
  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.
15
 
16
+ Basic Features:
17
 
18
  * Standard calendar or list views of events in calendar
19
+ * Show events by week or by month
20
  * Mini-calendar view for compact displays
21
  * Widget to show today's events
22
  * Configurable widget to show upcoming or past events
23
  * Widget templating to control what information is displayed in widget output.
 
 
24
  * Calendar can be displayed including a single category, all categories, or a selection of categories
25
+ * Disable default CSS and default JavaScript or display only on specific Pages/Posts
 
26
  * Editable CSS styles and JavaScript behaviors
27
+ * Events can be configured to be added by any level of user; directly to calendar or reserved for administrative approval
28
+ * Help information within the plugin for shortcode usage and widget templates.
29
  * 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.
30
+ * Email notification to administrator when events are scheduled or reserved
31
+ * Location Manager for storing frequently used venues
32
+ * Import method from Kieran O'Shea's Calendar plugin
33
+ * Integrated Help file to guide in use of shortcodes and template tags
34
 
35
  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.
36
 
 
37
  Languages available:
38
 
39
  * American English (Default)
40
+ * Japanese ([Daisuke Abe](http://www.alter-ego.jp/)) - to 1.7.1
41
+ * Danish ([Jakob Smith](http://www.omkalfatring.dk/)) - to 1.7.0
42
+ * Italian ([Sabir Musta](http://mustaphasabir.altervista.org)) - to 1.7.0
43
+ * Czech ([Jan Rybarik](http://janrybarik.cz)) - to 1.6.3
44
+ * Brazilian Portuguese (Leonardo Kfoury) - to 1.6.0?
45
+ * German (Roland P) - to 1.5.0
46
+ * Dutch (Luud Heck) - to 1.4.9
47
+
48
+ Older translations
49
+
50
  * Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
 
 
51
  * Finnish (Ilpo Puhakka)
52
+
53
+ New or updated translations are always appreciated. The translation file is included in the download.
 
 
54
 
55
  == Installation ==
56
 
65
  My Calendar -> Manage Locations
66
  My Calendar -> Settings
67
  My Calendar -> Style Editor
68
+ My Calendar -> Behavior Editor
69
 
70
 
71
  4. Edit or create a page on your blog which includes the shortcode [my_calendar] and visit
74
 
75
  == Changelog ==
76
 
77
+ = 1.7.8 =
78
+
79
+ * Bug fix: Behaviors page limits lost on settings refresh
80
+ * Bug fix: Fix {enddate} shortcode output.
81
+ * Bug fix: iCal output improvements
82
+ * Modification: RSS and iCal output are disabled entirely when turned off, rather than just hidden.
83
+ * Modification: Added styles for days out of current month
84
+
85
+ = 1.7.7 =
86
+
87
+ * Bug fix: Upcoming Events widget fault in 'dates' mode.
88
+
89
+ = 1.7.6 =
90
+
91
+ * Bug fix: Upcoming Events widget in days mode was not offsetting time using GMT reference. (Committed silently in 1.7.5)
92
+ * Bug fix: Default template not rendered in Today's Events when template left blank
93
+ * Bug fix: Slashes not stripped in category key.
94
+ * Bug fix: Upcoming Events widget if no upcoming events
95
+ * Bug fix: Error with retrieval of Author's ID
96
+ * Fixed some non-translatable text strings
97
+ * Logic change: Upcoming Events now bases choice on time rather than date (events happening later today are future, rather than only events happening tomorrow or later.)
98
+ * Enhancement: respects custom wp-content location definitions
99
+
100
+ = 1.7.5 =
101
+
102
+ * Bug fix: Error with upcoming events when selected by dates and holiday skipping enabled.
103
+ * Bug fix: Upcoming Events widget title defaulted to 'Today's Events'
104
+ * Change: Reversed order of Latitude/Longitude on forms to match Google's implementation.
105
+
106
+ = 1.7.4 =
107
+
108
+ * Bug fix: Upcoming events templates ran htmlentities on output
109
+
110
+ = 1.7.3 =
111
+
112
+ * Bug fix: upcoming events substitute text still not appearing in some contexts.
113
+ * Bug fix: Today's event substitute text had assignment in place of comparison
114
+ * Bug fix: Event location not saved properly on edit if Location Fields are disabled on input
115
+ * Bug fix: Fixed date and time issues in iCal output
116
+ * Bug fix: Fixed character set issue in RSS output
117
+ * Bug fix: Major problem with Holiday category event delimiting
118
+ * Danish translation updated to 1.7.0
119
+ * Japanese translation updated to 1.7.1
120
+ * Minor documentation and readme.txt updates
121
+ * Added additional fallback settings for widgets
122
+ * Fixed minor installation issue with version detection.
123
+ * Added CSS hook .nextmonth on dates occurring past the end of the currently displayed month.
124
+ * Added check for '#' symbol on hex colors in category management.
125
+
126
  = 1.7.2 =
127
 
128
  * Bug fix: Fixed import from Calendar feature.
424
 
425
  == Frequently Asked Questions ==
426
 
427
+ = Hey! Why don't you have any Frequently Asked Questions here! =
 
 
 
 
 
 
 
 
 
 
 
428
 
429
+ Because the majority of users end up on my web site asking for help anyway -- and it's simply more difficult to maintain two copies of my Frequently Asked Questions. Please visit [my web site FAQ](http://www.joedolson.com/articles/my-calendar/faq/) to read my Frequently Asked Questions!
430
 
431
  == Screenshots ==
432
 
440
 
441
  == Upgrade Notice ==
442
 
443
+ Upgrading from version 1.6.3 or below will require you to re-configure your upcoming events and today's events widgets.
styles/dark.css CHANGED
@@ -56,6 +56,10 @@ background:#151515;
56
  border:1px solid #353535;
57
  }
58
 
 
 
 
 
59
  #jd-calendar .current-day {
60
  background:#224;
61
  }
@@ -329,4 +333,30 @@ height: 2em!important;
329
  .mini .my-calendar-nav li a {
330
  padding: 1px 3px!important;
331
  font-size: .7em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  }
56
  border:1px solid #353535;
57
  }
58
 
59
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
60
+ color: #999;
61
+ }
62
+
63
  #jd-calendar .current-day {
64
  background:#224;
65
  }
333
  .mini .my-calendar-nav li a {
334
  padding: 1px 3px!important;
335
  font-size: .7em;
336
+ }
337
+ #jd-calendar .nextmonth {
338
+ background: #f6f6f6;
339
+ color: #888;
340
+ }
341
+ #jd-calendar .nextmonth .event-title {
342
+ opacity: .7;
343
+ }
344
+ #jd-calendar .nextmonth .mc-date {
345
+ background: #eee;
346
+ }
347
+ #jd-calendar .nextmonth .weekend {
348
+ color: #888;
349
+ }
350
+ #jd-calendar .nextmonth {
351
+ background: #000;
352
+ color: #666!important;
353
+ }
354
+ #jd-calendar .nextmonth .event-title {
355
+ opacity: .7;
356
+ }
357
+ #jd-calendar .nextmonth .mc-date {
358
+ background: #161616;
359
+ }
360
+ #jd-calendar .nextmonth .weekend {
361
+ background: #161616!important;
362
  }
styles/inherit.css CHANGED
@@ -215,4 +215,7 @@ text-decoration: underline;
215
  .mini .my-calendar-nav li a {
216
  padding: 1px 3px!important;
217
  font-size: .7em;
 
 
 
218
  }
215
  .mini .my-calendar-nav li a {
216
  padding: 1px 3px!important;
217
  font-size: .7em;
218
+ }
219
+ #jd-calendar .nextmonth {
220
+ opacity: .7;
221
  }
styles/light.css CHANGED
@@ -31,6 +31,10 @@ border:1px solid #bbb;
31
  background:#fafafa;
32
  }
33
 
 
 
 
 
34
  #jd-calendar #calendar-list .odd {
35
  background:#e3e3e3;
36
  }
@@ -40,6 +44,7 @@ background:#f3f3f3;
40
  border:1px solid #d3d3d3;
41
  }
42
 
 
43
  #jd-calendar .current-day {
44
  background:#ffd;
45
  }
@@ -297,4 +302,17 @@ height: 2em!important;
297
  .mini .my-calendar-nav li a {
298
  padding: 1px 3px!important;
299
  font-size: .7em;
 
 
 
 
 
 
 
 
 
 
 
 
 
300
  }
31
  background:#fafafa;
32
  }
33
 
34
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
35
+ color: #777;
36
+ }
37
+
38
  #jd-calendar #calendar-list .odd {
39
  background:#e3e3e3;
40
  }
44
  border:1px solid #d3d3d3;
45
  }
46
 
47
+
48
  #jd-calendar .current-day {
49
  background:#ffd;
50
  }
302
  .mini .my-calendar-nav li a {
303
  padding: 1px 3px!important;
304
  font-size: .7em;
305
+ }
306
+ #jd-calendar .nextmonth {
307
+ background: #f6f6f6;
308
+ color: #888;
309
+ }
310
+ #jd-calendar .nextmonth .event-title {
311
+ opacity: .7;
312
+ }
313
+ #jd-calendar .nextmonth .mc-date {
314
+ background: #eee;
315
+ }
316
+ #jd-calendar .nextmonth .weekend {
317
+ color: #888;
318
  }
styles/my-calendar.css CHANGED
@@ -29,7 +29,9 @@ border:1px solid #9b5;
29
  #jd-calendar .list-event .details, #jd-calendar .day-without-date {
30
  background:#fafafa;
31
  }
32
-
 
 
33
  #jd-calendar #calendar-list .odd {
34
  background:#d3e3e3;
35
  }
@@ -127,7 +129,8 @@ margin:0;
127
  }
128
  #jd-calendar .calendar-event .details, #jd-calendar .calendar-events {
129
  position:absolute;
130
- width:50%;
 
131
  -moz-border-radius:10px;
132
  -moz-box-shadow:3px 3px 6px #777;
133
  -webkit-box-shadow:3px 3px 6px #777;
@@ -366,4 +369,17 @@ display: block;
366
  margin: -2px;
367
  font-weight: 700;
368
  text-decoration: underline;
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  }
29
  #jd-calendar .list-event .details, #jd-calendar .day-without-date {
30
  background:#fafafa;
31
  }
32
+ #jd-calendar .nextmonth, #jd-calendar .nextmonth .weekend {
33
+ color: #777;
34
+ }
35
  #jd-calendar #calendar-list .odd {
36
  background:#d3e3e3;
37
  }
129
  }
130
  #jd-calendar .calendar-event .details, #jd-calendar .calendar-events {
131
  position:absolute;
132
+ left: 15%;
133
+ width:70%;
134
  -moz-border-radius:10px;
135
  -moz-box-shadow:3px 3px 6px #777;
136
  -webkit-box-shadow:3px 3px 6px #777;
369
  margin: -2px;
370
  font-weight: 700;
371
  text-decoration: underline;
372
+ }
373
+ #jd-calendar .nextmonth {
374
+ background: #f6f6f6;
375
+ color: #888;
376
+ }
377
+ #jd-calendar .nextmonth .event-title {
378
+ opacity: .7;
379
+ }
380
+ #jd-calendar .nextmonth .mc-date {
381
+ background: #eee;
382
+ }
383
+ #jd-calendar .nextmonth .weekend {
384
+ color: #888;
385
  }