Version Description
- Bug fix: Called wp_editor on versions below 3.3
- Bug fix: assorted PHP notices cleaned up. *
Download this release
Release Info
Developer | joedolson |
Plugin | My Calendar |
Version | 1.11.2 |
Comparing to | |
See all releases |
Code changes from version 1.10.12 to 1.11.2
- button/generator.php +7 -0
- button/mcb.js +1 -1
- date-utilities.php +13 -10
- gpl.txt +674 -0
- images/guide.png +0 -0
- js/jquery.addfields.js +3 -0
- js/mc-quicktags.js +1 -0
- lang/my-calendar-cs_CZ.mo +0 -0
- lang/my-calendar-cs_CZ.po +3844 -3841
- lang/my-calendar-da_DK.mo +0 -0
- lang/my-calendar-da_DK.po +3342 -3841
- lang/my-calendar-de_DE.mo +0 -0
- lang/my-calendar-de_DE.po +12 -12
- lang/my-calendar-hi_IN.mo +0 -0
- lang/my-calendar-hi_IN.po +3842 -0
- lang/my-calendar.pot +1122 -964
- mc-admin.css +5 -5
- mc-styles.css +27 -110
- my-calendar-behaviors.php +56 -46
- my-calendar-categories.php +53 -30
- my-calendar-core.php +217 -51
- my-calendar-detect-mobile.php +413 -298
- my-calendar-event-manager.php +124 -80
- my-calendar-events.php +13 -4
- my-calendar-export.php +3 -0
- my-calendar-group-manager.php +75 -57
- my-calendar-help.php +193 -156
- my-calendar-install.php +21 -19
- my-calendar-limits.php +37 -2
- my-calendar-locations.php +32 -17
- my-calendar-output.php +145 -106
- my-calendar-settings.php +122 -64
button/generator.php
CHANGED
@@ -86,6 +86,13 @@ do_action('admin_head');
|
|
86 |
</select>
|
87 |
</p>
|
88 |
<p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
<label for="toggle"><?php _e('Show Format Toggle', 'my-calendar'); ?></label>
|
90 |
<select name="toggle" id="toggle">
|
91 |
<option value="yes"><?php _e('Yes','my-calendar'); ?></option>
|
86 |
</select>
|
87 |
</p>
|
88 |
<p>
|
89 |
+
<label for="showjump"><?php _e('Show Jumpbox', 'my-calendar'); ?></label>
|
90 |
+
<select name="showjump" id="showjump">
|
91 |
+
<option value="yes"><?php _e('Yes','my-calendar'); ?></option>
|
92 |
+
<option value="no" selected="selected"><?php _e('No','my-calendar'); ?></option>
|
93 |
+
</select>
|
94 |
+
</p>
|
95 |
+
<p>
|
96 |
<label for="toggle"><?php _e('Show Format Toggle', 'my-calendar'); ?></label>
|
97 |
<select name="toggle" id="toggle">
|
98 |
<option value="yes"><?php _e('Yes','my-calendar'); ?></option>
|
button/mcb.js
CHANGED
@@ -19,7 +19,7 @@ var myCalQT = window.myCalQT || {};
|
|
19 |
/* Generator specific script */
|
20 |
(myCalQT.Tag.Generator = function(){
|
21 |
// tags to find
|
22 |
-
var tags = 'category,ltype,lvalue,format,showkey,shownav,toggle,time'.split(',');
|
23 |
// to validate and generate the tag
|
24 |
var vt = function(id){
|
25 |
var form = jQuery('#'+id).val();
|
19 |
/* Generator specific script */
|
20 |
(myCalQT.Tag.Generator = function(){
|
21 |
// tags to find
|
22 |
+
var tags = 'category,ltype,lvalue,format,showkey,shownav,showjump,toggle,time'.split(',');
|
23 |
// to validate and generate the tag
|
24 |
var vt = function(id){
|
25 |
var form = jQuery('#'+id).val();
|
date-utilities.php
CHANGED
@@ -48,20 +48,23 @@ function my_calendar_date_equal($early,$late) {
|
|
48 |
|
49 |
// Function to compare time in event objects
|
50 |
function my_calendar_time_cmp($a, $b) {
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
}
|
56 |
|
57 |
// Function to compare datetime in event objects
|
58 |
function my_calendar_datetime_cmp($a, $b) {
|
59 |
-
$event_dt_a = strtotime($a->event_begin .' '. $a->event_time);
|
60 |
-
$event_dt_b = strtotime($b->event_begin .' '. $b->event_time);
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
// reverse Function to compare datetime in event objects
|
48 |
|
49 |
// Function to compare time in event objects
|
50 |
function my_calendar_time_cmp($a, $b) {
|
51 |
+
if ($a->event_time == $b->event_time) {
|
52 |
+
return 0;
|
53 |
+
}
|
54 |
+
return ($a->event_time < $b->event_time) ? -1 : 1;
|
55 |
}
|
56 |
|
57 |
// Function to compare datetime in event objects
|
58 |
function my_calendar_datetime_cmp($a, $b) {
|
59 |
+
$event_dt_a = strtotime( $a->event_begin .' '. $a->event_time );
|
60 |
+
$event_dt_b = strtotime( $b->event_begin .' '. $b->event_time );
|
61 |
+
if ( $event_dt_a == $event_dt_b ) {
|
62 |
+
// this should sub-sort by title if date is the same. But it doesn't seem to...
|
63 |
+
$ta = $a->event_title;
|
64 |
+
$tb = $b->event_title;
|
65 |
+
return strcmp( $ta, $tb );
|
66 |
+
}
|
67 |
+
return ( $event_dt_a < $event_dt_b ) ? -1 : 1;
|
68 |
}
|
69 |
|
70 |
// reverse Function to compare datetime in event objects
|
gpl.txt
ADDED
@@ -0,0 +1,674 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 3, 29 June 2007
|
3 |
+
|
4 |
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5 |
+
Everyone is permitted to copy and distribute verbatim copies
|
6 |
+
of this license document, but changing it is not allowed.
|
7 |
+
|
8 |
+
Preamble
|
9 |
+
|
10 |
+
The GNU General Public License is a free, copyleft license for
|
11 |
+
software and other kinds of works.
|
12 |
+
|
13 |
+
The licenses for most software and other practical works are designed
|
14 |
+
to take away your freedom to share and change the works. By contrast,
|
15 |
+
the GNU General Public License is intended to guarantee your freedom to
|
16 |
+
share and change all versions of a program--to make sure it remains free
|
17 |
+
software for all its users. We, the Free Software Foundation, use the
|
18 |
+
GNU General Public License for most of our software; it applies also to
|
19 |
+
any other work released this way by its authors. You can apply it to
|
20 |
+
your programs, too.
|
21 |
+
|
22 |
+
When we speak of free software, we are referring to freedom, not
|
23 |
+
price. Our General Public Licenses are designed to make sure that you
|
24 |
+
have the freedom to distribute copies of free software (and charge for
|
25 |
+
them if you wish), that you receive source code or can get it if you
|
26 |
+
want it, that you can change the software or use pieces of it in new
|
27 |
+
free programs, and that you know you can do these things.
|
28 |
+
|
29 |
+
To protect your rights, we need to prevent others from denying you
|
30 |
+
these rights or asking you to surrender the rights. Therefore, you have
|
31 |
+
certain responsibilities if you distribute copies of the software, or if
|
32 |
+
you modify it: responsibilities to respect the freedom of others.
|
33 |
+
|
34 |
+
For example, if you distribute copies of such a program, whether
|
35 |
+
gratis or for a fee, you must pass on to the recipients the same
|
36 |
+
freedoms that you received. You must make sure that they, too, receive
|
37 |
+
or can get the source code. And you must show them these terms so they
|
38 |
+
know their rights.
|
39 |
+
|
40 |
+
Developers that use the GNU GPL protect your rights with two steps:
|
41 |
+
(1) assert copyright on the software, and (2) offer you this License
|
42 |
+
giving you legal permission to copy, distribute and/or modify it.
|
43 |
+
|
44 |
+
For the developers' and authors' protection, the GPL clearly explains
|
45 |
+
that there is no warranty for this free software. For both users' and
|
46 |
+
authors' sake, the GPL requires that modified versions be marked as
|
47 |
+
changed, so that their problems will not be attributed erroneously to
|
48 |
+
authors of previous versions.
|
49 |
+
|
50 |
+
Some devices are designed to deny users access to install or run
|
51 |
+
modified versions of the software inside them, although the manufacturer
|
52 |
+
can do so. This is fundamentally incompatible with the aim of
|
53 |
+
protecting users' freedom to change the software. The systematic
|
54 |
+
pattern of such abuse occurs in the area of products for individuals to
|
55 |
+
use, which is precisely where it is most unacceptable. Therefore, we
|
56 |
+
have designed this version of the GPL to prohibit the practice for those
|
57 |
+
products. If such problems arise substantially in other domains, we
|
58 |
+
stand ready to extend this provision to those domains in future versions
|
59 |
+
of the GPL, as needed to protect the freedom of users.
|
60 |
+
|
61 |
+
Finally, every program is threatened constantly by software patents.
|
62 |
+
States should not allow patents to restrict development and use of
|
63 |
+
software on general-purpose computers, but in those that do, we wish to
|
64 |
+
avoid the special danger that patents applied to a free program could
|
65 |
+
make it effectively proprietary. To prevent this, the GPL assures that
|
66 |
+
patents cannot be used to render the program non-free.
|
67 |
+
|
68 |
+
The precise terms and conditions for copying, distribution and
|
69 |
+
modification follow.
|
70 |
+
|
71 |
+
TERMS AND CONDITIONS
|
72 |
+
|
73 |
+
0. Definitions.
|
74 |
+
|
75 |
+
"This License" refers to version 3 of the GNU General Public License.
|
76 |
+
|
77 |
+
"Copyright" also means copyright-like laws that apply to other kinds of
|
78 |
+
works, such as semiconductor masks.
|
79 |
+
|
80 |
+
"The Program" refers to any copyrightable work licensed under this
|
81 |
+
License. Each licensee is addressed as "you". "Licensees" and
|
82 |
+
"recipients" may be individuals or organizations.
|
83 |
+
|
84 |
+
To "modify" a work means to copy from or adapt all or part of the work
|
85 |
+
in a fashion requiring copyright permission, other than the making of an
|
86 |
+
exact copy. The resulting work is called a "modified version" of the
|
87 |
+
earlier work or a work "based on" the earlier work.
|
88 |
+
|
89 |
+
A "covered work" means either the unmodified Program or a work based
|
90 |
+
on the Program.
|
91 |
+
|
92 |
+
To "propagate" a work means to do anything with it that, without
|
93 |
+
permission, would make you directly or secondarily liable for
|
94 |
+
infringement under applicable copyright law, except executing it on a
|
95 |
+
computer or modifying a private copy. Propagation includes copying,
|
96 |
+
distribution (with or without modification), making available to the
|
97 |
+
public, and in some countries other activities as well.
|
98 |
+
|
99 |
+
To "convey" a work means any kind of propagation that enables other
|
100 |
+
parties to make or receive copies. Mere interaction with a user through
|
101 |
+
a computer network, with no transfer of a copy, is not conveying.
|
102 |
+
|
103 |
+
An interactive user interface displays "Appropriate Legal Notices"
|
104 |
+
to the extent that it includes a convenient and prominently visible
|
105 |
+
feature that (1) displays an appropriate copyright notice, and (2)
|
106 |
+
tells the user that there is no warranty for the work (except to the
|
107 |
+
extent that warranties are provided), that licensees may convey the
|
108 |
+
work under this License, and how to view a copy of this License. If
|
109 |
+
the interface presents a list of user commands or options, such as a
|
110 |
+
menu, a prominent item in the list meets this criterion.
|
111 |
+
|
112 |
+
1. Source Code.
|
113 |
+
|
114 |
+
The "source code" for a work means the preferred form of the work
|
115 |
+
for making modifications to it. "Object code" means any non-source
|
116 |
+
form of a work.
|
117 |
+
|
118 |
+
A "Standard Interface" means an interface that either is an official
|
119 |
+
standard defined by a recognized standards body, or, in the case of
|
120 |
+
interfaces specified for a particular programming language, one that
|
121 |
+
is widely used among developers working in that language.
|
122 |
+
|
123 |
+
The "System Libraries" of an executable work include anything, other
|
124 |
+
than the work as a whole, that (a) is included in the normal form of
|
125 |
+
packaging a Major Component, but which is not part of that Major
|
126 |
+
Component, and (b) serves only to enable use of the work with that
|
127 |
+
Major Component, or to implement a Standard Interface for which an
|
128 |
+
implementation is available to the public in source code form. A
|
129 |
+
"Major Component", in this context, means a major essential component
|
130 |
+
(kernel, window system, and so on) of the specific operating system
|
131 |
+
(if any) on which the executable work runs, or a compiler used to
|
132 |
+
produce the work, or an object code interpreter used to run it.
|
133 |
+
|
134 |
+
The "Corresponding Source" for a work in object code form means all
|
135 |
+
the source code needed to generate, install, and (for an executable
|
136 |
+
work) run the object code and to modify the work, including scripts to
|
137 |
+
control those activities. However, it does not include the work's
|
138 |
+
System Libraries, or general-purpose tools or generally available free
|
139 |
+
programs which are used unmodified in performing those activities but
|
140 |
+
which are not part of the work. For example, Corresponding Source
|
141 |
+
includes interface definition files associated with source files for
|
142 |
+
the work, and the source code for shared libraries and dynamically
|
143 |
+
linked subprograms that the work is specifically designed to require,
|
144 |
+
such as by intimate data communication or control flow between those
|
145 |
+
subprograms and other parts of the work.
|
146 |
+
|
147 |
+
The Corresponding Source need not include anything that users
|
148 |
+
can regenerate automatically from other parts of the Corresponding
|
149 |
+
Source.
|
150 |
+
|
151 |
+
The Corresponding Source for a work in source code form is that
|
152 |
+
same work.
|
153 |
+
|
154 |
+
2. Basic Permissions.
|
155 |
+
|
156 |
+
All rights granted under this License are granted for the term of
|
157 |
+
copyright on the Program, and are irrevocable provided the stated
|
158 |
+
conditions are met. This License explicitly affirms your unlimited
|
159 |
+
permission to run the unmodified Program. The output from running a
|
160 |
+
covered work is covered by this License only if the output, given its
|
161 |
+
content, constitutes a covered work. This License acknowledges your
|
162 |
+
rights of fair use or other equivalent, as provided by copyright law.
|
163 |
+
|
164 |
+
You may make, run and propagate covered works that you do not
|
165 |
+
convey, without conditions so long as your license otherwise remains
|
166 |
+
in force. You may convey covered works to others for the sole purpose
|
167 |
+
of having them make modifications exclusively for you, or provide you
|
168 |
+
with facilities for running those works, provided that you comply with
|
169 |
+
the terms of this License in conveying all material for which you do
|
170 |
+
not control copyright. Those thus making or running the covered works
|
171 |
+
for you must do so exclusively on your behalf, under your direction
|
172 |
+
and control, on terms that prohibit them from making any copies of
|
173 |
+
your copyrighted material outside their relationship with you.
|
174 |
+
|
175 |
+
Conveying under any other circumstances is permitted solely under
|
176 |
+
the conditions stated below. Sublicensing is not allowed; section 10
|
177 |
+
makes it unnecessary.
|
178 |
+
|
179 |
+
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
180 |
+
|
181 |
+
No covered work shall be deemed part of an effective technological
|
182 |
+
measure under any applicable law fulfilling obligations under article
|
183 |
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
184 |
+
similar laws prohibiting or restricting circumvention of such
|
185 |
+
measures.
|
186 |
+
|
187 |
+
When you convey a covered work, you waive any legal power to forbid
|
188 |
+
circumvention of technological measures to the extent such circumvention
|
189 |
+
is effected by exercising rights under this License with respect to
|
190 |
+
the covered work, and you disclaim any intention to limit operation or
|
191 |
+
modification of the work as a means of enforcing, against the work's
|
192 |
+
users, your or third parties' legal rights to forbid circumvention of
|
193 |
+
technological measures.
|
194 |
+
|
195 |
+
4. Conveying Verbatim Copies.
|
196 |
+
|
197 |
+
You may convey verbatim copies of the Program's source code as you
|
198 |
+
receive it, in any medium, provided that you conspicuously and
|
199 |
+
appropriately publish on each copy an appropriate copyright notice;
|
200 |
+
keep intact all notices stating that this License and any
|
201 |
+
non-permissive terms added in accord with section 7 apply to the code;
|
202 |
+
keep intact all notices of the absence of any warranty; and give all
|
203 |
+
recipients a copy of this License along with the Program.
|
204 |
+
|
205 |
+
You may charge any price or no price for each copy that you convey,
|
206 |
+
and you may offer support or warranty protection for a fee.
|
207 |
+
|
208 |
+
5. Conveying Modified Source Versions.
|
209 |
+
|
210 |
+
You may convey a work based on the Program, or the modifications to
|
211 |
+
produce it from the Program, in the form of source code under the
|
212 |
+
terms of section 4, provided that you also meet all of these conditions:
|
213 |
+
|
214 |
+
a) The work must carry prominent notices stating that you modified
|
215 |
+
it, and giving a relevant date.
|
216 |
+
|
217 |
+
b) The work must carry prominent notices stating that it is
|
218 |
+
released under this License and any conditions added under section
|
219 |
+
7. This requirement modifies the requirement in section 4 to
|
220 |
+
"keep intact all notices".
|
221 |
+
|
222 |
+
c) You must license the entire work, as a whole, under this
|
223 |
+
License to anyone who comes into possession of a copy. This
|
224 |
+
License will therefore apply, along with any applicable section 7
|
225 |
+
additional terms, to the whole of the work, and all its parts,
|
226 |
+
regardless of how they are packaged. This License gives no
|
227 |
+
permission to license the work in any other way, but it does not
|
228 |
+
invalidate such permission if you have separately received it.
|
229 |
+
|
230 |
+
d) If the work has interactive user interfaces, each must display
|
231 |
+
Appropriate Legal Notices; however, if the Program has interactive
|
232 |
+
interfaces that do not display Appropriate Legal Notices, your
|
233 |
+
work need not make them do so.
|
234 |
+
|
235 |
+
A compilation of a covered work with other separate and independent
|
236 |
+
works, which are not by their nature extensions of the covered work,
|
237 |
+
and which are not combined with it such as to form a larger program,
|
238 |
+
in or on a volume of a storage or distribution medium, is called an
|
239 |
+
"aggregate" if the compilation and its resulting copyright are not
|
240 |
+
used to limit the access or legal rights of the compilation's users
|
241 |
+
beyond what the individual works permit. Inclusion of a covered work
|
242 |
+
in an aggregate does not cause this License to apply to the other
|
243 |
+
parts of the aggregate.
|
244 |
+
|
245 |
+
6. Conveying Non-Source Forms.
|
246 |
+
|
247 |
+
You may convey a covered work in object code form under the terms
|
248 |
+
of sections 4 and 5, provided that you also convey the
|
249 |
+
machine-readable Corresponding Source under the terms of this License,
|
250 |
+
in one of these ways:
|
251 |
+
|
252 |
+
a) Convey the object code in, or embodied in, a physical product
|
253 |
+
(including a physical distribution medium), accompanied by the
|
254 |
+
Corresponding Source fixed on a durable physical medium
|
255 |
+
customarily used for software interchange.
|
256 |
+
|
257 |
+
b) Convey the object code in, or embodied in, a physical product
|
258 |
+
(including a physical distribution medium), accompanied by a
|
259 |
+
written offer, valid for at least three years and valid for as
|
260 |
+
long as you offer spare parts or customer support for that product
|
261 |
+
model, to give anyone who possesses the object code either (1) a
|
262 |
+
copy of the Corresponding Source for all the software in the
|
263 |
+
product that is covered by this License, on a durable physical
|
264 |
+
medium customarily used for software interchange, for a price no
|
265 |
+
more than your reasonable cost of physically performing this
|
266 |
+
conveying of source, or (2) access to copy the
|
267 |
+
Corresponding Source from a network server at no charge.
|
268 |
+
|
269 |
+
c) Convey individual copies of the object code with a copy of the
|
270 |
+
written offer to provide the Corresponding Source. This
|
271 |
+
alternative is allowed only occasionally and noncommercially, and
|
272 |
+
only if you received the object code with such an offer, in accord
|
273 |
+
with subsection 6b.
|
274 |
+
|
275 |
+
d) Convey the object code by offering access from a designated
|
276 |
+
place (gratis or for a charge), and offer equivalent access to the
|
277 |
+
Corresponding Source in the same way through the same place at no
|
278 |
+
further charge. You need not require recipients to copy the
|
279 |
+
Corresponding Source along with the object code. If the place to
|
280 |
+
copy the object code is a network server, the Corresponding Source
|
281 |
+
may be on a different server (operated by you or a third party)
|
282 |
+
that supports equivalent copying facilities, provided you maintain
|
283 |
+
clear directions next to the object code saying where to find the
|
284 |
+
Corresponding Source. Regardless of what server hosts the
|
285 |
+
Corresponding Source, you remain obligated to ensure that it is
|
286 |
+
available for as long as needed to satisfy these requirements.
|
287 |
+
|
288 |
+
e) Convey the object code using peer-to-peer transmission, provided
|
289 |
+
you inform other peers where the object code and Corresponding
|
290 |
+
Source of the work are being offered to the general public at no
|
291 |
+
charge under subsection 6d.
|
292 |
+
|
293 |
+
A separable portion of the object code, whose source code is excluded
|
294 |
+
from the Corresponding Source as a System Library, need not be
|
295 |
+
included in conveying the object code work.
|
296 |
+
|
297 |
+
A "User Product" is either (1) a "consumer product", which means any
|
298 |
+
tangible personal property which is normally used for personal, family,
|
299 |
+
or household purposes, or (2) anything designed or sold for incorporation
|
300 |
+
into a dwelling. In determining whether a product is a consumer product,
|
301 |
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
302 |
+
product received by a particular user, "normally used" refers to a
|
303 |
+
typical or common use of that class of product, regardless of the status
|
304 |
+
of the particular user or of the way in which the particular user
|
305 |
+
actually uses, or expects or is expected to use, the product. A product
|
306 |
+
is a consumer product regardless of whether the product has substantial
|
307 |
+
commercial, industrial or non-consumer uses, unless such uses represent
|
308 |
+
the only significant mode of use of the product.
|
309 |
+
|
310 |
+
"Installation Information" for a User Product means any methods,
|
311 |
+
procedures, authorization keys, or other information required to install
|
312 |
+
and execute modified versions of a covered work in that User Product from
|
313 |
+
a modified version of its Corresponding Source. The information must
|
314 |
+
suffice to ensure that the continued functioning of the modified object
|
315 |
+
code is in no case prevented or interfered with solely because
|
316 |
+
modification has been made.
|
317 |
+
|
318 |
+
If you convey an object code work under this section in, or with, or
|
319 |
+
specifically for use in, a User Product, and the conveying occurs as
|
320 |
+
part of a transaction in which the right of possession and use of the
|
321 |
+
User Product is transferred to the recipient in perpetuity or for a
|
322 |
+
fixed term (regardless of how the transaction is characterized), the
|
323 |
+
Corresponding Source conveyed under this section must be accompanied
|
324 |
+
by the Installation Information. But this requirement does not apply
|
325 |
+
if neither you nor any third party retains the ability to install
|
326 |
+
modified object code on the User Product (for example, the work has
|
327 |
+
been installed in ROM).
|
328 |
+
|
329 |
+
The requirement to provide Installation Information does not include a
|
330 |
+
requirement to continue to provide support service, warranty, or updates
|
331 |
+
for a work that has been modified or installed by the recipient, or for
|
332 |
+
the User Product in which it has been modified or installed. Access to a
|
333 |
+
network may be denied when the modification itself materially and
|
334 |
+
adversely affects the operation of the network or violates the rules and
|
335 |
+
protocols for communication across the network.
|
336 |
+
|
337 |
+
Corresponding Source conveyed, and Installation Information provided,
|
338 |
+
in accord with this section must be in a format that is publicly
|
339 |
+
documented (and with an implementation available to the public in
|
340 |
+
source code form), and must require no special password or key for
|
341 |
+
unpacking, reading or copying.
|
342 |
+
|
343 |
+
7. Additional Terms.
|
344 |
+
|
345 |
+
"Additional permissions" are terms that supplement the terms of this
|
346 |
+
License by making exceptions from one or more of its conditions.
|
347 |
+
Additional permissions that are applicable to the entire Program shall
|
348 |
+
be treated as though they were included in this License, to the extent
|
349 |
+
that they are valid under applicable law. If additional permissions
|
350 |
+
apply only to part of the Program, that part may be used separately
|
351 |
+
under those permissions, but the entire Program remains governed by
|
352 |
+
this License without regard to the additional permissions.
|
353 |
+
|
354 |
+
When you convey a copy of a covered work, you may at your option
|
355 |
+
remove any additional permissions from that copy, or from any part of
|
356 |
+
it. (Additional permissions may be written to require their own
|
357 |
+
removal in certain cases when you modify the work.) You may place
|
358 |
+
additional permissions on material, added by you to a covered work,
|
359 |
+
for which you have or can give appropriate copyright permission.
|
360 |
+
|
361 |
+
Notwithstanding any other provision of this License, for material you
|
362 |
+
add to a covered work, you may (if authorized by the copyright holders of
|
363 |
+
that material) supplement the terms of this License with terms:
|
364 |
+
|
365 |
+
a) Disclaiming warranty or limiting liability differently from the
|
366 |
+
terms of sections 15 and 16 of this License; or
|
367 |
+
|
368 |
+
b) Requiring preservation of specified reasonable legal notices or
|
369 |
+
author attributions in that material or in the Appropriate Legal
|
370 |
+
Notices displayed by works containing it; or
|
371 |
+
|
372 |
+
c) Prohibiting misrepresentation of the origin of that material, or
|
373 |
+
requiring that modified versions of such material be marked in
|
374 |
+
reasonable ways as different from the original version; or
|
375 |
+
|
376 |
+
d) Limiting the use for publicity purposes of names of licensors or
|
377 |
+
authors of the material; or
|
378 |
+
|
379 |
+
e) Declining to grant rights under trademark law for use of some
|
380 |
+
trade names, trademarks, or service marks; or
|
381 |
+
|
382 |
+
f) Requiring indemnification of licensors and authors of that
|
383 |
+
material by anyone who conveys the material (or modified versions of
|
384 |
+
it) with contractual assumptions of liability to the recipient, for
|
385 |
+
any liability that these contractual assumptions directly impose on
|
386 |
+
those licensors and authors.
|
387 |
+
|
388 |
+
All other non-permissive additional terms are considered "further
|
389 |
+
restrictions" within the meaning of section 10. If the Program as you
|
390 |
+
received it, or any part of it, contains a notice stating that it is
|
391 |
+
governed by this License along with a term that is a further
|
392 |
+
restriction, you may remove that term. If a license document contains
|
393 |
+
a further restriction but permits relicensing or conveying under this
|
394 |
+
License, you may add to a covered work material governed by the terms
|
395 |
+
of that license document, provided that the further restriction does
|
396 |
+
not survive such relicensing or conveying.
|
397 |
+
|
398 |
+
If you add terms to a covered work in accord with this section, you
|
399 |
+
must place, in the relevant source files, a statement of the
|
400 |
+
additional terms that apply to those files, or a notice indicating
|
401 |
+
where to find the applicable terms.
|
402 |
+
|
403 |
+
Additional terms, permissive or non-permissive, may be stated in the
|
404 |
+
form of a separately written license, or stated as exceptions;
|
405 |
+
the above requirements apply either way.
|
406 |
+
|
407 |
+
8. Termination.
|
408 |
+
|
409 |
+
You may not propagate or modify a covered work except as expressly
|
410 |
+
provided under this License. Any attempt otherwise to propagate or
|
411 |
+
modify it is void, and will automatically terminate your rights under
|
412 |
+
this License (including any patent licenses granted under the third
|
413 |
+
paragraph of section 11).
|
414 |
+
|
415 |
+
However, if you cease all violation of this License, then your
|
416 |
+
license from a particular copyright holder is reinstated (a)
|
417 |
+
provisionally, unless and until the copyright holder explicitly and
|
418 |
+
finally terminates your license, and (b) permanently, if the copyright
|
419 |
+
holder fails to notify you of the violation by some reasonable means
|
420 |
+
prior to 60 days after the cessation.
|
421 |
+
|
422 |
+
Moreover, your license from a particular copyright holder is
|
423 |
+
reinstated permanently if the copyright holder notifies you of the
|
424 |
+
violation by some reasonable means, this is the first time you have
|
425 |
+
received notice of violation of this License (for any work) from that
|
426 |
+
copyright holder, and you cure the violation prior to 30 days after
|
427 |
+
your receipt of the notice.
|
428 |
+
|
429 |
+
Termination of your rights under this section does not terminate the
|
430 |
+
licenses of parties who have received copies or rights from you under
|
431 |
+
this License. If your rights have been terminated and not permanently
|
432 |
+
reinstated, you do not qualify to receive new licenses for the same
|
433 |
+
material under section 10.
|
434 |
+
|
435 |
+
9. Acceptance Not Required for Having Copies.
|
436 |
+
|
437 |
+
You are not required to accept this License in order to receive or
|
438 |
+
run a copy of the Program. Ancillary propagation of a covered work
|
439 |
+
occurring solely as a consequence of using peer-to-peer transmission
|
440 |
+
to receive a copy likewise does not require acceptance. However,
|
441 |
+
nothing other than this License grants you permission to propagate or
|
442 |
+
modify any covered work. These actions infringe copyright if you do
|
443 |
+
not accept this License. Therefore, by modifying or propagating a
|
444 |
+
covered work, you indicate your acceptance of this License to do so.
|
445 |
+
|
446 |
+
10. Automatic Licensing of Downstream Recipients.
|
447 |
+
|
448 |
+
Each time you convey a covered work, the recipient automatically
|
449 |
+
receives a license from the original licensors, to run, modify and
|
450 |
+
propagate that work, subject to this License. You are not responsible
|
451 |
+
for enforcing compliance by third parties with this License.
|
452 |
+
|
453 |
+
An "entity transaction" is a transaction transferring control of an
|
454 |
+
organization, or substantially all assets of one, or subdividing an
|
455 |
+
organization, or merging organizations. If propagation of a covered
|
456 |
+
work results from an entity transaction, each party to that
|
457 |
+
transaction who receives a copy of the work also receives whatever
|
458 |
+
licenses to the work the party's predecessor in interest had or could
|
459 |
+
give under the previous paragraph, plus a right to possession of the
|
460 |
+
Corresponding Source of the work from the predecessor in interest, if
|
461 |
+
the predecessor has it or can get it with reasonable efforts.
|
462 |
+
|
463 |
+
You may not impose any further restrictions on the exercise of the
|
464 |
+
rights granted or affirmed under this License. For example, you may
|
465 |
+
not impose a license fee, royalty, or other charge for exercise of
|
466 |
+
rights granted under this License, and you may not initiate litigation
|
467 |
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
468 |
+
any patent claim is infringed by making, using, selling, offering for
|
469 |
+
sale, or importing the Program or any portion of it.
|
470 |
+
|
471 |
+
11. Patents.
|
472 |
+
|
473 |
+
A "contributor" is a copyright holder who authorizes use under this
|
474 |
+
License of the Program or a work on which the Program is based. The
|
475 |
+
work thus licensed is called the contributor's "contributor version".
|
476 |
+
|
477 |
+
A contributor's "essential patent claims" are all patent claims
|
478 |
+
owned or controlled by the contributor, whether already acquired or
|
479 |
+
hereafter acquired, that would be infringed by some manner, permitted
|
480 |
+
by this License, of making, using, or selling its contributor version,
|
481 |
+
but do not include claims that would be infringed only as a
|
482 |
+
consequence of further modification of the contributor version. For
|
483 |
+
purposes of this definition, "control" includes the right to grant
|
484 |
+
patent sublicenses in a manner consistent with the requirements of
|
485 |
+
this License.
|
486 |
+
|
487 |
+
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
488 |
+
patent license under the contributor's essential patent claims, to
|
489 |
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
490 |
+
propagate the contents of its contributor version.
|
491 |
+
|
492 |
+
In the following three paragraphs, a "patent license" is any express
|
493 |
+
agreement or commitment, however denominated, not to enforce a patent
|
494 |
+
(such as an express permission to practice a patent or covenant not to
|
495 |
+
sue for patent infringement). To "grant" such a patent license to a
|
496 |
+
party means to make such an agreement or commitment not to enforce a
|
497 |
+
patent against the party.
|
498 |
+
|
499 |
+
If you convey a covered work, knowingly relying on a patent license,
|
500 |
+
and the Corresponding Source of the work is not available for anyone
|
501 |
+
to copy, free of charge and under the terms of this License, through a
|
502 |
+
publicly available network server or other readily accessible means,
|
503 |
+
then you must either (1) cause the Corresponding Source to be so
|
504 |
+
available, or (2) arrange to deprive yourself of the benefit of the
|
505 |
+
patent license for this particular work, or (3) arrange, in a manner
|
506 |
+
consistent with the requirements of this License, to extend the patent
|
507 |
+
license to downstream recipients. "Knowingly relying" means you have
|
508 |
+
actual knowledge that, but for the patent license, your conveying the
|
509 |
+
covered work in a country, or your recipient's use of the covered work
|
510 |
+
in a country, would infringe one or more identifiable patents in that
|
511 |
+
country that you have reason to believe are valid.
|
512 |
+
|
513 |
+
If, pursuant to or in connection with a single transaction or
|
514 |
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
515 |
+
covered work, and grant a patent license to some of the parties
|
516 |
+
receiving the covered work authorizing them to use, propagate, modify
|
517 |
+
or convey a specific copy of the covered work, then the patent license
|
518 |
+
you grant is automatically extended to all recipients of the covered
|
519 |
+
work and works based on it.
|
520 |
+
|
521 |
+
A patent license is "discriminatory" if it does not include within
|
522 |
+
the scope of its coverage, prohibits the exercise of, or is
|
523 |
+
conditioned on the non-exercise of one or more of the rights that are
|
524 |
+
specifically granted under this License. You may not convey a covered
|
525 |
+
work if you are a party to an arrangement with a third party that is
|
526 |
+
in the business of distributing software, under which you make payment
|
527 |
+
to the third party based on the extent of your activity of conveying
|
528 |
+
the work, and under which the third party grants, to any of the
|
529 |
+
parties who would receive the covered work from you, a discriminatory
|
530 |
+
patent license (a) in connection with copies of the covered work
|
531 |
+
conveyed by you (or copies made from those copies), or (b) primarily
|
532 |
+
for and in connection with specific products or compilations that
|
533 |
+
contain the covered work, unless you entered into that arrangement,
|
534 |
+
or that patent license was granted, prior to 28 March 2007.
|
535 |
+
|
536 |
+
Nothing in this License shall be construed as excluding or limiting
|
537 |
+
any implied license or other defenses to infringement that may
|
538 |
+
otherwise be available to you under applicable patent law.
|
539 |
+
|
540 |
+
12. No Surrender of Others' Freedom.
|
541 |
+
|
542 |
+
If conditions are imposed on you (whether by court order, agreement or
|
543 |
+
otherwise) that contradict the conditions of this License, they do not
|
544 |
+
excuse you from the conditions of this License. If you cannot convey a
|
545 |
+
covered work so as to satisfy simultaneously your obligations under this
|
546 |
+
License and any other pertinent obligations, then as a consequence you may
|
547 |
+
not convey it at all. For example, if you agree to terms that obligate you
|
548 |
+
to collect a royalty for further conveying from those to whom you convey
|
549 |
+
the Program, the only way you could satisfy both those terms and this
|
550 |
+
License would be to refrain entirely from conveying the Program.
|
551 |
+
|
552 |
+
13. Use with the GNU Affero General Public License.
|
553 |
+
|
554 |
+
Notwithstanding any other provision of this License, you have
|
555 |
+
permission to link or combine any covered work with a work licensed
|
556 |
+
under version 3 of the GNU Affero General Public License into a single
|
557 |
+
combined work, and to convey the resulting work. The terms of this
|
558 |
+
License will continue to apply to the part which is the covered work,
|
559 |
+
but the special requirements of the GNU Affero General Public License,
|
560 |
+
section 13, concerning interaction through a network will apply to the
|
561 |
+
combination as such.
|
562 |
+
|
563 |
+
14. Revised Versions of this License.
|
564 |
+
|
565 |
+
The Free Software Foundation may publish revised and/or new versions of
|
566 |
+
the GNU General Public License from time to time. Such new versions will
|
567 |
+
be similar in spirit to the present version, but may differ in detail to
|
568 |
+
address new problems or concerns.
|
569 |
+
|
570 |
+
Each version is given a distinguishing version number. If the
|
571 |
+
Program specifies that a certain numbered version of the GNU General
|
572 |
+
Public License "or any later version" applies to it, you have the
|
573 |
+
option of following the terms and conditions either of that numbered
|
574 |
+
version or of any later version published by the Free Software
|
575 |
+
Foundation. If the Program does not specify a version number of the
|
576 |
+
GNU General Public License, you may choose any version ever published
|
577 |
+
by the Free Software Foundation.
|
578 |
+
|
579 |
+
If the Program specifies that a proxy can decide which future
|
580 |
+
versions of the GNU General Public License can be used, that proxy's
|
581 |
+
public statement of acceptance of a version permanently authorizes you
|
582 |
+
to choose that version for the Program.
|
583 |
+
|
584 |
+
Later license versions may give you additional or different
|
585 |
+
permissions. However, no additional obligations are imposed on any
|
586 |
+
author or copyright holder as a result of your choosing to follow a
|
587 |
+
later version.
|
588 |
+
|
589 |
+
15. Disclaimer of Warranty.
|
590 |
+
|
591 |
+
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
592 |
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
593 |
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
594 |
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
595 |
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
596 |
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
597 |
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
598 |
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
599 |
+
|
600 |
+
16. Limitation of Liability.
|
601 |
+
|
602 |
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
603 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
604 |
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
605 |
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
606 |
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
607 |
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
608 |
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
609 |
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
610 |
+
SUCH DAMAGES.
|
611 |
+
|
612 |
+
17. Interpretation of Sections 15 and 16.
|
613 |
+
|
614 |
+
If the disclaimer of warranty and limitation of liability provided
|
615 |
+
above cannot be given local legal effect according to their terms,
|
616 |
+
reviewing courts shall apply local law that most closely approximates
|
617 |
+
an absolute waiver of all civil liability in connection with the
|
618 |
+
Program, unless a warranty or assumption of liability accompanies a
|
619 |
+
copy of the Program in return for a fee.
|
620 |
+
|
621 |
+
END OF TERMS AND CONDITIONS
|
622 |
+
|
623 |
+
How to Apply These Terms to Your New Programs
|
624 |
+
|
625 |
+
If you develop a new program, and you want it to be of the greatest
|
626 |
+
possible use to the public, the best way to achieve this is to make it
|
627 |
+
free software which everyone can redistribute and change under these terms.
|
628 |
+
|
629 |
+
To do so, attach the following notices to the program. It is safest
|
630 |
+
to attach them to the start of each source file to most effectively
|
631 |
+
state the exclusion of warranty; and each file should have at least
|
632 |
+
the "copyright" line and a pointer to where the full notice is found.
|
633 |
+
|
634 |
+
<one line to give the program's name and a brief idea of what it does.>
|
635 |
+
Copyright (C) <year> <name of author>
|
636 |
+
|
637 |
+
This program is free software: you can redistribute it and/or modify
|
638 |
+
it under the terms of the GNU General Public License as published by
|
639 |
+
the Free Software Foundation, either version 3 of the License, or
|
640 |
+
(at your option) any later version.
|
641 |
+
|
642 |
+
This program is distributed in the hope that it will be useful,
|
643 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
644 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
645 |
+
GNU General Public License for more details.
|
646 |
+
|
647 |
+
You should have received a copy of the GNU General Public License
|
648 |
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
649 |
+
|
650 |
+
Also add information on how to contact you by electronic and paper mail.
|
651 |
+
|
652 |
+
If the program does terminal interaction, make it output a short
|
653 |
+
notice like this when it starts in an interactive mode:
|
654 |
+
|
655 |
+
<program> Copyright (C) <year> <name of author>
|
656 |
+
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
657 |
+
This is free software, and you are welcome to redistribute it
|
658 |
+
under certain conditions; type `show c' for details.
|
659 |
+
|
660 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
661 |
+
parts of the General Public License. Of course, your program's commands
|
662 |
+
might be different; for a GUI interface, you would use an "about box".
|
663 |
+
|
664 |
+
You should also get your employer (if you work as a programmer) or school,
|
665 |
+
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
666 |
+
For more information on this, and how to apply and follow the GNU GPL, see
|
667 |
+
<http://www.gnu.org/licenses/>.
|
668 |
+
|
669 |
+
The GNU General Public License does not permit incorporating your program
|
670 |
+
into proprietary programs. If your program is a subroutine library, you
|
671 |
+
may consider it more useful to permit linking proprietary applications with
|
672 |
+
the library. If this is what you want to do, use the GNU Lesser General
|
673 |
+
Public License instead of this License. But first, please read
|
674 |
+
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
images/guide.png
ADDED
Binary file
|
js/jquery.addfields.js
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
jQuery(document).ready(function($) {
|
2 |
$('#add_field').live('click',function() {
|
|
|
3 |
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
|
4 |
var newNum = new Number(num + 1); // the numeric ID of the new input field being added
|
5 |
// create the new element via clone(), and manipulate it's ID using newNum value
|
@@ -23,6 +24,8 @@ jQuery(document).ready(function($) {
|
|
23 |
// if only one element remains, disable the "remove" button
|
24 |
if (num-1 == 1)
|
25 |
$('#del_field').attr('disabled','disabled');
|
|
|
26 |
});
|
27 |
$('#del_field').attr('disabled','disabled');
|
|
|
28 |
});
|
1 |
jQuery(document).ready(function($) {
|
2 |
$('#add_field').live('click',function() {
|
3 |
+
$('#event_span').removeAttr('disabled');
|
4 |
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
|
5 |
var newNum = new Number(num + 1); // the numeric ID of the new input field being added
|
6 |
// create the new element via clone(), and manipulate it's ID using newNum value
|
24 |
// if only one element remains, disable the "remove" button
|
25 |
if (num-1 == 1)
|
26 |
$('#del_field').attr('disabled','disabled');
|
27 |
+
$('#event_span').attr('disabled','disabled');
|
28 |
});
|
29 |
$('#del_field').attr('disabled','disabled');
|
30 |
+
$('#event_span').attr('disabled','disabled');
|
31 |
});
|
js/mc-quicktags.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
edButtons[edButtons.length] = new edButton( 'My Calendar', 'My Calendar', '[my_calendar]', '', '' );
|
lang/my-calendar-cs_CZ.mo
CHANGED
Binary file
|
lang/my-calendar-cs_CZ.po
CHANGED
@@ -1,3841 +1,3844 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: My Calendar 1.
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Czech\n"
|
14 |
-
"X-Poedit-Country: CZECH REPUBLIC\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
-
"X-
|
18 |
-
"X-Poedit-
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
|
21 |
-
|
22 |
-
#:
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
#:
|
28 |
-
|
29 |
-
msgid "
|
30 |
-
msgstr "
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
msgid "
|
45 |
-
msgstr "
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
#: my-calendar-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
#: my-calendar-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
#: my-calendar-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
#:
|
82 |
-
#: my-calendar-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
#: my-calendar-
|
95 |
-
#: my-calendar.php:
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
#:
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
#:
|
128 |
-
#:
|
129 |
-
#:
|
130 |
-
#: my-calendar-
|
131 |
-
|
132 |
-
msgid "
|
133 |
-
msgstr "
|
134 |
-
|
135 |
-
|
136 |
-
#:
|
137 |
-
#:
|
138 |
-
#:
|
139 |
-
#: my-calendar-
|
140 |
-
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
-
|
144 |
-
|
145 |
-
#:
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
#:
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
#:
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
#: my-calendar-
|
162 |
-
#: my-calendar-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
#:
|
168 |
-
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
msgid "
|
185 |
-
msgstr "
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
-
|
197 |
-
|
198 |
-
#: my-calendar-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
#: my-calendar-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
#: my-calendar-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
-
|
227 |
-
|
228 |
-
#: my-calendar-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
#: my-calendar-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
#: my-calendar-
|
242 |
-
#: my-calendar-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
#: my-calendar-
|
249 |
-
#: my-calendar-
|
250 |
-
|
251 |
-
msgid "
|
252 |
-
msgstr "
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
#: my-calendar-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
#: my-calendar-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
#: my-calendar-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
#: my-calendar-
|
287 |
-
#: my-calendar-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
msgid "
|
301 |
-
msgstr "
|
302 |
-
|
303 |
-
|
304 |
-
#: my-calendar-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
#: my-calendar-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#: my-calendar-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
msgid "
|
351 |
-
msgstr "
|
352 |
-
|
353 |
-
|
354 |
-
#: my-calendar-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
#: my-calendar-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
#: my-calendar-
|
410 |
-
#: my-calendar-
|
411 |
-
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
-
|
415 |
-
|
416 |
-
#: my-calendar-
|
417 |
-
#: my-calendar-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
#: my-calendar-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
#: my-calendar-
|
446 |
-
#: my-calendar-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
#: my-calendar-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
#: my-calendar
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
#: my-calendar-event-manager.php:
|
464 |
-
#: my-calendar-group-manager.php:
|
465 |
-
|
466 |
-
msgid "
|
467 |
-
msgstr "
|
468 |
-
|
469 |
-
|
470 |
-
#: my-calendar-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
#: my-calendar-
|
476 |
-
#: my-calendar-
|
477 |
-
#: my-calendar-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
#: my-calendar-event-manager.php:
|
489 |
-
#: my-calendar-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
#: my-calendar-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
#: my-calendar-
|
518 |
-
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
-
|
522 |
-
|
523 |
-
#: my-calendar-
|
524 |
-
#: my-calendar
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
#: my-calendar-
|
535 |
-
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
-
|
539 |
-
|
540 |
-
#: my-calendar-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
#: my-calendar-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
563 |
-
|
564 |
-
|
565 |
-
#: my-calendar-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
#: my-calendar-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
#: my-calendar-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
#: my-calendar-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
#:
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
#: my-calendar-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
#: my-calendar-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
#: my-calendar-event-manager.php:
|
633 |
-
#: my-calendar-
|
634 |
-
#: my-calendar-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
#: my-calendar-event-manager.php:
|
640 |
-
#: my-calendar-event-manager.php:
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
#: my-calendar-
|
646 |
-
#: my-calendar-group-manager.php:
|
647 |
-
#: my-calendar-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
#: my-calendar-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
#: my-calendar-event-manager.php:
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
msgid "
|
674 |
-
msgstr "
|
675 |
-
|
676 |
-
|
677 |
-
#: my-calendar-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
#: my-calendar-event-manager.php:
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
#: my-calendar-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
#: my-calendar-event-manager.php:
|
693 |
-
#: my-calendar-group-manager.php:
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
#: my-calendar-event-manager.php:
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
#: my-calendar-event-manager.php:
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
#: my-calendar-
|
735 |
-
#: my-calendar-group-manager.php:
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
#: my-calendar-event-manager.php:
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
#: my-calendar-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
#: my-calendar-event-manager.php:
|
803 |
-
#: my-calendar-group-manager.php:
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
#: my-calendar-event-manager.php:
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
#: my-calendar-
|
844 |
-
|
845 |
-
msgid "
|
846 |
-
msgstr "
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
#: my-calendar-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
#: my-calendar-
|
879 |
-
|
880 |
-
msgid "
|
881 |
-
msgstr "
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
#: my-calendar-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
#: my-calendar-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
#: my-calendar-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
#: my-calendar-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
#: my-calendar-
|
1045 |
-
|
1046 |
-
msgid "
|
1047 |
-
msgstr "
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
#: my-calendar-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
#: my-calendar-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
#: my-calendar-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
#: my-calendar-
|
1117 |
-
|
1118 |
-
msgid "
|
1119 |
-
msgstr "
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
#: my-calendar-
|
1132 |
-
|
1133 |
-
msgid "
|
1134 |
-
msgstr "
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
#: my-calendar-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
#: my-calendar-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
#: my-calendar-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
#: my-calendar-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
#: my-calendar-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
#: my-calendar-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
#: my-calendar-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
#: my-calendar-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
#: my-calendar-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
#: my-calendar-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
#: my-calendar-
|
1259 |
-
#: my-calendar-
|
1260 |
-
#: my-calendar-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
#: my-calendar-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
#: my-calendar-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
#: my-calendar-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
#: my-calendar-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
#: my-calendar-
|
1301 |
-
|
1302 |
-
msgid "
|
1303 |
-
msgstr "
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
#: my-calendar-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
#: my-calendar-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
#: my-calendar-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
msgid "
|
1373 |
-
msgstr "
|
1374 |
-
|
1375 |
-
|
1376 |
-
#: my-calendar.php:
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
#: my-calendar-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
#: my-calendar-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
#: my-calendar-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
#: my-calendar-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
#: my-calendar-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
#: my-calendar-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
#: my-calendar-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
#:
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
#:
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
#:
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
#: my-calendar-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
#: my-calendar-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
#: my-calendar-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
#: my-calendar-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
#: my-calendar-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
#: my-calendar-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
msgid "
|
1831 |
-
msgstr ""
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
msgid "
|
1836 |
-
msgstr ""
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
msgid "
|
1841 |
-
msgstr ""
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
msgid "
|
1846 |
-
msgstr ""
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
msgid "
|
1851 |
-
msgstr ""
|
1852 |
-
|
1853 |
-
|
1854 |
-
#: my-calendar-
|
1855 |
-
#: my-calendar-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
#: my-calendar-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
#: my-calendar-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
msgid "
|
1877 |
-
msgstr ""
|
1878 |
-
|
1879 |
-
|
1880 |
-
#: my-calendar-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
#: my-calendar-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
msgid "
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
#: my-calendar-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
#: my-calendar-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
#: my-calendar-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
#: my-calendar-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
msgid "
|
1987 |
-
msgstr ""
|
1988 |
-
|
1989 |
-
|
1990 |
-
#: my-calendar-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
msgid "
|
2037 |
-
msgstr ""
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
msgid "
|
2042 |
-
msgstr ""
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
msgid "
|
2047 |
-
msgstr ""
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
msgid "
|
2052 |
-
msgstr ""
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
msgid "
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
msgid "
|
2062 |
-
msgstr ""
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
msgid "
|
2067 |
-
msgstr ""
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
msgid "
|
2088 |
-
msgstr ""
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
msgid "
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
msgid "
|
2286 |
-
msgstr ""
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
msgid "
|
2291 |
-
msgstr ""
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
msgid "
|
2296 |
-
msgstr ""
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
msgid "
|
2301 |
-
msgstr ""
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
msgid "
|
2306 |
-
msgstr ""
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
msgid "
|
2311 |
-
msgstr ""
|
2312 |
-
|
2313 |
-
|
2314 |
-
#: my-calendar-
|
2315 |
-
|
2316 |
-
msgid "
|
2317 |
-
msgstr ""
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
msgid "
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
msgid "
|
2327 |
-
msgstr ""
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
#: my-calendar-
|
2342 |
-
|
2343 |
-
msgid "
|
2344 |
-
msgstr ""
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
msgid "
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
|
2398 |
-
#: my-calendar-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
#: my-calendar-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
#: my-calendar-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
#: my-calendar-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
msgid "
|
2497 |
-
msgstr ""
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
msgid "
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
msgid "
|
2507 |
-
msgstr ""
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
msgid "
|
2512 |
-
msgstr ""
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
msgid "
|
2517 |
-
msgstr ""
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
msgid "
|
2522 |
-
msgstr ""
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
msgid "
|
2527 |
-
msgstr ""
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
msgid "
|
2532 |
-
msgstr ""
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
msgid "
|
2537 |
-
msgstr ""
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
msgid "
|
2644 |
-
msgstr ""
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
msgid "
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
msgid "
|
2654 |
-
msgstr ""
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
msgid "
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
msgid "
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
msgid "
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
msgid "
|
2674 |
-
msgstr ""
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
msgid "
|
2679 |
-
msgstr ""
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
msgid "
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
msgid "
|
2689 |
-
msgstr ""
|
2690 |
-
|
2691 |
-
|
2692 |
-
#: my-calendar-settings.php:
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
#: my-calendar-settings.php:
|
2698 |
-
#: my-calendar-settings.php:
|
2699 |
-
|
2700 |
-
msgid "
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
msgid "
|
2706 |
-
msgstr ""
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
msgid "
|
2711 |
-
msgstr ""
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
msgid "
|
2716 |
-
msgstr ""
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
msgid "
|
2721 |
-
msgstr ""
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
msgid "
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
msgid "Show
|
2731 |
-
msgstr ""
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
msgid "
|
2736 |
-
msgstr ""
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
msgid "
|
2741 |
-
msgstr ""
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
msgid "
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
msgid "
|
2751 |
-
msgstr ""
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
msgid "
|
2756 |
-
msgstr ""
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
msgid "
|
2761 |
-
msgstr ""
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
msgid "
|
2766 |
-
msgstr ""
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
msgid "
|
2771 |
-
msgstr ""
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
msgid "Event
|
2776 |
-
msgstr ""
|
2777 |
-
|
2778 |
-
|
2779 |
-
#: my-calendar-settings.php:
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
#: my-calendar-settings.php:
|
2785 |
-
|
2786 |
-
msgid "
|
2787 |
-
msgstr ""
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
msgid "
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
msgid "Location
|
2923 |
-
msgstr ""
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
msgid "
|
2928 |
-
msgstr ""
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
msgid "
|
2933 |
-
msgstr ""
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
msgid "
|
2938 |
-
msgstr ""
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
msgid "
|
2943 |
-
msgstr ""
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
msgid "
|
2948 |
-
msgstr ""
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
msgid "
|
2953 |
-
msgstr ""
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
msgid "
|
2958 |
-
msgstr ""
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
msgid "
|
2963 |
-
msgstr ""
|
2964 |
-
|
2965 |
-
|
2966 |
-
|
2967 |
-
msgid "
|
2968 |
-
msgstr ""
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
msgid "
|
2973 |
-
msgstr ""
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
msgid "
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
msgid "
|
2983 |
-
msgstr ""
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
msgid "
|
2988 |
-
msgstr ""
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
msgid "
|
2993 |
-
msgstr ""
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
msgid "
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
|
3001 |
-
|
3002 |
-
msgid "
|
3003 |
-
msgstr ""
|
3004 |
-
|
3005 |
-
|
3006 |
-
|
3007 |
-
msgid "
|
3008 |
-
msgstr ""
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
msgid "
|
3013 |
-
msgstr ""
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
msgid "
|
3018 |
-
msgstr ""
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
msgid "
|
3023 |
-
msgstr ""
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
msgid "
|
3028 |
-
msgstr ""
|
3029 |
-
|
3030 |
-
|
3031 |
-
|
3032 |
-
msgid "
|
3033 |
-
msgstr ""
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
msgid "
|
3038 |
-
msgstr ""
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
msgid "
|
3043 |
-
msgstr ""
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
msgid "
|
3048 |
-
msgstr ""
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
msgid "
|
3053 |
-
msgstr ""
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
#: my-calendar-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
msgid "
|
3078 |
-
msgstr ""
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
msgid "
|
3083 |
-
msgstr ""
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
msgid "
|
3088 |
-
msgstr ""
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
msgid "
|
3093 |
-
msgstr ""
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
msgid "
|
3098 |
-
msgstr ""
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
msgid "
|
3103 |
-
msgstr ""
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
msgid "
|
3108 |
-
msgstr ""
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
msgid "
|
3113 |
-
msgstr ""
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
msgid "
|
3118 |
-
msgstr ""
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
msgid "
|
3123 |
-
msgstr ""
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
msgid "
|
3128 |
-
msgstr ""
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
|
3347 |
-
|
3348 |
-
|
3349 |
-
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
msgid "
|
3380 |
-
msgstr ""
|
3381 |
-
|
3382 |
-
|
3383 |
-
#: my-calendar-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
3388 |
-
#: my-calendar-
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
|
3399 |
-
|
3400 |
-
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
|
3454 |
-
|
3455 |
-
|
3456 |
-
|
3457 |
-
|
3458 |
-
|
3459 |
-
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
|
3464 |
-
|
3465 |
-
|
3466 |
-
|
3467 |
-
|
3468 |
-
|
3469 |
-
|
3470 |
-
|
3471 |
-
|
3472 |
-
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
|
3481 |
-
|
3482 |
-
|
3483 |
-
|
3484 |
-
|
3485 |
-
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
|
3496 |
-
|
3497 |
-
|
3498 |
-
|
3499 |
-
|
3500 |
-
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
#: my-calendar-
|
3529 |
-
|
3530 |
-
|
3531 |
-
|
3532 |
-
|
3533 |
-
#: my-calendar-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
#: my-calendar-
|
3539 |
-
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
#: my-calendar-
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
|
3548 |
-
#: my-calendar-
|
3549 |
-
|
3550 |
-
|
3551 |
-
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
|
3556 |
-
|
3557 |
-
|
3558 |
-
|
3559 |
-
|
3560 |
-
|
3561 |
-
|
3562 |
-
|
3563 |
-
|
3564 |
-
|
3565 |
-
|
3566 |
-
|
3567 |
-
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
3571 |
-
|
3572 |
-
|
3573 |
-
|
3574 |
-
|
3575 |
-
|
3576 |
-
|
3577 |
-
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
|
3584 |
-
|
3585 |
-
|
3586 |
-
|
3587 |
-
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
3591 |
-
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
3596 |
-
|
3597 |
-
|
3598 |
-
|
3599 |
-
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
3603 |
-
|
3604 |
-
|
3605 |
-
|
3606 |
-
|
3607 |
-
|
3608 |
-
|
3609 |
-
|
3610 |
-
#: my-calendar-
|
3611 |
-
|
3612 |
-
|
3613 |
-
|
3614 |
-
|
3615 |
-
#: my-calendar-
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
|
3620 |
-
#: my-calendar-
|
3621 |
-
|
3622 |
-
|
3623 |
-
|
3624 |
-
|
3625 |
-
|
3626 |
-
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
|
3632 |
-
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
|
3637 |
-
|
3638 |
-
|
3639 |
-
|
3640 |
-
|
3641 |
-
#: my-calendar-
|
3642 |
-
|
3643 |
-
|
3644 |
-
|
3645 |
-
|
3646 |
-
#: my-calendar-
|
3647 |
-
|
3648 |
-
|
3649 |
-
|
3650 |
-
|
3651 |
-
#: my-calendar-
|
3652 |
-
|
3653 |
-
msgid "
|
3654 |
-
msgstr ""
|
3655 |
-
|
3656 |
-
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
|
3676 |
-
|
3677 |
-
|
3678 |
-
|
3679 |
-
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
3683 |
-
|
3684 |
-
|
3685 |
-
|
3686 |
-
|
3687 |
-
|
3688 |
-
|
3689 |
-
|
3690 |
-
|
3691 |
-
|
3692 |
-
|
3693 |
-
|
3694 |
-
|
3695 |
-
|
3696 |
-
|
3697 |
-
|
3698 |
-
|
3699 |
-
|
3700 |
-
|
3701 |
-
|
3702 |
-
|
3703 |
-
|
3704 |
-
|
3705 |
-
|
3706 |
-
|
3707 |
-
|
3708 |
-
|
3709 |
-
|
3710 |
-
|
3711 |
-
|
3712 |
-
|
3713 |
-
|
3714 |
-
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
3718 |
-
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
|
3727 |
-
|
3728 |
-
|
3729 |
-
|
3730 |
-
|
3731 |
-
|
3732 |
-
|
3733 |
-
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
|
3738 |
-
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
3769 |
-
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
3773 |
-
|
3774 |
-
|
3775 |
-
|
3776 |
-
|
3777 |
-
#: my-calendar
|
3778 |
-
|
3779 |
-
|
3780 |
-
|
3781 |
-
|
3782 |
-
#: my-calendar
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
|
3787 |
-
#: my-calendar
|
3788 |
-
|
3789 |
-
|
3790 |
-
|
3791 |
-
|
3792 |
-
#: my-calendar
|
3793 |
-
|
3794 |
-
|
3795 |
-
|
3796 |
-
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
-
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
|
3811 |
-
|
3812 |
-
|
3813 |
-
|
3814 |
-
|
3815 |
-
|
3816 |
-
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
|
3821 |
-
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
|
3826 |
-
|
3827 |
-
|
3828 |
-
|
3829 |
-
|
3830 |
-
|
3831 |
-
|
3832 |
-
|
3833 |
-
|
3834 |
-
msgid "
|
3835 |
-
msgstr ""
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: My Calendar 1.10.12\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
5 |
+
"POT-Creation-Date: 2012-03-06 21:32:54+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-03-13 21:38+0100\n"
|
7 |
+
"Last-Translator: globus2008 <globus@email.cz>\n"
|
8 |
+
"Language-Team: globus2008 <globus@email.cz>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Czech\n"
|
14 |
+
"X-Poedit-Country: CZECH REPUBLIC\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
# @ my-calendar
|
22 |
+
#: button/generator.php:12
|
23 |
+
msgid "You don't have access to this function."
|
24 |
+
msgstr "Nemáte přístup k této funkci."
|
25 |
+
|
26 |
+
# @ my-calendar
|
27 |
+
#: button/generator.php:18
|
28 |
+
#: button/generator.php:44
|
29 |
+
msgid "My Calendar Shortcode Generator"
|
30 |
+
msgstr "Generát kódu pluginu kalendáře"
|
31 |
+
|
32 |
+
# @ my-calendar
|
33 |
+
#: button/generator.php:47
|
34 |
+
msgid "Shortcode Attributes"
|
35 |
+
msgstr "Atributy kódu"
|
36 |
+
|
37 |
+
# @ my-calendar
|
38 |
+
#: button/generator.php:52
|
39 |
+
msgid "Location filter type:"
|
40 |
+
msgstr "Typ filtru místa konání:"
|
41 |
+
|
42 |
+
# @ my-calendar
|
43 |
+
#: button/generator.php:54
|
44 |
+
msgid "All locations"
|
45 |
+
msgstr "Všechna místa konání"
|
46 |
+
|
47 |
+
# @ my-calendar
|
48 |
+
#: button/generator.php:55
|
49 |
+
#: my-calendar-settings.php:513
|
50 |
+
#: my-calendar-settings.php:686
|
51 |
+
msgid "Location Name"
|
52 |
+
msgstr "Jméno místa konání:"
|
53 |
+
|
54 |
+
# @ my-calendar
|
55 |
+
#: button/generator.php:56
|
56 |
+
#: my-calendar-event-manager.php:762
|
57 |
+
#: my-calendar-group-manager.php:460
|
58 |
+
#: my-calendar-locations.php:150
|
59 |
+
#: my-calendar-settings.php:687
|
60 |
+
msgid "City"
|
61 |
+
msgstr "Město"
|
62 |
+
|
63 |
+
# @ my-calendar
|
64 |
+
#: button/generator.php:57
|
65 |
+
#: my-calendar-event-manager.php:809
|
66 |
+
#: my-calendar-group-manager.php:475
|
67 |
+
#: my-calendar-locations.php:197
|
68 |
+
msgid "State"
|
69 |
+
msgstr "Stát"
|
70 |
+
|
71 |
+
# @ my-calendar
|
72 |
+
#: button/generator.php:58
|
73 |
+
#: my-calendar-event-manager.php:776
|
74 |
+
#: my-calendar-group-manager.php:460
|
75 |
+
#: my-calendar-locations.php:164
|
76 |
+
#: my-calendar-settings.php:690
|
77 |
+
msgid "Postal Code"
|
78 |
+
msgstr "PSČ"
|
79 |
+
|
80 |
+
# @ my-calendar
|
81 |
+
#: button/generator.php:59
|
82 |
+
#: my-calendar-event-manager.php:794
|
83 |
+
#: my-calendar-group-manager.php:466
|
84 |
+
#: my-calendar-locations.php:182
|
85 |
+
#: my-calendar-settings.php:689
|
86 |
+
msgid "Country"
|
87 |
+
msgstr "Země"
|
88 |
+
|
89 |
+
# @ my-calendar
|
90 |
+
#: button/generator.php:60
|
91 |
+
#: my-calendar-event-manager.php:785
|
92 |
+
#: my-calendar-event-manager.php:810
|
93 |
+
#: my-calendar-group-manager.php:463
|
94 |
+
#: my-calendar-group-manager.php:476
|
95 |
+
#: my-calendar-locations.php:173
|
96 |
+
#: my-calendar-locations.php:198
|
97 |
+
#: my-calendar-settings.php:691
|
98 |
+
msgid "Region"
|
99 |
+
msgstr "Region"
|
100 |
+
|
101 |
+
# @ my-calendar
|
102 |
+
#: button/generator.php:64
|
103 |
+
msgid "Location filter value:"
|
104 |
+
msgstr "Hodnota filtru místa konání:"
|
105 |
+
|
106 |
+
# @ my-calendar
|
107 |
+
#: button/generator.php:68
|
108 |
+
msgid "Format"
|
109 |
+
msgstr "Formát"
|
110 |
+
|
111 |
+
# @ my-calendar
|
112 |
+
#: button/generator.php:70
|
113 |
+
msgid "Grid"
|
114 |
+
msgstr "Mřížka"
|
115 |
+
|
116 |
+
# @ my-calendar
|
117 |
+
#: button/generator.php:71
|
118 |
+
msgid "List"
|
119 |
+
msgstr "Seznam"
|
120 |
+
|
121 |
+
# @ my-calendar
|
122 |
+
#: button/generator.php:75
|
123 |
+
msgid "Show Category Key"
|
124 |
+
msgstr "Ukázat klíč kategorie"
|
125 |
+
|
126 |
+
# @ my-calendar
|
127 |
+
#: button/generator.php:77
|
128 |
+
#: button/generator.php:84
|
129 |
+
#: button/generator.php:91
|
130 |
+
#: my-calendar-widgets.php:580
|
131 |
+
#: my-calendar-widgets.php:586
|
132 |
+
msgid "Yes"
|
133 |
+
msgstr "Ano"
|
134 |
+
|
135 |
+
# @ my-calendar
|
136 |
+
#: button/generator.php:78
|
137 |
+
#: button/generator.php:85
|
138 |
+
#: button/generator.php:92
|
139 |
+
#: my-calendar-widgets.php:581
|
140 |
+
#: my-calendar-widgets.php:587
|
141 |
+
msgid "No"
|
142 |
+
msgstr "Ne"
|
143 |
+
|
144 |
+
# @ my-calendar
|
145 |
+
#: button/generator.php:82
|
146 |
+
msgid "Show Previous/Next Links"
|
147 |
+
msgstr "Ukázat předchozí/následující linky"
|
148 |
+
|
149 |
+
# @ my-calendar
|
150 |
+
#: button/generator.php:89
|
151 |
+
msgid "Show Format Toggle"
|
152 |
+
msgstr "Ukázat přepínání formátu"
|
153 |
+
|
154 |
+
# @ my-calendar
|
155 |
+
#: button/generator.php:96
|
156 |
+
msgid "Time Segment"
|
157 |
+
msgstr "Segment času"
|
158 |
+
|
159 |
+
# @ my-calendar
|
160 |
+
#: button/generator.php:98
|
161 |
+
#: my-calendar-output.php:356
|
162 |
+
#: my-calendar-widgets.php:592
|
163 |
+
msgid "Month"
|
164 |
+
msgstr "Měsíc"
|
165 |
+
|
166 |
+
# @ my-calendar
|
167 |
+
#: button/generator.php:99
|
168 |
+
#: my-calendar-widgets.php:593
|
169 |
+
msgid "Week"
|
170 |
+
msgstr "Týden"
|
171 |
+
|
172 |
+
# @ my-calendar
|
173 |
+
#: button/generator.php:100
|
174 |
+
msgid "Day"
|
175 |
+
msgstr "Den"
|
176 |
+
|
177 |
+
# @ my-calendar
|
178 |
+
#: button/generator.php:105
|
179 |
+
msgid "Generate Shortcode"
|
180 |
+
msgstr "Generovat kód"
|
181 |
+
|
182 |
+
# @ my-calendar
|
183 |
+
#: button/generator.php:107
|
184 |
+
msgid "<strong>Note:</strong> If you provide a location filter value, it must be an exact match for that information as saved with your events. (e.g. \"Saint Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
185 |
+
msgstr "<strong>Poznámka:</strong> Pokud poskytnete hodnotu filtru místa konání, musí se jednat o přesné zadání, které bylo uloženo ve Vaší události, (např.. \"Týnec nad Sázavou\"není to samé co \"týnec nad sázavou\" nebo \"Týnec n.Sázavou\")"
|
186 |
+
|
187 |
+
# @ my-calendar
|
188 |
+
#: button/generator.php:117
|
189 |
+
msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
|
190 |
+
msgstr "Kalendář: tento generátor nevloží kód do Vaší stránky. Promiňte!"
|
191 |
+
|
192 |
+
# @ my-calendar
|
193 |
+
#: my-calendar-behaviors.php:43
|
194 |
+
msgid "Behavior Settings saved"
|
195 |
+
msgstr "Nastavení chování uloženo"
|
196 |
+
|
197 |
+
# @ my-calendar
|
198 |
+
#: my-calendar-behaviors.php:67
|
199 |
+
msgid "My Calendar Behaviors"
|
200 |
+
msgstr "Chování kalendáře"
|
201 |
+
|
202 |
+
# @ my-calendar
|
203 |
+
#: my-calendar-behaviors.php:72
|
204 |
+
msgid "Calendar Behavior Settings"
|
205 |
+
msgstr "Nastavení chování kalendáře"
|
206 |
+
|
207 |
+
# @ my-calendar
|
208 |
+
#: my-calendar-behaviors.php:77
|
209 |
+
msgid "Apply JavaScript only on these pages (comma separated page IDs)"
|
210 |
+
msgstr "Použijte JavaScript pouze u těchto stránek (čárkou oddělte ID stránek)"
|
211 |
+
|
212 |
+
# @ my-calendar
|
213 |
+
#: my-calendar-behaviors.php:80
|
214 |
+
msgid "Details boxes are draggable"
|
215 |
+
msgstr "Detaily rámečků možné uchopit a přemístit"
|
216 |
+
|
217 |
+
# @ my-calendar
|
218 |
+
#: my-calendar-behaviors.php:83
|
219 |
+
msgid "Calendar Behaviors: Calendar View"
|
220 |
+
msgstr "Chování kalendáře: Zobrazení kalendáře"
|
221 |
+
|
222 |
+
# @ my-calendar
|
223 |
+
#: my-calendar-behaviors.php:85
|
224 |
+
msgid "Update/Reset the My Calendar Calendar Javascript"
|
225 |
+
msgstr "Aktualizovat/resetovat Javascript kalendáře"
|
226 |
+
|
227 |
+
# @ my-calendar
|
228 |
+
#: my-calendar-behaviors.php:85
|
229 |
+
msgid "Disable Calendar Javascript Effects"
|
230 |
+
msgstr "Zakázat Javascriptové efekty kalendáře"
|
231 |
+
|
232 |
+
# @ my-calendar
|
233 |
+
#: my-calendar-behaviors.php:88
|
234 |
+
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
235 |
+
msgstr "Upravit jQuery skripty pro Kalendářový mód"
|
236 |
+
|
237 |
+
# @ my-calendar
|
238 |
+
#: my-calendar-behaviors.php:91
|
239 |
+
#: my-calendar-behaviors.php:122
|
240 |
+
#: my-calendar-behaviors.php:153
|
241 |
+
#: my-calendar-behaviors.php:184
|
242 |
+
#: my-calendar-behaviors.php:205
|
243 |
+
msgid "Save"
|
244 |
+
msgstr "Uložit"
|
245 |
+
|
246 |
+
# @ my-calendar
|
247 |
+
#: my-calendar-behaviors.php:100
|
248 |
+
#: my-calendar-behaviors.php:131
|
249 |
+
#: my-calendar-behaviors.php:162
|
250 |
+
#: my-calendar-behaviors.php:192
|
251 |
+
msgid "Comparing scripts with latest installed version of My Calendar"
|
252 |
+
msgstr "Porovnávání scriptů s naposledy instalovanou verzí Kalendáře"
|
253 |
+
|
254 |
+
# @ my-calendar
|
255 |
+
#: my-calendar-behaviors.php:100
|
256 |
+
#: my-calendar-behaviors.php:131
|
257 |
+
#: my-calendar-behaviors.php:162
|
258 |
+
#: my-calendar-behaviors.php:192
|
259 |
+
#: my-calendar-styles.php:208
|
260 |
+
msgid "Latest (from plugin)"
|
261 |
+
msgstr "Poslední (z pluginu)"
|
262 |
+
|
263 |
+
# @ my-calendar
|
264 |
+
#: my-calendar-behaviors.php:100
|
265 |
+
#: my-calendar-behaviors.php:131
|
266 |
+
#: my-calendar-behaviors.php:162
|
267 |
+
#: my-calendar-behaviors.php:192
|
268 |
+
#: my-calendar-styles.php:208
|
269 |
+
msgid "Current (in use)"
|
270 |
+
msgstr "Aktuální (používan)"
|
271 |
+
|
272 |
+
# @ my-calendar
|
273 |
+
#: my-calendar-behaviors.php:104
|
274 |
+
msgid "There have been updates to the calendar view scripts."
|
275 |
+
msgstr "Byly zde aktualizace scriptů pro prohlížení kalendáře."
|
276 |
+
|
277 |
+
# @ my-calendar
|
278 |
+
#: my-calendar-behaviors.php:104
|
279 |
+
#: my-calendar-behaviors.php:135
|
280 |
+
#: my-calendar-behaviors.php:166
|
281 |
+
#: my-calendar-behaviors.php:196
|
282 |
+
msgid "Compare your scripts with latest installed version of My Calendar."
|
283 |
+
msgstr "Porovnatí scripty s naposledy instalovanou verzí Kalendáře"
|
284 |
+
|
285 |
+
# @ my-calendar
|
286 |
+
#: my-calendar-behaviors.php:108
|
287 |
+
#: my-calendar-behaviors.php:139
|
288 |
+
#: my-calendar-behaviors.php:170
|
289 |
+
#: my-calendar-behaviors.php:200
|
290 |
+
msgid "Your script matches that included with My Calendar."
|
291 |
+
msgstr "Vaše scripty se shodují s Kalendářem."
|
292 |
+
|
293 |
+
# @ my-calendar
|
294 |
+
#: my-calendar-behaviors.php:114
|
295 |
+
msgid "Calendar Behaviors: List View"
|
296 |
+
msgstr "Chování kalendáře: Seznamové zobrazení"
|
297 |
+
|
298 |
+
# @ my-calendar
|
299 |
+
#: my-calendar-behaviors.php:116
|
300 |
+
msgid "Update/Reset the My Calendar List Javascript"
|
301 |
+
msgstr "Aktualizovat/resetovat seznam Javascriptů kalendáře"
|
302 |
+
|
303 |
+
# @ my-calendar
|
304 |
+
#: my-calendar-behaviors.php:116
|
305 |
+
msgid "Disable List Javascript Effects"
|
306 |
+
msgstr "Zakázat Javascriptové efekty v seznamu"
|
307 |
+
|
308 |
+
# @ my-calendar
|
309 |
+
#: my-calendar-behaviors.php:119
|
310 |
+
msgid "Edit the jQuery scripts for My Calendar in List format"
|
311 |
+
msgstr "Upravit jQuery skripty pro seznam"
|
312 |
+
|
313 |
+
# @ my-calendar
|
314 |
+
#: my-calendar-behaviors.php:135
|
315 |
+
msgid "There have been updates to the list view scripts."
|
316 |
+
msgstr "Seznam scriptů byl aktualizován."
|
317 |
+
|
318 |
+
# @ my-calendar
|
319 |
+
#: my-calendar-behaviors.php:145
|
320 |
+
msgid "Calendar Behaviors: Mini Calendar View"
|
321 |
+
msgstr "Chovaní kalendáře: Mini zobrazení"
|
322 |
+
|
323 |
+
# @ my-calendar
|
324 |
+
#: my-calendar-behaviors.php:147
|
325 |
+
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
326 |
+
msgstr "Aktualizovat/resetovat mini formáty Javascriptu kalendáře"
|
327 |
+
|
328 |
+
# @ my-calendar
|
329 |
+
#: my-calendar-behaviors.php:147
|
330 |
+
msgid "Disable Mini Javascript Effects"
|
331 |
+
msgstr "Zakázat javascriptové efekty - Mini"
|
332 |
+
|
333 |
+
# @ my-calendar
|
334 |
+
#: my-calendar-behaviors.php:150
|
335 |
+
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
336 |
+
msgstr "Upravit jQuery skripty pro kalendář v módu Mini"
|
337 |
+
|
338 |
+
# @ my-calendar
|
339 |
+
#: my-calendar-behaviors.php:166
|
340 |
+
msgid "There have been updates to the mini view scripts."
|
341 |
+
msgstr "Mini scriptypro prohlížení kalendáře byly aktualizovány."
|
342 |
+
|
343 |
+
# @ my-calendar
|
344 |
+
#: my-calendar-behaviors.php:176
|
345 |
+
msgid "Calendar Behaviors: AJAX Navigation"
|
346 |
+
msgstr "Chování kalendáře: AJAX navigace"
|
347 |
+
|
348 |
+
# @ my-calendar
|
349 |
+
#: my-calendar-behaviors.php:178
|
350 |
+
msgid "Update/Reset the My Calendar AJAX Javascript"
|
351 |
+
msgstr "Aktualizovat/resetovat AJAX Javascripty kalendáře"
|
352 |
+
|
353 |
+
# @ my-calendar
|
354 |
+
#: my-calendar-behaviors.php:178
|
355 |
+
msgid "Disable AJAX Effects"
|
356 |
+
msgstr "Zakázat AJAX efekty"
|
357 |
+
|
358 |
+
# @ my-calendar
|
359 |
+
#: my-calendar-behaviors.php:181
|
360 |
+
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
361 |
+
msgstr "Editovat jQuery script pro AJAX navigaci kalendáře"
|
362 |
+
|
363 |
+
# @ my-calendar
|
364 |
+
#: my-calendar-behaviors.php:196
|
365 |
+
msgid "There have been updates to the AJAX scripts."
|
366 |
+
msgstr "AJAX scripty byly aktualizovány."
|
367 |
+
|
368 |
+
# @ my-calendar
|
369 |
+
#: my-calendar-behaviors.php:210
|
370 |
+
msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
|
371 |
+
msgstr "Resetování JavaScriptů nastaví scripty do výchozího nastavení pluginu."
|
372 |
+
|
373 |
+
# @ my-calendar
|
374 |
+
#: my-calendar-categories.php:103
|
375 |
+
msgid "Category added successfully"
|
376 |
+
msgstr "Kategorie byla úspěšně přidána"
|
377 |
+
|
378 |
+
# @ my-calendar
|
379 |
+
#: my-calendar-categories.php:105
|
380 |
+
msgid "Category addition failed."
|
381 |
+
msgstr "Přidání kategorie selhalo"
|
382 |
+
|
383 |
+
# @ my-calendar
|
384 |
+
#: my-calendar-categories.php:115
|
385 |
+
msgid "Category deleted successfully. Categories in calendar updated."
|
386 |
+
msgstr "Kategorie byla úspěšně smazána. Kategorie v kalendáři byly aktualizovány."
|
387 |
+
|
388 |
+
# @ my-calendar
|
389 |
+
#: my-calendar-categories.php:117
|
390 |
+
msgid "Category deleted successfully. Categories in calendar not updated."
|
391 |
+
msgstr "Kategorie byla úspěšně smazána. Kategorie v kalendáři se neaktualizovaly."
|
392 |
+
|
393 |
+
# @ my-calendar
|
394 |
+
#: my-calendar-categories.php:119
|
395 |
+
msgid "Category not deleted. Categories in calendar updated."
|
396 |
+
msgstr "Kategorie nebyla odstraněna. Kategorie v kalendáři byly aktualizovány."
|
397 |
+
|
398 |
+
# @ my-calendar
|
399 |
+
#: my-calendar-categories.php:135
|
400 |
+
msgid "Category edited successfully"
|
401 |
+
msgstr "Kategorie byla úspěšně upravena."
|
402 |
+
|
403 |
+
# @ my-calendar
|
404 |
+
#: my-calendar-categories.php:137
|
405 |
+
msgid "Error: Category was not edited."
|
406 |
+
msgstr "Chyba: Kategorie nebyla editována."
|
407 |
+
|
408 |
+
# @ my-calendar
|
409 |
+
#: my-calendar-categories.php:170
|
410 |
+
#: my-calendar-categories.php:195
|
411 |
+
#: my-calendar-categories.php:212
|
412 |
+
msgid "Add Category"
|
413 |
+
msgstr "Přidat kategorii"
|
414 |
+
|
415 |
+
# @ my-calendar
|
416 |
+
#: my-calendar-categories.php:172
|
417 |
+
#: my-calendar-categories.php:195
|
418 |
+
msgid "Edit Category"
|
419 |
+
msgstr "Upravit kategorii"
|
420 |
+
|
421 |
+
# @ my-calendar
|
422 |
+
#: my-calendar-categories.php:179
|
423 |
+
msgid "Category Editor"
|
424 |
+
msgstr "Editor kategorií"
|
425 |
+
|
426 |
+
# @ my-calendar
|
427 |
+
#: my-calendar-categories.php:196
|
428 |
+
#: my-calendar-categories.php:240
|
429 |
+
msgid "Category Name"
|
430 |
+
msgstr "Název kategorie"
|
431 |
+
|
432 |
+
# @ my-calendar
|
433 |
+
#: my-calendar-categories.php:197
|
434 |
+
msgid "Category Color (Hex format)"
|
435 |
+
msgstr "Barva kategorie (Hex format)"
|
436 |
+
|
437 |
+
# @ my-calendar
|
438 |
+
#: my-calendar-categories.php:198
|
439 |
+
#: my-calendar-categories.php:242
|
440 |
+
msgid "Category Icon"
|
441 |
+
msgstr "Ikona kategorie"
|
442 |
+
|
443 |
+
# @ my-calendar
|
444 |
+
#: my-calendar-categories.php:212
|
445 |
+
#: my-calendar-locations.php:215
|
446 |
+
#: my-calendar-styles.php:198
|
447 |
+
msgid "Save Changes"
|
448 |
+
msgstr "Uložit změny"
|
449 |
+
|
450 |
+
# @ my-calendar
|
451 |
+
#: my-calendar-categories.php:218
|
452 |
+
msgid "Add a New Category"
|
453 |
+
msgstr "Vložit novou kategorii"
|
454 |
+
|
455 |
+
# @ my-calendar
|
456 |
+
#: my-calendar-categories.php:228
|
457 |
+
#: my-calendar.php:168
|
458 |
+
msgid "Manage Categories"
|
459 |
+
msgstr "Spravovat kategorie"
|
460 |
+
|
461 |
+
# @ my-calendar
|
462 |
+
#: my-calendar-categories.php:239
|
463 |
+
#: my-calendar-event-manager.php:934
|
464 |
+
#: my-calendar-group-manager.php:706
|
465 |
+
#: my-calendar-locations.php:275
|
466 |
+
msgid "ID"
|
467 |
+
msgstr "Id"
|
468 |
+
|
469 |
+
# @ my-calendar
|
470 |
+
#: my-calendar-categories.php:241
|
471 |
+
msgid "Category Color"
|
472 |
+
msgstr "Barva kategorie"
|
473 |
+
|
474 |
+
# @ my-calendar
|
475 |
+
#: my-calendar-categories.php:243
|
476 |
+
#: my-calendar-categories.php:257
|
477 |
+
#: my-calendar-event-manager.php:1001
|
478 |
+
#: my-calendar-group-manager.php:715
|
479 |
+
#: my-calendar-locations.php:277
|
480 |
+
#: my-calendar-locations.php:289
|
481 |
+
#: my-calendar-output.php:292
|
482 |
+
msgid "Edit"
|
483 |
+
msgstr "Editovat"
|
484 |
+
|
485 |
+
# @ my-calendar
|
486 |
+
#: my-calendar-categories.php:244
|
487 |
+
#: my-calendar-categories.php:263
|
488 |
+
#: my-calendar-event-manager.php:183
|
489 |
+
#: my-calendar-event-manager.php:1004
|
490 |
+
#: my-calendar-locations.php:278
|
491 |
+
#: my-calendar-locations.php:290
|
492 |
+
#: my-calendar-output.php:293
|
493 |
+
msgid "Delete"
|
494 |
+
msgstr "Smazat"
|
495 |
+
|
496 |
+
# @ my-calendar
|
497 |
+
#: my-calendar-categories.php:260
|
498 |
+
#: my-calendar-event-manager.php:982
|
499 |
+
#: my-calendar-group-manager.php:755
|
500 |
+
#: my-calendar-output.php:186
|
501 |
+
#: my-calendar-settings.php:307
|
502 |
+
msgid "N/A"
|
503 |
+
msgstr "N/A"
|
504 |
+
|
505 |
+
# @ my-calendar
|
506 |
+
#: my-calendar-categories.php:263
|
507 |
+
#: my-calendar-locations.php:290
|
508 |
+
msgid "Are you sure you want to delete this category?"
|
509 |
+
msgstr "Opravdu chcete smazat tuto kategorii"
|
510 |
+
|
511 |
+
# @ my-calendar
|
512 |
+
#: my-calendar-categories.php:274
|
513 |
+
msgid "There are no categories in the database - something has gone wrong!"
|
514 |
+
msgstr "V databázi nejsou žádné kategorie. Někde je chyba."
|
515 |
+
|
516 |
+
# @ my-calendar
|
517 |
+
#: my-calendar-core.php:70
|
518 |
+
#: my-calendar.php:171
|
519 |
+
msgid "Settings"
|
520 |
+
msgstr "Nastavení"
|
521 |
+
|
522 |
+
# @ my-calendar
|
523 |
+
#: my-calendar-core.php:71
|
524 |
+
#: my-calendar.php:175
|
525 |
+
msgid "Help"
|
526 |
+
msgstr "Nápověda"
|
527 |
+
|
528 |
+
# @ my-calendar
|
529 |
+
#: my-calendar-core.php:198
|
530 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
531 |
+
msgstr "<br /><strong>Poznámka:</strong> Přečtěte si prosím <a class=\"pole se \" href=\"%1$s\">změnami pluginu</a>před upgradem."
|
532 |
+
|
533 |
+
# @ my-calendar
|
534 |
+
#: my-calendar-core.php:858
|
535 |
+
#: my-calendar-event-manager.php:296
|
536 |
+
msgid "Add Event"
|
537 |
+
msgstr "Přidat událost"
|
538 |
+
|
539 |
+
# @ my-calendar
|
540 |
+
#: my-calendar-core.php:953
|
541 |
+
msgid "You're currently allowing to subscribers to post events, but aren't using Akismet. My Calendar can use Akismet to check for spam in event submissions. <a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>"
|
542 |
+
msgstr "Nyní povolíte čtenářům vkládat události, ale bez používání Akismetu. Kalendář dokáže s použitím Akismetu kontrolovat spam v zadání událostí. <a href='https://akismet.com/signup/'>Získejte Akismet API klíč.</a>"
|
543 |
+
|
544 |
+
# @ my-calendar
|
545 |
+
#: my-calendar-core.php:1078
|
546 |
+
msgid "Is this your calendar page?"
|
547 |
+
msgstr "Je toto stránka Vašeho kalendáře?"
|
548 |
+
|
549 |
+
# @ my-calendar
|
550 |
+
#: my-calendar-core.php:1081
|
551 |
+
msgid "I tried to guess, but don't have a suggestion for you."
|
552 |
+
msgstr "Pokusil jsem se zamyslet, ale nemám pro Vás návrh."
|
553 |
+
|
554 |
+
# @ my-calendar
|
555 |
+
#: my-calendar-core.php:1166
|
556 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
557 |
+
msgstr "Přečtěte si prosím FAQ a další nápovědu předtím, než zašlete požadavek na podporu."
|
558 |
+
|
559 |
+
# @ my-calendar
|
560 |
+
#: my-calendar-core.php:1168
|
561 |
+
msgid "Please describe your problem in detail. I'm not psychic."
|
562 |
+
msgstr "Popište prosím Váš problém do detailu. Nejsem totiž senzibil."
|
563 |
+
|
564 |
+
# @ my-calendar
|
565 |
+
#: my-calendar-core.php:1173
|
566 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
567 |
+
msgstr "Děkuji za podporu při vývoji tohoto pluginu! "
|
568 |
+
|
569 |
+
# @ my-calendar
|
570 |
+
#: my-calendar-core.php:1175
|
571 |
+
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
572 |
+
msgstr "Ozvu se Vám hned, jak to bude možné poté, co se vypořádám s požadavky podpory od plugin podporovatelů."
|
573 |
+
|
574 |
+
# @ my-calendar
|
575 |
+
#: my-calendar-core.php:1185
|
576 |
+
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
577 |
+
msgstr "Prosím mějte na paměti: Uchovávám si záznamy o těch, kteří podpořili plugin, <strong>ale pokud Vaše podpora byla zaslána od někoho jiného než z Vašeho účtu na této webové stránce, prosím uveďte tuto skutečnost ve Vaší zprávě.</strong>"
|
578 |
+
|
579 |
+
# @ my-calendar
|
580 |
+
#: my-calendar-core.php:1187
|
581 |
+
msgid "From:"
|
582 |
+
msgstr "Od:"
|
583 |
+
|
584 |
+
# @ my-calendar
|
585 |
+
#: my-calendar-core.php:1190
|
586 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
587 |
+
msgstr "Přečetl(a) jsem si <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">FAQ (často kladené otázky) pro tento plugin</a>."
|
588 |
+
|
589 |
+
# @ my-calendar
|
590 |
+
#: my-calendar-core.php:1193
|
591 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
592 |
+
msgstr "Zadotoval(a) jsem <a href=\"http://www.joedolson.com/donate.php\">tento plugin</a>."
|
593 |
+
|
594 |
+
# @ my-calendar
|
595 |
+
#: my-calendar-core.php:1196
|
596 |
+
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
597 |
+
msgstr "Zakoupil(a) jsem <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">návod k obsluze</a>, ale nemohu najít odpověď na tuto otázku."
|
598 |
+
|
599 |
+
# @ my-calendar
|
600 |
+
#: my-calendar-core.php:1202
|
601 |
+
msgid "Send Support Request"
|
602 |
+
msgstr "Odeslat požadavek na podporu"
|
603 |
+
|
604 |
+
# @ my-calendar
|
605 |
+
#: my-calendar-core.php:1205
|
606 |
+
msgid "The following additional information will be sent with your support request:"
|
607 |
+
msgstr "Následující dodatečné informace budou odeslány spolu s požadavkem na podporu:"
|
608 |
+
|
609 |
+
# @ my-calendar
|
610 |
+
#: my-calendar-event-manager.php:102
|
611 |
+
#: my-calendar-settings.php:711
|
612 |
+
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?"
|
613 |
+
msgstr "Kalendář zjistil, že máte nainstalován plugin Calendar od Kieran O'Shea. Můžete importovat události a kategorie do tohoto kalendáře. Chcete importovat tyto události?"
|
614 |
+
|
615 |
+
# @ my-calendar
|
616 |
+
#: my-calendar-event-manager.php:109
|
617 |
+
#: my-calendar-settings.php:718
|
618 |
+
msgid "Import from Calendar"
|
619 |
+
msgstr "Importovat z kalendáře"
|
620 |
+
|
621 |
+
# @ my-calendar
|
622 |
+
#: my-calendar-event-manager.php:114
|
623 |
+
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>!"
|
624 |
+
msgstr "I když je možné, že tento import by nemusel importovat události správně, neměl by mít žádný dopad na stávající databáze kalendáře. Pokud narazíte na nějaké problémy, <a href=\"http://www.joedolson.com/contact.php\">Kontaktujte mě prosím </ a>!"
|
625 |
+
|
626 |
+
# @ my-calendar
|
627 |
+
#: my-calendar-event-manager.php:161
|
628 |
+
msgid "%1$d events deleted successfully out of %2$d selected"
|
629 |
+
msgstr "%1$d událostí úspěšně smazáno z %2$d vybraných"
|
630 |
+
|
631 |
+
# @ my-calendar
|
632 |
+
#: my-calendar-event-manager.php:163
|
633 |
+
#: my-calendar-event-manager.php:323
|
634 |
+
#: my-calendar-event-manager.php:356
|
635 |
+
#: my-calendar-event-manager.php:373
|
636 |
+
#: my-calendar-event-manager.php:389
|
637 |
+
#: my-calendar-event-manager.php:1184
|
638 |
+
#: my-calendar-event-manager.php:1187
|
639 |
+
#: my-calendar-event-manager.php:1190
|
640 |
+
#: my-calendar-event-manager.php:1199
|
641 |
+
#: my-calendar-event-manager.php:1206
|
642 |
+
#: my-calendar-event-manager.php:1222
|
643 |
+
#: my-calendar-event-manager.php:1228
|
644 |
+
#: my-calendar-group-manager.php:57
|
645 |
+
#: my-calendar-group-manager.php:83
|
646 |
+
#: my-calendar-group-manager.php:150
|
647 |
+
#: my-calendar-group-manager.php:576
|
648 |
+
msgid "Error"
|
649 |
+
msgstr "Chyba"
|
650 |
+
|
651 |
+
# @ my-calendar
|
652 |
+
#: my-calendar-event-manager.php:163
|
653 |
+
msgid "Your events have not been deleted. Please investigate."
|
654 |
+
msgstr "Vaše události nebyly smazány. Prozkoumejte proč."
|
655 |
+
|
656 |
+
# @ my-calendar
|
657 |
+
#: my-calendar-event-manager.php:174
|
658 |
+
msgid "Delete Event"
|
659 |
+
msgstr "Smazat událost"
|
660 |
+
|
661 |
+
# @ my-calendar
|
662 |
+
#: my-calendar-event-manager.php:174
|
663 |
+
msgid "Are you sure you want to delete this event?"
|
664 |
+
msgstr "Opravdu chcete smazat tuto událost?"
|
665 |
+
|
666 |
+
# @ my-calendar
|
667 |
+
#: my-calendar-event-manager.php:191
|
668 |
+
msgid "You do not have permission to delete that event."
|
669 |
+
msgstr "Nemáte oprávnění smazat tuto událost."
|
670 |
+
|
671 |
+
# @ my-calendar
|
672 |
+
#: my-calendar-event-manager.php:206
|
673 |
+
msgid "You do not have permission to approve that event."
|
674 |
+
msgstr "Nemáte oprávnění schválit tuto událost."
|
675 |
+
|
676 |
+
# @ my-calendar
|
677 |
+
#: my-calendar-event-manager.php:221
|
678 |
+
msgid "You do not have permission to reject that event."
|
679 |
+
msgstr "Nemáte oprávnění zamítnout tuto událost."
|
680 |
+
|
681 |
+
# @ my-calendar
|
682 |
+
#: my-calendar-event-manager.php:263
|
683 |
+
msgid "Currently editing your local calendar"
|
684 |
+
msgstr "Aktuálně editujete Váš místní kalendář"
|
685 |
+
|
686 |
+
# @ my-calendar
|
687 |
+
#: my-calendar-event-manager.php:265
|
688 |
+
msgid "Currently editing your central calendar"
|
689 |
+
msgstr "Aktuálně editujete Váš centrální kalendář"
|
690 |
+
|
691 |
+
# @ my-calendar
|
692 |
+
#: my-calendar-event-manager.php:273
|
693 |
+
#: my-calendar-group-manager.php:773
|
694 |
+
msgid "Edit Event"
|
695 |
+
msgstr "Upravit událost"
|
696 |
+
|
697 |
+
# @ my-calendar
|
698 |
+
#: my-calendar-event-manager.php:277
|
699 |
+
#: my-calendar-event-manager.php:288
|
700 |
+
msgid "You must provide an event id in order to edit it"
|
701 |
+
msgstr "Musíte zadat id události, aby se událost dala editovat"
|
702 |
+
|
703 |
+
# @ my-calendar
|
704 |
+
#: my-calendar-event-manager.php:284
|
705 |
+
msgid "Copy Event"
|
706 |
+
msgstr "Kopírovat událost"
|
707 |
+
|
708 |
+
# @ my-calendar
|
709 |
+
#: my-calendar-event-manager.php:323
|
710 |
+
msgid "I'm sorry! I couldn't add that event to the database."
|
711 |
+
msgstr "Omlouvám se! Nemohl jsem přidat událost do databáze."
|
712 |
+
|
713 |
+
# @ my-calendar
|
714 |
+
#: my-calendar-event-manager.php:333
|
715 |
+
msgid "Event added. It will now show in your calendar."
|
716 |
+
msgstr "Událost přidána. Nyní bude zobrazena v kalendáři."
|
717 |
+
|
718 |
+
# @ my-calendar
|
719 |
+
#: my-calendar-event-manager.php:354
|
720 |
+
#: my-calendar-group-manager.php:55
|
721 |
+
#: my-calendar-group-manager.php:148
|
722 |
+
msgid "View <a href=\"%s\">your calendar</a>."
|
723 |
+
msgstr "Zobrazit <a href=\"%s\">Váš kalendář</a>."
|
724 |
+
|
725 |
+
# @ my-calendar
|
726 |
+
#: my-calendar-event-manager.php:356
|
727 |
+
#: my-calendar-group-manager.php:150
|
728 |
+
msgid "Your event was not updated."
|
729 |
+
msgstr "Vaše událost nebyla aktualizována."
|
730 |
+
|
731 |
+
# @ my-calendar
|
732 |
+
#: my-calendar-event-manager.php:358
|
733 |
+
#: my-calendar-group-manager.php:59
|
734 |
+
#: my-calendar-group-manager.php:85
|
735 |
+
#: my-calendar-group-manager.php:152
|
736 |
+
msgid "Nothing was changed in that update."
|
737 |
+
msgstr "Při aktualizaci se nic nezměnilo."
|
738 |
+
|
739 |
+
# @ my-calendar
|
740 |
+
#: my-calendar-event-manager.php:362
|
741 |
+
#: my-calendar-group-manager.php:61
|
742 |
+
#: my-calendar-group-manager.php:154
|
743 |
+
msgid "Event updated successfully"
|
744 |
+
msgstr "Událost byla úspěšně aktualizována."
|
745 |
+
|
746 |
+
# @ my-calendar
|
747 |
+
#: my-calendar-event-manager.php:366
|
748 |
+
#: my-calendar-group-manager.php:158
|
749 |
+
msgid "You do not have sufficient permissions to edit that event."
|
750 |
+
msgstr "Nemáte dostatečná oprávnění pro úpravy události."
|
751 |
+
|
752 |
+
# @ my-calendar
|
753 |
+
#: my-calendar-event-manager.php:373
|
754 |
+
msgid "You can't delete an event if you haven't submitted an event id"
|
755 |
+
msgstr "Nemůžete smazat událost pokud jste neodeslali ID události"
|
756 |
+
|
757 |
+
# @ my-calendar
|
758 |
+
#: my-calendar-event-manager.php:387
|
759 |
+
msgid "Event deleted successfully"
|
760 |
+
msgstr "Událost byla úspěšně smazána"
|
761 |
+
|
762 |
+
# @ my-calendar
|
763 |
+
#: my-calendar-event-manager.php:389
|
764 |
+
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
765 |
+
msgstr "I přes požadavek na smazání, zůstala událost stále v databázi. Prosím překontrolujte."
|
766 |
+
|
767 |
+
# @ my-calendar
|
768 |
+
#: my-calendar-event-manager.php:401
|
769 |
+
#: my-calendar-group-manager.php:169
|
770 |
+
msgid "Sorry! That's an invalid event key."
|
771 |
+
msgstr "Špatná klíč události."
|
772 |
+
|
773 |
+
# @ my-calendar
|
774 |
+
#: my-calendar-event-manager.php:405
|
775 |
+
#: my-calendar-group-manager.php:173
|
776 |
+
msgid "Sorry! We couldn't find an event with that ID."
|
777 |
+
msgstr "Omlouváme se! Bohužel jsme nenašli událost s tímto ID."
|
778 |
+
|
779 |
+
# @ my-calendar
|
780 |
+
#: my-calendar-event-manager.php:430
|
781 |
+
msgid "This event must be approved in order for it to appear on the calendar."
|
782 |
+
msgstr "Před tím než se událost zobrazí v kalendáři, musí být schválena."
|
783 |
+
|
784 |
+
# @ my-calendar
|
785 |
+
#: my-calendar-event-manager.php:439
|
786 |
+
#: my-calendar-event-manager.php:473
|
787 |
+
msgid "Save Event"
|
788 |
+
msgstr "uložit událost"
|
789 |
+
|
790 |
+
# @ my-calendar
|
791 |
+
#: my-calendar-event-manager.php:483
|
792 |
+
msgid "There was an error acquiring information about this event instance. The date for this event was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
793 |
+
msgstr "Vyzkytla se zde chyba v tomto záznamu události. Datum události nebylo uvedeno. <strong>Nyní editujete celý soubor.</strong>"
|
794 |
+
|
795 |
+
# @ my-calendar
|
796 |
+
#: my-calendar-event-manager.php:487
|
797 |
+
#: my-calendar-group-manager.php:290
|
798 |
+
msgid "Enter your Event Information"
|
799 |
+
msgstr "Vložte informace o události."
|
800 |
+
|
801 |
+
# @ my-calendar
|
802 |
+
#: my-calendar-event-manager.php:489
|
803 |
+
#: my-calendar-group-manager.php:292
|
804 |
+
msgid "Event Title"
|
805 |
+
msgstr "Název události"
|
806 |
+
|
807 |
+
# @ my-calendar
|
808 |
+
#: my-calendar-event-manager.php:489
|
809 |
+
#: my-calendar-event-manager.php:618
|
810 |
+
#: my-calendar-group-manager.php:292
|
811 |
+
msgid "(required)"
|
812 |
+
msgstr "(požadováno)"
|
813 |
+
|
814 |
+
# @ my-calendar
|
815 |
+
#: my-calendar-event-manager.php:493
|
816 |
+
msgid "Publish"
|
817 |
+
msgstr "Publikovat"
|
818 |
+
|
819 |
+
# @ my-calendar
|
820 |
+
#: my-calendar-event-manager.php:493
|
821 |
+
msgid "You must approve this event to promote it to the calendar."
|
822 |
+
msgstr "Musíte schválit událost pro její zobrazení v kalendáři."
|
823 |
+
|
824 |
+
# @ my-calendar
|
825 |
+
#: my-calendar-event-manager.php:495
|
826 |
+
msgid "An administrator must approve your new event."
|
827 |
+
msgstr "Administrátor musí schválit Vaši událost."
|
828 |
+
|
829 |
+
# @ my-calendar
|
830 |
+
#: my-calendar-event-manager.php:508
|
831 |
+
msgid "This event is not spam"
|
832 |
+
msgstr "Tato událost není spam"
|
833 |
+
|
834 |
+
# @ my-calendar
|
835 |
+
#: my-calendar-event-manager.php:515
|
836 |
+
#: my-calendar-group-manager.php:306
|
837 |
+
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
838 |
+
msgstr "Popis události (<abbr title=\"hypertext markup language\">HTML</abbr> povoleno)"
|
839 |
+
|
840 |
+
# @ my-calendar
|
841 |
+
#: my-calendar-event-manager.php:526
|
842 |
+
#: my-calendar-event-manager.php:539
|
843 |
+
#: my-calendar-group-manager.php:317
|
844 |
+
#: my-calendar-group-manager.php:325
|
845 |
+
msgid "This event's image:"
|
846 |
+
msgstr "Obrázek této události:"
|
847 |
+
|
848 |
+
# @ my-calendar
|
849 |
+
#: my-calendar-event-manager.php:528
|
850 |
+
#: my-calendar-group-manager.php:319
|
851 |
+
msgid "Add an image:"
|
852 |
+
msgstr "Vložit obrázek:"
|
853 |
+
|
854 |
+
# @ my-calendar
|
855 |
+
#: my-calendar-event-manager.php:530
|
856 |
+
msgid "(URL to Event image)"
|
857 |
+
msgstr "(URL k obrázku události)"
|
858 |
+
|
859 |
+
# @ my-calendar
|
860 |
+
#: my-calendar-event-manager.php:532
|
861 |
+
#: my-calendar-group-manager.php:319
|
862 |
+
msgid "Upload Image"
|
863 |
+
msgstr "Nahrát obrázek"
|
864 |
+
|
865 |
+
# @ my-calendar
|
866 |
+
#: my-calendar-event-manager.php:532
|
867 |
+
#: my-calendar-group-manager.php:319
|
868 |
+
msgid "Include your image URL or upload an image."
|
869 |
+
msgstr "Zahrňte URL obrázku nebo nahrajte obrázek."
|
870 |
+
|
871 |
+
# @ my-calendar
|
872 |
+
#: my-calendar-event-manager.php:545
|
873 |
+
#: my-calendar-group-manager.php:331
|
874 |
+
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
875 |
+
msgstr "Krátký popisek události (<abbr title=\"hypertext markup language\">HTML</abbr> povoleno)"
|
876 |
+
|
877 |
+
# @ my-calendar
|
878 |
+
#: my-calendar-event-manager.php:549
|
879 |
+
#: my-calendar-group-manager.php:335
|
880 |
+
msgid "Event Host"
|
881 |
+
msgstr "Zadavatel události:"
|
882 |
+
|
883 |
+
# @ my-calendar
|
884 |
+
#: my-calendar-event-manager.php:568
|
885 |
+
#: my-calendar-group-manager.php:354
|
886 |
+
msgid "Event Category"
|
887 |
+
msgstr "Kategorie událostí"
|
888 |
+
|
889 |
+
# @ my-calendar
|
890 |
+
#: my-calendar-event-manager.php:593
|
891 |
+
#: my-calendar-group-manager.php:379
|
892 |
+
msgid "Event Link (Optional)"
|
893 |
+
msgstr "Odkaz (nepovinný)"
|
894 |
+
|
895 |
+
# @ my-calendar
|
896 |
+
#: my-calendar-event-manager.php:593
|
897 |
+
#: my-calendar-group-manager.php:379
|
898 |
+
msgid "This link will expire when the event passes."
|
899 |
+
msgstr "Odkaz nebude platný po uskutečnění události."
|
900 |
+
|
901 |
+
# @ my-calendar
|
902 |
+
#: my-calendar-event-manager.php:601
|
903 |
+
msgid "Event Date and Time"
|
904 |
+
msgstr "Datum a čas události"
|
905 |
+
|
906 |
+
# @ my-calendar
|
907 |
+
#: my-calendar-event-manager.php:618
|
908 |
+
msgid "Start Date (YYYY-MM-DD)"
|
909 |
+
msgstr "Datum začátku (RRRR-MM-DD)"
|
910 |
+
|
911 |
+
# @ my-calendar
|
912 |
+
#: my-calendar-event-manager.php:618
|
913 |
+
msgid "Time (hh:mm am/pm)"
|
914 |
+
msgstr "Čas (hh:mm am/pm)"
|
915 |
+
|
916 |
+
# @ my-calendar
|
917 |
+
#: my-calendar-event-manager.php:627
|
918 |
+
msgid "End Date (YYYY-MM-DD)"
|
919 |
+
msgstr "Datum konce (RRRR-MM-DD)"
|
920 |
+
|
921 |
+
# @ my-calendar
|
922 |
+
#: my-calendar-event-manager.php:627
|
923 |
+
msgid "End Time (hh:mm am/pm)"
|
924 |
+
msgstr "Čas konce (hh:mm am/pm)"
|
925 |
+
|
926 |
+
# @ my-calendar
|
927 |
+
#: my-calendar-event-manager.php:636
|
928 |
+
msgid "This is a multi-day event."
|
929 |
+
msgstr "Jedná se o vícedenní událost."
|
930 |
+
|
931 |
+
# @ my-calendar
|
932 |
+
#: my-calendar-event-manager.php:638
|
933 |
+
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
934 |
+
msgstr "Vložte začátek a konec datumu/času pro každý výskyt události."
|
935 |
+
|
936 |
+
# @ my-calendar
|
937 |
+
#: my-calendar-event-manager.php:638
|
938 |
+
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
939 |
+
msgstr "Toto je vícedenní událost. Vytvoříte jednoduchou událost s více dny/časy; jinak se vytvoří oddělené události pro každý výskyt."
|
940 |
+
|
941 |
+
# @ my-calendar
|
942 |
+
#: my-calendar-event-manager.php:641
|
943 |
+
msgid "Add another occurrence"
|
944 |
+
msgstr "Vložit další opakování události"
|
945 |
+
|
946 |
+
# @ my-calendar
|
947 |
+
#: my-calendar-event-manager.php:642
|
948 |
+
msgid "Remove last occurrence"
|
949 |
+
msgstr "Odebrat poslední výskyt"
|
950 |
+
|
951 |
+
# @ my-calendar
|
952 |
+
#: my-calendar-event-manager.php:646
|
953 |
+
msgid "Current time difference from GMT is "
|
954 |
+
msgstr "Rozdíl místního času a GMT je"
|
955 |
+
|
956 |
+
# @ my-calendar
|
957 |
+
#: my-calendar-event-manager.php:646
|
958 |
+
msgid " hour(s)"
|
959 |
+
msgstr "hodina(y)"
|
960 |
+
|
961 |
+
# @ my-calendar
|
962 |
+
#: my-calendar-event-manager.php:655
|
963 |
+
msgid "Recurring Events"
|
964 |
+
msgstr "Opakující se události"
|
965 |
+
|
966 |
+
# @ my-calendar
|
967 |
+
#: my-calendar-event-manager.php:658
|
968 |
+
msgid "Repeats for"
|
969 |
+
msgstr "Opakovaní"
|
970 |
+
|
971 |
+
# @ my-calendar
|
972 |
+
#: my-calendar-event-manager.php:659
|
973 |
+
msgid "Units"
|
974 |
+
msgstr "Jednotky"
|
975 |
+
|
976 |
+
# @ my-calendar
|
977 |
+
#: my-calendar-event-manager.php:660
|
978 |
+
#: my-calendar-templates.php:115
|
979 |
+
msgid "Does not recur"
|
980 |
+
msgstr "Neopakuje se"
|
981 |
+
|
982 |
+
# @ my-calendar
|
983 |
+
#: my-calendar-event-manager.php:661
|
984 |
+
#: my-calendar-event-manager.php:974
|
985 |
+
#: my-calendar-group-manager.php:747
|
986 |
+
#: my-calendar-templates.php:116
|
987 |
+
msgid "Daily"
|
988 |
+
msgstr "Denně"
|
989 |
+
|
990 |
+
# @ my-calendar
|
991 |
+
#: my-calendar-event-manager.php:662
|
992 |
+
#: my-calendar-templates.php:117
|
993 |
+
msgid "Daily, weekdays only"
|
994 |
+
msgstr "Denně v pracovní dny"
|
995 |
+
|
996 |
+
# @ my-calendar
|
997 |
+
#: my-calendar-event-manager.php:663
|
998 |
+
#: my-calendar-event-manager.php:976
|
999 |
+
#: my-calendar-group-manager.php:749
|
1000 |
+
#: my-calendar-templates.php:118
|
1001 |
+
msgid "Weekly"
|
1002 |
+
msgstr "Týdně"
|
1003 |
+
|
1004 |
+
# @ my-calendar
|
1005 |
+
#: my-calendar-event-manager.php:664
|
1006 |
+
#: my-calendar-templates.php:119
|
1007 |
+
msgid "Bi-weekly"
|
1008 |
+
msgstr "Ob týden"
|
1009 |
+
|
1010 |
+
# @ my-calendar
|
1011 |
+
#: my-calendar-event-manager.php:665
|
1012 |
+
msgid "Date of Month (e.g., the 24th of each month)"
|
1013 |
+
msgstr "Datum měsíce (24. každého měsíce)"
|
1014 |
+
|
1015 |
+
# @ my-calendar
|
1016 |
+
#: my-calendar-event-manager.php:666
|
1017 |
+
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
1018 |
+
msgstr "Den v měsíci (3. pondělí každého měsíce)"
|
1019 |
+
|
1020 |
+
# @ my-calendar
|
1021 |
+
#: my-calendar-event-manager.php:667
|
1022 |
+
#: my-calendar-templates.php:122
|
1023 |
+
msgid "Annually"
|
1024 |
+
msgstr "Ročně"
|
1025 |
+
|
1026 |
+
# @ my-calendar
|
1027 |
+
#: my-calendar-event-manager.php:669
|
1028 |
+
msgid "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."
|
1029 |
+
msgstr "Vložte \"0\" pokud se má událost opakovat po neurčité době. Vaše číslo bude znamenat počet opakování po prvním výskytu události: opakování <em>2 krát</em> znamená, že se v kalendáři událost promítne 3 krát."
|
1030 |
+
|
1031 |
+
# @ my-calendar
|
1032 |
+
#: my-calendar-event-manager.php:686
|
1033 |
+
#: my-calendar-group-manager.php:390
|
1034 |
+
msgid "Event Registration Status"
|
1035 |
+
msgstr "Status registrace události"
|
1036 |
+
|
1037 |
+
# @ my-calendar
|
1038 |
+
#: my-calendar-event-manager.php:687
|
1039 |
+
#: my-calendar-group-manager.php:391
|
1040 |
+
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1041 |
+
msgstr "Kalendář neprovádí registraci k události. Použijte toto pouze jako informaci."
|
1042 |
+
|
1043 |
+
# @ my-calendar
|
1044 |
+
#: my-calendar-event-manager.php:689
|
1045 |
+
#: my-calendar-group-manager.php:393
|
1046 |
+
msgid "Open"
|
1047 |
+
msgstr "Otevřít"
|
1048 |
+
|
1049 |
+
# @ my-calendar
|
1050 |
+
#: my-calendar-event-manager.php:690
|
1051 |
+
#: my-calendar-group-manager.php:394
|
1052 |
+
msgid "Closed"
|
1053 |
+
msgstr "Zavřeno"
|
1054 |
+
|
1055 |
+
# @ my-calendar
|
1056 |
+
#: my-calendar-event-manager.php:691
|
1057 |
+
#: my-calendar-group-manager.php:395
|
1058 |
+
msgid "Does not apply"
|
1059 |
+
msgstr "Neplatí"
|
1060 |
+
|
1061 |
+
# @ my-calendar
|
1062 |
+
#: my-calendar-event-manager.php:694
|
1063 |
+
#: my-calendar-group-manager.php:398
|
1064 |
+
msgid "If this event recurs, it can only be registered for as a complete series."
|
1065 |
+
msgstr "Pokud se událost opakuje, může být registrována pro kompletní sérii "
|
1066 |
+
|
1067 |
+
# @ my-calendar
|
1068 |
+
#: my-calendar-event-manager.php:711
|
1069 |
+
#: my-calendar-group-manager.php:415
|
1070 |
+
#: my-calendar-locations.php:127
|
1071 |
+
msgid "Event Location"
|
1072 |
+
msgstr "Místo události"
|
1073 |
+
|
1074 |
+
# @ my-calendar
|
1075 |
+
#: my-calendar-event-manager.php:718
|
1076 |
+
#: my-calendar-group-manager.php:422
|
1077 |
+
msgid "Choose a preset location:"
|
1078 |
+
msgstr "Vybrat přednastavené místo konání:"
|
1079 |
+
|
1080 |
+
# @ my-calendar
|
1081 |
+
#: my-calendar-event-manager.php:732
|
1082 |
+
#: my-calendar-group-manager.php:436
|
1083 |
+
msgid "Add recurring locations for later use."
|
1084 |
+
msgstr "Přidat opakující se místo konání pro pozdější použití."
|
1085 |
+
|
1086 |
+
# @ my-calendar
|
1087 |
+
#: my-calendar-event-manager.php:741
|
1088 |
+
#: my-calendar-group-manager.php:445
|
1089 |
+
#: my-calendar-locations.php:129
|
1090 |
+
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
1091 |
+
msgstr "Všechna pole jsou volitelná: <em> nedostatečné informace mohou mít za následek nepřesné zobrazení na mapě </ em>."
|
1092 |
+
|
1093 |
+
# @ my-calendar
|
1094 |
+
#: my-calendar-event-manager.php:744
|
1095 |
+
#: my-calendar-group-manager.php:448
|
1096 |
+
#: my-calendar-locations.php:132
|
1097 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
1098 |
+
msgstr "Název místa konání (Např. <em>Rybajzův bar</em>)"
|
1099 |
+
|
1100 |
+
# @ my-calendar
|
1101 |
+
#: my-calendar-event-manager.php:753
|
1102 |
+
#: my-calendar-group-manager.php:451
|
1103 |
+
#: my-calendar-locations.php:141
|
1104 |
+
msgid "Street Address"
|
1105 |
+
msgstr "Ulice"
|
1106 |
+
|
1107 |
+
# @ my-calendar
|
1108 |
+
#: my-calendar-event-manager.php:756
|
1109 |
+
#: my-calendar-group-manager.php:454
|
1110 |
+
#: my-calendar-locations.php:144
|
1111 |
+
msgid "Street Address (2)"
|
1112 |
+
msgstr "Ulice 2"
|
1113 |
+
|
1114 |
+
# @ my-calendar
|
1115 |
+
#: my-calendar-event-manager.php:759
|
1116 |
+
#: my-calendar-group-manager.php:457
|
1117 |
+
#: my-calendar-locations.php:147
|
1118 |
+
msgid "Phone"
|
1119 |
+
msgstr "Telefon"
|
1120 |
+
|
1121 |
+
# @ my-calendar
|
1122 |
+
#: my-calendar-event-manager.php:769
|
1123 |
+
#: my-calendar-group-manager.php:460
|
1124 |
+
#: my-calendar-locations.php:157
|
1125 |
+
#: my-calendar-settings.php:688
|
1126 |
+
msgid "State/Province"
|
1127 |
+
msgstr "Stát / Provincie"
|
1128 |
+
|
1129 |
+
# @ my-calendar
|
1130 |
+
#: my-calendar-event-manager.php:803
|
1131 |
+
#: my-calendar-group-manager.php:469
|
1132 |
+
#: my-calendar-locations.php:191
|
1133 |
+
msgid "Initial Zoom"
|
1134 |
+
msgstr "Počáteční zoom"
|
1135 |
+
|
1136 |
+
# @ my-calendar
|
1137 |
+
#: my-calendar-event-manager.php:805
|
1138 |
+
#: my-calendar-group-manager.php:471
|
1139 |
+
#: my-calendar-locations.php:193
|
1140 |
+
msgid "Neighborhood"
|
1141 |
+
msgstr "Sousedství"
|
1142 |
+
|
1143 |
+
# @ my-calendar
|
1144 |
+
#: my-calendar-event-manager.php:806
|
1145 |
+
#: my-calendar-group-manager.php:472
|
1146 |
+
#: my-calendar-locations.php:194
|
1147 |
+
msgid "Small City"
|
1148 |
+
msgstr "Malé město"
|
1149 |
+
|
1150 |
+
# @ my-calendar
|
1151 |
+
#: my-calendar-event-manager.php:807
|
1152 |
+
#: my-calendar-group-manager.php:473
|
1153 |
+
#: my-calendar-locations.php:195
|
1154 |
+
msgid "Large City"
|
1155 |
+
msgstr "Velké město"
|
1156 |
+
|
1157 |
+
# @ my-calendar
|
1158 |
+
#: my-calendar-event-manager.php:808
|
1159 |
+
#: my-calendar-group-manager.php:474
|
1160 |
+
#: my-calendar-locations.php:196
|
1161 |
+
msgid "Greater Metro Area"
|
1162 |
+
msgstr "Větší oblast"
|
1163 |
+
|
1164 |
+
# @ my-calendar
|
1165 |
+
#: my-calendar-event-manager.php:814
|
1166 |
+
#: my-calendar-group-manager.php:480
|
1167 |
+
msgid "Location URL"
|
1168 |
+
msgstr "URL místa konání"
|
1169 |
+
|
1170 |
+
# @ my-calendar
|
1171 |
+
#: my-calendar-event-manager.php:817
|
1172 |
+
#: my-calendar-group-manager.php:483
|
1173 |
+
#: my-calendar-locations.php:205
|
1174 |
+
msgid "GPS Coordinates (optional)"
|
1175 |
+
msgstr "GPS souřadnice (volitelné)"
|
1176 |
+
|
1177 |
+
# @ my-calendar
|
1178 |
+
#: my-calendar-event-manager.php:819
|
1179 |
+
#: my-calendar-group-manager.php:485
|
1180 |
+
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."
|
1181 |
+
msgstr "Pokud zadáte GPS souřadnice vaší polohy, budou použity místo dalších informací o adrese."
|
1182 |
+
|
1183 |
+
# @ my-calendar
|
1184 |
+
#: my-calendar-event-manager.php:822
|
1185 |
+
#: my-calendar-group-manager.php:488
|
1186 |
+
#: my-calendar-locations.php:210
|
1187 |
+
msgid "Latitude"
|
1188 |
+
msgstr "Zeměpisná šířka"
|
1189 |
+
|
1190 |
+
# @ my-calendar
|
1191 |
+
#: my-calendar-event-manager.php:822
|
1192 |
+
#: my-calendar-group-manager.php:488
|
1193 |
+
#: my-calendar-locations.php:211
|
1194 |
+
msgid "Longitude"
|
1195 |
+
msgstr "Zeměpisná délka"
|
1196 |
+
|
1197 |
+
# @ my-calendar
|
1198 |
+
#: my-calendar-event-manager.php:835
|
1199 |
+
msgid "Special Options"
|
1200 |
+
msgstr "Speciální nastavení"
|
1201 |
+
|
1202 |
+
# @ my-calendar
|
1203 |
+
#: my-calendar-event-manager.php:837
|
1204 |
+
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1205 |
+
msgstr "Zrušte tuto událost, pokud se vyskytne během události zařazené v kategorii svátků"
|
1206 |
+
|
1207 |
+
# @ my-calendar
|
1208 |
+
#: my-calendar-event-manager.php:840
|
1209 |
+
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1210 |
+
msgstr "Pokud se bude tato událost opakovat a připadne na 5-tý týden v měsíci, který má pouze 4 týdny, posuň událost o jeden týden zpět."
|
1211 |
+
|
1212 |
+
# @ my-calendar
|
1213 |
+
#: my-calendar-event-manager.php:916
|
1214 |
+
msgid "Manage Events"
|
1215 |
+
msgstr "Spravovat události"
|
1216 |
+
|
1217 |
+
# @ my-calendar
|
1218 |
+
#: my-calendar-event-manager.php:919
|
1219 |
+
#: my-calendar-templates.php:203
|
1220 |
+
msgid "Published"
|
1221 |
+
msgstr "Publikováno"
|
1222 |
+
|
1223 |
+
# @ my-calendar
|
1224 |
+
#: my-calendar-event-manager.php:920
|
1225 |
+
#: my-calendar-templates.php:203
|
1226 |
+
msgid "Reserved"
|
1227 |
+
msgstr "Rezervováno"
|
1228 |
+
|
1229 |
+
# @ my-calendar
|
1230 |
+
#: my-calendar-event-manager.php:921
|
1231 |
+
msgid "All"
|
1232 |
+
msgstr "Vše"
|
1233 |
+
|
1234 |
+
# @ my-calendar
|
1235 |
+
#: my-calendar-event-manager.php:931
|
1236 |
+
#: my-calendar-group-manager.php:703
|
1237 |
+
msgid "Table of Calendar Events"
|
1238 |
+
msgstr "Tabulka událostí"
|
1239 |
+
|
1240 |
+
# @ my-calendar
|
1241 |
+
#: my-calendar-event-manager.php:935
|
1242 |
+
#: my-calendar-group-manager.php:708
|
1243 |
+
#: my-calendar-settings.php:508
|
1244 |
+
#: my-calendar-widgets.php:38
|
1245 |
+
#: my-calendar-widgets.php:124
|
1246 |
+
#: my-calendar-widgets.php:571
|
1247 |
+
msgid "Title"
|
1248 |
+
msgstr "Název"
|
1249 |
+
|
1250 |
+
# @ my-calendar
|
1251 |
+
#: my-calendar-event-manager.php:936
|
1252 |
+
#: my-calendar-group-manager.php:709
|
1253 |
+
#: my-calendar-locations.php:276
|
1254 |
+
msgid "Location"
|
1255 |
+
msgstr "Místo konání"
|
1256 |
+
|
1257 |
+
# @ my-calendar
|
1258 |
+
#: my-calendar-event-manager.php:937
|
1259 |
+
#: my-calendar-group-manager.php:710
|
1260 |
+
#: my-calendar-settings.php:509
|
1261 |
+
msgid "Description"
|
1262 |
+
msgstr "Popis"
|
1263 |
+
|
1264 |
+
# @ my-calendar
|
1265 |
+
#: my-calendar-event-manager.php:938
|
1266 |
+
#: my-calendar-group-manager.php:711
|
1267 |
+
#: my-calendar-settings.php:510
|
1268 |
+
msgid "Start Date"
|
1269 |
+
msgstr "Datum začátku"
|
1270 |
+
|
1271 |
+
# @ my-calendar
|
1272 |
+
#: my-calendar-event-manager.php:939
|
1273 |
+
#: my-calendar-group-manager.php:712
|
1274 |
+
msgid "Recurs"
|
1275 |
+
msgstr "Opakuje se"
|
1276 |
+
|
1277 |
+
# @ my-calendar
|
1278 |
+
#: my-calendar-event-manager.php:940
|
1279 |
+
#: my-calendar-group-manager.php:713
|
1280 |
+
#: my-calendar-settings.php:251
|
1281 |
+
#: my-calendar-settings.php:260
|
1282 |
+
#: my-calendar-settings.php:268
|
1283 |
+
#: my-calendar-settings.php:511
|
1284 |
+
msgid "Author"
|
1285 |
+
msgstr "Autor"
|
1286 |
+
|
1287 |
+
# @ my-calendar
|
1288 |
+
#: my-calendar-event-manager.php:941
|
1289 |
+
#: my-calendar-group-manager.php:714
|
1290 |
+
#: my-calendar-settings.php:512
|
1291 |
+
msgid "Category"
|
1292 |
+
msgstr "Kategorie"
|
1293 |
+
|
1294 |
+
# @ my-calendar
|
1295 |
+
#: my-calendar-event-manager.php:942
|
1296 |
+
msgid "Edit / Delete"
|
1297 |
+
msgstr "Upravit / Smazat"
|
1298 |
+
|
1299 |
+
# @ my-calendar
|
1300 |
+
#: my-calendar-event-manager.php:973
|
1301 |
+
#: my-calendar-group-manager.php:746
|
1302 |
+
msgid "Never"
|
1303 |
+
msgstr "Nikdy"
|
1304 |
+
|
1305 |
+
# @ my-calendar
|
1306 |
+
#: my-calendar-event-manager.php:975
|
1307 |
+
#: my-calendar-group-manager.php:748
|
1308 |
+
msgid "Weekdays"
|
1309 |
+
msgstr "Pracovní dny"
|
1310 |
+
|
1311 |
+
# @ my-calendar
|
1312 |
+
#: my-calendar-event-manager.php:977
|
1313 |
+
#: my-calendar-group-manager.php:750
|
1314 |
+
msgid "Bi-Weekly"
|
1315 |
+
msgstr "Dvoutýdenní"
|
1316 |
+
|
1317 |
+
# @ my-calendar
|
1318 |
+
#: my-calendar-event-manager.php:978
|
1319 |
+
#: my-calendar-group-manager.php:751
|
1320 |
+
msgid "Monthly (by date)"
|
1321 |
+
msgstr "Měsíčně (podle data)"
|
1322 |
+
|
1323 |
+
# @ my-calendar
|
1324 |
+
#: my-calendar-event-manager.php:979
|
1325 |
+
#: my-calendar-group-manager.php:752
|
1326 |
+
msgid "Monthly (by day)"
|
1327 |
+
msgstr "Měsíčně (podle dne)"
|
1328 |
+
|
1329 |
+
# @ my-calendar
|
1330 |
+
#: my-calendar-event-manager.php:980
|
1331 |
+
#: my-calendar-group-manager.php:753
|
1332 |
+
msgid "Yearly"
|
1333 |
+
msgstr "Ročně"
|
1334 |
+
|
1335 |
+
# @ my-calendar
|
1336 |
+
#: my-calendar-event-manager.php:983
|
1337 |
+
#: my-calendar-group-manager.php:756
|
1338 |
+
msgid "Forever"
|
1339 |
+
msgstr "Navždy"
|
1340 |
+
|
1341 |
+
# @ my-calendar
|
1342 |
+
#: my-calendar-event-manager.php:984
|
1343 |
+
#: my-calendar-group-manager.php:757
|
1344 |
+
msgid "%d Times"
|
1345 |
+
msgstr "%d krát"
|
1346 |
+
|
1347 |
+
# @ my-calendar
|
1348 |
+
#: my-calendar-event-manager.php:999
|
1349 |
+
msgid "Copy"
|
1350 |
+
msgstr "Kopírovat"
|
1351 |
+
|
1352 |
+
# @ my-calendar
|
1353 |
+
#: my-calendar-event-manager.php:1002
|
1354 |
+
#: my-calendar-group-manager.php:775
|
1355 |
+
#: my-calendar-output.php:287
|
1356 |
+
msgid "Edit Group"
|
1357 |
+
msgstr "Editovat skupinu"
|
1358 |
+
|
1359 |
+
# @ my-calendar
|
1360 |
+
#: my-calendar-event-manager.php:1005
|
1361 |
+
#: my-calendar-group-manager.php:779
|
1362 |
+
msgid "Not editable."
|
1363 |
+
msgstr "Neupravitelné"
|
1364 |
+
|
1365 |
+
# @ my-calendar
|
1366 |
+
#: my-calendar-event-manager.php:1011
|
1367 |
+
msgid "Reject"
|
1368 |
+
msgstr "Zamítnout"
|
1369 |
+
|
1370 |
+
# @ my-calendar
|
1371 |
+
#: my-calendar-event-manager.php:1013
|
1372 |
+
msgid "Approve"
|
1373 |
+
msgstr "Schálit"
|
1374 |
+
|
1375 |
+
# @ my-calendar
|
1376 |
+
#: my-calendar-event-manager.php:1018
|
1377 |
+
msgid "Approved"
|
1378 |
+
msgstr "Schváleno"
|
1379 |
+
|
1380 |
+
# @ my-calendar
|
1381 |
+
#: my-calendar-event-manager.php:1020
|
1382 |
+
msgid "Rejected"
|
1383 |
+
msgstr "Zamítnuto"
|
1384 |
+
|
1385 |
+
# @ my-calendar
|
1386 |
+
#: my-calendar-event-manager.php:1022
|
1387 |
+
msgid "Awaiting Approval"
|
1388 |
+
msgstr "Čeká na ověření"
|
1389 |
+
|
1390 |
+
# @ my-calendar
|
1391 |
+
#: my-calendar-event-manager.php:1033
|
1392 |
+
msgid "Delete checked events"
|
1393 |
+
msgstr "Smazat označené události"
|
1394 |
+
|
1395 |
+
# @ my-calendar
|
1396 |
+
#: my-calendar-event-manager.php:1044
|
1397 |
+
#: my-calendar-group-manager.php:793
|
1398 |
+
msgid "There are no events in the database!"
|
1399 |
+
msgstr "V databázi nejsou žádné události"
|
1400 |
+
|
1401 |
+
# @ my-calendar
|
1402 |
+
#: my-calendar-event-manager.php:1184
|
1403 |
+
msgid "Your event end date must be either after or the same as your event begin date"
|
1404 |
+
msgstr "Vaše datum ukončení události musí být buď po začátku události, nebo stejné jako datum zahájení události"
|
1405 |
+
|
1406 |
+
# @ my-calendar
|
1407 |
+
#: my-calendar-event-manager.php:1187
|
1408 |
+
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."
|
1409 |
+
msgstr "Vaše formátování data je správné, ale jedno nebo více z vašich dat, je neplatné. Zkontrolujte, zda počet dní v měsíci a přestupný rok neobsahuje chyby."
|
1410 |
+
|
1411 |
+
# @ my-calendar
|
1412 |
+
#: my-calendar-event-manager.php:1190
|
1413 |
+
msgid "Both start and end dates must be in the format YYYY-MM-DD"
|
1414 |
+
msgstr "Formát data začátku a konce musí být ve formátu RRRR-MM-DD"
|
1415 |
+
|
1416 |
+
# @ my-calendar
|
1417 |
+
#: my-calendar-event-manager.php:1199
|
1418 |
+
msgid "The time field must either be blank or be entered in the format hh:mm"
|
1419 |
+
msgstr "Pole Čas musí být buď prázdné, nebo musí být zadáno ve formátu hh: mm"
|
1420 |
+
|
1421 |
+
# @ my-calendar
|
1422 |
+
#: my-calendar-event-manager.php:1206
|
1423 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm"
|
1424 |
+
msgstr "Pole Čas konce musí být buď prázdné, nebo musí být zadáno ve formátu hh: mm"
|
1425 |
+
|
1426 |
+
# @ my-calendar
|
1427 |
+
#: my-calendar-event-manager.php:1222
|
1428 |
+
#: my-calendar-group-manager.php:576
|
1429 |
+
msgid "The event title must be between 1 and 255 characters in length."
|
1430 |
+
msgstr "Titulek události může být dlouhý 1 - 255 znaků."
|
1431 |
+
|
1432 |
+
# @ my-calendar
|
1433 |
+
#: my-calendar-event-manager.php:1228
|
1434 |
+
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1435 |
+
msgstr "Pokud je vybrán typ opakování, musí být hodnota opakování 0."
|
1436 |
+
|
1437 |
+
# @ my-calendar
|
1438 |
+
#: my-calendar-group-manager.php:57
|
1439 |
+
msgid "Event not updated."
|
1440 |
+
msgstr "Událost nebyla aktualizována."
|
1441 |
+
|
1442 |
+
# @ my-calendar
|
1443 |
+
#: my-calendar-group-manager.php:83
|
1444 |
+
msgid "Event not grouped."
|
1445 |
+
msgstr "Událost nebyla seskupena."
|
1446 |
+
|
1447 |
+
# @ my-calendar
|
1448 |
+
#: my-calendar-group-manager.php:87
|
1449 |
+
msgid "Event grouped successfully"
|
1450 |
+
msgstr "Událost byla zařazena do skupiny."
|
1451 |
+
|
1452 |
+
# @ my-calendar
|
1453 |
+
#: my-calendar-group-manager.php:105
|
1454 |
+
#: my-calendar-group-manager.php:261
|
1455 |
+
#: my-calendar-group-manager.php:287
|
1456 |
+
msgid "Edit Event Group"
|
1457 |
+
msgstr "Editovat skupinu událostí"
|
1458 |
+
|
1459 |
+
# @ my-calendar
|
1460 |
+
#: my-calendar-group-manager.php:109
|
1461 |
+
msgid "You must provide an event group id in order to edit it"
|
1462 |
+
msgstr "Musíte zadat ID skupiny událostí, abyste ji mohli editovat"
|
1463 |
+
|
1464 |
+
# @ my-calendar
|
1465 |
+
#: my-calendar-group-manager.php:117
|
1466 |
+
#: my-calendar.php:169
|
1467 |
+
msgid "Manage Event Groups"
|
1468 |
+
msgstr "Spravovat skupiny událostí"
|
1469 |
+
|
1470 |
+
# @ my-calendar
|
1471 |
+
#: my-calendar-group-manager.php:119
|
1472 |
+
msgid "Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the \"Edit Group\" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)"
|
1473 |
+
msgstr "Seskupené události mohou být editovány společně. Pokud zvolíte skupinu událostí k editaci, formulář bude předvyplněn obsahem člena skupiny událostí, který byl vybrán. (např. pokud jste klikli na link \"Editovat skupinu\" u třetí události skupiny, formulář využije data této události). Obdržíte také skupinu zaškrtávacích polí, která bude indikovat, u kterých událostí budou tyto změny provedeny. (Všechny seskupené události mohou být také samostatně editovány.)"
|
1474 |
+
|
1475 |
+
# @ my-calendar
|
1476 |
+
#: my-calendar-group-manager.php:120
|
1477 |
+
msgid "The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event."
|
1478 |
+
msgstr "Následující pole nebudou nikdy změněna v případě editace skupiny: dostupnost registrace, status zveřejnění události, spam ohodnocení, opakování události, výskyt události, začátek a konec události."
|
1479 |
+
|
1480 |
+
# @ my-calendar
|
1481 |
+
#: my-calendar-group-manager.php:214
|
1482 |
+
msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
|
1483 |
+
msgstr "<strong>POZNÁMKA:</strong> Editovatelná pole události v této skupině nesouhlasí"
|
1484 |
+
|
1485 |
+
# @ my-calendar
|
1486 |
+
#: my-calendar-group-manager.php:214
|
1487 |
+
msgid "The group editable fields for the events in this group match."
|
1488 |
+
msgstr "Editovatelná pole událostí v této skupině souhlasí."
|
1489 |
+
|
1490 |
+
# @ my-calendar
|
1491 |
+
#: my-calendar-group-manager.php:221
|
1492 |
+
msgid "Apply these changes to:"
|
1493 |
+
msgstr "Uplatnit tyto změny na:"
|
1494 |
+
|
1495 |
+
# @ my-calendar
|
1496 |
+
#: my-calendar-group-manager.php:232
|
1497 |
+
msgid "Check/Uncheck all"
|
1498 |
+
msgstr "Vybrat/odznačit vše"
|
1499 |
+
|
1500 |
+
# @ my-calendar
|
1501 |
+
#: my-calendar-group-manager.php:234
|
1502 |
+
msgid "Remove checked events from this group"
|
1503 |
+
msgstr "Odstranit vybrané události ze seznamu"
|
1504 |
+
|
1505 |
+
# @ my-calendar
|
1506 |
+
#: my-calendar-group-manager.php:251
|
1507 |
+
msgid "You must provide a group ID to edit groups"
|
1508 |
+
msgstr "Musíte zadat ID skupiny pro editaci této skupiny"
|
1509 |
+
|
1510 |
+
# @ my-calendar
|
1511 |
+
#: my-calendar-group-manager.php:300
|
1512 |
+
msgid "Selected dates are a single multi-day event."
|
1513 |
+
msgstr "Vybrané dny tvoří vícedenní událost."
|
1514 |
+
|
1515 |
+
# @ my-calendar
|
1516 |
+
#: my-calendar-group-manager.php:690
|
1517 |
+
msgid "Create/Modify Groups"
|
1518 |
+
msgstr "Vytvořit/upravit skupiny"
|
1519 |
+
|
1520 |
+
# @ my-calendar
|
1521 |
+
#: my-calendar-group-manager.php:691
|
1522 |
+
msgid "Check a set of events to group them for mass editing."
|
1523 |
+
msgstr "Zaškrtněte soubor událostí, aby byly seskupeny pro společnou editaci."
|
1524 |
+
|
1525 |
+
# @ my-calendar
|
1526 |
+
#: my-calendar-group-manager.php:701
|
1527 |
+
#: my-calendar-group-manager.php:787
|
1528 |
+
msgid "Group checked events for mass editing"
|
1529 |
+
msgstr "Seskupit události pro společnou editaci"
|
1530 |
+
|
1531 |
+
# @ my-calendar
|
1532 |
+
#: my-calendar-group-manager.php:707
|
1533 |
+
msgid "Group"
|
1534 |
+
msgstr "Skupina"
|
1535 |
+
|
1536 |
+
# @ my-calendar
|
1537 |
+
#: my-calendar-group-manager.php:777
|
1538 |
+
msgid "Ungrouped"
|
1539 |
+
msgstr "Neseskupeno"
|
1540 |
+
|
1541 |
+
# @ my-calendar
|
1542 |
+
#: my-calendar-help.php:7
|
1543 |
+
msgid "How to use My Calendar"
|
1544 |
+
msgstr "Jak používat kalendář"
|
1545 |
+
|
1546 |
+
# @ my-calendar
|
1547 |
+
#: my-calendar-help.php:12
|
1548 |
+
msgid "Shortcode Syntax"
|
1549 |
+
msgstr "Syntaxe kódu"
|
1550 |
+
|
1551 |
+
# @ my-calendar
|
1552 |
+
#: my-calendar-help.php:15
|
1553 |
+
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1554 |
+
msgstr "Tento krátký kód může být vložen do stránky, příspěvku nebo widgetu."
|
1555 |
+
|
1556 |
+
# @ my-calendar
|
1557 |
+
#: my-calendar-help.php:17
|
1558 |
+
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1559 |
+
msgstr "Hlavní kód kalendáře (seznam nebo tabulka, týdenní nebo měsíční zobrazení)"
|
1560 |
+
|
1561 |
+
# @ my-calendar
|
1562 |
+
#: my-calendar-help.php:19
|
1563 |
+
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."
|
1564 |
+
msgstr "Krátký kód zobrazí kalendář na stránce nebo v příspěvku (bude zahrnovat všechny kategorie a klíč kategorie) v klasickém formátu měsíc po měsíci."
|
1565 |
+
|
1566 |
+
# @ my-calendar
|
1567 |
+
#: my-calendar-help.php:22
|
1568 |
+
msgid "The shortcode supports eight attributes:"
|
1569 |
+
msgstr "Kód podporuje 8 atributů:"
|
1570 |
+
|
1571 |
+
# @ my-calendar
|
1572 |
+
#: my-calendar-help.php:24
|
1573 |
+
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1574 |
+
msgstr "Jména nebo ID kategorií zahrnutá v tomto kalendáři, oddělení čárkou nebo mezerou."
|
1575 |
+
|
1576 |
+
# @ my-calendar
|
1577 |
+
#: my-calendar-help.php:25
|
1578 |
+
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1579 |
+
msgstr "Buď \"seznam\" nebo \"mini\" pro zobrazení seznamu nebo mini kalendáře; vynechte nebo vložte každou jinou hodnotu pro zobrazení hlavní tabulky kalendáře."
|
1580 |
+
|
1581 |
+
# @ my-calendar
|
1582 |
+
#: my-calendar-help.php:26
|
1583 |
+
msgid "Set as \"no\" to hide the category key."
|
1584 |
+
msgstr "Nastavit \"ne\" pro skrytí klíče kategorie."
|
1585 |
+
|
1586 |
+
# @ my-calendar
|
1587 |
+
#: my-calendar-help.php:27
|
1588 |
+
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1589 |
+
msgstr "Nastavit \"ne\" pro skrytí navigace po měsících."
|
1590 |
+
|
1591 |
+
# @ my-calendar
|
1592 |
+
#: my-calendar-help.php:28
|
1593 |
+
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1594 |
+
msgstr "Nastavit \"ano\" pro zobrazení odkazu přepínače mezi zobrazení seznamem a tabulkou."
|
1595 |
+
|
1596 |
+
# @ my-calendar
|
1597 |
+
#: my-calendar-help.php:29
|
1598 |
+
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1599 |
+
msgstr "Nastavte \"týden\" pro zobrazení týdenního kalendáře nebo \"den\" pro zobrazení samostatného dne. Každá jiná hodnota zobrazí celý měsíc. (Denní zobrazení ukáže seznam nehledě k nastavenému formátu.)"
|
1600 |
+
|
1601 |
+
# @ my-calendar
|
1602 |
+
#: my-calendar-help.php:30
|
1603 |
+
msgid "The type of location data to restrict by."
|
1604 |
+
msgstr "Typ místa konání omezen."
|
1605 |
+
|
1606 |
+
# @ my-calendar
|
1607 |
+
#: my-calendar-help.php:31
|
1608 |
+
msgid "The specific location information to filter to."
|
1609 |
+
msgstr "Specifická informace místa konání k fitraci."
|
1610 |
+
|
1611 |
+
# @ my-calendar
|
1612 |
+
#: my-calendar-help.php:35
|
1613 |
+
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1614 |
+
msgstr "Hlavní kód kalendáře může být vygenerovát tlačítkem v editoru příspěvků nebo stránek. Mini kalendář může být dostupný a nakonfigurovaný jako widget."
|
1615 |
+
|
1616 |
+
# @ my-calendar
|
1617 |
+
#: my-calendar-help.php:37
|
1618 |
+
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1619 |
+
msgstr "Doplňkové zobrazení kalendáře (nadcházející události, dnešní události)"
|
1620 |
+
|
1621 |
+
# @ my-calendar
|
1622 |
+
#: my-calendar-help.php:39
|
1623 |
+
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. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events."
|
1624 |
+
msgstr "Tento kód zobrazuje výstup z widgetu Nadcházející události.Atributy <code>before</code> a <code>after</code> by měly být číselné; atribut<code>type</code> může být buď \"event\" nebo \"days\", a atribut <code>category</code> pracuje stejně jako atribut kategorie v kódu hlavního kalendáře. šablony používají kódy sepsané níže.<code>fallback</code> zobrazí informaci v případě, kdy žádná událost nesplní Vaše kritéria. Další umožní řadit seznam událostí – buď vzestupně (<code>asc</code>) nebo sestupně (<code>desc</code>). <code>Skip</code> je počet událostí k přeskočení nadcházejících událostí."
|
1625 |
+
|
1626 |
+
# @ my-calendar
|
1627 |
+
#: my-calendar-help.php:42
|
1628 |
+
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with three configurable attributes: category, template and fallback text."
|
1629 |
+
msgstr "Tento kód zobrazuje výstup widgetu Dnešní události s třemi nastavitelnými atributy: kategorie, šablona a záložní text."
|
1630 |
+
|
1631 |
+
# @ my-calendar
|
1632 |
+
#: my-calendar-help.php:45
|
1633 |
+
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1634 |
+
msgstr "Nadcházející a Dnešní události mohou být nastaveny jako widgety."
|
1635 |
+
|
1636 |
+
# @ my-calendar
|
1637 |
+
#: my-calendar-help.php:48
|
1638 |
+
msgid "Supplement Features (Locations filter, Categories filter)"
|
1639 |
+
msgstr "Dodatkové vlastnosti (filtr místa konání, filtr kategorií)"
|
1640 |
+
|
1641 |
+
# @ my-calendar
|
1642 |
+
#: my-calendar-help.php:51
|
1643 |
+
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>, <code>zip</code> (postal code), or <code>region</code>."
|
1644 |
+
msgstr "Tento kód poskytuje seznam míst konání buď jako seznam nebo formulář s rozbalovacím polem.<code>show</code> atribut může být buď <code>list</code> nebo <code>form</code>, <code>type</code> je buď <code>saved</code> (ukázat uložená místa konání), nebo <code>custom</code> (ukázat volbu nastavenou v uživatelském nastavení). <code>datatype</code> musí splňovat limity, které byly nastaveny: <code>name</code> (obchodní jméno), <code>city</code>, <code>state</code>, <code>country</code>, <code>zip</code> (poštovní směrovací číslo), nebo <code>region</code>."
|
1645 |
+
|
1646 |
+
# @ my-calendar
|
1647 |
+
#: my-calendar-help.php:54
|
1648 |
+
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1649 |
+
msgstr "Pokud si přejete zobrazit seznam míst konání z vaší databáze, použijte tento kód. <code>datatype</code> určuje, jaká data budou zobrazena; všechny seznamy zahrou link na mapu místa konání. Jako doplněk k základní informaci o místa konání ve výše uvedeném kódu, můžete použít také \"hcard\" pro zobrazení všech dostupných informací o místě konání."
|
1650 |
+
|
1651 |
+
# @ my-calendar
|
1652 |
+
#: my-calendar-help.php:57
|
1653 |
+
msgid "This shortcode produces a list of event categories, 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>."
|
1654 |
+
msgstr "Tento kód zobrazí seznam kategorií událostí, buď jako seznam nebo jako rozbalovací pole. Atribut <code>ukázat</code> může být buď <code>list</code> nebo <code>form</code>."
|
1655 |
+
|
1656 |
+
# @ my-calendar
|
1657 |
+
#: my-calendar-help.php:63
|
1658 |
+
msgid "Category Icons"
|
1659 |
+
msgstr "Ikony kategorií"
|
1660 |
+
|
1661 |
+
# @ my-calendar
|
1662 |
+
#: my-calendar-help.php:66
|
1663 |
+
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."
|
1664 |
+
msgstr "Kalendář je určen pro správu více kalendářů. Základem pro tyto kalendáře jsou kategorie, můžete snadno nastavit kalendářovou stránku, která obsahuje všechny kategorie, nebo můžete vytvořit samostatné stránky s kalendáři v každé kategorii. Pro příklad, může to být pro vás užitečné při správě kalendáře pro více pásem, kalendáře akcí na různých místech, atd."
|
1665 |
+
|
1666 |
+
# @ my-calendar
|
1667 |
+
#: my-calendar-help.php:69
|
1668 |
+
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."
|
1669 |
+
msgstr "Předinstalované ikony kategorií nemusí být zvláště užitečné pro vaše potřeby, nebo design. Za předpokladu, že se chystáte nahrát vlastní ikony - vše, co potřebujete udělat, je nahrát je do pluginové složky ikon, a oni budou k dispozici pro okamžité použití, nebo je umístěte do složky \"my-calendar-custom \", aby se zabránilo tomu, že budou přepsány při upgrade."
|
1670 |
+
|
1671 |
+
# @ my-calendar
|
1672 |
+
#: my-calendar-help.php:69
|
1673 |
+
msgid "Your icons folder is:"
|
1674 |
+
msgstr "Složka ikon:"
|
1675 |
+
|
1676 |
+
# @ my-calendar
|
1677 |
+
#: my-calendar-help.php:69
|
1678 |
+
msgid "You can alternately place icons in:"
|
1679 |
+
msgstr "Alternativně můžete uložit ikony do:"
|
1680 |
+
|
1681 |
+
# @ my-calendar
|
1682 |
+
#: my-calendar-help.php:77
|
1683 |
+
msgid "Custom Styles"
|
1684 |
+
msgstr "Vlastní styly"
|
1685 |
+
|
1686 |
+
# @ my-calendar
|
1687 |
+
#: my-calendar-help.php:80
|
1688 |
+
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."
|
1689 |
+
msgstr "Kalendář umožňuje pracovat se čtyřmi základními styly. Při upgradu zůstanou změny v těchto stylech zachovány, ale pokud chtete vložit úplně nový styl, měl by být uložen v adresáři custom styles."
|
1690 |
+
|
1691 |
+
# @ my-calendar
|
1692 |
+
#: my-calendar-help.php:83
|
1693 |
+
msgid "Your stylesheet directory is"
|
1694 |
+
msgstr "Adresář s Vaším stylem je "
|
1695 |
+
|
1696 |
+
# @ my-calendar
|
1697 |
+
#: my-calendar-help.php:84
|
1698 |
+
msgid "Your custom stylesheets directory is"
|
1699 |
+
msgstr "Adresář vlastních stylů je"
|
1700 |
+
|
1701 |
+
# @ my-calendar
|
1702 |
+
#: my-calendar-help.php:92
|
1703 |
+
msgid "Widget Templating"
|
1704 |
+
msgstr "Šablona widgetu"
|
1705 |
+
|
1706 |
+
# @ my-calendar
|
1707 |
+
#: my-calendar-help.php:95
|
1708 |
+
msgid "These codes are available in calendar widgets, email notifications, and event titles."
|
1709 |
+
msgstr "Tyto kódy jsou dostupné ve widgetech kalendáře, notifikaci emailem nebo v titulcích událostí."
|
1710 |
+
|
1711 |
+
# @ my-calendar
|
1712 |
+
#: my-calendar-help.php:97
|
1713 |
+
#: my-calendar-templating.php:70
|
1714 |
+
msgid "Event Template Tags"
|
1715 |
+
msgstr "Šablona dní události"
|
1716 |
+
|
1717 |
+
# @ my-calendar
|
1718 |
+
#: my-calendar-help.php:100
|
1719 |
+
msgid "Displays the title of the event."
|
1720 |
+
msgstr "Zobrazí titulek události"
|
1721 |
+
|
1722 |
+
# @ my-calendar
|
1723 |
+
#: my-calendar-help.php:103
|
1724 |
+
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1725 |
+
msgstr "Zobrazí titulek události jako odkaz, pokud je vyplněno URL, nebo jako text, pokud vyplněno není. "
|
1726 |
+
|
1727 |
+
# @ my-calendar
|
1728 |
+
#: my-calendar-help.php:106
|
1729 |
+
msgid "Displays the start time for the event."
|
1730 |
+
msgstr "Zobrazí čas začátku události"
|
1731 |
+
|
1732 |
+
# @ my-calendar
|
1733 |
+
#: my-calendar-help.php:109
|
1734 |
+
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1735 |
+
msgstr "Zobrazit čas začátku události nastavený podle nastavené časové zóny uživatele. Vrátí <code>{time}</code>, pokud není povoleno uživatelské nastavení nebo pokud si uživatel nenastavil časovou zónu."
|
1736 |
+
|
1737 |
+
# @ my-calendar
|
1738 |
+
#: my-calendar-help.php:112
|
1739 |
+
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1740 |
+
msgstr "Zobrazit čas konce události nastavený podle nastavené časové zóny uživatele. Vrátí <code>{endtime}</code>, pokud není povoleno uživatelské nastavení nebo pokud si uživatel nenastavil časovou zónu."
|
1741 |
+
|
1742 |
+
# @ my-calendar
|
1743 |
+
#: my-calendar-help.php:115
|
1744 |
+
msgid "Displays the date on which the event begins."
|
1745 |
+
msgstr "Zobrazí datum začátku události."
|
1746 |
+
|
1747 |
+
# @ my-calendar
|
1748 |
+
#: my-calendar-help.php:118
|
1749 |
+
msgid "Displays the date on which the event ends."
|
1750 |
+
msgstr "Zobrazí datum ukončení události."
|
1751 |
+
|
1752 |
+
# @ my-calendar
|
1753 |
+
#: my-calendar-help.php:121
|
1754 |
+
msgid "Displays the time at which the event ends."
|
1755 |
+
msgstr "Zobrazí čas ukončení události."
|
1756 |
+
|
1757 |
+
# @ my-calendar
|
1758 |
+
#: my-calendar-help.php:124
|
1759 |
+
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1760 |
+
msgstr "Zobrazí datum začátku a konce událostí. Datum konce nezobrazí v případě, kdy se jedná o stejný den jako začátek."
|
1761 |
+
|
1762 |
+
# @ my-calendar
|
1763 |
+
#: my-calendar-help.php:127
|
1764 |
+
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1765 |
+
msgstr "V případě vícedenních událostí se zobrazí neseřazený seznam datumů a časů událostí této skupiny. V jiných případech začíná dnem/časem."
|
1766 |
+
|
1767 |
+
# @ my-calendar
|
1768 |
+
#: my-calendar-help.php:130
|
1769 |
+
msgid "Displays the WordPress author who posted the event."
|
1770 |
+
msgstr "Zobrazí WP autora, který vložil událost."
|
1771 |
+
|
1772 |
+
# @ my-calendar
|
1773 |
+
#: my-calendar-help.php:133
|
1774 |
+
msgid "Displays the name of the person assigned as host for the event."
|
1775 |
+
msgstr "Zobrazit jméno osoby přiřazené jako host události."
|
1776 |
+
|
1777 |
+
# @ my-calendar
|
1778 |
+
#: my-calendar-help.php:136
|
1779 |
+
msgid "Displays the email address of the person assigned as host for the event."
|
1780 |
+
msgstr "Zobrazuje emailovou adresu osoby označené jako host události."
|
1781 |
+
|
1782 |
+
# @ my-calendar
|
1783 |
+
#: my-calendar-help.php:139
|
1784 |
+
msgid "Displays the short version of the event description."
|
1785 |
+
msgstr "Zobrazí krátkou verzi popisku události."
|
1786 |
+
|
1787 |
+
# @ my-calendar
|
1788 |
+
#: my-calendar-help.php:142
|
1789 |
+
msgid "Displays short description without converting paragraphs."
|
1790 |
+
msgstr "Zobrazuje krátký popis bez převodu odstavců."
|
1791 |
+
|
1792 |
+
# @ my-calendar
|
1793 |
+
#: my-calendar-help.php:145
|
1794 |
+
msgid "Displays the description of the event."
|
1795 |
+
msgstr "Zobrazí popisek události"
|
1796 |
+
|
1797 |
+
# @ my-calendar
|
1798 |
+
#: my-calendar-help.php:148
|
1799 |
+
msgid "Displays description without converting paragraphs."
|
1800 |
+
msgstr "Zobrazuje popis bez převodu odstavců."
|
1801 |
+
|
1802 |
+
# @ my-calendar
|
1803 |
+
#: my-calendar-help.php:151
|
1804 |
+
#: my-calendar-templating.php:115
|
1805 |
+
msgid "Image associated with the event."
|
1806 |
+
msgstr "Obrázek přiřazený k události."
|
1807 |
+
|
1808 |
+
# @ my-calendar
|
1809 |
+
#: my-calendar-help.php:154
|
1810 |
+
msgid "Displays the URL provided for the event."
|
1811 |
+
msgstr "Zobrazí URL události "
|
1812 |
+
|
1813 |
+
# @ my-calendar
|
1814 |
+
#: my-calendar-help.php:157
|
1815 |
+
msgid "Produces the URL to download an iCal formatted record for the event."
|
1816 |
+
msgstr "Vytvoří URL ke stažení formátovaného iCal záznamu události."
|
1817 |
+
|
1818 |
+
# @ my-calendar
|
1819 |
+
#: my-calendar-help.php:160
|
1820 |
+
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1821 |
+
msgstr "Vytvoří hyperlink ke stažení formátovaného iCal záznamu události."
|
1822 |
+
|
1823 |
+
# @ my-calendar
|
1824 |
+
#: my-calendar-help.php:163
|
1825 |
+
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1826 |
+
msgstr "Zobrazí stav opakování události (denně, týdně, atd.)"
|
1827 |
+
|
1828 |
+
# @ my-calendar
|
1829 |
+
#: my-calendar-help.php:166
|
1830 |
+
msgid "Shows the number of repetitions of the event."
|
1831 |
+
msgstr "Zobrazit počet opakování události."
|
1832 |
+
|
1833 |
+
# @ my-calendar
|
1834 |
+
#: my-calendar-help.php:169
|
1835 |
+
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1836 |
+
msgstr "Poskytne link k automaticky generované stránce obsahující všechny informace k dané události."
|
1837 |
+
|
1838 |
+
# @ my-calendar
|
1839 |
+
#: my-calendar-help.php:169
|
1840 |
+
msgid "Requires that the site URL has been provided on the Settings page"
|
1841 |
+
msgstr "Požaduje, aby URL stránky bylo uvedeno na stránce nastavení"
|
1842 |
+
|
1843 |
+
# @ my-calendar
|
1844 |
+
#: my-calendar-help.php:172
|
1845 |
+
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1846 |
+
msgstr "Zobrazí textové oznámení, zda je registrace události otevřena nebo uzavřena; nezobrazí nic pokud je volba vybrána v události."
|
1847 |
+
|
1848 |
+
# @ my-calendar
|
1849 |
+
#: my-calendar-help.php:175
|
1850 |
+
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1851 |
+
msgstr "Zobrazí aktuální stav události: buď \"Publikováno\" nebo \"Rezervováno\" - primárně použité v emailových šablonách."
|
1852 |
+
|
1853 |
+
# @ my-calendar
|
1854 |
+
#: my-calendar-help.php:177
|
1855 |
+
#: my-calendar-templating.php:129
|
1856 |
+
msgid "Location Template Tags"
|
1857 |
+
msgstr "Tagy šablony místa konání"
|
1858 |
+
|
1859 |
+
# @ my-calendar
|
1860 |
+
#: my-calendar-help.php:181
|
1861 |
+
msgid "Displays the name of the location of the event."
|
1862 |
+
msgstr "Zobrazí název místa konání události."
|
1863 |
+
|
1864 |
+
# @ my-calendar
|
1865 |
+
#: my-calendar-help.php:184
|
1866 |
+
msgid "Displays the first line of the site address."
|
1867 |
+
msgstr "Zobrazí první řádek adresy."
|
1868 |
+
|
1869 |
+
# @ my-calendar
|
1870 |
+
#: my-calendar-help.php:187
|
1871 |
+
msgid "Displays the second line of the site address."
|
1872 |
+
msgstr "Zobrazí druhý řádek adresy."
|
1873 |
+
|
1874 |
+
# @ my-calendar
|
1875 |
+
#: my-calendar-help.php:190
|
1876 |
+
msgid "Displays the city for the location."
|
1877 |
+
msgstr "Zobrazit město místa konání."
|
1878 |
+
|
1879 |
+
# @ my-calendar
|
1880 |
+
#: my-calendar-help.php:193
|
1881 |
+
msgid "Displays the state for the location."
|
1882 |
+
msgstr "Zobrazit stát místa konání."
|
1883 |
+
|
1884 |
+
# @ my-calendar
|
1885 |
+
#: my-calendar-help.php:196
|
1886 |
+
msgid "Displays the postcode for the location."
|
1887 |
+
msgstr "Zobrazit PSČ místa konání."
|
1888 |
+
|
1889 |
+
# @ my-calendar
|
1890 |
+
#: my-calendar-help.php:199
|
1891 |
+
msgid "Shows the custom region entered for the location."
|
1892 |
+
msgstr "Ukázat vlastní region místa konání."
|
1893 |
+
|
1894 |
+
# @ my-calendar
|
1895 |
+
#: my-calendar-help.php:202
|
1896 |
+
msgid "Displays the country for the event location."
|
1897 |
+
msgstr "Zobrazí zemi události."
|
1898 |
+
|
1899 |
+
# @ my-calendar
|
1900 |
+
#: my-calendar-help.php:205
|
1901 |
+
msgid "Output the URL for the location link."
|
1902 |
+
msgstr "Výstup URL linku místa konání."
|
1903 |
+
|
1904 |
+
# @ my-calendar
|
1905 |
+
#: my-calendar-help.php:208
|
1906 |
+
msgid "Output a hyperlink to the location's listed link with default link text."
|
1907 |
+
msgstr "Na výstupu hyperlink k nalistovanému linku místa konání s výchozím textem linku."
|
1908 |
+
|
1909 |
+
# @ my-calendar
|
1910 |
+
#: my-calendar-help.php:211
|
1911 |
+
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1912 |
+
msgstr "Zobrazí adresu události ve formátu <a href=\"http://microformats.org/wiki/hcard\">hcard</a>."
|
1913 |
+
|
1914 |
+
# @ my-calendar
|
1915 |
+
#: my-calendar-help.php:214
|
1916 |
+
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1917 |
+
msgstr "Zobrazí odkaz na Google Mapy, pokud jsou dostupné dostatečné informace o adrese. Pokud ne, bude prázdné."
|
1918 |
+
|
1919 |
+
# @ my-calendar
|
1920 |
+
#: my-calendar-help.php:216
|
1921 |
+
#: my-calendar-templating.php:165
|
1922 |
+
msgid "Category Template Tags"
|
1923 |
+
msgstr "Šablona kategorie události"
|
1924 |
+
|
1925 |
+
# @ my-calendar
|
1926 |
+
#: my-calendar-help.php:220
|
1927 |
+
msgid "Displays the name of the category the event is in."
|
1928 |
+
msgstr "Zobrazí jméno kategorie, do které událost patří."
|
1929 |
+
|
1930 |
+
# @ my-calendar
|
1931 |
+
#: my-calendar-help.php:223
|
1932 |
+
msgid "Produces the address of the current event's category icon."
|
1933 |
+
msgstr "Vytvoří adresu pro aktuální ikonu kategorie událostí."
|
1934 |
+
|
1935 |
+
# @ my-calendar
|
1936 |
+
#: my-calendar-help.php:226
|
1937 |
+
msgid "Produces the HTML for the current event's category icon."
|
1938 |
+
msgstr "Vytvoří HTML pro aktuální ikonu kategorie událostí."
|
1939 |
+
|
1940 |
+
# @ my-calendar
|
1941 |
+
#: my-calendar-help.php:229
|
1942 |
+
msgid "Produces the hex code for the current event's category color."
|
1943 |
+
msgstr "Vygeneruje HEX kód barvy aktuální kategorie."
|
1944 |
+
|
1945 |
+
# @ my-calendar
|
1946 |
+
#: my-calendar-help.php:232
|
1947 |
+
msgid ""
|
1948 |
+
"Displays the ID for\r\n"
|
1949 |
+
" the category the event is in."
|
1950 |
+
msgstr ""
|
1951 |
+
"Zobrazí ID pro\r\n"
|
1952 |
+
" kategorie, ve které se událost nachází."
|
1953 |
+
|
1954 |
+
# @ my-calendar
|
1955 |
+
#: my-calendar-help.php:236
|
1956 |
+
msgid "Special use Template Tags"
|
1957 |
+
msgstr "Speciální použití tágu šablony"
|
1958 |
+
|
1959 |
+
# @ my-calendar
|
1960 |
+
#: my-calendar-help.php:240
|
1961 |
+
msgid "A unique ID for the current instance of an event."
|
1962 |
+
msgstr "Jedinečné ID aktuální položky události."
|
1963 |
+
|
1964 |
+
# @ my-calendar
|
1965 |
+
#: my-calendar-help.php:243
|
1966 |
+
msgid "The ID for the event record associated with the current instance of an event."
|
1967 |
+
msgstr "ID záznamu události asociované s aktuální událostí."
|
1968 |
+
|
1969 |
+
# @ my-calendar
|
1970 |
+
#: my-calendar-help.php:252
|
1971 |
+
msgid "Get Plug-in Support"
|
1972 |
+
msgstr "Získejte podporu pluginu"
|
1973 |
+
|
1974 |
+
# @ my-calendar
|
1975 |
+
#: my-calendar-help.php:260
|
1976 |
+
msgid "Helpful Information"
|
1977 |
+
msgstr "Pomocné informace"
|
1978 |
+
|
1979 |
+
# @ my-calendar
|
1980 |
+
#: my-calendar-help.php:263
|
1981 |
+
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1982 |
+
msgstr "<strong>Odinstalace pluginu</strong>: Ačkoliv je standardem WP, že po odinstalování pluginu budou smazány z databáze všechny vlastní tabulky, plugin Můj kalendář <em>toto neučiní</em>. Toto bylo mé rozhodnutí -- data uložená do tabulek Kalendáře jsou Vaše; s jedinou vyjímkou \"General\" kategorie, vše jste zadali Vy. V tomto případě bych pociťoval jejich smazání v případě odinstalace jako špatný servis. V případě požadavku na jejich úplné odstranění je musíte smazat samostatně. tímto dojde také ke smazání nastavení kalendáře."
|
1983 |
+
|
1984 |
+
# @ my-calendar
|
1985 |
+
#: my-calendar-help.php:266
|
1986 |
+
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1987 |
+
msgstr "<strong>Peněžní podpora</strong>: Oceňuji jakýkoli dar.. $2 nevypadá jako velká částka, ale ta může narůst v případě, kdyt plugin používají tisíce lidí. Prosím mějte na zřeteli, že nejsem nezisková organizace a Vaše dary nejsou daňově odpočitatelné. Děkuji! "
|
1988 |
+
|
1989 |
+
# @ my-calendar
|
1990 |
+
#: my-calendar-install.php:213
|
1991 |
+
msgid "My Calendar Default Timezone"
|
1992 |
+
msgstr "Výchozí nastavení časové zóny kalendáře"
|
1993 |
+
|
1994 |
+
# @ my-calendar
|
1995 |
+
#: my-calendar-install.php:258
|
1996 |
+
msgid "My Calendar Default Location"
|
1997 |
+
msgstr "Přednastavené místo konání"
|
1998 |
+
|
1999 |
+
# @ my-calendar
|
2000 |
+
#: my-calendar-locations.php:44
|
2001 |
+
msgid "Location added successfully"
|
2002 |
+
msgstr "Místo konání bylo úspěšně přidáno"
|
2003 |
+
|
2004 |
+
# @ my-calendar
|
2005 |
+
#: my-calendar-locations.php:46
|
2006 |
+
msgid "Location could not be added to database"
|
2007 |
+
msgstr "Místo konání nemohlo být přidáno do databáze"
|
2008 |
+
|
2009 |
+
# @ my-calendar
|
2010 |
+
#: my-calendar-locations.php:52
|
2011 |
+
msgid "Location deleted successfully"
|
2012 |
+
msgstr "Místo konání bylo úspěšně odstraněno"
|
2013 |
+
|
2014 |
+
# @ my-calendar
|
2015 |
+
#: my-calendar-locations.php:54
|
2016 |
+
msgid "Location could not be deleted"
|
2017 |
+
msgstr "Místo konání nemohlo být smazáno."
|
2018 |
+
|
2019 |
+
# @ my-calendar
|
2020 |
+
#: my-calendar-locations.php:80
|
2021 |
+
msgid "Location could not be edited."
|
2022 |
+
msgstr "Místo konání nemohlo být upraveno."
|
2023 |
+
|
2024 |
+
# @ my-calendar
|
2025 |
+
#: my-calendar-locations.php:82
|
2026 |
+
msgid "Location was not changed."
|
2027 |
+
msgstr "Místo konání nebylo změněno"
|
2028 |
+
|
2029 |
+
# @ my-calendar
|
2030 |
+
#: my-calendar-locations.php:84
|
2031 |
+
msgid "Location edited successfully"
|
2032 |
+
msgstr "Místo konání bylo úspěšně aktualizováno."
|
2033 |
+
|
2034 |
+
# @ my-calendar
|
2035 |
+
#: my-calendar-locations.php:104
|
2036 |
+
msgid "Add New Location"
|
2037 |
+
msgstr "Přidat nové Místo konání"
|
2038 |
+
|
2039 |
+
# @ my-calendar
|
2040 |
+
#: my-calendar-locations.php:106
|
2041 |
+
msgid "Edit Location"
|
2042 |
+
msgstr "Upravit místo konání"
|
2043 |
+
|
2044 |
+
# @ my-calendar
|
2045 |
+
#: my-calendar-locations.php:111
|
2046 |
+
msgid "Location Editor"
|
2047 |
+
msgstr "Editor Místa konání"
|
2048 |
+
|
2049 |
+
# @ my-calendar
|
2050 |
+
#: my-calendar-locations.php:202
|
2051 |
+
msgid "Website"
|
2052 |
+
msgstr "Webová stránka"
|
2053 |
+
|
2054 |
+
# @ my-calendar
|
2055 |
+
#: my-calendar-locations.php:207
|
2056 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
|
2057 |
+
msgstr "Pokud zadáte GPS souřadnice vaší polohy, budou použity místo jakýchkoliv dalších informací pro určení polohy vašeho místa konání."
|
2058 |
+
|
2059 |
+
# @ my-calendar
|
2060 |
+
#: my-calendar-locations.php:215
|
2061 |
+
msgid "Add Location"
|
2062 |
+
msgstr "Přidat Místo konání"
|
2063 |
+
|
2064 |
+
# @ my-calendar
|
2065 |
+
#: my-calendar-locations.php:222
|
2066 |
+
msgid "Add a New Location"
|
2067 |
+
msgstr "Vložit nové místo konání"
|
2068 |
+
|
2069 |
+
# @ my-calendar
|
2070 |
+
#: my-calendar-locations.php:263
|
2071 |
+
#: my-calendar.php:170
|
2072 |
+
msgid "Manage Locations"
|
2073 |
+
msgstr "Spravovat Místa konání"
|
2074 |
+
|
2075 |
+
# @ my-calendar
|
2076 |
+
#: my-calendar-locations.php:298
|
2077 |
+
msgid "There are no locations in the database yet!"
|
2078 |
+
msgstr "V databázi nejsou žádná Místa konání."
|
2079 |
+
|
2080 |
+
# @ my-calendar
|
2081 |
+
#: my-calendar-locations.php:302
|
2082 |
+
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."
|
2083 |
+
msgstr "Poznámka: úprava nebo smazání Místa konání nebude mít vliv na žádnou událost, která byla plánována na toto umístění. Databáze Míst konání existuje čistě jako zkrácená metoda pro ukládání nejčastěji používaných Míst konání."
|
2084 |
+
|
2085 |
+
# @ my-calendar
|
2086 |
+
#: my-calendar-output.php:148
|
2087 |
+
msgid "Event Details"
|
2088 |
+
msgstr "Detaily události"
|
2089 |
+
|
2090 |
+
# @ my-calendar
|
2091 |
+
#: my-calendar-output.php:171
|
2092 |
+
#: my-calendar-output.php:282
|
2093 |
+
msgid "Close"
|
2094 |
+
msgstr "Zavřít"
|
2095 |
+
|
2096 |
+
# @ my-calendar
|
2097 |
+
#: my-calendar-output.php:180
|
2098 |
+
msgid "(%s in your time zone)"
|
2099 |
+
msgstr "(%s Vaší časové zóny)"
|
2100 |
+
|
2101 |
+
# @ my-calendar
|
2102 |
+
#: my-calendar-output.php:186
|
2103 |
+
msgid "Not Applicable"
|
2104 |
+
msgstr "Není k dispozici"
|
2105 |
+
|
2106 |
+
# @ my-calendar
|
2107 |
+
#: my-calendar-output.php:200
|
2108 |
+
msgid "Posted by"
|
2109 |
+
msgstr "Vytvořeno"
|
2110 |
+
|
2111 |
+
# @ my-calendar
|
2112 |
+
#: my-calendar-output.php:207
|
2113 |
+
#: my-calendar-templates.php:205
|
2114 |
+
msgid "Details about"
|
2115 |
+
msgstr "Detaily o"
|
2116 |
+
|
2117 |
+
# @ my-calendar
|
2118 |
+
#: my-calendar-output.php:228
|
2119 |
+
#: my-calendar-templates.php:155
|
2120 |
+
msgid "iCal"
|
2121 |
+
msgstr "iCal"
|
2122 |
+
|
2123 |
+
# @ my-calendar
|
2124 |
+
#: my-calendar-output.php:262
|
2125 |
+
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
2126 |
+
msgstr "Třída je součástí série. Pro účast se musíte registrovat k první události. "
|
2127 |
+
|
2128 |
+
# @ my-calendar
|
2129 |
+
#: my-calendar-output.php:267
|
2130 |
+
msgid "View full calendar"
|
2131 |
+
msgstr "Zobrazit celý kalendář"
|
2132 |
+
|
2133 |
+
# @ my-calendar
|
2134 |
+
#: my-calendar-output.php:300
|
2135 |
+
msgid "Edit This Date"
|
2136 |
+
msgstr "Editovat tento den"
|
2137 |
+
|
2138 |
+
# @ my-calendar
|
2139 |
+
#: my-calendar-output.php:301
|
2140 |
+
msgid "Edit All"
|
2141 |
+
msgstr "Editovat vše"
|
2142 |
+
|
2143 |
+
# @ my-calendar
|
2144 |
+
#: my-calendar-output.php:302
|
2145 |
+
msgid "Delete This Date"
|
2146 |
+
msgstr "Smazat tento den"
|
2147 |
+
|
2148 |
+
# @ my-calendar
|
2149 |
+
#: my-calendar-output.php:303
|
2150 |
+
msgid "Delete All"
|
2151 |
+
msgstr "Smazat vše"
|
2152 |
+
|
2153 |
+
# @ my-calendar
|
2154 |
+
#: my-calendar-output.php:361
|
2155 |
+
msgid "Year"
|
2156 |
+
msgstr "Rok"
|
2157 |
+
|
2158 |
+
# @ my-calendar
|
2159 |
+
#: my-calendar-output.php:389
|
2160 |
+
msgid "Go"
|
2161 |
+
msgstr "Jdi"
|
2162 |
+
|
2163 |
+
# @ my-calendar
|
2164 |
+
#: my-calendar-output.php:418
|
2165 |
+
msgid "Calendar: Print View"
|
2166 |
+
msgstr "Kalendář: Tisk kalendáře"
|
2167 |
+
|
2168 |
+
# @ my-calendar
|
2169 |
+
#: my-calendar-output.php:433
|
2170 |
+
msgid "Return to site"
|
2171 |
+
msgstr "Návrat na stránku"
|
2172 |
+
|
2173 |
+
# @ my-calendar
|
2174 |
+
#: my-calendar-output.php:456
|
2175 |
+
msgid "View as Grid"
|
2176 |
+
msgstr "Zobrazit jako mřížku"
|
2177 |
+
|
2178 |
+
# @ my-calendar
|
2179 |
+
#: my-calendar-output.php:460
|
2180 |
+
msgid "View as List"
|
2181 |
+
msgstr "Ukázat seznam"
|
2182 |
+
|
2183 |
+
# @ my-calendar
|
2184 |
+
#: my-calendar-output.php:481
|
2185 |
+
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
2186 |
+
msgstr "<abbr title=\"Neděle\">Ne</abbr>"
|
2187 |
+
|
2188 |
+
# @ my-calendar
|
2189 |
+
#: my-calendar-output.php:482
|
2190 |
+
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
2191 |
+
msgstr "<abbr title=\"Pondělí\">Pon</abbr>"
|
2192 |
+
|
2193 |
+
# @ my-calendar
|
2194 |
+
#: my-calendar-output.php:483
|
2195 |
+
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
2196 |
+
msgstr "<abbr title=\"Úterý\">Úte</abbr>"
|
2197 |
+
|
2198 |
+
# @ my-calendar
|
2199 |
+
#: my-calendar-output.php:484
|
2200 |
+
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
2201 |
+
msgstr "<abbr title=\"Středa\">Stř</abbr>"
|
2202 |
+
|
2203 |
+
# @ my-calendar
|
2204 |
+
#: my-calendar-output.php:485
|
2205 |
+
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
2206 |
+
msgstr "<abbr title=\"Čtvrtek\">Čtv</abbr>"
|
2207 |
+
|
2208 |
+
# @ my-calendar
|
2209 |
+
#: my-calendar-output.php:486
|
2210 |
+
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
2211 |
+
msgstr "<abbr title=\"Pátek\">Pát</abbr>"
|
2212 |
+
|
2213 |
+
# @ my-calendar
|
2214 |
+
#: my-calendar-output.php:487
|
2215 |
+
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
2216 |
+
msgstr "<abbr title=\"Sobota\">Sob</abbr>"
|
2217 |
+
|
2218 |
+
# @ my-calendar
|
2219 |
+
#: my-calendar-output.php:492
|
2220 |
+
msgid "<abbr title=\"Sunday\">S</abbr>"
|
2221 |
+
msgstr "<abbr title=\"Neděle\">N</abbr>"
|
2222 |
+
|
2223 |
+
# @ my-calendar
|
2224 |
+
#: my-calendar-output.php:493
|
2225 |
+
msgid "<abbr title=\"Monday\">M</abbr>"
|
2226 |
+
msgstr "<abbr title=\"Pondělí\">P</abbr>"
|
2227 |
+
|
2228 |
+
# @ my-calendar
|
2229 |
+
#: my-calendar-output.php:494
|
2230 |
+
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
2231 |
+
msgstr "<abbr title=\"Úterý\">Ú</abbr>"
|
2232 |
+
|
2233 |
+
# @ my-calendar
|
2234 |
+
#: my-calendar-output.php:495
|
2235 |
+
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
2236 |
+
msgstr "<abbr title=\"Středa\">S</abbr>"
|
2237 |
+
|
2238 |
+
# @ my-calendar
|
2239 |
+
#: my-calendar-output.php:496
|
2240 |
+
msgid "<abbr title=\"Thursday\">T</abbr>"
|
2241 |
+
msgstr "<abbr title=\"Čtvrtek\">Č</abbr>"
|
2242 |
+
|
2243 |
+
# @ my-calendar
|
2244 |
+
#: my-calendar-output.php:497
|
2245 |
+
msgid "<abbr title=\"Friday\">F</abbr>"
|
2246 |
+
msgstr "<abbr title=\"Pátek\">P</abbr>"
|
2247 |
+
|
2248 |
+
# @ my-calendar
|
2249 |
+
#: my-calendar-output.php:498
|
2250 |
+
msgid "<abbr title=\"Saturday\">S</abbr>"
|
2251 |
+
msgstr "<abbr title=\"Sobota\">S</abbr>"
|
2252 |
+
|
2253 |
+
# @ my-calendar
|
2254 |
+
#: my-calendar-output.php:568
|
2255 |
+
msgid "Print View"
|
2256 |
+
msgstr "Tisk kalendáře"
|
2257 |
+
|
2258 |
+
# @ my-calendar
|
2259 |
+
#: my-calendar-output.php:600
|
2260 |
+
msgid "No events scheduled for today!"
|
2261 |
+
msgstr "Nejsou plánované události pro dnešní den!"
|
2262 |
+
|
2263 |
+
# @ my-calendar
|
2264 |
+
#: my-calendar-output.php:627
|
2265 |
+
msgid "and"
|
2266 |
+
msgstr "a"
|
2267 |
+
|
2268 |
+
# @ my-calendar
|
2269 |
+
#: my-calendar-output.php:648
|
2270 |
+
msgid "Events in"
|
2271 |
+
msgstr "Události v"
|
2272 |
+
|
2273 |
+
# @ my-calendar
|
2274 |
+
#: my-calendar-output.php:855
|
2275 |
+
msgid " and %d other event"
|
2276 |
+
msgstr "a %d další událost"
|
2277 |
+
|
2278 |
+
# @ my-calendar
|
2279 |
+
#: my-calendar-output.php:857
|
2280 |
+
msgid " and %d other events"
|
2281 |
+
msgstr " a %d další události"
|
2282 |
+
|
2283 |
+
# @ my-calendar
|
2284 |
+
#: my-calendar-output.php:874
|
2285 |
+
msgid "There are no events scheduled during this period."
|
2286 |
+
msgstr "Na toto období nejsou naplánovány žádné události."
|
2287 |
+
|
2288 |
+
# @ my-calendar
|
2289 |
+
#: my-calendar-output.php:878
|
2290 |
+
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
2291 |
+
msgstr "Nerozpoznaný formát kelendáře. Použijte jeden z 'seznam','kalendář', or 'mini'."
|
2292 |
+
|
2293 |
+
# @ my-calendar
|
2294 |
+
#: my-calendar-output.php:887
|
2295 |
+
msgid "Category Key"
|
2296 |
+
msgstr "Klíč kategorie"
|
2297 |
+
|
2298 |
+
# @ my-calendar
|
2299 |
+
#: my-calendar-output.php:923
|
2300 |
+
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2301 |
+
msgstr "Přihlásit se k odběru <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2302 |
+
|
2303 |
+
# @ my-calendar
|
2304 |
+
#: my-calendar-output.php:924
|
2305 |
+
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2306 |
+
msgstr "Stáhnout jako <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2307 |
+
|
2308 |
+
# @ my-calendar
|
2309 |
+
#: my-calendar-output.php:949
|
2310 |
+
msgid "Next events »"
|
2311 |
+
msgstr "Nadcházející události »"
|
2312 |
+
|
2313 |
+
# @ my-calendar
|
2314 |
+
#: my-calendar-output.php:975
|
2315 |
+
#: my-calendar-output.php:1019
|
2316 |
+
msgid "Week of "
|
2317 |
+
msgstr "Týden z "
|
2318 |
+
|
2319 |
+
# @ my-calendar
|
2320 |
+
#: my-calendar-output.php:993
|
2321 |
+
msgid "« Previous events"
|
2322 |
+
msgstr "« Předchozí události"
|
2323 |
+
|
2324 |
+
# @ my-calendar
|
2325 |
+
#: my-calendar-output.php:1043
|
2326 |
+
msgid "(select to include)"
|
2327 |
+
msgstr "(vyberte pro zařazení)"
|
2328 |
+
|
2329 |
+
# @ my-calendar
|
2330 |
+
#: my-calendar-output.php:1067
|
2331 |
+
#: my-calendar-output.php:1070
|
2332 |
+
msgid "All Categories"
|
2333 |
+
msgstr "Všechny kategorie"
|
2334 |
+
|
2335 |
+
# @ my-calendar
|
2336 |
+
#: my-calendar-output.php:1068
|
2337 |
+
msgid "Categories"
|
2338 |
+
msgstr "Kategorie"
|
2339 |
+
|
2340 |
+
# @ my-calendar
|
2341 |
+
#: my-calendar-output.php:1089
|
2342 |
+
#: my-calendar-output.php:1270
|
2343 |
+
msgid "Submit"
|
2344 |
+
msgstr "Odeslat"
|
2345 |
+
|
2346 |
+
# @ my-calendar
|
2347 |
+
#: my-calendar-output.php:1211
|
2348 |
+
#: my-calendar-output.php:1232
|
2349 |
+
msgid "Show all"
|
2350 |
+
msgstr "Ukázat vše"
|
2351 |
+
|
2352 |
+
# @ my-calendar
|
2353 |
+
#: my-calendar-output.php:1230
|
2354 |
+
msgid "Show events in:"
|
2355 |
+
msgstr "Ukázat události v:"
|
2356 |
+
|
2357 |
+
# @ my-calendar
|
2358 |
+
#: my-calendar-settings.php:52
|
2359 |
+
msgid "Categories imported successfully."
|
2360 |
+
msgstr "Kategorie byly úspěšně importovány"
|
2361 |
+
|
2362 |
+
# @ my-calendar
|
2363 |
+
#: my-calendar-settings.php:52
|
2364 |
+
msgid "Categories not imported."
|
2365 |
+
msgstr "Kategorie nebyly importovány"
|
2366 |
+
|
2367 |
+
# @ my-calendar
|
2368 |
+
#: my-calendar-settings.php:53
|
2369 |
+
msgid "Events imported successfully."
|
2370 |
+
msgstr "Události byly úspěšně importovány."
|
2371 |
+
|
2372 |
+
# @ my-calendar
|
2373 |
+
#: my-calendar-settings.php:53
|
2374 |
+
msgid "Events not imported."
|
2375 |
+
msgstr "Události nebyly importovány"
|
2376 |
+
|
2377 |
+
# @ my-calendar
|
2378 |
+
#: my-calendar-settings.php:78
|
2379 |
+
msgid "My Calendar Cache cleared"
|
2380 |
+
msgstr "Cache kalendáře vyčištěna"
|
2381 |
+
|
2382 |
+
# @ my-calendar
|
2383 |
+
#: my-calendar-settings.php:89
|
2384 |
+
msgid "Permissions Settings saved"
|
2385 |
+
msgstr "Nastavení povolení uloženo"
|
2386 |
+
|
2387 |
+
# @ my-calendar
|
2388 |
+
#: my-calendar-settings.php:134
|
2389 |
+
msgid "Output Settings saved"
|
2390 |
+
msgstr "Nastavení výstupu uloženo."
|
2391 |
+
|
2392 |
+
# @ my-calendar
|
2393 |
+
#: my-calendar-settings.php:153
|
2394 |
+
msgid "Input Settings saved"
|
2395 |
+
msgstr "Nastavení vstupu uloženo."
|
2396 |
+
|
2397 |
+
# @ my-calendar
|
2398 |
+
#: my-calendar-settings.php:161
|
2399 |
+
msgid "Multisite settings saved"
|
2400 |
+
msgstr "Nastavení multistránky uloženo"
|
2401 |
+
|
2402 |
+
# @ my-calendar
|
2403 |
+
#: my-calendar-settings.php:180
|
2404 |
+
msgid "Custom text settings saved"
|
2405 |
+
msgstr "Vlastní nastavení textu uloženo"
|
2406 |
+
|
2407 |
+
# @ my-calendar
|
2408 |
+
#: my-calendar-settings.php:192
|
2409 |
+
msgid "Email notice settings saved"
|
2410 |
+
msgstr "Nastavení oznámení emailem uloženo"
|
2411 |
+
|
2412 |
+
# @ my-calendar
|
2413 |
+
#: my-calendar-settings.php:206
|
2414 |
+
msgid "User custom settings saved"
|
2415 |
+
msgstr "Vlastní uživatelské nastavení uloženo"
|
2416 |
+
|
2417 |
+
# @ my-calendar
|
2418 |
+
#: my-calendar-settings.php:237
|
2419 |
+
msgid "My Calendar Options"
|
2420 |
+
msgstr "Možnosti kalendáře"
|
2421 |
+
|
2422 |
+
# @ my-calendar
|
2423 |
+
#: my-calendar-settings.php:241
|
2424 |
+
msgid "Calendar Management Settings"
|
2425 |
+
msgstr "Nastavení správy kalendáře"
|
2426 |
+
|
2427 |
+
# @ my-calendar
|
2428 |
+
#: my-calendar-settings.php:246
|
2429 |
+
msgid "Calendar Options: Management"
|
2430 |
+
msgstr "Nastavení kalendáře: Management"
|
2431 |
+
|
2432 |
+
# @ my-calendar
|
2433 |
+
#: my-calendar-settings.php:248
|
2434 |
+
msgid "Lowest user group that may create events"
|
2435 |
+
msgstr "Nejnižší oprávnění uživatelů pro vložení události"
|
2436 |
+
|
2437 |
+
# @ my-calendar
|
2438 |
+
#: my-calendar-settings.php:249
|
2439 |
+
#: my-calendar-settings.php:258
|
2440 |
+
msgid "Subscriber"
|
2441 |
+
msgstr "Návštěvník"
|
2442 |
+
|
2443 |
+
# @ my-calendar
|
2444 |
+
#: my-calendar-settings.php:250
|
2445 |
+
#: my-calendar-settings.php:259
|
2446 |
+
#: my-calendar-settings.php:267
|
2447 |
+
msgid "Contributor"
|
2448 |
+
msgstr "Spolupracovník"
|
2449 |
+
|
2450 |
+
# @ my-calendar
|
2451 |
+
#: my-calendar-settings.php:252
|
2452 |
+
#: my-calendar-settings.php:261
|
2453 |
+
#: my-calendar-settings.php:269
|
2454 |
+
msgid "Editor"
|
2455 |
+
msgstr "Šéfredaktor"
|
2456 |
+
|
2457 |
+
# @ my-calendar
|
2458 |
+
#: my-calendar-settings.php:253
|
2459 |
+
#: my-calendar-settings.php:262
|
2460 |
+
#: my-calendar-settings.php:270
|
2461 |
+
msgid "Administrator"
|
2462 |
+
msgstr "Administrator"
|
2463 |
+
|
2464 |
+
# @ my-calendar
|
2465 |
+
#: my-calendar-settings.php:257
|
2466 |
+
msgid "Lowest user group that may approve events"
|
2467 |
+
msgstr "Nejnižší oprávnění uživatelů pro schválení události"
|
2468 |
+
|
2469 |
+
# @ my-calendar
|
2470 |
+
#: my-calendar-settings.php:263
|
2471 |
+
msgid "Enable approval options."
|
2472 |
+
msgstr "Povolit schvalovací nastavení"
|
2473 |
+
|
2474 |
+
# @ my-calendar
|
2475 |
+
#: my-calendar-settings.php:266
|
2476 |
+
msgid "Lowest user group that may edit or delete all events"
|
2477 |
+
msgstr "Nejnižší oprávnění uživatelů pro editaci nebo smazání událostí"
|
2478 |
+
|
2479 |
+
# @ my-calendar
|
2480 |
+
#: my-calendar-settings.php:272
|
2481 |
+
msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
|
2482 |
+
msgstr "Ve výchozím nastavení je k editaci a mazání událostí oprávněn pouze administrátor. Ostatní uživatelé mohou editovat a mazat pouze jimi zadané události."
|
2483 |
+
|
2484 |
+
# @ my-calendar
|
2485 |
+
#: my-calendar-settings.php:274
|
2486 |
+
msgid "Enable caching."
|
2487 |
+
msgstr "Povolit caching"
|
2488 |
+
|
2489 |
+
# @ my-calendar
|
2490 |
+
#: my-calendar-settings.php:277
|
2491 |
+
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2492 |
+
msgstr "Vyčistit současnou cashe. (Nezbytné, např. pokud editujete kód měnící zobrazené kategorie.)"
|
2493 |
+
|
2494 |
+
# @ my-calendar
|
2495 |
+
#: my-calendar-settings.php:282
|
2496 |
+
msgid "Currently editing my local calendar"
|
2497 |
+
msgstr "Nyní editujete lokální kalendář"
|
2498 |
+
|
2499 |
+
# @ my-calendar
|
2500 |
+
#: my-calendar-settings.php:285
|
2501 |
+
msgid "Currently editing the network calendar"
|
2502 |
+
msgstr "Nyní editujete síťový kalendář"
|
2503 |
+
|
2504 |
+
# @ my-calendar
|
2505 |
+
#: my-calendar-settings.php:288
|
2506 |
+
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2507 |
+
msgstr "Nyní pracujete na primárních stránkách této sítě; Váš lokální kalendář je zároveň globální tabulkou."
|
2508 |
+
|
2509 |
+
# @ my-calendar
|
2510 |
+
#: my-calendar-settings.php:293
|
2511 |
+
msgid "Save Management Settings"
|
2512 |
+
msgstr "Uložit správu nastavení "
|
2513 |
+
|
2514 |
+
# @ my-calendar
|
2515 |
+
#: my-calendar-settings.php:299
|
2516 |
+
msgid "Calendar Text Settings"
|
2517 |
+
msgstr "Nastavení textu kalendáře"
|
2518 |
+
|
2519 |
+
# @ my-calendar
|
2520 |
+
#: my-calendar-settings.php:304
|
2521 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2522 |
+
msgstr "Volby kalendáře: Upravit textová pole"
|
2523 |
+
|
2524 |
+
# @ my-calendar
|
2525 |
+
#: my-calendar-settings.php:307
|
2526 |
+
msgid "Label for events without a set time"
|
2527 |
+
msgstr "Titulek pro události bez definovaného času"
|
2528 |
+
|
2529 |
+
# @ my-calendar
|
2530 |
+
#: my-calendar-settings.php:310
|
2531 |
+
msgid "Previous events link"
|
2532 |
+
msgstr "Předchozí link události"
|
2533 |
+
|
2534 |
+
# @ my-calendar
|
2535 |
+
#: my-calendar-settings.php:310
|
2536 |
+
msgid "Previous Events"
|
2537 |
+
msgstr "Předchozí"
|
2538 |
+
|
2539 |
+
# @ my-calendar
|
2540 |
+
#: my-calendar-settings.php:310
|
2541 |
+
#: my-calendar-settings.php:313
|
2542 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2543 |
+
msgstr "Použít <code>{date}</code> pro zobrazení příslušného datumu v navigaci."
|
2544 |
+
|
2545 |
+
# @ my-calendar
|
2546 |
+
#: my-calendar-settings.php:313
|
2547 |
+
msgid "Next events link"
|
2548 |
+
msgstr "Další link události"
|
2549 |
+
|
2550 |
+
# @ my-calendar
|
2551 |
+
#: my-calendar-settings.php:313
|
2552 |
+
msgid "Next Events"
|
2553 |
+
msgstr "Následující"
|
2554 |
+
|
2555 |
+
# @ my-calendar
|
2556 |
+
#: my-calendar-settings.php:316
|
2557 |
+
msgid "If events are open"
|
2558 |
+
msgstr "Pokud jsou události otevřené"
|
2559 |
+
|
2560 |
+
# @ my-calendar
|
2561 |
+
#: my-calendar-settings.php:316
|
2562 |
+
msgid "Registration is open"
|
2563 |
+
msgstr "Registrace je otevřená"
|
2564 |
+
|
2565 |
+
# @ my-calendar
|
2566 |
+
#: my-calendar-settings.php:319
|
2567 |
+
msgid "If events are closed"
|
2568 |
+
msgstr "Pokud jsou události uzavřené"
|
2569 |
+
|
2570 |
+
# @ my-calendar
|
2571 |
+
#: my-calendar-settings.php:319
|
2572 |
+
msgid "Registration is closed"
|
2573 |
+
msgstr "Registrace je uzavřena"
|
2574 |
+
|
2575 |
+
# @ my-calendar
|
2576 |
+
#: my-calendar-settings.php:322
|
2577 |
+
msgid "Week view caption:"
|
2578 |
+
msgstr "Titulek týdenního zobrazení:"
|
2579 |
+
|
2580 |
+
# @ my-calendar
|
2581 |
+
#: my-calendar-settings.php:325
|
2582 |
+
msgid "Additional caption:"
|
2583 |
+
msgstr "Doplňkový popisek:"
|
2584 |
+
|
2585 |
+
# @ my-calendar
|
2586 |
+
#: my-calendar-settings.php:325
|
2587 |
+
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."
|
2588 |
+
msgstr "Titulek kalendáře je text obsahující zobrazený měsíc a rok v kalendářovém formátu. Tento text bude následovat existující text."
|
2589 |
+
|
2590 |
+
# @ my-calendar
|
2591 |
+
#: my-calendar-settings.php:330
|
2592 |
+
msgid "Save Custom Text Settings"
|
2593 |
+
msgstr "Uložit vlastní nastavení textu"
|
2594 |
+
|
2595 |
+
# @ my-calendar
|
2596 |
+
#: my-calendar-settings.php:336
|
2597 |
+
msgid "Calendar Output Settings"
|
2598 |
+
msgstr "Nastavení výstupu kalendáře"
|
2599 |
+
|
2600 |
+
# @ my-calendar
|
2601 |
+
#: my-calendar-settings.php:340
|
2602 |
+
#: my-calendar-settings.php:521
|
2603 |
+
msgid "Save Output Settings"
|
2604 |
+
msgstr "Uložit nastavení výstupu"
|
2605 |
+
|
2606 |
+
# @ my-calendar
|
2607 |
+
#: my-calendar-settings.php:342
|
2608 |
+
msgid "Calendar Options: Customize the Output of your Calendar"
|
2609 |
+
msgstr "Nastavení kalendáře: Upravit nastavení výstupu kalendáře"
|
2610 |
+
|
2611 |
+
# @ my-calendar
|
2612 |
+
#: my-calendar-settings.php:344
|
2613 |
+
msgid "General Calendar Options"
|
2614 |
+
msgstr "Všeobecné nastavení kalendáře"
|
2615 |
+
|
2616 |
+
# @ my-calendar
|
2617 |
+
#: my-calendar-settings.php:347
|
2618 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2619 |
+
msgstr "Cílový <abbr title=\"jednotný zdrojový lokátor \">URL</abbr> pro zobrazení linku s detaily:"
|
2620 |
+
|
2621 |
+
# @ my-calendar
|
2622 |
+
#: my-calendar-settings.php:348
|
2623 |
+
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2624 |
+
msgstr "Může to být jakákoliv stránka nebo příspěvek, který zahrnuje <code>[my_calendar]</code> kód."
|
2625 |
+
|
2626 |
+
# @ my-calendar
|
2627 |
+
#: my-calendar-settings.php:351
|
2628 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2629 |
+
msgstr "Cíl <abbr title=\"Uniform resource locator\">URL</abbr> linku časové osy jednoho dne."
|
2630 |
+
|
2631 |
+
# @ my-calendar
|
2632 |
+
#: my-calendar-settings.php:352
|
2633 |
+
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2634 |
+
msgstr "Může to být jakákoliv stránka nebo příspěvek, který zahrnuje <code>[my_calendar time=\"day\"]</code> kód."
|
2635 |
+
|
2636 |
+
# @ my-calendar
|
2637 |
+
#: my-calendar-settings.php:355
|
2638 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2639 |
+
msgstr "Cílové <abbr title=\"Uniform resource locator\">URL</abbr> pro mini kalendář na stránce:"
|
2640 |
+
|
2641 |
+
# @ my-calendar
|
2642 |
+
#: my-calendar-settings.php:356
|
2643 |
+
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2644 |
+
msgstr "Může to být jakákoliv stránka nebo příspěvek, který zahrnuje <code>[my_calendar]</code> kód s použitím níže vybraného formátu"
|
2645 |
+
|
2646 |
+
# @ my-calendar
|
2647 |
+
#: my-calendar-settings.php:358
|
2648 |
+
msgid "With above settings:"
|
2649 |
+
msgstr "S nastavením výše:"
|
2650 |
+
|
2651 |
+
# @ my-calendar
|
2652 |
+
#: my-calendar-settings.php:360
|
2653 |
+
msgid "Open calendar links to event details URL"
|
2654 |
+
msgstr "Otevřít link kalendáře pro zobrazení linku URL s detaily události"
|
2655 |
+
|
2656 |
+
# @ my-calendar
|
2657 |
+
#: my-calendar-settings.php:360
|
2658 |
+
msgid "Replaces pop-up in grid view."
|
2659 |
+
msgstr "Zaměnit vyskakovací pole v tabulkovém zobrazení."
|
2660 |
+
|
2661 |
+
# @ my-calendar
|
2662 |
+
#: my-calendar-settings.php:363
|
2663 |
+
msgid "Mini calendar widget date links to:"
|
2664 |
+
msgstr "Datum ve widgetu pro mini kalendářem s linkem k:"
|
2665 |
+
|
2666 |
+
# @ my-calendar
|
2667 |
+
#: my-calendar-settings.php:364
|
2668 |
+
msgid "jQuery pop-up view"
|
2669 |
+
msgstr "jQuery pohled vyskakovacího okna"
|
2670 |
+
|
2671 |
+
# @ my-calendar
|
2672 |
+
#: my-calendar-settings.php:365
|
2673 |
+
msgid "daily view page (above)"
|
2674 |
+
msgstr "stránka denního zobrazení (výše)"
|
2675 |
+
|
2676 |
+
# @ my-calendar
|
2677 |
+
#: my-calendar-settings.php:366
|
2678 |
+
msgid "in-page anchor on main calendar page (list)"
|
2679 |
+
msgstr "ukotvení na stránce hlavního kalendáře (seznam)"
|
2680 |
+
|
2681 |
+
# @ my-calendar
|
2682 |
+
#: my-calendar-settings.php:367
|
2683 |
+
msgid "in-page anchor on main calendar page (grid)"
|
2684 |
+
msgstr "ukotvení na stránce hlavního kalendáře (tabulka)"
|
2685 |
+
|
2686 |
+
# @ my-calendar
|
2687 |
+
#: my-calendar-settings.php:369
|
2688 |
+
msgid "Replaces pop-up in mini calendar"
|
2689 |
+
msgstr "Zamění za vyskakovací pole mini kalendáře"
|
2690 |
+
|
2691 |
+
# @ my-calendar
|
2692 |
+
#: my-calendar-settings.php:372
|
2693 |
+
msgid "Time format"
|
2694 |
+
msgstr "Formát času"
|
2695 |
+
|
2696 |
+
# @ my-calendar
|
2697 |
+
#: my-calendar-settings.php:372
|
2698 |
+
#: my-calendar-settings.php:375
|
2699 |
+
#: my-calendar-settings.php:378
|
2700 |
+
msgid "Current:"
|
2701 |
+
msgstr "Současný:"
|
2702 |
+
|
2703 |
+
# @ my-calendar
|
2704 |
+
#: my-calendar-settings.php:375
|
2705 |
+
msgid "Date in grid mode, week view"
|
2706 |
+
msgstr "Datum v tabulkovém zobrazení, týdenní zobrazení"
|
2707 |
+
|
2708 |
+
# @ my-calendar
|
2709 |
+
#: my-calendar-settings.php:378
|
2710 |
+
msgid "Date Format in other views"
|
2711 |
+
msgstr "Formát času v jiném zobrazení"
|
2712 |
+
|
2713 |
+
# @ my-calendar
|
2714 |
+
#: my-calendar-settings.php:381
|
2715 |
+
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2716 |
+
msgstr "Formát data používá stejný formát jako <a href=\"http://php.net/date\">PHP <code>date()</code> funkce</a>.Uložte volbu a aktualizujte výstup příkladu."
|
2717 |
+
|
2718 |
+
# @ my-calendar
|
2719 |
+
#: my-calendar-settings.php:384
|
2720 |
+
msgid "Show link to My Calendar RSS feed."
|
2721 |
+
msgstr "Zobrazit link pro odběr RSS kalendáře."
|
2722 |
+
|
2723 |
+
# @ my-calendar
|
2724 |
+
#: my-calendar-settings.php:384
|
2725 |
+
msgid "RSS feed shows recently added events."
|
2726 |
+
msgstr "Odběr RSS zobrazí nedávno přidané události."
|
2727 |
+
|
2728 |
+
# @ my-calendar
|
2729 |
+
#: my-calendar-settings.php:387
|
2730 |
+
msgid "Show link to iCal format download."
|
2731 |
+
msgstr "Zobrazit link ke stažení iCal formátu."
|
2732 |
+
|
2733 |
+
# @ my-calendar
|
2734 |
+
#: my-calendar-settings.php:387
|
2735 |
+
msgid "iCal outputs events occurring in the current calendar month."
|
2736 |
+
msgstr "iCal výstup událostí vyskytující se v aktuálním kalendářním měsíci."
|
2737 |
+
|
2738 |
+
# @ my-calendar
|
2739 |
+
#: my-calendar-settings.php:390
|
2740 |
+
msgid "Show link to print-formatted view of calendar"
|
2741 |
+
msgstr "Zobrazit link pro tisk kalendáře"
|
2742 |
+
|
2743 |
+
# @ my-calendar
|
2744 |
+
#: my-calendar-settings.php:393
|
2745 |
+
msgid "Display a jumpbox for changing month and year quickly?"
|
2746 |
+
msgstr "Zobrazit rozbalovací box pro rychlou změnu měsíce a roku?"
|
2747 |
+
|
2748 |
+
# @ my-calendar
|
2749 |
+
#: my-calendar-settings.php:400
|
2750 |
+
msgid "Grid Layout Options"
|
2751 |
+
msgstr "Nastavení výstupu tabulky"
|
2752 |
+
|
2753 |
+
# @ my-calendar
|
2754 |
+
#: my-calendar-settings.php:403
|
2755 |
+
msgid "Show Weekends on Calendar"
|
2756 |
+
msgstr "Zobrazit víkendy v kalendáři"
|
2757 |
+
|
2758 |
+
# @ my-calendar
|
2759 |
+
#: my-calendar-settings.php:410
|
2760 |
+
msgid "List Layout Options"
|
2761 |
+
msgstr "Nastavení výstupu seznamu"
|
2762 |
+
|
2763 |
+
# @ my-calendar
|
2764 |
+
#: my-calendar-settings.php:413
|
2765 |
+
msgid "How many months of events to show at a time:"
|
2766 |
+
msgstr "Kolik měsíců má být zobrazeno současně:"
|
2767 |
+
|
2768 |
+
# @ my-calendar
|
2769 |
+
#: my-calendar-settings.php:416
|
2770 |
+
msgid "Show the first event's title and the number of events that day next to the date."
|
2771 |
+
msgstr "Zobrazit první titulek události a počet událostí následujícího dne."
|
2772 |
+
|
2773 |
+
# @ my-calendar
|
2774 |
+
#: my-calendar-settings.php:423
|
2775 |
+
msgid "Event Details Options"
|
2776 |
+
msgstr "Nastavení detailů události"
|
2777 |
+
|
2778 |
+
# @ my-calendar
|
2779 |
+
#: my-calendar-settings.php:426
|
2780 |
+
msgid "Event title template"
|
2781 |
+
msgstr "Šablona nastavení titulku události"
|
2782 |
+
|
2783 |
+
# @ my-calendar
|
2784 |
+
#: my-calendar-settings.php:427
|
2785 |
+
#: my-calendar-settings.php:437
|
2786 |
+
msgid "Templating Help"
|
2787 |
+
msgstr "Pomoc se šablonou"
|
2788 |
+
|
2789 |
+
# @ my-calendar
|
2790 |
+
#: my-calendar-settings.php:427
|
2791 |
+
#: my-calendar-settings.php:437
|
2792 |
+
msgid "All template tags are available."
|
2793 |
+
msgstr "Všechny tágy šablony jsou dostupné."
|
2794 |
+
|
2795 |
+
# @ my-calendar
|
2796 |
+
#: my-calendar-settings.php:430
|
2797 |
+
msgid "Event details link text"
|
2798 |
+
msgstr "Link s detaily události"
|
2799 |
+
|
2800 |
+
# @ my-calendar
|
2801 |
+
#: my-calendar-settings.php:432
|
2802 |
+
msgid "Available template tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2803 |
+
msgstr "Dostupné tágy šablony: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2804 |
+
|
2805 |
+
# @ my-calendar
|
2806 |
+
#: my-calendar-settings.php:435
|
2807 |
+
msgid "Event URL link text"
|
2808 |
+
msgstr "Link URL textu události"
|
2809 |
+
|
2810 |
+
# @ my-calendar
|
2811 |
+
#: my-calendar-settings.php:440
|
2812 |
+
msgid "Display author's name"
|
2813 |
+
msgstr "Zobrazit jméno autora"
|
2814 |
+
|
2815 |
+
# @ my-calendar
|
2816 |
+
#: my-calendar-settings.php:443
|
2817 |
+
msgid "Display link to single event iCal download."
|
2818 |
+
msgstr "Zobrazit link ke stažení jednotlivé iCal události"
|
2819 |
+
|
2820 |
+
# @ my-calendar
|
2821 |
+
#: my-calendar-settings.php:446
|
2822 |
+
msgid "Hide category icons"
|
2823 |
+
msgstr "Schovat ikony kategorií"
|
2824 |
+
|
2825 |
+
# @ my-calendar
|
2826 |
+
#: my-calendar-settings.php:449
|
2827 |
+
msgid "Show Link to Google Map"
|
2828 |
+
msgstr "Ukázat link na Google Map"
|
2829 |
+
|
2830 |
+
# @ my-calendar
|
2831 |
+
#: my-calendar-settings.php:452
|
2832 |
+
msgid "Show Event Address"
|
2833 |
+
msgstr "Ukázat adresu události"
|
2834 |
+
|
2835 |
+
# @ my-calendar
|
2836 |
+
#: my-calendar-settings.php:455
|
2837 |
+
msgid "Show short description field on calendar."
|
2838 |
+
msgstr "Zobrazit pole krátký popisek v kalendáři"
|
2839 |
+
|
2840 |
+
# @ my-calendar
|
2841 |
+
#: my-calendar-settings.php:458
|
2842 |
+
msgid "Show full description field on calendar."
|
2843 |
+
msgstr "Zobrazit pole dlouhý popisek v kalendáři"
|
2844 |
+
|
2845 |
+
# @ my-calendar
|
2846 |
+
#: my-calendar-settings.php:461
|
2847 |
+
msgid "Show link to single-event details. (requires <a href='#mc_uri'>URL, above</a>)"
|
2848 |
+
msgstr "Zobrazit link k datailům jednoduché události. (požadováno<a href='#mc_uri'>URL, výše</a>)"
|
2849 |
+
|
2850 |
+
# @ my-calendar
|
2851 |
+
#: my-calendar-settings.php:464
|
2852 |
+
msgid "Event links expire after the event has passed."
|
2853 |
+
msgstr "Link události vyprší poté, co událost již bude minulostí."
|
2854 |
+
|
2855 |
+
# @ my-calendar
|
2856 |
+
#: my-calendar-settings.php:467
|
2857 |
+
msgid "Show current availability status"
|
2858 |
+
msgstr "Zobrazit současnou dostupnost"
|
2859 |
+
|
2860 |
+
# @ my-calendar
|
2861 |
+
#: my-calendar-settings.php:470
|
2862 |
+
msgid "Default usage of category colors."
|
2863 |
+
msgstr "Výchoz použití barev kategorie "
|
2864 |
+
|
2865 |
+
# @ my-calendar
|
2866 |
+
#: my-calendar-settings.php:471
|
2867 |
+
msgid "Apply category colors to event titles as a font color."
|
2868 |
+
msgstr "Použít barvy kategorie na titulky událostí jako barvu fontu."
|
2869 |
+
|
2870 |
+
# @ my-calendar
|
2871 |
+
#: my-calendar-settings.php:472
|
2872 |
+
msgid "Apply category colors to event titles as a background color."
|
2873 |
+
msgstr "Použít barvy kategorie na titulky událostí jako barva pozadí."
|
2874 |
+
|
2875 |
+
# @ my-calendar
|
2876 |
+
#: my-calendar-settings.php:478
|
2877 |
+
msgid "Event Scheduling Options"
|
2878 |
+
msgstr "Nastavení časů události"
|
2879 |
+
|
2880 |
+
# @ my-calendar
|
2881 |
+
#: my-calendar-settings.php:481
|
2882 |
+
msgid "Default setting for event input: 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."
|
2883 |
+
msgstr "Výchozí nastavení pro výstup události: Pokud opakování události je nastaveno na den, který neexistuje (jako např. 5-tá středa v měsíci únoru), posuň zpět o jeden týden."
|
2884 |
+
|
2885 |
+
# @ my-calendar
|
2886 |
+
#: my-calendar-settings.php:484
|
2887 |
+
msgid "Holiday Category"
|
2888 |
+
msgstr "Kategorie svátků"
|
2889 |
+
|
2890 |
+
# @ my-calendar
|
2891 |
+
#: my-calendar-settings.php:486
|
2892 |
+
msgid "None"
|
2893 |
+
msgstr "Nic"
|
2894 |
+
|
2895 |
+
# @ my-calendar
|
2896 |
+
#: my-calendar-settings.php:502
|
2897 |
+
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2898 |
+
msgstr "Výchozí nastavení pro vstup události: Pokud se události kryje s událostí zařazené do \"Holiday\" kategorie, nezobraz tuto událost."
|
2899 |
+
|
2900 |
+
# @ my-calendar
|
2901 |
+
#: my-calendar-settings.php:505
|
2902 |
+
msgid "Default Sort order for Admin Events List"
|
2903 |
+
msgstr "Výchozí řazení pro admin seznam událostí"
|
2904 |
+
|
2905 |
+
# @ my-calendar
|
2906 |
+
#: my-calendar-settings.php:507
|
2907 |
+
msgid "Event ID"
|
2908 |
+
msgstr "ID události"
|
2909 |
+
|
2910 |
+
# @ my-calendar
|
2911 |
+
#: my-calendar-settings.php:527
|
2912 |
+
msgid "Calendar Input Settings"
|
2913 |
+
msgstr "Nastavení zápisu do kalendáře"
|
2914 |
+
|
2915 |
+
# @ my-calendar
|
2916 |
+
#: my-calendar-settings.php:532
|
2917 |
+
msgid "Select which input fields will be available when adding or editing events."
|
2918 |
+
msgstr "Vyberte, jaká vstupní polbudou dostupná v případě přidání nebo editace události."
|
2919 |
+
|
2920 |
+
# @ my-calendar
|
2921 |
+
#: my-calendar-settings.php:537
|
2922 |
+
msgid "Show Event Location Dropdown Menu"
|
2923 |
+
msgstr "Zobrazit rozbalovací menu pro Místa konání události"
|
2924 |
+
|
2925 |
+
# @ my-calendar
|
2926 |
+
#: my-calendar-settings.php:537
|
2927 |
+
msgid "Show Event Short Description field"
|
2928 |
+
msgstr "Zobrazit pole krátký popisek události"
|
2929 |
+
|
2930 |
+
# @ my-calendar
|
2931 |
+
#: my-calendar-settings.php:537
|
2932 |
+
msgid "Show Event Description Field"
|
2933 |
+
msgstr "Zobrazit pole popisek události"
|
2934 |
+
|
2935 |
+
# @ my-calendar
|
2936 |
+
#: my-calendar-settings.php:537
|
2937 |
+
msgid "Show Event Category field"
|
2938 |
+
msgstr "Zobrazit pole kategorie"
|
2939 |
+
|
2940 |
+
# @ my-calendar
|
2941 |
+
#: my-calendar-settings.php:537
|
2942 |
+
msgid "Show Event image field"
|
2943 |
+
msgstr "Zobrazit pole s obrázkem událostí"
|
2944 |
+
|
2945 |
+
# @ my-calendar
|
2946 |
+
#: my-calendar-settings.php:537
|
2947 |
+
msgid "Show Event Link field"
|
2948 |
+
msgstr "Zobrazit pole odkaz"
|
2949 |
+
|
2950 |
+
# @ my-calendar
|
2951 |
+
#: my-calendar-settings.php:537
|
2952 |
+
msgid "Show Event Recurrence Options"
|
2953 |
+
msgstr "Zobrazit možnosti "
|
2954 |
+
|
2955 |
+
# @ my-calendar
|
2956 |
+
#: my-calendar-settings.php:537
|
2957 |
+
msgid "Show Event registration options"
|
2958 |
+
msgstr "Zobrazit možnosti registrace události"
|
2959 |
+
|
2960 |
+
# @ my-calendar
|
2961 |
+
#: my-calendar-settings.php:537
|
2962 |
+
msgid "Show Event location fields"
|
2963 |
+
msgstr "Zobrazit pole s místem konání události"
|
2964 |
+
|
2965 |
+
# @ default
|
2966 |
+
#: my-calendar-settings.php:537
|
2967 |
+
msgid "Use HTML Editor in Event Description Field"
|
2968 |
+
msgstr "Použít HTML editor v poli popisu události"
|
2969 |
+
|
2970 |
+
# @ my-calendar
|
2971 |
+
#: my-calendar-settings.php:550
|
2972 |
+
msgid "Administrators see all input options"
|
2973 |
+
msgstr "Administrátoři vidí všechny vstupní nastavení"
|
2974 |
+
|
2975 |
+
# @ my-calendar
|
2976 |
+
#: my-calendar-settings.php:555
|
2977 |
+
msgid "Save Input Settings"
|
2978 |
+
msgstr "Uložit vstupní nastavení"
|
2979 |
+
|
2980 |
+
# @ my-calendar
|
2981 |
+
#: my-calendar-settings.php:562
|
2982 |
+
msgid "Multisite Settings (Network Administrators only)"
|
2983 |
+
msgstr "Vícestránkové nastavení (pouze síťoví administrátoři)"
|
2984 |
+
|
2985 |
+
# @ my-calendar
|
2986 |
+
#: my-calendar-settings.php:564
|
2987 |
+
msgid "Multisite support is a beta feature - use with caution."
|
2988 |
+
msgstr "Podpora pro více stránek je beta aplikace - používejte to s opatrností."
|
2989 |
+
|
2990 |
+
# @ my-calendar
|
2991 |
+
#: my-calendar-settings.php:569
|
2992 |
+
msgid "Settings for WP MultiSite configurations"
|
2993 |
+
msgstr "Nastavení pro WP vícestránkovou konfiguraci"
|
2994 |
+
|
2995 |
+
# @ my-calendar
|
2996 |
+
#: my-calendar-settings.php:570
|
2997 |
+
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2998 |
+
msgstr "Centrální kalendář je kalendář přiřazený k výchozím stránkám ve Vašem Wordpress vícestránkové síti."
|
2999 |
+
|
3000 |
+
# @ my-calendar
|
3001 |
+
#: my-calendar-settings.php:572
|
3002 |
+
msgid "Site owners may only post to their local calendar"
|
3003 |
+
msgstr "Majitelé stránek může pouze vkládat do lokálního kalendáře"
|
3004 |
+
|
3005 |
+
# @ my-calendar
|
3006 |
+
#: my-calendar-settings.php:573
|
3007 |
+
msgid "Site owners may only post to the central calendar"
|
3008 |
+
msgstr "Majitelé stránek může pouze vkládat do centrálního kalendáře"
|
3009 |
+
|
3010 |
+
# @ my-calendar
|
3011 |
+
#: my-calendar-settings.php:574
|
3012 |
+
msgid "Site owners may manage either calendar"
|
3013 |
+
msgstr "Majitelé stránek nemohou obsluhovat kalendář"
|
3014 |
+
|
3015 |
+
# @ my-calendar
|
3016 |
+
#: my-calendar-settings.php:576
|
3017 |
+
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
3018 |
+
msgstr "Změny budou mít vliv pouze na vstupní povolení. Z hlediska návštěvníků nebude kalendář změněn."
|
3019 |
+
|
3020 |
+
# @ my-calendar
|
3021 |
+
#: my-calendar-settings.php:578
|
3022 |
+
msgid "Sub-site calendars show events from their local calendar."
|
3023 |
+
msgstr "Kalendáře na ostatních stránkách zobrazí události z jejich lokálních kalendářů."
|
3024 |
+
|
3025 |
+
# @ my-calendar
|
3026 |
+
#: my-calendar-settings.php:579
|
3027 |
+
msgid "Sub-site calendars show events from the central calendar."
|
3028 |
+
msgstr "Podružné síťové kalendáře zobrazí události z hlavního kalendáře."
|
3029 |
+
|
3030 |
+
# @ my-calendar
|
3031 |
+
#: my-calendar-settings.php:583
|
3032 |
+
msgid "Save Multisite Settings"
|
3033 |
+
msgstr "Uložit nastavení pro více míst"
|
3034 |
+
|
3035 |
+
# @ my-calendar
|
3036 |
+
#: my-calendar-settings.php:590
|
3037 |
+
msgid "Calendar Email Settings"
|
3038 |
+
msgstr "Nastavení emailu kalendáře"
|
3039 |
+
|
3040 |
+
# @ my-calendar
|
3041 |
+
#: my-calendar-settings.php:595
|
3042 |
+
msgid "Calendar Options: Email Notifications"
|
3043 |
+
msgstr "Možnosti kalendáře: Emailové oznamování"
|
3044 |
+
|
3045 |
+
# @ my-calendar
|
3046 |
+
#: my-calendar-settings.php:599
|
3047 |
+
msgid "Send Email Notifications when new events are scheduled or reserved."
|
3048 |
+
msgstr "Zaslat oznámení emailem v případě, že je událost plánovaná nebo zarezervovaná."
|
3049 |
+
|
3050 |
+
# @ my-calendar
|
3051 |
+
#: my-calendar-settings.php:602
|
3052 |
+
msgid "Notification messages are sent to: "
|
3053 |
+
msgstr "Oznamovací zprávy byly odeslány do:"
|
3054 |
+
|
3055 |
+
# @ my-calendar
|
3056 |
+
#: my-calendar-settings.php:605
|
3057 |
+
msgid "Email subject"
|
3058 |
+
msgstr "Předmět emailu"
|
3059 |
+
|
3060 |
+
# @ my-calendar
|
3061 |
+
#: my-calendar-settings.php:605
|
3062 |
+
msgid "New event Added"
|
3063 |
+
msgstr "Nová událost přidána"
|
3064 |
+
|
3065 |
+
# @ my-calendar
|
3066 |
+
#: my-calendar-settings.php:608
|
3067 |
+
msgid "Message Body"
|
3068 |
+
msgstr "Tělo zprávy"
|
3069 |
+
|
3070 |
+
# @ my-calendar
|
3071 |
+
#: my-calendar-settings.php:608
|
3072 |
+
msgid "New Event:"
|
3073 |
+
msgstr "Nová událost"
|
3074 |
+
|
3075 |
+
# @ my-calendar
|
3076 |
+
#: my-calendar-settings.php:609
|
3077 |
+
msgid "Shortcode Help"
|
3078 |
+
msgstr "Nápověda pro krátký kód"
|
3079 |
+
|
3080 |
+
# @ my-calendar
|
3081 |
+
#: my-calendar-settings.php:609
|
3082 |
+
msgid "All template shortcodes are available."
|
3083 |
+
msgstr "Všechny krátké kódy šablony jsou dostupné."
|
3084 |
+
|
3085 |
+
# @ my-calendar
|
3086 |
+
#: my-calendar-settings.php:614
|
3087 |
+
msgid "Save Email Settings"
|
3088 |
+
msgstr "Uložit nastavení emailu"
|
3089 |
+
|
3090 |
+
# @ my-calendar
|
3091 |
+
#: my-calendar-settings.php:620
|
3092 |
+
msgid "Calendar User Settings"
|
3093 |
+
msgstr "Uživatelské nastavení kalendáře"
|
3094 |
+
|
3095 |
+
# @ my-calendar
|
3096 |
+
#: my-calendar-settings.php:627
|
3097 |
+
msgid "Settings which can be configured in registered user's accounts"
|
3098 |
+
msgstr "Nastavení, která mohou být nastavena u účtů registrovaných osob"
|
3099 |
+
|
3100 |
+
# @ my-calendar
|
3101 |
+
#: my-calendar-settings.php:629
|
3102 |
+
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
3103 |
+
msgstr "Povolit registrovaným osobám zvolit výchozí časovou zónu nebo výchozí místo výskytu v jejich profilu."
|
3104 |
+
|
3105 |
+
# @ my-calendar
|
3106 |
+
#: my-calendar-settings.php:641
|
3107 |
+
msgid "Timezone Settings"
|
3108 |
+
msgstr "Nastavení časové zóny"
|
3109 |
+
|
3110 |
+
# @ my-calendar
|
3111 |
+
#: my-calendar-settings.php:642
|
3112 |
+
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."
|
3113 |
+
msgstr "Tato nastavení provedou registrovaní uživatelé s možností nastavení výchozí časové zóny v jejich profilu. Pokud si prohlédnou Váš kalendář, čas událostí se jim zobrazí v čase zvolené časové zóny."
|
3114 |
+
|
3115 |
+
# @ my-calendar
|
3116 |
+
#: my-calendar-settings.php:644
|
3117 |
+
msgid "Enable Timezone"
|
3118 |
+
msgstr "Povolit časovou zóny"
|
3119 |
+
|
3120 |
+
# @ my-calendar
|
3121 |
+
#: my-calendar-settings.php:647
|
3122 |
+
msgid "Select Timezone Label"
|
3123 |
+
msgstr "Vybrat nápis časové zóny"
|
3124 |
+
|
3125 |
+
# @ my-calendar
|
3126 |
+
#: my-calendar-settings.php:650
|
3127 |
+
msgid "Timezone Options"
|
3128 |
+
msgstr "Nastavení časové zóny"
|
3129 |
+
|
3130 |
+
# @ my-calendar
|
3131 |
+
#: my-calendar-settings.php:650
|
3132 |
+
#: my-calendar-settings.php:674
|
3133 |
+
msgid "Value, Label; one per line"
|
3134 |
+
msgstr "Hodnota, titulek; jeden na řádek"
|
3135 |
+
|
3136 |
+
# @ my-calendar
|
3137 |
+
#: my-calendar-settings.php:662
|
3138 |
+
msgid "Location Settings"
|
3139 |
+
msgstr "Nastavení místa konání"
|
3140 |
+
|
3141 |
+
# @ my-calendar
|
3142 |
+
#: my-calendar-settings.php:663
|
3143 |
+
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. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
3144 |
+
msgstr "Tato nastavení provedou registrovaní uživatelé s možností si zvolit časové pásmo v jejich profilu. Pokud budou prohlížet Váš kalendář, jejich výchozí pohled bude limitovaný vzhledem k místům, které zahrnuje tento lokační parametr. Tyto hodnoty mohou být také použity k vytvoření vlastního nastavení filtrace míst použitím <code>my_calendar_locations</code> kódu. Není nezbytné toto nastavení povolit pro uživatele, aby mohli použit nastavení vlastní filtrace"
|
3145 |
+
|
3146 |
+
# @ my-calendar
|
3147 |
+
#: my-calendar-settings.php:665
|
3148 |
+
msgid "Enable Location"
|
3149 |
+
msgstr "Povolit zadávání místa události"
|
3150 |
+
|
3151 |
+
# @ my-calendar
|
3152 |
+
#: my-calendar-settings.php:668
|
3153 |
+
msgid "Use this location list as input control"
|
3154 |
+
msgstr "Použít tento seznam míst konání jako vstupní kontrolu"
|
3155 |
+
|
3156 |
+
# @ my-calendar
|
3157 |
+
#: my-calendar-settings.php:668
|
3158 |
+
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
3159 |
+
msgstr "Záznam běžného textu tohoto typu místa bude zaměněn za rozevírací pole obsahující tyto možnosti."
|
3160 |
+
|
3161 |
+
# @ my-calendar
|
3162 |
+
#: my-calendar-settings.php:671
|
3163 |
+
msgid "Select Location Label"
|
3164 |
+
msgstr "Vybrat titulek místa události"
|
3165 |
+
|
3166 |
+
# @ my-calendar
|
3167 |
+
#: my-calendar-settings.php:674
|
3168 |
+
msgid "Location Options"
|
3169 |
+
msgstr "Nastavení místa konání"
|
3170 |
+
|
3171 |
+
# @ my-calendar
|
3172 |
+
#: my-calendar-settings.php:684
|
3173 |
+
msgid "Location Type"
|
3174 |
+
msgstr "Typ místa konání"
|
3175 |
+
|
3176 |
+
# @ my-calendar
|
3177 |
+
#: my-calendar-settings.php:697
|
3178 |
+
msgid "Save User Settings"
|
3179 |
+
msgstr "Uložit uživatelské nastavení"
|
3180 |
+
|
3181 |
+
# @ my-calendar
|
3182 |
+
#: my-calendar-styles.php:79
|
3183 |
+
msgid "The stylesheet has been updated."
|
3184 |
+
msgstr "Tento styl byl aktualizován."
|
3185 |
+
|
3186 |
+
# @ my-calendar
|
3187 |
+
#: my-calendar-styles.php:79
|
3188 |
+
msgid "Write Error! Please verify write permissions on the style file."
|
3189 |
+
msgstr "Chyba zápisu! Prověřte prosím povolení k zápisu do souboru stylu."
|
3190 |
+
|
3191 |
+
# @ my-calendar
|
3192 |
+
#: my-calendar-styles.php:93
|
3193 |
+
msgid "Stylesheet reset to default."
|
3194 |
+
msgstr "Resetování stylu do výchozího stavu."
|
3195 |
+
|
3196 |
+
# @ my-calendar
|
3197 |
+
#: my-calendar-styles.php:96
|
3198 |
+
msgid "Style Settings Saved"
|
3199 |
+
msgstr "Nastavení stylu bylo uloženo"
|
3200 |
+
|
3201 |
+
# @ my-calendar
|
3202 |
+
#: my-calendar-styles.php:105
|
3203 |
+
msgid "New theme selected."
|
3204 |
+
msgstr "Vybráno nové téma."
|
3205 |
+
|
3206 |
+
# @ my-calendar
|
3207 |
+
#: my-calendar-styles.php:121
|
3208 |
+
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
3209 |
+
msgstr "Promiňte. Soubor, který hledáte, neexistuje. Zkontrolujte jméno souboru a místa!"
|
3210 |
+
|
3211 |
+
# @ my-calendar
|
3212 |
+
#: my-calendar-styles.php:129
|
3213 |
+
msgid "My Calendar Styles"
|
3214 |
+
msgstr "Styly Kalendáře"
|
3215 |
+
|
3216 |
+
# @ my-calendar
|
3217 |
+
#: my-calendar-styles.php:133
|
3218 |
+
msgid "Calendar Style Settings"
|
3219 |
+
msgstr "Nastavení stylů kalendáře"
|
3220 |
+
|
3221 |
+
# @ my-calendar
|
3222 |
+
#: my-calendar-styles.php:141
|
3223 |
+
msgid "Select My Calendar Theme"
|
3224 |
+
msgstr "Vyberte téma kalendáře"
|
3225 |
+
|
3226 |
+
# @ default
|
3227 |
+
#: my-calendar-styles.php:149
|
3228 |
+
msgid "Your Custom Stylesheets"
|
3229 |
+
msgstr "Váš vlastní styl"
|
3230 |
+
|
3231 |
+
# @ my-calendar
|
3232 |
+
#: my-calendar-styles.php:158
|
3233 |
+
msgid "Installed Stylesheets"
|
3234 |
+
msgstr "Nainstalované styly"
|
3235 |
+
|
3236 |
+
# @ my-calendar
|
3237 |
+
#: my-calendar-styles.php:166
|
3238 |
+
msgid "Choose Style"
|
3239 |
+
msgstr "Vybere styl"
|
3240 |
+
|
3241 |
+
# @ my-calendar
|
3242 |
+
#: my-calendar-styles.php:179
|
3243 |
+
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."
|
3244 |
+
msgstr "Kalendář nebyl schopen aktualizovat CSS soubor během upgradu. Zkontrolujte povolení souborů, pokud si přejete editovat styly Kalendáře. Vaše předchozí uložené styly naleznete níže. Tato zpráva a styly budou smazány z databáze v momentě, kdy úspěšně aktualizujete styl."
|
3245 |
+
|
3246 |
+
# @ my-calendar
|
3247 |
+
#: my-calendar-styles.php:187
|
3248 |
+
msgid "CSS Style Options"
|
3249 |
+
msgstr "Možnosti CSS"
|
3250 |
+
|
3251 |
+
# @ my-calendar
|
3252 |
+
#: my-calendar-styles.php:189
|
3253 |
+
msgid "Apply CSS only on these pages (comma separated page IDs)"
|
3254 |
+
msgstr "Použít CSS pouze na těchto stránkách (čárkou oddělená ID stránek)"
|
3255 |
+
|
3256 |
+
# @ my-calendar
|
3257 |
+
#: my-calendar-styles.php:192
|
3258 |
+
msgid "Restore My Calendar stylesheet"
|
3259 |
+
msgstr "Obnovit styl kalendáře"
|
3260 |
+
|
3261 |
+
# @ my-calendar
|
3262 |
+
#: my-calendar-styles.php:192
|
3263 |
+
msgid "Disable My Calendar Stylesheet"
|
3264 |
+
msgstr "Zakázat šablonu stylů pro kalendář"
|
3265 |
+
|
3266 |
+
# @ my-calendar
|
3267 |
+
#: my-calendar-styles.php:195
|
3268 |
+
msgid "Edit the stylesheet for My Calendar"
|
3269 |
+
msgstr "Editovat šablonu stylů pro kalendář "
|
3270 |
+
|
3271 |
+
# @ my-calendar
|
3272 |
+
#: my-calendar-styles.php:208
|
3273 |
+
msgid "Comparing Your Style with latest installed version of My Calendar"
|
3274 |
+
msgstr "Porovnávání Vašeho stylu s poslední instalovanou verzí kalendáře"
|
3275 |
+
|
3276 |
+
# @ my-calendar
|
3277 |
+
#: my-calendar-styles.php:212
|
3278 |
+
msgid "There have been updates to the stylesheet."
|
3279 |
+
msgstr "Byl proveden update stylu."
|
3280 |
+
|
3281 |
+
# @ my-calendar
|
3282 |
+
#: my-calendar-styles.php:212
|
3283 |
+
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
3284 |
+
msgstr "Porovnej styl s poslední instalovanou verzí Kalendáře."
|
3285 |
+
|
3286 |
+
# @ my-calendar
|
3287 |
+
#: my-calendar-styles.php:216
|
3288 |
+
msgid "Your stylesheet matches that included with My Calendar."
|
3289 |
+
msgstr "Váš styl souhlasí s tím, který byl v kalendáři."
|
3290 |
+
|
3291 |
+
# @ my-calendar
|
3292 |
+
#: my-calendar-styles.php:224
|
3293 |
+
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
3294 |
+
msgstr "Reset Vašeho stylu nastaví styl, který je nyní distribuovaný v pluginu kalendáře."
|
3295 |
+
|
3296 |
+
# @ my-calendar
|
3297 |
+
#: my-calendar-templates.php:20
|
3298 |
+
msgid "to"
|
3299 |
+
msgstr "k"
|
3300 |
+
|
3301 |
+
# @ my-calendar
|
3302 |
+
#: my-calendar-templates.php:42
|
3303 |
+
msgid "Map<span> to %s</span>"
|
3304 |
+
msgstr "Mapa<span> k %s</span>"
|
3305 |
+
|
3306 |
+
# @ my-calendar
|
3307 |
+
#: my-calendar-templates.php:63
|
3308 |
+
#: my-calendar-templates.php:111
|
3309 |
+
msgid "Visit web site<span>: %s</span>"
|
3310 |
+
msgstr "Navštívit webovou stránku<span>: %s</span>"
|
3311 |
+
|
3312 |
+
# @ my-calendar
|
3313 |
+
#: my-calendar-templates.php:120
|
3314 |
+
msgid "Date of Month (the %s of each month)"
|
3315 |
+
msgstr "Den měsíce (%s každého měsíce)"
|
3316 |
+
|
3317 |
+
# @ my-calendar
|
3318 |
+
#: my-calendar-templates.php:121
|
3319 |
+
msgid "Day of Month (the %s %s of each month)"
|
3320 |
+
msgstr "Den měsíce (%s %s každého měsíce)"
|
3321 |
+
|
3322 |
+
# @ my-calendar
|
3323 |
+
#: my-calendar-templating.php:18
|
3324 |
+
msgid "Grid Output Template saved"
|
3325 |
+
msgstr "Šablona tabulky uložena"
|
3326 |
+
|
3327 |
+
# @ my-calendar
|
3328 |
+
#: my-calendar-templating.php:30
|
3329 |
+
msgid "List Output Template saved"
|
3330 |
+
msgstr "Šablona seznamu uložena"
|
3331 |
+
|
3332 |
+
# @ my-calendar
|
3333 |
+
#: my-calendar-templating.php:41
|
3334 |
+
msgid "Mini Output Template saved"
|
3335 |
+
msgstr "Šablona mini výstupu uložena"
|
3336 |
+
|
3337 |
+
# @ my-calendar
|
3338 |
+
#: my-calendar-templating.php:52
|
3339 |
+
msgid "Event Details Template saved"
|
3340 |
+
msgstr "Šablona detailů události uložena"
|
3341 |
+
|
3342 |
+
# @ my-calendar
|
3343 |
+
#: my-calendar-templating.php:67
|
3344 |
+
msgid "My Calendar Information Templates"
|
3345 |
+
msgstr "Informace k šabloně kalendáře"
|
3346 |
+
|
3347 |
+
# @ my-calendar
|
3348 |
+
#: my-calendar-templating.php:73
|
3349 |
+
msgid "Title of the event."
|
3350 |
+
msgstr "Titulek události."
|
3351 |
+
|
3352 |
+
# @ my-calendar
|
3353 |
+
#: my-calendar-templating.php:76
|
3354 |
+
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3355 |
+
msgstr "Titulek události jako link, pokud je URL aktuální nebo titulek samostatný, pokud není."
|
3356 |
+
|
3357 |
+
# @ my-calendar
|
3358 |
+
#: my-calendar-templating.php:79
|
3359 |
+
msgid "Start time for the event."
|
3360 |
+
msgstr "Čas začátku události."
|
3361 |
+
|
3362 |
+
# @ my-calendar
|
3363 |
+
#: my-calendar-templating.php:82
|
3364 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
3365 |
+
msgstr "Čas události přizpůsobený času uživatele dle jeho časové zóny, pokud byla nastavena."
|
3366 |
+
|
3367 |
+
# @ my-calendar
|
3368 |
+
#: my-calendar-templating.php:85
|
3369 |
+
msgid "Date on which the event begins."
|
3370 |
+
msgstr "Datum začátku události."
|
3371 |
+
|
3372 |
+
# @ my-calendar
|
3373 |
+
#: my-calendar-templating.php:88
|
3374 |
+
msgid "Date on which the event ends."
|
3375 |
+
msgstr "Datum konce události."
|
3376 |
+
|
3377 |
+
# @ my-calendar
|
3378 |
+
#: my-calendar-templating.php:91
|
3379 |
+
msgid "Time at which the event ends."
|
3380 |
+
msgstr "Čas, kdy událost skončí."
|
3381 |
+
|
3382 |
+
# @ my-calendar
|
3383 |
+
#: my-calendar-templating.php:94
|
3384 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3385 |
+
msgstr "Od datumu začátku do data konce; vyjmut datum konce, pokud je shodný s datumem začátku."
|
3386 |
+
|
3387 |
+
# @ my-calendar
|
3388 |
+
#: my-calendar-templating.php:97
|
3389 |
+
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3390 |
+
msgstr "Vícedenní událost: neseřazený seznam datumů/časů. V jiném případě začíná datumem/časem."
|
3391 |
+
|
3392 |
+
# @ my-calendar
|
3393 |
+
#: my-calendar-templating.php:100
|
3394 |
+
msgid "Author who posted the event."
|
3395 |
+
msgstr "Autor, kdo zadal událost."
|
3396 |
+
|
3397 |
+
# @ my-calendar
|
3398 |
+
#: my-calendar-templating.php:103
|
3399 |
+
msgid "Name of the assigned host for the event."
|
3400 |
+
msgstr "Jméno hosta události."
|
3401 |
+
|
3402 |
+
# @ my-calendar
|
3403 |
+
#: my-calendar-templating.php:106
|
3404 |
+
msgid "Email for the person assigned as host."
|
3405 |
+
msgstr "Email pro osobu, která byla označena jako host."
|
3406 |
+
|
3407 |
+
# @ my-calendar
|
3408 |
+
#: my-calendar-templating.php:109
|
3409 |
+
msgid "Short event description."
|
3410 |
+
msgstr "Krátký popis události."
|
3411 |
+
|
3412 |
+
# @ my-calendar
|
3413 |
+
#: my-calendar-templating.php:112
|
3414 |
+
msgid "Description of the event."
|
3415 |
+
msgstr "Popis události."
|
3416 |
+
|
3417 |
+
# @ my-calendar
|
3418 |
+
#: my-calendar-templating.php:118
|
3419 |
+
msgid "URL provided for the event."
|
3420 |
+
msgstr "Vložená URL události"
|
3421 |
+
|
3422 |
+
# @ my-calendar
|
3423 |
+
#: my-calendar-templating.php:121
|
3424 |
+
msgid "Link to an auto-generated page containing information about the event."
|
3425 |
+
msgstr "Link na automaticky generovanou stránku obsahující informace o události."
|
3426 |
+
|
3427 |
+
# @ my-calendar
|
3428 |
+
#: my-calendar-templating.php:124
|
3429 |
+
msgid "Whether event is currently open for registration."
|
3430 |
+
msgstr "Jestli je událost otevřena k registraci."
|
3431 |
+
|
3432 |
+
# @ my-calendar
|
3433 |
+
#: my-calendar-templating.php:127
|
3434 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3435 |
+
msgstr "Aktuální stav události: either \"publikována\" or \"Zarezervována.\""
|
3436 |
+
|
3437 |
+
# @ my-calendar
|
3438 |
+
#: my-calendar-templating.php:133
|
3439 |
+
msgid "Name of the location of the event."
|
3440 |
+
msgstr "Jméno místa konání události."
|
3441 |
+
|
3442 |
+
# @ my-calendar
|
3443 |
+
#: my-calendar-templating.php:136
|
3444 |
+
msgid "First line of the site address."
|
3445 |
+
msgstr "První řádek adresy místa."
|
3446 |
+
|
3447 |
+
# @ my-calendar
|
3448 |
+
#: my-calendar-templating.php:139
|
3449 |
+
msgid "Second line of the site address."
|
3450 |
+
msgstr "druhý řádek adresy místa konání."
|
3451 |
+
|
3452 |
+
# @ my-calendar
|
3453 |
+
#: my-calendar-templating.php:142
|
3454 |
+
msgid "City."
|
3455 |
+
msgstr "Město."
|
3456 |
+
|
3457 |
+
# @ my-calendar
|
3458 |
+
#: my-calendar-templating.php:145
|
3459 |
+
msgid "State."
|
3460 |
+
msgstr "Stát."
|
3461 |
+
|
3462 |
+
# @ my-calendar
|
3463 |
+
#: my-calendar-templating.php:148
|
3464 |
+
msgid "Postal code/zip code."
|
3465 |
+
msgstr "PSČ."
|
3466 |
+
|
3467 |
+
# @ my-calendar
|
3468 |
+
#: my-calendar-templating.php:151
|
3469 |
+
msgid "Custom region."
|
3470 |
+
msgstr "Vlastní region."
|
3471 |
+
|
3472 |
+
# @ my-calendar
|
3473 |
+
#: my-calendar-templating.php:154
|
3474 |
+
msgid "Country for the event location."
|
3475 |
+
msgstr "Země místa konání události."
|
3476 |
+
|
3477 |
+
# @ my-calendar
|
3478 |
+
#: my-calendar-templating.php:157
|
3479 |
+
msgid "Output the URL for the location."
|
3480 |
+
msgstr "Výstup URL pro místo konání."
|
3481 |
+
|
3482 |
+
# @ my-calendar
|
3483 |
+
#: my-calendar-templating.php:160
|
3484 |
+
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3485 |
+
msgstr "Adresa události v <a href=\"http://microformats.org/wiki/hcard\">hcard</a> formátu."
|
3486 |
+
|
3487 |
+
# @ my-calendar
|
3488 |
+
#: my-calendar-templating.php:163
|
3489 |
+
msgid "Link to Google Map to the event, if address information is available."
|
3490 |
+
msgstr "Odkázat na Google Map, pokud je adresa místa konání k dispozici."
|
3491 |
+
|
3492 |
+
# @ my-calendar
|
3493 |
+
#: my-calendar-templating.php:169
|
3494 |
+
msgid "Name of the category of the event."
|
3495 |
+
msgstr "Jméno kategorie události"
|
3496 |
+
|
3497 |
+
# @ my-calendar
|
3498 |
+
#: my-calendar-templating.php:172
|
3499 |
+
msgid "URL for the event's category icon."
|
3500 |
+
msgstr "URL ikony kategorie událostí"
|
3501 |
+
|
3502 |
+
# @ my-calendar
|
3503 |
+
#: my-calendar-templating.php:175
|
3504 |
+
msgid "Hex code for the event's category color."
|
3505 |
+
msgstr "HEX kód barvy kategorie událostí."
|
3506 |
+
|
3507 |
+
# @ my-calendar
|
3508 |
+
#: my-calendar-templating.php:178
|
3509 |
+
msgid "ID of the category of the event."
|
3510 |
+
msgstr "ID kategorie události"
|
3511 |
+
|
3512 |
+
# @ my-calendar
|
3513 |
+
#: my-calendar-templating.php:181
|
3514 |
+
msgid "Advanced users may wish to customize the HTML elements and order of items presented for each event. This page provides the ability to create a customized view of your events in each different context. All available template tags are documented on the Help page. The default templates provided are based on the default views assuming all output is enabled. <strong>Custom templates will override any other output rules you've configured in settings.</strong>"
|
3515 |
+
msgstr "Pokročilí uživatelé mohou požadovat možnost si přizpůsobit HTML elementy a pořadí položek zobrazených v každé události. Tato stránka poskytuje možnost si vytvořit vlastní pohled na události v mnoha různých pohledech. Všechny dostupné tagy jsou zdokumentované na stránce nápovědy. Výchozí šablona je založena na výchozích pohledech předpokládajících, že všechny výstupy jsou povoleny. <strong>Vlastní šablony přepíší všechna další pravidla výstupu, které byly nastaveny.</strong>"
|
3516 |
+
|
3517 |
+
# @ my-calendar
|
3518 |
+
#: my-calendar-templating.php:181
|
3519 |
+
msgid "Templates Help"
|
3520 |
+
msgstr "Nápověda k šabloně"
|
3521 |
+
|
3522 |
+
# @ my-calendar
|
3523 |
+
#: my-calendar-templating.php:184
|
3524 |
+
msgid "My Calendar: Grid Event Template"
|
3525 |
+
msgstr "Kalendář: Šablona tabulky události"
|
3526 |
+
|
3527 |
+
# @ my-calendar
|
3528 |
+
#: my-calendar-templating.php:189
|
3529 |
+
msgid "Use this grid event template"
|
3530 |
+
msgstr "Použít tuto šablonu tabulky událostí"
|
3531 |
+
|
3532 |
+
# @ my-calendar
|
3533 |
+
#: my-calendar-templating.php:192
|
3534 |
+
msgid "Your custom template for events in the calendar grid output."
|
3535 |
+
msgstr "Vaše vlastní šablona událostí v tabulkovém výstupu kalendáře."
|
3536 |
+
|
3537 |
+
# @ my-calendar
|
3538 |
+
#: my-calendar-templating.php:195
|
3539 |
+
msgid "Save Grid Template"
|
3540 |
+
msgstr "Uložit šablonu mřížky"
|
3541 |
+
|
3542 |
+
# @ my-calendar
|
3543 |
+
#: my-calendar-templating.php:204
|
3544 |
+
msgid "My Calendar: List Event Template"
|
3545 |
+
msgstr "Kalendář: Šablona seznamu události"
|
3546 |
+
|
3547 |
+
# @ my-calendar
|
3548 |
+
#: my-calendar-templating.php:209
|
3549 |
+
msgid "Use this list event template"
|
3550 |
+
msgstr "Použít tento seznam šablon událostí"
|
3551 |
+
|
3552 |
+
# @ my-calendar
|
3553 |
+
#: my-calendar-templating.php:212
|
3554 |
+
msgid "Your custom template for events in calendar list output."
|
3555 |
+
msgstr "Vaše vlastní šablona událostí v seznamovém výstupu kalendáře."
|
3556 |
+
|
3557 |
+
# @ my-calendar
|
3558 |
+
#: my-calendar-templating.php:215
|
3559 |
+
msgid "Save List Template"
|
3560 |
+
msgstr "Uložit seznam šablon"
|
3561 |
+
|
3562 |
+
# @ my-calendar
|
3563 |
+
#: my-calendar-templating.php:224
|
3564 |
+
msgid "My Calendar: Mini Calendar Template"
|
3565 |
+
msgstr "Kalendář: Šablona mini kalendáře"
|
3566 |
+
|
3567 |
+
# @ my-calendar
|
3568 |
+
#: my-calendar-templating.php:229
|
3569 |
+
msgid "Use this mini event template"
|
3570 |
+
msgstr "Použít tuto šablonu mini události"
|
3571 |
+
|
3572 |
+
# @ my-calendar
|
3573 |
+
#: my-calendar-templating.php:232
|
3574 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
3575 |
+
msgstr "Vaše vlastní šablona událostí v postranním/mini výstupu kalendáře."
|
3576 |
+
|
3577 |
+
# @ my-calendar
|
3578 |
+
#: my-calendar-templating.php:235
|
3579 |
+
msgid "Save Mini Template"
|
3580 |
+
msgstr "Uložit mini šablonu"
|
3581 |
+
|
3582 |
+
# @ my-calendar
|
3583 |
+
#: my-calendar-templating.php:244
|
3584 |
+
msgid "My Calendar: Event Details Page Template"
|
3585 |
+
msgstr "Kalendář: Šablona stránky detailu události"
|
3586 |
+
|
3587 |
+
# @ my-calendar
|
3588 |
+
#: my-calendar-templating.php:249
|
3589 |
+
msgid "Use this details template"
|
3590 |
+
msgstr "Použít tuto šablonu detailů"
|
3591 |
+
|
3592 |
+
# @ my-calendar
|
3593 |
+
#: my-calendar-templating.php:252
|
3594 |
+
msgid "Your custom template for events on the event details page."
|
3595 |
+
msgstr "Vaše vlastní šablona událostí na stránce s detaily události."
|
3596 |
+
|
3597 |
+
# @ my-calendar
|
3598 |
+
#: my-calendar-templating.php:255
|
3599 |
+
msgid "Save Details Template"
|
3600 |
+
msgstr "Uložit detaily šablony"
|
3601 |
+
|
3602 |
+
# @ my-calendar
|
3603 |
+
#: my-calendar-upgrade-db.php:17
|
3604 |
+
#: my-calendar-upgrade-db.php:25
|
3605 |
+
msgid "The My Calendar database needs to be updated."
|
3606 |
+
msgstr "Databáze kalendáře musí být aktualizována "
|
3607 |
+
|
3608 |
+
# @ my-calendar
|
3609 |
+
#: my-calendar-upgrade-db.php:18
|
3610 |
+
#: my-calendar-upgrade-db.php:38
|
3611 |
+
msgid "Update now"
|
3612 |
+
msgstr "Aktualizovat"
|
3613 |
+
|
3614 |
+
# @ my-calendar
|
3615 |
+
#: my-calendar-upgrade-db.php:25
|
3616 |
+
msgid "Update now."
|
3617 |
+
msgstr "Aktualizovat nyní."
|
3618 |
+
|
3619 |
+
# @ my-calendar
|
3620 |
+
#: my-calendar-upgrade-db.php:37
|
3621 |
+
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!"
|
3622 |
+
msgstr "Nevytvořili jste žádné události, proto kalendář nemůže zjistit, zda je databáze aktuální. Jestliže nemůžete přidávat události, aktualizujete databázi."
|
3623 |
+
|
3624 |
+
# @ my-calendar
|
3625 |
+
#: my-calendar-upgrade-db.php:47
|
3626 |
+
msgid "My Calendar Database is updated."
|
3627 |
+
msgstr "Databáze kalendáře byla aktualizována"
|
3628 |
+
|
3629 |
+
# @ my-calendar
|
3630 |
+
#: my-calendar-user.php:36
|
3631 |
+
msgid "My Calendar User Settings"
|
3632 |
+
msgstr "Uživatelské nastavení kalendáře"
|
3633 |
+
|
3634 |
+
# @ my-calendar
|
3635 |
+
#: my-calendar-widgets.php:5
|
3636 |
+
msgid "My Calendar: Today's Events"
|
3637 |
+
msgstr "Kalendář: Dnešní událost"
|
3638 |
+
|
3639 |
+
# @ my-calendar
|
3640 |
+
#: my-calendar-widgets.php:42
|
3641 |
+
#: my-calendar-widgets.php:128
|
3642 |
+
msgid "Template"
|
3643 |
+
msgstr "Šablona"
|
3644 |
+
|
3645 |
+
# @ my-calendar
|
3646 |
+
#: my-calendar-widgets.php:45
|
3647 |
+
msgid "Add calendar URL to use this option."
|
3648 |
+
msgstr "Vložte URL kalendáře pro použití této volby."
|
3649 |
+
|
3650 |
+
# @ my-calendar
|
3651 |
+
#: my-calendar-widgets.php:47
|
3652 |
+
#: my-calendar-widgets.php:136
|
3653 |
+
msgid "Link widget title to calendar:"
|
3654 |
+
msgstr "Linkovat titulek widgetu s kalendářem:"
|
3655 |
+
|
3656 |
+
# @ my-calendar
|
3657 |
+
#: my-calendar-widgets.php:48
|
3658 |
+
#: my-calendar-widgets.php:137
|
3659 |
+
msgid "Not Linked"
|
3660 |
+
msgstr "Nelinkováno"
|
3661 |
+
|
3662 |
+
# @ my-calendar
|
3663 |
+
#: my-calendar-widgets.php:49
|
3664 |
+
#: my-calendar-widgets.php:138
|
3665 |
+
msgid "Linked"
|
3666 |
+
msgstr "Linkováno"
|
3667 |
+
|
3668 |
+
# @ my-calendar
|
3669 |
+
#: my-calendar-widgets.php:53
|
3670 |
+
msgid "Show this text if there are no events today:"
|
3671 |
+
msgstr "Zobrazit tento text, pokud zde nejsou žádné dnešní události"
|
3672 |
+
|
3673 |
+
# @ my-calendar
|
3674 |
+
#: my-calendar-widgets.php:57
|
3675 |
+
#: my-calendar-widgets.php:169
|
3676 |
+
#: my-calendar-widgets.php:575
|
3677 |
+
msgid "Category or categories to display:"
|
3678 |
+
msgstr "Kategorie k zobrazení:"
|
3679 |
+
|
3680 |
+
# @ my-calendar
|
3681 |
+
#: my-calendar-widgets.php:78
|
3682 |
+
msgid "My Calendar: Upcoming Events"
|
3683 |
+
msgstr "Kalendář: Nadcházející události"
|
3684 |
+
|
3685 |
+
# @ my-calendar
|
3686 |
+
#: my-calendar-widgets.php:132
|
3687 |
+
msgid "Widget Options"
|
3688 |
+
msgstr "Možnosti widgetu"
|
3689 |
+
|
3690 |
+
# @ my-calendar
|
3691 |
+
#: my-calendar-widgets.php:143
|
3692 |
+
msgid "Display upcoming events by:"
|
3693 |
+
msgstr "Zobrazit nadcházející události podle:"
|
3694 |
+
|
3695 |
+
# @ my-calendar
|
3696 |
+
#: my-calendar-widgets.php:144
|
3697 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
3698 |
+
msgstr "Události"
|
3699 |
+
|
3700 |
+
# @ my-calendar
|
3701 |
+
#: my-calendar-widgets.php:145
|
3702 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3703 |
+
msgstr "Data (např. 4 dny uplynulé, 5 dní budoucích)"
|
3704 |
+
|
3705 |
+
# @ my-calendar
|
3706 |
+
#: my-calendar-widgets.php:149
|
3707 |
+
msgid "Skip the first <em>n</em> events"
|
3708 |
+
msgstr "Přeskočit prvních <em>x</em> událostí"
|
3709 |
+
|
3710 |
+
# @ my-calendar
|
3711 |
+
#: my-calendar-widgets.php:152
|
3712 |
+
msgid "Events sort order:"
|
3713 |
+
msgstr "Řazení událostí:"
|
3714 |
+
|
3715 |
+
# @ my-calendar
|
3716 |
+
#: my-calendar-widgets.php:153
|
3717 |
+
msgid "Ascending (near to far)"
|
3718 |
+
msgstr "Vzrůstající (od nejbližších po nejvzdálenější)"
|
3719 |
+
|
3720 |
+
# @ my-calendar
|
3721 |
+
#: my-calendar-widgets.php:154
|
3722 |
+
msgid "Descending (far to near)"
|
3723 |
+
msgstr "Klesající (od nejvzdálenějších k nejbližším)"
|
3724 |
+
|
3725 |
+
# @ my-calendar
|
3726 |
+
#: my-calendar-widgets.php:162
|
3727 |
+
msgid "Include today's events"
|
3728 |
+
msgstr "Zahrnout dnešní události"
|
3729 |
+
|
3730 |
+
# @ my-calendar
|
3731 |
+
#: my-calendar-widgets.php:165
|
3732 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3733 |
+
msgstr "\"Zobrazit tento text, pokud žádná událost nesplní vaše kritéria:"
|
3734 |
+
|
3735 |
+
# @ my-calendar
|
3736 |
+
#: my-calendar-widgets.php:530
|
3737 |
+
msgid "My Calendar: Mini Calendar"
|
3738 |
+
msgstr "Kalendář: Mini kalendář"
|
3739 |
+
|
3740 |
+
# @ my-calendar
|
3741 |
+
#: my-calendar-widgets.php:551
|
3742 |
+
msgid "Calendar"
|
3743 |
+
msgstr "Kalendář"
|
3744 |
+
|
3745 |
+
# @ my-calendar
|
3746 |
+
#: my-calendar-widgets.php:579
|
3747 |
+
msgid "Show Next/Previous Navigation:"
|
3748 |
+
msgstr "Zobrazit Následující/Předcházející navigaci:"
|
3749 |
+
|
3750 |
+
# @ my-calendar
|
3751 |
+
#: my-calendar-widgets.php:585
|
3752 |
+
msgid "Show Category Key:"
|
3753 |
+
msgstr "Zobrazit klíč kategorií:"
|
3754 |
+
|
3755 |
+
# @ my-calendar
|
3756 |
+
#: my-calendar-widgets.php:591
|
3757 |
+
msgid "Mini-Calendar Timespan:"
|
3758 |
+
msgstr "Rozmezí času mini kalendáře"
|
3759 |
+
|
3760 |
+
# @ my-calendar
|
3761 |
+
#: my-calendar.php:126
|
3762 |
+
msgid "Buy the <strong>NEW</strong><br /> My Calendar User's Guide"
|
3763 |
+
msgstr "Kupte si <strong>NOVÝ</strong><br /> uživatelský manuál kalendáře"
|
3764 |
+
|
3765 |
+
# @ my-calendar
|
3766 |
+
#: my-calendar.php:130
|
3767 |
+
msgid "Get Support"
|
3768 |
+
msgstr "Technická podpora"
|
3769 |
+
|
3770 |
+
# @ my-calendar
|
3771 |
+
#: my-calendar.php:131
|
3772 |
+
msgid "Report a bug"
|
3773 |
+
msgstr "Ohlašte chybu"
|
3774 |
+
|
3775 |
+
# @ my-calendar
|
3776 |
+
#: my-calendar.php:132
|
3777 |
+
#: my-calendar.php:175
|
3778 |
+
msgid "My Calendar Help"
|
3779 |
+
msgstr "Nápověda"
|
3780 |
+
|
3781 |
+
# @ my-calendar
|
3782 |
+
#: my-calendar.php:133
|
3783 |
+
msgid "Make a Donation"
|
3784 |
+
msgstr "Přispějte"
|
3785 |
+
|
3786 |
+
# @ my-calendar
|
3787 |
+
#: my-calendar.php:143
|
3788 |
+
msgid "Check out my other plug-ins"
|
3789 |
+
msgstr "Vyzkoušejte také mé ostatní pluginy"
|
3790 |
+
|
3791 |
+
# @ my-calendar
|
3792 |
+
#: my-calendar.php:144
|
3793 |
+
msgid "Rate this plug-in"
|
3794 |
+
msgstr "Ohodnoťte tento plugin"
|
3795 |
+
|
3796 |
+
# @ my-calendar
|
3797 |
+
#. #-#-#-#-# plugin.pot (My Calendar 1.10.11) #-#-#-#-#
|
3798 |
+
#. Plugin Name of the plugin/theme
|
3799 |
+
#: my-calendar.php:158
|
3800 |
+
#: my-calendar.php:161
|
3801 |
+
msgid "My Calendar"
|
3802 |
+
msgstr "Kalendář"
|
3803 |
+
|
3804 |
+
# @ my-calendar
|
3805 |
+
#: my-calendar.php:167
|
3806 |
+
msgid "Add/Edit Events"
|
3807 |
+
msgstr "Přidat / upravit událost"
|
3808 |
+
|
3809 |
+
# @ my-calendar
|
3810 |
+
#: my-calendar.php:172
|
3811 |
+
msgid "Style Editor"
|
3812 |
+
msgstr "Editor stylů"
|
3813 |
+
|
3814 |
+
# @ my-calendar
|
3815 |
+
#: my-calendar.php:173
|
3816 |
+
msgid "Behavior Editor"
|
3817 |
+
msgstr "Editor chování"
|
3818 |
+
|
3819 |
+
# @ my-calendar
|
3820 |
+
#: my-calendar.php:174
|
3821 |
+
msgid "Template Editor"
|
3822 |
+
msgstr "Editor šablony"
|
3823 |
+
|
3824 |
+
# @ my-calendar
|
3825 |
+
#: my-calendar.php:178
|
3826 |
+
msgid "My Calendar Pro Settings"
|
3827 |
+
msgstr "Pro nstavení kalendáře"
|
3828 |
+
|
3829 |
+
#. Plugin URI of the plugin/theme
|
3830 |
+
msgid "http://www.joedolson.com/articles/my-calendar/"
|
3831 |
+
msgstr "http://www.joedolson.com/articles/my-calendar/"
|
3832 |
+
|
3833 |
+
#. Description of the plugin/theme
|
3834 |
+
msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
|
3835 |
+
msgstr "Dostupný Wordpress plugin kalendáře událostí. Zobrazit události z mnoha kalendářů na stránkách, příspěvcích nebo widgetech."
|
3836 |
+
|
3837 |
+
#. Author of the plugin/theme
|
3838 |
+
msgid "Joseph C Dolson"
|
3839 |
+
msgstr "Joseph C Dolson"
|
3840 |
+
|
3841 |
+
#. Author URI of the plugin/theme
|
3842 |
+
msgid "http://www.joedolson.com"
|
3843 |
+
msgstr "http://www.joedolson.com"
|
3844 |
+
|
lang/my-calendar-da_DK.mo
CHANGED
Binary file
|
lang/my-calendar-da_DK.po
CHANGED
@@ -1,3841 +1,3342 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"X-Poedit-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
-
|
42 |
-
#:
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
#: my-calendar-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
#: my-calendar-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
#: my-calendar-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
#: my-calendar-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
#: my-calendar-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
-
|
102 |
-
#:
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
#:
|
111 |
-
#:
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
#:
|
122 |
-
#:
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
msgid "Generate Shortcode"
|
155 |
-
msgstr "Generer shortcode"
|
156 |
-
|
157 |
-
#: button/generator.php:
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
-
|
177 |
-
#: my-calendar-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#: my-calendar-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#: my-calendar-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
#: my-calendar-
|
211 |
-
#: my-calendar-
|
212 |
-
|
213 |
-
msgid "
|
214 |
-
msgstr "
|
215 |
-
|
216 |
-
#: my-calendar-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
#: my-calendar-
|
228 |
-
#: my-calendar-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
#: my-calendar-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
#: my-calendar-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
#: my-calendar-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
#: my-calendar-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
#: my-calendar-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
#: my-calendar-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
-
|
290 |
-
#: my-calendar-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
#: my-calendar-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
msgid "
|
308 |
-
msgstr "
|
309 |
-
|
310 |
-
#: my-calendar-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
#: my-calendar-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
#: my-calendar-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
#: my-calendar-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
-
|
366 |
-
#: my-calendar-
|
367 |
-
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
-
|
371 |
-
#: my-calendar-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
msgid "
|
379 |
-
msgstr "
|
380 |
-
|
381 |
-
#: my-calendar-
|
382 |
-
|
383 |
-
msgid "
|
384 |
-
msgstr "
|
385 |
-
|
386 |
-
#: my-calendar-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
#: my-calendar-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
#:
|
412 |
-
#:
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
#:
|
421 |
-
#:
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
msgid "
|
432 |
-
msgstr "
|
433 |
-
|
434 |
-
#: my-calendar-
|
435 |
-
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
-
|
439 |
-
#:
|
440 |
-
#: my-calendar
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
-
|
457 |
-
#: my-calendar-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
msgid "
|
475 |
-
msgstr "
|
476 |
-
|
477 |
-
#: my-calendar-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
msgid "
|
495 |
-
msgstr "
|
496 |
-
|
497 |
-
#: my-calendar-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
#: my-calendar-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
#: my-calendar-
|
529 |
-
#: my-calendar-
|
530 |
-
#: my-calendar-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
#: my-calendar-event-manager.php:
|
536 |
-
#: my-calendar-
|
537 |
-
#: my-calendar-
|
538 |
-
#: my-calendar-
|
539 |
-
#: my-calendar-
|
540 |
-
#: my-calendar-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
#: my-calendar-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
#: my-calendar-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
573 |
-
|
574 |
-
#: my-calendar-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
#: my-calendar-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
#: my-calendar-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
#: my-calendar-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
#: my-calendar-
|
620 |
-
|
621 |
-
msgid "
|
622 |
-
msgstr "
|
623 |
-
|
624 |
-
#: my-calendar-
|
625 |
-
|
626 |
-
msgid "
|
627 |
-
msgstr "
|
628 |
-
|
629 |
-
#: my-calendar-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
msgid "
|
662 |
-
msgstr "
|
663 |
-
|
664 |
-
#: my-calendar-
|
665 |
-
|
666 |
-
msgid "
|
667 |
-
msgstr "
|
668 |
-
|
669 |
-
#: my-calendar-
|
670 |
-
#: my-calendar-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
#: my-calendar-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
#: my-calendar-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
#: my-calendar-
|
702 |
-
#: my-calendar-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
#: my-calendar-
|
709 |
-
#: my-calendar-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
msgid "
|
762 |
-
msgstr "
|
763 |
-
|
764 |
-
#: my-calendar-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
msgid "
|
778 |
-
msgstr "
|
779 |
-
|
780 |
-
#: my-calendar-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
msgid "
|
798 |
-
msgstr "
|
799 |
-
|
800 |
-
#: my-calendar-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
#: my-calendar-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
#: my-calendar-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
#: my-calendar-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
-
|
845 |
-
#: my-calendar-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
#: my-calendar-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
#: my-calendar-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
#: my-calendar-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
#: my-calendar-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
#: my-calendar-
|
906 |
-
|
907 |
-
msgid "
|
908 |
-
msgstr "
|
909 |
-
|
910 |
-
#: my-calendar-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
#: my-calendar-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
#: my-calendar-
|
937 |
-
|
938 |
-
msgid "
|
939 |
-
msgstr "
|
940 |
-
|
941 |
-
#: my-calendar-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
#: my-calendar-event-manager.php:
|
948 |
-
#: my-calendar-group-manager.php:
|
949 |
-
#: my-calendar-locations.php:
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
#: my-calendar-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
#: my-calendar-
|
966 |
-
#: my-calendar-
|
967 |
-
#: my-calendar-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
#:
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
#: my-calendar-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
#: my-calendar-event-manager.php:
|
983 |
-
#: my-calendar-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
#: my-calendar-
|
988 |
-
#: my-calendar-
|
989 |
-
|
990 |
-
msgid "
|
991 |
-
msgstr "
|
992 |
-
|
993 |
-
#: my-calendar-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
#: my-calendar-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
msgid "
|
1013 |
-
msgstr "
|
1014 |
-
|
1015 |
-
#: my-calendar-
|
1016 |
-
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
-
|
1020 |
-
#: my-calendar-
|
1021 |
-
|
1022 |
-
msgid "
|
1023 |
-
msgstr "
|
1024 |
-
|
1025 |
-
#: my-calendar-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
#: my-calendar-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
#: my-calendar-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
#: my-calendar-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
#: my-calendar-
|
1051 |
-
|
1052 |
-
msgid "
|
1053 |
-
msgstr "
|
1054 |
-
|
1055 |
-
#: my-calendar-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
#: my-calendar-
|
1071 |
-
|
1072 |
-
msgid "
|
1073 |
-
msgstr "
|
1074 |
-
|
1075 |
-
#: my-calendar-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
msgid "
|
1083 |
-
msgstr "
|
1084 |
-
|
1085 |
-
#: my-calendar-
|
1086 |
-
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
-
|
1090 |
-
#: my-calendar-
|
1091 |
-
|
1092 |
-
msgid "
|
1093 |
-
msgstr "
|
1094 |
-
|
1095 |
-
#: my-calendar-
|
1096 |
-
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
-
|
1100 |
-
#: my-calendar-
|
1101 |
-
|
1102 |
-
msgid "
|
1103 |
-
msgstr "
|
1104 |
-
|
1105 |
-
#: my-calendar-
|
1106 |
-
|
1107 |
-
msgid "
|
1108 |
-
msgstr "
|
1109 |
-
|
1110 |
-
#: my-calendar-
|
1111 |
-
|
1112 |
-
msgid "
|
1113 |
-
msgstr "
|
1114 |
-
|
1115 |
-
#: my-calendar-
|
1116 |
-
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
-
|
1120 |
-
#: my-calendar-
|
1121 |
-
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
-
|
1125 |
-
#: my-calendar-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
#: my-calendar-
|
1131 |
-
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
-
|
1135 |
-
#: my-calendar-
|
1136 |
-
|
1137 |
-
msgid "
|
1138 |
-
msgstr "
|
1139 |
-
|
1140 |
-
#: my-calendar-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
-
|
1160 |
-
#: my-calendar-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
#: my-calendar-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
-
|
1185 |
-
#: my-calendar-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
#: my-calendar-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
msgid "
|
1208 |
-
msgstr "
|
1209 |
-
|
1210 |
-
#: my-calendar-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
msgid "
|
1218 |
-
msgstr "
|
1219 |
-
|
1220 |
-
#: my-calendar-
|
1221 |
-
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
-
|
1225 |
-
#: my-calendar-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
-
|
1245 |
-
#: my-calendar-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
#: my-calendar.php:
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
msgid "
|
1280 |
-
msgstr "
|
1281 |
-
|
1282 |
-
#: my-calendar-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
msgid "
|
1300 |
-
msgstr "
|
1301 |
-
|
1302 |
-
#: my-calendar-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
msgid "
|
1320 |
-
msgstr "
|
1321 |
-
|
1322 |
-
#: my-calendar-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
msgid "
|
1340 |
-
msgstr "
|
1341 |
-
|
1342 |
-
#: my-calendar-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
#: my-calendar-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
msgid "
|
1372 |
-
msgstr "
|
1373 |
-
|
1374 |
-
#: my-calendar-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
msgid "
|
1388 |
-
msgstr "
|
1389 |
-
|
1390 |
-
#: my-calendar.php:
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
msgid "
|
1404 |
-
msgstr "
|
1405 |
-
|
1406 |
-
#: my-calendar-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
#: my-calendar-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
msgid "
|
1437 |
-
msgstr "
|
1438 |
-
|
1439 |
-
#: my-calendar-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
#: my-calendar-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
#: my-calendar-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
#: my-calendar-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
#: my-calendar-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
msgid "
|
1473 |
-
msgstr "
|
1474 |
-
|
1475 |
-
#: my-calendar-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
msgid "
|
1498 |
-
msgstr "
|
1499 |
-
|
1500 |
-
#: my-calendar-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
msgid "
|
1510 |
-
msgstr "
|
1511 |
-
|
1512 |
-
#: my-calendar-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
msgid "
|
1526 |
-
msgstr "
|
1527 |
-
|
1528 |
-
#: my-calendar-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
#: my-calendar-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
#: my-calendar-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
#: my-calendar-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
msgid "
|
1563 |
-
msgstr "
|
1564 |
-
|
1565 |
-
#: my-calendar-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
msgid "
|
1579 |
-
msgstr "
|
1580 |
-
|
1581 |
-
#: my-calendar-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
msgid "
|
1596 |
-
msgstr "
|
1597 |
-
|
1598 |
-
#: my-calendar-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
msgid "
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
msgid "
|
1620 |
-
msgstr "
|
1621 |
-
|
1622 |
-
#: my-calendar-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
#: my-calendar-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
#: my-calendar-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
#: my-calendar-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
msgid "
|
1676 |
-
msgstr "
|
1677 |
-
|
1678 |
-
#: my-calendar-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
msgid "
|
1696 |
-
msgstr "
|
1697 |
-
|
1698 |
-
#: my-calendar-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
msgid "
|
1721 |
-
msgstr "
|
1722 |
-
|
1723 |
-
#: my-calendar-
|
1724 |
-
#: my-calendar-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
#: my-calendar-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
#: my-calendar-
|
1741 |
-
|
1742 |
-
msgid "
|
1743 |
-
msgstr "
|
1744 |
-
|
1745 |
-
#: my-calendar-
|
1746 |
-
#: my-calendar-templates.php:
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
#: my-calendar-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
msgid "
|
1776 |
-
msgstr "
|
1777 |
-
|
1778 |
-
#: my-calendar-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
msgid "
|
1788 |
-
msgstr "
|
1789 |
-
|
1790 |
-
#: my-calendar-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
msgid "
|
1800 |
-
msgstr "
|
1801 |
-
|
1802 |
-
#: my-calendar-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
#: my-calendar-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
#: my-calendar-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
msgid "
|
1832 |
-
msgstr "
|
1833 |
-
|
1834 |
-
#: my-calendar-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
#: my-calendar-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
#: my-calendar-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
msgid "
|
1860 |
-
msgstr "
|
1861 |
-
|
1862 |
-
#: my-calendar-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
#: my-calendar-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
#: my-calendar-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
msgid "
|
1888 |
-
msgstr "
|
1889 |
-
|
1890 |
-
#:
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
msgid "
|
1896 |
-
msgstr "
|
1897 |
-
|
1898 |
-
#: my-calendar-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
msgid "
|
1909 |
-
msgstr "
|
1910 |
-
|
1911 |
-
#: my-calendar-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
#: my-calendar-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
#: my-calendar-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
#: my-calendar-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
#: my-calendar-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
msgid "
|
1952 |
-
msgstr "
|
1953 |
-
|
1954 |
-
#: my-calendar-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
#: my-calendar-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
#: my-calendar-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
#: my-calendar-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
#: my-calendar-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
#: my-calendar-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
msgid "
|
2055 |
-
msgstr "
|
2056 |
-
|
2057 |
-
#: my-calendar-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
msgid "
|
2071 |
-
msgstr "
|
2072 |
-
|
2073 |
-
#: my-calendar-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
msgid "
|
2096 |
-
msgstr "
|
2097 |
-
|
2098 |
-
#: my-calendar-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
msgid "
|
2116 |
-
msgstr "
|
2117 |
-
|
2118 |
-
#: my-calendar-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
msgid "
|
2141 |
-
msgstr "
|
2142 |
-
|
2143 |
-
#: my-calendar-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
msgid "
|
2161 |
-
msgstr "
|
2162 |
-
|
2163 |
-
#: my-calendar-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
msgid "
|
2177 |
-
msgstr "
|
2178 |
-
|
2179 |
-
#: my-calendar-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
msgid "
|
2197 |
-
msgstr "
|
2198 |
-
|
2199 |
-
#: my-calendar-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
msgid "<
|
2227 |
-
msgstr "<
|
2228 |
-
|
2229 |
-
#: my-calendar-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
msgid "
|
2247 |
-
msgstr "
|
2248 |
-
|
2249 |
-
#: my-calendar-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
msgid "
|
2267 |
-
msgstr "
|
2268 |
-
|
2269 |
-
#: my-calendar-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
msgid "
|
2297 |
-
msgstr "
|
2298 |
-
|
2299 |
-
#: my-calendar-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
#: my-calendar-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
msgid "
|
2329 |
-
msgstr "
|
2330 |
-
|
2331 |
-
#: my-calendar-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
msgid "
|
2345 |
-
msgstr ""
|
2346 |
-
|
2347 |
-
#:
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
msgid "
|
2365 |
-
msgstr ""
|
2366 |
-
|
2367 |
-
#:
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
msgid "
|
2385 |
-
msgstr ""
|
2386 |
-
|
2387 |
-
#: my-calendar-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
#: my-calendar-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
#: my-calendar-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
#: my-calendar-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
msgid "
|
2421 |
-
msgstr ""
|
2422 |
-
|
2423 |
-
#: my-calendar-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
msgid "
|
2429 |
-
msgstr ""
|
2430 |
-
|
2431 |
-
#: my-calendar-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
msgid "
|
2437 |
-
msgstr ""
|
2438 |
-
|
2439 |
-
#: my-calendar-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
msgid "
|
2457 |
-
msgstr ""
|
2458 |
-
|
2459 |
-
#: my-calendar-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
msgid "
|
2477 |
-
msgstr ""
|
2478 |
-
|
2479 |
-
#: my-calendar-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
msgid "
|
2493 |
-
msgstr ""
|
2494 |
-
|
2495 |
-
#: my-calendar-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
msgid "
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: my-calendar-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
msgid "
|
2533 |
-
msgstr ""
|
2534 |
-
|
2535 |
-
#: my-calendar-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
msgid "
|
2553 |
-
msgstr ""
|
2554 |
-
|
2555 |
-
#: my-calendar-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
#: my-calendar-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
#: my-calendar-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
msgid "
|
2590 |
-
msgstr ""
|
2591 |
-
|
2592 |
-
#: my-calendar-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
#: my-calendar-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
msgid "
|
2622 |
-
msgstr ""
|
2623 |
-
|
2624 |
-
#: my-calendar-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
msgid "
|
2638 |
-
msgstr ""
|
2639 |
-
|
2640 |
-
#: my-calendar-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
#: my-calendar-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
msgid "
|
2666 |
-
msgstr ""
|
2667 |
-
|
2668 |
-
#: my-calendar-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
msgid "
|
2686 |
-
msgstr ""
|
2687 |
-
|
2688 |
-
#: my-calendar-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
#: my-calendar-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
msgid "
|
2719 |
-
msgstr ""
|
2720 |
-
|
2721 |
-
#: my-calendar-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
msgid "
|
2739 |
-
msgstr ""
|
2740 |
-
|
2741 |
-
#: my-calendar-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
msgid "
|
2759 |
-
msgstr ""
|
2760 |
-
|
2761 |
-
#: my-calendar-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
#: my-calendar-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
msgid "
|
2795 |
-
msgstr ""
|
2796 |
-
|
2797 |
-
#: my-calendar-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
msgid "
|
2815 |
-
msgstr ""
|
2816 |
-
|
2817 |
-
#: my-calendar-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
msgid "
|
2835 |
-
msgstr ""
|
2836 |
-
|
2837 |
-
#: my-calendar-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
msgid "
|
2851 |
-
msgstr ""
|
2852 |
-
|
2853 |
-
#: my-calendar-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
msgid "
|
2871 |
-
msgstr ""
|
2872 |
-
|
2873 |
-
#: my-calendar-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
#: my-calendar-templating.php:
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
msgid "
|
2907 |
-
msgstr ""
|
2908 |
-
|
2909 |
-
#: my-calendar-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
msgid "
|
2923 |
-
msgstr ""
|
2924 |
-
|
2925 |
-
#: my-calendar-
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
#: my-calendar-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
"
|
2965 |
-
"
|
2966 |
-
|
2967 |
-
|
2968 |
-
#: my-calendar-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
#: my-calendar-
|
3006 |
-
|
3007 |
-
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
msgid "
|
3019 |
-
msgstr ""
|
3020 |
-
|
3021 |
-
#: my-calendar-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
msgid "
|
3039 |
-
msgstr ""
|
3040 |
-
|
3041 |
-
#: my-calendar-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
msgid "
|
3071 |
-
msgstr ""
|
3072 |
-
|
3073 |
-
#: my-calendar
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
#: my-calendar
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
msgid "
|
3092 |
-
msgstr ""
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
msgid "
|
3107 |
-
msgstr ""
|
3108 |
-
|
3109 |
-
#: my-calendar
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
msgid "
|
3127 |
-
msgstr ""
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
msgid "
|
3138 |
-
msgstr ""
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
msgid "
|
3153 |
-
msgstr ""
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
msgid "
|
3228 |
-
msgstr ""
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
msgid "
|
3243 |
-
msgstr ""
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
msgid "
|
3258 |
-
msgstr ""
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
msgid "
|
3268 |
-
msgstr ""
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
msgid "
|
3325 |
-
msgstr ""
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
msgid "
|
3340 |
-
msgstr ""
|
3341 |
-
|
3342 |
-
|
3343 |
-
#@ my-calendar
|
3344 |
-
msgid "Show current availability status"
|
3345 |
-
msgstr ""
|
3346 |
-
|
3347 |
-
#: my-calendar-settings.php:478
|
3348 |
-
#@ my-calendar
|
3349 |
-
msgid "Event Scheduling Options"
|
3350 |
-
msgstr ""
|
3351 |
-
|
3352 |
-
#: my-calendar-settings.php:481
|
3353 |
-
#@ my-calendar
|
3354 |
-
msgid "Default setting for event input: 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."
|
3355 |
-
msgstr ""
|
3356 |
-
|
3357 |
-
#: my-calendar-settings.php:486
|
3358 |
-
#@ my-calendar
|
3359 |
-
msgid "None"
|
3360 |
-
msgstr ""
|
3361 |
-
|
3362 |
-
#: my-calendar-settings.php:502
|
3363 |
-
#@ my-calendar
|
3364 |
-
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
3365 |
-
msgstr ""
|
3366 |
-
|
3367 |
-
#: my-calendar-settings.php:537
|
3368 |
-
#@ my-calendar
|
3369 |
-
msgid "Show Event image field"
|
3370 |
-
msgstr ""
|
3371 |
-
|
3372 |
-
#: my-calendar-settings.php:537
|
3373 |
-
#@ my-calendar
|
3374 |
-
msgid "Show Event registration options"
|
3375 |
-
msgstr ""
|
3376 |
-
|
3377 |
-
#: my-calendar-settings.php:537
|
3378 |
-
#@ my-calendar
|
3379 |
-
msgid "Show Event location fields"
|
3380 |
-
msgstr ""
|
3381 |
-
|
3382 |
-
#: my-calendar-settings.php:562
|
3383 |
-
#@ my-calendar
|
3384 |
-
msgid "Multisite Settings (Network Administrators only)"
|
3385 |
-
msgstr ""
|
3386 |
-
|
3387 |
-
#: my-calendar-settings.php:564
|
3388 |
-
#@ my-calendar
|
3389 |
-
msgid "Multisite support is a beta feature - use with caution."
|
3390 |
-
msgstr ""
|
3391 |
-
|
3392 |
-
#: my-calendar-settings.php:569
|
3393 |
-
#@ my-calendar
|
3394 |
-
msgid "Settings for WP MultiSite configurations"
|
3395 |
-
msgstr ""
|
3396 |
-
|
3397 |
-
#: my-calendar-settings.php:570
|
3398 |
-
#@ my-calendar
|
3399 |
-
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
3400 |
-
msgstr ""
|
3401 |
-
|
3402 |
-
#: my-calendar-settings.php:572
|
3403 |
-
#@ my-calendar
|
3404 |
-
msgid "Site owners may only post to their local calendar"
|
3405 |
-
msgstr ""
|
3406 |
-
|
3407 |
-
#: my-calendar-settings.php:573
|
3408 |
-
#@ my-calendar
|
3409 |
-
msgid "Site owners may only post to the central calendar"
|
3410 |
-
msgstr ""
|
3411 |
-
|
3412 |
-
#: my-calendar-settings.php:574
|
3413 |
-
#@ my-calendar
|
3414 |
-
msgid "Site owners may manage either calendar"
|
3415 |
-
msgstr ""
|
3416 |
-
|
3417 |
-
#: my-calendar-settings.php:576
|
3418 |
-
#@ my-calendar
|
3419 |
-
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
3420 |
-
msgstr ""
|
3421 |
-
|
3422 |
-
#: my-calendar-settings.php:578
|
3423 |
-
#@ my-calendar
|
3424 |
-
msgid "Sub-site calendars show events from their local calendar."
|
3425 |
-
msgstr ""
|
3426 |
-
|
3427 |
-
#: my-calendar-settings.php:579
|
3428 |
-
#@ my-calendar
|
3429 |
-
msgid "Sub-site calendars show events from the central calendar."
|
3430 |
-
msgstr ""
|
3431 |
-
|
3432 |
-
#: my-calendar-settings.php:583
|
3433 |
-
#@ my-calendar
|
3434 |
-
msgid "Save Multisite Settings"
|
3435 |
-
msgstr ""
|
3436 |
-
|
3437 |
-
#: my-calendar-settings.php:663
|
3438 |
-
#@ my-calendar
|
3439 |
-
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. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
3440 |
-
msgstr ""
|
3441 |
-
|
3442 |
-
#: my-calendar-settings.php:668
|
3443 |
-
#@ my-calendar
|
3444 |
-
msgid "Use this location list as input control"
|
3445 |
-
msgstr ""
|
3446 |
-
|
3447 |
-
#: my-calendar-settings.php:668
|
3448 |
-
#@ my-calendar
|
3449 |
-
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
3450 |
-
msgstr ""
|
3451 |
-
|
3452 |
-
#: my-calendar-styles.php:192
|
3453 |
-
#@ my-calendar
|
3454 |
-
msgid "Restore My Calendar stylesheet"
|
3455 |
-
msgstr ""
|
3456 |
-
|
3457 |
-
#: my-calendar-styles.php:208
|
3458 |
-
#@ my-calendar
|
3459 |
-
msgid "Comparing Your Style with latest installed version of My Calendar"
|
3460 |
-
msgstr ""
|
3461 |
-
|
3462 |
-
#: my-calendar-styles.php:212
|
3463 |
-
#@ my-calendar
|
3464 |
-
msgid "There have been updates to the stylesheet."
|
3465 |
-
msgstr ""
|
3466 |
-
|
3467 |
-
#: my-calendar-styles.php:212
|
3468 |
-
#@ my-calendar
|
3469 |
-
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
3470 |
-
msgstr ""
|
3471 |
-
|
3472 |
-
#: my-calendar-styles.php:216
|
3473 |
-
#@ my-calendar
|
3474 |
-
msgid "Your stylesheet matches that included with My Calendar."
|
3475 |
-
msgstr ""
|
3476 |
-
|
3477 |
-
#: my-calendar-styles.php:224
|
3478 |
-
#@ my-calendar
|
3479 |
-
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
3480 |
-
msgstr ""
|
3481 |
-
|
3482 |
-
#: my-calendar-templates.php:20
|
3483 |
-
#@ my-calendar
|
3484 |
-
msgid "to"
|
3485 |
-
msgstr ""
|
3486 |
-
|
3487 |
-
#: my-calendar-templates.php:42
|
3488 |
-
#, php-format
|
3489 |
-
#@ my-calendar
|
3490 |
-
msgid "Map<span> to %s</span>"
|
3491 |
-
msgstr ""
|
3492 |
-
|
3493 |
-
#: my-calendar-templates.php:63
|
3494 |
-
#: my-calendar-templates.php:111
|
3495 |
-
#, php-format
|
3496 |
-
#@ my-calendar
|
3497 |
-
msgid "Visit web site<span>: %s</span>"
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#: my-calendar-templates.php:120
|
3501 |
-
#, php-format
|
3502 |
-
#@ my-calendar
|
3503 |
-
msgid "Date of Month (the %s of each month)"
|
3504 |
-
msgstr ""
|
3505 |
-
|
3506 |
-
#: my-calendar-templates.php:121
|
3507 |
-
#, php-format
|
3508 |
-
#@ my-calendar
|
3509 |
-
msgid "Day of Month (the %s %s of each month)"
|
3510 |
-
msgstr ""
|
3511 |
-
|
3512 |
-
#: my-calendar-templating.php:18
|
3513 |
-
#@ my-calendar
|
3514 |
-
msgid "Grid Output Template saved"
|
3515 |
-
msgstr ""
|
3516 |
-
|
3517 |
-
#: my-calendar-templating.php:30
|
3518 |
-
#@ my-calendar
|
3519 |
-
msgid "List Output Template saved"
|
3520 |
-
msgstr ""
|
3521 |
-
|
3522 |
-
#: my-calendar-templating.php:41
|
3523 |
-
#@ my-calendar
|
3524 |
-
msgid "Mini Output Template saved"
|
3525 |
-
msgstr ""
|
3526 |
-
|
3527 |
-
#: my-calendar-templating.php:52
|
3528 |
-
#@ my-calendar
|
3529 |
-
msgid "Event Details Template saved"
|
3530 |
-
msgstr ""
|
3531 |
-
|
3532 |
-
#: my-calendar-templating.php:67
|
3533 |
-
#@ my-calendar
|
3534 |
-
msgid "My Calendar Information Templates"
|
3535 |
-
msgstr ""
|
3536 |
-
|
3537 |
-
#: my-calendar-templating.php:73
|
3538 |
-
#@ my-calendar
|
3539 |
-
msgid "Title of the event."
|
3540 |
-
msgstr ""
|
3541 |
-
|
3542 |
-
#: my-calendar-templating.php:76
|
3543 |
-
#@ my-calendar
|
3544 |
-
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3545 |
-
msgstr ""
|
3546 |
-
|
3547 |
-
#: my-calendar-templating.php:79
|
3548 |
-
#@ my-calendar
|
3549 |
-
msgid "Start time for the event."
|
3550 |
-
msgstr ""
|
3551 |
-
|
3552 |
-
#: my-calendar-templating.php:82
|
3553 |
-
#@ my-calendar
|
3554 |
-
msgid "Event times adjusted to the current user's time zone if set."
|
3555 |
-
msgstr ""
|
3556 |
-
|
3557 |
-
#: my-calendar-templating.php:85
|
3558 |
-
#@ my-calendar
|
3559 |
-
msgid "Date on which the event begins."
|
3560 |
-
msgstr ""
|
3561 |
-
|
3562 |
-
#: my-calendar-templating.php:88
|
3563 |
-
#@ my-calendar
|
3564 |
-
msgid "Date on which the event ends."
|
3565 |
-
msgstr ""
|
3566 |
-
|
3567 |
-
#: my-calendar-templating.php:91
|
3568 |
-
#@ my-calendar
|
3569 |
-
msgid "Time at which the event ends."
|
3570 |
-
msgstr ""
|
3571 |
-
|
3572 |
-
#: my-calendar-templating.php:94
|
3573 |
-
#@ my-calendar
|
3574 |
-
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3575 |
-
msgstr ""
|
3576 |
-
|
3577 |
-
#: my-calendar-templating.php:97
|
3578 |
-
#@ my-calendar
|
3579 |
-
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3580 |
-
msgstr ""
|
3581 |
-
|
3582 |
-
#: my-calendar-templating.php:100
|
3583 |
-
#@ my-calendar
|
3584 |
-
msgid "Author who posted the event."
|
3585 |
-
msgstr ""
|
3586 |
-
|
3587 |
-
#: my-calendar-templating.php:103
|
3588 |
-
#@ my-calendar
|
3589 |
-
msgid "Name of the assigned host for the event."
|
3590 |
-
msgstr ""
|
3591 |
-
|
3592 |
-
#: my-calendar-templating.php:106
|
3593 |
-
#@ my-calendar
|
3594 |
-
msgid "Email for the person assigned as host."
|
3595 |
-
msgstr ""
|
3596 |
-
|
3597 |
-
#: my-calendar-templating.php:109
|
3598 |
-
#@ my-calendar
|
3599 |
-
msgid "Short event description."
|
3600 |
-
msgstr ""
|
3601 |
-
|
3602 |
-
#: my-calendar-templating.php:112
|
3603 |
-
#@ my-calendar
|
3604 |
-
msgid "Description of the event."
|
3605 |
-
msgstr ""
|
3606 |
-
|
3607 |
-
#: my-calendar-templating.php:118
|
3608 |
-
#@ my-calendar
|
3609 |
-
msgid "URL provided for the event."
|
3610 |
-
msgstr ""
|
3611 |
-
|
3612 |
-
#: my-calendar-templating.php:121
|
3613 |
-
#@ my-calendar
|
3614 |
-
msgid "Link to an auto-generated page containing information about the event."
|
3615 |
-
msgstr ""
|
3616 |
-
|
3617 |
-
#: my-calendar-templating.php:124
|
3618 |
-
#@ my-calendar
|
3619 |
-
msgid "Whether event is currently open for registration."
|
3620 |
-
msgstr ""
|
3621 |
-
|
3622 |
-
#: my-calendar-templating.php:127
|
3623 |
-
#@ my-calendar
|
3624 |
-
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3625 |
-
msgstr ""
|
3626 |
-
|
3627 |
-
#: my-calendar-templating.php:133
|
3628 |
-
#@ my-calendar
|
3629 |
-
msgid "Name of the location of the event."
|
3630 |
-
msgstr ""
|
3631 |
-
|
3632 |
-
#: my-calendar-templating.php:136
|
3633 |
-
#@ my-calendar
|
3634 |
-
msgid "First line of the site address."
|
3635 |
-
msgstr ""
|
3636 |
-
|
3637 |
-
#: my-calendar-templating.php:139
|
3638 |
-
#@ my-calendar
|
3639 |
-
msgid "Second line of the site address."
|
3640 |
-
msgstr ""
|
3641 |
-
|
3642 |
-
#: my-calendar-templating.php:142
|
3643 |
-
#@ my-calendar
|
3644 |
-
msgid "City."
|
3645 |
-
msgstr ""
|
3646 |
-
|
3647 |
-
#: my-calendar-templating.php:145
|
3648 |
-
#@ my-calendar
|
3649 |
-
msgid "State."
|
3650 |
-
msgstr ""
|
3651 |
-
|
3652 |
-
#: my-calendar-templating.php:148
|
3653 |
-
#@ my-calendar
|
3654 |
-
msgid "Postal code/zip code."
|
3655 |
-
msgstr ""
|
3656 |
-
|
3657 |
-
#: my-calendar-templating.php:151
|
3658 |
-
#@ my-calendar
|
3659 |
-
msgid "Custom region."
|
3660 |
-
msgstr ""
|
3661 |
-
|
3662 |
-
#: my-calendar-templating.php:154
|
3663 |
-
#@ my-calendar
|
3664 |
-
msgid "Country for the event location."
|
3665 |
-
msgstr ""
|
3666 |
-
|
3667 |
-
#: my-calendar-templating.php:157
|
3668 |
-
#@ my-calendar
|
3669 |
-
msgid "Output the URL for the location."
|
3670 |
-
msgstr ""
|
3671 |
-
|
3672 |
-
#: my-calendar-templating.php:160
|
3673 |
-
#@ my-calendar
|
3674 |
-
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3675 |
-
msgstr ""
|
3676 |
-
|
3677 |
-
#: my-calendar-templating.php:163
|
3678 |
-
#@ my-calendar
|
3679 |
-
msgid "Link to Google Map to the event, if address information is available."
|
3680 |
-
msgstr ""
|
3681 |
-
|
3682 |
-
#: my-calendar-templating.php:169
|
3683 |
-
#@ my-calendar
|
3684 |
-
msgid "Name of the category of the event."
|
3685 |
-
msgstr ""
|
3686 |
-
|
3687 |
-
#: my-calendar-templating.php:172
|
3688 |
-
#@ my-calendar
|
3689 |
-
msgid "URL for the event's category icon."
|
3690 |
-
msgstr ""
|
3691 |
-
|
3692 |
-
#: my-calendar-templating.php:175
|
3693 |
-
#@ my-calendar
|
3694 |
-
msgid "Hex code for the event's category color."
|
3695 |
-
msgstr ""
|
3696 |
-
|
3697 |
-
#: my-calendar-templating.php:178
|
3698 |
-
#@ my-calendar
|
3699 |
-
msgid "ID of the category of the event."
|
3700 |
-
msgstr ""
|
3701 |
-
|
3702 |
-
#: my-calendar-templating.php:181
|
3703 |
-
#@ my-calendar
|
3704 |
-
msgid "Advanced users may wish to customize the HTML elements and order of items presented for each event. This page provides the ability to create a customized view of your events in each different context. All available template tags are documented on the Help page. The default templates provided are based on the default views assuming all output is enabled. <strong>Custom templates will override any other output rules you've configured in settings.</strong>"
|
3705 |
-
msgstr ""
|
3706 |
-
|
3707 |
-
#: my-calendar-templating.php:181
|
3708 |
-
#@ my-calendar
|
3709 |
-
msgid "Templates Help"
|
3710 |
-
msgstr ""
|
3711 |
-
|
3712 |
-
#: my-calendar-templating.php:184
|
3713 |
-
#@ my-calendar
|
3714 |
-
msgid "My Calendar: Grid Event Template"
|
3715 |
-
msgstr ""
|
3716 |
-
|
3717 |
-
#: my-calendar-templating.php:189
|
3718 |
-
#@ my-calendar
|
3719 |
-
msgid "Use this grid event template"
|
3720 |
-
msgstr ""
|
3721 |
-
|
3722 |
-
#: my-calendar-templating.php:192
|
3723 |
-
#@ my-calendar
|
3724 |
-
msgid "Your custom template for events in the calendar grid output."
|
3725 |
-
msgstr ""
|
3726 |
-
|
3727 |
-
#: my-calendar-templating.php:195
|
3728 |
-
#@ my-calendar
|
3729 |
-
msgid "Save Grid Template"
|
3730 |
-
msgstr ""
|
3731 |
-
|
3732 |
-
#: my-calendar-templating.php:204
|
3733 |
-
#@ my-calendar
|
3734 |
-
msgid "My Calendar: List Event Template"
|
3735 |
-
msgstr ""
|
3736 |
-
|
3737 |
-
#: my-calendar-templating.php:209
|
3738 |
-
#@ my-calendar
|
3739 |
-
msgid "Use this list event template"
|
3740 |
-
msgstr ""
|
3741 |
-
|
3742 |
-
#: my-calendar-templating.php:212
|
3743 |
-
#@ my-calendar
|
3744 |
-
msgid "Your custom template for events in calendar list output."
|
3745 |
-
msgstr ""
|
3746 |
-
|
3747 |
-
#: my-calendar-templating.php:215
|
3748 |
-
#@ my-calendar
|
3749 |
-
msgid "Save List Template"
|
3750 |
-
msgstr ""
|
3751 |
-
|
3752 |
-
#: my-calendar-templating.php:224
|
3753 |
-
#@ my-calendar
|
3754 |
-
msgid "My Calendar: Mini Calendar Template"
|
3755 |
-
msgstr ""
|
3756 |
-
|
3757 |
-
#: my-calendar-templating.php:229
|
3758 |
-
#@ my-calendar
|
3759 |
-
msgid "Use this mini event template"
|
3760 |
-
msgstr ""
|
3761 |
-
|
3762 |
-
#: my-calendar-templating.php:232
|
3763 |
-
#@ my-calendar
|
3764 |
-
msgid "Your custom template for events in sidebar/mini calendar output."
|
3765 |
-
msgstr ""
|
3766 |
-
|
3767 |
-
#: my-calendar-templating.php:235
|
3768 |
-
#@ my-calendar
|
3769 |
-
msgid "Save Mini Template"
|
3770 |
-
msgstr ""
|
3771 |
-
|
3772 |
-
#: my-calendar-templating.php:244
|
3773 |
-
#@ my-calendar
|
3774 |
-
msgid "My Calendar: Event Details Page Template"
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
#: my-calendar-templating.php:249
|
3778 |
-
#@ my-calendar
|
3779 |
-
msgid "Use this details template"
|
3780 |
-
msgstr ""
|
3781 |
-
|
3782 |
-
#: my-calendar-templating.php:252
|
3783 |
-
#@ my-calendar
|
3784 |
-
msgid "Your custom template for events on the event details page."
|
3785 |
-
msgstr ""
|
3786 |
-
|
3787 |
-
#: my-calendar-templating.php:255
|
3788 |
-
#@ my-calendar
|
3789 |
-
msgid "Save Details Template"
|
3790 |
-
msgstr ""
|
3791 |
-
|
3792 |
-
#: my-calendar-upgrade-db.php:25
|
3793 |
-
#@ my-calendar
|
3794 |
-
msgid "Update now."
|
3795 |
-
msgstr ""
|
3796 |
-
|
3797 |
-
#: my-calendar-widgets.php:134
|
3798 |
-
#@ my-calendar
|
3799 |
-
msgid "Add <a href=\"#mc_uri\" target=\"_blank\" title=\"Opens in new window\">calendar URL in settings</a> to use this option."
|
3800 |
-
msgstr ""
|
3801 |
-
|
3802 |
-
#: my-calendar-widgets.php:149
|
3803 |
-
#@ my-calendar
|
3804 |
-
msgid "Skip the first <em>n</em> events"
|
3805 |
-
msgstr ""
|
3806 |
-
|
3807 |
-
#: my-calendar-widgets.php:162
|
3808 |
-
#@ my-calendar
|
3809 |
-
msgid "Include today's events"
|
3810 |
-
msgstr ""
|
3811 |
-
|
3812 |
-
#: my-calendar.php:126
|
3813 |
-
#@ my-calendar
|
3814 |
-
msgid "Buy the <strong>NEW</strong><br /> My Calendar User's Guide"
|
3815 |
-
msgstr ""
|
3816 |
-
|
3817 |
-
#: my-calendar.php:131
|
3818 |
-
#@ my-calendar
|
3819 |
-
msgid "Report a bug"
|
3820 |
-
msgstr ""
|
3821 |
-
|
3822 |
-
#: my-calendar.php:143
|
3823 |
-
#@ my-calendar
|
3824 |
-
msgid "Check out my other plug-ins"
|
3825 |
-
msgstr ""
|
3826 |
-
|
3827 |
-
#: my-calendar.php:144
|
3828 |
-
#@ my-calendar
|
3829 |
-
msgid "Rate this plug-in"
|
3830 |
-
msgstr ""
|
3831 |
-
|
3832 |
-
#: my-calendar.php:174
|
3833 |
-
#@ my-calendar
|
3834 |
-
msgid "Template Editor"
|
3835 |
-
msgstr ""
|
3836 |
-
|
3837 |
-
#: my-calendar.php:178
|
3838 |
-
#@ my-calendar
|
3839 |
-
msgid "My Calendar Pro Settings"
|
3840 |
-
msgstr ""
|
3841 |
-
|
1 |
+
# Translation of the WordPress plugin My Calendar 1.4.3 by Joseph C Dolson.
|
2 |
+
# Copyright (C) 2010 Joseph C Dolson
|
3 |
+
# This file is distributed under the same license as the My Calendar package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
+
#
|
6 |
+
msgid ""
|
7 |
+
msgstr ""
|
8 |
+
"Project-Id-Version: My Calendar 1.4.3\n"
|
9 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
10 |
+
"POT-Creation-Date: 2012-03-06 21:32:54+00:00\n"
|
11 |
+
"PO-Revision-Date: 2012-04-05 15:50+0100\n"
|
12 |
+
"Last-Translator: Jakob Smith <jakob@omkalfatring.dk>\n"
|
13 |
+
"Language-Team: omkalfatring.dk <jakob@omkalfatring.dk>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"X-Poedit-Language: Danish\n"
|
18 |
+
"X-Poedit-Country: DENMARK\n"
|
19 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
20 |
+
|
21 |
+
#: button/generator.php:12
|
22 |
+
msgid "You don't have access to this function."
|
23 |
+
msgstr "Du har ikke adgang til denne funktion."
|
24 |
+
|
25 |
+
#: button/generator.php:18
|
26 |
+
#: button/generator.php:44
|
27 |
+
msgid "My Calendar Shortcode Generator"
|
28 |
+
msgstr "My Calendar shortcode-generator"
|
29 |
+
|
30 |
+
#: button/generator.php:47
|
31 |
+
msgid "Shortcode Attributes"
|
32 |
+
msgstr "Shortcode-attributter"
|
33 |
+
|
34 |
+
#: button/generator.php:52
|
35 |
+
msgid "Location filter type:"
|
36 |
+
msgstr "Stedfiltertype:"
|
37 |
+
|
38 |
+
#: button/generator.php:54
|
39 |
+
msgid "All locations"
|
40 |
+
msgstr "Alle steder"
|
41 |
+
|
42 |
+
#: button/generator.php:55
|
43 |
+
#: my-calendar-settings.php:513
|
44 |
+
#: my-calendar-settings.php:686
|
45 |
+
msgid "Location Name"
|
46 |
+
msgstr "Stednavn"
|
47 |
+
|
48 |
+
#: button/generator.php:56
|
49 |
+
#: my-calendar-event-manager.php:762
|
50 |
+
#: my-calendar-group-manager.php:460
|
51 |
+
#: my-calendar-locations.php:150
|
52 |
+
#: my-calendar-settings.php:687
|
53 |
+
msgid "City"
|
54 |
+
msgstr "By"
|
55 |
+
|
56 |
+
#: button/generator.php:57
|
57 |
+
#: my-calendar-event-manager.php:809
|
58 |
+
#: my-calendar-group-manager.php:475
|
59 |
+
#: my-calendar-locations.php:197
|
60 |
+
msgid "State"
|
61 |
+
msgstr "Kommune"
|
62 |
+
|
63 |
+
#: button/generator.php:58
|
64 |
+
#: my-calendar-event-manager.php:776
|
65 |
+
#: my-calendar-group-manager.php:460
|
66 |
+
#: my-calendar-locations.php:164
|
67 |
+
#: my-calendar-settings.php:690
|
68 |
+
msgid "Postal Code"
|
69 |
+
msgstr "Postnummer"
|
70 |
+
|
71 |
+
#: button/generator.php:59
|
72 |
+
#: my-calendar-event-manager.php:794
|
73 |
+
#: my-calendar-group-manager.php:466
|
74 |
+
#: my-calendar-locations.php:182
|
75 |
+
#: my-calendar-settings.php:689
|
76 |
+
msgid "Country"
|
77 |
+
msgstr "Land"
|
78 |
+
|
79 |
+
#: button/generator.php:60
|
80 |
+
#: my-calendar-event-manager.php:785
|
81 |
+
#: my-calendar-event-manager.php:810
|
82 |
+
#: my-calendar-group-manager.php:463
|
83 |
+
#: my-calendar-group-manager.php:476
|
84 |
+
#: my-calendar-locations.php:173
|
85 |
+
#: my-calendar-locations.php:198
|
86 |
+
#: my-calendar-settings.php:691
|
87 |
+
msgid "Region"
|
88 |
+
msgstr "Region"
|
89 |
+
|
90 |
+
#: button/generator.php:64
|
91 |
+
msgid "Location filter value:"
|
92 |
+
msgstr "Stedfilterværdi:"
|
93 |
+
|
94 |
+
#: button/generator.php:68
|
95 |
+
msgid "Format"
|
96 |
+
msgstr "Format"
|
97 |
+
|
98 |
+
#: button/generator.php:70
|
99 |
+
msgid "Grid"
|
100 |
+
msgstr "Gitter"
|
101 |
+
|
102 |
+
#: button/generator.php:71
|
103 |
+
msgid "List"
|
104 |
+
msgstr "Liste"
|
105 |
+
|
106 |
+
#: button/generator.php:75
|
107 |
+
msgid "Show Category Key"
|
108 |
+
msgstr "Vis kategorinøgle"
|
109 |
+
|
110 |
+
#: button/generator.php:77
|
111 |
+
#: button/generator.php:84
|
112 |
+
#: button/generator.php:91
|
113 |
+
#: my-calendar-widgets.php:580
|
114 |
+
#: my-calendar-widgets.php:586
|
115 |
+
msgid "Yes"
|
116 |
+
msgstr "Ja"
|
117 |
+
|
118 |
+
#: button/generator.php:78
|
119 |
+
#: button/generator.php:85
|
120 |
+
#: button/generator.php:92
|
121 |
+
#: my-calendar-widgets.php:581
|
122 |
+
#: my-calendar-widgets.php:587
|
123 |
+
msgid "No"
|
124 |
+
msgstr "Nej"
|
125 |
+
|
126 |
+
#: button/generator.php:82
|
127 |
+
msgid "Show Previous/Next Links"
|
128 |
+
msgstr "Vis Tidligere/Næste-links"
|
129 |
+
|
130 |
+
#: button/generator.php:89
|
131 |
+
msgid "Show Format Toggle"
|
132 |
+
msgstr "Vis format-skifter"
|
133 |
+
|
134 |
+
#: button/generator.php:96
|
135 |
+
msgid "Time Segment"
|
136 |
+
msgstr "Tidssegment"
|
137 |
+
|
138 |
+
#: button/generator.php:98
|
139 |
+
#: my-calendar-output.php:356
|
140 |
+
#: my-calendar-widgets.php:592
|
141 |
+
msgid "Month"
|
142 |
+
msgstr "Måned"
|
143 |
+
|
144 |
+
#: button/generator.php:99
|
145 |
+
#: my-calendar-widgets.php:593
|
146 |
+
msgid "Week"
|
147 |
+
msgstr "Uge"
|
148 |
+
|
149 |
+
#: button/generator.php:100
|
150 |
+
msgid "Day"
|
151 |
+
msgstr "Dag"
|
152 |
+
|
153 |
+
#: button/generator.php:105
|
154 |
+
msgid "Generate Shortcode"
|
155 |
+
msgstr "Generer shortcode"
|
156 |
+
|
157 |
+
#: button/generator.php:107
|
158 |
+
msgid "<strong>Note:</strong> If you provide a location filter value, it must be an exact match for that information as saved with your events. (e.g. \"Saint Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
159 |
+
msgstr "<strong>NB:</strong> Hvis du indtaster en værdi i stedfilteret, skal det være et eksakt match med den information, der er gemt med dine begivenheder. (F.eks. er \"Saint Paul\" ikke det samme som \"saint paul\" eller \"St. Paul\")"
|
160 |
+
|
161 |
+
#: button/generator.php:117
|
162 |
+
msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
|
163 |
+
msgstr "My Calendar: Denne shortcode-generator sætter ikke shortcoden ind på din side. Sorry!"
|
164 |
+
|
165 |
+
#: my-calendar-behaviors.php:43
|
166 |
+
msgid "Behavior Settings saved"
|
167 |
+
msgstr "Indstillinger for kalenderopførsel gemt"
|
168 |
+
|
169 |
+
#: my-calendar-behaviors.php:67
|
170 |
+
msgid "My Calendar Behaviors"
|
171 |
+
msgstr "My Calendar opførsel"
|
172 |
+
|
173 |
+
#: my-calendar-behaviors.php:72
|
174 |
+
msgid "Calendar Behavior Settings"
|
175 |
+
msgstr "Indstillinger for kalenderopførsel"
|
176 |
+
|
177 |
+
#: my-calendar-behaviors.php:77
|
178 |
+
msgid "Apply JavaScript only on these pages (comma separated page IDs)"
|
179 |
+
msgstr "Vis kun Javascript på disse sider (kommaseparerede side-id'er)"
|
180 |
+
|
181 |
+
#: my-calendar-behaviors.php:80
|
182 |
+
msgid "Details boxes are draggable"
|
183 |
+
msgstr "Detalje-bokse kan bevæges rundt på skærmen"
|
184 |
+
|
185 |
+
#: my-calendar-behaviors.php:83
|
186 |
+
msgid "Calendar Behaviors: Calendar View"
|
187 |
+
msgstr "Kalenderopførsel: Kalendervisning"
|
188 |
+
|
189 |
+
#: my-calendar-behaviors.php:85
|
190 |
+
msgid "Update/Reset the My Calendar Calendar Javascript"
|
191 |
+
msgstr "Opdater/nulstil My Calendars kalenderjavascript"
|
192 |
+
|
193 |
+
#: my-calendar-behaviors.php:85
|
194 |
+
msgid "Disable Calendar Javascript Effects"
|
195 |
+
msgstr "Deaktiver Kalenderens javascripteffekter"
|
196 |
+
|
197 |
+
#: my-calendar-behaviors.php:88
|
198 |
+
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
199 |
+
msgstr "Rediger jQuery-scripts til My Calendar i kalendervisning."
|
200 |
+
|
201 |
+
#: my-calendar-behaviors.php:91
|
202 |
+
#: my-calendar-behaviors.php:122
|
203 |
+
#: my-calendar-behaviors.php:153
|
204 |
+
#: my-calendar-behaviors.php:184
|
205 |
+
#: my-calendar-behaviors.php:205
|
206 |
+
msgid "Save"
|
207 |
+
msgstr "Gem"
|
208 |
+
|
209 |
+
#: my-calendar-behaviors.php:100
|
210 |
+
#: my-calendar-behaviors.php:131
|
211 |
+
#: my-calendar-behaviors.php:162
|
212 |
+
#: my-calendar-behaviors.php:192
|
213 |
+
msgid "Comparing scripts with latest installed version of My Calendar"
|
214 |
+
msgstr "Sammenligner scripts med senest installerede version af My Calendar"
|
215 |
+
|
216 |
+
#: my-calendar-behaviors.php:100
|
217 |
+
#: my-calendar-behaviors.php:131
|
218 |
+
#: my-calendar-behaviors.php:162
|
219 |
+
#: my-calendar-behaviors.php:192
|
220 |
+
#: my-calendar-styles.php:208
|
221 |
+
msgid "Latest (from plugin)"
|
222 |
+
msgstr "Seneste (fra plugin)"
|
223 |
+
|
224 |
+
#: my-calendar-behaviors.php:100
|
225 |
+
#: my-calendar-behaviors.php:131
|
226 |
+
#: my-calendar-behaviors.php:162
|
227 |
+
#: my-calendar-behaviors.php:192
|
228 |
+
#: my-calendar-styles.php:208
|
229 |
+
msgid "Current (in use)"
|
230 |
+
msgstr "Nuværende (i brug)"
|
231 |
+
|
232 |
+
#: my-calendar-behaviors.php:104
|
233 |
+
msgid "There have been updates to the calendar view scripts."
|
234 |
+
msgstr "Der har været opdateringer af scriptsene til kalendervisning."
|
235 |
+
|
236 |
+
#: my-calendar-behaviors.php:104
|
237 |
+
#: my-calendar-behaviors.php:135
|
238 |
+
#: my-calendar-behaviors.php:166
|
239 |
+
#: my-calendar-behaviors.php:196
|
240 |
+
msgid "Compare your scripts with latest installed version of My Calendar."
|
241 |
+
msgstr "Sammenlign dine scripts med senest installerede version af My Calendar."
|
242 |
+
|
243 |
+
#: my-calendar-behaviors.php:108
|
244 |
+
#: my-calendar-behaviors.php:139
|
245 |
+
#: my-calendar-behaviors.php:170
|
246 |
+
#: my-calendar-behaviors.php:200
|
247 |
+
msgid "Your script matches that included with My Calendar."
|
248 |
+
msgstr "Dit script matcher det, der er inkluderet i My Calendar."
|
249 |
+
|
250 |
+
#: my-calendar-behaviors.php:114
|
251 |
+
msgid "Calendar Behaviors: List View"
|
252 |
+
msgstr "Kalenderopførsel: Listevisning"
|
253 |
+
|
254 |
+
#: my-calendar-behaviors.php:116
|
255 |
+
msgid "Update/Reset the My Calendar List Javascript"
|
256 |
+
msgstr "Opdater/nulstil My Calendars listevisningsjavascript"
|
257 |
+
|
258 |
+
#: my-calendar-behaviors.php:116
|
259 |
+
msgid "Disable List Javascript Effects"
|
260 |
+
msgstr "Deaktiver listevisningens javascripteffekter"
|
261 |
+
|
262 |
+
#: my-calendar-behaviors.php:119
|
263 |
+
msgid "Edit the jQuery scripts for My Calendar in List format"
|
264 |
+
msgstr "Rediger jQuery-scripts til My Calendar i listevisning"
|
265 |
+
|
266 |
+
#: my-calendar-behaviors.php:135
|
267 |
+
msgid "There have been updates to the list view scripts."
|
268 |
+
msgstr "Der har været opdateringer af scriptsene til listevisninger."
|
269 |
+
|
270 |
+
#: my-calendar-behaviors.php:145
|
271 |
+
msgid "Calendar Behaviors: Mini Calendar View"
|
272 |
+
msgstr "Kalenderopførsel: Minikalendervisning"
|
273 |
+
|
274 |
+
#: my-calendar-behaviors.php:147
|
275 |
+
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
276 |
+
msgstr "Opdater/nulstil My Calendars javascript til minikalendervisning"
|
277 |
+
|
278 |
+
#: my-calendar-behaviors.php:147
|
279 |
+
msgid "Disable Mini Javascript Effects"
|
280 |
+
msgstr "Deaktiver minikalendervisningens javascripteffekter"
|
281 |
+
|
282 |
+
#: my-calendar-behaviors.php:150
|
283 |
+
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
284 |
+
msgstr "Rediger jQuery-scripts til My Calendar i minikalendervisning"
|
285 |
+
|
286 |
+
#: my-calendar-behaviors.php:166
|
287 |
+
msgid "There have been updates to the mini view scripts."
|
288 |
+
msgstr "Der har været opdateringer af scriptsene til minivisninger."
|
289 |
+
|
290 |
+
#: my-calendar-behaviors.php:176
|
291 |
+
msgid "Calendar Behaviors: AJAX Navigation"
|
292 |
+
msgstr "Kalenderopførsel: AJAX-navigation"
|
293 |
+
|
294 |
+
#: my-calendar-behaviors.php:178
|
295 |
+
msgid "Update/Reset the My Calendar AJAX Javascript"
|
296 |
+
msgstr "Opdater/nulstil My Calendar AJAX-javascript"
|
297 |
+
|
298 |
+
#: my-calendar-behaviors.php:178
|
299 |
+
msgid "Disable AJAX Effects"
|
300 |
+
msgstr "DeaktiverAJAX-effekter"
|
301 |
+
|
302 |
+
#: my-calendar-behaviors.php:181
|
303 |
+
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
304 |
+
msgstr "Rediger jQuery-scripts til My Calendar AJAX-javascript"
|
305 |
+
|
306 |
+
#: my-calendar-behaviors.php:196
|
307 |
+
msgid "There have been updates to the AJAX scripts."
|
308 |
+
msgstr "Der har været opdateringer af AJAX-scriptsene."
|
309 |
+
|
310 |
+
#: my-calendar-behaviors.php:210
|
311 |
+
msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
|
312 |
+
msgstr "Nulstilling af JavaScript indstiller det script til den version, der aktuelt distribueres med dette plugin."
|
313 |
+
|
314 |
+
#: my-calendar-categories.php:103
|
315 |
+
msgid "Category added successfully"
|
316 |
+
msgstr "Kategori tilføjet med succes"
|
317 |
+
|
318 |
+
#: my-calendar-categories.php:105
|
319 |
+
msgid "Category addition failed."
|
320 |
+
msgstr "Tilføjelse af kategori fejlede."
|
321 |
+
|
322 |
+
#: my-calendar-categories.php:115
|
323 |
+
msgid "Category deleted successfully. Categories in calendar updated."
|
324 |
+
msgstr "Kategori slettet med succes. Kalenderens kategorier er opdateret."
|
325 |
+
|
326 |
+
#: my-calendar-categories.php:117
|
327 |
+
msgid "Category deleted successfully. Categories in calendar not updated."
|
328 |
+
msgstr "Kategori slettet med succes. Kalenderens kategorier er ikke opdateret."
|
329 |
+
|
330 |
+
#: my-calendar-categories.php:119
|
331 |
+
msgid "Category not deleted. Categories in calendar updated."
|
332 |
+
msgstr "Kategori ikke slettet. Kalenderens kategorier er opdateret."
|
333 |
+
|
334 |
+
#: my-calendar-categories.php:135
|
335 |
+
msgid "Category edited successfully"
|
336 |
+
msgstr "Kategori redigeret med succes"
|
337 |
+
|
338 |
+
#: my-calendar-categories.php:137
|
339 |
+
msgid "Error: Category was not edited."
|
340 |
+
msgstr "Fejl: Kategori blev ikke redigeret."
|
341 |
+
|
342 |
+
#: my-calendar-categories.php:170
|
343 |
+
#: my-calendar-categories.php:195
|
344 |
+
#: my-calendar-categories.php:212
|
345 |
+
msgid "Add Category"
|
346 |
+
msgstr "Tilføj kategori"
|
347 |
+
|
348 |
+
#: my-calendar-categories.php:172
|
349 |
+
#: my-calendar-categories.php:195
|
350 |
+
msgid "Edit Category"
|
351 |
+
msgstr "Rediger kategori"
|
352 |
+
|
353 |
+
#: my-calendar-categories.php:179
|
354 |
+
msgid "Category Editor"
|
355 |
+
msgstr "Kategoriredigering"
|
356 |
+
|
357 |
+
#: my-calendar-categories.php:196
|
358 |
+
#: my-calendar-categories.php:240
|
359 |
+
msgid "Category Name"
|
360 |
+
msgstr "Kategorinavn"
|
361 |
+
|
362 |
+
#: my-calendar-categories.php:197
|
363 |
+
msgid "Category Color (Hex format)"
|
364 |
+
msgstr "Kategorifarve (Hex format)"
|
365 |
+
|
366 |
+
#: my-calendar-categories.php:198
|
367 |
+
#: my-calendar-categories.php:242
|
368 |
+
msgid "Category Icon"
|
369 |
+
msgstr "Kategoriikon"
|
370 |
+
|
371 |
+
#: my-calendar-categories.php:212
|
372 |
+
#: my-calendar-locations.php:215
|
373 |
+
#: my-calendar-styles.php:198
|
374 |
+
msgid "Save Changes"
|
375 |
+
msgstr "Gem ændringer"
|
376 |
+
|
377 |
+
#: my-calendar-categories.php:218
|
378 |
+
msgid "Add a New Category"
|
379 |
+
msgstr "Tilføj en ny kategori"
|
380 |
+
|
381 |
+
#: my-calendar-categories.php:228
|
382 |
+
#: my-calendar.php:168
|
383 |
+
msgid "Manage Categories"
|
384 |
+
msgstr "Administrer kategorier"
|
385 |
+
|
386 |
+
#: my-calendar-categories.php:239
|
387 |
+
#: my-calendar-event-manager.php:934
|
388 |
+
#: my-calendar-group-manager.php:706
|
389 |
+
#: my-calendar-locations.php:275
|
390 |
+
msgid "ID"
|
391 |
+
msgstr "id"
|
392 |
+
|
393 |
+
#: my-calendar-categories.php:241
|
394 |
+
msgid "Category Color"
|
395 |
+
msgstr "Kategorifarve"
|
396 |
+
|
397 |
+
#: my-calendar-categories.php:243
|
398 |
+
#: my-calendar-categories.php:257
|
399 |
+
#: my-calendar-event-manager.php:1001
|
400 |
+
#: my-calendar-group-manager.php:715
|
401 |
+
#: my-calendar-locations.php:277
|
402 |
+
#: my-calendar-locations.php:289
|
403 |
+
#: my-calendar-output.php:292
|
404 |
+
msgid "Edit"
|
405 |
+
msgstr "Rediger"
|
406 |
+
|
407 |
+
#: my-calendar-categories.php:244
|
408 |
+
#: my-calendar-categories.php:263
|
409 |
+
#: my-calendar-event-manager.php:183
|
410 |
+
#: my-calendar-event-manager.php:1004
|
411 |
+
#: my-calendar-locations.php:278
|
412 |
+
#: my-calendar-locations.php:290
|
413 |
+
#: my-calendar-output.php:293
|
414 |
+
msgid "Delete"
|
415 |
+
msgstr "Slet"
|
416 |
+
|
417 |
+
#: my-calendar-categories.php:260
|
418 |
+
#: my-calendar-event-manager.php:982
|
419 |
+
#: my-calendar-group-manager.php:755
|
420 |
+
#: my-calendar-output.php:186
|
421 |
+
#: my-calendar-settings.php:307
|
422 |
+
msgid "N/A"
|
423 |
+
msgstr "Ikke oplyst"
|
424 |
+
|
425 |
+
#: my-calendar-categories.php:263
|
426 |
+
#: my-calendar-locations.php:290
|
427 |
+
msgid "Are you sure you want to delete this category?"
|
428 |
+
msgstr "Er du sikker på, at du vil slette denne kategori?"
|
429 |
+
|
430 |
+
#: my-calendar-categories.php:274
|
431 |
+
msgid "There are no categories in the database - something has gone wrong!"
|
432 |
+
msgstr "Der er ingen kategorier i databasen - noget er gået galt!"
|
433 |
+
|
434 |
+
#: my-calendar-core.php:70
|
435 |
+
#: my-calendar.php:171
|
436 |
+
msgid "Settings"
|
437 |
+
msgstr "Indstillinger"
|
438 |
+
|
439 |
+
#: my-calendar-core.php:71
|
440 |
+
#: my-calendar.php:175
|
441 |
+
msgid "Help"
|
442 |
+
msgstr "Hjælp"
|
443 |
+
|
444 |
+
#: my-calendar-core.php:198
|
445 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
446 |
+
msgstr "<br /><strong>NB:</strong> Læs venligst <a class=\"thickbox\" href=\"%1$s\">changeloggen</a> før opgradering."
|
447 |
+
|
448 |
+
#: my-calendar-core.php:858
|
449 |
+
#: my-calendar-event-manager.php:296
|
450 |
+
msgid "Add Event"
|
451 |
+
msgstr "Tilføj begivenhed"
|
452 |
+
|
453 |
+
#: my-calendar-core.php:953
|
454 |
+
msgid "You're currently allowing to subscribers to post events, but aren't using Akismet. My Calendar can use Akismet to check for spam in event submissions. <a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>"
|
455 |
+
msgstr "Lige nu tillader du abonnenter at indsende begivenheder, men du bruger ikke Akismet. My Calendar kan bruge Akismet til at checke for spam i indsendelser af begivenheder. <a href='https://akismet.com/signup/'>Få en Akismet API nøgle nu.</a>"
|
456 |
+
|
457 |
+
#: my-calendar-core.php:1078
|
458 |
+
msgid "Is this your calendar page?"
|
459 |
+
msgstr "Er dette din kalenderside?"
|
460 |
+
|
461 |
+
#: my-calendar-core.php:1081
|
462 |
+
msgid "I tried to guess, but don't have a suggestion for you."
|
463 |
+
msgstr "Jeg prøvede at gætte, men har ikke et forslag til dig."
|
464 |
+
|
465 |
+
#: my-calendar-core.php:1166
|
466 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
467 |
+
msgstr "Læs venligst FAQen og andre dokumenter i Hjælp før du sender en support-forespørgsel."
|
468 |
+
|
469 |
+
#: my-calendar-core.php:1168
|
470 |
+
msgid "Please describe your problem in detail. I'm not psychic."
|
471 |
+
msgstr "Beskriv venligst dit problem i detaljer. Jeg er ikke synsk."
|
472 |
+
|
473 |
+
#: my-calendar-core.php:1173
|
474 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
475 |
+
msgstr "Tak for din støtte til den fortsatte udvikling af dette plugin! Jeg vender tilbage til dig hurtigst muligt."
|
476 |
+
|
477 |
+
#: my-calendar-core.php:1175
|
478 |
+
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
479 |
+
msgstr "Jeg vender tilbage til dig hurtigst muligt ,efter at have arbejdet med evt. supportforespørgsler fra brugere, der støtter pluginnet."
|
480 |
+
|
481 |
+
#: my-calendar-core.php:1185
|
482 |
+
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
483 |
+
msgstr "Bemærk venligst: Jeg har optegnelser over dem, der har doneret, <strong>men hvis din donation kom fra en anden end din brugerkonto på denne side, da noter det venligst i din besked.</strong>"
|
484 |
+
|
485 |
+
#: my-calendar-core.php:1187
|
486 |
+
msgid "From:"
|
487 |
+
msgstr "Fra:"
|
488 |
+
|
489 |
+
#: my-calendar-core.php:1190
|
490 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
491 |
+
msgstr "Jeg har læst <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">dette plugins FAQ</a>."
|
492 |
+
|
493 |
+
#: my-calendar-core.php:1193
|
494 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
495 |
+
msgstr "Jeg har <a href=\"http://www.joedolson.com/donate.php\">givet en donation til støtte af dette plug-in</a>."
|
496 |
+
|
497 |
+
#: my-calendar-core.php:1196
|
498 |
+
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
499 |
+
msgstr "Jeg har <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">købt User's Guide</a>, men kunne ikke finde et svar på dette spørgsmål."
|
500 |
+
|
501 |
+
#: my-calendar-core.php:1202
|
502 |
+
msgid "Send Support Request"
|
503 |
+
msgstr "Send supportforespørgsel"
|
504 |
+
|
505 |
+
#: my-calendar-core.php:1205
|
506 |
+
msgid "The following additional information will be sent with your support request:"
|
507 |
+
msgstr "De følgende yderligere informationer bliver sendt sammen med din supportforespørgsel:"
|
508 |
+
|
509 |
+
#: my-calendar-event-manager.php:102
|
510 |
+
#: my-calendar-settings.php:711
|
511 |
+
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?"
|
512 |
+
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?"
|
513 |
+
|
514 |
+
#: my-calendar-event-manager.php:109
|
515 |
+
#: my-calendar-settings.php:718
|
516 |
+
msgid "Import from Calendar"
|
517 |
+
msgstr "Importer fra Calendar"
|
518 |
+
|
519 |
+
#: my-calendar-event-manager.php:114
|
520 |
+
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>!"
|
521 |
+
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."
|
522 |
+
|
523 |
+
#: my-calendar-event-manager.php:161
|
524 |
+
msgid "%1$d events deleted successfully out of %2$d selected"
|
525 |
+
msgstr "%1$d begivenheder slettet med succes, ud af %2$d valgte"
|
526 |
+
|
527 |
+
#: my-calendar-event-manager.php:163
|
528 |
+
#: my-calendar-event-manager.php:323
|
529 |
+
#: my-calendar-event-manager.php:356
|
530 |
+
#: my-calendar-event-manager.php:373
|
531 |
+
#: my-calendar-event-manager.php:389
|
532 |
+
#: my-calendar-event-manager.php:1184
|
533 |
+
#: my-calendar-event-manager.php:1187
|
534 |
+
#: my-calendar-event-manager.php:1190
|
535 |
+
#: my-calendar-event-manager.php:1199
|
536 |
+
#: my-calendar-event-manager.php:1206
|
537 |
+
#: my-calendar-event-manager.php:1222
|
538 |
+
#: my-calendar-event-manager.php:1228
|
539 |
+
#: my-calendar-group-manager.php:57
|
540 |
+
#: my-calendar-group-manager.php:83
|
541 |
+
#: my-calendar-group-manager.php:150
|
542 |
+
#: my-calendar-group-manager.php:576
|
543 |
+
msgid "Error"
|
544 |
+
msgstr "Fejl"
|
545 |
+
|
546 |
+
#: my-calendar-event-manager.php:163
|
547 |
+
msgid "Your events have not been deleted. Please investigate."
|
548 |
+
msgstr "Dine begivenheder er ikke blevet slettet. Undersøg venligst problemet."
|
549 |
+
|
550 |
+
#: my-calendar-event-manager.php:174
|
551 |
+
msgid "Delete Event"
|
552 |
+
msgstr "Slet begivenhed"
|
553 |
+
|
554 |
+
#: my-calendar-event-manager.php:174
|
555 |
+
msgid "Are you sure you want to delete this event?"
|
556 |
+
msgstr "Er du sikker på, at du vil slette denne begivenhed?"
|
557 |
+
|
558 |
+
#: my-calendar-event-manager.php:191
|
559 |
+
msgid "You do not have permission to delete that event."
|
560 |
+
msgstr "Du har ikke tilladelse til at slette denne begivenhed."
|
561 |
+
|
562 |
+
#: my-calendar-event-manager.php:206
|
563 |
+
msgid "You do not have permission to approve that event."
|
564 |
+
msgstr "Du har ikke tilladelse til at godkende denne begivenhed."
|
565 |
+
|
566 |
+
#: my-calendar-event-manager.php:221
|
567 |
+
msgid "You do not have permission to reject that event."
|
568 |
+
msgstr "Du har ikke tilladelse til at afvise denne begivenhed."
|
569 |
+
|
570 |
+
#: my-calendar-event-manager.php:263
|
571 |
+
msgid "Currently editing your local calendar"
|
572 |
+
msgstr "Du redigerer lige nu din lokale kalender"
|
573 |
+
|
574 |
+
#: my-calendar-event-manager.php:265
|
575 |
+
msgid "Currently editing your central calendar"
|
576 |
+
msgstr "Du redigerer lige nu din hovedkalender"
|
577 |
+
|
578 |
+
#: my-calendar-event-manager.php:273
|
579 |
+
#: my-calendar-group-manager.php:773
|
580 |
+
msgid "Edit Event"
|
581 |
+
msgstr "Rediger begivenhed"
|
582 |
+
|
583 |
+
#: my-calendar-event-manager.php:277
|
584 |
+
#: my-calendar-event-manager.php:288
|
585 |
+
msgid "You must provide an event id in order to edit it"
|
586 |
+
msgstr "Du skal angive et begivenheds-id for at kunne redigere den"
|
587 |
+
|
588 |
+
#: my-calendar-event-manager.php:284
|
589 |
+
msgid "Copy Event"
|
590 |
+
msgstr "Kopier begivenhed"
|
591 |
+
|
592 |
+
#: my-calendar-event-manager.php:323
|
593 |
+
msgid "I'm sorry! I couldn't add that event to the database."
|
594 |
+
msgstr "Beklager! Jeg kunne ikke tilføje den begivenhed til databasen."
|
595 |
+
|
596 |
+
#: my-calendar-event-manager.php:333
|
597 |
+
msgid "Event added. It will now show in your calendar."
|
598 |
+
msgstr "Begivenhed tilføjet. Den vises nu i din kalender."
|
599 |
+
|
600 |
+
#: my-calendar-event-manager.php:354
|
601 |
+
#: my-calendar-group-manager.php:55
|
602 |
+
#: my-calendar-group-manager.php:148
|
603 |
+
msgid "View <a href=\"%s\">your calendar</a>."
|
604 |
+
msgstr "Vis <a href=\"%s\">din kalender</a>."
|
605 |
+
|
606 |
+
#: my-calendar-event-manager.php:356
|
607 |
+
#: my-calendar-group-manager.php:150
|
608 |
+
msgid "Your event was not updated."
|
609 |
+
msgstr "Din begivenhed blev ikke opdateret."
|
610 |
+
|
611 |
+
#: my-calendar-event-manager.php:358
|
612 |
+
#: my-calendar-group-manager.php:59
|
613 |
+
#: my-calendar-group-manager.php:85
|
614 |
+
#: my-calendar-group-manager.php:152
|
615 |
+
msgid "Nothing was changed in that update."
|
616 |
+
msgstr "Intet blev ændret i denne opdatering af begivenheden."
|
617 |
+
|
618 |
+
#: my-calendar-event-manager.php:362
|
619 |
+
#: my-calendar-group-manager.php:61
|
620 |
+
#: my-calendar-group-manager.php:154
|
621 |
+
msgid "Event updated successfully"
|
622 |
+
msgstr "Begivenhed opdateret med succes"
|
623 |
+
|
624 |
+
#: my-calendar-event-manager.php:366
|
625 |
+
#: my-calendar-group-manager.php:158
|
626 |
+
msgid "You do not have sufficient permissions to edit that event."
|
627 |
+
msgstr "Du har ikke tilstrækkelige tilladelser til at redigere denne begivenhed."
|
628 |
+
|
629 |
+
#: my-calendar-event-manager.php:373
|
630 |
+
msgid "You can't delete an event if you haven't submitted an event id"
|
631 |
+
msgstr "Du kan ikke redigere en begivenhed, hvis du ikke har sendt et begivenheds-id."
|
632 |
+
|
633 |
+
#: my-calendar-event-manager.php:387
|
634 |
+
msgid "Event deleted successfully"
|
635 |
+
msgstr "Begivenhed slettet med succes"
|
636 |
+
|
637 |
+
#: my-calendar-event-manager.php:389
|
638 |
+
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
639 |
+
msgstr "Selvom der blev sendt en forespørgsel om sletning, eksisterer begivenheden stadig i databasen. Undersøg venligst."
|
640 |
+
|
641 |
+
#: my-calendar-event-manager.php:401
|
642 |
+
#: my-calendar-group-manager.php:169
|
643 |
+
msgid "Sorry! That's an invalid event key."
|
644 |
+
msgstr "Beklager! Det er et ugyldigt begivenheds-id."
|
645 |
+
|
646 |
+
#: my-calendar-event-manager.php:405
|
647 |
+
#: my-calendar-group-manager.php:173
|
648 |
+
msgid "Sorry! We couldn't find an event with that ID."
|
649 |
+
msgstr "Beklager! Vi kunne ikke finde en begivenhed med det id."
|
650 |
+
|
651 |
+
#: my-calendar-event-manager.php:430
|
652 |
+
msgid "This event must be approved in order for it to appear on the calendar."
|
653 |
+
msgstr "Denne begivenhed skal godkendes for at blive vist i kalenderen."
|
654 |
+
|
655 |
+
#: my-calendar-event-manager.php:439
|
656 |
+
#: my-calendar-event-manager.php:473
|
657 |
+
msgid "Save Event"
|
658 |
+
msgstr "Gem begivenhed"
|
659 |
+
|
660 |
+
#: my-calendar-event-manager.php:483
|
661 |
+
msgid "There was an error acquiring information about this event instance. The date for this event was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
662 |
+
msgstr "Der skete en fejl ved hentning af information om denne begivenhedsforekomst. Datoen for denne begivenhed er ikke blevet givet. <strong>Du redigerer hele dette gentagelses-sæt.</strong>"
|
663 |
+
|
664 |
+
#: my-calendar-event-manager.php:487
|
665 |
+
#: my-calendar-group-manager.php:290
|
666 |
+
msgid "Enter your Event Information"
|
667 |
+
msgstr "Indtast oplysninger om begivenheden"
|
668 |
+
|
669 |
+
#: my-calendar-event-manager.php:489
|
670 |
+
#: my-calendar-group-manager.php:292
|
671 |
+
msgid "Event Title"
|
672 |
+
msgstr "Begivenhedens titel"
|
673 |
+
|
674 |
+
#: my-calendar-event-manager.php:489
|
675 |
+
#: my-calendar-event-manager.php:618
|
676 |
+
#: my-calendar-group-manager.php:292
|
677 |
+
msgid "(required)"
|
678 |
+
msgstr "(påkrævet)"
|
679 |
+
|
680 |
+
#: my-calendar-event-manager.php:493
|
681 |
+
msgid "Publish"
|
682 |
+
msgstr "Publicer"
|
683 |
+
|
684 |
+
#: my-calendar-event-manager.php:493
|
685 |
+
msgid "You must approve this event to promote it to the calendar."
|
686 |
+
msgstr "Du skal godkende denne begivenhed for at den bliver vist i kalenderen."
|
687 |
+
|
688 |
+
#: my-calendar-event-manager.php:495
|
689 |
+
msgid "An administrator must approve your new event."
|
690 |
+
msgstr "En administrator skal godkende din nye begivenhed."
|
691 |
+
|
692 |
+
#: my-calendar-event-manager.php:508
|
693 |
+
msgid "This event is not spam"
|
694 |
+
msgstr "Denne begivenhed er ikke spam"
|
695 |
+
|
696 |
+
#: my-calendar-event-manager.php:515
|
697 |
+
#: my-calendar-group-manager.php:306
|
698 |
+
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
699 |
+
msgstr "Beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
|
700 |
+
|
701 |
+
#: my-calendar-event-manager.php:526
|
702 |
+
#: my-calendar-event-manager.php:539
|
703 |
+
#: my-calendar-group-manager.php:317
|
704 |
+
#: my-calendar-group-manager.php:325
|
705 |
+
msgid "This event's image:"
|
706 |
+
msgstr "Denne begivenheds billede:"
|
707 |
+
|
708 |
+
#: my-calendar-event-manager.php:528
|
709 |
+
#: my-calendar-group-manager.php:319
|
710 |
+
msgid "Add an image:"
|
711 |
+
msgstr "Tilføj et billede:"
|
712 |
+
|
713 |
+
#: my-calendar-event-manager.php:530
|
714 |
+
msgid "(URL to Event image)"
|
715 |
+
msgstr "(URL til begivenhedsbillede)"
|
716 |
+
|
717 |
+
#: my-calendar-event-manager.php:532
|
718 |
+
#: my-calendar-group-manager.php:319
|
719 |
+
msgid "Upload Image"
|
720 |
+
msgstr "Upload billede"
|
721 |
+
|
722 |
+
#: my-calendar-event-manager.php:532
|
723 |
+
#: my-calendar-group-manager.php:319
|
724 |
+
msgid "Include your image URL or upload an image."
|
725 |
+
msgstr "Inkluder din billed-URL eller upload et billede."
|
726 |
+
|
727 |
+
#: my-calendar-event-manager.php:545
|
728 |
+
#: my-calendar-group-manager.php:331
|
729 |
+
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
730 |
+
msgstr "Kort beskrivelse af begivenhed (<abbr title=\"hypertext markup language\">HTML</abbr> tilladt)"
|
731 |
+
|
732 |
+
#: my-calendar-event-manager.php:549
|
733 |
+
#: my-calendar-group-manager.php:335
|
734 |
+
msgid "Event Host"
|
735 |
+
msgstr "Begivenhedens vært"
|
736 |
+
|
737 |
+
#: my-calendar-event-manager.php:568
|
738 |
+
#: my-calendar-group-manager.php:354
|
739 |
+
msgid "Event Category"
|
740 |
+
msgstr "Begivenheds kategori"
|
741 |
+
|
742 |
+
#: my-calendar-event-manager.php:593
|
743 |
+
#: my-calendar-group-manager.php:379
|
744 |
+
msgid "Event Link (Optional)"
|
745 |
+
msgstr "Begivenhedslink (valgfri)"
|
746 |
+
|
747 |
+
#: my-calendar-event-manager.php:593
|
748 |
+
#: my-calendar-group-manager.php:379
|
749 |
+
msgid "This link will expire when the event passes."
|
750 |
+
msgstr "Dette link udløber, når begivenheden er overstået."
|
751 |
+
|
752 |
+
#: my-calendar-event-manager.php:601
|
753 |
+
msgid "Event Date and Time"
|
754 |
+
msgstr "Begivenheds dato og tidspunkt"
|
755 |
+
|
756 |
+
#: my-calendar-event-manager.php:618
|
757 |
+
msgid "Start Date (YYYY-MM-DD)"
|
758 |
+
msgstr "Startdato (ÅÅÅÅ-MM-DD)"
|
759 |
+
|
760 |
+
#: my-calendar-event-manager.php:618
|
761 |
+
msgid "Time (hh:mm am/pm)"
|
762 |
+
msgstr "Tidspunkt (tt:mm am/pm)"
|
763 |
+
|
764 |
+
#: my-calendar-event-manager.php:627
|
765 |
+
msgid "End Date (YYYY-MM-DD)"
|
766 |
+
msgstr "Slutdato (ÅÅÅÅ-MM-DD)"
|
767 |
+
|
768 |
+
#: my-calendar-event-manager.php:627
|
769 |
+
msgid "End Time (hh:mm am/pm)"
|
770 |
+
msgstr "Sluttidspunkt (tt:mm am/pm)"
|
771 |
+
|
772 |
+
#: my-calendar-event-manager.php:636
|
773 |
+
msgid "This is a multi-day event."
|
774 |
+
msgstr "Dette er en flerdags begivenhed."
|
775 |
+
|
776 |
+
#: my-calendar-event-manager.php:638
|
777 |
+
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
778 |
+
msgstr "Indtast start- og slutdato for hver forekomst af begivenheden."
|
779 |
+
|
780 |
+
#: my-calendar-event-manager.php:638
|
781 |
+
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
782 |
+
msgstr "Hvis dette er en flerdags begivenhed, genererer den en enkelt begivenhed med flere datoer/tidspunkter; ellers genererer den separate begivenheder for hver forekomst."
|
783 |
+
|
784 |
+
#: my-calendar-event-manager.php:641
|
785 |
+
msgid "Add another occurrence"
|
786 |
+
msgstr "Tilføj en anden forekomst"
|
787 |
+
|
788 |
+
#: my-calendar-event-manager.php:642
|
789 |
+
msgid "Remove last occurrence"
|
790 |
+
msgstr "Fjern sidste forekomst"
|
791 |
+
|
792 |
+
#: my-calendar-event-manager.php:646
|
793 |
+
msgid "Current time difference from GMT is "
|
794 |
+
msgstr "Nuværende tidsforskel fra GMT er "
|
795 |
+
|
796 |
+
#: my-calendar-event-manager.php:646
|
797 |
+
msgid " hour(s)"
|
798 |
+
msgstr " time(r)."
|
799 |
+
|
800 |
+
#: my-calendar-event-manager.php:655
|
801 |
+
msgid "Recurring Events"
|
802 |
+
msgstr "Tilbagevendende begivenheder"
|
803 |
+
|
804 |
+
#: my-calendar-event-manager.php:658
|
805 |
+
msgid "Repeats for"
|
806 |
+
msgstr "Gentages"
|
807 |
+
|
808 |
+
#: my-calendar-event-manager.php:659
|
809 |
+
msgid "Units"
|
810 |
+
msgstr "gange"
|
811 |
+
|
812 |
+
#: my-calendar-event-manager.php:660
|
813 |
+
#: my-calendar-templates.php:115
|
814 |
+
msgid "Does not recur"
|
815 |
+
msgstr "Gentages ikke"
|
816 |
+
|
817 |
+
#: my-calendar-event-manager.php:661
|
818 |
+
#: my-calendar-event-manager.php:974
|
819 |
+
#: my-calendar-group-manager.php:747
|
820 |
+
#: my-calendar-templates.php:116
|
821 |
+
msgid "Daily"
|
822 |
+
msgstr "Dagligt"
|
823 |
+
|
824 |
+
#: my-calendar-event-manager.php:662
|
825 |
+
#: my-calendar-templates.php:117
|
826 |
+
msgid "Daily, weekdays only"
|
827 |
+
msgstr "Daglig, kun ugedage"
|
828 |
+
|
829 |
+
#: my-calendar-event-manager.php:663
|
830 |
+
#: my-calendar-event-manager.php:976
|
831 |
+
#: my-calendar-group-manager.php:749
|
832 |
+
#: my-calendar-templates.php:118
|
833 |
+
msgid "Weekly"
|
834 |
+
msgstr "Ugentligt"
|
835 |
+
|
836 |
+
#: my-calendar-event-manager.php:664
|
837 |
+
#: my-calendar-templates.php:119
|
838 |
+
msgid "Bi-weekly"
|
839 |
+
msgstr "Hveranden uge"
|
840 |
+
|
841 |
+
#: my-calendar-event-manager.php:665
|
842 |
+
msgid "Date of Month (e.g., the 24th of each month)"
|
843 |
+
msgstr "Dato i måneden (f.eks. den 24. i hver måned)"
|
844 |
+
|
845 |
+
#: my-calendar-event-manager.php:666
|
846 |
+
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
847 |
+
msgstr "Dag i måneden (f.eks. den 3. mandag i hver måned)"
|
848 |
+
|
849 |
+
#: my-calendar-event-manager.php:667
|
850 |
+
#: my-calendar-templates.php:122
|
851 |
+
msgid "Annually"
|
852 |
+
msgstr "Årligt"
|
853 |
+
|
854 |
+
#: my-calendar-event-manager.php:669
|
855 |
+
msgid "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."
|
856 |
+
msgstr "Indtast \"0\", hvis begivenheden skal gentages uendeligt. Din indtastning er antallet af begivenheder efter den første forekomst af begivenheden: Hvis der indtastes <em>2</em> betyder det, at begivenheden sker 3 gange."
|
857 |
+
|
858 |
+
#: my-calendar-event-manager.php:686
|
859 |
+
#: my-calendar-group-manager.php:390
|
860 |
+
msgid "Event Registration Status"
|
861 |
+
msgstr "Status for tilmelding til begivenhed"
|
862 |
+
|
863 |
+
#: my-calendar-event-manager.php:687
|
864 |
+
#: my-calendar-group-manager.php:391
|
865 |
+
msgid "My Calendar does not manage event registrations. Use this for information only."
|
866 |
+
msgstr "My Calendar administrerer ikke tilmeldinger til begivenheder. Brug kun dette til at give information."
|
867 |
+
|
868 |
+
#: my-calendar-event-manager.php:689
|
869 |
+
#: my-calendar-group-manager.php:393
|
870 |
+
msgid "Open"
|
871 |
+
msgstr "Åben"
|
872 |
+
|
873 |
+
#: my-calendar-event-manager.php:690
|
874 |
+
#: my-calendar-group-manager.php:394
|
875 |
+
msgid "Closed"
|
876 |
+
msgstr "Lukket"
|
877 |
+
|
878 |
+
#: my-calendar-event-manager.php:691
|
879 |
+
#: my-calendar-group-manager.php:395
|
880 |
+
msgid "Does not apply"
|
881 |
+
msgstr "Ikke relevant"
|
882 |
+
|
883 |
+
#: my-calendar-event-manager.php:694
|
884 |
+
#: my-calendar-group-manager.php:398
|
885 |
+
msgid "If this event recurs, it can only be registered for as a complete series."
|
886 |
+
msgstr "Hvis denne begivenhed gentages, kan tilmelding kun ske til den samlede serie af begivenheder."
|
887 |
+
|
888 |
+
#: my-calendar-event-manager.php:711
|
889 |
+
#: my-calendar-group-manager.php:415
|
890 |
+
#: my-calendar-locations.php:127
|
891 |
+
msgid "Event Location"
|
892 |
+
msgstr "Begivenhedens sted"
|
893 |
+
|
894 |
+
#: my-calendar-event-manager.php:718
|
895 |
+
#: my-calendar-group-manager.php:422
|
896 |
+
msgid "Choose a preset location:"
|
897 |
+
msgstr "Vælg et forudindstillet sted:"
|
898 |
+
|
899 |
+
#: my-calendar-event-manager.php:732
|
900 |
+
#: my-calendar-group-manager.php:436
|
901 |
+
msgid "Add recurring locations for later use."
|
902 |
+
msgstr "Tilføj tilbagevendende steder til senere brug."
|
903 |
+
|
904 |
+
#: my-calendar-event-manager.php:741
|
905 |
+
#: my-calendar-group-manager.php:445
|
906 |
+
#: my-calendar-locations.php:129
|
907 |
+
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
908 |
+
msgstr "Alle stedrelaterede felter er valgfri: <em>Utilstrækkelige oplysninger kan resultere i et upræcist kort</em>."
|
909 |
+
|
910 |
+
#: my-calendar-event-manager.php:744
|
911 |
+
#: my-calendar-group-manager.php:448
|
912 |
+
#: my-calendar-locations.php:132
|
913 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
914 |
+
msgstr "Stednavn (f.eks. <em>Joe's Bar & Grill</em>)"
|
915 |
+
|
916 |
+
#: my-calendar-event-manager.php:753
|
917 |
+
#: my-calendar-group-manager.php:451
|
918 |
+
#: my-calendar-locations.php:141
|
919 |
+
msgid "Street Address"
|
920 |
+
msgstr "Gadenavn"
|
921 |
+
|
922 |
+
#: my-calendar-event-manager.php:756
|
923 |
+
#: my-calendar-group-manager.php:454
|
924 |
+
#: my-calendar-locations.php:144
|
925 |
+
msgid "Street Address (2)"
|
926 |
+
msgstr "Gadenavn (2)"
|
927 |
+
|
928 |
+
#: my-calendar-event-manager.php:759
|
929 |
+
#: my-calendar-group-manager.php:457
|
930 |
+
#: my-calendar-locations.php:147
|
931 |
+
msgid "Phone"
|
932 |
+
msgstr "Telefon"
|
933 |
+
|
934 |
+
#: my-calendar-event-manager.php:769
|
935 |
+
#: my-calendar-group-manager.php:460
|
936 |
+
#: my-calendar-locations.php:157
|
937 |
+
#: my-calendar-settings.php:688
|
938 |
+
msgid "State/Province"
|
939 |
+
msgstr "Stat/Provins"
|
940 |
+
|
941 |
+
#: my-calendar-event-manager.php:803
|
942 |
+
#: my-calendar-group-manager.php:469
|
943 |
+
#: my-calendar-locations.php:191
|
944 |
+
msgid "Initial Zoom"
|
945 |
+
msgstr "Indledende Zoom"
|
946 |
+
|
947 |
+
#: my-calendar-event-manager.php:805
|
948 |
+
#: my-calendar-group-manager.php:471
|
949 |
+
#: my-calendar-locations.php:193
|
950 |
+
msgid "Neighborhood"
|
951 |
+
msgstr "Nabolag"
|
952 |
+
|
953 |
+
#: my-calendar-event-manager.php:806
|
954 |
+
#: my-calendar-group-manager.php:472
|
955 |
+
#: my-calendar-locations.php:194
|
956 |
+
msgid "Small City"
|
957 |
+
msgstr "Lille By"
|
958 |
+
|
959 |
+
#: my-calendar-event-manager.php:807
|
960 |
+
#: my-calendar-group-manager.php:473
|
961 |
+
#: my-calendar-locations.php:195
|
962 |
+
msgid "Large City"
|
963 |
+
msgstr "Stor By"
|
964 |
+
|
965 |
+
#: my-calendar-event-manager.php:808
|
966 |
+
#: my-calendar-group-manager.php:474
|
967 |
+
#: my-calendar-locations.php:196
|
968 |
+
msgid "Greater Metro Area"
|
969 |
+
msgstr "Større byområde"
|
970 |
+
|
971 |
+
#: my-calendar-event-manager.php:814
|
972 |
+
#: my-calendar-group-manager.php:480
|
973 |
+
msgid "Location URL"
|
974 |
+
msgstr "Sted-URL"
|
975 |
+
|
976 |
+
#: my-calendar-event-manager.php:817
|
977 |
+
#: my-calendar-group-manager.php:483
|
978 |
+
#: my-calendar-locations.php:205
|
979 |
+
msgid "GPS Coordinates (optional)"
|
980 |
+
msgstr "GPS-koordinater (valgfri)"
|
981 |
+
|
982 |
+
#: my-calendar-event-manager.php:819
|
983 |
+
#: my-calendar-group-manager.php:485
|
984 |
+
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."
|
985 |
+
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."
|
986 |
+
|
987 |
+
#: my-calendar-event-manager.php:822
|
988 |
+
#: my-calendar-group-manager.php:488
|
989 |
+
#: my-calendar-locations.php:210
|
990 |
+
msgid "Latitude"
|
991 |
+
msgstr "Breddegrad"
|
992 |
+
|
993 |
+
#: my-calendar-event-manager.php:822
|
994 |
+
#: my-calendar-group-manager.php:488
|
995 |
+
#: my-calendar-locations.php:211
|
996 |
+
msgid "Longitude"
|
997 |
+
msgstr "Længdegrad"
|
998 |
+
|
999 |
+
#: my-calendar-event-manager.php:835
|
1000 |
+
msgid "Special Options"
|
1001 |
+
msgstr "Avancerede indstillinger"
|
1002 |
+
|
1003 |
+
#: my-calendar-event-manager.php:837
|
1004 |
+
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1005 |
+
msgstr "Annuller denne begivenhed, hvis den falder på en dato med en begivenhed i Ferie-kategorien"
|
1006 |
+
|
1007 |
+
#: my-calendar-event-manager.php:840
|
1008 |
+
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1009 |
+
msgstr "Flyt begivenheden en uge tilbage, hvis den gentages, og falder i den 5. uge i måneden i en måned med kun 4 uger."
|
1010 |
+
|
1011 |
+
#: my-calendar-event-manager.php:916
|
1012 |
+
msgid "Manage Events"
|
1013 |
+
msgstr "Administrer begivenheder"
|
1014 |
+
|
1015 |
+
#: my-calendar-event-manager.php:919
|
1016 |
+
#: my-calendar-templates.php:203
|
1017 |
+
msgid "Published"
|
1018 |
+
msgstr "Publiceret"
|
1019 |
+
|
1020 |
+
#: my-calendar-event-manager.php:920
|
1021 |
+
#: my-calendar-templates.php:203
|
1022 |
+
msgid "Reserved"
|
1023 |
+
msgstr "Reserveret"
|
1024 |
+
|
1025 |
+
#: my-calendar-event-manager.php:921
|
1026 |
+
msgid "All"
|
1027 |
+
msgstr "Alle"
|
1028 |
+
|
1029 |
+
#: my-calendar-event-manager.php:931
|
1030 |
+
#: my-calendar-group-manager.php:703
|
1031 |
+
msgid "Table of Calendar Events"
|
1032 |
+
msgstr "Tabel over begivenheder i kalenderen"
|
1033 |
+
|
1034 |
+
#: my-calendar-event-manager.php:935
|
1035 |
+
#: my-calendar-group-manager.php:708
|
1036 |
+
#: my-calendar-settings.php:508
|
1037 |
+
#: my-calendar-widgets.php:38
|
1038 |
+
#: my-calendar-widgets.php:124
|
1039 |
+
#: my-calendar-widgets.php:571
|
1040 |
+
msgid "Title"
|
1041 |
+
msgstr "Titel"
|
1042 |
+
|
1043 |
+
#: my-calendar-event-manager.php:936
|
1044 |
+
#: my-calendar-group-manager.php:709
|
1045 |
+
#: my-calendar-locations.php:276
|
1046 |
+
msgid "Location"
|
1047 |
+
msgstr "Sted"
|
1048 |
+
|
1049 |
+
#: my-calendar-event-manager.php:937
|
1050 |
+
#: my-calendar-group-manager.php:710
|
1051 |
+
#: my-calendar-settings.php:509
|
1052 |
+
msgid "Description"
|
1053 |
+
msgstr "Beskrivelse"
|
1054 |
+
|
1055 |
+
#: my-calendar-event-manager.php:938
|
1056 |
+
#: my-calendar-group-manager.php:711
|
1057 |
+
#: my-calendar-settings.php:510
|
1058 |
+
msgid "Start Date"
|
1059 |
+
msgstr "Startdato"
|
1060 |
+
|
1061 |
+
#: my-calendar-event-manager.php:939
|
1062 |
+
#: my-calendar-group-manager.php:712
|
1063 |
+
msgid "Recurs"
|
1064 |
+
msgstr "Gentages"
|
1065 |
+
|
1066 |
+
#: my-calendar-event-manager.php:940
|
1067 |
+
#: my-calendar-group-manager.php:713
|
1068 |
+
#: my-calendar-settings.php:251
|
1069 |
+
#: my-calendar-settings.php:260
|
1070 |
+
#: my-calendar-settings.php:268
|
1071 |
+
#: my-calendar-settings.php:511
|
1072 |
+
msgid "Author"
|
1073 |
+
msgstr "Forfatter"
|
1074 |
+
|
1075 |
+
#: my-calendar-event-manager.php:941
|
1076 |
+
#: my-calendar-group-manager.php:714
|
1077 |
+
#: my-calendar-settings.php:512
|
1078 |
+
msgid "Category"
|
1079 |
+
msgstr "Kategori"
|
1080 |
+
|
1081 |
+
#: my-calendar-event-manager.php:942
|
1082 |
+
msgid "Edit / Delete"
|
1083 |
+
msgstr "Rediger / Slet"
|
1084 |
+
|
1085 |
+
#: my-calendar-event-manager.php:973
|
1086 |
+
#: my-calendar-group-manager.php:746
|
1087 |
+
msgid "Never"
|
1088 |
+
msgstr "Aldrig"
|
1089 |
+
|
1090 |
+
#: my-calendar-event-manager.php:975
|
1091 |
+
#: my-calendar-group-manager.php:748
|
1092 |
+
msgid "Weekdays"
|
1093 |
+
msgstr "Ugedage"
|
1094 |
+
|
1095 |
+
#: my-calendar-event-manager.php:977
|
1096 |
+
#: my-calendar-group-manager.php:750
|
1097 |
+
msgid "Bi-Weekly"
|
1098 |
+
msgstr "Hveranden uge"
|
1099 |
+
|
1100 |
+
#: my-calendar-event-manager.php:978
|
1101 |
+
#: my-calendar-group-manager.php:751
|
1102 |
+
msgid "Monthly (by date)"
|
1103 |
+
msgstr "Månedlig (efter dato)"
|
1104 |
+
|
1105 |
+
#: my-calendar-event-manager.php:979
|
1106 |
+
#: my-calendar-group-manager.php:752
|
1107 |
+
msgid "Monthly (by day)"
|
1108 |
+
msgstr "Månedlig (efter dag)"
|
1109 |
+
|
1110 |
+
#: my-calendar-event-manager.php:980
|
1111 |
+
#: my-calendar-group-manager.php:753
|
1112 |
+
msgid "Yearly"
|
1113 |
+
msgstr "Årligt"
|
1114 |
+
|
1115 |
+
#: my-calendar-event-manager.php:983
|
1116 |
+
#: my-calendar-group-manager.php:756
|
1117 |
+
msgid "Forever"
|
1118 |
+
msgstr "Altid"
|
1119 |
+
|
1120 |
+
#: my-calendar-event-manager.php:984
|
1121 |
+
#: my-calendar-group-manager.php:757
|
1122 |
+
msgid "%d Times"
|
1123 |
+
msgstr "%d gange"
|
1124 |
+
|
1125 |
+
#: my-calendar-event-manager.php:999
|
1126 |
+
msgid "Copy"
|
1127 |
+
msgstr "Kopier"
|
1128 |
+
|
1129 |
+
#: my-calendar-event-manager.php:1002
|
1130 |
+
#: my-calendar-group-manager.php:775
|
1131 |
+
#: my-calendar-output.php:287
|
1132 |
+
msgid "Edit Group"
|
1133 |
+
msgstr "Rediger gruppe"
|
1134 |
+
|
1135 |
+
#: my-calendar-event-manager.php:1005
|
1136 |
+
#: my-calendar-group-manager.php:779
|
1137 |
+
msgid "Not editable."
|
1138 |
+
msgstr "Ikke redigerbar."
|
1139 |
+
|
1140 |
+
#: my-calendar-event-manager.php:1011
|
1141 |
+
msgid "Reject"
|
1142 |
+
msgstr "Afvis"
|
1143 |
+
|
1144 |
+
#: my-calendar-event-manager.php:1013
|
1145 |
+
msgid "Approve"
|
1146 |
+
msgstr "Godkend"
|
1147 |
+
|
1148 |
+
#: my-calendar-event-manager.php:1018
|
1149 |
+
msgid "Approved"
|
1150 |
+
msgstr "Godkendt"
|
1151 |
+
|
1152 |
+
#: my-calendar-event-manager.php:1020
|
1153 |
+
msgid "Rejected"
|
1154 |
+
msgstr "Afvist"
|
1155 |
+
|
1156 |
+
#: my-calendar-event-manager.php:1022
|
1157 |
+
msgid "Awaiting Approval"
|
1158 |
+
msgstr "Afventer godkendelse"
|
1159 |
+
|
1160 |
+
#: my-calendar-event-manager.php:1033
|
1161 |
+
msgid "Delete checked events"
|
1162 |
+
msgstr "Slet valgte begivenheder"
|
1163 |
+
|
1164 |
+
#: my-calendar-event-manager.php:1044
|
1165 |
+
#: my-calendar-group-manager.php:793
|
1166 |
+
msgid "There are no events in the database!"
|
1167 |
+
msgstr "Der er ingen begivenheder i databasen!"
|
1168 |
+
|
1169 |
+
#: my-calendar-event-manager.php:1184
|
1170 |
+
msgid "Your event end date must be either after or the same as your event begin date"
|
1171 |
+
msgstr "Din begivenheds slutdato må enten ligge efter eller være lig med begivenhedens startdato."
|
1172 |
+
|
1173 |
+
#: my-calendar-event-manager.php:1187
|
1174 |
+
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."
|
1175 |
+
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."
|
1176 |
+
|
1177 |
+
#: my-calendar-event-manager.php:1190
|
1178 |
+
msgid "Both start and end dates must be in the format YYYY-MM-DD"
|
1179 |
+
msgstr "Både start- og slutdato skal være i formatet ÅÅÅÅ-MM-DD"
|
1180 |
+
|
1181 |
+
#: my-calendar-event-manager.php:1199
|
1182 |
+
msgid "The time field must either be blank or be entered in the format hh:mm"
|
1183 |
+
msgstr "Feltet for tidspunkt skal enten være blankt eller indtastes i formatet tt:mm"
|
1184 |
+
|
1185 |
+
#: my-calendar-event-manager.php:1206
|
1186 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm"
|
1187 |
+
msgstr "Feltet for slutdato skal enten være blankt eller indtastes i formatet tt:mm"
|
1188 |
+
|
1189 |
+
#: my-calendar-event-manager.php:1222
|
1190 |
+
#: my-calendar-group-manager.php:576
|
1191 |
+
msgid "The event title must be between 1 and 255 characters in length."
|
1192 |
+
msgstr "Begivenhedens titel skal være mellem 1 og 255 tegn i længde."
|
1193 |
+
|
1194 |
+
#: my-calendar-event-manager.php:1228
|
1195 |
+
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1196 |
+
msgstr "Værdien for gentagelse skal være 0, medmindre der er er valgt en type af gentagelse."
|
1197 |
+
|
1198 |
+
#: my-calendar-group-manager.php:57
|
1199 |
+
msgid "Event not updated."
|
1200 |
+
msgstr "Begivenhed ikke opdateret."
|
1201 |
+
|
1202 |
+
#: my-calendar-group-manager.php:83
|
1203 |
+
msgid "Event not grouped."
|
1204 |
+
msgstr "Begivenhed ikke grupperet"
|
1205 |
+
|
1206 |
+
#: my-calendar-group-manager.php:87
|
1207 |
+
msgid "Event grouped successfully"
|
1208 |
+
msgstr "Begivenhed grupperet med succes"
|
1209 |
+
|
1210 |
+
#: my-calendar-group-manager.php:105
|
1211 |
+
#: my-calendar-group-manager.php:261
|
1212 |
+
#: my-calendar-group-manager.php:287
|
1213 |
+
msgid "Edit Event Group"
|
1214 |
+
msgstr "Rediger begivenhedsgruppe"
|
1215 |
+
|
1216 |
+
#: my-calendar-group-manager.php:109
|
1217 |
+
msgid "You must provide an event group id in order to edit it"
|
1218 |
+
msgstr "Du skal angive et begivenhedsgruppe-id for at kunne redigere den"
|
1219 |
+
|
1220 |
+
#: my-calendar-group-manager.php:117
|
1221 |
+
#: my-calendar.php:169
|
1222 |
+
msgid "Manage Event Groups"
|
1223 |
+
msgstr "Administrer begivenhedsgrupper"
|
1224 |
+
|
1225 |
+
#: my-calendar-group-manager.php:119
|
1226 |
+
msgid "Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the \"Edit Group\" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)"
|
1227 |
+
msgstr "Grupperede begivenheder kan redigeres samtidigt. Når du vælger en gruppe af begivenheder at redigere, bliver formularen forudfyldt med indhold fra det af begivenhedsgruppens medlemmer, du startede fra. (F.eks., hvis du klikker på \"Rediger gruppe\"-linket på den tredje begivenhed i en gruppe af begivenheder, vil boksene i formularen bruge indholdet fra den begivenhed. Du vil også se en række checkbokse, som indikerer hvilke begivenheder i gruppen, der skal opdateres med ændringerne. (Alle grupperede begivenheder kan også redigeres individuelt.)"
|
1228 |
+
|
1229 |
+
#: my-calendar-group-manager.php:120
|
1230 |
+
msgid "The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event."
|
1231 |
+
msgstr "De følgende felter vil aldrig blive ændret, når der redigeres grupper: mulighed for tilmelding, begivenheds publiceringsstatus, spam flagning, begivenheds gentagelse (recurrence), begivenheds gentagelse (repetitions) samt start- og slut-datoer og -tidspunkter for begivenheden."
|
1232 |
+
|
1233 |
+
#: my-calendar-group-manager.php:214
|
1234 |
+
msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
|
1235 |
+
msgstr "<strong>NB:</strong> De gruppe-redigerbare felter for begivenhederne i denne gruppe matcher ikke"
|
1236 |
+
|
1237 |
+
#: my-calendar-group-manager.php:214
|
1238 |
+
msgid "The group editable fields for the events in this group match."
|
1239 |
+
msgstr "De gruppe-redigerbare felter for begivenhederne i denne gruppe matcher."
|
1240 |
+
|
1241 |
+
#: my-calendar-group-manager.php:221
|
1242 |
+
msgid "Apply these changes to:"
|
1243 |
+
msgstr "Anvend disse ændringer på:"
|
1244 |
+
|
1245 |
+
#: my-calendar-group-manager.php:232
|
1246 |
+
msgid "Check/Uncheck all"
|
1247 |
+
msgstr "Vælg/Fravælg alle"
|
1248 |
+
|
1249 |
+
#: my-calendar-group-manager.php:234
|
1250 |
+
msgid "Remove checked events from this group"
|
1251 |
+
msgstr "Fjern markerede begivenheder fra denne gruppe"
|
1252 |
+
|
1253 |
+
#: my-calendar-group-manager.php:251
|
1254 |
+
msgid "You must provide a group ID to edit groups"
|
1255 |
+
msgstr "Du skal angive et gruppe-id for at kunne redigere grupper"
|
1256 |
+
|
1257 |
+
#: my-calendar-group-manager.php:300
|
1258 |
+
msgid "Selected dates are a single multi-day event."
|
1259 |
+
msgstr "De valgte datoer er en enkelt flerdags-begivenhed."
|
1260 |
+
|
1261 |
+
#: my-calendar-group-manager.php:690
|
1262 |
+
msgid "Create/Modify Groups"
|
1263 |
+
msgstr "Opret/rediger grupper"
|
1264 |
+
|
1265 |
+
#: my-calendar-group-manager.php:691
|
1266 |
+
msgid "Check a set of events to group them for mass editing."
|
1267 |
+
msgstr "Marker et sæt af begivenheder for at gruppere dem til masseredigering."
|
1268 |
+
|
1269 |
+
#: my-calendar-group-manager.php:701
|
1270 |
+
#: my-calendar-group-manager.php:787
|
1271 |
+
msgid "Group checked events for mass editing"
|
1272 |
+
msgstr "Grupper markerede begivenheder til masseredigering"
|
1273 |
+
|
1274 |
+
#: my-calendar-group-manager.php:707
|
1275 |
+
msgid "Group"
|
1276 |
+
msgstr "Gruppe"
|
1277 |
+
|
1278 |
+
#: my-calendar-group-manager.php:777
|
1279 |
+
msgid "Ungrouped"
|
1280 |
+
msgstr "Ikke-grupperede"
|
1281 |
+
|
1282 |
+
#: my-calendar-help.php:7
|
1283 |
+
msgid "How to use My Calendar"
|
1284 |
+
msgstr "Sådan bruger du My Calendar"
|
1285 |
+
|
1286 |
+
#: my-calendar-help.php:12
|
1287 |
+
msgid "Shortcode Syntax"
|
1288 |
+
msgstr "Shortcode-syntaks"
|
1289 |
+
|
1290 |
+
#: my-calendar-help.php:15
|
1291 |
+
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1292 |
+
msgstr "Disse shortcodes kan bruges i Indlæg, Sider eller i text widgets."
|
1293 |
+
|
1294 |
+
#: my-calendar-help.php:17
|
1295 |
+
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1296 |
+
msgstr "Primær kalender-shortcode (liste eller gitter, ugentlig eller månedlig visning)"
|
1297 |
+
|
1298 |
+
#: my-calendar-help.php:19
|
1299 |
+
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."
|
1300 |
+
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."
|
1301 |
+
|
1302 |
+
#: my-calendar-help.php:22
|
1303 |
+
msgid "The shortcode supports eight attributes:"
|
1304 |
+
msgstr "Denne shortcode understøtter otte attributter:"
|
1305 |
+
|
1306 |
+
#: my-calendar-help.php:24
|
1307 |
+
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1308 |
+
msgstr "Kategori-navne eller -id'er inkluderet i denne kalender, adskilt med komma eller pipe-tegn ( | )."
|
1309 |
+
|
1310 |
+
#: my-calendar-help.php:25
|
1311 |
+
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1312 |
+
msgstr "Enten \"list\" eller \"mini\" for listevisning eller visning af minikalenderen; udelad eller enhver anden værdi for at vise hovedkalenderen i gridvisning."
|
1313 |
+
|
1314 |
+
#: my-calendar-help.php:26
|
1315 |
+
msgid "Set as \"no\" to hide the category key."
|
1316 |
+
msgstr "Sæt til \"no\" for at skjule kategorinøglen. "
|
1317 |
+
|
1318 |
+
#: my-calendar-help.php:27
|
1319 |
+
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1320 |
+
msgstr "Sæt til \"no\" for at skjule måned-for-måned-navigationen."
|
1321 |
+
|
1322 |
+
#: my-calendar-help.php:28
|
1323 |
+
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1324 |
+
msgstr "Sæt til \"yes\" for at vise et link til at skiftet mellem liste- og gridvisning."
|
1325 |
+
|
1326 |
+
#: my-calendar-help.php:29
|
1327 |
+
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1328 |
+
msgstr "Sæt til \"week\" for at visning af uge eller til \"day\" for visning af dag. Enhver anden værdi vil give visning af måned. (Visning af dag vises som en liste uanset formatindstillinger.)"
|
1329 |
+
|
1330 |
+
#: my-calendar-help.php:30
|
1331 |
+
msgid "The type of location data to restrict by."
|
1332 |
+
msgstr "Typen af steddata, der skal indsnævres efter."
|
1333 |
+
|
1334 |
+
#: my-calendar-help.php:31
|
1335 |
+
msgid "The specific location information to filter to."
|
1336 |
+
msgstr "Den specifikke stedinformation, der skal filtreres til."
|
1337 |
+
|
1338 |
+
#: my-calendar-help.php:35
|
1339 |
+
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1340 |
+
msgstr "Den primære My Calendar-shortcode kan genereres fra en knap i indlægget/sidens editor. Minikalenderen kan også tilgås og konfigureres som en widget."
|
1341 |
+
|
1342 |
+
#: my-calendar-help.php:37
|
1343 |
+
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1344 |
+
msgstr "Yderligere kalendervisninger (Kommende begivenheder, dagens begivenheder)"
|
1345 |
+
|
1346 |
+
#: my-calendar-help.php:39
|
1347 |
+
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. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events."
|
1348 |
+
msgstr "Denne shortcode viser outputtet fra widgetten Kommende Begivenheder. 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. <code>fallback</code> viser tekst, når der ikke er nogen begivenheder, der passer til kriterierne. <code>order</code> tilvejebringer en sorteringsorden for begivenhedslisten – enten stigende (<code>asc</code>) eller faldende (<code>desc</code>). <code>skip</code> er antallet af begivenheder, der skal springes over i kommende begivenheder."
|
1349 |
+
|
1350 |
+
#: my-calendar-help.php:42
|
1351 |
+
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with three configurable attributes: category, template and fallback text."
|
1352 |
+
msgstr "Forudsigeligt nok viser denne shortcode outputtet fra widgetten Dagens Begivenheder, med tre indstillelige attributter: <code>category</code>, <code>template</code> og <code>fallback</code>."
|
1353 |
+
|
1354 |
+
#: my-calendar-help.php:45
|
1355 |
+
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1356 |
+
msgstr "Både Kommende begivenheder og Dagens begivenheder kan også konfigureres vha. widgets."
|
1357 |
+
|
1358 |
+
#: my-calendar-help.php:48
|
1359 |
+
msgid "Supplement Features (Locations filter, Categories filter)"
|
1360 |
+
msgstr "Supplerende funktioner (Sted-filter, Kategori-filter)"
|
1361 |
+
|
1362 |
+
#: my-calendar-help.php:51
|
1363 |
+
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>, <code>zip</code> (postal code), or <code>region</code>."
|
1364 |
+
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>, <code>type</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>state</code>, <code>country</code>, <code>zip</code> (postnummer) eller <code>region</code>."
|
1365 |
+
|
1366 |
+
#: my-calendar-help.php:54
|
1367 |
+
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1368 |
+
msgstr "Brug denne shortcode, hvis du ønsker at vise en liste af steder i din database – <code>datatype</code> er typen af data, der vises; alle lister vil inkludere et link til et kort over stedet. I tillæg til grundlæggende stedinformationer, som i shortcoden ovenfor, kan du også bruge \"hcard\" til at vise alle tilgængelige stedinformationer."
|
1369 |
+
|
1370 |
+
#: my-calendar-help.php:57
|
1371 |
+
msgid "This shortcode produces a list of event categories, 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>."
|
1372 |
+
msgstr "Denne shortcode viser en liste af begivenhedskategorier, enten som en liste af links eller som en dropdown-menu, der kan vælges fra. Attributten <code>show</code> kan enten være <code>list</code> eller <code>form</code>."
|
1373 |
+
|
1374 |
+
#: my-calendar-help.php:63
|
1375 |
+
msgid "Category Icons"
|
1376 |
+
msgstr "Kategoriikoner"
|
1377 |
+
|
1378 |
+
#: my-calendar-help.php:66
|
1379 |
+
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."
|
1380 |
+
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."
|
1381 |
+
|
1382 |
+
#: my-calendar-help.php:69
|
1383 |
+
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."
|
1384 |
+
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 — 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."
|
1385 |
+
|
1386 |
+
#: my-calendar-help.php:69
|
1387 |
+
msgid "Your icons folder is:"
|
1388 |
+
msgstr "Din mappe til ikoner er:"
|
1389 |
+
|
1390 |
+
#: my-calendar-help.php:69
|
1391 |
+
msgid "You can alternately place icons in:"
|
1392 |
+
msgstr "Du kan alternativt placere ikoner i:"
|
1393 |
+
|
1394 |
+
#: my-calendar-help.php:77
|
1395 |
+
msgid "Custom Styles"
|
1396 |
+
msgstr "Tilpassede styles"
|
1397 |
+
|
1398 |
+
#: my-calendar-help.php:80
|
1399 |
+
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."
|
1400 |
+
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."
|
1401 |
+
|
1402 |
+
#: my-calendar-help.php:83
|
1403 |
+
msgid "Your stylesheet directory is"
|
1404 |
+
msgstr "Din mappe til stylesheets er"
|
1405 |
+
|
1406 |
+
#: my-calendar-help.php:84
|
1407 |
+
msgid "Your custom stylesheets directory is"
|
1408 |
+
msgstr "Din mappe til tilpassede stylesheets er"
|
1409 |
+
|
1410 |
+
#: my-calendar-help.php:92
|
1411 |
+
msgid "Widget Templating"
|
1412 |
+
msgstr "Widgetskabeloner"
|
1413 |
+
|
1414 |
+
#: my-calendar-help.php:95
|
1415 |
+
msgid "These codes are available in calendar widgets, email notifications, and event titles."
|
1416 |
+
msgstr "Disse koder er tilgængelige i kalenderwidgets, e-mail-notifikationer og begivenhedstitler."
|
1417 |
+
|
1418 |
+
#: my-calendar-help.php:97
|
1419 |
+
#: my-calendar-templating.php:70
|
1420 |
+
msgid "Event Template Tags"
|
1421 |
+
msgstr "Begivenhed skabelon-tags"
|
1422 |
+
|
1423 |
+
#: my-calendar-help.php:100
|
1424 |
+
msgid "Displays the title of the event."
|
1425 |
+
msgstr "Viser begivenhedens titel."
|
1426 |
+
|
1427 |
+
#: my-calendar-help.php:103
|
1428 |
+
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1429 |
+
msgstr "Viser begivenhedens titel som et link, hvis en URL er tilgængelig, eller titlen alene, hvis en URL ikke er tilgængelig."
|
1430 |
+
|
1431 |
+
#: my-calendar-help.php:106
|
1432 |
+
msgid "Displays the start time for the event."
|
1433 |
+
msgstr "Viser begivenhedens starttidspunkt."
|
1434 |
+
|
1435 |
+
#: my-calendar-help.php:109
|
1436 |
+
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1437 |
+
msgstr "Viser begivenhedens starttidspunkt justeret efter den aktuelle brugers indstillinger for tidszone. Returnerer <code>{time}</code>, hvis brugerindstillingerne er slået fra eller brugeren ikke har valgt en foretrukken tidszone."
|
1438 |
+
|
1439 |
+
#: my-calendar-help.php:112
|
1440 |
+
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1441 |
+
msgstr "Viser begivenhedens sluttidspunkt justeret efter den aktuelle brugers indstillinger for tidszone. Returnerer <code>{endtime}</code>, hvis brugerindstillingerne er slået fra eller brugeren ikke har valgt en foretrukken tidszone."
|
1442 |
+
|
1443 |
+
#: my-calendar-help.php:115
|
1444 |
+
msgid "Displays the date on which the event begins."
|
1445 |
+
msgstr "Viser begivenhedens startdato."
|
1446 |
+
|
1447 |
+
#: my-calendar-help.php:118
|
1448 |
+
msgid "Displays the date on which the event ends."
|
1449 |
+
msgstr "Viser begivenhedens slutdato."
|
1450 |
+
|
1451 |
+
#: my-calendar-help.php:121
|
1452 |
+
msgid "Displays the time at which the event ends."
|
1453 |
+
msgstr "Viser begivenhedens sluttidspunkt."
|
1454 |
+
|
1455 |
+
#: my-calendar-help.php:124
|
1456 |
+
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1457 |
+
msgstr "Viser startdato til slutdato for begivenheder. Viser ikke slutdato, hvis den er lig med startdato."
|
1458 |
+
|
1459 |
+
#: my-calendar-help.php:127
|
1460 |
+
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1461 |
+
msgstr "For flerdags-begivenheder vises en ikke-ordnet liste af datoer og tidspunkter for begivenheder i denne gruppe. Ellers, startdato/-tidspunkter."
|
1462 |
+
|
1463 |
+
#: my-calendar-help.php:130
|
1464 |
+
msgid "Displays the WordPress author who posted the event."
|
1465 |
+
msgstr "Viser den WordPress-forfatter, der publicerede begivenheden."
|
1466 |
+
|
1467 |
+
#: my-calendar-help.php:133
|
1468 |
+
msgid "Displays the name of the person assigned as host for the event."
|
1469 |
+
msgstr "Viser navnet på den person, der står som vært for begivenheden."
|
1470 |
+
|
1471 |
+
#: my-calendar-help.php:136
|
1472 |
+
msgid "Displays the email address of the person assigned as host for the event."
|
1473 |
+
msgstr "Viser e-mail-adressen for den person, der står som vært for begivenheden."
|
1474 |
+
|
1475 |
+
#: my-calendar-help.php:139
|
1476 |
+
msgid "Displays the short version of the event description."
|
1477 |
+
msgstr "Viser den korte beskrivelse af begivenheden."
|
1478 |
+
|
1479 |
+
#: my-calendar-help.php:142
|
1480 |
+
msgid "Displays short description without converting paragraphs."
|
1481 |
+
msgstr "Viser kort beskrivelse uden at omdanne afsnit."
|
1482 |
+
|
1483 |
+
#: my-calendar-help.php:145
|
1484 |
+
msgid "Displays the description of the event."
|
1485 |
+
msgstr "Viser beskrivelsen af begivenhden."
|
1486 |
+
|
1487 |
+
#: my-calendar-help.php:148
|
1488 |
+
msgid "Displays description without converting paragraphs."
|
1489 |
+
msgstr "Viser beskrivelse uden at omdanne afsnit."
|
1490 |
+
|
1491 |
+
#: my-calendar-help.php:151
|
1492 |
+
#: my-calendar-templating.php:115
|
1493 |
+
msgid "Image associated with the event."
|
1494 |
+
msgstr "Billede relateret til begivenheden."
|
1495 |
+
|
1496 |
+
#: my-calendar-help.php:154
|
1497 |
+
msgid "Displays the URL provided for the event."
|
1498 |
+
msgstr "Viser URL'en, der er indtastet i begivenhedens oplysninger."
|
1499 |
+
|
1500 |
+
#: my-calendar-help.php:157
|
1501 |
+
msgid "Produces the URL to download an iCal formatted record for the event."
|
1502 |
+
msgstr "Laver URL til download af en iCal-formatteret udgave af begivenheden."
|
1503 |
+
|
1504 |
+
#: my-calendar-help.php:160
|
1505 |
+
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1506 |
+
msgstr "Genererer et link til download af en iCal-formatteret udgave af begivenheden."
|
1507 |
+
|
1508 |
+
#: my-calendar-help.php:163
|
1509 |
+
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1510 |
+
msgstr "Viser begivenhedens gentagelses-status (Dagligt, ugentligt, etc.)"
|
1511 |
+
|
1512 |
+
#: my-calendar-help.php:166
|
1513 |
+
msgid "Shows the number of repetitions of the event."
|
1514 |
+
msgstr "Viser antallet af gentagelser af begivenheden."
|
1515 |
+
|
1516 |
+
#: my-calendar-help.php:169
|
1517 |
+
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1518 |
+
msgstr "Giver et link til en autogenereret side, der indeholder al information om den givne begivenhed."
|
1519 |
+
|
1520 |
+
#: my-calendar-help.php:169
|
1521 |
+
msgid "Requires that the site URL has been provided on the Settings page"
|
1522 |
+
msgstr "Kræver at side-URL'en er indtastet under Indstillinger"
|
1523 |
+
|
1524 |
+
#: my-calendar-help.php:172
|
1525 |
+
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1526 |
+
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."
|
1527 |
+
|
1528 |
+
#: my-calendar-help.php:175
|
1529 |
+
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1530 |
+
msgstr "Viser begivenhedens aktuelle status: Enten \"Publiceret\" eller \"Reserveret\" - bruges primært i e-mail-skabeloner."
|
1531 |
+
|
1532 |
+
#: my-calendar-help.php:177
|
1533 |
+
#: my-calendar-templating.php:129
|
1534 |
+
msgid "Location Template Tags"
|
1535 |
+
msgstr "Sted skabelon-tags"
|
1536 |
+
|
1537 |
+
#: my-calendar-help.php:181
|
1538 |
+
msgid "Displays the name of the location of the event."
|
1539 |
+
msgstr "Viser navnet på begivenhedens sted."
|
1540 |
+
|
1541 |
+
#: my-calendar-help.php:184
|
1542 |
+
msgid "Displays the first line of the site address."
|
1543 |
+
msgstr "Viser første linie af stedets gadenavn."
|
1544 |
+
|
1545 |
+
#: my-calendar-help.php:187
|
1546 |
+
msgid "Displays the second line of the site address."
|
1547 |
+
msgstr "Viser anden linie af stedets gadenavn."
|
1548 |
+
|
1549 |
+
#: my-calendar-help.php:190
|
1550 |
+
msgid "Displays the city for the location."
|
1551 |
+
msgstr "Viser stedets by."
|
1552 |
+
|
1553 |
+
#: my-calendar-help.php:193
|
1554 |
+
msgid "Displays the state for the location."
|
1555 |
+
msgstr "Viser stedets kommune."
|
1556 |
+
|
1557 |
+
#: my-calendar-help.php:196
|
1558 |
+
msgid "Displays the postcode for the location."
|
1559 |
+
msgstr "Viser stedets postnummer."
|
1560 |
+
|
1561 |
+
#: my-calendar-help.php:199
|
1562 |
+
msgid "Shows the custom region entered for the location."
|
1563 |
+
msgstr "Viser den brugerdefinerede region, der er indtastet i stedoplysningerne."
|
1564 |
+
|
1565 |
+
#: my-calendar-help.php:202
|
1566 |
+
msgid "Displays the country for the event location."
|
1567 |
+
msgstr "Viser landet i begivenhedens stedoplysninger."
|
1568 |
+
|
1569 |
+
#: my-calendar-help.php:205
|
1570 |
+
msgid "Output the URL for the location link."
|
1571 |
+
msgstr "Output stedlinkets URL."
|
1572 |
+
|
1573 |
+
#: my-calendar-help.php:208
|
1574 |
+
msgid "Output a hyperlink to the location's listed link with default link text."
|
1575 |
+
msgstr "Output et hyperlink til stedets listede link med default link-tekst."
|
1576 |
+
|
1577 |
+
#: my-calendar-help.php:211
|
1578 |
+
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1579 |
+
msgstr "Viser begivenhedens adresse i <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1580 |
+
|
1581 |
+
#: my-calendar-help.php:214
|
1582 |
+
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1583 |
+
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."
|
1584 |
+
|
1585 |
+
#: my-calendar-help.php:216
|
1586 |
+
#: my-calendar-templating.php:165
|
1587 |
+
msgid "Category Template Tags"
|
1588 |
+
msgstr "Kategori skabelon-tags"
|
1589 |
+
|
1590 |
+
#: my-calendar-help.php:220
|
1591 |
+
msgid "Displays the name of the category the event is in."
|
1592 |
+
msgstr "Viser navnet på kategorien, som begivenheden er i."
|
1593 |
+
|
1594 |
+
#: my-calendar-help.php:223
|
1595 |
+
msgid "Produces the address of the current event's category icon."
|
1596 |
+
msgstr "Giver adressen til den aktuelle begivenheds kategoriikon."
|
1597 |
+
|
1598 |
+
#: my-calendar-help.php:226
|
1599 |
+
msgid "Produces the HTML for the current event's category icon."
|
1600 |
+
msgstr "Genererer HTML for den aktuelle begivenheds kategoriikon."
|
1601 |
+
|
1602 |
+
#: my-calendar-help.php:229
|
1603 |
+
msgid "Produces the hex code for the current event's category color."
|
1604 |
+
msgstr "Giver hexkoden til den aktuelle begivenheds kategorifarve."
|
1605 |
+
|
1606 |
+
#: my-calendar-help.php:232
|
1607 |
+
msgid ""
|
1608 |
+
"Displays the ID for\r\n"
|
1609 |
+
" the category the event is in."
|
1610 |
+
msgstr ""
|
1611 |
+
"Viser id for\r\n"
|
1612 |
+
" kategorien, som begivenheden tilhører."
|
1613 |
+
|
1614 |
+
#: my-calendar-help.php:236
|
1615 |
+
msgid "Special use Template Tags"
|
1616 |
+
msgstr "Skabelon-tags til specialbrug"
|
1617 |
+
|
1618 |
+
#: my-calendar-help.php:240
|
1619 |
+
msgid "A unique ID for the current instance of an event."
|
1620 |
+
msgstr "Et unikt id for den aktuelle forekomst af en begivenhed."
|
1621 |
+
|
1622 |
+
#: my-calendar-help.php:243
|
1623 |
+
msgid "The ID for the event record associated with the current instance of an event."
|
1624 |
+
msgstr "Id for begivenhedsindførslen associeret med den aktuelle forekomst af en begivenhed."
|
1625 |
+
|
1626 |
+
#: my-calendar-help.php:252
|
1627 |
+
msgid "Get Plug-in Support"
|
1628 |
+
msgstr "Få support til plugin"
|
1629 |
+
|
1630 |
+
#: my-calendar-help.php:260
|
1631 |
+
msgid "Helpful Information"
|
1632 |
+
msgstr "Nyttig information"
|
1633 |
+
|
1634 |
+
#: my-calendar-help.php:263
|
1635 |
+
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1636 |
+
msgstr "<strong>Afinstallering af pluginnet</strong>: Selvom standarden og forventningen til WordPress plugins er, at afinstallering sletter alle specielle database-tabeller, pluginnet har oprettet, gør My Calendar <em>ikke dette</em> ved afinstallering. Dette var en bevidst beslutning fra min side -- data, der er gemt i My calendar-tabellerne er dine data; med \"General\"-kategorien som eneste undtagelse, har du tilføjet hver eneste stump data selv. Af denne grund føler jeg, at det ville være en kæmpe bjørnetjeneste over for dig, hvis disse informationer blev slettet ved afinstallering af pluginnet. Derfor skal du selv fjerne My Calendar-tabellerne fra databasen, hvis du vil fjerne ethvert spor af pluginnet. Hvis du gør det, vil alle My Calendars indstillinger blive slettet."
|
1637 |
+
|
1638 |
+
#: my-calendar-help.php:266
|
1639 |
+
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1640 |
+
msgstr "<strong>Donationer</strong>: Jeg sætter pris på ethvert beløb, du kan give. $2 synes måske ikke af meget, men det kan virkelig løbe op, når tusinder af personer bruger softwaren. Bemærk venligst, at jeg er en non-profit organisation og dine bidrag kan ikke trækkes fra i skatten. Tak!"
|
1641 |
+
|
1642 |
+
#: my-calendar-install.php:213
|
1643 |
+
msgid "My Calendar Default Timezone"
|
1644 |
+
msgstr "My Calendar default tidszone"
|
1645 |
+
|
1646 |
+
#: my-calendar-install.php:258
|
1647 |
+
msgid "My Calendar Default Location"
|
1648 |
+
msgstr "My Calendar default sted"
|
1649 |
+
|
1650 |
+
#: my-calendar-locations.php:44
|
1651 |
+
msgid "Location added successfully"
|
1652 |
+
msgstr "Sted tilføjet med succes"
|
1653 |
+
|
1654 |
+
#: my-calendar-locations.php:46
|
1655 |
+
msgid "Location could not be added to database"
|
1656 |
+
msgstr "Stedet kunne ikke føjes til databasen."
|
1657 |
+
|
1658 |
+
#: my-calendar-locations.php:52
|
1659 |
+
msgid "Location deleted successfully"
|
1660 |
+
msgstr "Sted slettet med succes"
|
1661 |
+
|
1662 |
+
#: my-calendar-locations.php:54
|
1663 |
+
msgid "Location could not be deleted"
|
1664 |
+
msgstr "Stedet kunne ikke slettes"
|
1665 |
+
|
1666 |
+
#: my-calendar-locations.php:80
|
1667 |
+
msgid "Location could not be edited."
|
1668 |
+
msgstr "Stedet kunne ikke redigeres."
|
1669 |
+
|
1670 |
+
#: my-calendar-locations.php:82
|
1671 |
+
msgid "Location was not changed."
|
1672 |
+
msgstr "Stedet blev ikke ændret."
|
1673 |
+
|
1674 |
+
#: my-calendar-locations.php:84
|
1675 |
+
msgid "Location edited successfully"
|
1676 |
+
msgstr "Sted redigeret med succes"
|
1677 |
+
|
1678 |
+
#: my-calendar-locations.php:104
|
1679 |
+
msgid "Add New Location"
|
1680 |
+
msgstr "Tilføj nyt sted"
|
1681 |
+
|
1682 |
+
#: my-calendar-locations.php:106
|
1683 |
+
msgid "Edit Location"
|
1684 |
+
msgstr "Rediger sted"
|
1685 |
+
|
1686 |
+
#: my-calendar-locations.php:111
|
1687 |
+
msgid "Location Editor"
|
1688 |
+
msgstr "Redigering af steder"
|
1689 |
+
|
1690 |
+
#: my-calendar-locations.php:202
|
1691 |
+
msgid "Website"
|
1692 |
+
msgstr "Hjemmeside"
|
1693 |
+
|
1694 |
+
#: my-calendar-locations.php:207
|
1695 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
|
1696 |
+
msgstr "Hvis du oplyser GPS-koordinater for dit sted, bliver de brugt i stedet for alle de andre adresseoplysninger til at identificere stedet."
|
1697 |
+
|
1698 |
+
#: my-calendar-locations.php:215
|
1699 |
+
msgid "Add Location"
|
1700 |
+
msgstr "Tilføj sted"
|
1701 |
+
|
1702 |
+
#: my-calendar-locations.php:222
|
1703 |
+
msgid "Add a New Location"
|
1704 |
+
msgstr "Tilføj et nyt sted"
|
1705 |
+
|
1706 |
+
#: my-calendar-locations.php:263
|
1707 |
+
#: my-calendar.php:170
|
1708 |
+
msgid "Manage Locations"
|
1709 |
+
msgstr "Administrer steder"
|
1710 |
+
|
1711 |
+
#: my-calendar-locations.php:298
|
1712 |
+
msgid "There are no locations in the database yet!"
|
1713 |
+
msgstr "Der er endnu ingen steder i databasen!"
|
1714 |
+
|
1715 |
+
#: my-calendar-locations.php:302
|
1716 |
+
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."
|
1717 |
+
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."
|
1718 |
+
|
1719 |
+
#: my-calendar-output.php:148
|
1720 |
+
msgid "Event Details"
|
1721 |
+
msgstr "Begivenhedsdetaljer"
|
1722 |
+
|
1723 |
+
#: my-calendar-output.php:171
|
1724 |
+
#: my-calendar-output.php:282
|
1725 |
+
msgid "Close"
|
1726 |
+
msgstr "Luk"
|
1727 |
+
|
1728 |
+
#: my-calendar-output.php:180
|
1729 |
+
msgid "(%s in your time zone)"
|
1730 |
+
msgstr "(%s i din tidszone)"
|
1731 |
+
|
1732 |
+
#: my-calendar-output.php:186
|
1733 |
+
msgid "Not Applicable"
|
1734 |
+
msgstr "Ikke relevant"
|
1735 |
+
|
1736 |
+
#: my-calendar-output.php:200
|
1737 |
+
msgid "Posted by"
|
1738 |
+
msgstr "Publiceret af"
|
1739 |
+
|
1740 |
+
#: my-calendar-output.php:207
|
1741 |
+
#: my-calendar-templates.php:205
|
1742 |
+
msgid "Details about"
|
1743 |
+
msgstr "Detaljer om"
|
1744 |
+
|
1745 |
+
#: my-calendar-output.php:228
|
1746 |
+
#: my-calendar-templates.php:155
|
1747 |
+
msgid "iCal"
|
1748 |
+
msgstr "iCal"
|
1749 |
+
|
1750 |
+
#: my-calendar-output.php:262
|
1751 |
+
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
1752 |
+
msgstr "Denne begivenhed er en del af en serie. Du skal melde dig til den første begivenhed i serien for at kunne deltage."
|
1753 |
+
|
1754 |
+
#: my-calendar-output.php:267
|
1755 |
+
msgid "View full calendar"
|
1756 |
+
msgstr "Vis fulde kalender"
|
1757 |
+
|
1758 |
+
#: my-calendar-output.php:300
|
1759 |
+
msgid "Edit This Date"
|
1760 |
+
msgstr "Rediger denne dato"
|
1761 |
+
|
1762 |
+
#: my-calendar-output.php:301
|
1763 |
+
msgid "Edit All"
|
1764 |
+
msgstr "Rediger alle"
|
1765 |
+
|
1766 |
+
#: my-calendar-output.php:302
|
1767 |
+
msgid "Delete This Date"
|
1768 |
+
msgstr "Slet denne dato"
|
1769 |
+
|
1770 |
+
#: my-calendar-output.php:303
|
1771 |
+
msgid "Delete All"
|
1772 |
+
msgstr "Slet alle"
|
1773 |
+
|
1774 |
+
#: my-calendar-output.php:361
|
1775 |
+
msgid "Year"
|
1776 |
+
msgstr "År"
|
1777 |
+
|
1778 |
+
#: my-calendar-output.php:389
|
1779 |
+
msgid "Go"
|
1780 |
+
msgstr "Gå"
|
1781 |
+
|
1782 |
+
#: my-calendar-output.php:418
|
1783 |
+
msgid "Calendar: Print View"
|
1784 |
+
msgstr "Kalender: Udskriftsvisning"
|
1785 |
+
|
1786 |
+
#: my-calendar-output.php:433
|
1787 |
+
msgid "Return to site"
|
1788 |
+
msgstr "Vend tilbage til side"
|
1789 |
+
|
1790 |
+
#: my-calendar-output.php:456
|
1791 |
+
msgid "View as Grid"
|
1792 |
+
msgstr "Vis som gitter"
|
1793 |
+
|
1794 |
+
#: my-calendar-output.php:460
|
1795 |
+
msgid "View as List"
|
1796 |
+
msgstr "Vis som liste"
|
1797 |
+
|
1798 |
+
#: my-calendar-output.php:481
|
1799 |
+
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1800 |
+
msgstr "<abbr title=\"Søndag\">Søn</abbr>"
|
1801 |
+
|
1802 |
+
#: my-calendar-output.php:482
|
1803 |
+
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1804 |
+
msgstr "<abbr title=\"Mandag\">Man</abbr>"
|
1805 |
+
|
1806 |
+
#: my-calendar-output.php:483
|
1807 |
+
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1808 |
+
msgstr "<abbr title=\"Tirsdag\">Tirs</abbr>"
|
1809 |
+
|
1810 |
+
#: my-calendar-output.php:484
|
1811 |
+
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1812 |
+
msgstr "<abbr title=\"Onsdag\">Ons</abbr>"
|
1813 |
+
|
1814 |
+
#: my-calendar-output.php:485
|
1815 |
+
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1816 |
+
msgstr "<abbr title=\"Torsdag\">Tors</abbr>"
|
1817 |
+
|
1818 |
+
#: my-calendar-output.php:486
|
1819 |
+
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1820 |
+
msgstr "<abbr title=\"Fredag\">Fre</abbr>"
|
1821 |
+
|
1822 |
+
#: my-calendar-output.php:487
|
1823 |
+
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1824 |
+
msgstr "<abbr title=\"Lørdag\">Lør</abbr>"
|
1825 |
+
|
1826 |
+
#: my-calendar-output.php:492
|
1827 |
+
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1828 |
+
msgstr "<abbr title=\"Søndag\">S</abbr>"
|
1829 |
+
|
1830 |
+
#: my-calendar-output.php:493
|
1831 |
+
msgid "<abbr title=\"Monday\">M</abbr>"
|
1832 |
+
msgstr "<abbr title=\"Mandag\">M</abbr>"
|
1833 |
+
|
1834 |
+
#: my-calendar-output.php:494
|
1835 |
+
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1836 |
+
msgstr "<abbr title=\"Tirsdag\">T</abbr>"
|
1837 |
+
|
1838 |
+
#: my-calendar-output.php:495
|
1839 |
+
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1840 |
+
msgstr "<abbr title=\"Onsdag\">O</abbr>"
|
1841 |
+
|
1842 |
+
#: my-calendar-output.php:496
|
1843 |
+
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1844 |
+
msgstr "<abbr title=\"Torsdag\">T</abbr>"
|
1845 |
+
|
1846 |
+
#: my-calendar-output.php:497
|
1847 |
+
msgid "<abbr title=\"Friday\">F</abbr>"
|
1848 |
+
msgstr "<abbr title=\"Fredag\">F</abbr>"
|
1849 |
+
|
1850 |
+
#: my-calendar-output.php:498
|
1851 |
+
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1852 |
+
msgstr "<abbr title=\"Lørdag\">S</abbr>"
|
1853 |
+
|
1854 |
+
#: my-calendar-output.php:568
|
1855 |
+
msgid "Print View"
|
1856 |
+
msgstr "Udskriftsvisning"
|
1857 |
+
|
1858 |
+
#: my-calendar-output.php:600
|
1859 |
+
msgid "No events scheduled for today!"
|
1860 |
+
msgstr "Ingen begivenheder er planlagt for i dag!"
|
1861 |
+
|
1862 |
+
#: my-calendar-output.php:627
|
1863 |
+
msgid "and"
|
1864 |
+
msgstr "og"
|
1865 |
+
|
1866 |
+
#: my-calendar-output.php:648
|
1867 |
+
msgid "Events in"
|
1868 |
+
msgstr "Begivenheder i"
|
1869 |
+
|
1870 |
+
#: my-calendar-output.php:855
|
1871 |
+
msgid " and %d other event"
|
1872 |
+
msgstr "og %d anden begivenhed"
|
1873 |
+
|
1874 |
+
#: my-calendar-output.php:857
|
1875 |
+
msgid " and %d other events"
|
1876 |
+
msgstr "og %d andre begivenheder"
|
1877 |
+
|
1878 |
+
#: my-calendar-output.php:874
|
1879 |
+
msgid "There are no events scheduled during this period."
|
1880 |
+
msgstr "Der er ikke planlagt begivenheder i denne periode."
|
1881 |
+
|
1882 |
+
#: my-calendar-output.php:878
|
1883 |
+
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
1884 |
+
msgstr "Kalenderformatet kan ikke genkendes. Brug venligst et af disse: 'list', 'calendar' eller 'mini'."
|
1885 |
+
|
1886 |
+
#: my-calendar-output.php:887
|
1887 |
+
msgid "Category Key"
|
1888 |
+
msgstr "Kategorinøgle"
|
1889 |
+
|
1890 |
+
#: my-calendar-output.php:923
|
1891 |
+
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
1892 |
+
msgstr "Abonner via <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
1893 |
+
|
1894 |
+
#: my-calendar-output.php:924
|
1895 |
+
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
1896 |
+
msgstr "Download som <abbr title=\"iCal Events Export\">iCal</abbr>"
|
1897 |
+
|
1898 |
+
#: my-calendar-output.php:949
|
1899 |
+
msgid "Next events »"
|
1900 |
+
msgstr "Kommende begivenheder »"
|
1901 |
+
|
1902 |
+
#: my-calendar-output.php:975
|
1903 |
+
#: my-calendar-output.php:1019
|
1904 |
+
msgid "Week of "
|
1905 |
+
msgstr "Uge i"
|
1906 |
+
|
1907 |
+
#: my-calendar-output.php:993
|
1908 |
+
msgid "« Previous events"
|
1909 |
+
msgstr "« Tidligere begivenheder"
|
1910 |
+
|
1911 |
+
#: my-calendar-output.php:1043
|
1912 |
+
msgid "(select to include)"
|
1913 |
+
msgstr "(vælg for at inkludere)"
|
1914 |
+
|
1915 |
+
#: my-calendar-output.php:1067
|
1916 |
+
#: my-calendar-output.php:1070
|
1917 |
+
msgid "All Categories"
|
1918 |
+
msgstr "Alle kategorier"
|
1919 |
+
|
1920 |
+
#: my-calendar-output.php:1068
|
1921 |
+
msgid "Categories"
|
1922 |
+
msgstr "Kategorier"
|
1923 |
+
|
1924 |
+
#: my-calendar-output.php:1089
|
1925 |
+
#: my-calendar-output.php:1270
|
1926 |
+
msgid "Submit"
|
1927 |
+
msgstr "Send"
|
1928 |
+
|
1929 |
+
#: my-calendar-output.php:1211
|
1930 |
+
#: my-calendar-output.php:1232
|
1931 |
+
msgid "Show all"
|
1932 |
+
msgstr "Vis alle"
|
1933 |
+
|
1934 |
+
#: my-calendar-output.php:1230
|
1935 |
+
msgid "Show events in:"
|
1936 |
+
msgstr "Vis begivenheder i:"
|
1937 |
+
|
1938 |
+
#: my-calendar-settings.php:52
|
1939 |
+
msgid "Categories imported successfully."
|
1940 |
+
msgstr "Kategorier importeret med succes"
|
1941 |
+
|
1942 |
+
#: my-calendar-settings.php:52
|
1943 |
+
msgid "Categories not imported."
|
1944 |
+
msgstr "Kategorier blev ikke importeret"
|
1945 |
+
|
1946 |
+
#: my-calendar-settings.php:53
|
1947 |
+
msgid "Events imported successfully."
|
1948 |
+
msgstr "Begivenheder importeret med succes"
|
1949 |
+
|
1950 |
+
#: my-calendar-settings.php:53
|
1951 |
+
msgid "Events not imported."
|
1952 |
+
msgstr "Begivenheder blev ikke importeret"
|
1953 |
+
|
1954 |
+
#: my-calendar-settings.php:78
|
1955 |
+
msgid "My Calendar Cache cleared"
|
1956 |
+
msgstr "My Calendar cache tømt"
|
1957 |
+
|
1958 |
+
#: my-calendar-settings.php:89
|
1959 |
+
msgid "Permissions Settings saved"
|
1960 |
+
msgstr "Indstillinger for tilladelser gemt"
|
1961 |
+
|
1962 |
+
#: my-calendar-settings.php:134
|
1963 |
+
msgid "Output Settings saved"
|
1964 |
+
msgstr "Outputindstillinger gemt"
|
1965 |
+
|
1966 |
+
#: my-calendar-settings.php:153
|
1967 |
+
msgid "Input Settings saved"
|
1968 |
+
msgstr "Inputindstillinger gemt"
|
1969 |
+
|
1970 |
+
#: my-calendar-settings.php:161
|
1971 |
+
msgid "Multisite settings saved"
|
1972 |
+
msgstr "Multisiteindstillinger gemt"
|
1973 |
+
|
1974 |
+
#: my-calendar-settings.php:180
|
1975 |
+
msgid "Custom text settings saved"
|
1976 |
+
msgstr "Indstillinger for tekst gemt"
|
1977 |
+
|
1978 |
+
#: my-calendar-settings.php:192
|
1979 |
+
msgid "Email notice settings saved"
|
1980 |
+
msgstr "Indstillinger for e-mail-notifikationer gemt"
|
1981 |
+
|
1982 |
+
#: my-calendar-settings.php:206
|
1983 |
+
msgid "User custom settings saved"
|
1984 |
+
msgstr "Indstillinger for brugere gemt"
|
1985 |
+
|
1986 |
+
#: my-calendar-settings.php:237
|
1987 |
+
msgid "My Calendar Options"
|
1988 |
+
msgstr "My Calendar indstillinger"
|
1989 |
+
|
1990 |
+
#: my-calendar-settings.php:241
|
1991 |
+
msgid "Calendar Management Settings"
|
1992 |
+
msgstr "Indstillinger for kalenderadministration"
|
1993 |
+
|
1994 |
+
#: my-calendar-settings.php:246
|
1995 |
+
msgid "Calendar Options: Management"
|
1996 |
+
msgstr "Kalenderindstillinger: Administration"
|
1997 |
+
|
1998 |
+
#: my-calendar-settings.php:248
|
1999 |
+
msgid "Lowest user group that may create events"
|
2000 |
+
msgstr "Laveste brugerrolle, der må oprette begivenheder"
|
2001 |
+
|
2002 |
+
#: my-calendar-settings.php:249
|
2003 |
+
#: my-calendar-settings.php:258
|
2004 |
+
msgid "Subscriber"
|
2005 |
+
msgstr "Abonnent"
|
2006 |
+
|
2007 |
+
#: my-calendar-settings.php:250
|
2008 |
+
#: my-calendar-settings.php:259
|
2009 |
+
#: my-calendar-settings.php:267
|
2010 |
+
msgid "Contributor"
|
2011 |
+
msgstr "Bidragyder"
|
2012 |
+
|
2013 |
+
#: my-calendar-settings.php:252
|
2014 |
+
#: my-calendar-settings.php:261
|
2015 |
+
#: my-calendar-settings.php:269
|
2016 |
+
msgid "Editor"
|
2017 |
+
msgstr "Redaktør"
|
2018 |
+
|
2019 |
+
#: my-calendar-settings.php:253
|
2020 |
+
#: my-calendar-settings.php:262
|
2021 |
+
#: my-calendar-settings.php:270
|
2022 |
+
msgid "Administrator"
|
2023 |
+
msgstr "Administrator"
|
2024 |
+
|
2025 |
+
#: my-calendar-settings.php:257
|
2026 |
+
msgid "Lowest user group that may approve events"
|
2027 |
+
msgstr "Laveste brugerrolle, der må godkende begivenheder"
|
2028 |
+
|
2029 |
+
#: my-calendar-settings.php:263
|
2030 |
+
msgid "Enable approval options."
|
2031 |
+
msgstr "Aktiver indstillinger for godkendelse."
|
2032 |
+
|
2033 |
+
#: my-calendar-settings.php:266
|
2034 |
+
msgid "Lowest user group that may edit or delete all events"
|
2035 |
+
msgstr "Laveste brugerrolle, der må redigere eller slette enhver begivenhed"
|
2036 |
+
|
2037 |
+
#: my-calendar-settings.php:272
|
2038 |
+
msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
|
2039 |
+
msgstr "Per default kan kun administratorer redigere og slette enhver begivenhed. Andre brugere kan kun redigere og slette begivenheder, som de selv har oprettet."
|
2040 |
+
|
2041 |
+
#: my-calendar-settings.php:274
|
2042 |
+
msgid "Enable caching."
|
2043 |
+
msgstr "Brug caching."
|
2044 |
+
|
2045 |
+
#: my-calendar-settings.php:277
|
2046 |
+
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2047 |
+
msgstr "Tøm nuværende cache. (Nødvendigt, hvis du f.eks. redigerer shortcodes for at ændre på viste kategorier.)"
|
2048 |
+
|
2049 |
+
#: my-calendar-settings.php:282
|
2050 |
+
msgid "Currently editing my local calendar"
|
2051 |
+
msgstr "Redigerer i øjeblikket min lokale kalender"
|
2052 |
+
|
2053 |
+
#: my-calendar-settings.php:285
|
2054 |
+
msgid "Currently editing the network calendar"
|
2055 |
+
msgstr "Redigerer i øjeblikket netværkskalenderen"
|
2056 |
+
|
2057 |
+
#: my-calendar-settings.php:288
|
2058 |
+
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2059 |
+
msgstr "Du arbejder i øjeblikket i den primære side i dette netværk; din lokale kalender er også den globale tabel."
|
2060 |
+
|
2061 |
+
#: my-calendar-settings.php:293
|
2062 |
+
msgid "Save Management Settings"
|
2063 |
+
msgstr "Gem administrationsindstillinger"
|
2064 |
+
|
2065 |
+
#: my-calendar-settings.php:299
|
2066 |
+
msgid "Calendar Text Settings"
|
2067 |
+
msgstr "Indstillinger for kalenderens tekst"
|
2068 |
+
|
2069 |
+
#: my-calendar-settings.php:304
|
2070 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2071 |
+
msgstr "Kalenderindstillinger: Tekst-felter, der kan tilpasses"
|
2072 |
+
|
2073 |
+
#: my-calendar-settings.php:307
|
2074 |
+
msgid "Label for events without a set time"
|
2075 |
+
msgstr "Etiket for begivenheder uden et specifikt tidspunkt"
|
2076 |
+
|
2077 |
+
#: my-calendar-settings.php:310
|
2078 |
+
msgid "Previous events link"
|
2079 |
+
msgstr "Link til tidligere begivenheder"
|
2080 |
+
|
2081 |
+
#: my-calendar-settings.php:310
|
2082 |
+
msgid "Previous Events"
|
2083 |
+
msgstr "Tidligere begivenheder"
|
2084 |
+
|
2085 |
+
#: my-calendar-settings.php:310
|
2086 |
+
#: my-calendar-settings.php:313
|
2087 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2088 |
+
msgstr "Brug <code>{date}</code> for at vise den rette dato i navigation."
|
2089 |
+
|
2090 |
+
#: my-calendar-settings.php:313
|
2091 |
+
msgid "Next events link"
|
2092 |
+
msgstr "Link til kommende begivenheder"
|
2093 |
+
|
2094 |
+
#: my-calendar-settings.php:313
|
2095 |
+
msgid "Next Events"
|
2096 |
+
msgstr "Kommende begivenheder"
|
2097 |
+
|
2098 |
+
#: my-calendar-settings.php:316
|
2099 |
+
msgid "If events are open"
|
2100 |
+
msgstr "Hvis begivenheder er åbne"
|
2101 |
+
|
2102 |
+
#: my-calendar-settings.php:316
|
2103 |
+
msgid "Registration is open"
|
2104 |
+
msgstr "Der er åbent for tilmelding"
|
2105 |
+
|
2106 |
+
#: my-calendar-settings.php:319
|
2107 |
+
msgid "If events are closed"
|
2108 |
+
msgstr "Hvis begivenheder er lukkede"
|
2109 |
+
|
2110 |
+
#: my-calendar-settings.php:319
|
2111 |
+
msgid "Registration is closed"
|
2112 |
+
msgstr "Der er lukket for tilmelding"
|
2113 |
+
|
2114 |
+
#: my-calendar-settings.php:322
|
2115 |
+
msgid "Week view caption:"
|
2116 |
+
msgstr "Forklarende tekst ved ugevisning:"
|
2117 |
+
|
2118 |
+
#: my-calendar-settings.php:325
|
2119 |
+
msgid "Additional caption:"
|
2120 |
+
msgstr "Yderligere forklarende tekst:"
|
2121 |
+
|
2122 |
+
#: my-calendar-settings.php:325
|
2123 |
+
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."
|
2124 |
+
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."
|
2125 |
+
|
2126 |
+
#: my-calendar-settings.php:330
|
2127 |
+
msgid "Save Custom Text Settings"
|
2128 |
+
msgstr "Gem indstillinger for tekst"
|
2129 |
+
|
2130 |
+
#: my-calendar-settings.php:336
|
2131 |
+
msgid "Calendar Output Settings"
|
2132 |
+
msgstr "Indstillinger for output"
|
2133 |
+
|
2134 |
+
#: my-calendar-settings.php:340
|
2135 |
+
#: my-calendar-settings.php:521
|
2136 |
+
msgid "Save Output Settings"
|
2137 |
+
msgstr "Gem outputindstillinger"
|
2138 |
+
|
2139 |
+
#: my-calendar-settings.php:342
|
2140 |
+
msgid "Calendar Options: Customize the Output of your Calendar"
|
2141 |
+
msgstr "Kalenderindstillinger: Tilpas din kalenders output"
|
2142 |
+
|
2143 |
+
#: my-calendar-settings.php:344
|
2144 |
+
msgid "General Calendar Options"
|
2145 |
+
msgstr "Generelle My Calendar indstillinger"
|
2146 |
+
|
2147 |
+
#: my-calendar-settings.php:347
|
2148 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2149 |
+
msgstr "Mål-<abbr title=\"Uniform resource locator\">URL</abbr> til begivenhedsdetaljelinks."
|
2150 |
+
|
2151 |
+
#: my-calendar-settings.php:348
|
2152 |
+
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2153 |
+
msgstr "Kan være enhver Side eller Indlæg, som inkluderer <code>[my_calendar]</code>-shortcoden."
|
2154 |
+
|
2155 |
+
#: my-calendar-settings.php:351
|
2156 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2157 |
+
msgstr "Mål-<abbr title=\"Uniform resource locator\">URL</abbr> til enkelt dags tidslinielinks."
|
2158 |
+
|
2159 |
+
#: my-calendar-settings.php:352
|
2160 |
+
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2161 |
+
msgstr "Kan være enhver side eller indlæg med <code>[my_calendar time=\"day\"]</code>-shortcoden."
|
2162 |
+
|
2163 |
+
#: my-calendar-settings.php:355
|
2164 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2165 |
+
msgstr "Mål-<abbr title=\"Uniform resource locator\">URL</abbr> til ankre i siden på minikalender:"
|
2166 |
+
|
2167 |
+
#: my-calendar-settings.php:356
|
2168 |
+
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2169 |
+
msgstr "Kan være enhver side eller indlæg med en <code>[my_calendar]</code>-shortcode, der bruger nedenfor valgte format"
|
2170 |
+
|
2171 |
+
#: my-calendar-settings.php:358
|
2172 |
+
msgid "With above settings:"
|
2173 |
+
msgstr "Med ovenfor valgte indstillinger:"
|
2174 |
+
|
2175 |
+
#: my-calendar-settings.php:360
|
2176 |
+
msgid "Open calendar links to event details URL"
|
2177 |
+
msgstr "Kalenderlinks skal åbne med begivenhedsdetaljernes URL"
|
2178 |
+
|
2179 |
+
#: my-calendar-settings.php:360
|
2180 |
+
msgid "Replaces pop-up in grid view."
|
2181 |
+
msgstr "Erstatter popup i gittervisning."
|
2182 |
+
|
2183 |
+
#: my-calendar-settings.php:363
|
2184 |
+
msgid "Mini calendar widget date links to:"
|
2185 |
+
msgstr "Dato i minikalenderwidget linker til:"
|
2186 |
+
|
2187 |
+
#: my-calendar-settings.php:364
|
2188 |
+
msgid "jQuery pop-up view"
|
2189 |
+
msgstr "jQuery popupvisning"
|
2190 |
+
|
2191 |
+
#: my-calendar-settings.php:365
|
2192 |
+
msgid "daily view page (above)"
|
2193 |
+
msgstr "Side til dag-visning (ovenfor)"
|
2194 |
+
|
2195 |
+
#: my-calendar-settings.php:366
|
2196 |
+
msgid "in-page anchor on main calendar page (list)"
|
2197 |
+
msgstr "Anker i side på hovedkalenderside (liste)"
|
2198 |
+
|
2199 |
+
#: my-calendar-settings.php:367
|
2200 |
+
msgid "in-page anchor on main calendar page (grid)"
|
2201 |
+
msgstr "Anker i side på hovekalenderside (gitter)"
|
2202 |
+
|
2203 |
+
#: my-calendar-settings.php:369
|
2204 |
+
msgid "Replaces pop-up in mini calendar"
|
2205 |
+
msgstr "Erstatter popup i minikalender"
|
2206 |
+
|
2207 |
+
#: my-calendar-settings.php:372
|
2208 |
+
msgid "Time format"
|
2209 |
+
msgstr "Tidsformat"
|
2210 |
+
|
2211 |
+
#: my-calendar-settings.php:372
|
2212 |
+
#: my-calendar-settings.php:375
|
2213 |
+
#: my-calendar-settings.php:378
|
2214 |
+
msgid "Current:"
|
2215 |
+
msgstr "Nuværende:"
|
2216 |
+
|
2217 |
+
#: my-calendar-settings.php:375
|
2218 |
+
msgid "Date in grid mode, week view"
|
2219 |
+
msgstr "Dato i gitter-mode, ugevisning"
|
2220 |
+
|
2221 |
+
#: my-calendar-settings.php:378
|
2222 |
+
msgid "Date Format in other views"
|
2223 |
+
msgstr "Datoformat i andre visninger"
|
2224 |
+
|
2225 |
+
#: my-calendar-settings.php:381
|
2226 |
+
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2227 |
+
msgstr "Datoformater bruger samme syntaks som <a href=\"http://php.net/date\">PHP <code>date()</code>-funktionen</a>. Gem indstillinger for at opdatere test-outputtet."
|
2228 |
+
|
2229 |
+
#: my-calendar-settings.php:384
|
2230 |
+
msgid "Show link to My Calendar RSS feed."
|
2231 |
+
msgstr "Vis link til My Calendar RSS-feed."
|
2232 |
+
|
2233 |
+
#: my-calendar-settings.php:384
|
2234 |
+
msgid "RSS feed shows recently added events."
|
2235 |
+
msgstr "RSS-feed viser senest tilføjede begivenheder."
|
2236 |
+
|
2237 |
+
#: my-calendar-settings.php:387
|
2238 |
+
msgid "Show link to iCal format download."
|
2239 |
+
msgstr "Vis link til download i iCal-format."
|
2240 |
+
|
2241 |
+
#: my-calendar-settings.php:387
|
2242 |
+
msgid "iCal outputs events occurring in the current calendar month."
|
2243 |
+
msgstr "iCal outputter begivenheder, der forekommer i indeværende kalendermåned."
|
2244 |
+
|
2245 |
+
#: my-calendar-settings.php:390
|
2246 |
+
msgid "Show link to print-formatted view of calendar"
|
2247 |
+
msgstr "Vis link til udskriftsformatteret visning af kalender"
|
2248 |
+
|
2249 |
+
#: my-calendar-settings.php:393
|
2250 |
+
msgid "Display a jumpbox for changing month and year quickly?"
|
2251 |
+
msgstr "Vis en popup-boks til hurtig ændring af måned og år?"
|
2252 |
+
|
2253 |
+
#: my-calendar-settings.php:400
|
2254 |
+
msgid "Grid Layout Options"
|
2255 |
+
msgstr "Indstillinger for gitterlayout"
|
2256 |
+
|
2257 |
+
#: my-calendar-settings.php:403
|
2258 |
+
msgid "Show Weekends on Calendar"
|
2259 |
+
msgstr "Vis weekender i kalender"
|
2260 |
+
|
2261 |
+
#: my-calendar-settings.php:410
|
2262 |
+
msgid "List Layout Options"
|
2263 |
+
msgstr "Indstillinger for listelayout"
|
2264 |
+
|
2265 |
+
#: my-calendar-settings.php:413
|
2266 |
+
msgid "How many months of events to show at a time:"
|
2267 |
+
msgstr "Hvor mange måneders begivenheder der skal vises ad gangen:"
|
2268 |
+
|
2269 |
+
#: my-calendar-settings.php:416
|
2270 |
+
msgid "Show the first event's title and the number of events that day next to the date."
|
2271 |
+
msgstr "Viser den første begivenheds titel og antallet af begivenheder den dag ved siden af datoen."
|
2272 |
+
|
2273 |
+
#: my-calendar-settings.php:423
|
2274 |
+
msgid "Event Details Options"
|
2275 |
+
msgstr "Indstillinger for begivenhedsdetaljer"
|
2276 |
+
|
2277 |
+
#: my-calendar-settings.php:426
|
2278 |
+
msgid "Event title template"
|
2279 |
+
msgstr "Skabelon for begivenhedstitel"
|
2280 |
+
|
2281 |
+
#: my-calendar-settings.php:427
|
2282 |
+
#: my-calendar-settings.php:437
|
2283 |
+
msgid "Templating Help"
|
2284 |
+
msgstr "Hjælp til skabeloner"
|
2285 |
+
|
2286 |
+
#: my-calendar-settings.php:427
|
2287 |
+
#: my-calendar-settings.php:437
|
2288 |
+
msgid "All template tags are available."
|
2289 |
+
msgstr "Alle skabelon-tags er tilgængelige."
|
2290 |
+
|
2291 |
+
#: my-calendar-settings.php:430
|
2292 |
+
msgid "Event details link text"
|
2293 |
+
msgstr "Linktekst i begivenhedsdetaljer"
|
2294 |
+
|
2295 |
+
#: my-calendar-settings.php:432
|
2296 |
+
msgid "Available template tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2297 |
+
msgstr "Tilgængelige skabelon-tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2298 |
+
|
2299 |
+
#: my-calendar-settings.php:435
|
2300 |
+
msgid "Event URL link text"
|
2301 |
+
msgstr "Linktekst i begivenheds-URL"
|
2302 |
+
|
2303 |
+
#: my-calendar-settings.php:440
|
2304 |
+
msgid "Display author's name"
|
2305 |
+
msgstr "Vis forfatters navn"
|
2306 |
+
|
2307 |
+
#: my-calendar-settings.php:443
|
2308 |
+
msgid "Display link to single event iCal download."
|
2309 |
+
msgstr "Vis link til download af iCal for enkeltbegivenheder."
|
2310 |
+
|
2311 |
+
#: my-calendar-settings.php:446
|
2312 |
+
msgid "Hide category icons"
|
2313 |
+
msgstr "Skjul kategoriikoner"
|
2314 |
+
|
2315 |
+
#: my-calendar-settings.php:449
|
2316 |
+
msgid "Show Link to Google Map"
|
2317 |
+
msgstr "Vis link til Google-kort"
|
2318 |
+
|
2319 |
+
#: my-calendar-settings.php:452
|
2320 |
+
msgid "Show Event Address"
|
2321 |
+
msgstr "Vis begivenhedsadresse"
|
2322 |
+
|
2323 |
+
#: my-calendar-settings.php:455
|
2324 |
+
msgid "Show short description field on calendar."
|
2325 |
+
msgstr "Vis den korte beskrivelse i kalenderen."
|
2326 |
+
|
2327 |
+
#: my-calendar-settings.php:458
|
2328 |
+
msgid "Show full description field on calendar."
|
2329 |
+
msgstr "Vis den fulde beskrivelse i kalenderen."
|
2330 |
+
|
2331 |
+
#: my-calendar-settings.php:461
|
2332 |
+
msgid "Show link to single-event details. (requires <a href='#mc_uri'>URL, above</a>)"
|
2333 |
+
msgstr "Vis link til detaljer for enkeltbegivenheder. (kræver <a href='#mc_uri'>URL, ovenfor</a>"
|
2334 |
+
|
2335 |
+
#: my-calendar-settings.php:464
|
2336 |
+
msgid "Event links expire after the event has passed."
|
2337 |
+
msgstr "Begivenhedslink udløber, når begivenheden er overstået."
|
2338 |
+
|
2339 |
+
#: my-calendar-settings.php:467
|
2340 |
+
msgid "Show current availability status"
|
2341 |
+
msgstr "Vis aktuelle status for tilgængelighed."
|
2342 |
+
|
2343 |
+
#: my-calendar-settings.php:470
|
2344 |
+
msgid "Default usage of category colors."
|
2345 |
+
msgstr "Standard brug af kategorifarver"
|
2346 |
+
|
2347 |
+
#: my-calendar-settings.php:471
|
2348 |
+
msgid "Apply category colors to event titles as a font color."
|
2349 |
+
msgstr "Brug kategorifarver som skriftfarve i begivenhedstitler."
|
2350 |
+
|
2351 |
+
#: my-calendar-settings.php:472
|
2352 |
+
msgid "Apply category colors to event titles as a background color."
|
2353 |
+
msgstr "Brug kategorifarver som baggrundsfarve i begivenhedstitler"
|
2354 |
+
|
2355 |
+
#: my-calendar-settings.php:478
|
2356 |
+
msgid "Event Scheduling Options"
|
2357 |
+
msgstr "Indstillinger for begivenhedsplanlægning"
|
2358 |
+
|
2359 |
+
#: my-calendar-settings.php:481
|
2360 |
+
msgid "Default setting for event input: 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."
|
2361 |
+
msgstr "Standardindstilling for begivenhedsinput: 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."
|
2362 |
+
|
2363 |
+
#: my-calendar-settings.php:484
|
2364 |
+
msgid "Holiday Category"
|
2365 |
+
msgstr "Feriekategori"
|
2366 |
+
|
2367 |
+
#: my-calendar-settings.php:486
|
2368 |
+
msgid "None"
|
2369 |
+
msgstr "Ingen"
|
2370 |
+
|
2371 |
+
#: my-calendar-settings.php:502
|
2372 |
+
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2373 |
+
msgstr "Standardindstilling for begivenhedsinput: Vis ikke en begivenhed, hvis den ligger samtidigt med en begivenhed i den kategori, der er gjort til \"Ferie\"-kategori."
|
2374 |
+
|
2375 |
+
#: my-calendar-settings.php:505
|
2376 |
+
msgid "Default Sort order for Admin Events List"
|
2377 |
+
msgstr "Standard sorteringsorden for begivenhedslisten på administrationssiden"
|
2378 |
+
|
2379 |
+
#: my-calendar-settings.php:507
|
2380 |
+
msgid "Event ID"
|
2381 |
+
msgstr "Begivenheds-id"
|
2382 |
+
|
2383 |
+
#: my-calendar-settings.php:527
|
2384 |
+
msgid "Calendar Input Settings"
|
2385 |
+
msgstr "Indstillinger for input"
|
2386 |
+
|
2387 |
+
#: my-calendar-settings.php:532
|
2388 |
+
msgid "Select which input fields will be available when adding or editing events."
|
2389 |
+
msgstr "Vælg hvilke input-felter, der skal være tilgængelige ved oprettelse eller redigering af begivenheder."
|
2390 |
+
|
2391 |
+
#: my-calendar-settings.php:537
|
2392 |
+
msgid "Show Event Location Dropdown Menu"
|
2393 |
+
msgstr "Vis begivenhedssted i dropdownmenu"
|
2394 |
+
|
2395 |
+
#: my-calendar-settings.php:537
|
2396 |
+
msgid "Show Event Short Description field"
|
2397 |
+
msgstr "Vis feltet \"Kort beskrivelse af begivenhed\""
|
2398 |
+
|
2399 |
+
#: my-calendar-settings.php:537
|
2400 |
+
msgid "Show Event Description Field"
|
2401 |
+
msgstr "Vis feltet \"Beskrivelse af begivenhed\""
|
2402 |
+
|
2403 |
+
#: my-calendar-settings.php:537
|
2404 |
+
msgid "Show Event Category field"
|
2405 |
+
msgstr "Begivenheds kategori"
|
2406 |
+
|
2407 |
+
#: my-calendar-settings.php:537
|
2408 |
+
msgid "Show Event image field"
|
2409 |
+
msgstr "Vis felt for begivenhedsbillede"
|
2410 |
+
|
2411 |
+
#: my-calendar-settings.php:537
|
2412 |
+
msgid "Show Event Link field"
|
2413 |
+
msgstr "Vis feltet \"Begivenhedslink\""
|
2414 |
+
|
2415 |
+
#: my-calendar-settings.php:537
|
2416 |
+
msgid "Show Event Recurrence Options"
|
2417 |
+
msgstr "Vis indstillinger for tilbagevendende begivenheder"
|
2418 |
+
|
2419 |
+
#: my-calendar-settings.php:537
|
2420 |
+
msgid "Show Event registration options"
|
2421 |
+
msgstr "Vis indstillinger for tilmelding til begivenheder"
|
2422 |
+
|
2423 |
+
#: my-calendar-settings.php:537
|
2424 |
+
msgid "Show Event location fields"
|
2425 |
+
msgstr "Vis felter for begivenhedens sted"
|
2426 |
+
|
2427 |
+
#: my-calendar-settings.php:537
|
2428 |
+
msgid "Use HTML Editor in Event Description Field"
|
2429 |
+
msgstr "Brug HTML-editor i feltet \"Beskrivelse af begivenhed\""
|
2430 |
+
|
2431 |
+
#: my-calendar-settings.php:550
|
2432 |
+
msgid "Administrators see all input options"
|
2433 |
+
msgstr "Lad administratorer se alle inputmuligheder"
|
2434 |
+
|
2435 |
+
#: my-calendar-settings.php:555
|
2436 |
+
msgid "Save Input Settings"
|
2437 |
+
msgstr "Gem indstillinger for input"
|
2438 |
+
|
2439 |
+
#: my-calendar-settings.php:562
|
2440 |
+
msgid "Multisite Settings (Network Administrators only)"
|
2441 |
+
msgstr "Multisite-indstillinger (kun for Netværksadministratorer)"
|
2442 |
+
|
2443 |
+
#: my-calendar-settings.php:564
|
2444 |
+
msgid "Multisite support is a beta feature - use with caution."
|
2445 |
+
msgstr "Multisite-understøttelse er en beta-feature - brug med forsigtighed."
|
2446 |
+
|
2447 |
+
#: my-calendar-settings.php:569
|
2448 |
+
msgid "Settings for WP MultiSite configurations"
|
2449 |
+
msgstr "Indstillinger for WP MultiSite-konfigurationer"
|
2450 |
+
|
2451 |
+
#: my-calendar-settings.php:570
|
2452 |
+
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2453 |
+
msgstr "Hovedkalenderen er kalenderen associeret med den primære side i dit WordPress Multisite-netværk."
|
2454 |
+
|
2455 |
+
#: my-calendar-settings.php:572
|
2456 |
+
msgid "Site owners may only post to their local calendar"
|
2457 |
+
msgstr "Side-ejere må kun publicere i deres lokale kalender"
|
2458 |
+
|
2459 |
+
#: my-calendar-settings.php:573
|
2460 |
+
msgid "Site owners may only post to the central calendar"
|
2461 |
+
msgstr "Side-ejere må kun publicere i hovedkalenderen"
|
2462 |
+
|
2463 |
+
#: my-calendar-settings.php:574
|
2464 |
+
msgid "Site owners may manage either calendar"
|
2465 |
+
msgstr "Side-ejere må administrere begge kalendere"
|
2466 |
+
|
2467 |
+
#: my-calendar-settings.php:576
|
2468 |
+
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2469 |
+
msgstr "Ændringer påvirker kun input-tilladelser. Offentligt vendte kalendere forbliver uændrede."
|
2470 |
+
|
2471 |
+
#: my-calendar-settings.php:578
|
2472 |
+
msgid "Sub-site calendars show events from their local calendar."
|
2473 |
+
msgstr "Sub-site kalendere viser begivenheder fra deres lokale kalender"
|
2474 |
+
|
2475 |
+
#: my-calendar-settings.php:579
|
2476 |
+
msgid "Sub-site calendars show events from the central calendar."
|
2477 |
+
msgstr "Sub-site kalendere viser begivenheder fra hovedkalenderen."
|
2478 |
+
|
2479 |
+
#: my-calendar-settings.php:583
|
2480 |
+
msgid "Save Multisite Settings"
|
2481 |
+
msgstr "Gem Multisiteindstillinger"
|
2482 |
+
|
2483 |
+
#: my-calendar-settings.php:590
|
2484 |
+
msgid "Calendar Email Settings"
|
2485 |
+
msgstr "Indstillinger for e-mail-notifikationer"
|
2486 |
+
|
2487 |
+
#: my-calendar-settings.php:595
|
2488 |
+
msgid "Calendar Options: Email Notifications"
|
2489 |
+
msgstr "Kalenderindstillinger: Notifikationer pr. e-mail"
|
2490 |
+
|
2491 |
+
#: my-calendar-settings.php:599
|
2492 |
+
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2493 |
+
msgstr "Send notifikationer pr. e-mail, når nye begivenheder publiceres eller reserveres."
|
2494 |
+
|
2495 |
+
#: my-calendar-settings.php:602
|
2496 |
+
msgid "Notification messages are sent to: "
|
2497 |
+
msgstr "Notifikationer pr. e-mail sendes til: "
|
2498 |
+
|
2499 |
+
#: my-calendar-settings.php:605
|
2500 |
+
msgid "Email subject"
|
2501 |
+
msgstr "E-mail emne"
|
2502 |
+
|
2503 |
+
#: my-calendar-settings.php:605
|
2504 |
+
msgid "New event Added"
|
2505 |
+
msgstr "Ny begivenhed tilføjet"
|
2506 |
+
|
2507 |
+
#: my-calendar-settings.php:608
|
2508 |
+
msgid "Message Body"
|
2509 |
+
msgstr "E-mail indhold"
|
2510 |
+
|
2511 |
+
#: my-calendar-settings.php:608
|
2512 |
+
msgid "New Event:"
|
2513 |
+
msgstr "Ny begivenhed:"
|
2514 |
+
|
2515 |
+
#: my-calendar-settings.php:609
|
2516 |
+
msgid "Shortcode Help"
|
2517 |
+
msgstr "Hjælp til shortcodes"
|
2518 |
+
|
2519 |
+
#: my-calendar-settings.php:609
|
2520 |
+
msgid "All template shortcodes are available."
|
2521 |
+
msgstr "Alle skabelon-shortcodes er tilgængelige."
|
2522 |
+
|
2523 |
+
#: my-calendar-settings.php:614
|
2524 |
+
msgid "Save Email Settings"
|
2525 |
+
msgstr "Gem indstillinger for e-mail-notifikationer"
|
2526 |
+
|
2527 |
+
#: my-calendar-settings.php:620
|
2528 |
+
msgid "Calendar User Settings"
|
2529 |
+
msgstr "Indstillinger for brugere"
|
2530 |
+
|
2531 |
+
#: my-calendar-settings.php:627
|
2532 |
+
msgid "Settings which can be configured in registered user's accounts"
|
2533 |
+
msgstr "Indstillinger, som kan konfigureres af registrerede brugere i deres profiler."
|
2534 |
+
|
2535 |
+
#: my-calendar-settings.php:629
|
2536 |
+
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2537 |
+
msgstr "Tillad registrerede brugere at forudindstille værdier for tidszone eller sted i deres brugerprofiler."
|
2538 |
+
|
2539 |
+
#: my-calendar-settings.php:641
|
2540 |
+
msgid "Timezone Settings"
|
2541 |
+
msgstr "Indstillinger for tidszone"
|
2542 |
+
|
2543 |
+
#: my-calendar-settings.php:642
|
2544 |
+
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."
|
2545 |
+
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."
|
2546 |
+
|
2547 |
+
#: my-calendar-settings.php:644
|
2548 |
+
msgid "Enable Timezone"
|
2549 |
+
msgstr "Brug tidszone"
|
2550 |
+
|
2551 |
+
#: my-calendar-settings.php:647
|
2552 |
+
msgid "Select Timezone Label"
|
2553 |
+
msgstr "Vælg tidszoneetiket"
|
2554 |
+
|
2555 |
+
#: my-calendar-settings.php:650
|
2556 |
+
msgid "Timezone Options"
|
2557 |
+
msgstr "Tidszone valgmuligheder"
|
2558 |
+
|
2559 |
+
#: my-calendar-settings.php:650
|
2560 |
+
#: my-calendar-settings.php:674
|
2561 |
+
msgid "Value, Label; one per line"
|
2562 |
+
msgstr "Værdi; Etiket; én per linie"
|
2563 |
+
|
2564 |
+
#: my-calendar-settings.php:662
|
2565 |
+
msgid "Location Settings"
|
2566 |
+
msgstr "Indstillinger for steder"
|
2567 |
+
|
2568 |
+
#: my-calendar-settings.php:663
|
2569 |
+
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. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2570 |
+
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. Disse data kan også bruges til at generere skræddersyede stedfiltreringsmuligheder vha. <code>my_calendar_locations</code>-shortcoden. Det er ikke nødvendigt at slå disse indstillinger til for at brugerne kan anvende de skræddersyede filtreringsmuligheder."
|
2571 |
+
|
2572 |
+
#: my-calendar-settings.php:665
|
2573 |
+
msgid "Enable Location"
|
2574 |
+
msgstr "Brug sted"
|
2575 |
+
|
2576 |
+
#: my-calendar-settings.php:668
|
2577 |
+
msgid "Use this location list as input control"
|
2578 |
+
msgstr "Brug denne stedliste som input-kontrol"
|
2579 |
+
|
2580 |
+
#: my-calendar-settings.php:668
|
2581 |
+
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2582 |
+
msgstr "Det normale tekstfelt for denne stedtype bliver udskiftet med en dropdownmenu, der indeholder disse valg."
|
2583 |
+
|
2584 |
+
#: my-calendar-settings.php:671
|
2585 |
+
msgid "Select Location Label"
|
2586 |
+
msgstr "Vælg etiket for sted"
|
2587 |
+
|
2588 |
+
#: my-calendar-settings.php:674
|
2589 |
+
msgid "Location Options"
|
2590 |
+
msgstr "Sted valgmuligheder"
|
2591 |
+
|
2592 |
+
#: my-calendar-settings.php:684
|
2593 |
+
msgid "Location Type"
|
2594 |
+
msgstr "Stedtype"
|
2595 |
+
|
2596 |
+
#: my-calendar-settings.php:697
|
2597 |
+
msgid "Save User Settings"
|
2598 |
+
msgstr "Gem indstillinger for brugere"
|
2599 |
+
|
2600 |
+
#: my-calendar-styles.php:79
|
2601 |
+
msgid "The stylesheet has been updated."
|
2602 |
+
msgstr "Stylesheetet er blevet opdateret."
|
2603 |
+
|
2604 |
+
#: my-calendar-styles.php:79
|
2605 |
+
msgid "Write Error! Please verify write permissions on the style file."
|
2606 |
+
msgstr "Skrivefejl! Verificer venligst, at der er skriverettigheder til style-filen."
|
2607 |
+
|
2608 |
+
#: my-calendar-styles.php:93
|
2609 |
+
msgid "Stylesheet reset to default."
|
2610 |
+
msgstr "Stylesheet er nulstillet til default."
|
2611 |
+
|
2612 |
+
#: my-calendar-styles.php:96
|
2613 |
+
msgid "Style Settings Saved"
|
2614 |
+
msgstr "Style-indstillinger gemt"
|
2615 |
+
|
2616 |
+
#: my-calendar-styles.php:105
|
2617 |
+
msgid "New theme selected."
|
2618 |
+
msgstr "Nyt tema valgt."
|
2619 |
+
|
2620 |
+
#: my-calendar-styles.php:121
|
2621 |
+
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2622 |
+
msgstr "Den ønskede fil ser ikke ud til at eksistere. Tjek venligst filnavn og -placering!"
|
2623 |
+
|
2624 |
+
#: my-calendar-styles.php:129
|
2625 |
+
msgid "My Calendar Styles"
|
2626 |
+
msgstr "My Calendar Styles"
|
2627 |
+
|
2628 |
+
#: my-calendar-styles.php:133
|
2629 |
+
msgid "Calendar Style Settings"
|
2630 |
+
msgstr "Kalenders style-indstillinger"
|
2631 |
+
|
2632 |
+
#: my-calendar-styles.php:141
|
2633 |
+
msgid "Select My Calendar Theme"
|
2634 |
+
msgstr "Vælg My Calendar-tema"
|
2635 |
+
|
2636 |
+
#: my-calendar-styles.php:149
|
2637 |
+
msgid "Your Custom Stylesheets"
|
2638 |
+
msgstr "Dine tilpassede stylesheets"
|
2639 |
+
|
2640 |
+
#: my-calendar-styles.php:158
|
2641 |
+
msgid "Installed Stylesheets"
|
2642 |
+
msgstr "Installerede stylesheets"
|
2643 |
+
|
2644 |
+
#: my-calendar-styles.php:166
|
2645 |
+
msgid "Choose Style"
|
2646 |
+
msgstr "Vælg style"
|
2647 |
+
|
2648 |
+
#: my-calendar-styles.php:179
|
2649 |
+
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."
|
2650 |
+
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."
|
2651 |
+
|
2652 |
+
#: my-calendar-styles.php:187
|
2653 |
+
msgid "CSS Style Options"
|
2654 |
+
msgstr "CSS (stylesheets)"
|
2655 |
+
|
2656 |
+
#: my-calendar-styles.php:189
|
2657 |
+
msgid "Apply CSS only on these pages (comma separated page IDs)"
|
2658 |
+
msgstr "Vis kun CSS på disse sider (kommaseparerede side-id'er)"
|
2659 |
+
|
2660 |
+
#: my-calendar-styles.php:192
|
2661 |
+
msgid "Restore My Calendar stylesheet"
|
2662 |
+
msgstr "Genskab My Calendar stylesheet"
|
2663 |
+
|
2664 |
+
#: my-calendar-styles.php:192
|
2665 |
+
msgid "Disable My Calendar Stylesheet"
|
2666 |
+
msgstr "Deaktiver My Calendar stylesheet"
|
2667 |
+
|
2668 |
+
#: my-calendar-styles.php:195
|
2669 |
+
msgid "Edit the stylesheet for My Calendar"
|
2670 |
+
msgstr "Rediger My Calendars stylesheet"
|
2671 |
+
|
2672 |
+
#: my-calendar-styles.php:208
|
2673 |
+
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2674 |
+
msgstr "Sammenligner dit stylesheet med senest installerede version af My Calendar"
|
2675 |
+
|
2676 |
+
#: my-calendar-styles.php:212
|
2677 |
+
msgid "There have been updates to the stylesheet."
|
2678 |
+
msgstr "Der har været opdateringer af stylesheetet."
|
2679 |
+
|
2680 |
+
#: my-calendar-styles.php:212
|
2681 |
+
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2682 |
+
msgstr "Sammenlign dit stylesheet med senest installerede version af My Calendar."
|
2683 |
+
|
2684 |
+
#: my-calendar-styles.php:216
|
2685 |
+
msgid "Your stylesheet matches that included with My Calendar."
|
2686 |
+
msgstr "Dit stylesheet matcher det, der er inkluderet i My Calendar."
|
2687 |
+
|
2688 |
+
#: my-calendar-styles.php:224
|
2689 |
+
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
2690 |
+
msgstr "Nulstilling af dit stylesheet sætter det til den version af stylesheetet, der p.t. distribueres sammen med pluginnet."
|
2691 |
+
|
2692 |
+
#: my-calendar-templates.php:20
|
2693 |
+
msgid "to"
|
2694 |
+
msgstr "til"
|
2695 |
+
|
2696 |
+
#: my-calendar-templates.php:42
|
2697 |
+
msgid "Map<span> to %s</span>"
|
2698 |
+
msgstr "Kort<span> til %s</span>"
|
2699 |
+
|
2700 |
+
#: my-calendar-templates.php:63
|
2701 |
+
#: my-calendar-templates.php:111
|
2702 |
+
msgid "Visit web site<span>: %s</span>"
|
2703 |
+
msgstr "Besøg hjemmeside<span>: %s</span>"
|
2704 |
+
|
2705 |
+
#: my-calendar-templates.php:120
|
2706 |
+
msgid "Date of Month (the %s of each month)"
|
2707 |
+
msgstr "Dato i måneden (den %s i hver måned)"
|
2708 |
+
|
2709 |
+
#: my-calendar-templates.php:121
|
2710 |
+
msgid "Day of Month (the %s %s of each month)"
|
2711 |
+
msgstr "Dag i måneden (den %s %s i hver måned)"
|
2712 |
+
|
2713 |
+
#: my-calendar-templating.php:18
|
2714 |
+
msgid "Grid Output Template saved"
|
2715 |
+
msgstr "Skabelon til gitteroutput gemt"
|
2716 |
+
|
2717 |
+
#: my-calendar-templating.php:30
|
2718 |
+
msgid "List Output Template saved"
|
2719 |
+
msgstr "Skabelon til listeoutput gemt"
|
2720 |
+
|
2721 |
+
#: my-calendar-templating.php:41
|
2722 |
+
msgid "Mini Output Template saved"
|
2723 |
+
msgstr "Skabelon til minioutput gemt"
|
2724 |
+
|
2725 |
+
#: my-calendar-templating.php:52
|
2726 |
+
msgid "Event Details Template saved"
|
2727 |
+
msgstr "Skabelon til visning af begivenhedsdetaljer gemt"
|
2728 |
+
|
2729 |
+
#: my-calendar-templating.php:67
|
2730 |
+
msgid "My Calendar Information Templates"
|
2731 |
+
msgstr "My Calendar informationsskabeloner"
|
2732 |
+
|
2733 |
+
#: my-calendar-templating.php:73
|
2734 |
+
msgid "Title of the event."
|
2735 |
+
msgstr "Begivenhedens titel."
|
2736 |
+
|
2737 |
+
#: my-calendar-templating.php:76
|
2738 |
+
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
2739 |
+
msgstr "Begivenhedens titel som et link, hvis en URL er tilgængelig, eller titlen alene, hvis en URL ikke er tilgængelig."
|
2740 |
+
|
2741 |
+
#: my-calendar-templating.php:79
|
2742 |
+
msgid "Start time for the event."
|
2743 |
+
msgstr "Begivenhedens starttidspunkt."
|
2744 |
+
|
2745 |
+
#: my-calendar-templating.php:82
|
2746 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
2747 |
+
msgstr "Hvis valgt, justeres tidspunkter for begivenheder til den aktuelle brugers tidszone."
|
2748 |
+
|
2749 |
+
#: my-calendar-templating.php:85
|
2750 |
+
msgid "Date on which the event begins."
|
2751 |
+
msgstr "Begivenhedens startdato."
|
2752 |
+
|
2753 |
+
#: my-calendar-templating.php:88
|
2754 |
+
msgid "Date on which the event ends."
|
2755 |
+
msgstr "Begivenhedens slutdato."
|
2756 |
+
|
2757 |
+
#: my-calendar-templating.php:91
|
2758 |
+
msgid "Time at which the event ends."
|
2759 |
+
msgstr "Begivenhedens sluttidspunkt."
|
2760 |
+
|
2761 |
+
#: my-calendar-templating.php:94
|
2762 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
2763 |
+
msgstr "Startdato til slutdato; viser ikke slutdato, hvis samme som start"
|
2764 |
+
|
2765 |
+
#: my-calendar-templating.php:97
|
2766 |
+
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
2767 |
+
msgstr "Flerdags begivenheder: en ikke-ordnet liste af datoer/tidspunkter. Ellers, startdato/-tidspunkt."
|
2768 |
+
|
2769 |
+
#: my-calendar-templating.php:100
|
2770 |
+
msgid "Author who posted the event."
|
2771 |
+
msgstr "WordPress-forfatter, der publicerede begivenheden."
|
2772 |
+
|
2773 |
+
#: my-calendar-templating.php:103
|
2774 |
+
msgid "Name of the assigned host for the event."
|
2775 |
+
msgstr "Navnet på den person, der står som vært for begivenheden."
|
2776 |
+
|
2777 |
+
#: my-calendar-templating.php:106
|
2778 |
+
msgid "Email for the person assigned as host."
|
2779 |
+
msgstr "E-mail-adresse for den person, der står som vært for begivenheden."
|
2780 |
+
|
2781 |
+
#: my-calendar-templating.php:109
|
2782 |
+
msgid "Short event description."
|
2783 |
+
msgstr "Kort beskrivelse af begivenhed."
|
2784 |
+
|
2785 |
+
#: my-calendar-templating.php:112
|
2786 |
+
msgid "Description of the event."
|
2787 |
+
msgstr "Beskrivelse af begivenheden."
|
2788 |
+
|
2789 |
+
#: my-calendar-templating.php:118
|
2790 |
+
msgid "URL provided for the event."
|
2791 |
+
msgstr "URL'en, der er indtastet i begivenhedens oplysninger."
|
2792 |
+
|
2793 |
+
#: my-calendar-templating.php:121
|
2794 |
+
msgid "Link to an auto-generated page containing information about the event."
|
2795 |
+
msgstr "Link til en autogenereret side, der indeholder al information om begivenheden."
|
2796 |
+
|
2797 |
+
#: my-calendar-templating.php:124
|
2798 |
+
msgid "Whether event is currently open for registration."
|
2799 |
+
msgstr "Hvorvidt begivenheden p.t. er åben for tilmelding."
|
2800 |
+
|
2801 |
+
#: my-calendar-templating.php:127
|
2802 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
2803 |
+
msgstr "Begivenhedens aktuelle status: Enten \"Publiceret\" eller \"Reserveret.\""
|
2804 |
+
|
2805 |
+
#: my-calendar-templating.php:133
|
2806 |
+
msgid "Name of the location of the event."
|
2807 |
+
msgstr "Navnet på begivenhedens sted."
|
2808 |
+
|
2809 |
+
#: my-calendar-templating.php:136
|
2810 |
+
msgid "First line of the site address."
|
2811 |
+
msgstr "Første linie af stedets gadenavn."
|
2812 |
+
|
2813 |
+
#: my-calendar-templating.php:139
|
2814 |
+
msgid "Second line of the site address."
|
2815 |
+
msgstr "Anden linie af stedets gadenavn."
|
2816 |
+
|
2817 |
+
#: my-calendar-templating.php:142
|
2818 |
+
msgid "City."
|
2819 |
+
msgstr "By."
|
2820 |
+
|
2821 |
+
#: my-calendar-templating.php:145
|
2822 |
+
msgid "State."
|
2823 |
+
msgstr "Kommune."
|
2824 |
+
|
2825 |
+
#: my-calendar-templating.php:148
|
2826 |
+
msgid "Postal code/zip code."
|
2827 |
+
msgstr "Postnummer."
|
2828 |
+
|
2829 |
+
#: my-calendar-templating.php:151
|
2830 |
+
msgid "Custom region."
|
2831 |
+
msgstr "Brugerdefineret region."
|
2832 |
+
|
2833 |
+
#: my-calendar-templating.php:154
|
2834 |
+
msgid "Country for the event location."
|
2835 |
+
msgstr "Landet i begivenhedens stedoplysninger."
|
2836 |
+
|
2837 |
+
#: my-calendar-templating.php:157
|
2838 |
+
msgid "Output the URL for the location."
|
2839 |
+
msgstr "Vis stedets URL."
|
2840 |
+
|
2841 |
+
#: my-calendar-templating.php:160
|
2842 |
+
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
2843 |
+
msgstr "Begivenhedens adresse i <a href=\"http://microformats.org/wiki/hcard\">hcard</a>-format."
|
2844 |
+
|
2845 |
+
#: my-calendar-templating.php:163
|
2846 |
+
msgid "Link to Google Map to the event, if address information is available."
|
2847 |
+
msgstr "Link til Google Maps, når adresseoplysninger er tilgængelige."
|
2848 |
+
|
2849 |
+
#: my-calendar-templating.php:169
|
2850 |
+
msgid "Name of the category of the event."
|
2851 |
+
msgstr "Navnet på begivenhedens kategori."
|
2852 |
+
|
2853 |
+
#: my-calendar-templating.php:172
|
2854 |
+
msgid "URL for the event's category icon."
|
2855 |
+
msgstr "URL for begivenhedens kategoriikon."
|
2856 |
+
|
2857 |
+
#: my-calendar-templating.php:175
|
2858 |
+
msgid "Hex code for the event's category color."
|
2859 |
+
msgstr "Hexkode for den aktuelle begivenheds kategorifarve."
|
2860 |
+
|
2861 |
+
#: my-calendar-templating.php:178
|
2862 |
+
msgid "ID of the category of the event."
|
2863 |
+
msgstr "Begivenhedskategoriens id."
|
2864 |
+
|
2865 |
+
#: my-calendar-templating.php:181
|
2866 |
+
msgid "Advanced users may wish to customize the HTML elements and order of items presented for each event. This page provides the ability to create a customized view of your events in each different context. All available template tags are documented on the Help page. The default templates provided are based on the default views assuming all output is enabled. <strong>Custom templates will override any other output rules you've configured in settings.</strong>"
|
2867 |
+
msgstr "Superbrugere ønsker måske at ændre på HTML-elementerne og rækkefølgen af informationerne, der præsenteres for hver begivenhed. Denne side giver muligheden for at skabe en brugerdefineret visning af dine begivenheder i hver enkel kontekst. Alle tilgængelige skabelon-tags er dokumenteret på Hjælp-siden. De standardskabeloner, der er tilgængelige, er baseret på standardvisninger, der antager at alt output er slået til. <strong>Brugerdefinerede skabeloner tilsidesætter alle andre output-regler, du har konfigureret i indstillinger.</strong>"
|
2868 |
+
|
2869 |
+
#: my-calendar-templating.php:181
|
2870 |
+
msgid "Templates Help"
|
2871 |
+
msgstr "Hjælp til skabeloner"
|
2872 |
+
|
2873 |
+
#: my-calendar-templating.php:184
|
2874 |
+
msgid "My Calendar: Grid Event Template"
|
2875 |
+
msgstr "My Calendar: Gitterskabelon for begivenheder"
|
2876 |
+
|
2877 |
+
#: my-calendar-templating.php:189
|
2878 |
+
msgid "Use this grid event template"
|
2879 |
+
msgstr "Brug denne gitter-begivenhedsskabelon"
|
2880 |
+
|
2881 |
+
#: my-calendar-templating.php:192
|
2882 |
+
msgid "Your custom template for events in the calendar grid output."
|
2883 |
+
msgstr "Din brugerdefinerede skabelon for begivenheder i kalenderens gitter-output."
|
2884 |
+
|
2885 |
+
#: my-calendar-templating.php:195
|
2886 |
+
msgid "Save Grid Template"
|
2887 |
+
msgstr "Gem gitterskabelon"
|
2888 |
+
|
2889 |
+
#: my-calendar-templating.php:204
|
2890 |
+
msgid "My Calendar: List Event Template"
|
2891 |
+
msgstr "My Calendar: Listeskabelon for begivenheder"
|
2892 |
+
|
2893 |
+
#: my-calendar-templating.php:209
|
2894 |
+
msgid "Use this list event template"
|
2895 |
+
msgstr "Brug denne skabelon til listevisning af begivenheder"
|
2896 |
+
|
2897 |
+
#: my-calendar-templating.php:212
|
2898 |
+
msgid "Your custom template for events in calendar list output."
|
2899 |
+
msgstr "Din brugerdefinerede skabelon for begivenheder i kalenderens liste-output."
|
2900 |
+
|
2901 |
+
#: my-calendar-templating.php:215
|
2902 |
+
msgid "Save List Template"
|
2903 |
+
msgstr "Gem listeskabelon"
|
2904 |
+
|
2905 |
+
#: my-calendar-templating.php:224
|
2906 |
+
msgid "My Calendar: Mini Calendar Template"
|
2907 |
+
msgstr "My Calendar: Minikalenderskabelon"
|
2908 |
+
|
2909 |
+
#: my-calendar-templating.php:229
|
2910 |
+
msgid "Use this mini event template"
|
2911 |
+
msgstr "Brug denne mini-begivenhedsskabelon"
|
2912 |
+
|
2913 |
+
#: my-calendar-templating.php:232
|
2914 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
2915 |
+
msgstr "Din brugerdefinerede skabelon for begivenheder i sidebar/minikalender-output."
|
2916 |
+
|
2917 |
+
#: my-calendar-templating.php:235
|
2918 |
+
msgid "Save Mini Template"
|
2919 |
+
msgstr "Gem miniskabelon"
|
2920 |
+
|
2921 |
+
#: my-calendar-templating.php:244
|
2922 |
+
msgid "My Calendar: Event Details Page Template"
|
2923 |
+
msgstr "My Calendar: Skabelon til visning af begivenhedsdetaljer"
|
2924 |
+
|
2925 |
+
#: my-calendar-templating.php:249
|
2926 |
+
msgid "Use this details template"
|
2927 |
+
msgstr "Brug denne skabelon til detaljevisning"
|
2928 |
+
|
2929 |
+
#: my-calendar-templating.php:252
|
2930 |
+
msgid "Your custom template for events on the event details page."
|
2931 |
+
msgstr "Din brugerdefinerede skabelon for begivenheder på siden med begivenhedens detaljer."
|
2932 |
+
|
2933 |
+
#: my-calendar-templating.php:255
|
2934 |
+
msgid "Save Details Template"
|
2935 |
+
msgstr "Gem skabelon for detaljevisning"
|
2936 |
+
|
2937 |
+
#: my-calendar-upgrade-db.php:17
|
2938 |
+
#: my-calendar-upgrade-db.php:25
|
2939 |
+
msgid "The My Calendar database needs to be updated."
|
2940 |
+
msgstr "My Calendars database skal opdateres"
|
2941 |
+
|
2942 |
+
#: my-calendar-upgrade-db.php:18
|
2943 |
+
#: my-calendar-upgrade-db.php:38
|
2944 |
+
msgid "Update now"
|
2945 |
+
msgstr "Opdater nu"
|
2946 |
+
|
2947 |
+
#: my-calendar-upgrade-db.php:25
|
2948 |
+
msgid "Update now."
|
2949 |
+
msgstr "Opdater nu."
|
2950 |
+
|
2951 |
+
#: my-calendar-upgrade-db.php:37
|
2952 |
+
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!"
|
2953 |
+
msgstr "Du har ikke tilføjet nogen begivenheder, så My Calendar ved ikke om din database har brug for at blive opdateret. Opgrader din database, hvis du ikke kan tilføje begivenheder!"
|
2954 |
+
|
2955 |
+
#: my-calendar-upgrade-db.php:47
|
2956 |
+
msgid "My Calendar Database is updated."
|
2957 |
+
msgstr "My Calendars database er opdateret."
|
2958 |
+
|
2959 |
+
#: my-calendar-user.php:36
|
2960 |
+
msgid "My Calendar User Settings"
|
2961 |
+
msgstr "My Calendar brugerindstillinger"
|
2962 |
+
|
2963 |
+
#: my-calendar-widgets.php:5
|
2964 |
+
msgid "My Calendar: Today's Events"
|
2965 |
+
msgstr "My Calendar: Dagens begivenheder"
|
2966 |
+
|
2967 |
+
#: my-calendar-widgets.php:42
|
2968 |
+
#: my-calendar-widgets.php:128
|
2969 |
+
msgid "Template"
|
2970 |
+
msgstr "Skabelon"
|
2971 |
+
|
2972 |
+
#: my-calendar-widgets.php:45
|
2973 |
+
msgid "Add calendar URL to use this option."
|
2974 |
+
msgstr "Du skal tilføje en kalender-URL for at bruge denne indstilling."
|
2975 |
+
|
2976 |
+
#: my-calendar-widgets.php:47
|
2977 |
+
#: my-calendar-widgets.php:136
|
2978 |
+
msgid "Link widget title to calendar:"
|
2979 |
+
msgstr "Link widget-titel til kalender:"
|
2980 |
+
|
2981 |
+
#: my-calendar-widgets.php:48
|
2982 |
+
#: my-calendar-widgets.php:137
|
2983 |
+
msgid "Not Linked"
|
2984 |
+
msgstr "Ikke linket"
|
2985 |
+
|
2986 |
+
#: my-calendar-widgets.php:49
|
2987 |
+
#: my-calendar-widgets.php:138
|
2988 |
+
msgid "Linked"
|
2989 |
+
msgstr "Linket"
|
2990 |
+
|
2991 |
+
#: my-calendar-widgets.php:53
|
2992 |
+
msgid "Show this text if there are no events today:"
|
2993 |
+
msgstr "Vis denne tekst, hvis der ikke er begivenheder i dag:"
|
2994 |
+
|
2995 |
+
#: my-calendar-widgets.php:57
|
2996 |
+
#: my-calendar-widgets.php:169
|
2997 |
+
#: my-calendar-widgets.php:575
|
2998 |
+
msgid "Category or categories to display:"
|
2999 |
+
msgstr "Kategori eller kategorier, der skal vises:"
|
3000 |
+
|
3001 |
+
#: my-calendar-widgets.php:78
|
3002 |
+
msgid "My Calendar: Upcoming Events"
|
3003 |
+
msgstr "My Calendar: Kommende begivenheder"
|
3004 |
+
|
3005 |
+
#: my-calendar-widgets.php:132
|
3006 |
+
msgid "Widget Options"
|
3007 |
+
msgstr "Widgetindstillinger"
|
3008 |
+
|
3009 |
+
#: my-calendar-widgets.php:143
|
3010 |
+
msgid "Display upcoming events by:"
|
3011 |
+
msgstr "Vis kommende begivenheder med:"
|
3012 |
+
|
3013 |
+
#: my-calendar-widgets.php:144
|
3014 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
3015 |
+
msgstr "Begivenheder (f.eks. 2 overståede, 3 kommende)"
|
3016 |
+
|
3017 |
+
#: my-calendar-widgets.php:145
|
3018 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3019 |
+
msgstr "Datoer (f.eks. 4 dage bagud, 5 fremad)"
|
3020 |
+
|
3021 |
+
#: my-calendar-widgets.php:149
|
3022 |
+
msgid "Skip the first <em>n</em> events"
|
3023 |
+
msgstr "Skip de første <em>n</em> begivenheder"
|
3024 |
+
|
3025 |
+
#: my-calendar-widgets.php:152
|
3026 |
+
msgid "Events sort order:"
|
3027 |
+
msgstr "Sorteringsorden for begivenheder:"
|
3028 |
+
|
3029 |
+
#: my-calendar-widgets.php:153
|
3030 |
+
msgid "Ascending (near to far)"
|
3031 |
+
msgstr "Stigende"
|
3032 |
+
|
3033 |
+
#: my-calendar-widgets.php:154
|
3034 |
+
msgid "Descending (far to near)"
|
3035 |
+
msgstr "Faldende"
|
3036 |
+
|
3037 |
+
#: my-calendar-widgets.php:162
|
3038 |
+
msgid "Include today's events"
|
3039 |
+
msgstr "Inkluder begivenheder fra i dag"
|
3040 |
+
|
3041 |
+
#: my-calendar-widgets.php:165
|
3042 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3043 |
+
msgstr "Vis denne tekst, hvis der ikke er nogen begivenheder, der opfylder dine kriterier:"
|
3044 |
+
|
3045 |
+
#: my-calendar-widgets.php:530
|
3046 |
+
msgid "My Calendar: Mini Calendar"
|
3047 |
+
msgstr "My Calendar: Minikalender"
|
3048 |
+
|
3049 |
+
#: my-calendar-widgets.php:551
|
3050 |
+
msgid "Calendar"
|
3051 |
+
msgstr "Calendar"
|
3052 |
+
|
3053 |
+
#: my-calendar-widgets.php:579
|
3054 |
+
msgid "Show Next/Previous Navigation:"
|
3055 |
+
msgstr "Vis Næste/Tidligere navigation:"
|
3056 |
+
|
3057 |
+
#: my-calendar-widgets.php:585
|
3058 |
+
msgid "Show Category Key:"
|
3059 |
+
msgstr "Vis kategorinøgle:"
|
3060 |
+
|
3061 |
+
#: my-calendar-widgets.php:591
|
3062 |
+
msgid "Mini-Calendar Timespan:"
|
3063 |
+
msgstr "Minikalender tidshorisont:"
|
3064 |
+
|
3065 |
+
#: my-calendar.php:126
|
3066 |
+
msgid "Buy the <strong>NEW</strong><br /> My Calendar User's Guide"
|
3067 |
+
msgstr "Køb den <strong>NYE</strong><br /> My Calendar User's Guide"
|
3068 |
+
|
3069 |
+
#: my-calendar.php:130
|
3070 |
+
msgid "Get Support"
|
3071 |
+
msgstr "Få support"
|
3072 |
+
|
3073 |
+
#: my-calendar.php:131
|
3074 |
+
msgid "Report a bug"
|
3075 |
+
msgstr "Rapporter en fejl"
|
3076 |
+
|
3077 |
+
#: my-calendar.php:132
|
3078 |
+
#: my-calendar.php:175
|
3079 |
+
msgid "My Calendar Help"
|
3080 |
+
msgstr "My Calendar hjælp"
|
3081 |
+
|
3082 |
+
#: my-calendar.php:133
|
3083 |
+
msgid "Make a Donation"
|
3084 |
+
msgstr "Giv en donation"
|
3085 |
+
|
3086 |
+
#: my-calendar.php:143
|
3087 |
+
msgid "Check out my other plug-ins"
|
3088 |
+
msgstr "Tjek mine andre plugins ud"
|
3089 |
+
|
3090 |
+
#: my-calendar.php:144
|
3091 |
+
msgid "Rate this plug-in"
|
3092 |
+
msgstr "Bedøm dette plugin"
|
3093 |
+
|
3094 |
+
#. #-#-#-#-# plugin.pot (My Calendar 1.10.11) #-#-#-#-#
|
3095 |
+
#. Plugin Name of the plugin/theme
|
3096 |
+
#: my-calendar.php:158
|
3097 |
+
#: my-calendar.php:161
|
3098 |
+
msgid "My Calendar"
|
3099 |
+
msgstr "My Calendar"
|
3100 |
+
|
3101 |
+
#: my-calendar.php:167
|
3102 |
+
msgid "Add/Edit Events"
|
3103 |
+
msgstr "Tilføj/Rediger begivenheder"
|
3104 |
+
|
3105 |
+
#: my-calendar.php:172
|
3106 |
+
msgid "Style Editor"
|
3107 |
+
msgstr "Stylesheets"
|
3108 |
+
|
3109 |
+
#: my-calendar.php:173
|
3110 |
+
msgid "Behavior Editor"
|
3111 |
+
msgstr "Rediger kalenderopførsel"
|
3112 |
+
|
3113 |
+
#: my-calendar.php:174
|
3114 |
+
msgid "Template Editor"
|
3115 |
+
msgstr "Skabeloneditor"
|
3116 |
+
|
3117 |
+
#: my-calendar.php:178
|
3118 |
+
msgid "My Calendar Pro Settings"
|
3119 |
+
msgstr "My Calendar Pro indstillinger"
|
3120 |
+
|
3121 |
+
#. Plugin URI of the plugin/theme
|
3122 |
+
msgid "http://www.joedolson.com/articles/my-calendar/"
|
3123 |
+
msgstr "http://www.joedolson.com/articles/my-calendar/"
|
3124 |
+
|
3125 |
+
#. Description of the plugin/theme
|
3126 |
+
msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
|
3127 |
+
msgstr "Brugervenlig Wordpress begivenhedskalender plugin. Vis begivenheder fra flere kalendere på sider, i indlæg eller i widgets."
|
3128 |
+
|
3129 |
+
#. Author of the plugin/theme
|
3130 |
+
msgid "Joseph C Dolson"
|
3131 |
+
msgstr "Joseph C Dolson"
|
3132 |
+
|
3133 |
+
#. Author URI of the plugin/theme
|
3134 |
+
msgid "http://www.joedolson.com"
|
3135 |
+
msgstr "http://www.joedolson.com"
|
3136 |
+
|
3137 |
+
#~ msgid "Save Approval Settings"
|
3138 |
+
#~ msgstr "Gem indstillinger for godkendelse"
|
3139 |
+
|
3140 |
+
#~ msgid "The week's events"
|
3141 |
+
#~ msgstr "Ugens begivenheder"
|
3142 |
+
|
3143 |
+
#~ msgid "This week's events"
|
3144 |
+
#~ msgstr "Denne uges begivenheder"
|
3145 |
+
|
3146 |
+
#~ msgid "Reset the My Calendar stylesheet to the default"
|
3147 |
+
#~ msgstr "Nulstil My Calendar stylesheets til default"
|
3148 |
+
|
3149 |
+
#~ msgid "events into the future;"
|
3150 |
+
#~ msgstr "Begivenheder i den kommende tid;"
|
3151 |
+
|
3152 |
+
#~ msgid "events from the past"
|
3153 |
+
#~ msgstr "Hidtidige begivenheder;"
|
3154 |
+
|
3155 |
+
#~ msgid "Show Heading for Calendar"
|
3156 |
+
#~ msgstr "Vis overskrift i kalender"
|
3157 |
+
|
3158 |
+
#~ msgid "Do you want to display the author name on events?"
|
3159 |
+
#~ msgstr "Ønsker du at vise forfatterens navn i begivenheder?"
|
3160 |
+
|
3161 |
+
#~ msgid ""
|
3162 |
+
#~ "Links associated with events will automatically expire after the event "
|
3163 |
+
#~ "has passed."
|
3164 |
+
#~ msgstr ""
|
3165 |
+
#~ "Links associeret med begivenheder vil automatisk udløbe efter en "
|
3166 |
+
#~ "begivenhed er overstået."
|
3167 |
+
|
3168 |
+
#~ msgid ""
|
3169 |
+
#~ "If this option is unchecked, recurring events which fall on dates which "
|
3170 |
+
#~ "don't exist will simply not be shown on the calendar."
|
3171 |
+
#~ msgstr ""
|
3172 |
+
#~ "Hvis denne indstilling ikke er markeret, vil tilbagevendende "
|
3173 |
+
#~ "begivenheder, der falder på ikke-eksisterende datoer, ikke blive vist på "
|
3174 |
+
#~ "kalenderen."
|
3175 |
+
|
3176 |
+
#~ msgid ""
|
3177 |
+
#~ "The shortcode supports six attributes, <code>category</code>, "
|
3178 |
+
#~ "<code>format</code>, <code>showkey</code>, <code>shownav</code>, "
|
3179 |
+
#~ "<code>toggle</code>, and <code>time</code>. There two alternate options "
|
3180 |
+
#~ "for <code>format</code>: <code>list</code>, which will show the calendar "
|
3181 |
+
#~ "in a list format, skipping dates without any events, and <code>mini</"
|
3182 |
+
#~ "code>, which will display the calendar in a form more suitable to being "
|
3183 |
+
#~ "displayed in smaller spaces, such as the sidebar. The <code>category</"
|
3184 |
+
#~ "code> attribute requires either the name of or ID number one of your "
|
3185 |
+
#~ "event categories (the name is case-sensitive). This will show a calendar "
|
3186 |
+
#~ "only including events in that category. Multiple categories can be "
|
3187 |
+
#~ "specified by separating the category names or IDs using either the pipe "
|
3188 |
+
#~ "character (<code>|</code>) or a comma. Setting <code>showkey</code> to "
|
3189 |
+
#~ "<code>no</code> will prevent the category key from being displayed "
|
3190 |
+
#~ "— this can be useful with single-category output. Setting "
|
3191 |
+
#~ "<code>shownav</code> to <code>no</code> will disable the Previous/Next "
|
3192 |
+
#~ "links. Setting <code>toggle</code> to yes will show a link to switch "
|
3193 |
+
#~ "between the list and grid views. The <code>time</code> shortcode switches "
|
3194 |
+
#~ "between a weekly view and the default monthly view."
|
3195 |
+
#~ msgstr ""
|
3196 |
+
#~ "Denne shortcode understøtter seks attributter, <code>category</code>, "
|
3197 |
+
#~ "<code>format</code>, <code>showkey</code>, <code>shownav</code>, "
|
3198 |
+
#~ "<code>toggle</code> og <code>time</code>. Der er to valgmuligheder for "
|
3199 |
+
#~ "<code>format</code>: <code>list</code>, som viser kalenderen i et "
|
3200 |
+
#~ "listeformat, hvor dage uden begivenheder springes over, og <code>mini</"
|
3201 |
+
#~ "code>, som viser kalenderen i en form, der passer bedre ind i små "
|
3202 |
+
#~ "områder, som f.eks. en sidebar. Attributten <code>category</code> kræver "
|
3203 |
+
#~ "en af dine begivenhedskategoriers navn eller ID-nummer (i navnet skelnes "
|
3204 |
+
#~ "der mellem store og små bogstaver). Dette viser en kalender, der kun "
|
3205 |
+
#~ "inkluderer begivenheder i den angivne kategori. Flere kategorier kan "
|
3206 |
+
#~ "specificeres ved at adskille kategorinavnene eller ID-numrene med \"pipe"
|
3207 |
+
#~ "\"-tegnet: <code>|</code> eller et komma. Sættes <code>showkey</code> til "
|
3208 |
+
#~ "<code>no</code>, forhindrer man kategorinøglen i at blive vist — "
|
3209 |
+
#~ "dette kan være brugbart ved enkeltkategori-output. Sættes <code>shownav</"
|
3210 |
+
#~ "code> til <code>no</code> bliver Tidligere/Kommende-linksene ikke vist. "
|
3211 |
+
#~ "Sættes <code>toggle</code> til \"yes\", vises der et link til skift "
|
3212 |
+
#~ "mellem liste- og gridvisning. Shortcoden <code>time</code> skifter mellem "
|
3213 |
+
#~ "ugevisning og månedsvisningen, der er default."
|
3214 |
+
|
3215 |
+
#~ msgid "Displays the city for the event."
|
3216 |
+
#~ msgstr "Viser bynavnet i begivenhedens stedoplysninger."
|
3217 |
+
|
3218 |
+
#~ msgid "Upgrade now."
|
3219 |
+
#~ msgstr "Opdater nu."
|
3220 |
+
|
3221 |
+
#~ msgid "Buy the Beginner's Guide"
|
3222 |
+
#~ msgstr "Køb Beginner's Guide"
|
3223 |
+
|
3224 |
+
#~ msgid "Map to"
|
3225 |
+
#~ msgstr "Kort til"
|
3226 |
+
|
3227 |
+
#~ msgid "January"
|
3228 |
+
#~ msgstr "Januar"
|
3229 |
+
|
3230 |
+
#~ msgid "February"
|
3231 |
+
#~ msgstr "Februar"
|
3232 |
+
|
3233 |
+
#~ msgid "March"
|
3234 |
+
#~ msgstr "Marts"
|
3235 |
+
|
3236 |
+
#~ msgid "April"
|
3237 |
+
#~ msgstr "April"
|
3238 |
+
|
3239 |
+
#~ msgid "May"
|
3240 |
+
#~ msgstr "Maj"
|
3241 |
+
|
3242 |
+
#~ msgid "June"
|
3243 |
+
#~ msgstr "Juni"
|
3244 |
+
|
3245 |
+
#~ msgid "July"
|
3246 |
+
#~ msgstr "Juli"
|
3247 |
+
|
3248 |
+
#~ msgid "August"
|
3249 |
+
#~ msgstr "August"
|
3250 |
+
|
3251 |
+
#~ msgid "September"
|
3252 |
+
#~ msgstr "September"
|
3253 |
+
|
3254 |
+
#~ msgid "October"
|
3255 |
+
#~ msgstr "Oktober"
|
3256 |
+
|
3257 |
+
#~ msgid "November"
|
3258 |
+
#~ msgstr "November"
|
3259 |
+
|
3260 |
+
#~ msgid "December"
|
3261 |
+
#~ msgstr "December"
|
3262 |
+
|
3263 |
+
#~ msgid "Enter \"0\" if the event should recur indefinitely."
|
3264 |
+
#~ msgstr ""
|
3265 |
+
#~ "Indtast \"0\", hvis begivenheden er tilbagevendende og uden slutdato."
|
3266 |
+
|
3267 |
+
#~ msgid "Calendar Settings"
|
3268 |
+
#~ msgstr "Kalenderindstillinger"
|
3269 |
+
|
3270 |
+
#~ msgid "Calendar Options: Output"
|
3271 |
+
#~ msgstr "Kalenderindstillinger: Output"
|
3272 |
+
|
3273 |
+
#~ msgid "Calendar Options: Style"
|
3274 |
+
#~ msgstr "Kalenderindstillinger: Output"
|
3275 |
+
|
3276 |
+
#~ msgid "Calendar Options: Input"
|
3277 |
+
#~ msgstr "Kalenderindstillinger: Output"
|
3278 |
+
|
3279 |
+
#~ msgid "My Calendar: User Settings"
|
3280 |
+
#~ msgstr "My Calendar: Brugerindstillinger"
|
3281 |
+
|
3282 |
+
#~ msgid "There are no events currently scheduled."
|
3283 |
+
#~ msgstr "Der er ikke planlagt nogen begivenheder p.t."
|
3284 |
+
|
3285 |
+
#~ msgid "End Date (YYYY-MM-DD) (Optional)"
|
3286 |
+
#~ msgstr "Slutdato (ÅÅÅÅ-MM-DD) (Valgfri)"
|
3287 |
+
|
3288 |
+
#~ msgid ""
|
3289 |
+
#~ "Optional, set blank if your event is an all-day event or does not happen "
|
3290 |
+
#~ "at a specific time."
|
3291 |
+
#~ msgstr ""
|
3292 |
+
#~ "Valgfri, lad feltet være tomt, hvis begivenheden er en heldagsbegivenhed "
|
3293 |
+
#~ "eller ikke foregår på et bestemt tidspunkt."
|
3294 |
+
|
3295 |
+
#~ msgid ""
|
3296 |
+
#~ "Optional. End times will not be displayed on events where this is not set."
|
3297 |
+
#~ msgstr ""
|
3298 |
+
#~ "Valgfri. Sluttidspunkter bliver ikke vist på begivenheder, hvor de ikke "
|
3299 |
+
#~ "er valgt."
|
3300 |
+
|
3301 |
+
#~ msgid ""
|
3302 |
+
#~ "Entering 0 means forever, if a unit is selected. If the recurrence unit "
|
3303 |
+
#~ "is left at \"Does not recur,\" the event will not reoccur."
|
3304 |
+
#~ msgstr ""
|
3305 |
+
#~ "Indtastning af 0 betyder \"altid\", hvis en enhed er valgt. Hvis typen af "
|
3306 |
+
#~ "gentagelse er sat til \"Gentages ikke\", vil begivenheden ikke gentages."
|
3307 |
+
|
3308 |
+
#~ msgid ""
|
3309 |
+
#~ "The URL entered must either be prefixed with http:// or be completely "
|
3310 |
+
#~ "blank"
|
3311 |
+
#~ msgstr ""
|
3312 |
+
#~ "Den indtastede URL skal enten være foranstillet med http:// eller være "
|
3313 |
+
#~ "helt blank"
|
3314 |
+
|
3315 |
+
#~ msgid "days into the future;"
|
3316 |
+
#~ msgstr "dage i den kommende tid;"
|
3317 |
+
|
3318 |
+
#~ msgid "days from the past"
|
3319 |
+
#~ msgstr "hidtidige dage"
|
3320 |
+
|
3321 |
+
#~ msgid "Show only this category:"
|
3322 |
+
#~ msgstr "Vis kun denne kategori:"
|
3323 |
+
|
3324 |
+
#~ msgid "Group this event as a single item"
|
3325 |
+
#~ msgstr "Grupper denne begivenhed som en enkeltstående begivenhed"
|
3326 |
+
|
3327 |
+
#~ msgid ""
|
3328 |
+
#~ "An event with the details you submitted could not be found in the "
|
3329 |
+
#~ "database. This may indicate a problem with your database or the way in "
|
3330 |
+
#~ "which it is configured."
|
3331 |
+
#~ msgstr ""
|
3332 |
+
#~ "En begivenhed med de angivne detaljer kunne ikke findes i databasen. "
|
3333 |
+
#~ "Dette indikerer muligvis et problem med din database eller måden, den er "
|
3334 |
+
#~ "konfigureret på."
|
3335 |
+
|
3336 |
+
#~ msgid "Failure"
|
3337 |
+
#~ msgstr "FEJL"
|
3338 |
+
|
3339 |
+
#~ msgid "You can't update an event if you haven't submitted an event id"
|
3340 |
+
#~ msgstr ""
|
3341 |
+
#~ "Du kan ikke opdatere en begivenhed, hvis du ikke har sendt et begivenheds-"
|
3342 |
+
#~ "id."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/my-calendar-de_DE.mo
CHANGED
Binary file
|
lang/my-calendar-de_DE.po
CHANGED
@@ -986,7 +986,7 @@ msgstr "Administrator"
|
|
986 |
#: my-calendar-settings.php:310
|
987 |
#@ my-calendar
|
988 |
msgid "Previous Events"
|
989 |
-
msgstr "
|
990 |
|
991 |
#: my-calendar-settings.php:313
|
992 |
#@ my-calendar
|
@@ -1330,27 +1330,27 @@ msgstr "<abbr title=\"Sonntag\">So</abbr>"
|
|
1330 |
#: my-calendar-output.php:493
|
1331 |
#@ my-calendar
|
1332 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1333 |
-
msgstr "<abbr title=\"Montag\">
|
1334 |
|
1335 |
#: my-calendar-output.php:494
|
1336 |
#@ my-calendar
|
1337 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1338 |
-
msgstr "<abbr title=\"Dienstag\">
|
1339 |
|
1340 |
#: my-calendar-output.php:495
|
1341 |
#@ my-calendar
|
1342 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1343 |
-
msgstr "<abbr title=\"Mittwoch\">
|
1344 |
|
1345 |
#: my-calendar-output.php:496
|
1346 |
#@ my-calendar
|
1347 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1348 |
-
msgstr "<abbr title=\"Donnerstag\">
|
1349 |
|
1350 |
#: my-calendar-output.php:497
|
1351 |
#@ my-calendar
|
1352 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1353 |
-
msgstr "<abbr title=\"Freitag\">
|
1354 |
|
1355 |
#: my-calendar-output.php:498
|
1356 |
#@ my-calendar
|
@@ -2741,13 +2741,13 @@ msgstr ""
|
|
2741 |
#, php-format
|
2742 |
#@ my-calendar
|
2743 |
msgid " and %d other event"
|
2744 |
-
msgstr ""
|
2745 |
|
2746 |
#: my-calendar-output.php:857
|
2747 |
#, php-format
|
2748 |
#@ my-calendar
|
2749 |
msgid " and %d other events"
|
2750 |
-
msgstr ""
|
2751 |
|
2752 |
#: my-calendar-output.php:1043
|
2753 |
#@ my-calendar
|
@@ -2803,7 +2803,7 @@ msgstr ""
|
|
2803 |
#: my-calendar-settings.php:310
|
2804 |
#@ my-calendar
|
2805 |
msgid "Previous events link"
|
2806 |
-
msgstr ""
|
2807 |
|
2808 |
#: my-calendar-settings.php:313
|
2809 |
#@ my-calendar
|
@@ -3267,7 +3267,7 @@ msgstr ""
|
|
3267 |
#: my-calendar-templating.php:163
|
3268 |
#@ my-calendar
|
3269 |
msgid "Link to Google Map to the event, if address information is available."
|
3270 |
-
msgstr ""
|
3271 |
|
3272 |
#: my-calendar-templating.php:169
|
3273 |
#@ my-calendar
|
@@ -3435,7 +3435,7 @@ msgstr ""
|
|
3435 |
#: my-calendar-widgets.php:579
|
3436 |
#@ my-calendar
|
3437 |
msgid "Show Next/Previous Navigation:"
|
3438 |
-
msgstr ""
|
3439 |
|
3440 |
#: my-calendar-widgets.php:585
|
3441 |
#@ my-calendar
|
@@ -3626,7 +3626,7 @@ msgstr ""
|
|
3626 |
#: my-calendar-output.php:993
|
3627 |
#@ my-calendar
|
3628 |
msgid "« Previous events"
|
3629 |
-
msgstr ""
|
3630 |
|
3631 |
#: my-calendar-settings.php:78
|
3632 |
#@ my-calendar
|
986 |
#: my-calendar-settings.php:310
|
987 |
#@ my-calendar
|
988 |
msgid "Previous Events"
|
989 |
+
msgstr "Frühere Termine"
|
990 |
|
991 |
#: my-calendar-settings.php:313
|
992 |
#@ my-calendar
|
1330 |
#: my-calendar-output.php:493
|
1331 |
#@ my-calendar
|
1332 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1333 |
+
msgstr "<abbr title=\"Montag\">Mo</abbr>"
|
1334 |
|
1335 |
#: my-calendar-output.php:494
|
1336 |
#@ my-calendar
|
1337 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1338 |
+
msgstr "<abbr title=\"Dienstag\">Di</abbr>"
|
1339 |
|
1340 |
#: my-calendar-output.php:495
|
1341 |
#@ my-calendar
|
1342 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1343 |
+
msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
|
1344 |
|
1345 |
#: my-calendar-output.php:496
|
1346 |
#@ my-calendar
|
1347 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1348 |
+
msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
|
1349 |
|
1350 |
#: my-calendar-output.php:497
|
1351 |
#@ my-calendar
|
1352 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1353 |
+
msgstr "<abbr title=\"Freitag\">Fr</abbr>"
|
1354 |
|
1355 |
#: my-calendar-output.php:498
|
1356 |
#@ my-calendar
|
2741 |
#, php-format
|
2742 |
#@ my-calendar
|
2743 |
msgid " and %d other event"
|
2744 |
+
msgstr " und %d weiterer Termin"
|
2745 |
|
2746 |
#: my-calendar-output.php:857
|
2747 |
#, php-format
|
2748 |
#@ my-calendar
|
2749 |
msgid " and %d other events"
|
2750 |
+
msgstr " und %d weitere Termine"
|
2751 |
|
2752 |
#: my-calendar-output.php:1043
|
2753 |
#@ my-calendar
|
2803 |
#: my-calendar-settings.php:310
|
2804 |
#@ my-calendar
|
2805 |
msgid "Previous events link"
|
2806 |
+
msgstr "Frühere Termine Link"
|
2807 |
|
2808 |
#: my-calendar-settings.php:313
|
2809 |
#@ my-calendar
|
3267 |
#: my-calendar-templating.php:163
|
3268 |
#@ my-calendar
|
3269 |
msgid "Link to Google Map to the event, if address information is available."
|
3270 |
+
msgstr "Link zur Google Map des Termins, wenn die Adress-Informationen vorhanden sind"
|
3271 |
|
3272 |
#: my-calendar-templating.php:169
|
3273 |
#@ my-calendar
|
3435 |
#: my-calendar-widgets.php:579
|
3436 |
#@ my-calendar
|
3437 |
msgid "Show Next/Previous Navigation:"
|
3438 |
+
msgstr "Zurück/Weiter Navigation zeigen"
|
3439 |
|
3440 |
#: my-calendar-widgets.php:585
|
3441 |
#@ my-calendar
|
3626 |
#: my-calendar-output.php:993
|
3627 |
#@ my-calendar
|
3628 |
msgid "« Previous events"
|
3629 |
+
msgstr "« Frühere Termine"
|
3630 |
|
3631 |
#: my-calendar-settings.php:78
|
3632 |
#@ my-calendar
|
lang/my-calendar-hi_IN.mo
ADDED
Binary file
|
lang/my-calendar-hi_IN.po
ADDED
@@ -0,0 +1,3842 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: My Calendar 1.5.0\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
5 |
+
"POT-Creation-Date: 2010-10-05 19:19+0000\n"
|
6 |
+
"PO-Revision-Date: 2012-05-21 20:00+0530\n"
|
7 |
+
"Last-Translator: Ashish Jha <ashish@outshinesolutions.com>\n"
|
8 |
+
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Hindi\n"
|
14 |
+
"X-Poedit-Country: INDIA\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
#@ my-calendar
|
22 |
+
#: my-calendar-categories.php:103
|
23 |
+
msgid "Category added successfully"
|
24 |
+
msgstr "श्रेणी सफलतापूर्वक जोड़ी गई"
|
25 |
+
|
26 |
+
#@ my-calendar
|
27 |
+
#: my-calendar-categories.php:105
|
28 |
+
msgid "Category addition failed."
|
29 |
+
msgstr "श्रेणी इसके अलावा असफल ."
|
30 |
+
|
31 |
+
#@ my-calendar
|
32 |
+
#: my-calendar-categories.php:115
|
33 |
+
msgid "Category deleted successfully. Categories in calendar updated."
|
34 |
+
msgstr "श्रेणी सफलतापूर्वक नष्ट कर दिया. कैलेंडर में चैनल अपडेट."
|
35 |
+
|
36 |
+
#@ my-calendar
|
37 |
+
#: my-calendar-categories.php:117
|
38 |
+
msgid "Category deleted successfully. Categories in calendar not updated."
|
39 |
+
msgstr "श्रेणी सफलतापूर्वक नष्ट कर दिया.कैलेंडर में श्रेणियाँ नवीनीकृत नहीं"
|
40 |
+
|
41 |
+
#@ my-calendar
|
42 |
+
#: my-calendar-categories.php:119
|
43 |
+
msgid "Category not deleted. Categories in calendar updated."
|
44 |
+
msgstr "श्रेणी नहीं नष्ट कर दिया. कैलेंडर में चैनल अपडेट."
|
45 |
+
|
46 |
+
#@ my-calendar
|
47 |
+
#: my-calendar-categories.php:135
|
48 |
+
msgid "Category edited successfully"
|
49 |
+
msgstr "श्रेणी सफलतापूर्वक संपादित किया"
|
50 |
+
|
51 |
+
#@ my-calendar
|
52 |
+
#: my-calendar-categories.php:170
|
53 |
+
#: my-calendar-categories.php:195
|
54 |
+
#: my-calendar-categories.php:212
|
55 |
+
msgid "Add Category"
|
56 |
+
msgstr "श्रेणी में जोड़ें"
|
57 |
+
|
58 |
+
#@ my-calendar
|
59 |
+
#: my-calendar-categories.php:172
|
60 |
+
#: my-calendar-categories.php:195
|
61 |
+
msgid "Edit Category"
|
62 |
+
msgstr "श्रेणी संपादित करें"
|
63 |
+
|
64 |
+
#@ my-calendar
|
65 |
+
#: my-calendar-categories.php:179
|
66 |
+
msgid "Category Editor"
|
67 |
+
msgstr "श्रेणी संपादक"
|
68 |
+
|
69 |
+
#@ my-calendar
|
70 |
+
#: my-calendar-categories.php:196
|
71 |
+
#: my-calendar-categories.php:240
|
72 |
+
msgid "Category Name"
|
73 |
+
msgstr "श्रेणी नाम"
|
74 |
+
|
75 |
+
#@ my-calendar
|
76 |
+
#: my-calendar-categories.php:197
|
77 |
+
msgid "Category Color (Hex format)"
|
78 |
+
msgstr "श्रेणी रंग (हेक्स प्रारूप)"
|
79 |
+
|
80 |
+
#@ my-calendar
|
81 |
+
#: my-calendar-categories.php:198
|
82 |
+
#: my-calendar-categories.php:242
|
83 |
+
msgid "Category Icon"
|
84 |
+
msgstr "श्रेणी चिह्न"
|
85 |
+
|
86 |
+
#@ my-calendar
|
87 |
+
#: my-calendar-categories.php:212
|
88 |
+
#: my-calendar-locations.php:215
|
89 |
+
#: my-calendar-styles.php:198
|
90 |
+
msgid "Save Changes"
|
91 |
+
msgstr "परिवर्तन सहेजें"
|
92 |
+
|
93 |
+
#@ my-calendar
|
94 |
+
#: my-calendar-categories.php:228
|
95 |
+
#: my-calendar.php:168
|
96 |
+
msgid "Manage Categories"
|
97 |
+
msgstr "चैनल प्रबंधित करें"
|
98 |
+
|
99 |
+
#@ my-calendar
|
100 |
+
#: my-calendar-categories.php:239
|
101 |
+
#: my-calendar-event-manager.php:934
|
102 |
+
#: my-calendar-group-manager.php:706
|
103 |
+
#: my-calendar-locations.php:275
|
104 |
+
msgid "ID"
|
105 |
+
msgstr "आईडी"
|
106 |
+
|
107 |
+
#@ my-calendar
|
108 |
+
#: my-calendar-categories.php:241
|
109 |
+
msgid "Category Color"
|
110 |
+
msgstr "श्रेणी रंग"
|
111 |
+
|
112 |
+
#@ my-calendar
|
113 |
+
#: my-calendar-categories.php:243
|
114 |
+
#: my-calendar-categories.php:257
|
115 |
+
#: my-calendar-event-manager.php:1001
|
116 |
+
#: my-calendar-group-manager.php:715
|
117 |
+
#: my-calendar-locations.php:277
|
118 |
+
#: my-calendar-locations.php:289
|
119 |
+
#: my-calendar-output.php:292
|
120 |
+
msgid "Edit"
|
121 |
+
msgstr "संपादित करें"
|
122 |
+
|
123 |
+
#@ my-calendar
|
124 |
+
#: my-calendar-categories.php:244
|
125 |
+
#: my-calendar-categories.php:263
|
126 |
+
#: my-calendar-event-manager.php:183
|
127 |
+
#: my-calendar-event-manager.php:1004
|
128 |
+
#: my-calendar-locations.php:278
|
129 |
+
#: my-calendar-locations.php:290
|
130 |
+
#: my-calendar-output.php:293
|
131 |
+
msgid "Delete"
|
132 |
+
msgstr "हटाना"
|
133 |
+
|
134 |
+
#@ my-calendar
|
135 |
+
#: my-calendar-categories.php:260
|
136 |
+
#: my-calendar-event-manager.php:982
|
137 |
+
#: my-calendar-group-manager.php:755
|
138 |
+
#: my-calendar-output.php:186
|
139 |
+
#: my-calendar-settings.php:307
|
140 |
+
msgid "N/A"
|
141 |
+
msgstr "N/A"
|
142 |
+
|
143 |
+
#@ my-calendar
|
144 |
+
#: my-calendar-categories.php:263
|
145 |
+
#: my-calendar-locations.php:290
|
146 |
+
msgid "Are you sure you want to delete this category?"
|
147 |
+
msgstr "आपको सुनिश्चित हैं कि आपको इस श्रेणी नष्ट करना चाहते हैं ?"
|
148 |
+
|
149 |
+
#@ my-calendar
|
150 |
+
#: my-calendar-categories.php:274
|
151 |
+
msgid "There are no categories in the database - something has gone wrong!"
|
152 |
+
msgstr "वहाँ डेटाबेस में कोई नहीं श्रेणियां हैं - कुछ गलत हो गया!"
|
153 |
+
|
154 |
+
#@ my-calendar
|
155 |
+
#: my-calendar-event-manager.php:102
|
156 |
+
#: my-calendar-settings.php:711
|
157 |
+
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?"
|
158 |
+
msgstr "मेरा कैलेंडर की पहचान की है कि आप है Kieran O'Shea द्वारा कैलेंडर प्लगइन स्थापित. आपको उन घटनाओं और श्रेणियों मेरा कैलेंडर डेटाबेस में आयात कर सकते हैं. आप इन घटनाओं आयात करना चाहते हैं?"
|
159 |
+
|
160 |
+
#@ my-calendar
|
161 |
+
#: my-calendar-event-manager.php:109
|
162 |
+
#: my-calendar-settings.php:718
|
163 |
+
msgid "Import from Calendar"
|
164 |
+
msgstr "कैलेंडर से आयात"
|
165 |
+
|
166 |
+
#@ my-calendar
|
167 |
+
#: my-calendar-event-manager.php:114
|
168 |
+
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>!"
|
169 |
+
msgstr "हालांकि यह संभव है कि यह आयात करने के लिए अपने घटनाओं सही ढंग से आयात असफल हो सकता है, यह आप मौजूदा कैलेंडर डेटाबेस पर कोई प्रभाव नहीं होना चाहिए. यदि आप किसी भी समस्याओं का सामना , <a href=\"http://www.joedolson.com/contact.php\"> कृपया मुझसे संपर्क </a>!"
|
170 |
+
|
171 |
+
#@ my-calendar
|
172 |
+
#: my-calendar-event-manager.php:174
|
173 |
+
msgid "Delete Event"
|
174 |
+
msgstr "ईवेंट हटाएँ"
|
175 |
+
|
176 |
+
#@ my-calendar
|
177 |
+
#: my-calendar-event-manager.php:174
|
178 |
+
msgid "Are you sure you want to delete this event?"
|
179 |
+
msgstr "आपको सुनिश्चित हैं कि आप इस घटना को हटाना चाहते हैं ?"
|
180 |
+
|
181 |
+
#@ my-calendar
|
182 |
+
#: my-calendar-event-manager.php:191
|
183 |
+
msgid "You do not have permission to delete that event."
|
184 |
+
msgstr "आपको कि घटना नष्ट अनुमति नहीं है."
|
185 |
+
|
186 |
+
#@ my-calendar
|
187 |
+
#: my-calendar-event-manager.php:206
|
188 |
+
msgid "You do not have permission to approve that event."
|
189 |
+
msgstr "आपको जो ईवेंट मंजूरी अनुमति नहीं है."
|
190 |
+
|
191 |
+
#@ my-calendar
|
192 |
+
#: my-calendar-event-manager.php:221
|
193 |
+
msgid "You do not have permission to reject that event."
|
194 |
+
msgstr "आपको जो ईवेंट अस्वीकार अनुमति नहीं है."
|
195 |
+
|
196 |
+
#@ my-calendar
|
197 |
+
#: my-calendar-event-manager.php:163
|
198 |
+
#: my-calendar-event-manager.php:323
|
199 |
+
#: my-calendar-event-manager.php:356
|
200 |
+
#: my-calendar-event-manager.php:373
|
201 |
+
#: my-calendar-event-manager.php:389
|
202 |
+
#: my-calendar-event-manager.php:1184
|
203 |
+
#: my-calendar-event-manager.php:1187
|
204 |
+
#: my-calendar-event-manager.php:1190
|
205 |
+
#: my-calendar-event-manager.php:1199
|
206 |
+
#: my-calendar-event-manager.php:1206
|
207 |
+
#: my-calendar-event-manager.php:1222
|
208 |
+
#: my-calendar-event-manager.php:1228
|
209 |
+
#: my-calendar-group-manager.php:57
|
210 |
+
#: my-calendar-group-manager.php:83
|
211 |
+
#: my-calendar-group-manager.php:150
|
212 |
+
#: my-calendar-group-manager.php:576
|
213 |
+
msgid "Error"
|
214 |
+
msgstr "त्रुटि."
|
215 |
+
|
216 |
+
#@ my-calendar
|
217 |
+
#: my-calendar-event-manager.php:323
|
218 |
+
msgid "I'm sorry! I couldn't add that event to the database."
|
219 |
+
msgstr "मैं माफी चाहता हूँ! मैं डेटाबेस के लिए ईवेंट नहीं जोड़ सकता है."
|
220 |
+
|
221 |
+
#@ my-calendar
|
222 |
+
#: my-calendar-event-manager.php:333
|
223 |
+
msgid "Event added. It will now show in your calendar."
|
224 |
+
msgstr "ईवेंट जोड़ा. अब यह आप कैलेंडर में दिखाई देंगे."
|
225 |
+
|
226 |
+
#@ my-calendar
|
227 |
+
#: my-calendar-event-manager.php:356
|
228 |
+
#: my-calendar-group-manager.php:150
|
229 |
+
msgid "Your event was not updated."
|
230 |
+
msgstr "आपके ईवेंट नहीं अपडेट किया गया."
|
231 |
+
|
232 |
+
#@ my-calendar
|
233 |
+
#: my-calendar-event-manager.php:358
|
234 |
+
#: my-calendar-group-manager.php:59
|
235 |
+
#: my-calendar-group-manager.php:85
|
236 |
+
#: my-calendar-group-manager.php:152
|
237 |
+
msgid "Nothing was changed in that update."
|
238 |
+
msgstr "कुछ हैं कि अद्यतन में बदल गया था."
|
239 |
+
|
240 |
+
#@ my-calendar
|
241 |
+
#: my-calendar-event-manager.php:362
|
242 |
+
#: my-calendar-group-manager.php:61
|
243 |
+
#: my-calendar-group-manager.php:154
|
244 |
+
msgid "Event updated successfully"
|
245 |
+
msgstr "ईवेंट सफलतापूर्वक अपडेट"
|
246 |
+
|
247 |
+
#@ my-calendar
|
248 |
+
#: my-calendar-event-manager.php:366
|
249 |
+
#: my-calendar-group-manager.php:158
|
250 |
+
msgid "You do not have sufficient permissions to edit that event."
|
251 |
+
msgstr "आपको पर्याप्त अनुमतियाँ नहीं है कि ईवेंट संपादित करते हैं."
|
252 |
+
|
253 |
+
#@ my-calendar
|
254 |
+
#: my-calendar-event-manager.php:373
|
255 |
+
msgid "You can't delete an event if you haven't submitted an event id"
|
256 |
+
msgstr "तुम एक घटना को नष्ट नहीं यदि आप एक घटना आईडी प्रस्तुत नहीं किया है"
|
257 |
+
|
258 |
+
#@ my-calendar
|
259 |
+
#: my-calendar-event-manager.php:387
|
260 |
+
msgid "Event deleted successfully"
|
261 |
+
msgstr "ईवेंट को सफलतापूर्वक नष्ट कर दिया"
|
262 |
+
|
263 |
+
#@ my-calendar
|
264 |
+
#: my-calendar-event-manager.php:389
|
265 |
+
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
266 |
+
msgstr "अनुरोध जारी बावजूद, ईवेंट अभी भी डेटाबेस में रहता है. जांच करें."
|
267 |
+
|
268 |
+
#@ my-calendar
|
269 |
+
#: my-calendar-event-manager.php:273
|
270 |
+
#: my-calendar-group-manager.php:773
|
271 |
+
msgid "Edit Event"
|
272 |
+
msgstr "ईवेंट संपादित करें"
|
273 |
+
|
274 |
+
#@ my-calendar
|
275 |
+
#: my-calendar-event-manager.php:277
|
276 |
+
#: my-calendar-event-manager.php:288
|
277 |
+
msgid "You must provide an event id in order to edit it"
|
278 |
+
msgstr "आप एक घटना आईडी प्रदान करने के लिए इसे संपादित करना चाहिए"
|
279 |
+
|
280 |
+
#@ my-calendar
|
281 |
+
#: my-calendar-event-manager.php:284
|
282 |
+
msgid "Copy Event"
|
283 |
+
msgstr "प्रतिलिपि ईवेंट"
|
284 |
+
|
285 |
+
#@ my-calendar
|
286 |
+
#: my-calendar-core.php:858
|
287 |
+
#: my-calendar-event-manager.php:296
|
288 |
+
msgid "Add Event"
|
289 |
+
msgstr "घटना जोड़ें"
|
290 |
+
|
291 |
+
#@ my-calendar
|
292 |
+
#: my-calendar-event-manager.php:916
|
293 |
+
msgid "Manage Events"
|
294 |
+
msgstr "घटनाक्रम प्रबंधित"
|
295 |
+
|
296 |
+
#@ my-calendar
|
297 |
+
#: my-calendar-event-manager.php:401
|
298 |
+
#: my-calendar-group-manager.php:169
|
299 |
+
msgid "Sorry! That's an invalid event key."
|
300 |
+
msgstr "क्षमा करें!कि एक अमान्य ईवेंट कुंजी है."
|
301 |
+
|
302 |
+
#@ my-calendar
|
303 |
+
#: my-calendar-event-manager.php:405
|
304 |
+
#: my-calendar-group-manager.php:173
|
305 |
+
msgid "Sorry! We couldn't find an event with that ID."
|
306 |
+
msgstr "क्षमा करें!हम कि आईडी के साथ एक ईवेंट नहीं मिल सकता है."
|
307 |
+
|
308 |
+
#@ my-calendar
|
309 |
+
#: my-calendar-event-manager.php:430
|
310 |
+
msgid "This event must be approved in order for it to appear on the calendar."
|
311 |
+
msgstr "यह ईवेंट क्रम में अनुमोदित किया जाना चाहिए के लिए यह कैलेंडर पर प्रदर्शित करने के लिए."
|
312 |
+
|
313 |
+
#@ my-calendar
|
314 |
+
#: my-calendar-event-manager.php:487
|
315 |
+
#: my-calendar-group-manager.php:290
|
316 |
+
msgid "Enter your Event Information"
|
317 |
+
msgstr "घटना की जानकारी दर्ज"
|
318 |
+
|
319 |
+
#@ my-calendar
|
320 |
+
#: my-calendar-event-manager.php:489
|
321 |
+
#: my-calendar-group-manager.php:292
|
322 |
+
msgid "Event Title"
|
323 |
+
msgstr "ईवेंट शीर्षक"
|
324 |
+
|
325 |
+
#@ my-calendar
|
326 |
+
#: my-calendar-event-manager.php:493
|
327 |
+
msgid "Publish"
|
328 |
+
msgstr "प्रकाशित करना"
|
329 |
+
|
330 |
+
#@ my-calendar
|
331 |
+
#: my-calendar-event-manager.php:493
|
332 |
+
msgid "You must approve this event to promote it to the calendar."
|
333 |
+
msgstr "आपको यह ईवेंट अनुमोदन के लिए यह कैलेंडर को बढ़ावा देने करना चाहिए."
|
334 |
+
|
335 |
+
#@ my-calendar
|
336 |
+
#: my-calendar-event-manager.php:495
|
337 |
+
msgid "An administrator must approve your new event."
|
338 |
+
msgstr "एक व्यवस्थापक आपकी नई घटना स्वीकार करना चाहिए."
|
339 |
+
|
340 |
+
#@ my-calendar
|
341 |
+
#: my-calendar-event-manager.php:515
|
342 |
+
#: my-calendar-group-manager.php:306
|
343 |
+
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
344 |
+
msgstr "ईवेंट विवरण (<abbr title=\"hypertext मार्कअप language\"> HTML </ abbr> अनुमति दी)"
|
345 |
+
|
346 |
+
#@ my-calendar
|
347 |
+
#: my-calendar-event-manager.php:545
|
348 |
+
#: my-calendar-group-manager.php:331
|
349 |
+
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
350 |
+
msgstr "ईवेंट लघु विवरण (<abbr title=\"hypertext मार्कअप language\"> HTML </ abbr> अनुमति दी)"
|
351 |
+
|
352 |
+
#@ my-calendar
|
353 |
+
#: my-calendar-event-manager.php:568
|
354 |
+
#: my-calendar-group-manager.php:354
|
355 |
+
msgid "Event Category"
|
356 |
+
msgstr "इवेंट श्रेणी"
|
357 |
+
|
358 |
+
#@ my-calendar
|
359 |
+
#: my-calendar-event-manager.php:593
|
360 |
+
#: my-calendar-group-manager.php:379
|
361 |
+
msgid "Event Link (Optional)"
|
362 |
+
msgstr "ईवेंट लिंक (वैकल्पिक)"
|
363 |
+
|
364 |
+
#@ my-calendar
|
365 |
+
#: my-calendar-event-manager.php:593
|
366 |
+
#: my-calendar-group-manager.php:379
|
367 |
+
msgid "This link will expire when the event passes."
|
368 |
+
msgstr "यह लिंक जब ईवेंट गुजरता समाप्त हो जाएगा."
|
369 |
+
|
370 |
+
#@ my-calendar
|
371 |
+
#: my-calendar-event-manager.php:618
|
372 |
+
msgid "Start Date (YYYY-MM-DD)"
|
373 |
+
msgstr "प्रारंभ दिनांक (YYYY-MM-DD)"
|
374 |
+
|
375 |
+
#@ my-calendar
|
376 |
+
#: my-calendar-event-manager.php:646
|
377 |
+
msgid "Current time difference from GMT is "
|
378 |
+
msgstr "GMT से वर्तमान समय अंतर है"
|
379 |
+
|
380 |
+
#@ my-calendar
|
381 |
+
#: my-calendar-event-manager.php:646
|
382 |
+
msgid " hour(s)"
|
383 |
+
msgstr "घंटे ()"
|
384 |
+
|
385 |
+
#@ my-calendar
|
386 |
+
#: my-calendar-event-manager.php:655
|
387 |
+
msgid "Recurring Events"
|
388 |
+
msgstr "आवर्ती घटनाओं"
|
389 |
+
|
390 |
+
#@ my-calendar
|
391 |
+
#: my-calendar-event-manager.php:658
|
392 |
+
msgid "Repeats for"
|
393 |
+
msgstr "दोहराता है"
|
394 |
+
|
395 |
+
#@ my-calendar
|
396 |
+
#: my-calendar-event-manager.php:659
|
397 |
+
msgid "Units"
|
398 |
+
msgstr "इकाई"
|
399 |
+
|
400 |
+
#@ my-calendar
|
401 |
+
#: my-calendar-event-manager.php:660
|
402 |
+
#: my-calendar-templates.php:115
|
403 |
+
msgid "Does not recur"
|
404 |
+
msgstr "पुनरावृत्ति होना नहीं है"
|
405 |
+
|
406 |
+
#@ my-calendar
|
407 |
+
#: my-calendar-event-manager.php:661
|
408 |
+
#: my-calendar-event-manager.php:974
|
409 |
+
#: my-calendar-group-manager.php:747
|
410 |
+
#: my-calendar-templates.php:116
|
411 |
+
msgid "Daily"
|
412 |
+
msgstr "दैनिक"
|
413 |
+
|
414 |
+
#@ my-calendar
|
415 |
+
#: my-calendar-event-manager.php:663
|
416 |
+
#: my-calendar-event-manager.php:976
|
417 |
+
#: my-calendar-group-manager.php:749
|
418 |
+
#: my-calendar-templates.php:118
|
419 |
+
msgid "Weekly"
|
420 |
+
msgstr "साप्ताहिक"
|
421 |
+
|
422 |
+
#@ my-calendar
|
423 |
+
#: my-calendar-event-manager.php:664
|
424 |
+
#: my-calendar-templates.php:119
|
425 |
+
msgid "Bi-weekly"
|
426 |
+
msgstr "द्वि - साप्ताहिक"
|
427 |
+
|
428 |
+
#@ my-calendar
|
429 |
+
#: my-calendar-event-manager.php:665
|
430 |
+
msgid "Date of Month (e.g., the 24th of each month)"
|
431 |
+
msgstr "महीने की तिथि (उदाहरण , प्रत्येक माह की 24 तारीख)"
|
432 |
+
|
433 |
+
#@ my-calendar
|
434 |
+
#: my-calendar-event-manager.php:666
|
435 |
+
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
436 |
+
msgstr "महीने के दिन (उदाहरण के लिए, प्रत्येक माह 3 सोमवार)"
|
437 |
+
|
438 |
+
#@ my-calendar
|
439 |
+
#: my-calendar-event-manager.php:667
|
440 |
+
#: my-calendar-templates.php:122
|
441 |
+
msgid "Annually"
|
442 |
+
msgstr "प्रतिवर्ष"
|
443 |
+
|
444 |
+
#@ my-calendar
|
445 |
+
#: my-calendar-event-manager.php:686
|
446 |
+
#: my-calendar-group-manager.php:390
|
447 |
+
msgid "Event Registration Status"
|
448 |
+
msgstr "घटना पंजीकरण स्थिति"
|
449 |
+
|
450 |
+
#@ my-calendar
|
451 |
+
#: my-calendar-event-manager.php:689
|
452 |
+
#: my-calendar-group-manager.php:393
|
453 |
+
msgid "Open"
|
454 |
+
msgstr "खुला"
|
455 |
+
|
456 |
+
#@ my-calendar
|
457 |
+
#: my-calendar-event-manager.php:690
|
458 |
+
#: my-calendar-group-manager.php:394
|
459 |
+
msgid "Closed"
|
460 |
+
msgstr "बंद"
|
461 |
+
|
462 |
+
#@ my-calendar
|
463 |
+
#: my-calendar-event-manager.php:691
|
464 |
+
#: my-calendar-group-manager.php:395
|
465 |
+
msgid "Does not apply"
|
466 |
+
msgstr "लागू नहीं है"
|
467 |
+
|
468 |
+
#@ my-calendar
|
469 |
+
#: my-calendar-event-manager.php:694
|
470 |
+
#: my-calendar-group-manager.php:398
|
471 |
+
msgid "If this event recurs, it can only be registered for as a complete series."
|
472 |
+
msgstr "यह ईवेंट बारंबार अगर, यह केवल एक पूरी श्रृंखला रूप पंजीकृत किया जा सकता है."
|
473 |
+
|
474 |
+
#@ my-calendar
|
475 |
+
#: my-calendar-event-manager.php:711
|
476 |
+
#: my-calendar-group-manager.php:415
|
477 |
+
#: my-calendar-locations.php:127
|
478 |
+
msgid "Event Location"
|
479 |
+
msgstr "कार्यक्रम जगह"
|
480 |
+
|
481 |
+
#@ my-calendar
|
482 |
+
#: my-calendar-event-manager.php:718
|
483 |
+
#: my-calendar-group-manager.php:422
|
484 |
+
msgid "Choose a preset location:"
|
485 |
+
msgstr "एक पूर्व निर्धारित स्थान चुनें:"
|
486 |
+
|
487 |
+
#@ my-calendar
|
488 |
+
#: my-calendar-event-manager.php:732
|
489 |
+
#: my-calendar-group-manager.php:436
|
490 |
+
msgid "Add recurring locations for later use."
|
491 |
+
msgstr "उपयोग के लिए आवर्ती स्थानों पर जोड़ें."
|
492 |
+
|
493 |
+
#@ my-calendar
|
494 |
+
#: my-calendar-event-manager.php:741
|
495 |
+
#: my-calendar-group-manager.php:445
|
496 |
+
#: my-calendar-locations.php:129
|
497 |
+
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
498 |
+
msgstr "सभी स्थान फ़ील्ड वैकल्पिक हैं: <em> अपर्याप्त जानकारी एक गलत मानचित्र </ em> में परिणाम कर"
|
499 |
+
|
500 |
+
#@ my-calendar
|
501 |
+
#: my-calendar-event-manager.php:744
|
502 |
+
#: my-calendar-group-manager.php:448
|
503 |
+
#: my-calendar-locations.php:132
|
504 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
505 |
+
msgstr "स्थान का नाम (जैसे <em> है जो बार और ग्रिल </ em>)"
|
506 |
+
|
507 |
+
#@ my-calendar
|
508 |
+
#: my-calendar-event-manager.php:753
|
509 |
+
#: my-calendar-group-manager.php:451
|
510 |
+
#: my-calendar-locations.php:141
|
511 |
+
msgid "Street Address"
|
512 |
+
msgstr "सड़क पता"
|
513 |
+
|
514 |
+
#@ my-calendar
|
515 |
+
#: my-calendar-event-manager.php:756
|
516 |
+
#: my-calendar-group-manager.php:454
|
517 |
+
#: my-calendar-locations.php:144
|
518 |
+
msgid "Street Address (2)"
|
519 |
+
msgstr "गली का पता (2)"
|
520 |
+
|
521 |
+
#@ my-calendar
|
522 |
+
#: button/generator.php:56
|
523 |
+
#: my-calendar-event-manager.php:762
|
524 |
+
#: my-calendar-group-manager.php:460
|
525 |
+
#: my-calendar-locations.php:150
|
526 |
+
#: my-calendar-settings.php:687
|
527 |
+
msgid "City"
|
528 |
+
msgstr "शहर"
|
529 |
+
|
530 |
+
#@ my-calendar
|
531 |
+
#: my-calendar-event-manager.php:769
|
532 |
+
#: my-calendar-group-manager.php:460
|
533 |
+
#: my-calendar-locations.php:157
|
534 |
+
#: my-calendar-settings.php:688
|
535 |
+
msgid "State/Province"
|
536 |
+
msgstr "राज्य / प्रांत"
|
537 |
+
|
538 |
+
#@ my-calendar
|
539 |
+
#: button/generator.php:58
|
540 |
+
#: my-calendar-event-manager.php:776
|
541 |
+
#: my-calendar-group-manager.php:460
|
542 |
+
#: my-calendar-locations.php:164
|
543 |
+
#: my-calendar-settings.php:690
|
544 |
+
msgid "Postal Code"
|
545 |
+
msgstr "पिन कोड"
|
546 |
+
|
547 |
+
#@ my-calendar
|
548 |
+
#: button/generator.php:59
|
549 |
+
#: my-calendar-event-manager.php:794
|
550 |
+
#: my-calendar-group-manager.php:466
|
551 |
+
#: my-calendar-locations.php:182
|
552 |
+
#: my-calendar-settings.php:689
|
553 |
+
msgid "Country"
|
554 |
+
msgstr "देश"
|
555 |
+
|
556 |
+
#@ my-calendar
|
557 |
+
#: my-calendar-event-manager.php:803
|
558 |
+
#: my-calendar-group-manager.php:469
|
559 |
+
#: my-calendar-locations.php:191
|
560 |
+
msgid "Initial Zoom"
|
561 |
+
msgstr "प्रारंभिक ज़ूम"
|
562 |
+
|
563 |
+
#@ my-calendar
|
564 |
+
#: my-calendar-event-manager.php:805
|
565 |
+
#: my-calendar-group-manager.php:471
|
566 |
+
#: my-calendar-locations.php:193
|
567 |
+
msgid "Neighborhood"
|
568 |
+
msgstr "पड़ोस"
|
569 |
+
|
570 |
+
#@ my-calendar
|
571 |
+
#: my-calendar-event-manager.php:806
|
572 |
+
#: my-calendar-group-manager.php:472
|
573 |
+
#: my-calendar-locations.php:194
|
574 |
+
msgid "Small City"
|
575 |
+
msgstr "छोटा सा शहर"
|
576 |
+
|
577 |
+
#@ my-calendar
|
578 |
+
#: my-calendar-event-manager.php:807
|
579 |
+
#: my-calendar-group-manager.php:473
|
580 |
+
#: my-calendar-locations.php:195
|
581 |
+
msgid "Large City"
|
582 |
+
msgstr "बड़े शहर"
|
583 |
+
|
584 |
+
#@ my-calendar
|
585 |
+
#: my-calendar-event-manager.php:808
|
586 |
+
#: my-calendar-group-manager.php:474
|
587 |
+
#: my-calendar-locations.php:196
|
588 |
+
msgid "Greater Metro Area"
|
589 |
+
msgstr "ग्रेटर मेट्रो क्षेत्र"
|
590 |
+
|
591 |
+
#@ my-calendar
|
592 |
+
#: button/generator.php:57
|
593 |
+
#: my-calendar-event-manager.php:809
|
594 |
+
#: my-calendar-group-manager.php:475
|
595 |
+
#: my-calendar-locations.php:197
|
596 |
+
msgid "State"
|
597 |
+
msgstr "राज्य"
|
598 |
+
|
599 |
+
#@ my-calendar
|
600 |
+
#: button/generator.php:60
|
601 |
+
#: my-calendar-event-manager.php:785
|
602 |
+
#: my-calendar-event-manager.php:810
|
603 |
+
#: my-calendar-group-manager.php:463
|
604 |
+
#: my-calendar-group-manager.php:476
|
605 |
+
#: my-calendar-locations.php:173
|
606 |
+
#: my-calendar-locations.php:198
|
607 |
+
#: my-calendar-settings.php:691
|
608 |
+
msgid "Region"
|
609 |
+
msgstr "क्षेत्र"
|
610 |
+
|
611 |
+
#@ my-calendar
|
612 |
+
#: my-calendar-event-manager.php:817
|
613 |
+
#: my-calendar-group-manager.php:483
|
614 |
+
#: my-calendar-locations.php:205
|
615 |
+
msgid "GPS Coordinates (optional)"
|
616 |
+
msgstr "जीपीएस निर्देशांक (वैकल्पिक)"
|
617 |
+
|
618 |
+
#@ my-calendar
|
619 |
+
#: my-calendar-event-manager.php:819
|
620 |
+
#: my-calendar-group-manager.php:485
|
621 |
+
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."
|
622 |
+
msgstr "यदि आप आप स्थान के लिए जीपीएस निर्देशांक आपूर्ति, वे किसी अन्य पते पर जानकारी अपने नक्शे लिंक प्रदान की जगह में इस्तेमाल जाएगा."
|
623 |
+
|
624 |
+
#@ my-calendar
|
625 |
+
#: my-calendar-event-manager.php:822
|
626 |
+
#: my-calendar-group-manager.php:488
|
627 |
+
#: my-calendar-locations.php:211
|
628 |
+
msgid "Longitude"
|
629 |
+
msgstr "देशान्तर"
|
630 |
+
|
631 |
+
#@ my-calendar
|
632 |
+
#: my-calendar-event-manager.php:822
|
633 |
+
#: my-calendar-group-manager.php:488
|
634 |
+
#: my-calendar-locations.php:210
|
635 |
+
msgid "Latitude"
|
636 |
+
msgstr "देशान्तर"
|
637 |
+
|
638 |
+
#@ my-calendar
|
639 |
+
#: my-calendar-event-manager.php:439
|
640 |
+
#: my-calendar-event-manager.php:473
|
641 |
+
msgid "Save Event"
|
642 |
+
msgstr "ईवेंट सहेजें"
|
643 |
+
|
644 |
+
#@ my-calendar
|
645 |
+
#: my-calendar-event-manager.php:935
|
646 |
+
#: my-calendar-group-manager.php:708
|
647 |
+
#: my-calendar-settings.php:508
|
648 |
+
#: my-calendar-widgets.php:38
|
649 |
+
#: my-calendar-widgets.php:124
|
650 |
+
#: my-calendar-widgets.php:571
|
651 |
+
msgid "Title"
|
652 |
+
msgstr "शीर्षक"
|
653 |
+
|
654 |
+
#@ my-calendar
|
655 |
+
#: my-calendar-event-manager.php:936
|
656 |
+
#: my-calendar-group-manager.php:709
|
657 |
+
#: my-calendar-locations.php:276
|
658 |
+
msgid "Location"
|
659 |
+
msgstr "स्थान"
|
660 |
+
|
661 |
+
#@ my-calendar
|
662 |
+
#: my-calendar-event-manager.php:937
|
663 |
+
#: my-calendar-group-manager.php:710
|
664 |
+
#: my-calendar-settings.php:509
|
665 |
+
msgid "Description"
|
666 |
+
msgstr "विवरण"
|
667 |
+
|
668 |
+
#@ my-calendar
|
669 |
+
#: my-calendar-event-manager.php:938
|
670 |
+
#: my-calendar-group-manager.php:711
|
671 |
+
#: my-calendar-settings.php:510
|
672 |
+
msgid "Start Date"
|
673 |
+
msgstr "प्रारंभ दिनांक"
|
674 |
+
|
675 |
+
#@ my-calendar
|
676 |
+
#: my-calendar-event-manager.php:939
|
677 |
+
#: my-calendar-group-manager.php:712
|
678 |
+
msgid "Recurs"
|
679 |
+
msgstr "बारंबार"
|
680 |
+
|
681 |
+
#@ my-calendar
|
682 |
+
#: my-calendar-event-manager.php:940
|
683 |
+
#: my-calendar-group-manager.php:713
|
684 |
+
#: my-calendar-settings.php:251
|
685 |
+
#: my-calendar-settings.php:260
|
686 |
+
#: my-calendar-settings.php:268
|
687 |
+
#: my-calendar-settings.php:511
|
688 |
+
msgid "Author"
|
689 |
+
msgstr "लेखक"
|
690 |
+
|
691 |
+
#@ my-calendar
|
692 |
+
#: my-calendar-event-manager.php:941
|
693 |
+
#: my-calendar-group-manager.php:714
|
694 |
+
#: my-calendar-settings.php:512
|
695 |
+
msgid "Category"
|
696 |
+
msgstr "श्रेणी"
|
697 |
+
|
698 |
+
#@ my-calendar
|
699 |
+
#: my-calendar-event-manager.php:942
|
700 |
+
msgid "Edit / Delete"
|
701 |
+
msgstr " संपादित करें /हटाएँ"
|
702 |
+
|
703 |
+
#@ my-calendar
|
704 |
+
#: my-calendar-event-manager.php:973
|
705 |
+
#: my-calendar-group-manager.php:746
|
706 |
+
msgid "Never"
|
707 |
+
msgstr "कभी नहीं"
|
708 |
+
|
709 |
+
#@ my-calendar
|
710 |
+
#: my-calendar-event-manager.php:977
|
711 |
+
#: my-calendar-group-manager.php:750
|
712 |
+
msgid "Bi-Weekly"
|
713 |
+
msgstr "द्वि - साप्ताहिक"
|
714 |
+
|
715 |
+
#@ my-calendar
|
716 |
+
#: my-calendar-event-manager.php:978
|
717 |
+
#: my-calendar-group-manager.php:751
|
718 |
+
msgid "Monthly (by date)"
|
719 |
+
msgstr "मासिक (दिनांक के आधार पर)"
|
720 |
+
|
721 |
+
#@ my-calendar
|
722 |
+
#: my-calendar-event-manager.php:979
|
723 |
+
#: my-calendar-group-manager.php:752
|
724 |
+
msgid "Monthly (by day)"
|
725 |
+
msgstr "मासिक (दिन से)"
|
726 |
+
|
727 |
+
#@ my-calendar
|
728 |
+
#: my-calendar-event-manager.php:980
|
729 |
+
#: my-calendar-group-manager.php:753
|
730 |
+
msgid "Yearly"
|
731 |
+
msgstr "वार्षिक"
|
732 |
+
|
733 |
+
#@ my-calendar
|
734 |
+
#: my-calendar-event-manager.php:983
|
735 |
+
#: my-calendar-group-manager.php:756
|
736 |
+
msgid "Forever"
|
737 |
+
msgstr "सदा"
|
738 |
+
|
739 |
+
#@ my-calendar
|
740 |
+
#: my-calendar-event-manager.php:999
|
741 |
+
msgid "Copy"
|
742 |
+
msgstr "नकल"
|
743 |
+
|
744 |
+
#@ my-calendar
|
745 |
+
#: my-calendar-event-manager.php:1005
|
746 |
+
#: my-calendar-group-manager.php:779
|
747 |
+
msgid "Not editable."
|
748 |
+
msgstr "संपादन नहीं है."
|
749 |
+
|
750 |
+
#@ my-calendar
|
751 |
+
#: my-calendar-event-manager.php:1011
|
752 |
+
msgid "Reject"
|
753 |
+
msgstr "अस्वीकार"
|
754 |
+
|
755 |
+
#@ my-calendar
|
756 |
+
#: my-calendar-event-manager.php:1013
|
757 |
+
msgid "Approve"
|
758 |
+
msgstr "स्वीकृत"
|
759 |
+
|
760 |
+
#@ my-calendar
|
761 |
+
#: my-calendar-event-manager.php:1018
|
762 |
+
msgid "Approved"
|
763 |
+
msgstr "अनुमोदित"
|
764 |
+
|
765 |
+
#@ my-calendar
|
766 |
+
#: my-calendar-event-manager.php:1020
|
767 |
+
msgid "Rejected"
|
768 |
+
msgstr "अस्वीकृत"
|
769 |
+
|
770 |
+
#@ my-calendar
|
771 |
+
#: my-calendar-event-manager.php:1044
|
772 |
+
#: my-calendar-group-manager.php:793
|
773 |
+
msgid "There are no events in the database!"
|
774 |
+
msgstr "वहाँ डेटाबेस में कोई नहीं घटनाएँ हैं!"
|
775 |
+
|
776 |
+
#@ my-calendar
|
777 |
+
#: my-calendar-event-manager.php:1184
|
778 |
+
msgid "Your event end date must be either after or the same as your event begin date"
|
779 |
+
msgstr "आपके ईवेंट समाप्ति तिथि के बाद या एक ही रूप में अपने ईवेंट दिनांक शुरू होना चाहिए"
|
780 |
+
|
781 |
+
#@ my-calendar
|
782 |
+
#: my-calendar-event-manager.php:1187
|
783 |
+
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."
|
784 |
+
msgstr "आपके दिनांक स्वरूपण सही है लेकिन एक या अपनी तिथियाँ अधिक अवैध है. माह में दिनों की संख्या लिए जाँच करें और छलांग वर्ष त्रुटियों से संबंधित."
|
785 |
+
|
786 |
+
#@ my-calendar
|
787 |
+
#: my-calendar-event-manager.php:1190
|
788 |
+
msgid "Both start and end dates must be in the format YYYY-MM-DD"
|
789 |
+
msgstr "दोनों शुरू और अंत दिनांक स्वरूप YYYY-MM-DD में होना चाहिए"
|
790 |
+
|
791 |
+
#@ my-calendar
|
792 |
+
#: my-calendar-event-manager.php:1199
|
793 |
+
msgid "The time field must either be blank or be entered in the format hh:mm"
|
794 |
+
msgstr "समय क्षेत्र या तो खाली हो सकता है या किया जाना चाहिए प्रारूप hh में प्रवेश: मिमी"
|
795 |
+
|
796 |
+
#@ my-calendar
|
797 |
+
#: my-calendar-event-manager.php:1206
|
798 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm"
|
799 |
+
msgstr "अंत समय क्षेत्र या तो खाली हो सकता है या किया जाना चाहिए प्रारूप hh में प्रवेश: मिमी"
|
800 |
+
|
801 |
+
#@ my-calendar
|
802 |
+
#: my-calendar-event-manager.php:1222
|
803 |
+
#: my-calendar-group-manager.php:576
|
804 |
+
msgid "The event title must be between 1 and 255 characters in length."
|
805 |
+
msgstr "ईवेंट शीर्षक लंबाई में 1 और 255 वर्णों के बीच होना चाहिए."
|
806 |
+
|
807 |
+
#@ my-calendar
|
808 |
+
#: my-calendar-event-manager.php:1228
|
809 |
+
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
810 |
+
msgstr "पुनरावृत्ति मान 0 हो जब तक पुनरावृत्ति का एक प्रकार चुना जाता है"
|
811 |
+
|
812 |
+
#@ my-calendar
|
813 |
+
#: my-calendar-help.php:7
|
814 |
+
msgid "How to use My Calendar"
|
815 |
+
msgstr "कैसे मेरा कैलेंडर का उपयोग करें"
|
816 |
+
|
817 |
+
#@ my-calendar
|
818 |
+
#: my-calendar-help.php:12
|
819 |
+
msgid "Shortcode Syntax"
|
820 |
+
msgstr "shortcode सिंटेक्स"
|
821 |
+
|
822 |
+
#@ my-calendar
|
823 |
+
#: my-calendar-help.php:15
|
824 |
+
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
825 |
+
msgstr "इन शॉर्टकोड पोस्ट, पेज, या पाठ विजेट में इस्तेमाल किया जा सकता ."
|
826 |
+
|
827 |
+
#@ my-calendar
|
828 |
+
#: my-calendar-help.php:19
|
829 |
+
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."
|
830 |
+
msgstr "यह बुनियादी लघुकोडः एक पारंपरिक प्रारूप महीने से महीने में एक पोस्ट या सभी श्रेणियों और श्रेणी कुंजी सहित पृष्ठ पर कैलेंडर, दिखाएगा."
|
831 |
+
|
832 |
+
#@ my-calendar
|
833 |
+
#: my-calendar-help.php:63
|
834 |
+
msgid "Category Icons"
|
835 |
+
msgstr "श्रेणी प्रतीक"
|
836 |
+
|
837 |
+
#@ my-calendar
|
838 |
+
#: my-calendar-help.php:66
|
839 |
+
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."
|
840 |
+
msgstr "मेरा कैलेंडर एकाधिक कैलेंडर प्रबंधन बनाया गया है. इन कैलेंडर के लिए आधार श्रेणियां हैं, आप आसानी से सेटअप एक कैलेंडर पृष्ठ जो सभी श्रेणियों शामिल कर सकते हैं या आप अलग पृष्ठों प्रत्येक श्रेणी में कैलेंडर के लिए समर्पित कर सकते हैं. स्थानों की एक किस्म , आदि लिए ईवेंट कैलेंडर, एक उदाहरण के लिए, यह आपके लिए उपयोगी कई बैंड के लिए दौरे कैलेंडर प्रबंधन में हो सकता है"
|
841 |
+
|
842 |
+
#@ my-calendar
|
843 |
+
#: my-calendar-help.php:69
|
844 |
+
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."
|
845 |
+
msgstr "पूर्व स्थापित श्रेणी चिह्न विशेष अपनी आवश्यकताओं या डिजाइन के लिए उपयोगी नहीं हो सकता. मैं मान रहा हूँ कि आप अपना स्वयं का प्रतीक अपलोड जा रहे हैं - तुम सब करने ज़रूरत है उन्हें प्लगइन चिह्न फ़ोल्डर में अपलोड, और वे तत्काल उपयोग के लिए उपलब्ध हो जाएगा, या किसी फ़ोल्डर में उन पर जगह मेरे \"कैलेंडर अनुकूलित \"उन्हें उन्नयन द्वारा अधिलेखित होने बचने ."
|
846 |
+
|
847 |
+
#@ my-calendar
|
848 |
+
#: my-calendar-help.php:69
|
849 |
+
msgid "Your icons folder is:"
|
850 |
+
msgstr "अपने माउस फ़ोल्डर है:"
|
851 |
+
|
852 |
+
#@ my-calendar
|
853 |
+
#: my-calendar-help.php:69
|
854 |
+
msgid "You can alternately place icons in:"
|
855 |
+
msgstr "आप में बारी - बारी से प्रतीक रख सकता है:"
|
856 |
+
|
857 |
+
#@ my-calendar
|
858 |
+
#: my-calendar-help.php:92
|
859 |
+
msgid "Widget Templating"
|
860 |
+
msgstr "विजेट templating"
|
861 |
+
|
862 |
+
#@ my-calendar
|
863 |
+
#: my-calendar-help.php:220
|
864 |
+
msgid "Displays the name of the category the event is in."
|
865 |
+
msgstr "ईवेंट अंदर है श्रेणी का नाम प्रदर्शित"
|
866 |
+
|
867 |
+
#@ my-calendar
|
868 |
+
#: my-calendar-help.php:100
|
869 |
+
msgid "Displays the title of the event."
|
870 |
+
msgstr "ईवेंट का शीर्षक प्रदर्शित करता है."
|
871 |
+
|
872 |
+
#@ my-calendar
|
873 |
+
#: my-calendar-help.php:106
|
874 |
+
msgid "Displays the start time for the event."
|
875 |
+
msgstr "ईवेंट के लिए शुरू समय प्रदर्शित करता है."
|
876 |
+
|
877 |
+
#@ my-calendar
|
878 |
+
#: my-calendar-help.php:115
|
879 |
+
msgid "Displays the date on which the event begins."
|
880 |
+
msgstr "तारीख जिस पर ईवेंट शुरू होता है प्रदर्शित करता है."
|
881 |
+
|
882 |
+
#@ my-calendar
|
883 |
+
#: my-calendar-help.php:118
|
884 |
+
msgid "Displays the date on which the event ends."
|
885 |
+
msgstr "तारीख जिस पर ईवेंट समाप्त होता है प्रदर्शित करता है."
|
886 |
+
|
887 |
+
#@ my-calendar
|
888 |
+
#: my-calendar-help.php:121
|
889 |
+
msgid "Displays the time at which the event ends."
|
890 |
+
msgstr "समय पर ईवेंट समाप्त होता है प्रदर्शित करता है."
|
891 |
+
|
892 |
+
#@ my-calendar
|
893 |
+
#: my-calendar-help.php:130
|
894 |
+
msgid "Displays the WordPress author who posted the event."
|
895 |
+
msgstr "WordPress के लेखक है जो ईवेंट तैनात हैं प्रदर्शित करता है."
|
896 |
+
|
897 |
+
#@ my-calendar
|
898 |
+
#: my-calendar-help.php:154
|
899 |
+
msgid "Displays the URL provided for the event."
|
900 |
+
msgstr "घटना के लिए दी गई यूआरएल प्रदर्शित "
|
901 |
+
|
902 |
+
#@ my-calendar
|
903 |
+
#: my-calendar-help.php:145
|
904 |
+
msgid "Displays the description of the event."
|
905 |
+
msgstr "ईवेंट का विवरण प्रदर्शित करता है."
|
906 |
+
|
907 |
+
#@ my-calendar
|
908 |
+
#: my-calendar-help.php:103
|
909 |
+
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
910 |
+
msgstr "ईवेंट की एक कड़ी अगर एक यूआरएल मौजूद है, या अगर कोई URL उपलब्ध है अकेले शीर्षक रूप शीर्षक प्रदर्शित करता है."
|
911 |
+
|
912 |
+
#@ my-calendar
|
913 |
+
#: my-calendar-help.php:181
|
914 |
+
msgid "Displays the name of the location of the event."
|
915 |
+
msgstr "घटना के स्थान का नाम प्रदर्शित करता है."
|
916 |
+
|
917 |
+
#@ my-calendar
|
918 |
+
#: my-calendar-help.php:184
|
919 |
+
msgid "Displays the first line of the site address."
|
920 |
+
msgstr "साइट के पते की पहली पंक्ति प्रदर्शित करता है."
|
921 |
+
|
922 |
+
#@ my-calendar
|
923 |
+
#: my-calendar-help.php:187
|
924 |
+
msgid "Displays the second line of the site address."
|
925 |
+
msgstr "साइट पते की दूसरी पंक्ति प्रदर्शित करता है."
|
926 |
+
|
927 |
+
#@ my-calendar
|
928 |
+
#: my-calendar-help.php:202
|
929 |
+
msgid "Displays the country for the event location."
|
930 |
+
msgstr "घटना स्थान लिए देश में प्रदर्शित करता है."
|
931 |
+
|
932 |
+
#@ my-calendar
|
933 |
+
#: my-calendar-help.php:211
|
934 |
+
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
935 |
+
msgstr "<a href=\"http://microformats.org/wiki/hcard\">hcard</a> के प्रारूप में ईवेंट पता प्रदर्शित करता है."
|
936 |
+
|
937 |
+
#@ my-calendar
|
938 |
+
#: my-calendar-help.php:214
|
939 |
+
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
940 |
+
msgstr "ईवेंट के एक गूगल मानचित्र के लिए एक लिंक प्रदर्शित करता है, अगर पर्याप्त पते की जानकारी उपलब्ध है. यदि नहीं, खाली हो जाएगा."
|
941 |
+
|
942 |
+
#@ my-calendar
|
943 |
+
#: my-calendar-help.php:172
|
944 |
+
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
945 |
+
msgstr "प्रदर्शित करता है कुछ अगर कि पसंद ईवेंट में चुना जाता है, पाठ दर्शाता कि घटना के लिए पंजीकरण वर्तमान खुला है या बंद प्रदर्शित करता है."
|
946 |
+
|
947 |
+
#@ my-calendar
|
948 |
+
#: my-calendar-help.php:139
|
949 |
+
msgid "Displays the short version of the event description."
|
950 |
+
msgstr "ईवेंट विवरण के छोटे संस्करण प्रदर्शित करता है."
|
951 |
+
|
952 |
+
#@ my-calendar
|
953 |
+
#: my-calendar-help.php:175
|
954 |
+
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
955 |
+
msgstr "ईमेल टेम्पलेट्स में प्राथमिक इस्तेमाल किया या तो \"प्रकाशित \" या \"सुरक्षित \": ईवेंट की वर्तमान स्थिति प्रदर्शित"
|
956 |
+
|
957 |
+
#@ my-calendar
|
958 |
+
#: my-calendar-locations.php:44
|
959 |
+
msgid "Location added successfully"
|
960 |
+
msgstr "स्थान सफलतापूर्वक जोड़ा"
|
961 |
+
|
962 |
+
#@ my-calendar
|
963 |
+
#: my-calendar-locations.php:46
|
964 |
+
msgid "Location could not be added to database"
|
965 |
+
msgstr "स्थान डेटाबेस से जोड़ा नहीं जा सका"
|
966 |
+
|
967 |
+
#@ my-calendar
|
968 |
+
#: my-calendar-locations.php:52
|
969 |
+
msgid "Location deleted successfully"
|
970 |
+
msgstr "स्थान सफलतापूर्वक नष्ट कर दिया"
|
971 |
+
|
972 |
+
#@ my-calendar
|
973 |
+
#: my-calendar-locations.php:54
|
974 |
+
msgid "Location could not be deleted"
|
975 |
+
msgstr "स्थान नष्ट नहीं किया जा सका"
|
976 |
+
|
977 |
+
#@ my-calendar
|
978 |
+
#: my-calendar-locations.php:80
|
979 |
+
msgid "Location could not be edited."
|
980 |
+
msgstr "स्थान संपादन नहीं किया जा सकता है."
|
981 |
+
|
982 |
+
#@ my-calendar
|
983 |
+
#: my-calendar-locations.php:82
|
984 |
+
msgid "Location was not changed."
|
985 |
+
msgstr "स्थान नहीं बदला गया था."
|
986 |
+
|
987 |
+
#@ my-calendar
|
988 |
+
#: my-calendar-locations.php:84
|
989 |
+
msgid "Location edited successfully"
|
990 |
+
msgstr "स्थान सफलतापूर्वक संपादित किया"
|
991 |
+
|
992 |
+
#@ my-calendar
|
993 |
+
#: my-calendar-locations.php:104
|
994 |
+
msgid "Add New Location"
|
995 |
+
msgstr "नया स्थान जोड़ें"
|
996 |
+
|
997 |
+
#@ my-calendar
|
998 |
+
#: my-calendar-locations.php:106
|
999 |
+
msgid "Edit Location"
|
1000 |
+
msgstr "स्थान संपादित करें"
|
1001 |
+
|
1002 |
+
#@ my-calendar
|
1003 |
+
#: my-calendar-locations.php:111
|
1004 |
+
msgid "Location Editor"
|
1005 |
+
msgstr "स्थान संपादक"
|
1006 |
+
|
1007 |
+
#@ my-calendar
|
1008 |
+
#: my-calendar-locations.php:207
|
1009 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
|
1010 |
+
msgstr "यदि आप आप स्थान के लिए जीपीएस निर्देशांक आपूर्ति, वे किसी अन्य पते पर आपके स्थान तुच्छ जानकारी के स्थान में इस्तेमाल जाएगा."
|
1011 |
+
|
1012 |
+
#@ my-calendar
|
1013 |
+
#: my-calendar-locations.php:215
|
1014 |
+
msgid "Add Location"
|
1015 |
+
msgstr "स्थान जोड़ें"
|
1016 |
+
|
1017 |
+
#@ my-calendar
|
1018 |
+
#: my-calendar-locations.php:263
|
1019 |
+
#: my-calendar.php:170
|
1020 |
+
msgid "Manage Locations"
|
1021 |
+
msgstr "स्थान प्रबंधित करें"
|
1022 |
+
|
1023 |
+
#@ my-calendar
|
1024 |
+
#: my-calendar-locations.php:298
|
1025 |
+
msgid "There are no locations in the database yet!"
|
1026 |
+
msgstr "डेटाबेस में कोई नहीं स्थानों पर अभी तक कर रहे हैं!"
|
1027 |
+
|
1028 |
+
#@ my-calendar
|
1029 |
+
#: my-calendar-locations.php:302
|
1030 |
+
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."
|
1031 |
+
msgstr "कृपया ध्यान दें: संपादन या हटाने पुन: उपयोग के लिए संग्रहीत स्थानों पर किसी पहले उस स्थान पर अनुसूचित ईवेंट पर कोई असर नहीं होगा. स्थान डेटाबेस ईवेंट रिकॉर्ड में अक्सर इस्तेमाल किया स्थानों पर प्रवेश एक आशुलिपि विधि के रूप में विशुद्ध रूप से मौजूद है."
|
1032 |
+
|
1033 |
+
#@ my-calendar
|
1034 |
+
#: my-calendar-settings.php:52
|
1035 |
+
msgid "Categories imported successfully."
|
1036 |
+
msgstr "चैनल सफलतापूर्वक आयात."
|
1037 |
+
|
1038 |
+
#@ my-calendar
|
1039 |
+
#: my-calendar-settings.php:52
|
1040 |
+
msgid "Categories not imported."
|
1041 |
+
msgstr "चैनल आयात नहीं."
|
1042 |
+
|
1043 |
+
#@ my-calendar
|
1044 |
+
#: my-calendar-settings.php:53
|
1045 |
+
msgid "Events imported successfully."
|
1046 |
+
msgstr "घटनाक्रम सफलतापूर्वक आयात."
|
1047 |
+
|
1048 |
+
#@ my-calendar
|
1049 |
+
#: my-calendar-settings.php:53
|
1050 |
+
msgid "Events not imported."
|
1051 |
+
msgstr "घटनाक्रम आयातित नहीं."
|
1052 |
+
|
1053 |
+
#@ my-calendar
|
1054 |
+
#: my-calendar-settings.php:237
|
1055 |
+
msgid "My Calendar Options"
|
1056 |
+
msgstr "मेरे कैलेंडर के विकल्प"
|
1057 |
+
|
1058 |
+
#@ my-calendar
|
1059 |
+
#: my-calendar-settings.php:246
|
1060 |
+
msgid "Calendar Options: Management"
|
1061 |
+
msgstr "कैलेंडर के विकल्प: प्रबंधन"
|
1062 |
+
|
1063 |
+
#@ my-calendar
|
1064 |
+
#: my-calendar-settings.php:249
|
1065 |
+
#: my-calendar-settings.php:258
|
1066 |
+
msgid "Subscriber"
|
1067 |
+
msgstr "ग्राहक"
|
1068 |
+
|
1069 |
+
#@ my-calendar
|
1070 |
+
#: my-calendar-settings.php:250
|
1071 |
+
#: my-calendar-settings.php:259
|
1072 |
+
#: my-calendar-settings.php:267
|
1073 |
+
msgid "Contributor"
|
1074 |
+
msgstr "योगदानकर्ता"
|
1075 |
+
|
1076 |
+
#@ my-calendar
|
1077 |
+
#: my-calendar-settings.php:252
|
1078 |
+
#: my-calendar-settings.php:261
|
1079 |
+
#: my-calendar-settings.php:269
|
1080 |
+
msgid "Editor"
|
1081 |
+
msgstr "संपादक"
|
1082 |
+
|
1083 |
+
#@ my-calendar
|
1084 |
+
#: my-calendar-settings.php:253
|
1085 |
+
#: my-calendar-settings.php:262
|
1086 |
+
#: my-calendar-settings.php:270
|
1087 |
+
msgid "Administrator"
|
1088 |
+
msgstr "व्यवस्थापक"
|
1089 |
+
|
1090 |
+
#@ my-calendar
|
1091 |
+
#: my-calendar-settings.php:263
|
1092 |
+
msgid "Enable approval options."
|
1093 |
+
msgstr "अनुमोदन विकल्प सक्षम."
|
1094 |
+
|
1095 |
+
#@ my-calendar
|
1096 |
+
#: my-calendar-settings.php:310
|
1097 |
+
msgid "Previous Events"
|
1098 |
+
msgstr "पिछली आयोजन"
|
1099 |
+
|
1100 |
+
#@ my-calendar
|
1101 |
+
#: my-calendar-settings.php:313
|
1102 |
+
msgid "Next Events"
|
1103 |
+
msgstr "अगली आयोजन"
|
1104 |
+
|
1105 |
+
#@ my-calendar
|
1106 |
+
#: my-calendar-settings.php:316
|
1107 |
+
msgid "Registration is open"
|
1108 |
+
msgstr "पंजीकरण खुला है"
|
1109 |
+
|
1110 |
+
#@ my-calendar
|
1111 |
+
#: my-calendar-settings.php:319
|
1112 |
+
msgid "Registration is closed"
|
1113 |
+
msgstr "पंजीकरण बंद है"
|
1114 |
+
|
1115 |
+
#@ my-calendar
|
1116 |
+
#: my-calendar-settings.php:325
|
1117 |
+
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."
|
1118 |
+
msgstr "कैलेंडर को शीर्षक पाठ या सूची या कैलेंडर को स्वरूप में प्रदर्शित महीने और साल युक्त है. यह पाठ कि मौजूदा पाठ बाद प्रदर्शित किया जाएगा."
|
1119 |
+
|
1120 |
+
#@ my-calendar
|
1121 |
+
#: my-calendar-settings.php:393
|
1122 |
+
msgid "Display a jumpbox for changing month and year quickly?"
|
1123 |
+
msgstr "महीने और साल तेज़ी से बदलने के लिए एक jumpbox प्रदर्शित करें?"
|
1124 |
+
|
1125 |
+
#@ my-calendar
|
1126 |
+
#: my-calendar-settings.php:455
|
1127 |
+
msgid "Show short description field on calendar."
|
1128 |
+
msgstr "कैलेंडर को संक्षिप्त विवरण क्षेत्र दिखाएँ."
|
1129 |
+
|
1130 |
+
#@ my-calendar
|
1131 |
+
#: my-calendar-settings.php:458
|
1132 |
+
msgid "Show full description field on calendar."
|
1133 |
+
msgstr "कैलेंडर पर पूर्ण विवरण क्षेत्र दिखाएँ."
|
1134 |
+
|
1135 |
+
#@ my-calendar
|
1136 |
+
#: my-calendar-settings.php:537
|
1137 |
+
msgid "Show Event Location Dropdown Menu"
|
1138 |
+
msgstr "ईवेंट स्थान ड्रापडाउन मेनू दिखाएँ"
|
1139 |
+
|
1140 |
+
#@ my-calendar
|
1141 |
+
#: my-calendar-settings.php:537
|
1142 |
+
msgid "Show Event Short Description field"
|
1143 |
+
msgstr "ईवेंट लघु विवरण क्षेत्र दिखाएँ"
|
1144 |
+
|
1145 |
+
#@ my-calendar
|
1146 |
+
#: my-calendar-settings.php:537
|
1147 |
+
msgid "Show Event Description Field"
|
1148 |
+
msgstr "ईवेंट विवरण फ़ील्ड दिखाएँ"
|
1149 |
+
|
1150 |
+
#@ my-calendar
|
1151 |
+
#: my-calendar-settings.php:537
|
1152 |
+
msgid "Show Event Category field"
|
1153 |
+
msgstr "इवेंट श्रेणी क्षेत्रदिखाएँ"
|
1154 |
+
|
1155 |
+
#@ my-calendar
|
1156 |
+
#: my-calendar-settings.php:537
|
1157 |
+
msgid "Show Event Link field"
|
1158 |
+
msgstr "ईवेंट लिंक फ़ील्ड दिखाएँ"
|
1159 |
+
|
1160 |
+
#@ my-calendar
|
1161 |
+
#: my-calendar-settings.php:537
|
1162 |
+
msgid "Show Event Recurrence Options"
|
1163 |
+
msgstr "ईवेंट पुनरावर्तन विकल्प दिखाएँ"
|
1164 |
+
|
1165 |
+
#@ my-calendar
|
1166 |
+
#: my-calendar-settings.php:550
|
1167 |
+
msgid "Administrators see all input options"
|
1168 |
+
msgstr "प्रशासक सभी इनपुट विकल्पों को देख"
|
1169 |
+
|
1170 |
+
#@ my-calendar
|
1171 |
+
#: my-calendar-settings.php:470
|
1172 |
+
msgid "Default usage of category colors."
|
1173 |
+
msgstr "डिफ़ॉल्ट श्रेणी रंगों के उपयोग."
|
1174 |
+
|
1175 |
+
#@ my-calendar
|
1176 |
+
#: my-calendar-settings.php:471
|
1177 |
+
msgid "Apply category colors to event titles as a font color."
|
1178 |
+
msgstr "ईवेंट खिताब के लिए एक फ़ॉन्ट रंग रूप वर्ग रंग लागू करें."
|
1179 |
+
|
1180 |
+
#@ my-calendar
|
1181 |
+
#: my-calendar-settings.php:472
|
1182 |
+
msgid "Apply category colors to event titles as a background color."
|
1183 |
+
msgstr "ईवेंट खिताब के लिए एक पृष्ठभूमि रंग रूप वर्ग रंग लागू करें."
|
1184 |
+
|
1185 |
+
#@ my-calendar
|
1186 |
+
#: my-calendar-settings.php:595
|
1187 |
+
msgid "Calendar Options: Email Notifications"
|
1188 |
+
msgstr "कैलेंडर के विकल्प: ईमेल अधिसूचना"
|
1189 |
+
|
1190 |
+
#@ my-calendar
|
1191 |
+
#: my-calendar-settings.php:599
|
1192 |
+
msgid "Send Email Notifications when new events are scheduled or reserved."
|
1193 |
+
msgstr "ईमेल अधिसूचना जब नए घटनाओं अनुसूचित या सुरक्षित कर रहे हैं."
|
1194 |
+
|
1195 |
+
#@ my-calendar
|
1196 |
+
#: my-calendar-settings.php:602
|
1197 |
+
msgid "Notification messages are sent to: "
|
1198 |
+
msgstr "सूचना संदेश के लिए भेजा जाता है."
|
1199 |
+
|
1200 |
+
#@ my-calendar
|
1201 |
+
#: my-calendar-settings.php:605
|
1202 |
+
msgid "Email subject"
|
1203 |
+
msgstr "ईमेल विषय"
|
1204 |
+
|
1205 |
+
#@ my-calendar
|
1206 |
+
#: my-calendar-settings.php:605
|
1207 |
+
msgid "New event Added"
|
1208 |
+
msgstr "नई ईवेंट जोड़ा गया"
|
1209 |
+
|
1210 |
+
#@ my-calendar
|
1211 |
+
#: my-calendar-settings.php:608
|
1212 |
+
msgid "Message Body"
|
1213 |
+
msgstr "संदेश शारीरिक"
|
1214 |
+
|
1215 |
+
#@ my-calendar
|
1216 |
+
#: my-calendar-settings.php:608
|
1217 |
+
msgid "New Event:"
|
1218 |
+
msgstr "नई घटना:"
|
1219 |
+
|
1220 |
+
#@ my-calendar
|
1221 |
+
#: my-calendar-settings.php:609
|
1222 |
+
msgid "Shortcode Help"
|
1223 |
+
msgstr "मदद shortcode"
|
1224 |
+
|
1225 |
+
#@ my-calendar
|
1226 |
+
#: my-calendar-settings.php:609
|
1227 |
+
msgid "All template shortcodes are available."
|
1228 |
+
msgstr "सभी टेम्पलेट शॉर्टकोड उपलब्ध हैं."
|
1229 |
+
|
1230 |
+
#@ my-calendar
|
1231 |
+
#: my-calendar-styles.php:129
|
1232 |
+
msgid "My Calendar Styles"
|
1233 |
+
msgstr "मेरे कैलेंडर शैलियाँ"
|
1234 |
+
|
1235 |
+
#@ my-calendar
|
1236 |
+
#: my-calendar-styles.php:133
|
1237 |
+
msgid "Calendar Style Settings"
|
1238 |
+
msgstr "कैलेंडर शैली सेटिंग्स"
|
1239 |
+
|
1240 |
+
#@ my-calendar
|
1241 |
+
#: my-calendar-styles.php:187
|
1242 |
+
msgid "CSS Style Options"
|
1243 |
+
msgstr "सीएसएस शैली विकल्प"
|
1244 |
+
|
1245 |
+
#@ my-calendar
|
1246 |
+
#: my-calendar-styles.php:192
|
1247 |
+
msgid "Disable My Calendar Stylesheet"
|
1248 |
+
msgstr "मेरे कैलेंडर स्टाइलशीट निष्क्रिय करें"
|
1249 |
+
|
1250 |
+
#@ my-calendar
|
1251 |
+
#: my-calendar-styles.php:195
|
1252 |
+
msgid "Edit the stylesheet for My Calendar"
|
1253 |
+
msgstr "मेरा कैलेंडर के लिए स्टाइलशीट संपादित"
|
1254 |
+
|
1255 |
+
#@ my-calendar
|
1256 |
+
#: my-calendar-behaviors.php:91
|
1257 |
+
#: my-calendar-behaviors.php:122
|
1258 |
+
#: my-calendar-behaviors.php:153
|
1259 |
+
#: my-calendar-behaviors.php:184
|
1260 |
+
#: my-calendar-behaviors.php:205
|
1261 |
+
msgid "Save"
|
1262 |
+
msgstr "बचाना"
|
1263 |
+
|
1264 |
+
#@ my-calendar
|
1265 |
+
#: my-calendar-behaviors.php:83
|
1266 |
+
msgid "Calendar Behaviors: Calendar View"
|
1267 |
+
msgstr "कैलेंडर व्यवहार: कैलेंडर देखें"
|
1268 |
+
|
1269 |
+
#@ my-calendar
|
1270 |
+
#: my-calendar-behaviors.php:85
|
1271 |
+
msgid "Disable Calendar Javascript Effects"
|
1272 |
+
msgstr "निष्क्रिय करें कैलेंडर जावास्क्रिप्ट प्रभाव"
|
1273 |
+
|
1274 |
+
#@ my-calendar
|
1275 |
+
#: my-calendar-behaviors.php:88
|
1276 |
+
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
1277 |
+
msgstr "कैलेंडर स्वरूप में मेरा कैलेंडर के लिए jQuery के स्क्रिप्ट संपादित"
|
1278 |
+
|
1279 |
+
#@ my-calendar
|
1280 |
+
#: my-calendar-behaviors.php:114
|
1281 |
+
msgid "Calendar Behaviors: List View"
|
1282 |
+
msgstr "सूची देखें: कैलेंडर व्यवहार"
|
1283 |
+
|
1284 |
+
#@ my-calendar
|
1285 |
+
#: my-calendar-behaviors.php:116
|
1286 |
+
msgid "Disable List Javascript Effects"
|
1287 |
+
msgstr "निष्क्रिय करें सूची जावास्क्रिप्ट प्रभाव"
|
1288 |
+
|
1289 |
+
#@ my-calendar
|
1290 |
+
#: my-calendar-behaviors.php:119
|
1291 |
+
msgid "Edit the jQuery scripts for My Calendar in List format"
|
1292 |
+
msgstr "सूची प्रारूप में मेरा कैलेंडर के लिए jQuery के स्क्रिप्ट संपादित"
|
1293 |
+
|
1294 |
+
#@ my-calendar
|
1295 |
+
#: my-calendar-behaviors.php:145
|
1296 |
+
msgid "Calendar Behaviors: Mini Calendar View"
|
1297 |
+
msgstr "कैलेंडर व्यवहार मिनी कैलेंडर देखें:"
|
1298 |
+
|
1299 |
+
#@ my-calendar
|
1300 |
+
#: my-calendar-behaviors.php:147
|
1301 |
+
msgid "Disable Mini Javascript Effects"
|
1302 |
+
msgstr "मिनी जावास्क्रिप्ट प्रभाव निष्क्रिय करें"
|
1303 |
+
|
1304 |
+
#@ my-calendar
|
1305 |
+
#: my-calendar-behaviors.php:150
|
1306 |
+
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
1307 |
+
msgstr "मिनी कैलेंडर स्वरूप में मेरा कैलेंडर के लिए jQuery के स्क्रिप्ट संपादित"
|
1308 |
+
|
1309 |
+
#@ my-calendar
|
1310 |
+
#: my-calendar-upgrade-db.php:17
|
1311 |
+
#: my-calendar-upgrade-db.php:25
|
1312 |
+
msgid "The My Calendar database needs to be updated."
|
1313 |
+
msgstr "मेरा कैलेंडर डेटाबेस को अद्यतन करने की जरूरत है."
|
1314 |
+
|
1315 |
+
#@ my-calendar
|
1316 |
+
#: my-calendar-upgrade-db.php:18
|
1317 |
+
#: my-calendar-upgrade-db.php:38
|
1318 |
+
msgid "Update now"
|
1319 |
+
msgstr "अभी अपडेट"
|
1320 |
+
|
1321 |
+
#@ my-calendar
|
1322 |
+
#: my-calendar-upgrade-db.php:37
|
1323 |
+
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!"
|
1324 |
+
msgstr "किसी भी घटना दर्ज नहीं किया , तो मेरा कैलेंडर नहीं बता सकते हैं कि आप डेटाबेस अप टू डेट है. यदि आप घटना नहीं जोड़ सकते हैं, अपने डेटाबेस उन्नयन!"
|
1325 |
+
|
1326 |
+
#@ my-calendar
|
1327 |
+
#: my-calendar-upgrade-db.php:47
|
1328 |
+
msgid "My Calendar Database is updated."
|
1329 |
+
msgstr "मेरा कैलेंडर डेटाबेस अद्यतन किया जाता है."
|
1330 |
+
|
1331 |
+
#@ my-calendar
|
1332 |
+
#: my-calendar-widgets.php:42
|
1333 |
+
#: my-calendar-widgets.php:128
|
1334 |
+
msgid "Template"
|
1335 |
+
msgstr "टेम्पलेट"
|
1336 |
+
|
1337 |
+
#@ my-calendar
|
1338 |
+
#: my-calendar-widgets.php:53
|
1339 |
+
msgid "Show this text if there are no events today:"
|
1340 |
+
msgstr "यह पाठ दिखाएँ अगर वहाँ कोई घटनाओं आज कर रहे हैं:"
|
1341 |
+
|
1342 |
+
#@ my-calendar
|
1343 |
+
#: my-calendar-widgets.php:132
|
1344 |
+
msgid "Widget Options"
|
1345 |
+
msgstr "विजेट विकल्प"
|
1346 |
+
|
1347 |
+
#@ my-calendar
|
1348 |
+
#: my-calendar-widgets.php:143
|
1349 |
+
msgid "Display upcoming events by:"
|
1350 |
+
msgstr "आगामी घटनाओं प्रदर्शित करें:"
|
1351 |
+
|
1352 |
+
#@ my-calendar
|
1353 |
+
#: my-calendar-widgets.php:144
|
1354 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
1355 |
+
msgstr "घटनाओं (जैसे 2 अतीत, 3 भविष्य)"
|
1356 |
+
|
1357 |
+
#@ my-calendar
|
1358 |
+
#: my-calendar-widgets.php:145
|
1359 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
1360 |
+
msgstr "तारीखें (उदाहरण के 4 दिनों के अतीत, 5 आगे)"
|
1361 |
+
|
1362 |
+
#@ my-calendar
|
1363 |
+
#: my-calendar-event-manager.php:919
|
1364 |
+
#: my-calendar-templates.php:203
|
1365 |
+
msgid "Published"
|
1366 |
+
msgstr "प्रकाशित"
|
1367 |
+
|
1368 |
+
#@ my-calendar
|
1369 |
+
#: my-calendar-event-manager.php:920
|
1370 |
+
#: my-calendar-templates.php:203
|
1371 |
+
msgid "Reserved"
|
1372 |
+
msgstr "आरक्षित"
|
1373 |
+
|
1374 |
+
#@ my-calendar
|
1375 |
+
#: my-calendar-core.php:70
|
1376 |
+
#: my-calendar.php:171
|
1377 |
+
msgid "Settings"
|
1378 |
+
msgstr "सेटिंग्स"
|
1379 |
+
|
1380 |
+
#@ my-calendar
|
1381 |
+
#: my-calendar-core.php:71
|
1382 |
+
#: my-calendar.php:175
|
1383 |
+
msgid "Help"
|
1384 |
+
msgstr "मदद"
|
1385 |
+
|
1386 |
+
#@ my-calendar
|
1387 |
+
#: my-calendar.php:130
|
1388 |
+
msgid "Get Support"
|
1389 |
+
msgstr "समर्थन हो जाओ"
|
1390 |
+
|
1391 |
+
#@ my-calendar
|
1392 |
+
#: my-calendar.php:132
|
1393 |
+
#: my-calendar.php:175
|
1394 |
+
msgid "My Calendar Help"
|
1395 |
+
msgstr "मेरे कैलेंडर सहायता"
|
1396 |
+
|
1397 |
+
#@ my-calendar
|
1398 |
+
#: my-calendar.php:133
|
1399 |
+
msgid "Make a Donation"
|
1400 |
+
msgstr "एक दान करें"
|
1401 |
+
|
1402 |
+
#@ my-calendar
|
1403 |
+
#: my-calendar.php:158
|
1404 |
+
#: my-calendar.php:161
|
1405 |
+
msgid "My Calendar"
|
1406 |
+
msgstr "मेरा कैलेंडर"
|
1407 |
+
|
1408 |
+
#@ my-calendar
|
1409 |
+
#: my-calendar.php:167
|
1410 |
+
msgid "Add/Edit Events"
|
1411 |
+
msgstr "घटनाक्रम जोड़ें / संपादित"
|
1412 |
+
|
1413 |
+
#@ my-calendar
|
1414 |
+
#: my-calendar.php:172
|
1415 |
+
msgid "Style Editor"
|
1416 |
+
msgstr "शैली संपादक"
|
1417 |
+
|
1418 |
+
#@ my-calendar
|
1419 |
+
#: my-calendar-output.php:148
|
1420 |
+
msgid "Event Details"
|
1421 |
+
msgstr "घटना विवरण"
|
1422 |
+
|
1423 |
+
#@ my-calendar
|
1424 |
+
#: my-calendar-output.php:171
|
1425 |
+
#: my-calendar-output.php:282
|
1426 |
+
msgid "Close"
|
1427 |
+
msgstr "बंद करें"
|
1428 |
+
|
1429 |
+
#@ my-calendar
|
1430 |
+
#: my-calendar-output.php:186
|
1431 |
+
msgid "Not Applicable"
|
1432 |
+
msgstr "लागू नहीं है"
|
1433 |
+
|
1434 |
+
#@ my-calendar
|
1435 |
+
#: my-calendar-output.php:200
|
1436 |
+
msgid "Posted by"
|
1437 |
+
msgstr "पोस्ट करनेवाले"
|
1438 |
+
|
1439 |
+
#@ my-calendar
|
1440 |
+
#: my-calendar-output.php:262
|
1441 |
+
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
1442 |
+
msgstr "इस वर्ग एक श्रृंखला का हिस्सा है. आप इस श्रृंखला में पहली ईवेंट में भाग लेने के लिए रजिस्टर करना होगा."
|
1443 |
+
|
1444 |
+
#@ my-calendar
|
1445 |
+
#: button/generator.php:98
|
1446 |
+
#: my-calendar-output.php:356
|
1447 |
+
#: my-calendar-widgets.php:592
|
1448 |
+
msgid "Month"
|
1449 |
+
msgstr "माह"
|
1450 |
+
|
1451 |
+
#@ my-calendar
|
1452 |
+
#: my-calendar-output.php:361
|
1453 |
+
msgid "Year"
|
1454 |
+
msgstr "वर्ष"
|
1455 |
+
|
1456 |
+
#@ my-calendar
|
1457 |
+
#: my-calendar-output.php:389
|
1458 |
+
msgid "Go"
|
1459 |
+
msgstr "जाना"
|
1460 |
+
|
1461 |
+
#@ my-calendar
|
1462 |
+
#: my-calendar-output.php:481
|
1463 |
+
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1464 |
+
msgstr "<abbr title=\"Sunday\">Sun</abbr>"
|
1465 |
+
|
1466 |
+
#@ my-calendar
|
1467 |
+
#: my-calendar-output.php:482
|
1468 |
+
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1469 |
+
msgstr "<abbr title=\"Sunday\">Sun</abbr>"
|
1470 |
+
|
1471 |
+
#@ my-calendar
|
1472 |
+
#: my-calendar-output.php:483
|
1473 |
+
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1474 |
+
msgstr "<abbr title=\"Tuesday\">Tues</abbr>"
|
1475 |
+
|
1476 |
+
#@ my-calendar
|
1477 |
+
#: my-calendar-output.php:484
|
1478 |
+
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1479 |
+
msgstr "<abbr title=\"Wednesday\">Wed</abbr>"
|
1480 |
+
|
1481 |
+
#@ my-calendar
|
1482 |
+
#: my-calendar-output.php:485
|
1483 |
+
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1484 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1485 |
+
|
1486 |
+
#@ my-calendar
|
1487 |
+
#: my-calendar-output.php:486
|
1488 |
+
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1489 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1490 |
+
|
1491 |
+
#@ my-calendar
|
1492 |
+
#: my-calendar-output.php:487
|
1493 |
+
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1494 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1495 |
+
|
1496 |
+
#@ my-calendar
|
1497 |
+
#: my-calendar-output.php:492
|
1498 |
+
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1499 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1500 |
+
|
1501 |
+
#@ my-calendar
|
1502 |
+
#: my-calendar-output.php:493
|
1503 |
+
msgid "<abbr title=\"Monday\">M</abbr>"
|
1504 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1505 |
+
|
1506 |
+
#@ my-calendar
|
1507 |
+
#: my-calendar-output.php:494
|
1508 |
+
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1509 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1510 |
+
|
1511 |
+
#@ my-calendar
|
1512 |
+
#: my-calendar-output.php:495
|
1513 |
+
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1514 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1515 |
+
|
1516 |
+
#@ my-calendar
|
1517 |
+
#: my-calendar-output.php:496
|
1518 |
+
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1519 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1520 |
+
|
1521 |
+
#@ my-calendar
|
1522 |
+
#: my-calendar-output.php:497
|
1523 |
+
msgid "<abbr title=\"Friday\">F</abbr>"
|
1524 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1525 |
+
|
1526 |
+
#@ my-calendar
|
1527 |
+
#: my-calendar-output.php:498
|
1528 |
+
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1529 |
+
msgstr "<abbr title=\"Thursday\">Thur</abbr>"
|
1530 |
+
|
1531 |
+
#@ my-calendar
|
1532 |
+
#: my-calendar-output.php:627
|
1533 |
+
msgid "and"
|
1534 |
+
msgstr "और"
|
1535 |
+
|
1536 |
+
#@ my-calendar
|
1537 |
+
#: my-calendar-widgets.php:551
|
1538 |
+
msgid "Calendar"
|
1539 |
+
msgstr "कैलेंडर"
|
1540 |
+
|
1541 |
+
#@ my-calendar
|
1542 |
+
#: my-calendar-output.php:648
|
1543 |
+
msgid "Events in"
|
1544 |
+
msgstr "घटनाक्रम"
|
1545 |
+
|
1546 |
+
#@ my-calendar
|
1547 |
+
#: my-calendar-output.php:874
|
1548 |
+
msgid "There are no events scheduled during this period."
|
1549 |
+
msgstr "वहाँ इस अवधि के दौरान अनुसूचित घटना हैं."
|
1550 |
+
|
1551 |
+
#@ my-calendar
|
1552 |
+
#: my-calendar-output.php:887
|
1553 |
+
msgid "Category Key"
|
1554 |
+
msgstr "श्रेणी कुंजी"
|
1555 |
+
|
1556 |
+
#@ my-calendar
|
1557 |
+
#: button/generator.php:12
|
1558 |
+
msgid "You don't have access to this function."
|
1559 |
+
msgstr "आप इस समारोह के लिए मान्य नहीं है."
|
1560 |
+
|
1561 |
+
#@ my-calendar
|
1562 |
+
#: button/generator.php:18
|
1563 |
+
#: button/generator.php:44
|
1564 |
+
msgid "My Calendar Shortcode Generator"
|
1565 |
+
msgstr "मेरा कैलेंडर शोर्टकोड जेनरेटर"
|
1566 |
+
|
1567 |
+
#@ my-calendar
|
1568 |
+
#: button/generator.php:47
|
1569 |
+
msgid "Shortcode Attributes"
|
1570 |
+
msgstr "शोर्टकोड विशेषताएँ"
|
1571 |
+
|
1572 |
+
#@ my-calendar
|
1573 |
+
#: button/generator.php:52
|
1574 |
+
msgid "Location filter type:"
|
1575 |
+
msgstr "स्थान फिल्टर प्रकार:"
|
1576 |
+
|
1577 |
+
#@ my-calendar
|
1578 |
+
#: button/generator.php:54
|
1579 |
+
msgid "All locations"
|
1580 |
+
msgstr "सभी स्थान"
|
1581 |
+
|
1582 |
+
#@ my-calendar
|
1583 |
+
#: button/generator.php:55
|
1584 |
+
#: my-calendar-settings.php:513
|
1585 |
+
#: my-calendar-settings.php:686
|
1586 |
+
msgid "Location Name"
|
1587 |
+
msgstr "स्थान का नाम"
|
1588 |
+
|
1589 |
+
#@ my-calendar
|
1590 |
+
#: button/generator.php:64
|
1591 |
+
msgid "Location filter value:"
|
1592 |
+
msgstr "स्थान फिल्टर मूल्य:"
|
1593 |
+
|
1594 |
+
#@ my-calendar
|
1595 |
+
#: button/generator.php:68
|
1596 |
+
msgid "Format"
|
1597 |
+
msgstr "फार्मेट"
|
1598 |
+
|
1599 |
+
#@ my-calendar
|
1600 |
+
#: button/generator.php:70
|
1601 |
+
msgid "Grid"
|
1602 |
+
msgstr "ग्रिड"
|
1603 |
+
|
1604 |
+
#@ my-calendar
|
1605 |
+
#: button/generator.php:71
|
1606 |
+
msgid "List"
|
1607 |
+
msgstr "सूची"
|
1608 |
+
|
1609 |
+
#@ my-calendar
|
1610 |
+
#: button/generator.php:75
|
1611 |
+
msgid "Show Category Key"
|
1612 |
+
msgstr "श्रेणी कुंजी"
|
1613 |
+
|
1614 |
+
#@ my-calendar
|
1615 |
+
#: button/generator.php:77
|
1616 |
+
#: button/generator.php:84
|
1617 |
+
#: button/generator.php:91
|
1618 |
+
#: my-calendar-widgets.php:580
|
1619 |
+
#: my-calendar-widgets.php:586
|
1620 |
+
msgid "Yes"
|
1621 |
+
msgstr "हां"
|
1622 |
+
|
1623 |
+
#@ my-calendar
|
1624 |
+
#: button/generator.php:78
|
1625 |
+
#: button/generator.php:85
|
1626 |
+
#: button/generator.php:92
|
1627 |
+
#: my-calendar-widgets.php:581
|
1628 |
+
#: my-calendar-widgets.php:587
|
1629 |
+
msgid "No"
|
1630 |
+
msgstr "नहीं"
|
1631 |
+
|
1632 |
+
#@ my-calendar
|
1633 |
+
#: button/generator.php:82
|
1634 |
+
msgid "Show Previous/Next Links"
|
1635 |
+
msgstr "पिछला / अगला लिंक"
|
1636 |
+
|
1637 |
+
#@ my-calendar
|
1638 |
+
#: button/generator.php:89
|
1639 |
+
msgid "Show Format Toggle"
|
1640 |
+
msgstr "स्वरूप टॉगल दिखाएँ"
|
1641 |
+
|
1642 |
+
#@ my-calendar
|
1643 |
+
#: button/generator.php:96
|
1644 |
+
msgid "Time Segment"
|
1645 |
+
msgstr "समय अनुभाग"
|
1646 |
+
|
1647 |
+
#@ my-calendar
|
1648 |
+
#: button/generator.php:99
|
1649 |
+
#: my-calendar-widgets.php:593
|
1650 |
+
msgid "Week"
|
1651 |
+
msgstr "सप्ताह"
|
1652 |
+
|
1653 |
+
#@ my-calendar
|
1654 |
+
#: button/generator.php:100
|
1655 |
+
msgid "Day"
|
1656 |
+
msgstr "दिन"
|
1657 |
+
|
1658 |
+
#@ my-calendar
|
1659 |
+
#: button/generator.php:105
|
1660 |
+
msgid "Generate Shortcode"
|
1661 |
+
msgstr " शोर्टकोड उत्पन्न"
|
1662 |
+
|
1663 |
+
#@ my-calendar
|
1664 |
+
#: button/generator.php:107
|
1665 |
+
msgid "<strong>Note:</strong> If you provide a location filter value, it must be an exact match for that information as saved with your events. (e.g. \"Saint Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
1666 |
+
msgstr "<strong>Note:</strong> यदि आप एक स्थान फिल्टर मूल्य प्रदान करते हैं, यह है कि जानकारी के रूप में आप घटनाओं के साथ सहेजे के लिए एक सटीक मैच होना चाहिए. (जैसे \"सेंट पॉल\" के बराबर नहीं है \"सेंट पॉल \" या \"सेंट पॉल \")"
|
1667 |
+
|
1668 |
+
#@ my-calendar
|
1669 |
+
#: button/generator.php:117
|
1670 |
+
msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
|
1671 |
+
msgstr "मेरा कैलेंडर: यह जनरेटर अपने पृष्ठ में शोर्टकोड डाल करने के लिए नहीं जा रहा है.क्षमा करें!"
|
1672 |
+
|
1673 |
+
#@ my-calendar
|
1674 |
+
#: my-calendar-behaviors.php:43
|
1675 |
+
msgid "Behavior Settings saved"
|
1676 |
+
msgstr "व्यवहार सेटिंग्स को सहेजे"
|
1677 |
+
|
1678 |
+
#@ my-calendar
|
1679 |
+
#: my-calendar-behaviors.php:67
|
1680 |
+
msgid "My Calendar Behaviors"
|
1681 |
+
msgstr "मेरा कैलेंडर व्यवहार"
|
1682 |
+
|
1683 |
+
#@ my-calendar
|
1684 |
+
#: my-calendar-behaviors.php:72
|
1685 |
+
msgid "Calendar Behavior Settings"
|
1686 |
+
msgstr "कैलेंडर व्यवहार सेटिंग्स"
|
1687 |
+
|
1688 |
+
#@ my-calendar
|
1689 |
+
#: my-calendar-behaviors.php:77
|
1690 |
+
msgid "Apply JavaScript only on these pages (comma separated page IDs)"
|
1691 |
+
msgstr "इन पृष्ठों पर केवल जावास्क्रिप्ट लागू करें (अल्पविराम से अलग पृष्ठ आईडी)"
|
1692 |
+
|
1693 |
+
#@ my-calendar
|
1694 |
+
#: my-calendar-behaviors.php:85
|
1695 |
+
msgid "Update/Reset the My Calendar Calendar Javascript"
|
1696 |
+
msgstr "अपडेट/रीसेट मेरा कैलेंडर कैलेंडर जावास्क्रिप्ट "
|
1697 |
+
|
1698 |
+
#@ my-calendar
|
1699 |
+
#: my-calendar-behaviors.php:100
|
1700 |
+
#: my-calendar-behaviors.php:131
|
1701 |
+
#: my-calendar-behaviors.php:162
|
1702 |
+
#: my-calendar-behaviors.php:192
|
1703 |
+
msgid "Comparing scripts with latest installed version of My Calendar"
|
1704 |
+
msgstr "मेरा कैलेंडर के नवीनतम संस्करण के साथ स्थापित स्क्रिप्ट तुलना"
|
1705 |
+
|
1706 |
+
#@ my-calendar
|
1707 |
+
#: my-calendar-behaviors.php:100
|
1708 |
+
#: my-calendar-behaviors.php:131
|
1709 |
+
#: my-calendar-behaviors.php:162
|
1710 |
+
#: my-calendar-behaviors.php:192
|
1711 |
+
#: my-calendar-styles.php:208
|
1712 |
+
msgid "Latest (from plugin)"
|
1713 |
+
msgstr "नवीनतम (प्लगइन से)"
|
1714 |
+
|
1715 |
+
#@ my-calendar
|
1716 |
+
#: my-calendar-behaviors.php:100
|
1717 |
+
#: my-calendar-behaviors.php:131
|
1718 |
+
#: my-calendar-behaviors.php:162
|
1719 |
+
#: my-calendar-behaviors.php:192
|
1720 |
+
#: my-calendar-styles.php:208
|
1721 |
+
msgid "Current (in use)"
|
1722 |
+
msgstr "वर्तमान (प्रयोग)"
|
1723 |
+
|
1724 |
+
#@ my-calendar
|
1725 |
+
#: my-calendar-behaviors.php:104
|
1726 |
+
msgid "There have been updates to the calendar view scripts."
|
1727 |
+
msgstr "कैलेंडर दृश्य स्क्रिप्ट अद्यतन किया गया है."
|
1728 |
+
|
1729 |
+
#@ my-calendar
|
1730 |
+
#: my-calendar-behaviors.php:104
|
1731 |
+
#: my-calendar-behaviors.php:135
|
1732 |
+
#: my-calendar-behaviors.php:166
|
1733 |
+
#: my-calendar-behaviors.php:196
|
1734 |
+
msgid "Compare your scripts with latest installed version of My Calendar."
|
1735 |
+
msgstr "मेरा कैलेंडर का नवीनतम संस्करण स्थापित के साथ अपनी स्क्रिप्ट की तुलना."
|
1736 |
+
|
1737 |
+
#@ my-calendar
|
1738 |
+
#: my-calendar-behaviors.php:108
|
1739 |
+
#: my-calendar-behaviors.php:139
|
1740 |
+
#: my-calendar-behaviors.php:170
|
1741 |
+
#: my-calendar-behaviors.php:200
|
1742 |
+
msgid "Your script matches that included with My Calendar."
|
1743 |
+
msgstr "आपके स्क्रिप्ट मेल खाता है कि मेरा कैलेंडर के साथ शामिल है."
|
1744 |
+
|
1745 |
+
#@ my-calendar
|
1746 |
+
#: my-calendar-behaviors.php:116
|
1747 |
+
msgid "Update/Reset the My Calendar List Javascript"
|
1748 |
+
msgstr "अपडेट/रीसेट मेरे कैलेंडर सूची जावास्क्रिप्ट"
|
1749 |
+
|
1750 |
+
#@ my-calendar
|
1751 |
+
#: my-calendar-behaviors.php:135
|
1752 |
+
msgid "There have been updates to the list view scripts."
|
1753 |
+
msgstr "सूची दृश्य स्क्रिप्ट अद्यतन किया गया है."
|
1754 |
+
|
1755 |
+
#@ my-calendar
|
1756 |
+
#: my-calendar-behaviors.php:147
|
1757 |
+
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
1758 |
+
msgstr "अपडेट/रीसेट मेरा कैलेंडर मिनी स्वरूप जावास्क्रिप्ट "
|
1759 |
+
|
1760 |
+
#@ my-calendar
|
1761 |
+
#: my-calendar-behaviors.php:166
|
1762 |
+
msgid "There have been updates to the mini view scripts."
|
1763 |
+
msgstr "मिनी दृश्य स्क्रिप्ट को अद्यतन किया गया है."
|
1764 |
+
|
1765 |
+
#@ my-calendar
|
1766 |
+
#: my-calendar-behaviors.php:176
|
1767 |
+
msgid "Calendar Behaviors: AJAX Navigation"
|
1768 |
+
msgstr "कैलेंडर व्यवहार: AJAX नेविगेशन"
|
1769 |
+
|
1770 |
+
#@ my-calendar
|
1771 |
+
#: my-calendar-behaviors.php:178
|
1772 |
+
msgid "Update/Reset the My Calendar AJAX Javascript"
|
1773 |
+
msgstr "अपडेट/रीसेट मेरे कैलेंडर AJAX जावास्क्रिप्ट "
|
1774 |
+
|
1775 |
+
#@ my-calendar
|
1776 |
+
#: my-calendar-behaviors.php:178
|
1777 |
+
msgid "Disable AJAX Effects"
|
1778 |
+
msgstr "AJAX प्रभाव निष्क्रिय करें"
|
1779 |
+
|
1780 |
+
#@ my-calendar
|
1781 |
+
#: my-calendar-behaviors.php:181
|
1782 |
+
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
1783 |
+
msgstr "मेरा कैलेंडर AJAX नेविगेशन के लिए jQuery का स्क्रिप्ट संपादित करें"
|
1784 |
+
|
1785 |
+
#@ my-calendar
|
1786 |
+
#: my-calendar-behaviors.php:196
|
1787 |
+
msgid "There have been updates to the AJAX scripts."
|
1788 |
+
msgstr "वहाँ AJAX स्क्रिप्ट को अद्यतन किया गया है."
|
1789 |
+
|
1790 |
+
#@ my-calendar
|
1791 |
+
#: my-calendar-behaviors.php:210
|
1792 |
+
msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
|
1793 |
+
msgstr "जावास्क्रिप्ट रीसेट संस्करण वर्तमान प्लग - इन के साथ वितरित को कि स्क्रिप्ट की स्थापना की जाएगी."
|
1794 |
+
|
1795 |
+
#@ my-calendar
|
1796 |
+
#: my-calendar-categories.php:137
|
1797 |
+
msgid "Error: Category was not edited."
|
1798 |
+
msgstr "त्रुटि: श्रेणी संपादित नहीं था."
|
1799 |
+
|
1800 |
+
#@ my-calendar
|
1801 |
+
#: my-calendar-categories.php:218
|
1802 |
+
msgid "Add a New Category"
|
1803 |
+
msgstr "एक नई श्रेणी जोड़ें"
|
1804 |
+
|
1805 |
+
#@ my-calendar
|
1806 |
+
#: my-calendar-core.php:198
|
1807 |
+
#, php-format
|
1808 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
1809 |
+
msgstr "<br /> <strong> नोट: </ strong> करें <a समीक्षा class=\"thickbox\" href=\"%1$s\"> चैंज </ a> नवीनीकरण करने से पहले."
|
1810 |
+
|
1811 |
+
#@ my-calendar
|
1812 |
+
#: my-calendar-core.php:953
|
1813 |
+
msgid "You're currently allowing to subscribers to post events, but aren't using Akismet. My Calendar can use Akismet to check for spam in event submissions. <a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>"
|
1814 |
+
msgstr "आप वर्तमान घटनाओं पोस्ट ग्राहकों को दे रहे हैं, लेकिन का उपयोग कर रहे हैं न्यूज़लैटर नहीं. मेरा कैलेंडर ईवेंट प्रस्तुतियाँ में स्पैम की जांच न्यूज़लैटर उपयोग कर सकते हैं. <a href='https://akismet.com/signup/'> एक Akismet एपीआई कुंजी अब जाओ.</a>"
|
1815 |
+
|
1816 |
+
#@ my-calendar
|
1817 |
+
#: my-calendar-core.php:1078
|
1818 |
+
msgid "Is this your calendar page?"
|
1819 |
+
msgstr "यह आपके कैलेंडर पृष्ठ है?"
|
1820 |
+
|
1821 |
+
#@ my-calendar
|
1822 |
+
#: my-calendar-core.php:1081
|
1823 |
+
msgid "I tried to guess, but don't have a suggestion for you."
|
1824 |
+
msgstr "मुझे लगता है की , लेकिन आप के लिए कोई सलाह नही है."
|
1825 |
+
|
1826 |
+
#@ my-calendar
|
1827 |
+
#: my-calendar-event-manager.php:161
|
1828 |
+
#, php-format
|
1829 |
+
msgid "%1$d events deleted successfully out of %2$d selected"
|
1830 |
+
msgstr "%1$d घटनाओं सफलतापूर्वक %2$d से बाहर नष्ट कर दिया "
|
1831 |
+
|
1832 |
+
#@ my-calendar
|
1833 |
+
#: my-calendar-event-manager.php:163
|
1834 |
+
msgid "Your events have not been deleted. Please investigate."
|
1835 |
+
msgstr "अपनी घटनाएँ नष्ट नहीं किया गया है. जांच करें."
|
1836 |
+
|
1837 |
+
#@ my-calendar
|
1838 |
+
#: my-calendar-event-manager.php:263
|
1839 |
+
msgid "Currently editing your local calendar"
|
1840 |
+
msgstr "वर्तमान में अपने स्थानीय कैलेंडर को संपादन"
|
1841 |
+
|
1842 |
+
#@ my-calendar
|
1843 |
+
#: my-calendar-event-manager.php:265
|
1844 |
+
msgid "Currently editing your central calendar"
|
1845 |
+
msgstr "वर्तमान में आपके केंद्रीय कैलेंडर संपादन"
|
1846 |
+
|
1847 |
+
#@ my-calendar
|
1848 |
+
#: my-calendar-event-manager.php:483
|
1849 |
+
msgid "There was an error acquiring information about this event instance. The date for this event was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
1850 |
+
msgstr "यह ईवेंट उदाहरण के बारे में एक त्रुटि प्राप्त जानकारी थी. इस घटना के लिए तारीख नहीं प्रदान किया गया. <strong> आप संपादन कर रहे हैं इस पूरे पुनरावृत्ति सेट </ strong>."
|
1851 |
+
|
1852 |
+
#@ my-calendar
|
1853 |
+
#: my-calendar-event-manager.php:489
|
1854 |
+
#: my-calendar-event-manager.php:618
|
1855 |
+
#: my-calendar-group-manager.php:292
|
1856 |
+
msgid "(required)"
|
1857 |
+
msgstr "(आवश्यकता)"
|
1858 |
+
|
1859 |
+
#@ my-calendar
|
1860 |
+
#: my-calendar-event-manager.php:508
|
1861 |
+
msgid "This event is not spam"
|
1862 |
+
msgstr "यह घटना स्पैम नहीं है"
|
1863 |
+
|
1864 |
+
#@ my-calendar
|
1865 |
+
#: my-calendar-event-manager.php:526
|
1866 |
+
#: my-calendar-event-manager.php:539
|
1867 |
+
#: my-calendar-group-manager.php:317
|
1868 |
+
#: my-calendar-group-manager.php:325
|
1869 |
+
msgid "This event's image:"
|
1870 |
+
msgstr "यह घटना की छवि है:"
|
1871 |
+
|
1872 |
+
#@ my-calendar
|
1873 |
+
#: my-calendar-event-manager.php:528
|
1874 |
+
#: my-calendar-group-manager.php:319
|
1875 |
+
msgid "Add an image:"
|
1876 |
+
msgstr "एक छवि जोड़ें:"
|
1877 |
+
|
1878 |
+
#@ my-calendar
|
1879 |
+
#: my-calendar-event-manager.php:532
|
1880 |
+
#: my-calendar-group-manager.php:319
|
1881 |
+
msgid "Upload Image"
|
1882 |
+
msgstr "छवि अपलोड करें"
|
1883 |
+
|
1884 |
+
#@ my-calendar
|
1885 |
+
#: my-calendar-event-manager.php:532
|
1886 |
+
#: my-calendar-group-manager.php:319
|
1887 |
+
msgid "Include your image URL or upload an image."
|
1888 |
+
msgstr "आपका छवि यूआरएल या एक छवि अपलोड करें."
|
1889 |
+
|
1890 |
+
#@ my-calendar
|
1891 |
+
#: my-calendar-event-manager.php:549
|
1892 |
+
#: my-calendar-group-manager.php:335
|
1893 |
+
msgid "Event Host"
|
1894 |
+
msgstr "घटना होस्ट"
|
1895 |
+
|
1896 |
+
#@ my-calendar
|
1897 |
+
#: my-calendar-event-manager.php:601
|
1898 |
+
msgid "Event Date and Time"
|
1899 |
+
msgstr "घटना दिनांक और समय"
|
1900 |
+
|
1901 |
+
#@ my-calendar
|
1902 |
+
#: my-calendar-event-manager.php:618
|
1903 |
+
msgid "Time (hh:mm am/pm)"
|
1904 |
+
msgstr "समय (hh:mm am/pm)"
|
1905 |
+
|
1906 |
+
#@ my-calendar
|
1907 |
+
#: my-calendar-event-manager.php:627
|
1908 |
+
msgid "End Date (YYYY-MM-DD)"
|
1909 |
+
msgstr "समाप्ति तिथि (YYYY-MM-DD)"
|
1910 |
+
|
1911 |
+
#@ my-calendar
|
1912 |
+
#: my-calendar-event-manager.php:627
|
1913 |
+
msgid "End Time (hh:mm am/pm)"
|
1914 |
+
msgstr "समाप्ति तिथि (hh:mm am/pm)"
|
1915 |
+
|
1916 |
+
#@ my-calendar
|
1917 |
+
#: my-calendar-event-manager.php:641
|
1918 |
+
msgid "Add another occurrence"
|
1919 |
+
msgstr "एक अन्य घटना में जोड़ें"
|
1920 |
+
|
1921 |
+
#@ my-calendar
|
1922 |
+
#: my-calendar-event-manager.php:642
|
1923 |
+
msgid "Remove last occurrence"
|
1924 |
+
msgstr "अंतिम घटना हटायें"
|
1925 |
+
|
1926 |
+
#@ my-calendar
|
1927 |
+
#: my-calendar-event-manager.php:662
|
1928 |
+
#: my-calendar-templates.php:117
|
1929 |
+
msgid "Daily, weekdays only"
|
1930 |
+
msgstr "दैनिक, केवल कार्यदिवस"
|
1931 |
+
|
1932 |
+
#@ my-calendar
|
1933 |
+
#: my-calendar-event-manager.php:669
|
1934 |
+
msgid "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."
|
1935 |
+
msgstr "\"0\" यदि ईवेंट को अनिश्चित काल के फिर से याद पड़ना चाहिए. दर्ज करें आपके प्रवेश ईवेंट की पहली घटना के बाद घटनाओं की संख्या: पुनरावृत्ति <em>2</em>मतलब ईवेंट में तीन बार होगा."
|
1936 |
+
|
1937 |
+
#@ my-calendar
|
1938 |
+
#: my-calendar-event-manager.php:687
|
1939 |
+
#: my-calendar-group-manager.php:391
|
1940 |
+
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1941 |
+
msgstr "मेरा कैलेंडर ईवेंट पंजीकरण का प्रबंधन नहीं है. केवल जानकारी के लिए यह प्रयोग करें ."
|
1942 |
+
|
1943 |
+
#@ my-calendar
|
1944 |
+
#: my-calendar-event-manager.php:814
|
1945 |
+
#: my-calendar-group-manager.php:480
|
1946 |
+
msgid "Location URL"
|
1947 |
+
msgstr "स्थान यूआरएल"
|
1948 |
+
|
1949 |
+
#@ my-calendar
|
1950 |
+
#: my-calendar-event-manager.php:835
|
1951 |
+
msgid "Special Options"
|
1952 |
+
msgstr "विशेष विकल्प"
|
1953 |
+
|
1954 |
+
#@ my-calendar
|
1955 |
+
#: my-calendar-event-manager.php:837
|
1956 |
+
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1957 |
+
msgstr "यह ईवेंट को रद्द करें अगर यह छुट्टियाँ श्रेणी में एक घटना के साथ एक तारीख को होता है"
|
1958 |
+
|
1959 |
+
#@ my-calendar
|
1960 |
+
#: my-calendar-event-manager.php:840
|
1961 |
+
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1962 |
+
msgstr "यदि इस घटना को बारंबार, और महीने की 5 वीं सप्ताह पर एक महीने में केवल चार सप्ताह साथ आता , यह एक सप्ताह वापस ले."
|
1963 |
+
|
1964 |
+
#@ my-calendar
|
1965 |
+
#: my-calendar-event-manager.php:921
|
1966 |
+
msgid "All"
|
1967 |
+
msgstr "सब"
|
1968 |
+
|
1969 |
+
#@ my-calendar
|
1970 |
+
#: my-calendar-event-manager.php:931
|
1971 |
+
#: my-calendar-group-manager.php:703
|
1972 |
+
msgid "Table of Calendar Events"
|
1973 |
+
msgstr "टेबल कैलेंडर की घटनाएँ"
|
1974 |
+
|
1975 |
+
#@ my-calendar
|
1976 |
+
#: my-calendar-event-manager.php:975
|
1977 |
+
#: my-calendar-group-manager.php:748
|
1978 |
+
msgid "Weekdays"
|
1979 |
+
msgstr "कार्यदिवस"
|
1980 |
+
|
1981 |
+
#@ my-calendar
|
1982 |
+
#: my-calendar-event-manager.php:984
|
1983 |
+
#: my-calendar-group-manager.php:757
|
1984 |
+
#, php-format
|
1985 |
+
msgid "%d Times"
|
1986 |
+
msgstr "%d टाइम्स"
|
1987 |
+
|
1988 |
+
#@ my-calendar
|
1989 |
+
#: my-calendar-event-manager.php:1002
|
1990 |
+
#: my-calendar-group-manager.php:775
|
1991 |
+
#: my-calendar-output.php:287
|
1992 |
+
msgid "Edit Group"
|
1993 |
+
msgstr "संपादित समूह"
|
1994 |
+
|
1995 |
+
#@ my-calendar
|
1996 |
+
#: my-calendar-event-manager.php:1022
|
1997 |
+
msgid "Awaiting Approval"
|
1998 |
+
msgstr "स्वीकृति की प्रतीक्षा कर रहा है"
|
1999 |
+
|
2000 |
+
#@ my-calendar
|
2001 |
+
#: my-calendar-event-manager.php:1033
|
2002 |
+
msgid "Delete checked events"
|
2003 |
+
msgstr "जाँच की गयी घटनाओं को हटाएँ"
|
2004 |
+
|
2005 |
+
#@ my-calendar
|
2006 |
+
#: my-calendar-group-manager.php:57
|
2007 |
+
msgid "Event not updated."
|
2008 |
+
msgstr "घटना अपडेट नहीं."
|
2009 |
+
|
2010 |
+
#@ my-calendar
|
2011 |
+
#: my-calendar-group-manager.php:83
|
2012 |
+
msgid "Event not grouped."
|
2013 |
+
msgstr "घटना समूहीकृत नहीं."
|
2014 |
+
|
2015 |
+
#@ my-calendar
|
2016 |
+
#: my-calendar-group-manager.php:87
|
2017 |
+
msgid "Event grouped successfully"
|
2018 |
+
msgstr "घटना सफलतापूर्वक समूहीकृत"
|
2019 |
+
|
2020 |
+
#@ my-calendar
|
2021 |
+
#: my-calendar-group-manager.php:105
|
2022 |
+
#: my-calendar-group-manager.php:261
|
2023 |
+
#: my-calendar-group-manager.php:287
|
2024 |
+
msgid "Edit Event Group"
|
2025 |
+
msgstr "घटना समूह संपादित करें"
|
2026 |
+
|
2027 |
+
#@ my-calendar
|
2028 |
+
#: my-calendar-group-manager.php:109
|
2029 |
+
msgid "You must provide an event group id in order to edit it"
|
2030 |
+
msgstr "आपको एक घटना समूह आईडी प्रदान करने के लिए इसे संपादित करना चाहिए"
|
2031 |
+
|
2032 |
+
#@ my-calendar
|
2033 |
+
#: my-calendar-group-manager.php:117
|
2034 |
+
#: my-calendar.php:169
|
2035 |
+
msgid "Manage Event Groups"
|
2036 |
+
msgstr "घटना समूह प्रबंधित करें"
|
2037 |
+
|
2038 |
+
#@ my-calendar
|
2039 |
+
#: my-calendar-group-manager.php:119
|
2040 |
+
msgid "Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the \"Edit Group\" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)"
|
2041 |
+
msgstr "समूहीकृत घटनाओं एक संपादित किया जा सकता . जब आप संपादित करने घटनाओं के एक समूह चयन , प्रपत्र जाएगा पहले तुम से शुरू ईवेंट समूह के सदस्य को लागू सामग्री साथ भर दिया. (जैसे, अगर आप पर क्लिक करें \"Edit Group\" घटनाओं का एक सेट के 3 के लिए लिंक, बक्से कि घटना के लिए लागू सामग्री का उपयोग करें. होगा). आप भी जांचपेटी जो संकेत जाएगा जो समूह में घटनाओं इन परिवर्तनों को लागू होना चाहिए का एक सेट प्राप्त होगा. (सभी समूहीकृत घटनाओं भी संपादित व्यक्तिगत हो सकता है.)"
|
2042 |
+
|
2043 |
+
#@ my-calendar
|
2044 |
+
#: my-calendar-group-manager.php:120
|
2045 |
+
msgid "The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event."
|
2046 |
+
msgstr "पंजीकरण उपलब्धता, ईवेंट प्रकाशन स्थिति, स्पैम, फ़ुटपाथ ईवेंट पुनरावृत्ति, ईवेंट repetitions के, और आरंभ और अंत तिथि और उस घटना के लिए समय: निम्नलिखित क्षेत्रों जब समूहों संपादन जा कभी नहीं बदल जाएगा."
|
2047 |
+
|
2048 |
+
#@ my-calendar
|
2049 |
+
#: my-calendar-group-manager.php:214
|
2050 |
+
msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
|
2051 |
+
msgstr "<strong> NOTE: </strong> यह समूह में घटनाओं हेतु समूह संपादन योग्य फ़ील्ड्स मेल नहीं खाते हैं"
|
2052 |
+
|
2053 |
+
#@ my-calendar
|
2054 |
+
#: my-calendar-group-manager.php:221
|
2055 |
+
msgid "Apply these changes to:"
|
2056 |
+
msgstr "इन परिवर्तनों को लागू करो"
|
2057 |
+
|
2058 |
+
#@ my-calendar
|
2059 |
+
#: my-calendar-group-manager.php:232
|
2060 |
+
msgid "Check/Uncheck all"
|
2061 |
+
msgstr "चेक/ अनचेक करें सभी"
|
2062 |
+
|
2063 |
+
#@ my-calendar
|
2064 |
+
#: my-calendar-group-manager.php:234
|
2065 |
+
msgid "Remove checked events from this group"
|
2066 |
+
msgstr "इस समूह से जाँच की घटनाओं हटायें"
|
2067 |
+
|
2068 |
+
#@ my-calendar
|
2069 |
+
#: my-calendar-group-manager.php:251
|
2070 |
+
msgid "You must provide a group ID to edit groups"
|
2071 |
+
msgstr "आप एक समूह आईडी प्रदान करने के लिए समूहों संपादित करना चाहिए"
|
2072 |
+
|
2073 |
+
#@ my-calendar
|
2074 |
+
#: my-calendar-group-manager.php:690
|
2075 |
+
msgid "Create/Modify Groups"
|
2076 |
+
msgstr "समूह बनाएँ/संशोधित करें"
|
2077 |
+
|
2078 |
+
#@ my-calendar
|
2079 |
+
#: my-calendar-group-manager.php:691
|
2080 |
+
msgid "Check a set of events to group them for mass editing."
|
2081 |
+
msgstr "घटनाओं का एक सेट जाँच को उन्हें बड़े संपादन के लिए समूहीकृत."
|
2082 |
+
|
2083 |
+
#@ my-calendar
|
2084 |
+
#: my-calendar-group-manager.php:701
|
2085 |
+
#: my-calendar-group-manager.php:787
|
2086 |
+
msgid "Group checked events for mass editing"
|
2087 |
+
msgstr "समूह जन संपादन के लिए घटनाओं की जाँच"
|
2088 |
+
|
2089 |
+
#@ my-calendar
|
2090 |
+
#: my-calendar-group-manager.php:707
|
2091 |
+
msgid "Group"
|
2092 |
+
msgstr "समूह"
|
2093 |
+
|
2094 |
+
#@ my-calendar
|
2095 |
+
#: my-calendar-group-manager.php:777
|
2096 |
+
msgid "Ungrouped"
|
2097 |
+
msgstr "असमूहीकृत"
|
2098 |
+
|
2099 |
+
#@ my-calendar
|
2100 |
+
#: my-calendar-help.php:17
|
2101 |
+
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
2102 |
+
msgstr "मुख्य कैलेंडर Shortcode (सूची या ग्रिड, साप्ताहिक या मासिक दृश्य)"
|
2103 |
+
|
2104 |
+
#@ my-calendar
|
2105 |
+
#: my-calendar-help.php:22
|
2106 |
+
msgid "The shortcode supports eight attributes:"
|
2107 |
+
msgstr "लघुकोडः आठ विशेषताओं का समर्थन करता है:"
|
2108 |
+
|
2109 |
+
#@ my-calendar
|
2110 |
+
#: my-calendar-help.php:24
|
2111 |
+
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
2112 |
+
msgstr "यह कैलेंडर में शामिल श्रेणियों के नाम या आईडी, अल्पविराम या पाइप अलग कर दिया."
|
2113 |
+
|
2114 |
+
#@ my-calendar
|
2115 |
+
#: my-calendar-help.php:25
|
2116 |
+
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
2117 |
+
msgstr "\"list\" या \"mini\" सूची दृश्य या मिनी कैलेंडर को दिखाने , बाहर या किसी अन्य मुख्य ग्रिड कैलेंडर को दिखाने के मूल्य."
|
2118 |
+
|
2119 |
+
#@ my-calendar
|
2120 |
+
#: my-calendar-help.php:26
|
2121 |
+
msgid "Set as \"no\" to hide the category key."
|
2122 |
+
msgstr " \"no\" रूप सेट वर्ग कुंजी छिपाने ."
|
2123 |
+
|
2124 |
+
#@ my-calendar
|
2125 |
+
#: my-calendar-help.php:27
|
2126 |
+
msgid "Set as \"no\" to hide the month-by-month navigation."
|
2127 |
+
msgstr "\"no\" रूप सेट को नेविगेशन महीने दर महीने छिपा ."
|
2128 |
+
|
2129 |
+
#@ my-calendar
|
2130 |
+
#: my-calendar-help.php:28
|
2131 |
+
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
2132 |
+
msgstr "सेट \"हाँ \" के लिए एक लिंक सूची और ग्रिड स्वरूपों बीच स्विच को दिखाने के लिए."
|
2133 |
+
|
2134 |
+
#@ my-calendar
|
2135 |
+
#: my-calendar-help.php:29
|
2136 |
+
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
2137 |
+
msgstr "\"सप्ताह \" सेट को एक सप्ताह दृश्य दिखाने या \"दिन \" करने के लिए एक ही दिन दृश्य दिखाने . अन्य कोई भी मान एक माह दृश्य दिखाई देगा. (दिन दृश्य एक प्रारूप सेटिंग की परवाह सूची के रूप में दिखाता है.)"
|
2138 |
+
|
2139 |
+
#@ my-calendar
|
2140 |
+
#: my-calendar-help.php:30
|
2141 |
+
msgid "The type of location data to restrict by."
|
2142 |
+
msgstr "स्थान डेटा के प्रकार सीमित करने के लिए."
|
2143 |
+
|
2144 |
+
#@ my-calendar
|
2145 |
+
#: my-calendar-help.php:31
|
2146 |
+
msgid "The specific location information to filter to."
|
2147 |
+
msgstr "विशिष्ट स्थान जानकारी को फ़िल्टर करने के लिए."
|
2148 |
+
|
2149 |
+
#@ my-calendar
|
2150 |
+
#: my-calendar-help.php:35
|
2151 |
+
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
2152 |
+
msgstr "मुख्य मेरा कैलेंडर शॉर्ट कोड अपनी पोस्ट और पेज संपादक में एक बटन से उत्पन्न किया जा सकता . मिनी कैलेंडर को भी पहुँचा जा सकता है एक विजेट के रूप में विन्यस्त ."
|
2153 |
+
|
2154 |
+
#@ my-calendar
|
2155 |
+
#: my-calendar-help.php:37
|
2156 |
+
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
2157 |
+
msgstr "अतिरिक्त कैलेंडर दृश्य (आगामी घटनाएँ, आज घटनाओं)"
|
2158 |
+
|
2159 |
+
#@ my-calendar
|
2160 |
+
#: my-calendar-help.php:42
|
2161 |
+
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with three configurable attributes: category, template and fallback text."
|
2162 |
+
msgstr "श्रेणी टेम्पलेट, और fallback पाठ: काफी जाहिर है, इस लघुकोडः तीन विन्यास विशेषताओं के साथ आयोजन आज विजेट के उत्पादन, को प्रदर्शित करता है."
|
2163 |
+
|
2164 |
+
#@ my-calendar
|
2165 |
+
#: my-calendar-help.php:45
|
2166 |
+
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
2167 |
+
msgstr "दोनों आगामी घटनाएँ और आज आयोजन भी विगेट्स का उपयोग कर कॉन्फ़िगर किया जा सकता ."
|
2168 |
+
|
2169 |
+
#@ my-calendar
|
2170 |
+
#: my-calendar-help.php:48
|
2171 |
+
msgid "Supplement Features (Locations filter, Categories filter)"
|
2172 |
+
msgstr "अनुपूरक सुविधाएँ (फिल्टर स्थान, चैनल फिल्टर)"
|
2173 |
+
|
2174 |
+
#@ my-calendar
|
2175 |
+
#: my-calendar-help.php:51
|
2176 |
+
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>, <code>zip</code> (postal code), or <code>region</code>."
|
2177 |
+
msgstr "यह लघुकोडः या तो लिंक्स की एक सूची रूप या एक का चयन करें ड्रॉपडाउन फार्म के रूप में ईवेंट स्थानों की एक सूची पैदा करता है. <code> शो </ कोड> विशेषता या <code> सूची हो सकता है <कोड /> या प्रपत्र <code> </ कोड>, या <code> प्रकार <कोड> / <code> बचाया है </ कोड> (अपने संग्रहीत स्थानों से आइटम) को दिखाने के लिए, या कस्टम <code> </ कोड> (आप उपयोगकर्ता सेटिंग्स में कॉन्फ़िगर विकल्प दिखाने). <code> डेटाप्रकार </ कोड> अपनी सीमा से चयन कर रहे हैं डेटा के प्रकार होना चाहिए: <code> नाम <कोड /> (व्यापार नाम), <code> शहर </ कोड>, <code> राज्य <कोड /> <code> देश </ कोड>, <code> ज़िप </ कोड> (डाक कोड), या <code> क्षेत्र <कोड />."
|
2178 |
+
|
2179 |
+
#@ my-calendar
|
2180 |
+
#: my-calendar-help.php:54
|
2181 |
+
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
2182 |
+
msgstr "यदि आप अपने डेटाबेस में स्थानों की एक सूची प्रदर्शित करना चाहते हैं, यह लघुकोडः का उपयोग करें. <code> डेटाप्रकार </ कोड> डेटा का प्रकार प्रदर्शित, सभी सूचियों कि स्थान के नक्शे के लिए एक लिंक शामिल होंगे. ऊपर लघुकोडः में के रूप में मूल स्थान जानकारी के अलावा, आप भी \"hcard \" का उपयोग करने के लिए सभी उपलब्ध स्थान जानकारी प्रदर्शित कर सकते हैं."
|
2183 |
+
|
2184 |
+
#@ my-calendar
|
2185 |
+
#: my-calendar-help.php:57
|
2186 |
+
msgid "This shortcode produces a list of event categories, 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>."
|
2187 |
+
msgstr "यह लघुकोडः या तो लिंक की सूची रूप या एक का चयन करें ड्रॉपडाउन फार्म के रूप में ईवेंट श्रेणियों की एक सूची पैदा करता है. <code> </ कोड> विशेषता या <code> सूची हो सकता है <कोड /> या प्रपत्र <code> <कोड />. शो"
|
2188 |
+
|
2189 |
+
#@ my-calendar
|
2190 |
+
#: my-calendar-help.php:77
|
2191 |
+
msgid "Custom Styles"
|
2192 |
+
msgstr "कस्टम शैलियाँ"
|
2193 |
+
|
2194 |
+
#@ my-calendar
|
2195 |
+
#: my-calendar-help.php:80
|
2196 |
+
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."
|
2197 |
+
msgstr "मेरा कैलेंडर चार बुनियादी स्टाइलशीट साथ आता है. मेरा कैलेंडर उन्नयन पर इन बुनियादी शैली में परिवर्तन बनाए , लेकिन अगर आप एक पूरी नई स्टाइलशीट जोड़ना चाहते , आप यह मेरा कैलेंडर कस्टम शैलियों निर्देशिका में संग्रहीत इच्छा हो सकती है .."
|
2198 |
+
|
2199 |
+
#@ my-calendar
|
2200 |
+
#: my-calendar-help.php:83
|
2201 |
+
msgid "Your stylesheet directory is"
|
2202 |
+
msgstr "आपके स्टाइलशीट निर्देशिका"
|
2203 |
+
|
2204 |
+
#@ my-calendar
|
2205 |
+
#: my-calendar-help.php:84
|
2206 |
+
msgid "Your custom stylesheets directory is"
|
2207 |
+
msgstr "आपके कस्टम स्टाइलशीट निर्देशिका"
|
2208 |
+
|
2209 |
+
#@ my-calendar
|
2210 |
+
#: my-calendar-help.php:95
|
2211 |
+
msgid "These codes are available in calendar widgets, email notifications, and event titles."
|
2212 |
+
msgstr "ये कोड कैलेंडर को विजेट ईमेल सूचनाएँ, और ईवेंट शीर्षक में उपलब्ध हैं."
|
2213 |
+
|
2214 |
+
#@ my-calendar
|
2215 |
+
#: my-calendar-help.php:97
|
2216 |
+
#: my-calendar-templating.php:70
|
2217 |
+
msgid "Event Template Tags"
|
2218 |
+
msgstr "ईवेंट टेम्पलेट टैग"
|
2219 |
+
|
2220 |
+
#@ my-calendar
|
2221 |
+
#: my-calendar-help.php:109
|
2222 |
+
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
2223 |
+
msgstr "वर्तमान उपयोगकर्ता समय क्षेत्र सेटिंग्स को समायोजित ईवेंट के लिए शुरू करने का समय प्रदर्शित करता है. रिटर्न <code> {समय} <कोड /> यदि उपयोगकर्ता सेटिंग्स निष्क्रिय कर रहे हैं या यदि उपयोगकर्ता एक पसंदीदा समय क्षेत्र भी चयनित नहीं है."
|
2224 |
+
|
2225 |
+
#@ my-calendar
|
2226 |
+
#: my-calendar-help.php:112
|
2227 |
+
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
2228 |
+
msgstr "वर्तमान उपयोगकर्ता समय क्षेत्र सेटिंग्स को समायोजित ईवेंट के लिए अंत समय प्रदर्शित करता है. Endtime रिटर्न <code> {} <कोड /> यदि उपयोगकर्ता सेटिंग्स या निष्क्रिय कर रहे हैं तो उपयोगकर्ता एक पसंदीदा समय क्षेत्र भी चयनित नहीं है."
|
2229 |
+
|
2230 |
+
#@ my-calendar
|
2231 |
+
#: my-calendar-help.php:133
|
2232 |
+
msgid "Displays the name of the person assigned as host for the event."
|
2233 |
+
msgstr "घटना के लिए मेजबान रूप असाइन किए गए व्यक्ति का नाम प्रदर्शित करता है .."
|
2234 |
+
|
2235 |
+
#@ my-calendar
|
2236 |
+
#: my-calendar-help.php:136
|
2237 |
+
msgid "Displays the email address of the person assigned as host for the event."
|
2238 |
+
msgstr "ईवेंट के लिए मेजबान के रूप में असाइन किए गए व्यक्ति का ईमेल पता प्रदर्शित करता है."
|
2239 |
+
|
2240 |
+
#@ my-calendar
|
2241 |
+
#: my-calendar-help.php:151
|
2242 |
+
#: my-calendar-templating.php:115
|
2243 |
+
msgid "Image associated with the event."
|
2244 |
+
msgstr "ईवेंट के साथ जुड़े छवि."
|
2245 |
+
|
2246 |
+
#@ my-calendar
|
2247 |
+
#: my-calendar-help.php:157
|
2248 |
+
msgid "Produces the URL to download an iCal formatted record for the event."
|
2249 |
+
msgstr "यूआरएल पैदा करता है घटना के लिए iCal संरूपित अभिलेख डाउनलोड ."
|
2250 |
+
|
2251 |
+
#@ my-calendar
|
2252 |
+
#: my-calendar-help.php:160
|
2253 |
+
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
2254 |
+
msgstr "घटना के लिए iCal संरूपित अभिलेख डाउनलोड करने के लिए एक हाइपरलिंक पैदा करता है."
|
2255 |
+
|
2256 |
+
#@ my-calendar
|
2257 |
+
#: my-calendar-help.php:163
|
2258 |
+
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
2259 |
+
msgstr "ईवेंट की पुनरावृत्ति स्थिति दिखाता है. (दैनिक, साप्ताहिक, आदि)"
|
2260 |
+
|
2261 |
+
#@ my-calendar
|
2262 |
+
#: my-calendar-help.php:166
|
2263 |
+
msgid "Shows the number of repetitions of the event."
|
2264 |
+
msgstr "घटना के repetitions की संख्या दिखाता ."
|
2265 |
+
|
2266 |
+
#@ my-calendar
|
2267 |
+
#: my-calendar-help.php:169
|
2268 |
+
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
2269 |
+
msgstr "एक ऑटो उत्पन्न दिया ईवेंट पर सभी जानकारी युक्त पृष्ठ के लिए एक लिंक प्रदान करता है."
|
2270 |
+
|
2271 |
+
#@ my-calendar
|
2272 |
+
#: my-calendar-help.php:169
|
2273 |
+
msgid "Requires that the site URL has been provided on the Settings page"
|
2274 |
+
msgstr "आवश्यकता है कि साइट URL सेटिंग्स पृष्ठ पर प्रदान की गई है"
|
2275 |
+
|
2276 |
+
#@ my-calendar
|
2277 |
+
#: my-calendar-help.php:177
|
2278 |
+
#: my-calendar-templating.php:129
|
2279 |
+
msgid "Location Template Tags"
|
2280 |
+
msgstr "स्थान टेम्पलेट टैग"
|
2281 |
+
|
2282 |
+
#@ my-calendar
|
2283 |
+
#: my-calendar-help.php:190
|
2284 |
+
msgid "Displays the city for the location."
|
2285 |
+
msgstr "स्थान के लिए शहर प्रदर्शित करता है."
|
2286 |
+
|
2287 |
+
#@ my-calendar
|
2288 |
+
#: my-calendar-help.php:193
|
2289 |
+
msgid "Displays the state for the location."
|
2290 |
+
msgstr "स्थान के लिए राज्य में प्रदर्शित करता है."
|
2291 |
+
|
2292 |
+
#@ my-calendar
|
2293 |
+
#: my-calendar-help.php:196
|
2294 |
+
msgid "Displays the postcode for the location."
|
2295 |
+
msgstr "स्थान के लिए पिन कोड प्रदर्शित करता है."
|
2296 |
+
|
2297 |
+
#@ my-calendar
|
2298 |
+
#: my-calendar-help.php:199
|
2299 |
+
msgid "Shows the custom region entered for the location."
|
2300 |
+
msgstr "दिखाता है स्थान के लिए कस्टम क्षेत्र में प्रवेश किया."
|
2301 |
+
|
2302 |
+
#@ my-calendar
|
2303 |
+
#: my-calendar-help.php:205
|
2304 |
+
msgid "Output the URL for the location link."
|
2305 |
+
msgstr "स्थान लिंक लिए URL उत्पादन."
|
2306 |
+
|
2307 |
+
#@ my-calendar
|
2308 |
+
#: my-calendar-help.php:208
|
2309 |
+
msgid "Output a hyperlink to the location's listed link with default link text."
|
2310 |
+
msgstr "स्थान डिफ़ॉल्ट लिंक पाठ के साथ सूचीबद्ध लिंक करने के लिए एक हाइपरलिंक उत्पादन."
|
2311 |
+
|
2312 |
+
#@ my-calendar
|
2313 |
+
#: my-calendar-help.php:216
|
2314 |
+
#: my-calendar-templating.php:165
|
2315 |
+
msgid "Category Template Tags"
|
2316 |
+
msgstr "श्रेणी टेम्पलेट टैग"
|
2317 |
+
|
2318 |
+
#@ my-calendar
|
2319 |
+
#: my-calendar-help.php:223
|
2320 |
+
msgid "Produces the address of the current event's category icon."
|
2321 |
+
msgstr "वर्तमान ईवेंट श्रेणी चिह्न का पता पैदा करता है."
|
2322 |
+
|
2323 |
+
#@ my-calendar
|
2324 |
+
#: my-calendar-help.php:226
|
2325 |
+
msgid "Produces the HTML for the current event's category icon."
|
2326 |
+
msgstr "वर्तमान ईवेंट श्रेणी चिह्न के लिए HTML उत्पन्न करता है."
|
2327 |
+
|
2328 |
+
#@ my-calendar
|
2329 |
+
#: my-calendar-help.php:229
|
2330 |
+
msgid "Produces the hex code for the current event's category color."
|
2331 |
+
msgstr "वर्तमान ईवेंट श्रेणी के लिए रंग हेक्स कोड उत्पन्न करता है."
|
2332 |
+
|
2333 |
+
#@ my-calendar
|
2334 |
+
#: my-calendar-help.php:232
|
2335 |
+
msgid ""
|
2336 |
+
"Displays the ID for\n"
|
2337 |
+
" the category the event is in."
|
2338 |
+
msgstr ""
|
2339 |
+
"आईडी प्रदर्शित \n"
|
2340 |
+
"श्रेणी ईवेंट अंदर है"
|
2341 |
+
|
2342 |
+
#@ my-calendar
|
2343 |
+
#: my-calendar-help.php:236
|
2344 |
+
msgid "Special use Template Tags"
|
2345 |
+
msgstr "विशेष उपयोग टेम्पलेट टैग"
|
2346 |
+
|
2347 |
+
#@ my-calendar
|
2348 |
+
#: my-calendar-help.php:240
|
2349 |
+
msgid "A unique ID for the current instance of an event."
|
2350 |
+
msgstr "एक घटना के वर्तमान उदाहरण के लिए एक अद्वितीय ID."
|
2351 |
+
|
2352 |
+
#@ my-calendar
|
2353 |
+
#: my-calendar-help.php:243
|
2354 |
+
msgid "The ID for the event record associated with the current instance of an event."
|
2355 |
+
msgstr "ईवेंट एक घटना के वर्तमान उदाहरण साथ जुड़े रिकॉर्ड के लिए आईडी."
|
2356 |
+
|
2357 |
+
#@ my-calendar
|
2358 |
+
#: my-calendar-help.php:260
|
2359 |
+
msgid "Helpful Information"
|
2360 |
+
msgstr "उपयोगी जानकारी"
|
2361 |
+
|
2362 |
+
#@ my-calendar
|
2363 |
+
#: my-calendar-help.php:263
|
2364 |
+
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
2365 |
+
msgstr "<strong> </ strong> प्लगइन स्थापना रद्द: हालांकि WordPress के मानक और उम्मीद प्लग - इन लिए कोई कस्टम डेटाबेस तालिकाओं जब वे कर स्थापना रद्द हटा, मेरे कैलेंडर <em> यह नहीं करता है </em>. यह मेरी ओर से एक सचेत निर्णय था - अपने मेरा कैलेंडर तालिकाओं में संग्रहीत डेटा तुम्हारा है, \"सामान्य \" श्रेणी का एकमात्र अपवाद के साथ, आप का हर टुकड़ा अपने आप को जोड़ा. जैसे, मुझे लगता यह आप के लिए एक प्रमुख धर्म का निर्वाह को यह जानकारी को नष्ट अगर आप प्लग - इन की स्थापना रद्द हो जाएगा. एक परिणाम के रूप में, अगर आप प्लग में पूरी तरह से छुटकारा चाहते , आप उन टेबल अपने आप हटाने के आवश्यकता होगी. आपके सभी मेरे कैलेंडर सेटिंग्स, लेकिन नष्ट कर दिया जाएगा."
|
2366 |
+
|
2367 |
+
#@ my-calendar
|
2368 |
+
#: my-calendar-help.php:266
|
2369 |
+
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
2370 |
+
msgstr "<strong> </ strong> दान: मैं कुछ आप दे सकते हैं सराहना . $ 2 बहुत तरह प्रतीत नहीं, लेकिन यह सच में जोड़ जब हजारों लोगों के सॉफ्टवेयर का उपयोग कर रहे हैं हो सकता है. कृपया कि मैं एक गैर लाभ संगठन, नहीं हूँ और अपने उपहार कर छूट नहीं हैं. शुक्रिया!"
|
2371 |
+
|
2372 |
+
#@ my-calendar
|
2373 |
+
#: my-calendar-install.php:213
|
2374 |
+
msgid "My Calendar Default Timezone"
|
2375 |
+
msgstr "मेरे कैलेंडर डिफ़ॉल्ट समय क्षेत्र"
|
2376 |
+
|
2377 |
+
#@ my-calendar
|
2378 |
+
#: my-calendar-install.php:258
|
2379 |
+
msgid "My Calendar Default Location"
|
2380 |
+
msgstr "मेरे कैलेंडर डिफ़ॉल्ट स्थान"
|
2381 |
+
|
2382 |
+
#@ my-calendar
|
2383 |
+
#: my-calendar-locations.php:202
|
2384 |
+
msgid "Website"
|
2385 |
+
msgstr "वेबसाइट"
|
2386 |
+
|
2387 |
+
#@ my-calendar
|
2388 |
+
#: my-calendar-locations.php:222
|
2389 |
+
msgid "Add a New Location"
|
2390 |
+
msgstr "एक नया स्थान जोड़ें"
|
2391 |
+
|
2392 |
+
#@ my-calendar
|
2393 |
+
#: my-calendar-output.php:180
|
2394 |
+
#, php-format
|
2395 |
+
msgid "(%s in your time zone)"
|
2396 |
+
msgstr "(%s आपके समय क्षेत्र में)"
|
2397 |
+
|
2398 |
+
#@ my-calendar
|
2399 |
+
#: my-calendar-output.php:207
|
2400 |
+
#: my-calendar-templates.php:205
|
2401 |
+
msgid "Details about"
|
2402 |
+
msgstr "विवरण"
|
2403 |
+
|
2404 |
+
#@ my-calendar
|
2405 |
+
#: my-calendar-output.php:228
|
2406 |
+
#: my-calendar-templates.php:155
|
2407 |
+
msgid "iCal"
|
2408 |
+
msgstr "iCal"
|
2409 |
+
|
2410 |
+
#@ my-calendar
|
2411 |
+
#: my-calendar-output.php:267
|
2412 |
+
msgid "View full calendar"
|
2413 |
+
msgstr "पूरा कैलेंडर देखें"
|
2414 |
+
|
2415 |
+
#@ my-calendar
|
2416 |
+
#: my-calendar-output.php:300
|
2417 |
+
msgid "Edit This Date"
|
2418 |
+
msgstr "तिथि संपादित"
|
2419 |
+
|
2420 |
+
#@ my-calendar
|
2421 |
+
#: my-calendar-output.php:301
|
2422 |
+
msgid "Edit All"
|
2423 |
+
msgstr "सभी संपादित"
|
2424 |
+
|
2425 |
+
#@ my-calendar
|
2426 |
+
#: my-calendar-output.php:302
|
2427 |
+
msgid "Delete This Date"
|
2428 |
+
msgstr "तिथि हटाएँ"
|
2429 |
+
|
2430 |
+
#@ my-calendar
|
2431 |
+
#: my-calendar-output.php:303
|
2432 |
+
msgid "Delete All"
|
2433 |
+
msgstr "सभी को नष्ट करें"
|
2434 |
+
|
2435 |
+
#@ my-calendar
|
2436 |
+
#: my-calendar-output.php:456
|
2437 |
+
msgid "View as Grid"
|
2438 |
+
msgstr "ग्रिड के रूप में देखें"
|
2439 |
+
|
2440 |
+
#@ my-calendar
|
2441 |
+
#: my-calendar-output.php:460
|
2442 |
+
msgid "View as List"
|
2443 |
+
msgstr "सूची रूप में देखें"
|
2444 |
+
|
2445 |
+
#@ my-calendar
|
2446 |
+
#: my-calendar-output.php:600
|
2447 |
+
msgid "No events scheduled for today!"
|
2448 |
+
msgstr "कोई इवेंट आज के लिए निर्धारित नहीं हैं!"
|
2449 |
+
|
2450 |
+
#@ my-calendar
|
2451 |
+
#: my-calendar-output.php:855
|
2452 |
+
#, php-format
|
2453 |
+
msgid " and %d other event"
|
2454 |
+
msgstr "%d अन्य ईवेंट"
|
2455 |
+
|
2456 |
+
#@ my-calendar
|
2457 |
+
#: my-calendar-output.php:857
|
2458 |
+
#, php-format
|
2459 |
+
msgid " and %d other events"
|
2460 |
+
msgstr "% d अन्य ईवेंट"
|
2461 |
+
|
2462 |
+
#@ my-calendar
|
2463 |
+
#: my-calendar-output.php:923
|
2464 |
+
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2465 |
+
msgstr "<abbr Title=\"Really सरल Syndication\"> आरएसएस </ abbr> द्वारा सदस्यता लें"
|
2466 |
+
|
2467 |
+
#@ my-calendar
|
2468 |
+
#: my-calendar-output.php:924
|
2469 |
+
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2470 |
+
msgstr "डाउनलोड <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2471 |
+
|
2472 |
+
#@ my-calendar
|
2473 |
+
#: my-calendar-output.php:1043
|
2474 |
+
msgid "(select to include)"
|
2475 |
+
msgstr "(शामिल करने के लिए इसे चुनें)"
|
2476 |
+
|
2477 |
+
#@ my-calendar
|
2478 |
+
#: my-calendar-output.php:1067
|
2479 |
+
#: my-calendar-output.php:1070
|
2480 |
+
msgid "All Categories"
|
2481 |
+
msgstr "सभी श्रेणियाँ"
|
2482 |
+
|
2483 |
+
#@ my-calendar
|
2484 |
+
#: my-calendar-output.php:1068
|
2485 |
+
msgid "Categories"
|
2486 |
+
msgstr "श्रेणियाँ"
|
2487 |
+
|
2488 |
+
#@ my-calendar
|
2489 |
+
#: my-calendar-output.php:1089
|
2490 |
+
#: my-calendar-output.php:1267
|
2491 |
+
msgid "Submit"
|
2492 |
+
msgstr "सबमिट"
|
2493 |
+
|
2494 |
+
#@ my-calendar
|
2495 |
+
#: my-calendar-output.php:1208
|
2496 |
+
#: my-calendar-output.php:1229
|
2497 |
+
msgid "Show all"
|
2498 |
+
msgstr "सभी दिखाएँ"
|
2499 |
+
|
2500 |
+
#@ my-calendar
|
2501 |
+
#: my-calendar-output.php:1227
|
2502 |
+
msgid "Show events in:"
|
2503 |
+
msgstr "घटना दिखाना:"
|
2504 |
+
|
2505 |
+
#@ my-calendar
|
2506 |
+
#: my-calendar-settings.php:89
|
2507 |
+
msgid "Permissions Settings saved"
|
2508 |
+
msgstr "अनुमतियाँ सेटिंग्स सहेजे"
|
2509 |
+
|
2510 |
+
#@ my-calendar
|
2511 |
+
#: my-calendar-settings.php:134
|
2512 |
+
msgid "Output Settings saved"
|
2513 |
+
msgstr "उत्पादन सेटिंग्स को सहेजे"
|
2514 |
+
|
2515 |
+
#@ my-calendar
|
2516 |
+
#: my-calendar-settings.php:153
|
2517 |
+
msgid "Input Settings saved"
|
2518 |
+
msgstr "इनपुट सेटिंग्स को सहेजे"
|
2519 |
+
|
2520 |
+
#@ my-calendar
|
2521 |
+
#: my-calendar-settings.php:180
|
2522 |
+
msgid "Custom text settings saved"
|
2523 |
+
msgstr "कस्टम पाठ सेटिंग्स को सहेजे"
|
2524 |
+
|
2525 |
+
#@ my-calendar
|
2526 |
+
#: my-calendar-settings.php:192
|
2527 |
+
msgid "Email notice settings saved"
|
2528 |
+
msgstr "ईमेल सूचना सेटिंग्स को सहेजे"
|
2529 |
+
|
2530 |
+
#@ my-calendar
|
2531 |
+
#: my-calendar-settings.php:206
|
2532 |
+
msgid "User custom settings saved"
|
2533 |
+
msgstr "उपयोगकर्ता कस्टम सेटिंग्स सहेजे"
|
2534 |
+
|
2535 |
+
#@ my-calendar
|
2536 |
+
#: my-calendar-settings.php:241
|
2537 |
+
msgid "Calendar Management Settings"
|
2538 |
+
msgstr "कैलेंडर प्रबंधन सेटिंग्स"
|
2539 |
+
|
2540 |
+
#@ my-calendar
|
2541 |
+
#: my-calendar-settings.php:248
|
2542 |
+
msgid "Lowest user group that may create events"
|
2543 |
+
msgstr "न्यूनतम उपयोगकर्ता समूह घटनाओं बना सकते हैं"
|
2544 |
+
|
2545 |
+
#@ my-calendar
|
2546 |
+
#: my-calendar-settings.php:257
|
2547 |
+
msgid "Lowest user group that may approve events"
|
2548 |
+
msgstr "न्यूनतम उपयोगकर्ता समूह घटनाओं का अनुमोदन कर सकती है"
|
2549 |
+
|
2550 |
+
#@ my-calendar
|
2551 |
+
#: my-calendar-settings.php:266
|
2552 |
+
msgid "Lowest user group that may edit or delete all events"
|
2553 |
+
msgstr "न्यूनतम उपयोगकर्ता समूह सभी घटनाओं को संपादित या नष्ट कर सकते हैं"
|
2554 |
+
|
2555 |
+
#@ my-calendar
|
2556 |
+
#: my-calendar-settings.php:272
|
2557 |
+
msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
|
2558 |
+
msgstr "डिफ़ॉल्ट रूप से, केवल प्रशासकों संपादित या किसी भी घटना हटा सकते हैं. अन्य उपयोगकर्ताओं को केवल संपादित या नष्ट कर सकते हैं घटनाओं जो वे लेखक."
|
2559 |
+
|
2560 |
+
#@ my-calendar
|
2561 |
+
#: my-calendar-settings.php:282
|
2562 |
+
msgid "Currently editing my local calendar"
|
2563 |
+
msgstr "वर्तमान में मेरे स्थानीय कैलेंडर संपादन"
|
2564 |
+
|
2565 |
+
#@ my-calendar
|
2566 |
+
#: my-calendar-settings.php:285
|
2567 |
+
msgid "Currently editing the network calendar"
|
2568 |
+
msgstr "वर्तमान में नेटवर्क कैलेंडर संपादन"
|
2569 |
+
|
2570 |
+
#@ my-calendar
|
2571 |
+
#: my-calendar-settings.php:299
|
2572 |
+
msgid "Calendar Text Settings"
|
2573 |
+
msgstr "कैलेंडर पाठ सेटिंग्स"
|
2574 |
+
|
2575 |
+
#@ my-calendar
|
2576 |
+
#: my-calendar-settings.php:304
|
2577 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2578 |
+
msgstr "कैलेंडर के विकल्प: अनुकूलन पाठ फ़ील्ड"
|
2579 |
+
|
2580 |
+
#@ my-calendar
|
2581 |
+
#: my-calendar-settings.php:307
|
2582 |
+
msgid "Label for events without a set time"
|
2583 |
+
msgstr "एक निर्धारित समय के बिना घटनाओं हेतु लेबल"
|
2584 |
+
|
2585 |
+
#@ my-calendar
|
2586 |
+
#: my-calendar-settings.php:310
|
2587 |
+
msgid "Previous events link"
|
2588 |
+
msgstr "पिछली घटनाओं के लिंक"
|
2589 |
+
|
2590 |
+
#@ my-calendar
|
2591 |
+
#: my-calendar-settings.php:313
|
2592 |
+
msgid "Next events link"
|
2593 |
+
msgstr "अगली घटनाओं के लिंक"
|
2594 |
+
|
2595 |
+
#@ my-calendar
|
2596 |
+
#: my-calendar-settings.php:316
|
2597 |
+
msgid "If events are open"
|
2598 |
+
msgstr "यदि घटना खुले हैं"
|
2599 |
+
|
2600 |
+
#@ my-calendar
|
2601 |
+
#: my-calendar-settings.php:319
|
2602 |
+
msgid "If events are closed"
|
2603 |
+
msgstr "यदि घटनाओं बंद हो जाती हैं"
|
2604 |
+
|
2605 |
+
#@ my-calendar
|
2606 |
+
#: my-calendar-settings.php:325
|
2607 |
+
msgid "Additional caption:"
|
2608 |
+
msgstr "अतिरिक्त शीर्षक:"
|
2609 |
+
|
2610 |
+
#@ my-calendar
|
2611 |
+
#: my-calendar-settings.php:330
|
2612 |
+
msgid "Save Custom Text Settings"
|
2613 |
+
msgstr "कस्टम पाठ सेटिंग्स सहेजें"
|
2614 |
+
|
2615 |
+
#@ my-calendar
|
2616 |
+
#: my-calendar-settings.php:336
|
2617 |
+
msgid "Calendar Output Settings"
|
2618 |
+
msgstr "कैलेंडर आउटपुट सेटिंग्स"
|
2619 |
+
|
2620 |
+
#@ my-calendar
|
2621 |
+
#: my-calendar-settings.php:342
|
2622 |
+
msgid "Calendar Options: Customize the Output of your Calendar"
|
2623 |
+
msgstr "कैलेंडर के विकल्प: अपने कैलेंडर के आउटपुट को अनुकूलित"
|
2624 |
+
|
2625 |
+
#@ my-calendar
|
2626 |
+
#: my-calendar-settings.php:344
|
2627 |
+
msgid "General Calendar Options"
|
2628 |
+
msgstr "सामान्य कैलेंडर के विकल्प"
|
2629 |
+
|
2630 |
+
#@ my-calendar
|
2631 |
+
#: my-calendar-settings.php:348
|
2632 |
+
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2633 |
+
msgstr "किसी भी पृष्ठ या पोस्ट है जो <code> [my_calendar] </code> लघुकोडः शामिल हो सकते हैं."
|
2634 |
+
|
2635 |
+
#@ my-calendar
|
2636 |
+
#: my-calendar-settings.php:372
|
2637 |
+
msgid "Time format"
|
2638 |
+
msgstr "समय स्वरूप"
|
2639 |
+
|
2640 |
+
#@ my-calendar
|
2641 |
+
#: my-calendar-settings.php:372
|
2642 |
+
#: my-calendar-settings.php:375
|
2643 |
+
#: my-calendar-settings.php:378
|
2644 |
+
msgid "Current:"
|
2645 |
+
msgstr "वर्तमान:"
|
2646 |
+
|
2647 |
+
#@ my-calendar
|
2648 |
+
#: my-calendar-settings.php:384
|
2649 |
+
msgid "Show link to My Calendar RSS feed."
|
2650 |
+
msgstr "मेरा कैलेंडर आरएसएस फ़ीड के लिए लिंक दिखाएँ."
|
2651 |
+
|
2652 |
+
#@ my-calendar
|
2653 |
+
#: my-calendar-settings.php:384
|
2654 |
+
msgid "RSS feed shows recently added events."
|
2655 |
+
msgstr "आरएसएस फ़ीड हाल ही में जोड़े गए घटनाओं से पता चलता है."
|
2656 |
+
|
2657 |
+
#@ my-calendar
|
2658 |
+
#: my-calendar-settings.php:387
|
2659 |
+
msgid "Show link to iCal format download."
|
2660 |
+
msgstr "ICal स्वरूप डाउनलोड करने के लिए लिंक दिखाएँ."
|
2661 |
+
|
2662 |
+
#@ my-calendar
|
2663 |
+
#: my-calendar-settings.php:387
|
2664 |
+
msgid "iCal outputs events occurring in the current calendar month."
|
2665 |
+
msgstr "iCal वर्तमान कैलेंडर माह में होने वाली घटनाओं outputs."
|
2666 |
+
|
2667 |
+
#@ my-calendar
|
2668 |
+
#: my-calendar-settings.php:400
|
2669 |
+
msgid "Grid Layout Options"
|
2670 |
+
msgstr "ग्रिड लेआउट विकल्प"
|
2671 |
+
|
2672 |
+
#@ my-calendar
|
2673 |
+
#: my-calendar-settings.php:403
|
2674 |
+
msgid "Show Weekends on Calendar"
|
2675 |
+
msgstr "कैलेंडर पर सप्ताहांत दिखाएँ "
|
2676 |
+
|
2677 |
+
#@ my-calendar
|
2678 |
+
#: my-calendar-settings.php:410
|
2679 |
+
msgid "List Layout Options"
|
2680 |
+
msgstr "सूची लेआउट विकल्प"
|
2681 |
+
|
2682 |
+
#@ my-calendar
|
2683 |
+
#: my-calendar-settings.php:423
|
2684 |
+
msgid "Event Details Options"
|
2685 |
+
msgstr "घटना विवरण विकल्प"
|
2686 |
+
|
2687 |
+
#@ my-calendar
|
2688 |
+
#: my-calendar-settings.php:426
|
2689 |
+
msgid "Event title template"
|
2690 |
+
msgstr "घटना शीर्षक टेम्पलेट"
|
2691 |
+
|
2692 |
+
#@ my-calendar
|
2693 |
+
#: my-calendar-settings.php:427
|
2694 |
+
#: my-calendar-settings.php:437
|
2695 |
+
msgid "Templating Help"
|
2696 |
+
msgstr "टेम्पलेट मदद"
|
2697 |
+
|
2698 |
+
#@ my-calendar
|
2699 |
+
#: my-calendar-settings.php:427
|
2700 |
+
#: my-calendar-settings.php:437
|
2701 |
+
msgid "All template tags are available."
|
2702 |
+
msgstr "सभी टेम्पलेट टैग उपलब्ध हैं."
|
2703 |
+
|
2704 |
+
#@ my-calendar
|
2705 |
+
#: my-calendar-settings.php:430
|
2706 |
+
msgid "Event details link text"
|
2707 |
+
msgstr "घटना विवरण लिंक पाठ"
|
2708 |
+
|
2709 |
+
#@ my-calendar
|
2710 |
+
#: my-calendar-settings.php:435
|
2711 |
+
msgid "Event URL link text"
|
2712 |
+
msgstr "घटना यूआरएल लिंक पाठ"
|
2713 |
+
|
2714 |
+
#@ my-calendar
|
2715 |
+
#: my-calendar-settings.php:440
|
2716 |
+
msgid "Display author's name"
|
2717 |
+
msgstr "लेखक का नाम प्रदर्शित करता है"
|
2718 |
+
|
2719 |
+
#@ my-calendar
|
2720 |
+
#: my-calendar-settings.php:446
|
2721 |
+
msgid "Hide category icons"
|
2722 |
+
msgstr "श्रेणी चिह्न छुपाएँ"
|
2723 |
+
|
2724 |
+
#@ my-calendar
|
2725 |
+
#: my-calendar-settings.php:449
|
2726 |
+
msgid "Show Link to Google Map"
|
2727 |
+
msgstr "गूगल मानचित्र से लिंक करें"
|
2728 |
+
|
2729 |
+
#@ my-calendar
|
2730 |
+
#: my-calendar-settings.php:452
|
2731 |
+
msgid "Show Event Address"
|
2732 |
+
msgstr "घटना पता"
|
2733 |
+
|
2734 |
+
#@ my-calendar
|
2735 |
+
#: my-calendar-settings.php:461
|
2736 |
+
msgid "Show link to single-event details. (requires <a href='#mc_uri'>URL, above</a>)"
|
2737 |
+
msgstr "एकल घटना विवरण के लिए लिंक दिखाएँ. (</ a> ऊपर आवश्यक <a href='#mc_uri'> यूआरएल)"
|
2738 |
+
|
2739 |
+
#@ my-calendar
|
2740 |
+
#: my-calendar-settings.php:464
|
2741 |
+
msgid "Event links expire after the event has passed."
|
2742 |
+
msgstr "घटना लिंक में समाप्त करने के बाद घटना पारित किया है."
|
2743 |
+
|
2744 |
+
#@ my-calendar
|
2745 |
+
#: my-calendar-settings.php:467
|
2746 |
+
msgid "Show current availability status"
|
2747 |
+
msgstr "वर्तमान उपलब्धता स्थिति"
|
2748 |
+
|
2749 |
+
#@ my-calendar
|
2750 |
+
#: my-calendar-settings.php:478
|
2751 |
+
msgid "Event Scheduling Options"
|
2752 |
+
msgstr "ईवेंट निर्धारण विकल्प"
|
2753 |
+
|
2754 |
+
#@ my-calendar
|
2755 |
+
#: my-calendar-settings.php:481
|
2756 |
+
msgid "Default setting for event input: 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."
|
2757 |
+
msgstr "ईवेंट इनपुट के लिए डिफ़ॉल्ट सेटिंग: यदि एक आवर्ती ईवेंट जो (जैसे कि फरवरी में 5 बुधवार रूप ) मौजूद नहीं है एक तिथि के लिए निर्धारित है, यह एक सप्ताह वापस ले."
|
2758 |
+
|
2759 |
+
#@ my-calendar
|
2760 |
+
#: my-calendar-settings.php:484
|
2761 |
+
msgid "Holiday Category"
|
2762 |
+
msgstr "अवकाश श्रेणी"
|
2763 |
+
|
2764 |
+
#@ my-calendar
|
2765 |
+
#: my-calendar-settings.php:502
|
2766 |
+
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2767 |
+
msgstr "यदि एक घटना नामित \"अवकाश \" श्रेणी में एक घटना के साथ मेल खाता , ईवेंट नहीं दिखा है: ईवेंट इनपुट लिए डिफ़ॉल्ट सेटिंग."
|
2768 |
+
|
2769 |
+
#@ my-calendar
|
2770 |
+
#: my-calendar-settings.php:505
|
2771 |
+
msgid "Default Sort order for Admin Events List"
|
2772 |
+
msgstr "व्यवस्थापक आयोजन सूची के लिए डिफ़ॉल्ट सॉर्ट क्रम"
|
2773 |
+
|
2774 |
+
#@ my-calendar
|
2775 |
+
#: my-calendar-settings.php:507
|
2776 |
+
msgid "Event ID"
|
2777 |
+
msgstr "इवेंट ID"
|
2778 |
+
|
2779 |
+
#@ my-calendar
|
2780 |
+
#: my-calendar-settings.php:340
|
2781 |
+
#: my-calendar-settings.php:521
|
2782 |
+
msgid "Save Output Settings"
|
2783 |
+
msgstr "उत्पादन सेटिंग्स सहेजें"
|
2784 |
+
|
2785 |
+
#@ my-calendar
|
2786 |
+
#: my-calendar-settings.php:527
|
2787 |
+
msgid "Calendar Input Settings"
|
2788 |
+
msgstr "कैलेंडर इनपुट सेटिंग्स"
|
2789 |
+
|
2790 |
+
#@ my-calendar
|
2791 |
+
#: my-calendar-settings.php:532
|
2792 |
+
msgid "Select which input fields will be available when adding or editing events."
|
2793 |
+
msgstr "जो इनपुट फ़ील्ड उपलब्ध हो जब जोड़ने या संपादन घटनाओं चुनें."
|
2794 |
+
|
2795 |
+
#@ my-calendar
|
2796 |
+
#: my-calendar-settings.php:537
|
2797 |
+
msgid "Show Event image field"
|
2798 |
+
msgstr "घटना छवि क्षेत्र दिखाएँ "
|
2799 |
+
|
2800 |
+
#@ my-calendar
|
2801 |
+
#: my-calendar-settings.php:537
|
2802 |
+
msgid "Show Event registration options"
|
2803 |
+
msgstr "ईवेंट पंजीकरण विकल्प दिखाएँ"
|
2804 |
+
|
2805 |
+
#@ my-calendar
|
2806 |
+
#: my-calendar-settings.php:537
|
2807 |
+
msgid "Show Event location fields"
|
2808 |
+
msgstr "घटना स्थान फ़ील्ड दिखाएँ"
|
2809 |
+
|
2810 |
+
#@ default
|
2811 |
+
#: my-calendar-settings.php:537
|
2812 |
+
msgid "Use HTML Editor in Event Description Field"
|
2813 |
+
msgstr "घटना विवरण फील्ड में HTML संपादक का उपयोग"
|
2814 |
+
|
2815 |
+
#@ my-calendar
|
2816 |
+
#: my-calendar-settings.php:555
|
2817 |
+
msgid "Save Input Settings"
|
2818 |
+
msgstr "इनपुट सेटिंग्स सहेजें"
|
2819 |
+
|
2820 |
+
#@ my-calendar
|
2821 |
+
#: my-calendar-settings.php:562
|
2822 |
+
msgid "Multisite Settings (Network Administrators only)"
|
2823 |
+
msgstr "एकाधिक साइट सेटिंग्स (नेटवर्क प्रशासक केवल)"
|
2824 |
+
|
2825 |
+
#@ my-calendar
|
2826 |
+
#: my-calendar-settings.php:564
|
2827 |
+
msgid "Multisite support is a beta feature - use with caution."
|
2828 |
+
msgstr "सावधानी के साथ उपयोग एकाधिक साइट समर्थन एक बीटा सुविधा है."
|
2829 |
+
|
2830 |
+
#@ my-calendar
|
2831 |
+
#: my-calendar-settings.php:569
|
2832 |
+
msgid "Settings for WP MultiSite configurations"
|
2833 |
+
msgstr "WP एकाधिक विन्यास के लिए सेटिंग्स"
|
2834 |
+
|
2835 |
+
#@ my-calendar
|
2836 |
+
#: my-calendar-settings.php:570
|
2837 |
+
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2838 |
+
msgstr "केंद्रीय कैलेंडर को कैलेंडर को अपने WordPress एकाधिक साइट नेटवर्क में प्राथमिक साइट साथ जुड़े है."
|
2839 |
+
|
2840 |
+
#@ my-calendar
|
2841 |
+
#: my-calendar-settings.php:572
|
2842 |
+
msgid "Site owners may only post to their local calendar"
|
2843 |
+
msgstr "साइट के मालिक केवल उनके स्थानीय कैलेंडर को पोस्ट कर सकते हैं"
|
2844 |
+
|
2845 |
+
#@ my-calendar
|
2846 |
+
#: my-calendar-settings.php:573
|
2847 |
+
msgid "Site owners may only post to the central calendar"
|
2848 |
+
msgstr "साइट के मालिक केवल केंद्रीय कैलेंडर पोस्ट कर सकते हैं"
|
2849 |
+
|
2850 |
+
#@ my-calendar
|
2851 |
+
#: my-calendar-settings.php:574
|
2852 |
+
msgid "Site owners may manage either calendar"
|
2853 |
+
msgstr "साइट के मालिक या तो कैलेंडर प्रबंधन कर सकते हैं"
|
2854 |
+
|
2855 |
+
#@ my-calendar
|
2856 |
+
#: my-calendar-settings.php:576
|
2857 |
+
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2858 |
+
msgstr "केवल परिवर्तन प्रभाव इनपुट अनुमतियाँ. सार्वजनिक सामना करना पड़ रहा कैलेंडर अपरिवर्तित होगा."
|
2859 |
+
|
2860 |
+
#@ my-calendar
|
2861 |
+
#: my-calendar-settings.php:583
|
2862 |
+
msgid "Save Multisite Settings"
|
2863 |
+
msgstr "एकाधिक साइट सेटिंग्स सहेजें"
|
2864 |
+
|
2865 |
+
#@ my-calendar
|
2866 |
+
#: my-calendar-settings.php:590
|
2867 |
+
msgid "Calendar Email Settings"
|
2868 |
+
msgstr "कैलेंडर ई - मेल सेटिंग्स"
|
2869 |
+
|
2870 |
+
#@ my-calendar
|
2871 |
+
#: my-calendar-settings.php:614
|
2872 |
+
msgid "Save Email Settings"
|
2873 |
+
msgstr "ईमेल सेटिंग्स सहेजें"
|
2874 |
+
|
2875 |
+
#@ my-calendar
|
2876 |
+
#: my-calendar-settings.php:620
|
2877 |
+
msgid "Calendar User Settings"
|
2878 |
+
msgstr "कैलेंडर उपयोगकर्ता सेटिंग्स"
|
2879 |
+
|
2880 |
+
#@ my-calendar
|
2881 |
+
#: my-calendar-settings.php:627
|
2882 |
+
msgid "Settings which can be configured in registered user's accounts"
|
2883 |
+
msgstr "सेटिंग्स जो पंजीकृत उपयोगकर्ता खाते में विन्यस्त किया जा सकता"
|
2884 |
+
|
2885 |
+
#@ my-calendar
|
2886 |
+
#: my-calendar-settings.php:629
|
2887 |
+
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2888 |
+
msgstr "पंजीकृत उपयोगकर्ताओं उनके उपयोगकर्ता प्रोफ़ाइल में समयक्षेत्र या स्थान presets के प्रदान करने के लिए अनुमति देते हैं."
|
2889 |
+
|
2890 |
+
#@ my-calendar
|
2891 |
+
#: my-calendar-settings.php:641
|
2892 |
+
msgid "Timezone Settings"
|
2893 |
+
msgstr "समय क्षेत्र सेटिंग्स"
|
2894 |
+
|
2895 |
+
#@ my-calendar
|
2896 |
+
#: my-calendar-settings.php:642
|
2897 |
+
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."
|
2898 |
+
msgstr "ये सेटिंग्स के लिए उनके उपयोगकर्ता प्रोफ़ाइल में एक समय क्षेत्र चयन करने साथ पंजीकृत उपयोगकर्ताओं को प्रदान करते हैं. जब वे आपका कैलेंडर देख, घटनाओं हेतु समय समय ईवेंट उनके समय क्षेत्र में होता के रूप में के रूप में अच्छी तरह से प्रवेश मूल्य प्रदर्शित करेगा."
|
2899 |
+
|
2900 |
+
#@ my-calendar
|
2901 |
+
#: my-calendar-settings.php:644
|
2902 |
+
msgid "Enable Timezone"
|
2903 |
+
msgstr "समय क्षेत्र सक्षम"
|
2904 |
+
|
2905 |
+
#@ my-calendar
|
2906 |
+
#: my-calendar-settings.php:647
|
2907 |
+
msgid "Select Timezone Label"
|
2908 |
+
msgstr "समय क्षेत्र लेबल का चयन करें"
|
2909 |
+
|
2910 |
+
#@ my-calendar
|
2911 |
+
#: my-calendar-settings.php:650
|
2912 |
+
msgid "Timezone Options"
|
2913 |
+
msgstr "समय क्षेत्र विकल्प"
|
2914 |
+
|
2915 |
+
#@ my-calendar
|
2916 |
+
#: my-calendar-settings.php:650
|
2917 |
+
#: my-calendar-settings.php:674
|
2918 |
+
msgid "Value, Label; one per line"
|
2919 |
+
msgstr "मूल्य, लेबल, एक प्रति पंक्ति"
|
2920 |
+
|
2921 |
+
#@ my-calendar
|
2922 |
+
#: my-calendar-settings.php:662
|
2923 |
+
msgid "Location Settings"
|
2924 |
+
msgstr "स्थान सेटिंग्स"
|
2925 |
+
|
2926 |
+
#@ my-calendar
|
2927 |
+
#: my-calendar-settings.php:663
|
2928 |
+
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. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2929 |
+
msgstr "इन सेटिंग्स अपने उपयोगकर्ता प्रोफ़ाइल में एक स्थान चयन करने साथ पंजीकृत उपयोगकर्ताओं को प्रदान करते हैं. जब वे आप कैलेंडर को देखने के लिए, उनके प्रारंभिक दृश्य स्थानों जो उस स्थान पैरामीटर शामिल के लिए सीमित हो जाएगा. इन मूल्यों भी के लिए कस्टम विकल्प <code> my_calendar_locations </ कोड> लघुकोडः का फ़िल्टरिंग स्थान उत्पन्न इस्तेमाल किया जा सकता . यह के लिए इन उपयोगकर्ताओं कस्टम फ़िल्टरिंग विकल्प उपयोग के लिए के लिए सेटिंग्स को सक्षम करने के लिए आवश्यक नहीं है."
|
2930 |
+
|
2931 |
+
#@ my-calendar
|
2932 |
+
#: my-calendar-settings.php:665
|
2933 |
+
msgid "Enable Location"
|
2934 |
+
msgstr "स्थान सक्षम"
|
2935 |
+
|
2936 |
+
#@ my-calendar
|
2937 |
+
#: my-calendar-settings.php:668
|
2938 |
+
msgid "Use this location list as input control"
|
2939 |
+
msgstr "इनपुट नियंत्रण के रूप में इस स्थान सूची का उपयोग करें"
|
2940 |
+
|
2941 |
+
#@ my-calendar
|
2942 |
+
#: my-calendar-settings.php:668
|
2943 |
+
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2944 |
+
msgstr "यह स्थान प्रकार के लिए सामान्य पाठ प्रविष्टि इन विकल्पों युक्त डाउन एक बूंद द्वारा प्रतिस्थापित किया जाएगा."
|
2945 |
+
|
2946 |
+
#@ my-calendar
|
2947 |
+
#: my-calendar-settings.php:671
|
2948 |
+
msgid "Select Location Label"
|
2949 |
+
msgstr "स्थान लेबल का चयन करें"
|
2950 |
+
|
2951 |
+
#@ my-calendar
|
2952 |
+
#: my-calendar-settings.php:674
|
2953 |
+
msgid "Location Options"
|
2954 |
+
msgstr "स्थान विकल्प"
|
2955 |
+
|
2956 |
+
#@ my-calendar
|
2957 |
+
#: my-calendar-settings.php:684
|
2958 |
+
msgid "Location Type"
|
2959 |
+
msgstr "स्थान के प्रकार"
|
2960 |
+
|
2961 |
+
#@ my-calendar
|
2962 |
+
#: my-calendar-settings.php:697
|
2963 |
+
msgid "Save User Settings"
|
2964 |
+
msgstr "उपयोगकर्ता सेटिंग सहेजें"
|
2965 |
+
|
2966 |
+
#@ my-calendar
|
2967 |
+
#: my-calendar-styles.php:79
|
2968 |
+
msgid "The stylesheet has been updated."
|
2969 |
+
msgstr "स्टाइलशीट अपडेट किया गया है."
|
2970 |
+
|
2971 |
+
#@ my-calendar
|
2972 |
+
#: my-calendar-styles.php:79
|
2973 |
+
msgid "Write Error! Please verify write permissions on the style file."
|
2974 |
+
msgstr "त्रुटि लिखना! शैली फ़ाइल पर लिखने की अनुमति की पुष्टि करें."
|
2975 |
+
|
2976 |
+
#@ my-calendar
|
2977 |
+
#: my-calendar-styles.php:93
|
2978 |
+
msgid "Stylesheet reset to default."
|
2979 |
+
msgstr "स्टाइलशीट के लिए डिफ़ॉल्ट रीसेट."
|
2980 |
+
|
2981 |
+
#@ my-calendar
|
2982 |
+
#: my-calendar-styles.php:96
|
2983 |
+
msgid "Style Settings Saved"
|
2984 |
+
msgstr "शैली सेटिंग्स बचाया"
|
2985 |
+
|
2986 |
+
#@ my-calendar
|
2987 |
+
#: my-calendar-styles.php:105
|
2988 |
+
msgid "New theme selected."
|
2989 |
+
msgstr "नया विषय चुना है."
|
2990 |
+
|
2991 |
+
#@ my-calendar
|
2992 |
+
#: my-calendar-styles.php:121
|
2993 |
+
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2994 |
+
msgstr "माफ़ कीजिए. फ़ाइल आप के लिए देख रहे करने के लिए मौजूद नहीं होती है. आप फ़ाइल नाम और स्थान की जाँच करें!"
|
2995 |
+
|
2996 |
+
#@ my-calendar
|
2997 |
+
#: my-calendar-styles.php:141
|
2998 |
+
msgid "Select My Calendar Theme"
|
2999 |
+
msgstr "मेरे कैलेंडर थीम चुनें"
|
3000 |
+
|
3001 |
+
#@ default
|
3002 |
+
#: my-calendar-styles.php:149
|
3003 |
+
msgid "Your Custom Stylesheets"
|
3004 |
+
msgstr "आपके कस्टम stylesheets"
|
3005 |
+
|
3006 |
+
#@ my-calendar
|
3007 |
+
#: my-calendar-styles.php:158
|
3008 |
+
msgid "Installed Stylesheets"
|
3009 |
+
msgstr "स्थापित stylesheets"
|
3010 |
+
|
3011 |
+
#@ my-calendar
|
3012 |
+
#: my-calendar-styles.php:166
|
3013 |
+
msgid "Choose Style"
|
3014 |
+
msgstr "शैली चुनें"
|
3015 |
+
|
3016 |
+
#@ my-calendar
|
3017 |
+
#: my-calendar-styles.php:179
|
3018 |
+
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."
|
3019 |
+
msgstr "मेरा कैलेंडर के लिए नवीनीकरण के दौरान आप सीएसएस फ़ाइलों अद्यतन करने था. अगर आप आप शैलियों मेरे कैलेंडर संपादित करना चाहते हैं करें अपनी फ़ाइल अनुमतियाँ जाँच. आपके पहले संग्रहीत शैलियों नीचे हैं. यह संदेश और इन शैलियों डेटाबेस से हटा दिया जाएगा जब आप सफलतापूर्वक आप स्टाइलशीट अद्यतन."
|
3020 |
+
|
3021 |
+
#@ my-calendar
|
3022 |
+
#: my-calendar-styles.php:189
|
3023 |
+
msgid "Apply CSS only on these pages (comma separated page IDs)"
|
3024 |
+
msgstr "इन पृष्ठों पर केवल सीएसएस लागू करें (अल्पविराम पृष्ठ आईडी अलग)"
|
3025 |
+
|
3026 |
+
#@ my-calendar
|
3027 |
+
#: my-calendar-styles.php:192
|
3028 |
+
msgid "Restore My Calendar stylesheet"
|
3029 |
+
msgstr "मेरे कैलेंडर स्टाइलशीट को पुनर्स्थापित करें"
|
3030 |
+
|
3031 |
+
#@ my-calendar
|
3032 |
+
#: my-calendar-styles.php:208
|
3033 |
+
msgid "Comparing Your Style with latest installed version of My Calendar"
|
3034 |
+
msgstr "मेरा कैलेंडर का नवीनतम संस्करण स्थापित साथ आपका स्टाइल तुलना"
|
3035 |
+
|
3036 |
+
#@ my-calendar
|
3037 |
+
#: my-calendar-styles.php:212
|
3038 |
+
msgid "There have been updates to the stylesheet."
|
3039 |
+
msgstr "वहाँ अद्यतन स्टाइलशीट के लिए किया गया है."
|
3040 |
+
|
3041 |
+
#@ my-calendar
|
3042 |
+
#: my-calendar-styles.php:212
|
3043 |
+
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
3044 |
+
msgstr "मेरा कैलेंडर का नवीनतम संस्करण स्थापित साथ आपके स्टाइल शीट तुलना ."
|
3045 |
+
|
3046 |
+
#@ my-calendar
|
3047 |
+
#: my-calendar-styles.php:216
|
3048 |
+
msgid "Your stylesheet matches that included with My Calendar."
|
3049 |
+
msgstr "आपके स्टाइलशीट मेल खाता है कि मेरा कैलेंडर साथ शामिल ."
|
3050 |
+
|
3051 |
+
#@ my-calendar
|
3052 |
+
#: my-calendar-styles.php:224
|
3053 |
+
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
3054 |
+
msgstr "आप स्टाइलशीट रीसेट कि शैली के संस्करण वर्तमान प्लग - इन साथ वितरित के लिए आप स्टाइलशीट की स्थापना की जाएगी."
|
3055 |
+
|
3056 |
+
#@ my-calendar
|
3057 |
+
#: my-calendar-templates.php:42
|
3058 |
+
#, php-format
|
3059 |
+
msgid "Map<span> to %s</span>"
|
3060 |
+
msgstr "Map<span> to %s</span>"
|
3061 |
+
|
3062 |
+
#@ my-calendar
|
3063 |
+
#: my-calendar-templates.php:63
|
3064 |
+
#: my-calendar-templates.php:111
|
3065 |
+
#, php-format
|
3066 |
+
msgid "Visit web site<span>: %s</span>"
|
3067 |
+
msgstr "वेब साइट पर जाएँ <span>: %s</span>"
|
3068 |
+
|
3069 |
+
#@ my-calendar
|
3070 |
+
#: my-calendar-templates.php:120
|
3071 |
+
#, php-format
|
3072 |
+
msgid "Date of Month (the %s of each month)"
|
3073 |
+
msgstr "महीने की तिथि (%s प्रत्येक माह के)"
|
3074 |
+
|
3075 |
+
#@ my-calendar
|
3076 |
+
#: my-calendar-templates.php:121
|
3077 |
+
#, php-format
|
3078 |
+
msgid "Day of Month (the %s %s of each month)"
|
3079 |
+
msgstr "महीने के दिन (%s%s के प्रत्येक महीने)"
|
3080 |
+
|
3081 |
+
#@ my-calendar
|
3082 |
+
#: my-calendar-templating.php:18
|
3083 |
+
msgid "Grid Output Template saved"
|
3084 |
+
msgstr "ग्रिड आउटपुट टेम्पलेट सहेजे"
|
3085 |
+
|
3086 |
+
#@ my-calendar
|
3087 |
+
#: my-calendar-templating.php:30
|
3088 |
+
msgid "List Output Template saved"
|
3089 |
+
msgstr "सूची आउटपुट टेम्पलेट सहेजे"
|
3090 |
+
|
3091 |
+
#@ my-calendar
|
3092 |
+
#: my-calendar-templating.php:41
|
3093 |
+
msgid "Mini Output Template saved"
|
3094 |
+
msgstr "मिनी आउटपुट टेम्पलेट सहेजे"
|
3095 |
+
|
3096 |
+
#@ my-calendar
|
3097 |
+
#: my-calendar-templating.php:52
|
3098 |
+
msgid "Event Details Template saved"
|
3099 |
+
msgstr "घटना विवरण टेम्पलेट सहेजे"
|
3100 |
+
|
3101 |
+
#@ my-calendar
|
3102 |
+
#: my-calendar-templating.php:67
|
3103 |
+
msgid "My Calendar Information Templates"
|
3104 |
+
msgstr "मेरा कैलेंडर सूचना टेम्पलेट्स"
|
3105 |
+
|
3106 |
+
#@ my-calendar
|
3107 |
+
#: my-calendar-templating.php:73
|
3108 |
+
msgid "Title of the event."
|
3109 |
+
msgstr "घटना का शीर्षक."
|
3110 |
+
|
3111 |
+
#@ my-calendar
|
3112 |
+
#: my-calendar-templating.php:76
|
3113 |
+
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3114 |
+
msgstr "एक कड़ी अगर एक यूआरएल मौजूद है, या शीर्षक अगर अकेले नहीं रूप ईवेंट के शीर्षक."
|
3115 |
+
|
3116 |
+
#@ my-calendar
|
3117 |
+
#: my-calendar-templating.php:79
|
3118 |
+
msgid "Start time for the event."
|
3119 |
+
msgstr "ईवेंट के लिए समय शुरू करो."
|
3120 |
+
|
3121 |
+
#@ my-calendar
|
3122 |
+
#: my-calendar-templating.php:82
|
3123 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
3124 |
+
msgstr "ईवेंट समय वर्तमान उपयोगकर्ता समय क्षेत्र को समायोजित अगर सेट."
|
3125 |
+
|
3126 |
+
#@ my-calendar
|
3127 |
+
#: my-calendar-templating.php:85
|
3128 |
+
msgid "Date on which the event begins."
|
3129 |
+
msgstr "तारीख, जिस पर ईवेंट शुरू होता है."
|
3130 |
+
|
3131 |
+
#@ my-calendar
|
3132 |
+
#: my-calendar-templating.php:88
|
3133 |
+
msgid "Date on which the event ends."
|
3134 |
+
msgstr "तारीख, जिस पर ईवेंट समाप्त होता है."
|
3135 |
+
|
3136 |
+
#@ my-calendar
|
3137 |
+
#: my-calendar-templating.php:91
|
3138 |
+
msgid "Time at which the event ends."
|
3139 |
+
msgstr "जो समय पर घटना समाप्त होता है."
|
3140 |
+
|
3141 |
+
#@ my-calendar
|
3142 |
+
#: my-calendar-templating.php:100
|
3143 |
+
msgid "Author who posted the event."
|
3144 |
+
msgstr "लेखक है जो ईवेंट तैनात हैं."
|
3145 |
+
|
3146 |
+
#@ my-calendar
|
3147 |
+
#: my-calendar-templating.php:103
|
3148 |
+
msgid "Name of the assigned host for the event."
|
3149 |
+
msgstr "ईवेंट के लिए सौंपा मेजबान का नाम."
|
3150 |
+
|
3151 |
+
#@ my-calendar
|
3152 |
+
#: my-calendar-templating.php:106
|
3153 |
+
msgid "Email for the person assigned as host."
|
3154 |
+
msgstr "मेजबान के रूप में असाइन किए गए व्यक्ति के लिए ईमेल."
|
3155 |
+
|
3156 |
+
#@ my-calendar
|
3157 |
+
#: my-calendar-templating.php:109
|
3158 |
+
msgid "Short event description."
|
3159 |
+
msgstr "ईवेंट विवरण कम."
|
3160 |
+
|
3161 |
+
#@ my-calendar
|
3162 |
+
#: my-calendar-templating.php:112
|
3163 |
+
msgid "Description of the event."
|
3164 |
+
msgstr "ईवेंट का विवरण."
|
3165 |
+
|
3166 |
+
#@ my-calendar
|
3167 |
+
#: my-calendar-templating.php:118
|
3168 |
+
msgid "URL provided for the event."
|
3169 |
+
msgstr "इस URL घटना के लिए प्रदान की है."
|
3170 |
+
|
3171 |
+
#@ my-calendar
|
3172 |
+
#: my-calendar-templating.php:121
|
3173 |
+
msgid "Link to an auto-generated page containing information about the event."
|
3174 |
+
msgstr "एक ऑटो उत्पन्न ईवेंट के बारे में जानकारी युक्त पृष्ठ के लिए लिंक."
|
3175 |
+
|
3176 |
+
#@ my-calendar
|
3177 |
+
#: my-calendar-templating.php:124
|
3178 |
+
msgid "Whether event is currently open for registration."
|
3179 |
+
msgstr "क्या घटना वर्तमान में पंजीकरण के लिए खुला है."
|
3180 |
+
|
3181 |
+
#@ my-calendar
|
3182 |
+
#: my-calendar-templating.php:127
|
3183 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3184 |
+
msgstr "ईवेंट की वर्तमान स्थिति: \"सुरक्षित \" या\"प्रकाशित \" "
|
3185 |
+
|
3186 |
+
#@ my-calendar
|
3187 |
+
#: my-calendar-templating.php:133
|
3188 |
+
msgid "Name of the location of the event."
|
3189 |
+
msgstr "ईवेंट के स्थान का नाम."
|
3190 |
+
|
3191 |
+
#@ my-calendar
|
3192 |
+
#: my-calendar-templating.php:136
|
3193 |
+
msgid "First line of the site address."
|
3194 |
+
msgstr "साइट के पते की पहली पंक्ति."
|
3195 |
+
|
3196 |
+
#@ my-calendar
|
3197 |
+
#: my-calendar-templating.php:139
|
3198 |
+
msgid "Second line of the site address."
|
3199 |
+
msgstr "साइट पते की दूसरी लाइन"
|
3200 |
+
|
3201 |
+
#@ my-calendar
|
3202 |
+
#: my-calendar-templating.php:142
|
3203 |
+
msgid "City."
|
3204 |
+
msgstr "शहर"
|
3205 |
+
|
3206 |
+
#@ my-calendar
|
3207 |
+
#: my-calendar-templating.php:145
|
3208 |
+
msgid "State."
|
3209 |
+
msgstr "राज्य."
|
3210 |
+
|
3211 |
+
#@ my-calendar
|
3212 |
+
#: my-calendar-templating.php:148
|
3213 |
+
msgid "Postal code/zip code."
|
3214 |
+
msgstr "पिन कोड / ज़िप कोड."
|
3215 |
+
|
3216 |
+
#@ my-calendar
|
3217 |
+
#: my-calendar-templating.php:151
|
3218 |
+
msgid "Custom region."
|
3219 |
+
msgstr "कस्टम क्षेत्र."
|
3220 |
+
|
3221 |
+
#@ my-calendar
|
3222 |
+
#: my-calendar-templating.php:154
|
3223 |
+
msgid "Country for the event location."
|
3224 |
+
msgstr "ईवेंट के स्थान के लिए देश."
|
3225 |
+
|
3226 |
+
#@ my-calendar
|
3227 |
+
#: my-calendar-templating.php:157
|
3228 |
+
msgid "Output the URL for the location."
|
3229 |
+
msgstr "स्थान के लिए URL उत्पादन."
|
3230 |
+
|
3231 |
+
#@ my-calendar
|
3232 |
+
#: my-calendar-templating.php:160
|
3233 |
+
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3234 |
+
msgstr "<a Href=\"http://microformats.org/wiki/hcard\"> hcard </ a> प्रारूप में ईवेंट पता."
|
3235 |
+
|
3236 |
+
#@ my-calendar
|
3237 |
+
#: my-calendar-templating.php:163
|
3238 |
+
msgid "Link to Google Map to the event, if address information is available."
|
3239 |
+
msgstr "गूगल मानचित्र घटना के लिए लिंक, अगर पता जानकारी उपलब्ध है."
|
3240 |
+
|
3241 |
+
#@ my-calendar
|
3242 |
+
#: my-calendar-templating.php:169
|
3243 |
+
msgid "Name of the category of the event."
|
3244 |
+
msgstr "ईवेंट की श्रेणी का नाम."
|
3245 |
+
|
3246 |
+
#@ my-calendar
|
3247 |
+
#: my-calendar-templating.php:172
|
3248 |
+
msgid "URL for the event's category icon."
|
3249 |
+
msgstr "ईवेंट श्रेणी चिह्न के लिए URL."
|
3250 |
+
|
3251 |
+
#@ my-calendar
|
3252 |
+
#: my-calendar-templating.php:175
|
3253 |
+
msgid "Hex code for the event's category color."
|
3254 |
+
msgstr "ईवेंट वर्ग रंग के लिए हेक्स कोड."
|
3255 |
+
|
3256 |
+
#@ my-calendar
|
3257 |
+
#: my-calendar-templating.php:178
|
3258 |
+
msgid "ID of the category of the event."
|
3259 |
+
msgstr "ईवेंट की श्रेणी की पहचान."
|
3260 |
+
|
3261 |
+
#@ my-calendar
|
3262 |
+
#: my-calendar-templating.php:181
|
3263 |
+
msgid "Advanced users may wish to customize the HTML elements and order of items presented for each event. This page provides the ability to create a customized view of your events in each different context. All available template tags are documented on the Help page. The default templates provided are based on the default views assuming all output is enabled. <strong>Custom templates will override any other output rules you've configured in settings.</strong>"
|
3264 |
+
msgstr "उन्नत उपयोगकर्ताओं के लिए HTML तत्वों और प्रत्येक ईवेंट के लिए प्रस्तुत मदों के आदेश अनुकूलित करना चाह सकते हैं. यह पृष्ठ के लिए प्रत्येक अलग संदर्भ में आप घटनाओं के एक अनुकूलित दृश्य बनाने की क्षमता प्रदान करता है. सभी उपलब्ध टेम्पलेट टैग सहायता पृष्ठ पर प्रलेखित रहे हैं. दिए गए डिफ़ॉल्ट टेम्पलेट डिफ़ॉल्ट संभालने सभी उत्पादन में सक्षम है विचारों पर आधारित हैं. <strong> कस्टम टेम्पलेट्स किसी अन्य उत्पादन नियमों आप सेटिंग में विन्यस्त किया है ओवरराइड </ strong> करेंगे."
|
3265 |
+
|
3266 |
+
#@ my-calendar
|
3267 |
+
#: my-calendar-templating.php:181
|
3268 |
+
msgid "Templates Help"
|
3269 |
+
msgstr "टेम्पलेट मदद"
|
3270 |
+
|
3271 |
+
#@ my-calendar
|
3272 |
+
#: my-calendar-templating.php:184
|
3273 |
+
msgid "My Calendar: Grid Event Template"
|
3274 |
+
msgstr "मेरा कैलेंडर ग्रिड ईवेंट टेम्पलेट"
|
3275 |
+
|
3276 |
+
#@ my-calendar
|
3277 |
+
#: my-calendar-templating.php:189
|
3278 |
+
msgid "Use this grid event template"
|
3279 |
+
msgstr "ग्रिड ईवेंट टेम्पलेट का उपयोग करें"
|
3280 |
+
|
3281 |
+
#@ my-calendar
|
3282 |
+
#: my-calendar-templating.php:192
|
3283 |
+
msgid "Your custom template for events in the calendar grid output."
|
3284 |
+
msgstr "आपके कैलेंडर को ग्रिड उत्पादन में घटनाओं लिए कस्टम टेम्पलेट."
|
3285 |
+
|
3286 |
+
#@ my-calendar
|
3287 |
+
#: my-calendar-templating.php:195
|
3288 |
+
msgid "Save Grid Template"
|
3289 |
+
msgstr "ग्रिड टेम्पलेट सहेजें"
|
3290 |
+
|
3291 |
+
#@ my-calendar
|
3292 |
+
#: my-calendar-templating.php:204
|
3293 |
+
msgid "My Calendar: List Event Template"
|
3294 |
+
msgstr "मेरा कैलेंडर सूची ईवेंट टेम्पलेट"
|
3295 |
+
|
3296 |
+
#@ my-calendar
|
3297 |
+
#: my-calendar-templating.php:209
|
3298 |
+
msgid "Use this list event template"
|
3299 |
+
msgstr "यह सूची ईवेंट टेम्पलेट प्रयोग करें"
|
3300 |
+
|
3301 |
+
#@ my-calendar
|
3302 |
+
#: my-calendar-templating.php:212
|
3303 |
+
msgid "Your custom template for events in calendar list output."
|
3304 |
+
msgstr "आपके कैलेंडर को सूची उत्पादन में घटनाओं लिए कस्टम टेम्पलेट."
|
3305 |
+
|
3306 |
+
#@ my-calendar
|
3307 |
+
#: my-calendar-templating.php:215
|
3308 |
+
msgid "Save List Template"
|
3309 |
+
msgstr "सूची टेम्पलेट सहेजें"
|
3310 |
+
|
3311 |
+
#@ my-calendar
|
3312 |
+
#: my-calendar-templating.php:224
|
3313 |
+
msgid "My Calendar: Mini Calendar Template"
|
3314 |
+
msgstr "मेरे कैलेंडर: मिनी कैलेंडर टेम्पलेट"
|
3315 |
+
|
3316 |
+
#@ my-calendar
|
3317 |
+
#: my-calendar-templating.php:229
|
3318 |
+
msgid "Use this mini event template"
|
3319 |
+
msgstr "इस मिनी ईवेंट टेम्पलेट प्रयोग करें"
|
3320 |
+
|
3321 |
+
#@ my-calendar
|
3322 |
+
#: my-calendar-templating.php:232
|
3323 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
3324 |
+
msgstr "आपके साइडबार / मिनी कैलेंडर को उत्पादन में घटनाओं लिए कस्टम टेम्पलेट."
|
3325 |
+
|
3326 |
+
#@ my-calendar
|
3327 |
+
#: my-calendar-templating.php:235
|
3328 |
+
msgid "Save Mini Template"
|
3329 |
+
msgstr "मिनी टेम्पलेट सहेजें"
|
3330 |
+
|
3331 |
+
#@ my-calendar
|
3332 |
+
#: my-calendar-templating.php:244
|
3333 |
+
msgid "My Calendar: Event Details Page Template"
|
3334 |
+
msgstr "मिनी टेम्पलेट सहेजें"
|
3335 |
+
|
3336 |
+
#@ my-calendar
|
3337 |
+
#: my-calendar-templating.php:249
|
3338 |
+
msgid "Use this details template"
|
3339 |
+
msgstr "यह जानकारी के टेम्पलेट प्रयोग करें"
|
3340 |
+
|
3341 |
+
#@ my-calendar
|
3342 |
+
#: my-calendar-templating.php:252
|
3343 |
+
msgid "Your custom template for events on the event details page."
|
3344 |
+
msgstr "ईवेंट विवरण पृष्ठ पर घटनाओं लिए आपके कस्टम टेम्पलेट."
|
3345 |
+
|
3346 |
+
#@ my-calendar
|
3347 |
+
#: my-calendar-templating.php:255
|
3348 |
+
msgid "Save Details Template"
|
3349 |
+
msgstr "विवरण टेम्पलेट सहेजें"
|
3350 |
+
|
3351 |
+
#@ my-calendar
|
3352 |
+
#: my-calendar-upgrade-db.php:25
|
3353 |
+
msgid "Update now."
|
3354 |
+
msgstr "अभी अपडेट करें."
|
3355 |
+
|
3356 |
+
#@ my-calendar
|
3357 |
+
#: my-calendar-user.php:36
|
3358 |
+
msgid "My Calendar User Settings"
|
3359 |
+
msgstr "मेरे कैलेंडर उपयोगकर्ता सेटिंग"
|
3360 |
+
|
3361 |
+
#@ my-calendar
|
3362 |
+
#: my-calendar-widgets.php:5
|
3363 |
+
msgid "My Calendar: Today's Events"
|
3364 |
+
msgstr "मेरा कैलेंडर: आज आयोजन"
|
3365 |
+
|
3366 |
+
#@ my-calendar
|
3367 |
+
#: my-calendar-widgets.php:45
|
3368 |
+
msgid "Add calendar URL to use this option."
|
3369 |
+
msgstr "कैलेंडर को URL जोड़ें के लिए इस विकल्प उपयोग ."
|
3370 |
+
|
3371 |
+
#@ my-calendar
|
3372 |
+
#: my-calendar-widgets.php:47
|
3373 |
+
#: my-calendar-widgets.php:136
|
3374 |
+
msgid "Link widget title to calendar:"
|
3375 |
+
msgstr "लिंक विजेट कैलेंडर को शीर्षक:"
|
3376 |
+
|
3377 |
+
#@ my-calendar
|
3378 |
+
#: my-calendar-widgets.php:48
|
3379 |
+
#: my-calendar-widgets.php:137
|
3380 |
+
msgid "Not Linked"
|
3381 |
+
msgstr "लिंक्ड नहीं है "
|
3382 |
+
|
3383 |
+
#@ my-calendar
|
3384 |
+
#: my-calendar-widgets.php:49
|
3385 |
+
#: my-calendar-widgets.php:138
|
3386 |
+
msgid "Linked"
|
3387 |
+
msgstr "लिंक्ड"
|
3388 |
+
|
3389 |
+
#@ my-calendar
|
3390 |
+
#: my-calendar-widgets.php:57
|
3391 |
+
#: my-calendar-widgets.php:169
|
3392 |
+
#: my-calendar-widgets.php:575
|
3393 |
+
msgid "Category or categories to display:"
|
3394 |
+
msgstr "श्रेणी या श्रेणियों प्रदर्शित करने के लिए:"
|
3395 |
+
|
3396 |
+
#@ my-calendar
|
3397 |
+
#: my-calendar-widgets.php:78
|
3398 |
+
msgid "My Calendar: Upcoming Events"
|
3399 |
+
msgstr "मेरा कैलेंडर: आगामी घटनाएँ"
|
3400 |
+
|
3401 |
+
#@ my-calendar
|
3402 |
+
#: my-calendar-widgets.php:149
|
3403 |
+
msgid "Skip the first <em>n</em> events"
|
3404 |
+
msgstr "<em>n</em> घटनाओं n छोड़ें"
|
3405 |
+
|
3406 |
+
#@ my-calendar
|
3407 |
+
#: my-calendar-widgets.php:152
|
3408 |
+
msgid "Events sort order:"
|
3409 |
+
msgstr "घटनाक्रम सॉर्ट क्रम:"
|
3410 |
+
|
3411 |
+
#@ my-calendar
|
3412 |
+
#: my-calendar-widgets.php:153
|
3413 |
+
msgid "Ascending (near to far)"
|
3414 |
+
msgstr "( दूर के पास) आरोही"
|
3415 |
+
|
3416 |
+
#@ my-calendar
|
3417 |
+
#: my-calendar-widgets.php:154
|
3418 |
+
msgid "Descending (far to near)"
|
3419 |
+
msgstr "अवरोही (दूर के पास)"
|
3420 |
+
|
3421 |
+
#@ my-calendar
|
3422 |
+
#: my-calendar-widgets.php:165
|
3423 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3424 |
+
msgstr "ह पाठ दिखाएँ अगर कोई आपके मानदंड पूरा घटनाओं रहे :"
|
3425 |
+
|
3426 |
+
#@ my-calendar
|
3427 |
+
#: my-calendar-widgets.php:530
|
3428 |
+
msgid "My Calendar: Mini Calendar"
|
3429 |
+
msgstr "मेरा कैलेंडर: मिनी कैलेंडर"
|
3430 |
+
|
3431 |
+
#@ my-calendar
|
3432 |
+
#: my-calendar-widgets.php:579
|
3433 |
+
msgid "Show Next/Previous Navigation:"
|
3434 |
+
msgstr "अगली / पिछली नेविगेशन दिखाएँ:"
|
3435 |
+
|
3436 |
+
#@ my-calendar
|
3437 |
+
#: my-calendar-widgets.php:585
|
3438 |
+
msgid "Show Category Key:"
|
3439 |
+
msgstr "श्रेणी कुंजी:"
|
3440 |
+
|
3441 |
+
#@ my-calendar
|
3442 |
+
#: my-calendar-widgets.php:591
|
3443 |
+
msgid "Mini-Calendar Timespan:"
|
3444 |
+
msgstr "मिनी कैलेंडर समयावधि:"
|
3445 |
+
|
3446 |
+
#@ my-calendar
|
3447 |
+
#: my-calendar.php:173
|
3448 |
+
msgid "Behavior Editor"
|
3449 |
+
msgstr "व्यवहार संपादक"
|
3450 |
+
|
3451 |
+
#@ my-calendar
|
3452 |
+
#: my-calendar.php:174
|
3453 |
+
msgid "Template Editor"
|
3454 |
+
msgstr "टेम्पलेट संपादक"
|
3455 |
+
|
3456 |
+
#@ my-calendar
|
3457 |
+
#: my-calendar.php:178
|
3458 |
+
msgid "My Calendar Pro Settings"
|
3459 |
+
msgstr "मेरे कैलेंडर प्रो सेटिंग्स"
|
3460 |
+
|
3461 |
+
#@ my-calendar
|
3462 |
+
#: my-calendar-behaviors.php:80
|
3463 |
+
msgid "Details boxes are draggable"
|
3464 |
+
msgstr "विवरण बक्से draggable"
|
3465 |
+
|
3466 |
+
#@ my-calendar
|
3467 |
+
#: my-calendar-core.php:1166
|
3468 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
3469 |
+
msgstr "एक समर्थन अनुरोध करने से पहले अकसर किये गए सवाल और अन्य मदद दस्तावेजों को पढ़ने के."
|
3470 |
+
|
3471 |
+
#@ my-calendar
|
3472 |
+
#: my-calendar-core.php:1168
|
3473 |
+
msgid "Please describe your problem in detail. I'm not psychic."
|
3474 |
+
msgstr "विस्तार से आप समस्या का वर्णन. मैं मानसिक नहीं रहा ."
|
3475 |
+
|
3476 |
+
#@ my-calendar
|
3477 |
+
#: my-calendar-core.php:1173
|
3478 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
3479 |
+
msgstr "आप यह प्लग - इन के सतत विकास के समर्थन के लिए धन्यवाद! मैं तुम्हें वापस करने के रूप में मैं कर सकता हूँ जल्द ही मिल जाएगा."
|
3480 |
+
|
3481 |
+
#@ my-calendar
|
3482 |
+
#: my-calendar-core.php:1175
|
3483 |
+
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
3484 |
+
msgstr "मैं आप वापस के लिए समर्थकों के प्लग - इन से किसी का समर्थन अनुरोध साथ काम के बाद जैसे ही मैं कर सकता हूँ जल्दी मिल जाएगा,."
|
3485 |
+
|
3486 |
+
#@ my-calendar
|
3487 |
+
#: my-calendar-core.php:1185
|
3488 |
+
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
3489 |
+
msgstr "कृपया ध्यान दें: मैं जो दान दिया है रिकॉर्ड, <strong> रहते हो लेकिन अगर आप दान इस वेब साइट पर अपने खाते अलावा अन्य किसी से आया है, अपने संदेश में कृपया ध्यान दें </strong>"
|
3490 |
+
|
3491 |
+
#@ my-calendar
|
3492 |
+
#: my-calendar-core.php:1187
|
3493 |
+
msgid "From:"
|
3494 |
+
msgstr "से:"
|
3495 |
+
|
3496 |
+
#@ my-calendar
|
3497 |
+
#: my-calendar-core.php:1190
|
3498 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
3499 |
+
msgstr "मैं href=\"http://www.joedolson.com/articles/my-calendar/faq/\"> <a पढ़ा है इस प्लग में के लिए अक्सर पूछे जाने वाले प्रश्न </ a>."
|
3500 |
+
|
3501 |
+
#@ my-calendar
|
3502 |
+
#: my-calendar-core.php:1193
|
3503 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
3504 |
+
msgstr "मैं <a href=\"http://www.joedolson.com/donate.php\"> एक दान कर दिया है मदद करने के लिए समर्थन यह प्लग - इन </a>."
|
3505 |
+
|
3506 |
+
#@ my-calendar
|
3507 |
+
#: my-calendar-core.php:1196
|
3508 |
+
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
3509 |
+
msgstr "मैं <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\"> उपयोगकर्ता के गाइड खरीदी </ a>, लेकिन इस सवाल का एक जवाब नहीं मिल सकता है."
|
3510 |
+
|
3511 |
+
#@ my-calendar
|
3512 |
+
#: my-calendar-core.php:1202
|
3513 |
+
msgid "Send Support Request"
|
3514 |
+
msgstr "समर्थन अनुरोध भेजें"
|
3515 |
+
|
3516 |
+
#@ my-calendar
|
3517 |
+
#: my-calendar-core.php:1205
|
3518 |
+
msgid "The following additional information will be sent with your support request:"
|
3519 |
+
msgstr "निम्नलिखित अतिरिक्त जानकारी आप समर्थन अनुरोध साथ भेजा जाएगा:"
|
3520 |
+
|
3521 |
+
#@ my-calendar
|
3522 |
+
#: my-calendar-event-manager.php:354
|
3523 |
+
#: my-calendar-group-manager.php:55
|
3524 |
+
#: my-calendar-group-manager.php:148
|
3525 |
+
#, php-format
|
3526 |
+
msgid "View <a href=\"%s\">your calendar</a>."
|
3527 |
+
msgstr "<a Href=\"%s\"> अपने कैलेंडर </a> देखें."
|
3528 |
+
|
3529 |
+
#@ my-calendar
|
3530 |
+
#: my-calendar-event-manager.php:530
|
3531 |
+
msgid "(URL to Event image)"
|
3532 |
+
msgstr "(ईवेंट छवि यूआरएल)"
|
3533 |
+
|
3534 |
+
#@ my-calendar
|
3535 |
+
#: my-calendar-event-manager.php:636
|
3536 |
+
msgid "This is a multi-day event."
|
3537 |
+
msgstr "यह एक बहु दिन की ईवेंट है."
|
3538 |
+
|
3539 |
+
#@ my-calendar
|
3540 |
+
#: my-calendar-event-manager.php:638
|
3541 |
+
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
3542 |
+
msgstr "शुरू और समाप्त होने के दिनांक/समय ईवेंट की प्रत्येक घटना लिए दर्ज करें."
|
3543 |
+
|
3544 |
+
#@ my-calendar
|
3545 |
+
#: my-calendar-event-manager.php:638
|
3546 |
+
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
3547 |
+
msgstr "यदि यह एक बहु दिन की ईवेंट है, यह कई दिनांक/समय साथ एक एक ईवेंट बनाता है, अन्यथा यह प्रत्येक घटना के लिए अलग घटनाओं बनाता ."
|
3548 |
+
|
3549 |
+
#@ my-calendar
|
3550 |
+
#: my-calendar-event-manager.php:759
|
3551 |
+
#: my-calendar-group-manager.php:457
|
3552 |
+
#: my-calendar-locations.php:147
|
3553 |
+
msgid "Phone"
|
3554 |
+
msgstr "फ़ोन"
|
3555 |
+
|
3556 |
+
#@ my-calendar
|
3557 |
+
#: my-calendar-group-manager.php:214
|
3558 |
+
msgid "The group editable fields for the events in this group match."
|
3559 |
+
msgstr "समूह यह समूह match.Phone में घटनाओं हेतु संपादन क्षेत्रों"
|
3560 |
+
|
3561 |
+
#@ my-calendar
|
3562 |
+
#: my-calendar-group-manager.php:300
|
3563 |
+
msgid "Selected dates are a single multi-day event."
|
3564 |
+
msgstr "चयनित दिनांक बहु - दिन एक भी घटना हैं."
|
3565 |
+
|
3566 |
+
#@ my-calendar
|
3567 |
+
#: my-calendar-help.php:39
|
3568 |
+
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. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events."
|
3569 |
+
msgstr "यह लघुकोडः आगामी घटनाएँ विजेट के उत्पादन प्रदर्शित करता है. </code> और <code> </ कोड> के बाद विशेषताएँ संख्या से पहले <code> होना चाहिए, <code> प्रकार </ कोड> विशेषता या तो \"घटना \" या \"दिन \" हो सकता है, और <code> वर्ग </ कोड> विशेषता मुख्य कैलेंडर को लघुकोडः पर वर्ग विशेषता रूप उसी तरह काम करता है. टेम्पलेट्स टेम्पलेट कोड के नीचे सूचीबद्ध का उपयोग कर काम करते हैं. <code> fallback <कोड /> पाठ प्रदान मामले में वहाँ कोई आपके मानदंड पूरा घटनाओं रहे हैं. आदेश घटनाओं की सूची के लिए सॉर्ट क्रम प्रदान - या तो (<code> कृषि सेवा केंद्र </ कोड>) आरोही या अवरोही (<code> desc </ कोड). <code> छोड़ें </ कोड> घटनाओं की संख्या आने वाली घटनाओं में छोड़ है."
|
3570 |
+
|
3571 |
+
#@ my-calendar
|
3572 |
+
#: my-calendar-help.php:124
|
3573 |
+
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
3574 |
+
msgstr "घटनाओं हेतु शुरुआत समाप्ति तिथि के लिए दिनांक प्रदर्शित करता है. क्या दिखाने प्रारंभ दिनांक रूप ही अगर नहीं समाप्ति तिथि ."
|
3575 |
+
|
3576 |
+
#@ my-calendar
|
3577 |
+
#: my-calendar-help.php:127
|
3578 |
+
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
3579 |
+
msgstr "बहु - दिन घटनाओं के लिए इस समूह में घटनाओं लिए दिनांक और समय का एक unordered सूची प्रदर्शित करता है. अन्यथा, दिनांक / समय शुरुआत."
|
3580 |
+
|
3581 |
+
#@ my-calendar
|
3582 |
+
#: my-calendar-help.php:142
|
3583 |
+
msgid "Displays short description without converting paragraphs."
|
3584 |
+
msgstr "परिवर्तित पैराग्राफ बिना संक्षिप्त विवरण प्रदर्शित करता है."
|
3585 |
+
|
3586 |
+
#@ my-calendar
|
3587 |
+
#: my-calendar-help.php:148
|
3588 |
+
msgid "Displays description without converting paragraphs."
|
3589 |
+
msgstr "विवरण परिवर्तित पैराग्राफ बिना प्रदर्शित करता है."
|
3590 |
+
|
3591 |
+
#@ my-calendar
|
3592 |
+
#: my-calendar-help.php:252
|
3593 |
+
msgid "Get Plug-in Support"
|
3594 |
+
msgstr "प्लग में सहायता प्राप्त"
|
3595 |
+
|
3596 |
+
#@ my-calendar
|
3597 |
+
#: my-calendar-output.php:418
|
3598 |
+
msgid "Calendar: Print View"
|
3599 |
+
msgstr "कैलेंडर: प्रिंट देखें"
|
3600 |
+
|
3601 |
+
#@ my-calendar
|
3602 |
+
#: my-calendar-output.php:433
|
3603 |
+
msgid "Return to site"
|
3604 |
+
msgstr "साइट पर लौटें"
|
3605 |
+
|
3606 |
+
#@ my-calendar
|
3607 |
+
#: my-calendar-output.php:568
|
3608 |
+
msgid "Print View"
|
3609 |
+
msgstr "प्रिंट देखें "
|
3610 |
+
|
3611 |
+
#@ my-calendar
|
3612 |
+
#: my-calendar-output.php:878
|
3613 |
+
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
3614 |
+
msgstr "अपरिचित कैलेंडर स्वरूप. 'सूची', 'कैलेंडर को', या 'मिनी' का उपयोग करें."
|
3615 |
+
|
3616 |
+
#@ my-calendar
|
3617 |
+
#: my-calendar-output.php:949
|
3618 |
+
msgid "Next events »"
|
3619 |
+
msgstr "अगली घटनाओं »"
|
3620 |
+
|
3621 |
+
#@ my-calendar
|
3622 |
+
#: my-calendar-output.php:975
|
3623 |
+
#: my-calendar-output.php:1019
|
3624 |
+
msgid "Week of "
|
3625 |
+
msgstr "सप्ताह के"
|
3626 |
+
|
3627 |
+
#@ my-calendar
|
3628 |
+
#: my-calendar-output.php:993
|
3629 |
+
msgid "« Previous events"
|
3630 |
+
msgstr "«पिछली घटनाओं"
|
3631 |
+
|
3632 |
+
#@ my-calendar
|
3633 |
+
#: my-calendar-settings.php:78
|
3634 |
+
msgid "My Calendar Cache cleared"
|
3635 |
+
msgstr "मेरे कैलेंडर कैश को मंजूरी दे दी"
|
3636 |
+
|
3637 |
+
#@ my-calendar
|
3638 |
+
#: my-calendar-settings.php:161
|
3639 |
+
msgid "Multisite settings saved"
|
3640 |
+
msgstr "एकाधिक साइट सेटिंग्स सहेजे"
|
3641 |
+
|
3642 |
+
#@ my-calendar
|
3643 |
+
#: my-calendar-settings.php:274
|
3644 |
+
msgid "Enable caching."
|
3645 |
+
msgstr "कैशिंग सक्षम ."
|
3646 |
+
|
3647 |
+
#@ my-calendar
|
3648 |
+
#: my-calendar-settings.php:277
|
3649 |
+
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
3650 |
+
msgstr "वर्तमान कैश साफ़ करें. (आवश्यक अगर आप के लिए प्रदर्शित श्रेणियों उदाहरण लिए, बदलने के शॉर्टकोड संपादित.)"
|
3651 |
+
|
3652 |
+
#@ my-calendar
|
3653 |
+
#: my-calendar-settings.php:288
|
3654 |
+
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
3655 |
+
msgstr "आप वर्तमान यह नेटवर्क के लिए प्राथमिक साइट में काम कर रहे हैं, अपने स्थानीय कैलेंडर को भी वैश्विक तालिका है."
|
3656 |
+
|
3657 |
+
#@ my-calendar
|
3658 |
+
#: my-calendar-settings.php:293
|
3659 |
+
msgid "Save Management Settings"
|
3660 |
+
msgstr "प्रबंधन सेटिंग्स सहेजें"
|
3661 |
+
|
3662 |
+
#@ my-calendar
|
3663 |
+
#: my-calendar-settings.php:310
|
3664 |
+
#: my-calendar-settings.php:313
|
3665 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
3666 |
+
msgstr "<code>{date}</code>उपयोग करने के लिए नेविगेशन में उपयुक्त तारीख प्रदर्शित."
|
3667 |
+
|
3668 |
+
#@ my-calendar
|
3669 |
+
#: my-calendar-settings.php:322
|
3670 |
+
msgid "Week view caption:"
|
3671 |
+
msgstr "सप्ताह दृश्य शीर्षक:"
|
3672 |
+
|
3673 |
+
#@ my-calendar
|
3674 |
+
#: my-calendar-settings.php:347
|
3675 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
3676 |
+
msgstr "लक्ष्य <abbr title=\"Uniform संसाधन locator\"> URL <abbr / a> ईवेंट विवरण लिंक के लिए:"
|
3677 |
+
|
3678 |
+
#@ my-calendar
|
3679 |
+
#: my-calendar-settings.php:351
|
3680 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
3681 |
+
msgstr "लक्ष्य <abbr title=\"Uniform resource locator\"> यूआरएल </abbr> एक दिन इस समय लिंक लिए."
|
3682 |
+
|
3683 |
+
#@ my-calendar
|
3684 |
+
#: my-calendar-settings.php:352
|
3685 |
+
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
3686 |
+
msgstr "किसी भी या <code>[my_calendar time=\"day\"]</code> लघुकोडः साथ पेज पोस्ट किया जा सकता है."
|
3687 |
+
|
3688 |
+
#@ my-calendar
|
3689 |
+
#: my-calendar-settings.php:355
|
3690 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
3691 |
+
msgstr "लक्ष्य <abbr title=\"Uniform संसाधन locator\"> यूआरएल </ abbr> मिनी कैलेंडर को के लिए लंगर में पृष्ठ:"
|
3692 |
+
|
3693 |
+
#@ my-calendar
|
3694 |
+
#: my-calendar-settings.php:356
|
3695 |
+
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
3696 |
+
msgstr "किसी या <code> साथ पोस्ट पेज हो सकता है [my_calendar] </ कोड> नीचे चयनित प्रारूप का लघुकोडः"
|
3697 |
+
|
3698 |
+
#@ my-calendar
|
3699 |
+
#: my-calendar-settings.php:358
|
3700 |
+
msgid "With above settings:"
|
3701 |
+
msgstr "उपरोक्त रूपरेखाओं के साथ:"
|
3702 |
+
|
3703 |
+
#@ my-calendar
|
3704 |
+
#: my-calendar-settings.php:360
|
3705 |
+
msgid "Open calendar links to event details URL"
|
3706 |
+
msgstr "कैलेंडर को ईवेंट विवरण यूआरएल के लिए लिंक खोलें"
|
3707 |
+
|
3708 |
+
#@ my-calendar
|
3709 |
+
#: my-calendar-settings.php:360
|
3710 |
+
msgid "Replaces pop-up in grid view."
|
3711 |
+
msgstr "ग्रिड दृश्य में पॉप - अप बदलता है."
|
3712 |
+
|
3713 |
+
#@ my-calendar
|
3714 |
+
#: my-calendar-settings.php:363
|
3715 |
+
msgid "Mini calendar widget date links to:"
|
3716 |
+
msgstr "मिनी कैलेंडर को विजेट तिथि करने के लिए लिंक:"
|
3717 |
+
|
3718 |
+
#@ my-calendar
|
3719 |
+
#: my-calendar-settings.php:364
|
3720 |
+
msgid "jQuery pop-up view"
|
3721 |
+
msgstr "पॉप - अप jQuery का दृश्य"
|
3722 |
+
|
3723 |
+
#@ my-calendar
|
3724 |
+
#: my-calendar-settings.php:365
|
3725 |
+
msgid "daily view page (above)"
|
3726 |
+
msgstr "दैनिक देखने के लिए पृष्ठ (ऊपर)"
|
3727 |
+
|
3728 |
+
#@ my-calendar
|
3729 |
+
#: my-calendar-settings.php:366
|
3730 |
+
msgid "in-page anchor on main calendar page (list)"
|
3731 |
+
msgstr "मुख्य पृष्ठ कैलेंडर को (सूची) में पृष्ठ पर लंगर"
|
3732 |
+
|
3733 |
+
#@ my-calendar
|
3734 |
+
#: my-calendar-settings.php:367
|
3735 |
+
msgid "in-page anchor on main calendar page (grid)"
|
3736 |
+
msgstr "मुख्य पृष्ठ कैलेंडर को (ग्रिड) पृष्ठ पर लंगर"
|
3737 |
+
|
3738 |
+
#@ my-calendar
|
3739 |
+
#: my-calendar-settings.php:369
|
3740 |
+
msgid "Replaces pop-up in mini calendar"
|
3741 |
+
msgstr "मिनी कैलेंडर को में पॉप - अप बदलता है"
|
3742 |
+
|
3743 |
+
#@ my-calendar
|
3744 |
+
#: my-calendar-settings.php:375
|
3745 |
+
msgid "Date in grid mode, week view"
|
3746 |
+
msgstr "ग्रिड मोड में दिनांक, सप्ताह दृश्य"
|
3747 |
+
|
3748 |
+
#@ my-calendar
|
3749 |
+
#: my-calendar-settings.php:378
|
3750 |
+
msgid "Date Format in other views"
|
3751 |
+
msgstr "अन्य दृश्यों में दिनांक स्वरूप"
|
3752 |
+
|
3753 |
+
#@ my-calendar
|
3754 |
+
#: my-calendar-settings.php:381
|
3755 |
+
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
3756 |
+
msgstr "दिनांक स्वरूप <a के रूप में एक ही सिंटैक्स का उपयोग <a href=\"http://php.net/date\">PHP <code>date()</code> तिथि समारोह </a>. नमूना उत्पादन अद्यतन विकल्प सहेजें."
|
3757 |
+
|
3758 |
+
#@ my-calendar
|
3759 |
+
#: my-calendar-settings.php:390
|
3760 |
+
msgid "Show link to print-formatted view of calendar"
|
3761 |
+
msgstr "कैलेंडर को मद्देनजर प्रिंट स्वरूपित के लिए लिंक दिखाएँ "
|
3762 |
+
|
3763 |
+
#@ my-calendar
|
3764 |
+
#: my-calendar-settings.php:413
|
3765 |
+
msgid "How many months of events to show at a time:"
|
3766 |
+
msgstr "कितने महीने घटनाओं का एक समय में दिखाने के लिए:"
|
3767 |
+
|
3768 |
+
#@ my-calendar
|
3769 |
+
#: my-calendar-settings.php:416
|
3770 |
+
msgid "Show the first event's title and the number of events that day next to the date."
|
3771 |
+
msgstr "पहली ईवेंट शीर्षक और कि तिथि करने के लिए अगले दिन घटनाओं की संख्या दिखाएँ."
|
3772 |
+
|
3773 |
+
#@ my-calendar
|
3774 |
+
#: my-calendar-settings.php:432
|
3775 |
+
msgid "Available template tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
3776 |
+
msgstr "उपलब्ध टेम्पलेट टैग: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
3777 |
+
|
3778 |
+
#@ my-calendar
|
3779 |
+
#: my-calendar-settings.php:443
|
3780 |
+
msgid "Display link to single event iCal download."
|
3781 |
+
msgstr "एकल ईवेंट iCal डाउनलोड के लिए लिंक प्रदर्शित."
|
3782 |
+
|
3783 |
+
#@ my-calendar
|
3784 |
+
#: my-calendar-settings.php:486
|
3785 |
+
msgid "None"
|
3786 |
+
msgstr "कोई नहीं"
|
3787 |
+
|
3788 |
+
#@ my-calendar
|
3789 |
+
#: my-calendar-settings.php:578
|
3790 |
+
msgid "Sub-site calendars show events from their local calendar."
|
3791 |
+
msgstr "उप साइट कैलेंडर उनके स्थानीय कैलेंडर को घटनाओं से चलता ."
|
3792 |
+
|
3793 |
+
#@ my-calendar
|
3794 |
+
#: my-calendar-settings.php:579
|
3795 |
+
msgid "Sub-site calendars show events from the central calendar."
|
3796 |
+
msgstr "उप साइट कैलेंडर केंद्रीय कैलेंडर को घटनाओं से दिखाते ."
|
3797 |
+
|
3798 |
+
#@ my-calendar
|
3799 |
+
#: my-calendar-templates.php:20
|
3800 |
+
msgid "to"
|
3801 |
+
msgstr "के लिए"
|
3802 |
+
|
3803 |
+
#@ my-calendar
|
3804 |
+
#: my-calendar-templating.php:94
|
3805 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3806 |
+
msgstr "तिथि अंत तिथि शुरुआत, अंत अगर शुरू के रूप में एक ही तिथि शामिल नहीं है."
|
3807 |
+
|
3808 |
+
#@ my-calendar
|
3809 |
+
#: my-calendar-templating.php:97
|
3810 |
+
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3811 |
+
msgstr "बहु - दिन की घटनाओं/दिनांक और समय के एक unordered सूची. अन्यथा, दिनांक/समय शुरुआत."
|
3812 |
+
|
3813 |
+
#@ my-calendar
|
3814 |
+
#: my-calendar-widgets.php:134
|
3815 |
+
msgid "Add <a href=\"#mc_uri\" target=\"_blank\" title=\"Opens in new window\">calendar URL in settings</a> to use this option."
|
3816 |
+
msgstr "जोड़ें सेटिंग्स में <a href=\"#mc_uri\" target=\"_blank\" title=\"Opens in new window\"> कैलेंडर के URL में </a> के लिए इस विकल्प उपयोग ."
|
3817 |
+
|
3818 |
+
#@ my-calendar
|
3819 |
+
#: my-calendar-widgets.php:162
|
3820 |
+
msgid "Include today's events"
|
3821 |
+
msgstr "आज की घटनाओं में शामिल"
|
3822 |
+
|
3823 |
+
#@ my-calendar
|
3824 |
+
#: my-calendar.php:126
|
3825 |
+
msgid "Buy the <strong>NEW</strong><br /> My Calendar User's Guide"
|
3826 |
+
msgstr "<strong> नई </ strong> <br /> मेरे कैलेंडर उपयोगकर्ता गाइड खरीदें"
|
3827 |
+
|
3828 |
+
#@ my-calendar
|
3829 |
+
#: my-calendar.php:131
|
3830 |
+
msgid "Report a bug"
|
3831 |
+
msgstr "एक बग रिपोर्ट करें"
|
3832 |
+
|
3833 |
+
#@ my-calendar
|
3834 |
+
#: my-calendar.php:143
|
3835 |
+
msgid "Check out my other plug-ins"
|
3836 |
+
msgstr "बाहर मेरी प्लग - इन्स अन्य की जाँच करें"
|
3837 |
+
|
3838 |
+
#@ my-calendar
|
3839 |
+
#: my-calendar.php:144
|
3840 |
+
msgid "Rate this plug-in"
|
3841 |
+
msgstr "यह प्लग - इन दर"
|
3842 |
+
|
lang/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.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -32,38 +32,38 @@ msgstr ""
|
|
32 |
msgid "All locations"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: button/generator.php:55 my-calendar-settings.php:
|
36 |
-
#: my-calendar-settings.php:
|
37 |
msgid "Location Name"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: button/generator.php:56 my-calendar-event-manager.php:
|
41 |
-
#: my-calendar-group-manager.php:
|
42 |
-
#: my-calendar-settings.php:
|
43 |
msgid "City"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: button/generator.php:57 my-calendar-event-manager.php:
|
47 |
-
#: my-calendar-group-manager.php:
|
48 |
msgid "State"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: button/generator.php:58 my-calendar-event-manager.php:
|
52 |
-
#: my-calendar-group-manager.php:
|
53 |
-
#: my-calendar-settings.php:
|
54 |
msgid "Postal Code"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: button/generator.php:59 my-calendar-event-manager.php:
|
58 |
-
#: my-calendar-group-manager.php:
|
59 |
-
#: my-calendar-settings.php:
|
60 |
msgid "Country"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: button/generator.php:60 my-calendar-event-manager.php:
|
64 |
-
#: my-calendar-event-manager.php:
|
65 |
-
#: my-calendar-group-manager.php:
|
66 |
-
#: my-calendar-locations.php:
|
67 |
msgid "Region"
|
68 |
msgstr ""
|
69 |
|
@@ -88,12 +88,14 @@ msgid "Show Category Key"
|
|
88 |
msgstr ""
|
89 |
|
90 |
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
91 |
-
#:
|
|
|
92 |
msgid "Yes"
|
93 |
msgstr ""
|
94 |
|
95 |
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
96 |
-
#:
|
|
|
97 |
msgid "No"
|
98 |
msgstr ""
|
99 |
|
@@ -101,391 +103,392 @@ msgstr ""
|
|
101 |
msgid "Show Previous/Next Links"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: button/generator.php:89
|
105 |
-
msgid "Show
|
106 |
msgstr ""
|
107 |
|
108 |
#: button/generator.php:96
|
|
|
|
|
|
|
|
|
109 |
msgid "Time Segment"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: button/generator.php:
|
113 |
-
#: my-calendar-widgets.php:
|
114 |
msgid "Month"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: button/generator.php:
|
118 |
msgid "Week"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: button/generator.php:
|
122 |
msgid "Day"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: button/generator.php:
|
126 |
msgid "Generate Shortcode"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: button/generator.php:
|
130 |
msgid ""
|
131 |
"<strong>Note:</strong> If you provide a location filter value, it must be an "
|
132 |
"exact match for that information as saved with your events. (e.g. \"Saint "
|
133 |
"Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: button/generator.php:
|
137 |
msgid ""
|
138 |
"My Calendar: this generator isn't going to put the shortcode in your page. "
|
139 |
"Sorry!"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: my-calendar-behaviors.php:
|
143 |
msgid "Behavior Settings saved"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: my-calendar-behaviors.php:
|
147 |
msgid "My Calendar Behaviors"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: my-calendar-behaviors.php:
|
151 |
msgid "Calendar Behavior Settings"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: my-calendar-behaviors.php:
|
155 |
-
msgid "
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: my-calendar-behaviors.php:
|
159 |
msgid "Details boxes are draggable"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: my-calendar-behaviors.php:
|
163 |
msgid "Calendar Behaviors: Calendar View"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: my-calendar-behaviors.php:
|
167 |
msgid "Update/Reset the My Calendar Calendar Javascript"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: my-calendar-behaviors.php:
|
171 |
msgid "Disable Calendar Javascript Effects"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: my-calendar-behaviors.php:
|
175 |
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: my-calendar-behaviors.php:
|
179 |
-
#: my-calendar-behaviors.php:
|
180 |
-
#: my-calendar-behaviors.php:205
|
181 |
-
msgid "Save"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: my-calendar-behaviors.php:100 my-calendar-behaviors.php:131
|
185 |
-
#: my-calendar-behaviors.php:162 my-calendar-behaviors.php:192
|
186 |
msgid "Comparing scripts with latest installed version of My Calendar"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: my-calendar-behaviors.php:
|
190 |
-
#: my-calendar-behaviors.php:
|
191 |
-
#: my-calendar-styles.php:
|
192 |
msgid "Latest (from plugin)"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: my-calendar-behaviors.php:
|
196 |
-
#: my-calendar-behaviors.php:
|
197 |
-
#: my-calendar-styles.php:
|
198 |
msgid "Current (in use)"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: my-calendar-behaviors.php:
|
202 |
msgid "There have been updates to the calendar view scripts."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: my-calendar-behaviors.php:
|
206 |
-
#: my-calendar-behaviors.php:
|
207 |
msgid "Compare your scripts with latest installed version of My Calendar."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: my-calendar-behaviors.php:
|
211 |
-
#: my-calendar-behaviors.php:
|
212 |
msgid "Your script matches that included with My Calendar."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: my-calendar-behaviors.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
msgid "Calendar Behaviors: List View"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: my-calendar-behaviors.php:
|
220 |
msgid "Update/Reset the My Calendar List Javascript"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: my-calendar-behaviors.php:
|
224 |
msgid "Disable List Javascript Effects"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: my-calendar-behaviors.php:
|
228 |
msgid "Edit the jQuery scripts for My Calendar in List format"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: my-calendar-behaviors.php:
|
232 |
msgid "There have been updates to the list view scripts."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: my-calendar-behaviors.php:
|
236 |
msgid "Calendar Behaviors: Mini Calendar View"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: my-calendar-behaviors.php:
|
240 |
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: my-calendar-behaviors.php:
|
244 |
msgid "Disable Mini Javascript Effects"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: my-calendar-behaviors.php:
|
248 |
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: my-calendar-behaviors.php:
|
252 |
msgid "There have been updates to the mini view scripts."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: my-calendar-behaviors.php:
|
256 |
msgid "Calendar Behaviors: AJAX Navigation"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: my-calendar-behaviors.php:
|
260 |
msgid "Update/Reset the My Calendar AJAX Javascript"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: my-calendar-behaviors.php:
|
264 |
msgid "Disable AJAX Effects"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: my-calendar-behaviors.php:
|
268 |
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: my-calendar-behaviors.php:
|
272 |
msgid "There have been updates to the AJAX scripts."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: my-calendar-behaviors.php:
|
276 |
msgid ""
|
277 |
"Resetting JavaScript will set that script to the version currently "
|
278 |
"distributed with the plug-in."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: my-calendar-categories.php:
|
282 |
msgid "Category added successfully"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: my-calendar-categories.php:
|
286 |
msgid "Category addition failed."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: my-calendar-categories.php:
|
290 |
msgid "Category deleted successfully. Categories in calendar updated."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: my-calendar-categories.php:
|
294 |
msgid "Category deleted successfully. Categories in calendar not updated."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: my-calendar-categories.php:
|
298 |
msgid "Category not deleted. Categories in calendar updated."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: my-calendar-categories.php:
|
302 |
msgid "Category edited successfully"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: my-calendar-categories.php:
|
306 |
msgid "Error: Category was not edited."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: my-calendar-categories.php:
|
310 |
-
#: my-calendar-categories.php:
|
311 |
msgid "Add Category"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: my-calendar-categories.php:
|
315 |
msgid "Edit Category"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: my-calendar-categories.php:
|
319 |
msgid "Category Editor"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: my-calendar-categories.php:
|
323 |
msgid "Category Name"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: my-calendar-categories.php:
|
327 |
msgid "Category Color (Hex format)"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: my-calendar-categories.php:
|
331 |
msgid "Category Icon"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: my-calendar-categories.php:
|
335 |
-
#: my-calendar-styles.php:
|
336 |
msgid "Save Changes"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: my-calendar-categories.php:
|
340 |
msgid "Add a New Category"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: my-calendar-categories.php:
|
|
|
|
|
|
|
|
|
344 |
msgid "Manage Categories"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: my-calendar-categories.php:
|
348 |
-
#: my-calendar-group-manager.php:
|
349 |
msgid "ID"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: my-calendar-categories.php:
|
353 |
msgid "Category Color"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: my-calendar-categories.php:
|
357 |
-
#: my-calendar-event-manager.php:
|
358 |
-
#: my-calendar-locations.php:
|
359 |
-
#: my-calendar-output.php:
|
360 |
msgid "Edit"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: my-calendar-categories.php:
|
364 |
-
#: my-calendar-event-manager.php:
|
365 |
-
#: my-calendar-locations.php:
|
366 |
-
#: my-calendar-output.php:
|
367 |
msgid "Delete"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: my-calendar-categories.php:
|
371 |
-
#: my-calendar-group-manager.php:
|
372 |
-
#: my-calendar-settings.php:
|
373 |
msgid "N/A"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: my-calendar-categories.php:
|
377 |
msgid "Are you sure you want to delete this category?"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: my-calendar-categories.php:
|
381 |
msgid "There are no categories in the database - something has gone wrong!"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: my-calendar-core.php:
|
385 |
msgid "Settings"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: my-calendar-core.php:
|
389 |
msgid "Help"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: my-calendar-core.php:
|
393 |
msgid ""
|
394 |
-
"<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href
|
395 |
-
"1$s\">changelog</a> before upgrading."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: my-calendar-core.php:
|
399 |
msgid "Add Event"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: my-calendar-core.php:
|
403 |
-
msgid ""
|
404 |
-
"You're currently allowing to subscribers to post events, but aren't using "
|
405 |
-
"Akismet. My Calendar can use Akismet to check for spam in event submissions. "
|
406 |
-
"<a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>"
|
407 |
-
msgstr ""
|
408 |
-
|
409 |
-
#: my-calendar-core.php:1078
|
410 |
msgid "Is this your calendar page?"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: my-calendar-core.php:
|
414 |
msgid "I tried to guess, but don't have a suggestion for you."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: my-calendar-core.php:
|
418 |
msgid ""
|
419 |
"Please read the FAQ and other Help documents before making a support request."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: my-calendar-core.php:
|
423 |
msgid "Please describe your problem in detail. I'm not psychic."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: my-calendar-core.php:
|
427 |
msgid ""
|
428 |
"Thank you for supporting the continuing development of this plug-in! I'll "
|
429 |
"get back to you as soon as I can."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: my-calendar-core.php:
|
433 |
msgid ""
|
434 |
"I'll get back to you as soon as I can, after dealing with any support "
|
435 |
"requests from plug-in supporters."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: my-calendar-core.php:
|
439 |
msgid ""
|
440 |
"Please note: I do keep records of those who have donated, <strong>but if "
|
441 |
"your donation came from somebody other than your account at this web site, "
|
442 |
"please note this in your message.</strong>"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: my-calendar-core.php:
|
446 |
msgid "From:"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: my-calendar-core.php:
|
450 |
msgid ""
|
451 |
"I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/"
|
452 |
"\">the FAQ for this plug-in</a>."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: my-calendar-core.php:
|
456 |
msgid ""
|
457 |
"I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to "
|
458 |
"help support this plug-in</a>."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: my-calendar-core.php:
|
462 |
msgid ""
|
463 |
"I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/"
|
464 |
"\">purchased the User's Guide</a>, but could not find an answer to this "
|
465 |
"question."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: my-calendar-core.php:
|
469 |
msgid "Send Support Request"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: my-calendar-core.php:
|
473 |
msgid ""
|
474 |
"The following additional information will be sent with your support request:"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: my-calendar-event-manager.php:
|
478 |
msgid ""
|
479 |
"My Calendar has identified that you have the Calendar plugin by Kieran "
|
480 |
"O'Shea installed. You can import those events and categories into the My "
|
481 |
"Calendar database. Would you like to import these events?"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: my-calendar-event-manager.php:
|
485 |
msgid "Import from Calendar"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: my-calendar-event-manager.php:
|
489 |
msgid ""
|
490 |
"Although it is possible that this import could fail to import your events "
|
491 |
"correctly, it should not have any impact on your existing Calendar database. "
|
@@ -493,30 +496,30 @@ msgid ""
|
|
493 |
"\">please contact me</a>!"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: my-calendar-event-manager.php:
|
497 |
msgid "%1$d events deleted successfully out of %2$d selected"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: my-calendar-event-manager.php:
|
501 |
-
#: my-calendar-event-manager.php:
|
502 |
-
#: my-calendar-event-manager.php:
|
503 |
-
#: my-calendar-event-manager.php:
|
504 |
-
#: my-calendar-event-manager.php:
|
505 |
-
#: my-calendar-event-manager.php:
|
506 |
-
#: my-calendar-group-manager.php:
|
507 |
-
#: my-calendar-group-manager.php:
|
508 |
msgid "Error"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: my-calendar-event-manager.php:
|
512 |
msgid "Your events have not been deleted. Please investigate."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: my-calendar-event-manager.php:
|
516 |
msgid "Delete Event"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: my-calendar-event-manager.php:
|
520 |
msgid "Are you sure you want to delete this event?"
|
521 |
msgstr ""
|
522 |
|
@@ -532,605 +535,619 @@ msgstr ""
|
|
532 |
msgid "You do not have permission to reject that event."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: my-calendar-event-manager.php:
|
536 |
msgid "Currently editing your local calendar"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: my-calendar-event-manager.php:
|
540 |
msgid "Currently editing your central calendar"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: my-calendar-event-manager.php:
|
544 |
msgid "Edit Event"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: my-calendar-event-manager.php:
|
548 |
msgid "You must provide an event id in order to edit it"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: my-calendar-event-manager.php:
|
552 |
msgid "Copy Event"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: my-calendar-event-manager.php:
|
556 |
msgid "I'm sorry! I couldn't add that event to the database."
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: my-calendar-event-manager.php:
|
560 |
msgid "Event added. It will now show in your calendar."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: my-calendar-event-manager.php:
|
564 |
-
#: my-calendar-group-manager.php:
|
565 |
msgid "View <a href=\"%s\">your calendar</a>."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: my-calendar-event-manager.php:
|
569 |
msgid "Your event was not updated."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: my-calendar-event-manager.php:
|
573 |
-
#: my-calendar-group-manager.php:
|
574 |
msgid "Nothing was changed in that update."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: my-calendar-event-manager.php:
|
578 |
-
#: my-calendar-group-manager.php:
|
579 |
msgid "Event updated successfully"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: my-calendar-event-manager.php:
|
583 |
msgid "You do not have sufficient permissions to edit that event."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: my-calendar-event-manager.php:
|
587 |
msgid "You can't delete an event if you haven't submitted an event id"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: my-calendar-event-manager.php:
|
591 |
msgid "Event deleted successfully"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: my-calendar-event-manager.php:
|
595 |
msgid ""
|
596 |
"Despite issuing a request to delete, the event still remains in the "
|
597 |
"database. Please investigate."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: my-calendar-event-manager.php:
|
601 |
msgid "Sorry! That's an invalid event key."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: my-calendar-event-manager.php:
|
605 |
msgid "Sorry! We couldn't find an event with that ID."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: my-calendar-event-manager.php:
|
609 |
msgid "This event must be approved in order for it to appear on the calendar."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: my-calendar-event-manager.php:
|
|
|
|
|
|
|
|
|
613 |
msgid "Save Event"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: my-calendar-event-manager.php:
|
617 |
msgid ""
|
618 |
"There was an error acquiring information about this event instance. The date "
|
619 |
"for this event was not provided. <strong>You are editing this entire "
|
620 |
"recurrence set.</strong>"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: my-calendar-event-manager.php:
|
624 |
msgid "Enter your Event Information"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: my-calendar-event-manager.php:
|
628 |
msgid "Event Title"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: my-calendar-event-manager.php:
|
632 |
-
#: my-calendar-group-manager.php:
|
633 |
msgid "(required)"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: my-calendar-event-manager.php:
|
637 |
msgid "Publish"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: my-calendar-event-manager.php:
|
641 |
msgid "You must approve this event to promote it to the calendar."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: my-calendar-event-manager.php:
|
645 |
msgid "An administrator must approve your new event."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: my-calendar-event-manager.php:
|
649 |
msgid "This event is not spam"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: my-calendar-event-manager.php:
|
653 |
msgid ""
|
654 |
"Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
|
655 |
"allowed)"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: my-calendar-event-manager.php:
|
659 |
-
#: my-calendar-group-manager.php:
|
660 |
msgid "This event's image:"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: my-calendar-event-manager.php:
|
664 |
msgid "Add an image:"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: my-calendar-event-manager.php:
|
668 |
msgid "(URL to Event image)"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: my-calendar-event-manager.php:
|
672 |
msgid "Upload Image"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: my-calendar-event-manager.php:
|
676 |
msgid "Include your image URL or upload an image."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: my-calendar-event-manager.php:
|
680 |
msgid ""
|
681 |
"Event Short Description (<abbr title=\"hypertext markup language\">HTML</"
|
682 |
"abbr> allowed)"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: my-calendar-event-manager.php:
|
686 |
msgid "Event Host"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: my-calendar-event-manager.php:
|
690 |
msgid "Event Category"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: my-calendar-event-manager.php:
|
694 |
msgid "Event Link (Optional)"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: my-calendar-event-manager.php:
|
698 |
msgid "This link will expire when the event passes."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: my-calendar-event-manager.php:
|
702 |
msgid "Event Date and Time"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: my-calendar-event-manager.php:
|
706 |
msgid "Start Date (YYYY-MM-DD)"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: my-calendar-event-manager.php:
|
710 |
msgid "Time (hh:mm am/pm)"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: my-calendar-event-manager.php:
|
714 |
msgid "End Date (YYYY-MM-DD)"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: my-calendar-event-manager.php:
|
718 |
msgid "End Time (hh:mm am/pm)"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: my-calendar-event-manager.php:
|
722 |
msgid "This is a multi-day event."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: my-calendar-event-manager.php:
|
726 |
msgid ""
|
727 |
"Enter the beginning and ending dates/times for each occurrence of the event."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: my-calendar-event-manager.php:
|
731 |
msgid ""
|
732 |
"If this is a multi-day event, it creates a single event with multiple dates/"
|
733 |
"times; otherwise it creates separate events for each occurrence."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: my-calendar-event-manager.php:
|
737 |
msgid "Add another occurrence"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: my-calendar-event-manager.php:
|
741 |
msgid "Remove last occurrence"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: my-calendar-event-manager.php:
|
745 |
msgid "Current time difference from GMT is "
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: my-calendar-event-manager.php:
|
749 |
msgid " hour(s)"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: my-calendar-event-manager.php:
|
753 |
msgid "Recurring Events"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: my-calendar-event-manager.php:
|
757 |
msgid "Repeats for"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: my-calendar-event-manager.php:
|
761 |
msgid "Units"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: my-calendar-event-manager.php:
|
765 |
msgid "Does not recur"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: my-calendar-event-manager.php:
|
769 |
-
#: my-calendar-group-manager.php:
|
770 |
msgid "Daily"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: my-calendar-event-manager.php:
|
774 |
msgid "Daily, weekdays only"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: my-calendar-event-manager.php:
|
778 |
-
#: my-calendar-group-manager.php:
|
779 |
msgid "Weekly"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: my-calendar-event-manager.php:
|
783 |
msgid "Bi-weekly"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: my-calendar-event-manager.php:
|
787 |
msgid "Date of Month (e.g., the 24th of each month)"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: my-calendar-event-manager.php:
|
791 |
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: my-calendar-event-manager.php:
|
795 |
msgid "Annually"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: my-calendar-event-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
msgid ""
|
800 |
-
"
|
801 |
-
"
|
802 |
-
"
|
|
|
|
|
|
|
|
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: my-calendar-event-manager.php:
|
806 |
msgid "Event Registration Status"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: my-calendar-event-manager.php:
|
810 |
msgid ""
|
811 |
"My Calendar does not manage event registrations. Use this for information "
|
812 |
"only."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: my-calendar-event-manager.php:
|
816 |
msgid "Open"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: my-calendar-event-manager.php:
|
820 |
msgid "Closed"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: my-calendar-event-manager.php:
|
824 |
msgid "Does not apply"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: my-calendar-event-manager.php:
|
828 |
msgid ""
|
829 |
"If this event recurs, it can only be registered for as a complete series."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: my-calendar-event-manager.php:
|
833 |
-
#: my-calendar-
|
|
|
834 |
msgid "Event Location"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: my-calendar-event-manager.php:
|
838 |
msgid "Choose a preset location:"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: my-calendar-event-manager.php:
|
842 |
msgid "Add recurring locations for later use."
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: my-calendar-event-manager.php:
|
846 |
-
#: my-calendar-locations.php:
|
847 |
msgid ""
|
848 |
"All location fields are optional: <em>insufficient information may result in "
|
849 |
"an inaccurate map</em>."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: my-calendar-event-manager.php:
|
853 |
-
#: my-calendar-locations.php:
|
854 |
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: my-calendar-event-manager.php:
|
858 |
-
#: my-calendar-locations.php:
|
859 |
msgid "Street Address"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: my-calendar-event-manager.php:
|
863 |
-
#: my-calendar-locations.php:
|
864 |
msgid "Street Address (2)"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: my-calendar-event-manager.php:
|
868 |
-
#: my-calendar-locations.php:
|
869 |
msgid "Phone"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: my-calendar-event-manager.php:
|
873 |
-
#: my-calendar-locations.php:
|
874 |
msgid "State/Province"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: my-calendar-event-manager.php:
|
878 |
-
#: my-calendar-locations.php:
|
879 |
msgid "Initial Zoom"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: my-calendar-event-manager.php:
|
883 |
-
#: my-calendar-locations.php:
|
884 |
msgid "Neighborhood"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: my-calendar-event-manager.php:
|
888 |
-
#: my-calendar-locations.php:
|
889 |
msgid "Small City"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: my-calendar-event-manager.php:
|
893 |
-
#: my-calendar-locations.php:
|
894 |
msgid "Large City"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: my-calendar-event-manager.php:
|
898 |
-
#: my-calendar-locations.php:
|
899 |
msgid "Greater Metro Area"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: my-calendar-event-manager.php:
|
903 |
msgid "Location URL"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: my-calendar-event-manager.php:
|
907 |
-
#: my-calendar-locations.php:
|
908 |
msgid "GPS Coordinates (optional)"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: my-calendar-event-manager.php:
|
912 |
msgid ""
|
913 |
"If you supply GPS coordinates for your location, they will be used in place "
|
914 |
"of any other address information to provide your map link."
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: my-calendar-event-manager.php:
|
918 |
-
#: my-calendar-locations.php:
|
919 |
msgid "Latitude"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: my-calendar-event-manager.php:
|
923 |
-
#: my-calendar-locations.php:
|
924 |
msgid "Longitude"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: my-calendar-event-manager.php:
|
|
|
|
|
|
|
|
|
928 |
msgid "Special Options"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: my-calendar-event-manager.php:
|
932 |
msgid ""
|
933 |
"Cancel this event if it occurs on a date with an event in the Holidays "
|
934 |
"category"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: my-calendar-event-manager.php:
|
938 |
msgid ""
|
939 |
"If this event recurs, and falls on the 5th week of the month in a month with "
|
940 |
"only four weeks, move it back one week."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: my-calendar-event-manager.php:
|
|
|
944 |
msgid "Manage Events"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: my-calendar-event-manager.php:
|
948 |
msgid "Published"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: my-calendar-event-manager.php:
|
952 |
msgid "Reserved"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: my-calendar-event-manager.php:
|
956 |
msgid "All"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: my-calendar-event-manager.php:
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
#: my-calendar-event-manager.php:935 my-calendar-group-manager.php:708
|
964 |
-
#: my-calendar-settings.php:508 my-calendar-widgets.php:38
|
965 |
-
#: my-calendar-widgets.php:124 my-calendar-widgets.php:571
|
966 |
msgid "Title"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: my-calendar-event-manager.php:
|
970 |
-
|
971 |
-
msgid "Location"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: my-calendar-event-manager.php:
|
975 |
-
#: my-calendar-settings.php:
|
976 |
msgid "Description"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: my-calendar-event-manager.php:
|
980 |
-
|
981 |
-
msgid "Start Date"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: my-calendar-event-manager.php:
|
985 |
msgid "Recurs"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: my-calendar-event-manager.php:
|
989 |
-
#: my-calendar-settings.php:
|
990 |
-
#: my-calendar-settings.php:268 my-calendar-settings.php:511
|
991 |
msgid "Author"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: my-calendar-event-manager.php:
|
995 |
-
#: my-calendar-settings.php:
|
996 |
msgid "Category"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: my-calendar-event-manager.php:
|
1000 |
msgid "Edit / Delete"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: my-calendar-event-manager.php:
|
1004 |
msgid "Never"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: my-calendar-event-manager.php:
|
1008 |
msgid "Weekdays"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: my-calendar-event-manager.php:
|
1012 |
msgid "Bi-Weekly"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: my-calendar-event-manager.php:
|
1016 |
msgid "Monthly (by date)"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: my-calendar-event-manager.php:
|
1020 |
msgid "Monthly (by day)"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: my-calendar-event-manager.php:
|
1024 |
msgid "Yearly"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: my-calendar-event-manager.php:
|
1028 |
msgid "Forever"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: my-calendar-event-manager.php:
|
1032 |
msgid "%d Times"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: my-calendar-event-manager.php:
|
1036 |
msgid "Copy"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: my-calendar-event-manager.php:
|
1040 |
-
#: my-calendar-output.php:
|
1041 |
msgid "Edit Group"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: my-calendar-event-manager.php:
|
1045 |
msgid "Not editable."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: my-calendar-event-manager.php:
|
1049 |
msgid "Reject"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: my-calendar-event-manager.php:
|
1053 |
msgid "Approve"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: my-calendar-event-manager.php:
|
1057 |
msgid "Approved"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: my-calendar-event-manager.php:
|
1061 |
msgid "Rejected"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: my-calendar-event-manager.php:
|
1065 |
msgid "Awaiting Approval"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: my-calendar-event-manager.php:
|
1069 |
msgid "Delete checked events"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: my-calendar-event-manager.php:
|
1073 |
msgid "There are no events in the database!"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: my-calendar-event-manager.php:
|
1077 |
msgid ""
|
1078 |
"Your event end date must be either after or the same as your event begin date"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: my-calendar-event-manager.php:
|
1082 |
msgid ""
|
1083 |
"Your date formatting is correct but one or more of your dates is invalid. "
|
1084 |
"Check for number of days in month and leap year related errors."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: my-calendar-event-manager.php:
|
1088 |
msgid "Both start and end dates must be in the format YYYY-MM-DD"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: my-calendar-event-manager.php:
|
1092 |
msgid "The time field must either be blank or be entered in the format hh:mm"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: my-calendar-event-manager.php:
|
1096 |
msgid ""
|
1097 |
"The end time field must either be blank or be entered in the format hh:mm"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: my-calendar-event-manager.php:
|
1101 |
msgid "The event title must be between 1 and 255 characters in length."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: my-calendar-event-manager.php:
|
1105 |
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: my-calendar-group-manager.php:
|
1109 |
msgid "Event not updated."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: my-calendar-group-manager.php:
|
1113 |
msgid "Event not grouped."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: my-calendar-group-manager.php:
|
1117 |
msgid "Event grouped successfully"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: my-calendar-group-manager.php:
|
1121 |
-
#: my-calendar-group-manager.php:
|
1122 |
msgid "Edit Event Group"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: my-calendar-group-manager.php:
|
1126 |
msgid "You must provide an event group id in order to edit it"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: my-calendar-group-manager.php:
|
|
|
1130 |
msgid "Manage Event Groups"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: my-calendar-group-manager.php:
|
1134 |
msgid ""
|
1135 |
"Grouped events can be edited simultaneously. When you choose a group of "
|
1136 |
"events to edit, the form will be pre-filled with the content applicable to "
|
@@ -1141,60 +1158,64 @@ msgid ""
|
|
1141 |
"changes applied. (All grouped events can also be edited individually.)"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: my-calendar-group-manager.php:
|
1145 |
msgid ""
|
1146 |
"The following fields will never be changed when editing groups: registration "
|
1147 |
"availability, event publication status, spam flagging, event recurrence, "
|
1148 |
"event repetitions, and the start and end dates and times for that event."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: my-calendar-group-manager.php:
|
1152 |
msgid ""
|
1153 |
"<strong>NOTE:</strong> The group editable fields for the events in this "
|
1154 |
"group do not match"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: my-calendar-group-manager.php:
|
1158 |
msgid "The group editable fields for the events in this group match."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: my-calendar-group-manager.php:
|
1162 |
msgid "Apply these changes to:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: my-calendar-group-manager.php:
|
1166 |
msgid "Check/Uncheck all"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: my-calendar-group-manager.php:
|
1170 |
msgid "Remove checked events from this group"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: my-calendar-group-manager.php:
|
1174 |
msgid "You must provide a group ID to edit groups"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: my-calendar-group-manager.php:
|
1178 |
msgid "Selected dates are a single multi-day event."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: my-calendar-group-manager.php:
|
|
|
|
|
|
|
|
|
1182 |
msgid "Create/Modify Groups"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: my-calendar-group-manager.php:
|
1186 |
msgid "Check a set of events to group them for mass editing."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: my-calendar-group-manager.php:
|
1190 |
msgid "Group checked events for mass editing"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: my-calendar-group-manager.php:
|
1194 |
msgid "Group"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: my-calendar-group-manager.php:
|
1198 |
msgid "Ungrouped"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1202,79 +1223,83 @@ msgstr ""
|
|
1202 |
msgid "How to use My Calendar"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: my-calendar-help.php:
|
1206 |
msgid "Shortcode Syntax"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: my-calendar-help.php:
|
1210 |
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: my-calendar-help.php:
|
1214 |
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: my-calendar-help.php:
|
1218 |
msgid ""
|
1219 |
"This basic shortcode will show the calendar on a post or page including all "
|
1220 |
"categories and the category key, in a traditional month-by-month format."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: my-calendar-help.php:
|
1224 |
-
msgid "The shortcode supports
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: my-calendar-help.php:
|
1228 |
msgid ""
|
1229 |
"Names or IDs of categories included in this calendar, comma or pipe "
|
1230 |
"separated."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: my-calendar-help.php:
|
1234 |
msgid ""
|
1235 |
"Either \"list\" or \"mini\" to show the list view or the mini calendar; "
|
1236 |
"exclude or any other value to show the main grid calendar."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: my-calendar-help.php:
|
1240 |
msgid "Set as \"no\" to hide the category key."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: my-calendar-help.php:
|
1244 |
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
1248 |
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: my-calendar-help.php:
|
1252 |
msgid ""
|
1253 |
"Set to \"week\" to show a one week view or to \"day\" to show a single day "
|
1254 |
"view. Any other value will show a month view. (Day view shows as a list "
|
1255 |
"regardless of format setting.)"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: my-calendar-help.php:
|
1259 |
msgid "The type of location data to restrict by."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: my-calendar-help.php:
|
1263 |
msgid "The specific location information to filter to."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: my-calendar-help.php:
|
1267 |
msgid ""
|
1268 |
"The main My Calendar short code can be generated from a button in your post "
|
1269 |
"and page editor. The mini calendar can also be accessed and configured as a "
|
1270 |
"widget."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: my-calendar-help.php:
|
1274 |
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: my-calendar-help.php:
|
1278 |
msgid ""
|
1279 |
"This shortcode displays the output of the Upcoming Events widget. The "
|
1280 |
"<code>before</code> and <code>after</code> attributes should be numbers; the "
|
@@ -1288,23 +1313,23 @@ msgid ""
|
|
1288 |
"events."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: my-calendar-help.php:
|
1292 |
msgid ""
|
1293 |
"Predictably enough, this shortcode displays the output of the Today's Events "
|
1294 |
"widget, with three configurable attributes: category, template and fallback "
|
1295 |
"text."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: my-calendar-help.php:
|
1299 |
msgid ""
|
1300 |
"Both Upcoming Events and Today's Events can also be configured using widgets."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: my-calendar-help.php:
|
1304 |
msgid "Supplement Features (Locations filter, Categories filter)"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: my-calendar-help.php:
|
1308 |
msgid ""
|
1309 |
"This shortcode produces a list of event locations, either as a list of links "
|
1310 |
"or as a select dropdown form. The <code>show</code> attribute can either be "
|
@@ -1317,7 +1342,7 @@ msgid ""
|
|
1317 |
"<code>region</code>."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: my-calendar-help.php:
|
1321 |
msgid ""
|
1322 |
"If you want to display a list of locations in your database, use this "
|
1323 |
"shortcode. The <code>datatype</code> is the type of data displayed; all "
|
@@ -1326,18 +1351,18 @@ msgid ""
|
|
1326 |
"to display all available location information."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: my-calendar-help.php:
|
1330 |
msgid ""
|
1331 |
"This shortcode produces a list of event categories, either as a list of "
|
1332 |
"links or as a select dropdown form. The <code>show</code> attribute can "
|
1333 |
"either be <code>list</code> or <code>form</code>."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: my-calendar-help.php:
|
1337 |
msgid "Category Icons"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: my-calendar-help.php:
|
1341 |
msgid ""
|
1342 |
"My Calendar is designed to manage multiple calendars. The basis for these "
|
1343 |
"calendars are categories; you can easily setup a calendar page which "
|
@@ -1347,7 +1372,7 @@ msgid ""
|
|
1347 |
"locations, etc."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: my-calendar-help.php:
|
1351 |
msgid ""
|
1352 |
"The pre-installed category icons may not be especially useful for your needs "
|
1353 |
"or design. I'm assuming that you're going to upload your own icons -- all "
|
@@ -1356,19 +1381,19 @@ msgid ""
|
|
1356 |
"custom\" to avoid having them overwritten by upgrades."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: my-calendar-help.php:
|
1360 |
msgid "Your icons folder is:"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: my-calendar-help.php:
|
1364 |
msgid "You can alternately place icons in:"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: my-calendar-help.php:
|
1368 |
msgid "Custom Styles"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: my-calendar-help.php:
|
1372 |
msgid ""
|
1373 |
"My Calendar comes with four basic stylesheets. My Calendar will retain "
|
1374 |
"changes to these basic stylesheets on upgrade, but if you want to add an "
|
@@ -1376,261 +1401,293 @@ msgid ""
|
|
1376 |
"styles directory."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: my-calendar-help.php:
|
1380 |
msgid "Your stylesheet directory is"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: my-calendar-help.php:
|
1384 |
msgid "Your custom stylesheets directory is"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1388 |
msgid "Widget Templating"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1392 |
msgid ""
|
1393 |
-
"
|
1394 |
-
"
|
|
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
1398 |
msgid "Event Template Tags"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: my-calendar-help.php:
|
1402 |
msgid "Displays the title of the event."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: my-calendar-help.php:
|
1406 |
msgid ""
|
1407 |
"Displays title of the event as a link if a URL is present, or the title "
|
1408 |
"alone if no URL is available."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: my-calendar-help.php:
|
1412 |
msgid "Displays the start time for the event."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: my-calendar-help.php:
|
1416 |
msgid ""
|
1417 |
"Displays the start time for the event adjusted to the current user's time "
|
1418 |
"zone settings. Returns <code>{time}</code> if user settings are disabled or "
|
1419 |
"if the user has not selected a preferred time zone."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: my-calendar-help.php:
|
1423 |
msgid ""
|
1424 |
"Displays the end time for the event adjusted to the current user's time zone "
|
1425 |
"settings. Returns <code>{endtime}</code> if user settings are disabled or if "
|
1426 |
"the user has not selected a preferred time zone."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: my-calendar-help.php:
|
1430 |
msgid "Displays the date on which the event begins."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: my-calendar-help.php:
|
1434 |
msgid "Displays the date on which the event ends."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: my-calendar-help.php:
|
1438 |
msgid "Displays the time at which the event ends."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: my-calendar-help.php:
|
1442 |
msgid ""
|
1443 |
"Displays the beginning date to the end date for events. Does not show end "
|
1444 |
"date if same as start date."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1448 |
msgid ""
|
1449 |
"For multi-day events displays an unordered list of dates and times for "
|
1450 |
"events in this group. Otherwise, beginning date/time."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: my-calendar-help.php:
|
1454 |
msgid "Displays the WordPress author who posted the event."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: my-calendar-help.php:
|
1458 |
msgid "Displays the name of the person assigned as host for the event."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: my-calendar-help.php:
|
1462 |
msgid ""
|
1463 |
"Displays the email address of the person assigned as host for the event."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: my-calendar-help.php:
|
1467 |
msgid "Displays the short version of the event description."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: my-calendar-help.php:
|
1471 |
msgid "Displays short description without converting paragraphs."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: my-calendar-help.php:
|
1475 |
msgid "Displays the description of the event."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: my-calendar-help.php:
|
1479 |
msgid "Displays description without converting paragraphs."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: my-calendar-help.php:
|
1483 |
msgid "Image associated with the event."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: my-calendar-help.php:
|
1487 |
msgid "Displays the URL provided for the event."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: my-calendar-help.php:
|
1491 |
msgid "Produces the URL to download an iCal formatted record for the event."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: my-calendar-help.php:
|
1495 |
msgid ""
|
1496 |
"Produces a hyperlink to download an iCal formatted record for the event."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: my-calendar-help.php:
|
1500 |
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: my-calendar-help.php:
|
1504 |
msgid "Shows the number of repetitions of the event."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: my-calendar-help.php:
|
1508 |
msgid ""
|
1509 |
"Provides a link to an auto-generated page containing all information on the "
|
1510 |
"given event."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: my-calendar-help.php:
|
1514 |
msgid "Requires that the site URL has been provided on the Settings page"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: my-calendar-help.php:
|
1518 |
msgid ""
|
1519 |
"Displays text indicating whether registration for the event is currently "
|
1520 |
"open or closed; displays nothing if that choice is selected in the event."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: my-calendar-help.php:
|
1524 |
msgid ""
|
1525 |
"Displays the current status of the event: either \"Published\" or \"Reserved"
|
1526 |
"\" - primary used in email templates."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: my-calendar-help.php:
|
1530 |
msgid "Location Template Tags"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: my-calendar-help.php:
|
1534 |
msgid "Displays the name of the location of the event."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: my-calendar-help.php:
|
1538 |
msgid "Displays the first line of the site address."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: my-calendar-help.php:
|
1542 |
msgid "Displays the second line of the site address."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: my-calendar-help.php:
|
1546 |
msgid "Displays the city for the location."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: my-calendar-help.php:
|
1550 |
msgid "Displays the state for the location."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: my-calendar-help.php:
|
1554 |
msgid "Displays the postcode for the location."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: my-calendar-help.php:
|
1558 |
msgid "Shows the custom region entered for the location."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: my-calendar-help.php:
|
1562 |
msgid "Displays the country for the event location."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: my-calendar-help.php:
|
1566 |
msgid "Output the URL for the location link."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: my-calendar-help.php:
|
1570 |
msgid ""
|
1571 |
"Output a hyperlink to the location's listed link with default link text."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: my-calendar-help.php:
|
1575 |
msgid ""
|
1576 |
"Displays the event address in <a href=\"http://microformats.org/wiki/hcard"
|
1577 |
"\">hcard</a> format."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: my-calendar-help.php:
|
1581 |
msgid ""
|
1582 |
"Displays a link to a Google Map of the event, if sufficient address "
|
1583 |
"information is available. If not, will be empty."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: my-calendar-help.php:
|
1587 |
msgid "Category Template Tags"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: my-calendar-help.php:
|
1591 |
msgid "Displays the name of the category the event is in."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: my-calendar-help.php:
|
1595 |
msgid "Produces the address of the current event's category icon."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: my-calendar-help.php:
|
1599 |
msgid "Produces the HTML for the current event's category icon."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: my-calendar-help.php:
|
1603 |
msgid "Produces the hex code for the current event's category color."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: my-calendar-help.php:
|
1607 |
msgid ""
|
1608 |
"Displays the ID for\r\n"
|
1609 |
-
" the category the event is in."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: my-calendar-help.php:
|
1613 |
msgid "Special use Template Tags"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: my-calendar-help.php:
|
1617 |
msgid "A unique ID for the current instance of an event."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: my-calendar-help.php:
|
1621 |
msgid ""
|
1622 |
"The ID for the event record associated with the current instance of an event."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: my-calendar-help.php:
|
1626 |
msgid "Get Plug-in Support"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: my-calendar-help.php:
|
|
|
|
|
|
|
|
|
1630 |
msgid "Helpful Information"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: my-calendar-help.php:
|
1634 |
msgid ""
|
1635 |
"<strong>Uninstalling the plugin</strong>: Although the WordPress standard "
|
1636 |
"and expectation is for plug-ins to delete any custom database tables when "
|
@@ -1644,7 +1701,7 @@ msgid ""
|
|
1644 |
"however."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: my-calendar-help.php:
|
1648 |
msgid ""
|
1649 |
"<strong>Donations</strong>: I appreciate anything you can give. $2 may not "
|
1650 |
"seem like much, but it can really add up when thousands of people are using "
|
@@ -1660,73 +1717,77 @@ msgstr ""
|
|
1660 |
msgid "My Calendar Default Location"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: my-calendar-locations.php:
|
1664 |
msgid "Location added successfully"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: my-calendar-locations.php:
|
1668 |
msgid "Location could not be added to database"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: my-calendar-locations.php:
|
1672 |
msgid "Location deleted successfully"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: my-calendar-locations.php:
|
1676 |
msgid "Location could not be deleted"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: my-calendar-locations.php:
|
1680 |
msgid "Location could not be edited."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: my-calendar-locations.php:
|
1684 |
msgid "Location was not changed."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: my-calendar-locations.php:
|
1688 |
msgid "Location edited successfully"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: my-calendar-locations.php:
|
1692 |
msgid "Add New Location"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: my-calendar-locations.php:
|
1696 |
msgid "Edit Location"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: my-calendar-locations.php:
|
1700 |
msgid "Location Editor"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: my-calendar-locations.php:
|
1704 |
msgid "Website"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: my-calendar-locations.php:
|
1708 |
msgid ""
|
1709 |
"If you supply GPS coordinates for your location, they will be used in place "
|
1710 |
"of any other address information to pinpoint your location."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: my-calendar-locations.php:
|
1714 |
msgid "Add Location"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: my-calendar-locations.php:
|
1718 |
msgid "Add a New Location"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: my-calendar-locations.php:
|
1722 |
msgid "Manage Locations"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: my-calendar-locations.php:
|
|
|
|
|
|
|
|
|
1726 |
msgid "There are no locations in the database yet!"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: my-calendar-locations.php:
|
1730 |
msgid ""
|
1731 |
"Please note: editing or deleting locations stored for re-use will have no "
|
1732 |
"effect on any event previously scheduled at that location. The location "
|
@@ -1734,860 +1795,942 @@ msgid ""
|
|
1734 |
"locations into event records."
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: my-calendar-output.php:
|
1738 |
-
msgid "Event Details"
|
1739 |
-
msgstr ""
|
1740 |
-
|
1741 |
-
#: my-calendar-output.php:171 my-calendar-output.php:282
|
1742 |
msgid "Close"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: my-calendar-output.php:
|
1746 |
msgid "(%s in your time zone)"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: my-calendar-output.php:
|
1750 |
msgid "Not Applicable"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: my-calendar-output.php:
|
1754 |
msgid "Posted by"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: my-calendar-output.php:
|
1758 |
msgid "Details about"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: my-calendar-output.php:
|
1762 |
msgid "iCal"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: my-calendar-output.php:
|
1766 |
msgid ""
|
1767 |
"This class is part of a series. You must register for the first event in "
|
1768 |
"this series to attend."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: my-calendar-output.php:
|
1772 |
msgid "View full calendar"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: my-calendar-output.php:
|
1776 |
msgid "Edit This Date"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: my-calendar-output.php:
|
1780 |
msgid "Edit All"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: my-calendar-output.php:
|
1784 |
msgid "Delete This Date"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: my-calendar-output.php:
|
1788 |
msgid "Delete All"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: my-calendar-output.php:
|
1792 |
msgid "Year"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: my-calendar-output.php:
|
1796 |
msgid "Go"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: my-calendar-output.php:
|
1800 |
msgid "Calendar: Print View"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: my-calendar-output.php:
|
1804 |
msgid "Return to site"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: my-calendar-output.php:
|
1808 |
msgid "View as Grid"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: my-calendar-output.php:
|
1812 |
msgid "View as List"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: my-calendar-output.php:
|
1816 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: my-calendar-output.php:
|
1820 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: my-calendar-output.php:
|
1824 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: my-calendar-output.php:
|
1828 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: my-calendar-output.php:
|
1832 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: my-calendar-output.php:
|
1836 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: my-calendar-output.php:
|
1840 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: my-calendar-output.php:
|
1844 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: my-calendar-output.php:
|
1848 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: my-calendar-output.php:
|
1852 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: my-calendar-output.php:
|
1856 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: my-calendar-output.php:
|
1860 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: my-calendar-output.php:
|
1864 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: my-calendar-output.php:
|
1868 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: my-calendar-output.php:
|
1872 |
msgid "Print View"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: my-calendar-output.php:
|
1876 |
msgid "No events scheduled for today!"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: my-calendar-output.php:
|
1880 |
msgid "and"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: my-calendar-output.php:
|
1884 |
msgid "Events in"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: my-calendar-output.php:
|
1888 |
msgid " and %d other event"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: my-calendar-output.php:
|
1892 |
msgid " and %d other events"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: my-calendar-output.php:
|
1896 |
msgid "There are no events scheduled during this period."
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: my-calendar-output.php:
|
1900 |
msgid ""
|
1901 |
"Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: my-calendar-output.php:
|
1905 |
msgid "Category Key"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: my-calendar-output.php:
|
1909 |
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: my-calendar-output.php:
|
1913 |
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: my-calendar-output.php:
|
1917 |
msgid "Next events »"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: my-calendar-output.php:
|
1921 |
msgid "Week of "
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: my-calendar-output.php:
|
1925 |
msgid "« Previous events"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: my-calendar-output.php:
|
1929 |
msgid "(select to include)"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: my-calendar-output.php:
|
1933 |
msgid "All Categories"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#: my-calendar-output.php:
|
1937 |
msgid "Categories"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: my-calendar-output.php:
|
1941 |
msgid "Submit"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: my-calendar-output.php:
|
1945 |
msgid "Show all"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: my-calendar-output.php:
|
1949 |
msgid "Show events in:"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: my-calendar-settings.php:
|
1953 |
msgid "Categories imported successfully."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: my-calendar-settings.php:
|
1957 |
msgid "Categories not imported."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: my-calendar-settings.php:
|
1961 |
msgid "Events imported successfully."
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: my-calendar-settings.php:
|
1965 |
msgid "Events not imported."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: my-calendar-settings.php:
|
1969 |
msgid "My Calendar Cache cleared"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: my-calendar-settings.php:
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: my-calendar-settings.php:
|
1977 |
-
msgid "
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: my-calendar-settings.php:
|
1981 |
-
msgid "
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: my-calendar-settings.php:
|
1985 |
-
msgid "
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: my-calendar-settings.php:
|
1989 |
-
msgid "
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: my-calendar-settings.php:
|
1993 |
-
msgid "
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: my-calendar-settings.php:
|
1997 |
-
msgid "
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: my-calendar-settings.php:
|
2001 |
-
msgid "
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: my-calendar-settings.php:
|
2005 |
-
msgid "
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: my-calendar-settings.php:
|
2009 |
-
msgid "
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: my-calendar-settings.php:
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: my-calendar-settings.php:
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: my-calendar-settings.php:
|
2021 |
-
|
2022 |
-
msgid "Contributor"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: my-calendar-settings.php:
|
2026 |
-
|
2027 |
-
msgid "Editor"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: my-calendar-settings.php:
|
2031 |
-
|
2032 |
-
msgid "Administrator"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: my-calendar-settings.php:
|
2036 |
-
msgid "
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: my-calendar-settings.php:
|
2040 |
-
msgid "
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: my-calendar-settings.php:
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: my-calendar-settings.php:
|
2048 |
-
msgid ""
|
2049 |
-
"By default, only administrators may edit or delete any event. Other users "
|
2050 |
-
"may only edit or delete events which they authored."
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: my-calendar-settings.php:
|
2054 |
-
msgid "
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: my-calendar-settings.php:
|
2058 |
-
msgid ""
|
2059 |
-
"Clear current cache. (Necessary if you edit shortcodes to change displayed "
|
2060 |
-
"categories, for example.)"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: my-calendar-settings.php:
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: my-calendar-settings.php:
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: my-calendar-settings.php:
|
2072 |
-
msgid ""
|
2073 |
-
"You are currently working in the primary site for this network; your local "
|
2074 |
-
"calendar is also the global table."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: my-calendar-settings.php:
|
2078 |
-
msgid "
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: my-calendar-settings.php:
|
2082 |
-
msgid "
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: my-calendar-settings.php:
|
2086 |
-
msgid "
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: my-calendar-settings.php:
|
2090 |
-
msgid "
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: my-calendar-settings.php:
|
2094 |
-
msgid "
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: my-calendar-settings.php:
|
2098 |
-
msgid "
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: my-calendar-settings.php:
|
2102 |
-
msgid "
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: my-calendar-settings.php:
|
2106 |
-
msgid "
|
|
|
|
|
|
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: my-calendar-settings.php:
|
2110 |
-
msgid "
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: my-calendar-settings.php:
|
2114 |
-
msgid "
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: my-calendar-settings.php:
|
2118 |
-
msgid "
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: my-calendar-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2122 |
msgid "If events are closed"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: my-calendar-settings.php:
|
2126 |
msgid "Registration is closed"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: my-calendar-settings.php:
|
2130 |
msgid "Week view caption:"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: my-calendar-settings.php:
|
2134 |
-
msgid "
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: my-calendar-settings.php:
|
2138 |
msgid ""
|
2139 |
-
"The calendar caption
|
2140 |
-
"
|
2141 |
-
"existing text."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: my-calendar-settings.php:
|
2145 |
msgid "Save Custom Text Settings"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: my-calendar-settings.php:
|
2149 |
msgid "Calendar Output Settings"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: my-calendar-settings.php:
|
2153 |
msgid "Save Output Settings"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: my-calendar-settings.php:
|
2157 |
msgid "Calendar Options: Customize the Output of your Calendar"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: my-calendar-settings.php:
|
2161 |
msgid "General Calendar Options"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: my-calendar-settings.php:
|
2165 |
msgid ""
|
2166 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details "
|
2167 |
"links:"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: my-calendar-settings.php:
|
2171 |
msgid ""
|
2172 |
"Can be any Page or Post which includes the <code>[my_calendar]</code> "
|
2173 |
"shortcode."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: my-calendar-settings.php:
|
2177 |
msgid ""
|
2178 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's "
|
2179 |
"timeline links."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: my-calendar-settings.php:
|
2183 |
msgid ""
|
2184 |
"Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> "
|
2185 |
"shortcode."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: my-calendar-settings.php:
|
2189 |
msgid ""
|
2190 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar "
|
2191 |
"in-page anchors:"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: my-calendar-settings.php:
|
2195 |
msgid ""
|
2196 |
"Can be any Page or Post with the <code>[my_calendar]</code> shortcode using "
|
2197 |
"format selected below"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: my-calendar-settings.php:
|
2201 |
msgid "With above settings:"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: my-calendar-settings.php:
|
2205 |
msgid "Open calendar links to event details URL"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: my-calendar-settings.php:
|
2209 |
msgid "Replaces pop-up in grid view."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: my-calendar-settings.php:
|
2213 |
msgid "Mini calendar widget date links to:"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: my-calendar-settings.php:
|
2217 |
msgid "jQuery pop-up view"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: my-calendar-settings.php:
|
2221 |
msgid "daily view page (above)"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: my-calendar-settings.php:
|
2225 |
msgid "in-page anchor on main calendar page (list)"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: my-calendar-settings.php:
|
2229 |
msgid "in-page anchor on main calendar page (grid)"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: my-calendar-settings.php:
|
2233 |
msgid "Replaces pop-up in mini calendar"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: my-calendar-settings.php:
|
2237 |
msgid "Time format"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: my-calendar-settings.php:
|
2241 |
-
#: my-calendar-settings.php:
|
2242 |
msgid "Current:"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: my-calendar-settings.php:
|
2246 |
msgid "Date in grid mode, week view"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: my-calendar-settings.php:
|
2250 |
msgid "Date Format in other views"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: my-calendar-settings.php:
|
2254 |
msgid ""
|
2255 |
"Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP "
|
2256 |
"<code>date()</code> function</a>. Save options to update sample output."
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: my-calendar-settings.php:
|
2260 |
msgid "Show link to My Calendar RSS feed."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: my-calendar-settings.php:
|
2264 |
msgid "RSS feed shows recently added events."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: my-calendar-settings.php:
|
2268 |
msgid "Show link to iCal format download."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: my-calendar-settings.php:
|
2272 |
msgid "iCal outputs events occurring in the current calendar month."
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: my-calendar-settings.php:
|
2276 |
msgid "Show link to print-formatted view of calendar"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: my-calendar-settings.php:
|
2280 |
msgid "Display a jumpbox for changing month and year quickly?"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: my-calendar-settings.php:
|
2284 |
msgid "Grid Layout Options"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: my-calendar-settings.php:
|
2288 |
msgid "Show Weekends on Calendar"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: my-calendar-settings.php:
|
|
|
|
|
|
|
|
|
2292 |
msgid "List Layout Options"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: my-calendar-settings.php:
|
2296 |
msgid "How many months of events to show at a time:"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: my-calendar-settings.php:
|
2300 |
msgid ""
|
2301 |
"Show the first event's title and the number of events that day next to the "
|
2302 |
"date."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: my-calendar-settings.php:
|
2306 |
msgid "Event Details Options"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: my-calendar-settings.php:
|
2310 |
msgid "Event title template"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: my-calendar-settings.php:
|
2314 |
msgid "Templating Help"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: my-calendar-settings.php:
|
2318 |
msgid "All template tags are available."
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: my-calendar-settings.php:
|
2322 |
msgid "Event details link text"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: my-calendar-settings.php:
|
2326 |
msgid ""
|
2327 |
-
"Available
|
2328 |
-
"
|
2329 |
-
"</code>."
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: my-calendar-settings.php:
|
2333 |
msgid "Event URL link text"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: my-calendar-settings.php:
|
2337 |
msgid "Display author's name"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: my-calendar-settings.php:
|
2341 |
msgid "Display link to single event iCal download."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: my-calendar-settings.php:
|
2345 |
msgid "Hide category icons"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: my-calendar-settings.php:
|
2349 |
msgid "Show Link to Google Map"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: my-calendar-settings.php:
|
2353 |
msgid "Show Event Address"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: my-calendar-settings.php:
|
2357 |
-
msgid "Show short description
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: my-calendar-settings.php:
|
2361 |
-
msgid "Show full description
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: my-calendar-settings.php:
|
2365 |
-
msgid ""
|
2366 |
-
"Show link to single-event details. (requires <a href='#mc_uri'>URL, above</"
|
2367 |
-
"a>)"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: my-calendar-settings.php:
|
2371 |
-
msgid "
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: my-calendar-settings.php:
|
2375 |
-
msgid "
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: my-calendar-settings.php:
|
|
|
|
|
|
|
|
|
2379 |
msgid "Default usage of category colors."
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: my-calendar-settings.php:
|
2383 |
-
msgid "
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: my-calendar-settings.php:
|
2387 |
-
msgid "
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: my-calendar-settings.php:
|
2391 |
msgid "Event Scheduling Options"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: my-calendar-settings.php:
|
2395 |
msgid ""
|
2396 |
"Default setting for event input: If a recurring event is scheduled for a "
|
2397 |
"date which doesn't exist (such as the 5th Wednesday in February), move it "
|
2398 |
"back one week."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: my-calendar-settings.php:
|
2402 |
msgid "Holiday Category"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: my-calendar-settings.php:
|
2406 |
msgid "None"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: my-calendar-settings.php:
|
2410 |
msgid ""
|
2411 |
"Default setting for event input: If an event coincides with an event in the "
|
2412 |
"designated \"Holiday\" category, do not show the event."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: my-calendar-settings.php:
|
2416 |
-
msgid "Default Sort order for Admin Events List"
|
2417 |
-
msgstr ""
|
2418 |
-
|
2419 |
-
#: my-calendar-settings.php:507
|
2420 |
-
msgid "Event ID"
|
2421 |
-
msgstr ""
|
2422 |
-
|
2423 |
-
#: my-calendar-settings.php:527
|
2424 |
msgid "Calendar Input Settings"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: my-calendar-settings.php:
|
2428 |
msgid ""
|
2429 |
"Select which input fields will be available when adding or editing events."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: my-calendar-settings.php:
|
2433 |
msgid "Show Event Location Dropdown Menu"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: my-calendar-settings.php:
|
2437 |
msgid "Show Event Short Description field"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: my-calendar-settings.php:
|
2441 |
msgid "Show Event Description Field"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: my-calendar-settings.php:
|
2445 |
msgid "Show Event Category field"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: my-calendar-settings.php:
|
2449 |
msgid "Show Event image field"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: my-calendar-settings.php:
|
2453 |
msgid "Show Event Link field"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: my-calendar-settings.php:
|
2457 |
msgid "Show Event Recurrence Options"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: my-calendar-settings.php:
|
2461 |
msgid "Show Event registration options"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: my-calendar-settings.php:
|
2465 |
msgid "Show Event location fields"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: my-calendar-settings.php:
|
2469 |
msgid "Use HTML Editor in Event Description Field"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: my-calendar-settings.php:
|
2473 |
msgid "Administrators see all input options"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: my-calendar-settings.php:
|
2477 |
msgid "Save Input Settings"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: my-calendar-settings.php:
|
2481 |
msgid "Multisite Settings (Network Administrators only)"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: my-calendar-settings.php:
|
2485 |
msgid "Multisite support is a beta feature - use with caution."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: my-calendar-settings.php:
|
2489 |
msgid "Settings for WP MultiSite configurations"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: my-calendar-settings.php:
|
2493 |
msgid ""
|
2494 |
"The central calendar is the calendar associated with the primary site in "
|
2495 |
"your WordPress Multisite network."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: my-calendar-settings.php:
|
2499 |
msgid "Site owners may only post to their local calendar"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: my-calendar-settings.php:
|
2503 |
msgid "Site owners may only post to the central calendar"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: my-calendar-settings.php:
|
2507 |
msgid "Site owners may manage either calendar"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: my-calendar-settings.php:
|
2511 |
msgid ""
|
2512 |
"Changes only effect input permissions. Public-facing calendars will be "
|
2513 |
"unchanged."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: my-calendar-settings.php:
|
2517 |
msgid "Sub-site calendars show events from their local calendar."
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: my-calendar-settings.php:
|
2521 |
msgid "Sub-site calendars show events from the central calendar."
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: my-calendar-settings.php:
|
2525 |
msgid "Save Multisite Settings"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: my-calendar-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2529 |
msgid "Calendar Email Settings"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: my-calendar-settings.php:
|
2533 |
msgid "Calendar Options: Email Notifications"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: my-calendar-settings.php:
|
2537 |
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#: my-calendar-settings.php:
|
2541 |
msgid "Notification messages are sent to: "
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: my-calendar-settings.php:
|
2545 |
msgid "Email subject"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: my-calendar-settings.php:
|
2549 |
msgid "New event Added"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: my-calendar-settings.php:
|
2553 |
msgid "Message Body"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: my-calendar-settings.php:
|
2557 |
msgid "New Event:"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: my-calendar-settings.php:
|
2561 |
msgid "Shortcode Help"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: my-calendar-settings.php:
|
2565 |
msgid "All template shortcodes are available."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: my-calendar-settings.php:
|
2569 |
msgid "Save Email Settings"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: my-calendar-settings.php:
|
2573 |
msgid "Calendar User Settings"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: my-calendar-settings.php:
|
2577 |
msgid "Settings which can be configured in registered user's accounts"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: my-calendar-settings.php:
|
2581 |
msgid ""
|
2582 |
"Allow registered users to provide timezone or location presets in their user "
|
2583 |
"profiles."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: my-calendar-settings.php:
|
2587 |
msgid "Timezone Settings"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: my-calendar-settings.php:
|
2591 |
msgid ""
|
2592 |
"These settings provide registered users with the ability to select a time "
|
2593 |
"zone in their user profile. When they view your calendar, the times for "
|
@@ -2595,27 +2738,27 @@ msgid ""
|
|
2595 |
"the entered value."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: my-calendar-settings.php:
|
2599 |
msgid "Enable Timezone"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: my-calendar-settings.php:
|
2603 |
msgid "Select Timezone Label"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: my-calendar-settings.php:
|
2607 |
msgid "Timezone Options"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: my-calendar-settings.php:
|
2611 |
msgid "Value, Label; one per line"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: my-calendar-settings.php:
|
2615 |
msgid "Location Settings"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: my-calendar-settings.php:
|
2619 |
msgid ""
|
2620 |
"These settings provide registered users with the ability to select a "
|
2621 |
"location in their user profile. When they view your calendar, their initial "
|
@@ -2625,87 +2768,92 @@ msgid ""
|
|
2625 |
"to enable these settings for users to use the custom filtering options."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: my-calendar-settings.php:
|
2629 |
msgid "Enable Location"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: my-calendar-settings.php:
|
2633 |
msgid "Use this location list as input control"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: my-calendar-settings.php:
|
2637 |
msgid ""
|
2638 |
"The normal text entry for this location type will be replaced by a drop down "
|
2639 |
"containing these choices."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: my-calendar-settings.php:
|
2643 |
msgid "Select Location Label"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: my-calendar-settings.php:
|
2647 |
msgid "Location Options"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: my-calendar-settings.php:
|
2651 |
msgid "Location Type"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: my-calendar-settings.php:
|
2655 |
msgid "Save User Settings"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: my-calendar-
|
|
|
|
|
|
|
|
|
|
|
2659 |
msgid "The stylesheet has been updated."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: my-calendar-styles.php:
|
2663 |
msgid "Write Error! Please verify write permissions on the style file."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: my-calendar-styles.php:
|
2667 |
msgid "Stylesheet reset to default."
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: my-calendar-styles.php:
|
2671 |
msgid "Style Settings Saved"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: my-calendar-styles.php:
|
2675 |
msgid "New theme selected."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: my-calendar-styles.php:
|
2679 |
msgid ""
|
2680 |
"Sorry. The file you are looking for doesn't appear to exist. Please check "
|
2681 |
"your file name and location!"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: my-calendar-styles.php:
|
2685 |
msgid "My Calendar Styles"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: my-calendar-styles.php:
|
2689 |
msgid "Calendar Style Settings"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: my-calendar-styles.php:
|
2693 |
msgid "Select My Calendar Theme"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: my-calendar-styles.php:
|
2697 |
msgid "Your Custom Stylesheets"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: my-calendar-styles.php:
|
2701 |
msgid "Installed Stylesheets"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: my-calendar-styles.php:
|
2705 |
msgid "Choose Style"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: my-calendar-styles.php:
|
2709 |
msgid ""
|
2710 |
"My Calendar was unable to update your CSS files during the upgrade. Please "
|
2711 |
"check your file permissions if you wish to edit your My Calendar styles. "
|
@@ -2713,478 +2861,488 @@ msgid ""
|
|
2713 |
"be deleted from the database when you successfully update your stylesheet."
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: my-calendar-styles.php:
|
2717 |
msgid "CSS Style Options"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: my-calendar-styles.php:
|
2721 |
msgid "Apply CSS only on these pages (comma separated page IDs)"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: my-calendar-styles.php:
|
2725 |
msgid "Restore My Calendar stylesheet"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: my-calendar-styles.php:
|
2729 |
msgid "Disable My Calendar Stylesheet"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: my-calendar-styles.php:
|
2733 |
msgid "Edit the stylesheet for My Calendar"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: my-calendar-styles.php:
|
2737 |
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: my-calendar-styles.php:
|
2741 |
msgid "There have been updates to the stylesheet."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: my-calendar-styles.php:
|
2745 |
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: my-calendar-styles.php:
|
2749 |
msgid "Your stylesheet matches that included with My Calendar."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: my-calendar-styles.php:
|
2753 |
msgid ""
|
2754 |
"Resetting your stylesheet will set your stylesheet to the version of that "
|
2755 |
"style currently distributed with the plug-in."
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: my-calendar-templates.php:
|
2759 |
-
msgid "to"
|
2760 |
-
msgstr ""
|
2761 |
-
|
2762 |
-
#: my-calendar-templates.php:42
|
2763 |
msgid "Map<span> to %s</span>"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: my-calendar-templates.php:
|
2767 |
msgid "Visit web site<span>: %s</span>"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: my-calendar-templates.php:
|
2771 |
msgid "Date of Month (the %s of each month)"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: my-calendar-templates.php:
|
2775 |
msgid "Day of Month (the %s %s of each month)"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: my-calendar-templating.php:
|
2779 |
msgid "Grid Output Template saved"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: my-calendar-templating.php:
|
2783 |
msgid "List Output Template saved"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: my-calendar-templating.php:
|
2787 |
msgid "Mini Output Template saved"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: my-calendar-templating.php:
|
2791 |
msgid "Event Details Template saved"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: my-calendar-templating.php:
|
2795 |
msgid "My Calendar Information Templates"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: my-calendar-templating.php:
|
2799 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: my-calendar-templating.php:
|
2803 |
-
msgid ""
|
2804 |
-
"Title of the event as a link if a URL is present, or the title alone if not."
|
2805 |
msgstr ""
|
2806 |
|
2807 |
#: my-calendar-templating.php:79
|
2808 |
-
msgid "
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: my-calendar-templating.php:
|
2812 |
-
msgid "
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: my-calendar-templating.php:
|
2816 |
-
msgid "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: my-calendar-templating.php:
|
2820 |
-
msgid "
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: my-calendar-templating.php:
|
2824 |
-
msgid "
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: my-calendar-templating.php:
|
2828 |
-
msgid "
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: my-calendar-templating.php:
|
2832 |
-
msgid ""
|
2833 |
-
"Multi-day events: an unordered list of dates/times. Otherwise, beginning "
|
2834 |
-
"date/time."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: my-calendar-templating.php:
|
2838 |
-
msgid "
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#: my-calendar-templating.php:
|
2842 |
-
msgid "
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#: my-calendar-templating.php:
|
2846 |
-
msgid "
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: my-calendar-templating.php:
|
2850 |
-
msgid "
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: my-calendar-templating.php:
|
2854 |
-
msgid "
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: my-calendar-templating.php:
|
2858 |
-
msgid "
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: my-calendar-templating.php:
|
2862 |
-
msgid "
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: my-calendar-templating.php:
|
2866 |
-
msgid "
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: my-calendar-templating.php:
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: my-calendar-
|
2874 |
-
msgid "
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
#: my-calendar-
|
2878 |
-
msgid "
|
2879 |
msgstr ""
|
2880 |
|
2881 |
-
#: my-calendar-
|
2882 |
-
msgid "
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: my-calendar-
|
2886 |
-
msgid "
|
|
|
|
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: my-calendar-
|
2890 |
-
msgid "
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: my-calendar-
|
2894 |
-
msgid "
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: my-calendar-
|
2898 |
-
msgid "
|
2899 |
msgstr ""
|
2900 |
|
2901 |
-
#: my-calendar-
|
2902 |
-
msgid "
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: my-calendar-
|
2906 |
-
msgid "
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: my-calendar-
|
2910 |
-
msgid ""
|
2911 |
-
"Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> "
|
2912 |
-
"format."
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: my-calendar-
|
2916 |
-
msgid "
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: my-calendar-
|
2920 |
-
msgid "
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: my-calendar-
|
2924 |
-
msgid "
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: my-calendar-
|
2928 |
-
|
|
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: my-calendar-
|
2932 |
-
msgid "
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: my-calendar-
|
2936 |
-
msgid ""
|
2937 |
-
"Advanced users may wish to customize the HTML elements and order of items "
|
2938 |
-
"presented for each event. This page provides the ability to create a "
|
2939 |
-
"customized view of your events in each different context. All available "
|
2940 |
-
"template tags are documented on the Help page. The default templates "
|
2941 |
-
"provided are based on the default views assuming all output is enabled. "
|
2942 |
-
"<strong>Custom templates will override any other output rules you've "
|
2943 |
-
"configured in settings.</strong>"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: my-calendar-
|
2947 |
-
msgid "
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: my-calendar-
|
2951 |
-
msgid "
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: my-calendar-
|
2955 |
-
msgid "
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: my-calendar-
|
2959 |
-
msgid "
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: my-calendar-
|
2963 |
-
msgid "
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: my-calendar-
|
2967 |
-
msgid "
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: my-calendar-
|
2971 |
-
msgid "
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: my-calendar-
|
2975 |
-
msgid "
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: my-calendar-
|
2979 |
-
msgid "
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: my-calendar-
|
2983 |
-
msgid "My Calendar: Mini Calendar
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: my-calendar-
|
2987 |
-
msgid "
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: my-calendar-
|
2991 |
-
msgid "
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: my-calendar-
|
2995 |
-
msgid "
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: my-calendar-
|
2999 |
-
msgid "
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: my-calendar
|
3003 |
-
msgid "
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: my-calendar
|
3007 |
-
msgid "
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: my-calendar
|
3011 |
-
msgid "
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: my-calendar
|
3015 |
-
msgid "
|
|
|
|
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: my-calendar
|
3019 |
-
msgid "
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: my-calendar
|
3023 |
-
msgid "
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: my-calendar
|
3027 |
-
msgid ""
|
3028 |
-
"You haven't entered any events, so My Calendar can't tell whether your "
|
3029 |
-
"database is up to date. If you can't add events, upgrade your database!"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: my-calendar-
|
3033 |
-
msgid "My Calendar
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: my-calendar
|
3037 |
-
msgid "
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: my-calendar
|
3041 |
-
msgid "
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: my-calendar
|
3045 |
-
msgid "
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: my-calendar
|
3049 |
-
msgid "
|
|
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: my-calendar
|
3053 |
-
msgid "
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: my-calendar
|
3057 |
-
msgid "
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: my-calendar
|
3061 |
-
msgid "
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: my-calendar
|
3065 |
-
msgid "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: my-calendar
|
3069 |
-
|
3070 |
-
msgid "Category or categories to display:"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: my-calendar
|
3074 |
-
msgid "
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: my-calendar
|
3078 |
-
msgid "
|
|
|
|
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: my-calendar
|
3082 |
-
msgid "
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: my-calendar
|
3086 |
-
msgid "
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: my-calendar
|
3090 |
-
msgid "
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: my-calendar
|
3094 |
-
msgid "
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: my-calendar
|
3098 |
-
msgid "
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: my-calendar
|
3102 |
-
msgid "
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: my-calendar
|
3106 |
-
msgid "
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: my-calendar
|
3110 |
-
msgid "
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: my-calendar
|
3114 |
-
msgid "
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: my-calendar
|
3118 |
-
msgid "
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: my-calendar
|
3122 |
-
msgid "
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: my-calendar
|
3126 |
-
msgid "
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: my-calendar
|
3130 |
-
msgid "
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: my-calendar
|
3134 |
-
msgid "
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: my-calendar.php:
|
3138 |
-
msgid "
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: my-calendar.php:
|
3142 |
-
msgid "
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: my-calendar.php:
|
3146 |
-
msgid "
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: my-calendar.php:
|
3150 |
-
msgid "
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: my-calendar.php:
|
3154 |
-
msgid "
|
|
|
|
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: my-calendar.php:
|
3158 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: my-calendar.php:
|
3162 |
-
msgid "
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
|
|
|
|
|
|
|
|
|
3166 |
#. Plugin Name of the plugin/theme
|
3167 |
-
#: my-calendar.php:
|
|
|
3168 |
msgid "My Calendar"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: my-calendar.php:
|
3172 |
msgid "Add/Edit Events"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: my-calendar.php:
|
3176 |
msgid "Style Editor"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: my-calendar.php:
|
3180 |
msgid "Behavior Editor"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: my-calendar.php:
|
3184 |
msgid "Template Editor"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: my-calendar.php:
|
3188 |
msgid "My Calendar Pro Settings"
|
3189 |
msgstr ""
|
3190 |
|
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.11.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
7 |
+
"POT-Creation-Date: 2012-05-24 20:04:04+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
32 |
msgid "All locations"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: button/generator.php:55 my-calendar-settings.php:323
|
36 |
+
#: my-calendar-settings.php:806
|
37 |
msgid "Location Name"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: button/generator.php:56 my-calendar-event-manager.php:780
|
41 |
+
#: my-calendar-group-manager.php:469 my-calendar-locations.php:154
|
42 |
+
#: my-calendar-settings.php:807
|
43 |
msgid "City"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: button/generator.php:57 my-calendar-event-manager.php:827
|
47 |
+
#: my-calendar-group-manager.php:485 my-calendar-locations.php:199
|
48 |
msgid "State"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: button/generator.php:58 my-calendar-event-manager.php:796
|
52 |
+
#: my-calendar-group-manager.php:472 my-calendar-locations.php:170
|
53 |
+
#: my-calendar-settings.php:810
|
54 |
msgid "Postal Code"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: button/generator.php:59 my-calendar-event-manager.php:812
|
58 |
+
#: my-calendar-group-manager.php:476 my-calendar-locations.php:186
|
59 |
+
#: my-calendar-settings.php:809
|
60 |
msgid "Country"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: button/generator.php:60 my-calendar-event-manager.php:803
|
64 |
+
#: my-calendar-event-manager.php:828 my-calendar-group-manager.php:473
|
65 |
+
#: my-calendar-group-manager.php:486 my-calendar-locations.php:177
|
66 |
+
#: my-calendar-locations.php:200 my-calendar-settings.php:811
|
67 |
msgid "Region"
|
68 |
msgstr ""
|
69 |
|
88 |
msgstr ""
|
89 |
|
90 |
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
91 |
+
#: button/generator.php:98 my-calendar-widgets.php:593
|
92 |
+
#: my-calendar-widgets.php:599 my-calendar-widgets.php:605
|
93 |
msgid "Yes"
|
94 |
msgstr ""
|
95 |
|
96 |
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
97 |
+
#: button/generator.php:99 my-calendar-widgets.php:594
|
98 |
+
#: my-calendar-widgets.php:600 my-calendar-widgets.php:606
|
99 |
msgid "No"
|
100 |
msgstr ""
|
101 |
|
103 |
msgid "Show Previous/Next Links"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: button/generator.php:89 my-calendar-widgets.php:598
|
107 |
+
msgid "Show Jumpbox"
|
108 |
msgstr ""
|
109 |
|
110 |
#: button/generator.php:96
|
111 |
+
msgid "Show Format Toggle"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: button/generator.php:103
|
115 |
msgid "Time Segment"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: button/generator.php:105 my-calendar-output.php:366
|
119 |
+
#: my-calendar-widgets.php:611
|
120 |
msgid "Month"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: button/generator.php:106 my-calendar-widgets.php:612
|
124 |
msgid "Week"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: button/generator.php:107
|
128 |
msgid "Day"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: button/generator.php:112
|
132 |
msgid "Generate Shortcode"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: button/generator.php:114
|
136 |
msgid ""
|
137 |
"<strong>Note:</strong> If you provide a location filter value, it must be an "
|
138 |
"exact match for that information as saved with your events. (e.g. \"Saint "
|
139 |
"Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: button/generator.php:124
|
143 |
msgid ""
|
144 |
"My Calendar: this generator isn't going to put the shortcode in your page. "
|
145 |
"Sorry!"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: my-calendar-behaviors.php:44
|
149 |
msgid "Behavior Settings saved"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: my-calendar-behaviors.php:68
|
153 |
msgid "My Calendar Behaviors"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: my-calendar-behaviors.php:75
|
157 |
msgid "Calendar Behavior Settings"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: my-calendar-behaviors.php:80
|
161 |
+
msgid "Insert scripts on these pages (comma separated post IDs)"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: my-calendar-behaviors.php:83
|
165 |
msgid "Details boxes are draggable"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: my-calendar-behaviors.php:86
|
169 |
msgid "Calendar Behaviors: Calendar View"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: my-calendar-behaviors.php:88
|
173 |
msgid "Update/Reset the My Calendar Calendar Javascript"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: my-calendar-behaviors.php:88
|
177 |
msgid "Disable Calendar Javascript Effects"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: my-calendar-behaviors.php:91
|
181 |
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
185 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "Comparing scripts with latest installed version of My Calendar"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
190 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
191 |
+
#: my-calendar-styles.php:211
|
192 |
msgid "Latest (from plugin)"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
196 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
197 |
+
#: my-calendar-styles.php:211
|
198 |
msgid "Current (in use)"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: my-calendar-behaviors.php:102
|
202 |
msgid "There have been updates to the calendar view scripts."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
|
206 |
+
#: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
|
207 |
msgid "Compare your scripts with latest installed version of My Calendar."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
|
211 |
+
#: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
|
212 |
msgid "Your script matches that included with My Calendar."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: my-calendar-behaviors.php:111 my-calendar-behaviors.php:143
|
216 |
+
#: my-calendar-behaviors.php:174 my-calendar-behaviors.php:206
|
217 |
+
#: my-calendar-behaviors.php:211
|
218 |
+
msgid "Save"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: my-calendar-behaviors.php:118
|
222 |
msgid "Calendar Behaviors: List View"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: my-calendar-behaviors.php:120
|
226 |
msgid "Update/Reset the My Calendar List Javascript"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: my-calendar-behaviors.php:120
|
230 |
msgid "Disable List Javascript Effects"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: my-calendar-behaviors.php:123
|
234 |
msgid "Edit the jQuery scripts for My Calendar in List format"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: my-calendar-behaviors.php:134
|
238 |
msgid "There have been updates to the list view scripts."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: my-calendar-behaviors.php:149
|
242 |
msgid "Calendar Behaviors: Mini Calendar View"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: my-calendar-behaviors.php:151
|
246 |
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: my-calendar-behaviors.php:151
|
250 |
msgid "Disable Mini Javascript Effects"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: my-calendar-behaviors.php:154
|
254 |
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: my-calendar-behaviors.php:165
|
258 |
msgid "There have been updates to the mini view scripts."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: my-calendar-behaviors.php:181
|
262 |
msgid "Calendar Behaviors: AJAX Navigation"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: my-calendar-behaviors.php:183
|
266 |
msgid "Update/Reset the My Calendar AJAX Javascript"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: my-calendar-behaviors.php:183
|
270 |
msgid "Disable AJAX Effects"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: my-calendar-behaviors.php:186
|
274 |
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: my-calendar-behaviors.php:197
|
278 |
msgid "There have been updates to the AJAX scripts."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: my-calendar-behaviors.php:217
|
282 |
msgid ""
|
283 |
"Resetting JavaScript will set that script to the version currently "
|
284 |
"distributed with the plug-in."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: my-calendar-categories.php:104
|
288 |
msgid "Category added successfully"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: my-calendar-categories.php:106
|
292 |
msgid "Category addition failed."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: my-calendar-categories.php:116
|
296 |
msgid "Category deleted successfully. Categories in calendar updated."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: my-calendar-categories.php:118
|
300 |
msgid "Category deleted successfully. Categories in calendar not updated."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: my-calendar-categories.php:120
|
304 |
msgid "Category not deleted. Categories in calendar updated."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: my-calendar-categories.php:136
|
308 |
msgid "Category edited successfully"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: my-calendar-categories.php:138
|
312 |
msgid "Error: Category was not edited."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: my-calendar-categories.php:172 my-calendar-categories.php:198
|
316 |
+
#: my-calendar-categories.php:215
|
317 |
msgid "Add Category"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: my-calendar-categories.php:174 my-calendar-categories.php:198
|
321 |
msgid "Edit Category"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: my-calendar-categories.php:182
|
325 |
msgid "Category Editor"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: my-calendar-categories.php:199 my-calendar-categories.php:263
|
329 |
msgid "Category Name"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: my-calendar-categories.php:200
|
333 |
msgid "Category Color (Hex format)"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: my-calendar-categories.php:201 my-calendar-categories.php:265
|
337 |
msgid "Category Icon"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: my-calendar-categories.php:215 my-calendar-locations.php:217
|
341 |
+
#: my-calendar-styles.php:201
|
342 |
msgid "Save Changes"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: my-calendar-categories.php:222
|
346 |
msgid "Add a New Category"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: my-calendar-categories.php:227
|
350 |
+
msgid "Category List"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: my-calendar-categories.php:246 my-calendar.php:307
|
354 |
msgid "Manage Categories"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: my-calendar-categories.php:262 my-calendar-event-manager.php:963
|
358 |
+
#: my-calendar-group-manager.php:724 my-calendar-locations.php:290
|
359 |
msgid "ID"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: my-calendar-categories.php:264
|
363 |
msgid "Category Color"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: my-calendar-categories.php:266 my-calendar-categories.php:280
|
367 |
+
#: my-calendar-event-manager.php:1030 my-calendar-group-manager.php:733
|
368 |
+
#: my-calendar-locations.php:292 my-calendar-locations.php:304
|
369 |
+
#: my-calendar-output.php:300
|
370 |
msgid "Edit"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: my-calendar-categories.php:267 my-calendar-categories.php:286
|
374 |
+
#: my-calendar-event-manager.php:184 my-calendar-event-manager.php:1033
|
375 |
+
#: my-calendar-locations.php:293 my-calendar-locations.php:305
|
376 |
+
#: my-calendar-output.php:301
|
377 |
msgid "Delete"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: my-calendar-categories.php:283 my-calendar-event-manager.php:1011
|
381 |
+
#: my-calendar-group-manager.php:773 my-calendar-output.php:193
|
382 |
+
#: my-calendar-settings.php:361
|
383 |
msgid "N/A"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: my-calendar-categories.php:286 my-calendar-locations.php:305
|
387 |
msgid "Are you sure you want to delete this category?"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: my-calendar-categories.php:297
|
391 |
msgid "There are no categories in the database - something has gone wrong!"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: my-calendar-core.php:72 my-calendar.php:311
|
395 |
msgid "Settings"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: my-calendar-core.php:73 my-calendar.php:315
|
399 |
msgid "Help"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: my-calendar-core.php:210
|
403 |
msgid ""
|
404 |
+
"<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href="
|
405 |
+
"\"%1$s\">changelog</a> before upgrading."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: my-calendar-core.php:979 my-calendar-event-manager.php:290
|
409 |
msgid "Add Event"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: my-calendar-core.php:1210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
msgid "Is this your calendar page?"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: my-calendar-core.php:1213
|
417 |
msgid "I tried to guess, but don't have a suggestion for you."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: my-calendar-core.php:1306
|
421 |
msgid ""
|
422 |
"Please read the FAQ and other Help documents before making a support request."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: my-calendar-core.php:1308
|
426 |
msgid "Please describe your problem in detail. I'm not psychic."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: my-calendar-core.php:1313
|
430 |
msgid ""
|
431 |
"Thank you for supporting the continuing development of this plug-in! I'll "
|
432 |
"get back to you as soon as I can."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: my-calendar-core.php:1315
|
436 |
msgid ""
|
437 |
"I'll get back to you as soon as I can, after dealing with any support "
|
438 |
"requests from plug-in supporters."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: my-calendar-core.php:1325
|
442 |
msgid ""
|
443 |
"Please note: I do keep records of those who have donated, <strong>but if "
|
444 |
"your donation came from somebody other than your account at this web site, "
|
445 |
"please note this in your message.</strong>"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: my-calendar-core.php:1327
|
449 |
msgid "From:"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: my-calendar-core.php:1330
|
453 |
msgid ""
|
454 |
"I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/"
|
455 |
"\">the FAQ for this plug-in</a>."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: my-calendar-core.php:1333
|
459 |
msgid ""
|
460 |
"I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to "
|
461 |
"help support this plug-in</a>."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: my-calendar-core.php:1336
|
465 |
msgid ""
|
466 |
"I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/"
|
467 |
"\">purchased the User's Guide</a>, but could not find an answer to this "
|
468 |
"question."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: my-calendar-core.php:1342
|
472 |
msgid "Send Support Request"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: my-calendar-core.php:1345
|
476 |
msgid ""
|
477 |
"The following additional information will be sent with your support request:"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: my-calendar-event-manager.php:104 my-calendar-settings.php:834
|
481 |
msgid ""
|
482 |
"My Calendar has identified that you have the Calendar plugin by Kieran "
|
483 |
"O'Shea installed. You can import those events and categories into the My "
|
484 |
"Calendar database. Would you like to import these events?"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: my-calendar-event-manager.php:111 my-calendar-settings.php:841
|
488 |
msgid "Import from Calendar"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: my-calendar-event-manager.php:116
|
492 |
msgid ""
|
493 |
"Although it is possible that this import could fail to import your events "
|
494 |
"correctly, it should not have any impact on your existing Calendar database. "
|
496 |
"\">please contact me</a>!"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: my-calendar-event-manager.php:163
|
500 |
msgid "%1$d events deleted successfully out of %2$d selected"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: my-calendar-event-manager.php:165 my-calendar-event-manager.php:320
|
504 |
+
#: my-calendar-event-manager.php:353 my-calendar-event-manager.php:370
|
505 |
+
#: my-calendar-event-manager.php:386 my-calendar-event-manager.php:1216
|
506 |
+
#: my-calendar-event-manager.php:1219 my-calendar-event-manager.php:1222
|
507 |
+
#: my-calendar-event-manager.php:1231 my-calendar-event-manager.php:1238
|
508 |
+
#: my-calendar-event-manager.php:1254 my-calendar-event-manager.php:1260
|
509 |
+
#: my-calendar-group-manager.php:58 my-calendar-group-manager.php:84
|
510 |
+
#: my-calendar-group-manager.php:148 my-calendar-group-manager.php:593
|
511 |
msgid "Error"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: my-calendar-event-manager.php:165
|
515 |
msgid "Your events have not been deleted. Please investigate."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: my-calendar-event-manager.php:177
|
519 |
msgid "Delete Event"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: my-calendar-event-manager.php:177
|
523 |
msgid "Are you sure you want to delete this event?"
|
524 |
msgstr ""
|
525 |
|
535 |
msgid "You do not have permission to reject that event."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: my-calendar-event-manager.php:261
|
539 |
msgid "Currently editing your local calendar"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: my-calendar-event-manager.php:263
|
543 |
msgid "Currently editing your central calendar"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: my-calendar-event-manager.php:271 my-calendar-group-manager.php:791
|
547 |
msgid "Edit Event"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: my-calendar-event-manager.php:274 my-calendar-event-manager.php:283
|
551 |
msgid "You must provide an event id in order to edit it"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: my-calendar-event-manager.php:280
|
555 |
msgid "Copy Event"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: my-calendar-event-manager.php:320
|
559 |
msgid "I'm sorry! I couldn't add that event to the database."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: my-calendar-event-manager.php:330
|
563 |
msgid "Event added. It will now show in your calendar."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: my-calendar-event-manager.php:351 my-calendar-group-manager.php:56
|
567 |
+
#: my-calendar-group-manager.php:146
|
568 |
msgid "View <a href=\"%s\">your calendar</a>."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: my-calendar-event-manager.php:353 my-calendar-group-manager.php:148
|
572 |
msgid "Your event was not updated."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: my-calendar-event-manager.php:355 my-calendar-group-manager.php:60
|
576 |
+
#: my-calendar-group-manager.php:86 my-calendar-group-manager.php:150
|
577 |
msgid "Nothing was changed in that update."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: my-calendar-event-manager.php:359 my-calendar-group-manager.php:62
|
581 |
+
#: my-calendar-group-manager.php:152
|
582 |
msgid "Event updated successfully"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: my-calendar-event-manager.php:363 my-calendar-group-manager.php:156
|
586 |
msgid "You do not have sufficient permissions to edit that event."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: my-calendar-event-manager.php:370
|
590 |
msgid "You can't delete an event if you haven't submitted an event id"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: my-calendar-event-manager.php:384
|
594 |
msgid "Event deleted successfully"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: my-calendar-event-manager.php:386
|
598 |
msgid ""
|
599 |
"Despite issuing a request to delete, the event still remains in the "
|
600 |
"database. Please investigate."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: my-calendar-event-manager.php:399 my-calendar-group-manager.php:168
|
604 |
msgid "Sorry! That's an invalid event key."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: my-calendar-event-manager.php:403 my-calendar-group-manager.php:172
|
608 |
msgid "Sorry! We couldn't find an event with that ID."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: my-calendar-event-manager.php:429
|
612 |
msgid "This event must be approved in order for it to appear on the calendar."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: my-calendar-event-manager.php:474
|
616 |
+
msgid "Add/Edit Event"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: my-calendar-event-manager.php:477 my-calendar-event-manager.php:868
|
620 |
msgid "Save Event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: my-calendar-event-manager.php:487
|
624 |
msgid ""
|
625 |
"There was an error acquiring information about this event instance. The date "
|
626 |
"for this event was not provided. <strong>You are editing this entire "
|
627 |
"recurrence set.</strong>"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: my-calendar-event-manager.php:491 my-calendar-group-manager.php:293
|
631 |
msgid "Enter your Event Information"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: my-calendar-event-manager.php:493 my-calendar-group-manager.php:295
|
635 |
msgid "Event Title"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: my-calendar-event-manager.php:493 my-calendar-event-manager.php:626
|
639 |
+
#: my-calendar-group-manager.php:295
|
640 |
msgid "(required)"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: my-calendar-event-manager.php:497
|
644 |
msgid "Publish"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: my-calendar-event-manager.php:497
|
648 |
msgid "You must approve this event to promote it to the calendar."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: my-calendar-event-manager.php:499
|
652 |
msgid "An administrator must approve your new event."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: my-calendar-event-manager.php:512
|
656 |
msgid "This event is not spam"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: my-calendar-event-manager.php:519 my-calendar-group-manager.php:309
|
660 |
msgid ""
|
661 |
"Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
|
662 |
"allowed)"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: my-calendar-event-manager.php:530 my-calendar-event-manager.php:543
|
666 |
+
#: my-calendar-group-manager.php:320 my-calendar-group-manager.php:328
|
667 |
msgid "This event's image:"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: my-calendar-event-manager.php:532 my-calendar-group-manager.php:322
|
671 |
msgid "Add an image:"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: my-calendar-event-manager.php:534
|
675 |
msgid "(URL to Event image)"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: my-calendar-event-manager.php:536 my-calendar-group-manager.php:322
|
679 |
msgid "Upload Image"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: my-calendar-event-manager.php:536 my-calendar-group-manager.php:322
|
683 |
msgid "Include your image URL or upload an image."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: my-calendar-event-manager.php:549 my-calendar-group-manager.php:334
|
687 |
msgid ""
|
688 |
"Event Short Description (<abbr title=\"hypertext markup language\">HTML</"
|
689 |
"abbr> allowed)"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: my-calendar-event-manager.php:553 my-calendar-group-manager.php:338
|
693 |
msgid "Event Host"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: my-calendar-event-manager.php:572 my-calendar-group-manager.php:357
|
697 |
msgid "Event Category"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: my-calendar-event-manager.php:597 my-calendar-group-manager.php:382
|
701 |
msgid "Event Link (Optional)"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: my-calendar-event-manager.php:597 my-calendar-group-manager.php:382
|
705 |
msgid "This link will expire when the event passes."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: my-calendar-event-manager.php:607 my-calendar-event-manager.php:609
|
709 |
msgid "Event Date and Time"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: my-calendar-event-manager.php:626
|
713 |
msgid "Start Date (YYYY-MM-DD)"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: my-calendar-event-manager.php:626
|
717 |
msgid "Time (hh:mm am/pm)"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: my-calendar-event-manager.php:635
|
721 |
msgid "End Date (YYYY-MM-DD)"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: my-calendar-event-manager.php:635
|
725 |
msgid "End Time (hh:mm am/pm)"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: my-calendar-event-manager.php:644
|
729 |
msgid "This is a multi-day event."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: my-calendar-event-manager.php:646
|
733 |
msgid ""
|
734 |
"Enter the beginning and ending dates/times for each occurrence of the event."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: my-calendar-event-manager.php:646
|
738 |
msgid ""
|
739 |
"If this is a multi-day event, it creates a single event with multiple dates/"
|
740 |
"times; otherwise it creates separate events for each occurrence."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: my-calendar-event-manager.php:649
|
744 |
msgid "Add another occurrence"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: my-calendar-event-manager.php:650
|
748 |
msgid "Remove last occurrence"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: my-calendar-event-manager.php:654
|
752 |
msgid "Current time difference from GMT is "
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: my-calendar-event-manager.php:654
|
756 |
msgid " hour(s)"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: my-calendar-event-manager.php:663 my-calendar-event-manager.php:666
|
760 |
msgid "Recurring Events"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: my-calendar-event-manager.php:669
|
764 |
msgid "Repeats for"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: my-calendar-event-manager.php:670
|
768 |
msgid "Units"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: my-calendar-event-manager.php:671 my-calendar-templates.php:126
|
772 |
msgid "Does not recur"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: my-calendar-event-manager.php:672 my-calendar-event-manager.php:1003
|
776 |
+
#: my-calendar-group-manager.php:765 my-calendar-templates.php:127
|
777 |
msgid "Daily"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: my-calendar-event-manager.php:673 my-calendar-templates.php:128
|
781 |
msgid "Daily, weekdays only"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: my-calendar-event-manager.php:674 my-calendar-event-manager.php:1005
|
785 |
+
#: my-calendar-group-manager.php:767 my-calendar-templates.php:129
|
786 |
msgid "Weekly"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: my-calendar-event-manager.php:675 my-calendar-templates.php:130
|
790 |
msgid "Bi-weekly"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: my-calendar-event-manager.php:676
|
794 |
msgid "Date of Month (e.g., the 24th of each month)"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: my-calendar-event-manager.php:677
|
798 |
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: my-calendar-event-manager.php:678 my-calendar-templates.php:133
|
802 |
msgid "Annually"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: my-calendar-event-manager.php:680
|
806 |
+
msgid ""
|
807 |
+
"Your entry is the number of events after the first occurrence of the event: "
|
808 |
+
"a recurrence of <em>2</em> means the event will happen three times."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: my-calendar-event-manager.php:681
|
812 |
msgid ""
|
813 |
+
"You can use \"0\" to indicate that a recurring event should reoccur "
|
814 |
+
"indefinitely. However, infinite recurrences will be removed in the next "
|
815 |
+
"major update of My Calendar."
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: my-calendar-event-manager.php:698
|
819 |
+
msgid "Event Registration Settings"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: my-calendar-event-manager.php:701 my-calendar-group-manager.php:396
|
823 |
msgid "Event Registration Status"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: my-calendar-event-manager.php:702 my-calendar-group-manager.php:397
|
827 |
msgid ""
|
828 |
"My Calendar does not manage event registrations. Use this for information "
|
829 |
"only."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: my-calendar-event-manager.php:704 my-calendar-group-manager.php:399
|
833 |
msgid "Open"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: my-calendar-event-manager.php:705 my-calendar-group-manager.php:400
|
837 |
msgid "Closed"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: my-calendar-event-manager.php:706 my-calendar-group-manager.php:401
|
841 |
msgid "Does not apply"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: my-calendar-event-manager.php:709 my-calendar-group-manager.php:404
|
845 |
msgid ""
|
846 |
"If this event recurs, it can only be registered for as a complete series."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: my-calendar-event-manager.php:726 my-calendar-event-manager.php:729
|
850 |
+
#: my-calendar-group-manager.php:421 my-calendar-group-manager.php:424
|
851 |
+
#: my-calendar-locations.php:131
|
852 |
msgid "Event Location"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: my-calendar-event-manager.php:736 my-calendar-group-manager.php:431
|
856 |
msgid "Choose a preset location:"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: my-calendar-event-manager.php:750 my-calendar-group-manager.php:445
|
860 |
msgid "Add recurring locations for later use."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: my-calendar-event-manager.php:759 my-calendar-group-manager.php:454
|
864 |
+
#: my-calendar-locations.php:133
|
865 |
msgid ""
|
866 |
"All location fields are optional: <em>insufficient information may result in "
|
867 |
"an inaccurate map</em>."
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: my-calendar-event-manager.php:762 my-calendar-group-manager.php:457
|
871 |
+
#: my-calendar-locations.php:136
|
872 |
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: my-calendar-event-manager.php:771 my-calendar-group-manager.php:460
|
876 |
+
#: my-calendar-locations.php:145
|
877 |
msgid "Street Address"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: my-calendar-event-manager.php:774 my-calendar-group-manager.php:463
|
881 |
+
#: my-calendar-locations.php:148
|
882 |
msgid "Street Address (2)"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: my-calendar-event-manager.php:777 my-calendar-group-manager.php:466
|
886 |
+
#: my-calendar-locations.php:151
|
887 |
msgid "Phone"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: my-calendar-event-manager.php:787 my-calendar-group-manager.php:469
|
891 |
+
#: my-calendar-locations.php:161 my-calendar-settings.php:808
|
892 |
msgid "State/Province"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: my-calendar-event-manager.php:821 my-calendar-group-manager.php:479
|
896 |
+
#: my-calendar-locations.php:193
|
897 |
msgid "Initial Zoom"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: my-calendar-event-manager.php:823 my-calendar-group-manager.php:481
|
901 |
+
#: my-calendar-locations.php:195
|
902 |
msgid "Neighborhood"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: my-calendar-event-manager.php:824 my-calendar-group-manager.php:482
|
906 |
+
#: my-calendar-locations.php:196
|
907 |
msgid "Small City"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: my-calendar-event-manager.php:825 my-calendar-group-manager.php:483
|
911 |
+
#: my-calendar-locations.php:197
|
912 |
msgid "Large City"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: my-calendar-event-manager.php:826 my-calendar-group-manager.php:484
|
916 |
+
#: my-calendar-locations.php:198
|
917 |
msgid "Greater Metro Area"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: my-calendar-event-manager.php:832 my-calendar-group-manager.php:490
|
921 |
msgid "Location URL"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: my-calendar-event-manager.php:835 my-calendar-group-manager.php:493
|
925 |
+
#: my-calendar-locations.php:207
|
926 |
msgid "GPS Coordinates (optional)"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: my-calendar-event-manager.php:837 my-calendar-group-manager.php:495
|
930 |
msgid ""
|
931 |
"If you supply GPS coordinates for your location, they will be used in place "
|
932 |
"of any other address information to provide your map link."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: my-calendar-event-manager.php:840 my-calendar-group-manager.php:498
|
936 |
+
#: my-calendar-locations.php:212
|
937 |
msgid "Latitude"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: my-calendar-event-manager.php:840 my-calendar-group-manager.php:498
|
941 |
+
#: my-calendar-locations.php:213
|
942 |
msgid "Longitude"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: my-calendar-event-manager.php:853
|
946 |
+
msgid "Special scheduling options"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: my-calendar-event-manager.php:856
|
950 |
msgid "Special Options"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: my-calendar-event-manager.php:858
|
954 |
msgid ""
|
955 |
"Cancel this event if it occurs on a date with an event in the Holidays "
|
956 |
"category"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: my-calendar-event-manager.php:861
|
960 |
msgid ""
|
961 |
"If this event recurs, and falls on the 5th week of the month in a month with "
|
962 |
"only four weeks, move it back one week."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: my-calendar-event-manager.php:945 my-calendar-settings.php:97
|
966 |
+
#: my-calendar-settings.php:673
|
967 |
msgid "Manage Events"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: my-calendar-event-manager.php:948 my-calendar-templates.php:214
|
971 |
msgid "Published"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: my-calendar-event-manager.php:949 my-calendar-templates.php:214
|
975 |
msgid "Reserved"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: my-calendar-event-manager.php:950
|
979 |
msgid "All"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: my-calendar-event-manager.php:964 my-calendar-group-manager.php:726
|
983 |
+
#: my-calendar-settings.php:318 my-calendar-widgets.php:40
|
984 |
+
#: my-calendar-widgets.php:126 my-calendar-widgets.php:584
|
|
|
|
|
|
|
|
|
985 |
msgid "Title"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: my-calendar-event-manager.php:965 my-calendar-group-manager.php:727
|
989 |
+
msgid "Where"
|
|
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: my-calendar-event-manager.php:966 my-calendar-group-manager.php:728
|
993 |
+
#: my-calendar-settings.php:319
|
994 |
msgid "Description"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: my-calendar-event-manager.php:967 my-calendar-group-manager.php:729
|
998 |
+
msgid "Starts"
|
|
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: my-calendar-event-manager.php:968 my-calendar-group-manager.php:730
|
1002 |
msgid "Recurs"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: my-calendar-event-manager.php:969 my-calendar-group-manager.php:731
|
1006 |
+
#: my-calendar-settings.php:321
|
|
|
1007 |
msgid "Author"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: my-calendar-event-manager.php:970 my-calendar-group-manager.php:732
|
1011 |
+
#: my-calendar-settings.php:322
|
1012 |
msgid "Category"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: my-calendar-event-manager.php:971
|
1016 |
msgid "Edit / Delete"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: my-calendar-event-manager.php:1002 my-calendar-group-manager.php:764
|
1020 |
msgid "Never"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: my-calendar-event-manager.php:1004 my-calendar-group-manager.php:766
|
1024 |
msgid "Weekdays"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: my-calendar-event-manager.php:1006 my-calendar-group-manager.php:768
|
1028 |
msgid "Bi-Weekly"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: my-calendar-event-manager.php:1007 my-calendar-group-manager.php:769
|
1032 |
msgid "Monthly (by date)"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: my-calendar-event-manager.php:1008 my-calendar-group-manager.php:770
|
1036 |
msgid "Monthly (by day)"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: my-calendar-event-manager.php:1009 my-calendar-group-manager.php:771
|
1040 |
msgid "Yearly"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: my-calendar-event-manager.php:1012 my-calendar-group-manager.php:774
|
1044 |
msgid "Forever"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: my-calendar-event-manager.php:1013 my-calendar-group-manager.php:775
|
1048 |
msgid "%d Times"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: my-calendar-event-manager.php:1028
|
1052 |
msgid "Copy"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: my-calendar-event-manager.php:1031 my-calendar-group-manager.php:793
|
1056 |
+
#: my-calendar-output.php:295
|
1057 |
msgid "Edit Group"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: my-calendar-event-manager.php:1034 my-calendar-group-manager.php:797
|
1061 |
msgid "Not editable."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: my-calendar-event-manager.php:1040
|
1065 |
msgid "Reject"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: my-calendar-event-manager.php:1042
|
1069 |
msgid "Approve"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: my-calendar-event-manager.php:1047
|
1073 |
msgid "Approved"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: my-calendar-event-manager.php:1049
|
1077 |
msgid "Rejected"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: my-calendar-event-manager.php:1051
|
1081 |
msgid "Awaiting Approval"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: my-calendar-event-manager.php:1062
|
1085 |
msgid "Delete checked events"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: my-calendar-event-manager.php:1073 my-calendar-group-manager.php:811
|
1089 |
msgid "There are no events in the database!"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: my-calendar-event-manager.php:1216
|
1093 |
msgid ""
|
1094 |
"Your event end date must be either after or the same as your event begin date"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: my-calendar-event-manager.php:1219
|
1098 |
msgid ""
|
1099 |
"Your date formatting is correct but one or more of your dates is invalid. "
|
1100 |
"Check for number of days in month and leap year related errors."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: my-calendar-event-manager.php:1222
|
1104 |
msgid "Both start and end dates must be in the format YYYY-MM-DD"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: my-calendar-event-manager.php:1231
|
1108 |
msgid "The time field must either be blank or be entered in the format hh:mm"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: my-calendar-event-manager.php:1238
|
1112 |
msgid ""
|
1113 |
"The end time field must either be blank or be entered in the format hh:mm"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: my-calendar-event-manager.php:1254 my-calendar-group-manager.php:593
|
1117 |
msgid "The event title must be between 1 and 255 characters in length."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: my-calendar-event-manager.php:1260
|
1121 |
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: my-calendar-group-manager.php:58
|
1125 |
msgid "Event not updated."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: my-calendar-group-manager.php:84
|
1129 |
msgid "Event not grouped."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: my-calendar-group-manager.php:88
|
1133 |
msgid "Event grouped successfully"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: my-calendar-group-manager.php:103 my-calendar-group-manager.php:290
|
1137 |
+
#: my-calendar-group-manager.php:508
|
1138 |
msgid "Edit Event Group"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: my-calendar-group-manager.php:106
|
1142 |
msgid "You must provide an event group id in order to edit it"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: my-calendar-group-manager.php:113 my-calendar-group-manager.php:287
|
1146 |
+
#: my-calendar.php:308
|
1147 |
msgid "Manage Event Groups"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: my-calendar-group-manager.php:114
|
1151 |
msgid ""
|
1152 |
"Grouped events can be edited simultaneously. When you choose a group of "
|
1153 |
"events to edit, the form will be pre-filled with the content applicable to "
|
1158 |
"changes applied. (All grouped events can also be edited individually.)"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: my-calendar-group-manager.php:115
|
1162 |
msgid ""
|
1163 |
"The following fields will never be changed when editing groups: registration "
|
1164 |
"availability, event publication status, spam flagging, event recurrence, "
|
1165 |
"event repetitions, and the start and end dates and times for that event."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: my-calendar-group-manager.php:215
|
1169 |
msgid ""
|
1170 |
"<strong>NOTE:</strong> The group editable fields for the events in this "
|
1171 |
"group do not match"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: my-calendar-group-manager.php:215
|
1175 |
msgid "The group editable fields for the events in this group match."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: my-calendar-group-manager.php:222
|
1179 |
msgid "Apply these changes to:"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: my-calendar-group-manager.php:233
|
1183 |
msgid "Check/Uncheck all"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: my-calendar-group-manager.php:235
|
1187 |
msgid "Remove checked events from this group"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: my-calendar-group-manager.php:253
|
1191 |
msgid "You must provide a group ID to edit groups"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: my-calendar-group-manager.php:303
|
1195 |
msgid "Selected dates are a single multi-day event."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: my-calendar-group-manager.php:393
|
1199 |
+
msgid "Event Registration Options"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: my-calendar-group-manager.php:708
|
1203 |
msgid "Create/Modify Groups"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: my-calendar-group-manager.php:709
|
1207 |
msgid "Check a set of events to group them for mass editing."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: my-calendar-group-manager.php:719 my-calendar-group-manager.php:805
|
1211 |
msgid "Group checked events for mass editing"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: my-calendar-group-manager.php:725
|
1215 |
msgid "Group"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: my-calendar-group-manager.php:795
|
1219 |
msgid "Ungrouped"
|
1220 |
msgstr ""
|
1221 |
|
1223 |
msgid "How to use My Calendar"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: my-calendar-help.php:13
|
1227 |
msgid "Shortcode Syntax"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: my-calendar-help.php:16
|
1231 |
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: my-calendar-help.php:18
|
1235 |
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: my-calendar-help.php:21
|
1239 |
msgid ""
|
1240 |
"This basic shortcode will show the calendar on a post or page including all "
|
1241 |
"categories and the category key, in a traditional month-by-month format."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: my-calendar-help.php:25
|
1245 |
+
msgid "The shortcode supports nine attributes:"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: my-calendar-help.php:28
|
1249 |
msgid ""
|
1250 |
"Names or IDs of categories included in this calendar, comma or pipe "
|
1251 |
"separated."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: my-calendar-help.php:29
|
1255 |
msgid ""
|
1256 |
"Either \"list\" or \"mini\" to show the list view or the mini calendar; "
|
1257 |
"exclude or any other value to show the main grid calendar."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: my-calendar-help.php:30
|
1261 |
msgid "Set as \"no\" to hide the category key."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: my-calendar-help.php:31
|
1265 |
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: my-calendar-help.php:32
|
1269 |
+
msgid "Set to \"no\" or \"yes\" to override the default settings."
|
1270 |
+
msgstr ""
|
1271 |
+
|
1272 |
+
#: my-calendar-help.php:33
|
1273 |
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: my-calendar-help.php:34
|
1277 |
msgid ""
|
1278 |
"Set to \"week\" to show a one week view or to \"day\" to show a single day "
|
1279 |
"view. Any other value will show a month view. (Day view shows as a list "
|
1280 |
"regardless of format setting.)"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: my-calendar-help.php:35
|
1284 |
msgid "The type of location data to restrict by."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: my-calendar-help.php:36
|
1288 |
msgid "The specific location information to filter to."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: my-calendar-help.php:39
|
1292 |
msgid ""
|
1293 |
"The main My Calendar short code can be generated from a button in your post "
|
1294 |
"and page editor. The mini calendar can also be accessed and configured as a "
|
1295 |
"widget."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: my-calendar-help.php:41
|
1299 |
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: my-calendar-help.php:44
|
1303 |
msgid ""
|
1304 |
"This shortcode displays the output of the Upcoming Events widget. The "
|
1305 |
"<code>before</code> and <code>after</code> attributes should be numbers; the "
|
1313 |
"events."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: my-calendar-help.php:48
|
1317 |
msgid ""
|
1318 |
"Predictably enough, this shortcode displays the output of the Today's Events "
|
1319 |
"widget, with three configurable attributes: category, template and fallback "
|
1320 |
"text."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: my-calendar-help.php:51
|
1324 |
msgid ""
|
1325 |
"Both Upcoming Events and Today's Events can also be configured using widgets."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: my-calendar-help.php:54
|
1329 |
msgid "Supplement Features (Locations filter, Categories filter)"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: my-calendar-help.php:58
|
1333 |
msgid ""
|
1334 |
"This shortcode produces a list of event locations, either as a list of links "
|
1335 |
"or as a select dropdown form. The <code>show</code> attribute can either be "
|
1342 |
"<code>region</code>."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: my-calendar-help.php:62
|
1346 |
msgid ""
|
1347 |
"If you want to display a list of locations in your database, use this "
|
1348 |
"shortcode. The <code>datatype</code> is the type of data displayed; all "
|
1351 |
"to display all available location information."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: my-calendar-help.php:66
|
1355 |
msgid ""
|
1356 |
"This shortcode produces a list of event categories, either as a list of "
|
1357 |
"links or as a select dropdown form. The <code>show</code> attribute can "
|
1358 |
"either be <code>list</code> or <code>form</code>."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: my-calendar-help.php:74
|
1362 |
msgid "Category Icons"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: my-calendar-help.php:77
|
1366 |
msgid ""
|
1367 |
"My Calendar is designed to manage multiple calendars. The basis for these "
|
1368 |
"calendars are categories; you can easily setup a calendar page which "
|
1372 |
"locations, etc."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: my-calendar-help.php:80
|
1376 |
msgid ""
|
1377 |
"The pre-installed category icons may not be especially useful for your needs "
|
1378 |
"or design. I'm assuming that you're going to upload your own icons -- all "
|
1381 |
"custom\" to avoid having them overwritten by upgrades."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: my-calendar-help.php:80
|
1385 |
msgid "Your icons folder is:"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: my-calendar-help.php:80
|
1389 |
msgid "You can alternately place icons in:"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: my-calendar-help.php:89
|
1393 |
msgid "Custom Styles"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: my-calendar-help.php:92
|
1397 |
msgid ""
|
1398 |
"My Calendar comes with four basic stylesheets. My Calendar will retain "
|
1399 |
"changes to these basic stylesheets on upgrade, but if you want to add an "
|
1401 |
"styles directory."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: my-calendar-help.php:95
|
1405 |
msgid "Your stylesheet directory is"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: my-calendar-help.php:96
|
1409 |
msgid "Your custom stylesheets directory is"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: my-calendar-help.php:99
|
1413 |
+
msgid ""
|
1414 |
+
"You can also add custom styles to your theme directory to provide print "
|
1415 |
+
"styles, mobile styles, and tablet styles. <code>mc-print.css</code>, "
|
1416 |
+
"<code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: my-calendar-help.php:107
|
1420 |
msgid "Widget Templating"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: my-calendar-help.php:110
|
1424 |
+
msgid ""
|
1425 |
+
"All template tags support two attributes: before=\"value\" and after=\"value"
|
1426 |
+
"\". The values of the attributes will be placed before and after the output "
|
1427 |
+
"value. These attribute values <strong>must</strong> be wrapped in double "
|
1428 |
+
"quotes."
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: my-calendar-help.php:113
|
1432 |
msgid ""
|
1433 |
+
"Date/Time template tags support the \"format\" attribute: format=\"M, Y\", "
|
1434 |
+
"where the value is a PHP formatted date string. Only <code>dtstart</code> "
|
1435 |
+
"and <code>dtend</code> include the full date/time information for formatting."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: my-calendar-help.php:116
|
1439 |
+
msgid "Example:"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: my-calendar-help.php:118 my-calendar.php:160
|
1443 |
msgid "Event Template Tags"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: my-calendar-help.php:121
|
1447 |
msgid "Displays the title of the event."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: my-calendar-help.php:124
|
1451 |
msgid ""
|
1452 |
"Displays title of the event as a link if a URL is present, or the title "
|
1453 |
"alone if no URL is available."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: my-calendar-help.php:127
|
1457 |
msgid "Displays the start time for the event."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: my-calendar-help.php:130
|
1461 |
msgid ""
|
1462 |
"Displays the start time for the event adjusted to the current user's time "
|
1463 |
"zone settings. Returns <code>{time}</code> if user settings are disabled or "
|
1464 |
"if the user has not selected a preferred time zone."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: my-calendar-help.php:133
|
1468 |
msgid ""
|
1469 |
"Displays the end time for the event adjusted to the current user's time zone "
|
1470 |
"settings. Returns <code>{endtime}</code> if user settings are disabled or if "
|
1471 |
"the user has not selected a preferred time zone."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: my-calendar-help.php:136
|
1475 |
msgid "Displays the date on which the event begins."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: my-calendar-help.php:139
|
1479 |
msgid "Displays the date on which the event ends."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: my-calendar-help.php:142
|
1483 |
msgid "Displays the time at which the event ends."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: my-calendar-help.php:145
|
1487 |
msgid ""
|
1488 |
"Displays the beginning date to the end date for events. Does not show end "
|
1489 |
"date if same as start date."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: my-calendar-help.php:148
|
1493 |
+
msgid "Timestamp for beginning of event."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: my-calendar-help.php:151
|
1497 |
+
msgid "Timestamp for end of event."
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: my-calendar-help.php:154
|
1501 |
msgid ""
|
1502 |
"For multi-day events displays an unordered list of dates and times for "
|
1503 |
"events in this group. Otherwise, beginning date/time."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: my-calendar-help.php:157
|
1507 |
msgid "Displays the WordPress author who posted the event."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: my-calendar-help.php:160
|
1511 |
msgid "Displays the name of the person assigned as host for the event."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: my-calendar-help.php:163
|
1515 |
msgid ""
|
1516 |
"Displays the email address of the person assigned as host for the event."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: my-calendar-help.php:166
|
1520 |
msgid "Displays the short version of the event description."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: my-calendar-help.php:169
|
1524 |
msgid "Displays short description without converting paragraphs."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: my-calendar-help.php:172
|
1528 |
msgid "Displays the description of the event."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: my-calendar-help.php:175
|
1532 |
msgid "Displays description without converting paragraphs."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: my-calendar-help.php:178 my-calendar.php:206
|
1536 |
msgid "Image associated with the event."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: my-calendar-help.php:181
|
1540 |
msgid "Displays the URL provided for the event."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: my-calendar-help.php:184
|
1544 |
msgid "Produces the URL to download an iCal formatted record for the event."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: my-calendar-help.php:187
|
1548 |
msgid ""
|
1549 |
"Produces a hyperlink to download an iCal formatted record for the event."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: my-calendar-help.php:190
|
1553 |
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: my-calendar-help.php:193
|
1557 |
msgid "Shows the number of repetitions of the event."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: my-calendar-help.php:196
|
1561 |
msgid ""
|
1562 |
"Provides a link to an auto-generated page containing all information on the "
|
1563 |
"given event."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: my-calendar-help.php:196
|
1567 |
msgid "Requires that the site URL has been provided on the Settings page"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: my-calendar-help.php:199
|
1571 |
msgid ""
|
1572 |
"Displays text indicating whether registration for the event is currently "
|
1573 |
"open or closed; displays nothing if that choice is selected in the event."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: my-calendar-help.php:202
|
1577 |
msgid ""
|
1578 |
"Displays the current status of the event: either \"Published\" or \"Reserved"
|
1579 |
"\" - primary used in email templates."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: my-calendar-help.php:204 my-calendar.php:220
|
1583 |
msgid "Location Template Tags"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: my-calendar-help.php:208
|
1587 |
msgid "Displays the name of the location of the event."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: my-calendar-help.php:211
|
1591 |
msgid "Displays the first line of the site address."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: my-calendar-help.php:214
|
1595 |
msgid "Displays the second line of the site address."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: my-calendar-help.php:217
|
1599 |
msgid "Displays the city for the location."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: my-calendar-help.php:220
|
1603 |
msgid "Displays the state for the location."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: my-calendar-help.php:223
|
1607 |
msgid "Displays the postcode for the location."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: my-calendar-help.php:226
|
1611 |
msgid "Shows the custom region entered for the location."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: my-calendar-help.php:229
|
1615 |
msgid "Displays the country for the event location."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: my-calendar-help.php:232
|
1619 |
msgid "Output the URL for the location link."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: my-calendar-help.php:235
|
1623 |
msgid ""
|
1624 |
"Output a hyperlink to the location's listed link with default link text."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: my-calendar-help.php:238
|
1628 |
msgid ""
|
1629 |
"Displays the event address in <a href=\"http://microformats.org/wiki/hcard"
|
1630 |
"\">hcard</a> format."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: my-calendar-help.php:241
|
1634 |
msgid ""
|
1635 |
"Displays a link to a Google Map of the event, if sufficient address "
|
1636 |
"information is available. If not, will be empty."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: my-calendar-help.php:243 my-calendar.php:256
|
1640 |
msgid "Category Template Tags"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: my-calendar-help.php:247
|
1644 |
msgid "Displays the name of the category the event is in."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: my-calendar-help.php:250
|
1648 |
msgid "Produces the address of the current event's category icon."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: my-calendar-help.php:253
|
1652 |
msgid "Produces the HTML for the current event's category icon."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: my-calendar-help.php:256
|
1656 |
msgid "Produces the hex code for the current event's category color."
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: my-calendar-help.php:259
|
1660 |
msgid ""
|
1661 |
"Displays the ID for\r\n"
|
1662 |
+
"\t\t the category the event is in."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: my-calendar-help.php:263
|
1666 |
msgid "Special use Template Tags"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: my-calendar-help.php:267
|
1670 |
msgid "A unique ID for the current instance of an event."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: my-calendar-help.php:270
|
1674 |
msgid ""
|
1675 |
"The ID for the event record associated with the current instance of an event."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: my-calendar-help.php:280
|
1679 |
msgid "Get Plug-in Support"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: my-calendar-help.php:285
|
1683 |
+
msgid "My Calendar support requests can only be sent by administrators."
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: my-calendar-help.php:292
|
1687 |
msgid "Helpful Information"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: my-calendar-help.php:295
|
1691 |
msgid ""
|
1692 |
"<strong>Uninstalling the plugin</strong>: Although the WordPress standard "
|
1693 |
"and expectation is for plug-ins to delete any custom database tables when "
|
1701 |
"however."
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: my-calendar-help.php:298
|
1705 |
msgid ""
|
1706 |
"<strong>Donations</strong>: I appreciate anything you can give. $2 may not "
|
1707 |
"seem like much, but it can really add up when thousands of people are using "
|
1717 |
msgid "My Calendar Default Location"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: my-calendar-locations.php:45
|
1721 |
msgid "Location added successfully"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: my-calendar-locations.php:47
|
1725 |
msgid "Location could not be added to database"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: my-calendar-locations.php:53
|
1729 |
msgid "Location deleted successfully"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: my-calendar-locations.php:55
|
1733 |
msgid "Location could not be deleted"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: my-calendar-locations.php:81
|
1737 |
msgid "Location could not be edited."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: my-calendar-locations.php:83
|
1741 |
msgid "Location was not changed."
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: my-calendar-locations.php:85
|
1745 |
msgid "Location edited successfully"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: my-calendar-locations.php:106
|
1749 |
msgid "Add New Location"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: my-calendar-locations.php:108
|
1753 |
msgid "Edit Location"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: my-calendar-locations.php:115
|
1757 |
msgid "Location Editor"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: my-calendar-locations.php:204
|
1761 |
msgid "Website"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: my-calendar-locations.php:209
|
1765 |
msgid ""
|
1766 |
"If you supply GPS coordinates for your location, they will be used in place "
|
1767 |
"of any other address information to pinpoint your location."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: my-calendar-locations.php:217
|
1771 |
msgid "Add Location"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: my-calendar-locations.php:225
|
1775 |
msgid "Add a New Location"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: my-calendar-locations.php:230 my-calendar.php:309
|
1779 |
msgid "Manage Locations"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: my-calendar-locations.php:291
|
1783 |
+
msgid "Location"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: my-calendar-locations.php:313
|
1787 |
msgid "There are no locations in the database yet!"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: my-calendar-locations.php:317
|
1791 |
msgid ""
|
1792 |
"Please note: editing or deleting locations stored for re-use will have no "
|
1793 |
"effect on any event previously scheduled at that location. The location "
|
1795 |
"locations into event records."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: my-calendar-output.php:178 my-calendar-output.php:290
|
|
|
|
|
|
|
|
|
1799 |
msgid "Close"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: my-calendar-output.php:187
|
1803 |
msgid "(%s in your time zone)"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: my-calendar-output.php:193
|
1807 |
msgid "Not Applicable"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: my-calendar-output.php:207
|
1811 |
msgid "Posted by"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: my-calendar-output.php:214 my-calendar-templates.php:216
|
1815 |
msgid "Details about"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: my-calendar-output.php:235 my-calendar-templates.php:166
|
1819 |
msgid "iCal"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: my-calendar-output.php:270
|
1823 |
msgid ""
|
1824 |
"This class is part of a series. You must register for the first event in "
|
1825 |
"this series to attend."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: my-calendar-output.php:275
|
1829 |
msgid "View full calendar"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: my-calendar-output.php:308
|
1833 |
msgid "Edit This Date"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: my-calendar-output.php:309
|
1837 |
msgid "Edit All"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: my-calendar-output.php:310
|
1841 |
msgid "Delete This Date"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: my-calendar-output.php:311
|
1845 |
msgid "Delete All"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: my-calendar-output.php:371
|
1849 |
msgid "Year"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: my-calendar-output.php:399
|
1853 |
msgid "Go"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: my-calendar-output.php:428
|
1857 |
msgid "Calendar: Print View"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: my-calendar-output.php:443
|
1861 |
msgid "Return to site"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: my-calendar-output.php:470
|
1865 |
msgid "View as Grid"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: my-calendar-output.php:474
|
1869 |
msgid "View as List"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: my-calendar-output.php:495
|
1873 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: my-calendar-output.php:496
|
1877 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: my-calendar-output.php:497
|
1881 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: my-calendar-output.php:498
|
1885 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: my-calendar-output.php:499
|
1889 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: my-calendar-output.php:500
|
1893 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: my-calendar-output.php:501
|
1897 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: my-calendar-output.php:506
|
1901 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: my-calendar-output.php:507
|
1905 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: my-calendar-output.php:508
|
1909 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: my-calendar-output.php:509
|
1913 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: my-calendar-output.php:510
|
1917 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: my-calendar-output.php:511
|
1921 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: my-calendar-output.php:512
|
1925 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: my-calendar-output.php:582
|
1929 |
msgid "Print View"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: my-calendar-output.php:614
|
1933 |
msgid "No events scheduled for today!"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: my-calendar-output.php:641
|
1937 |
msgid "and"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: my-calendar-output.php:663
|
1941 |
msgid "Events in"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: my-calendar-output.php:870
|
1945 |
msgid " and %d other event"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: my-calendar-output.php:872
|
1949 |
msgid " and %d other events"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: my-calendar-output.php:889
|
1953 |
msgid "There are no events scheduled during this period."
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: my-calendar-output.php:893
|
1957 |
msgid ""
|
1958 |
"Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: my-calendar-output.php:921
|
1962 |
msgid "Category Key"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: my-calendar-output.php:945
|
1966 |
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: my-calendar-output.php:946
|
1970 |
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: my-calendar-output.php:971
|
1974 |
msgid "Next events »"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: my-calendar-output.php:997 my-calendar-output.php:1041
|
1978 |
msgid "Week of "
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: my-calendar-output.php:1015
|
1982 |
msgid "« Previous events"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: my-calendar-output.php:1067
|
1986 |
msgid "(select to include)"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: my-calendar-output.php:1091 my-calendar-output.php:1094
|
1990 |
msgid "All Categories"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: my-calendar-output.php:1092
|
1994 |
msgid "Categories"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: my-calendar-output.php:1113 my-calendar-output.php:1298
|
1998 |
msgid "Submit"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: my-calendar-output.php:1239 my-calendar-output.php:1260
|
2002 |
msgid "Show all"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: my-calendar-output.php:1258
|
2006 |
msgid "Show events in:"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: my-calendar-settings.php:53
|
2010 |
msgid "Categories imported successfully."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: my-calendar-settings.php:53
|
2014 |
msgid "Categories not imported."
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: my-calendar-settings.php:54
|
2018 |
msgid "Events imported successfully."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: my-calendar-settings.php:54
|
2022 |
msgid "Events not imported."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: my-calendar-settings.php:79
|
2026 |
msgid "My Calendar Cache cleared"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: my-calendar-settings.php:90
|
2030 |
+
msgid "My Calendar Management Settings saved"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: my-calendar-settings.php:95 my-calendar-settings.php:671
|
2034 |
+
msgid "Add Events"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: my-calendar-settings.php:96 my-calendar-settings.php:672
|
2038 |
+
msgid "Approve Events"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: my-calendar-settings.php:98 my-calendar-settings.php:674
|
2042 |
+
msgid "Edit Categories"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: my-calendar-settings.php:99 my-calendar-settings.php:675
|
2046 |
+
msgid "Edit Locations"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: my-calendar-settings.php:100 my-calendar-settings.php:676
|
2050 |
+
msgid "Edit Styles"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: my-calendar-settings.php:101 my-calendar-settings.php:677
|
2054 |
+
msgid "Edit Behaviors"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: my-calendar-settings.php:102 my-calendar-settings.php:678
|
2058 |
+
msgid "Edit Templates"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#: my-calendar-settings.php:103 my-calendar-settings.php:679
|
2062 |
+
msgid "Edit Settings"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: my-calendar-settings.php:104 my-calendar-settings.php:680
|
2066 |
+
msgid "View Help"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: my-calendar-settings.php:118
|
2070 |
+
msgid "My Calendar Permissions Updated"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: my-calendar-settings.php:163
|
2074 |
+
msgid "Output Settings saved"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: my-calendar-settings.php:182
|
2078 |
+
msgid "Input Settings saved"
|
|
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: my-calendar-settings.php:190
|
2082 |
+
msgid "Multisite settings saved"
|
|
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: my-calendar-settings.php:209
|
2086 |
+
msgid "Custom text settings saved"
|
|
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: my-calendar-settings.php:221
|
2090 |
+
msgid "Email notice settings saved"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: my-calendar-settings.php:235
|
2094 |
+
msgid "User custom settings saved"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: my-calendar-settings.php:264
|
2098 |
+
msgid "My Calendar Options"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: my-calendar-settings.php:270
|
2102 |
+
msgid "My Calendar Settings"
|
|
|
|
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: my-calendar-settings.php:273
|
2106 |
+
msgid "Management"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: my-calendar-settings.php:274
|
2110 |
+
msgid "Customizable Text"
|
|
|
|
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: my-calendar-settings.php:275
|
2114 |
+
msgid "Output"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: my-calendar-settings.php:276
|
2118 |
+
msgid "Input"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: my-calendar-settings.php:278
|
2122 |
+
msgid "Multi-site"
|
|
|
|
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: my-calendar-settings.php:280
|
2126 |
+
msgid "Permissions"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: my-calendar-settings.php:281
|
2130 |
+
msgid "Email Notifications"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: my-calendar-settings.php:282
|
2134 |
+
msgid "Individual Users"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: my-calendar-settings.php:290
|
2138 |
+
msgid "Calendar Management Settings"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: my-calendar-settings.php:296
|
2142 |
+
msgid "Calendar Options: Management"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: my-calendar-settings.php:298
|
2146 |
+
msgid "Get data (events, categories and locations) from a remote database."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: my-calendar-settings.php:300
|
2150 |
+
msgid "Add this code to your theme's <code>functions.php</code> file:"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: my-calendar-settings.php:305
|
2154 |
+
msgid ""
|
2155 |
+
"You will need to allow remote connections from this site to the site hosting "
|
2156 |
+
"your My Calendar events. Replace the above placeholders with the host-site "
|
2157 |
+
"information. The two sites must have the same WP table prefix."
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: my-calendar-settings.php:308
|
2161 |
+
msgid "Enable approval options."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: my-calendar-settings.php:309
|
2165 |
+
msgid "Enable caching."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: my-calendar-settings.php:309
|
2169 |
+
msgid "<em>Cannot use caching while accessing a remote database.</em>"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: my-calendar-settings.php:311
|
2173 |
+
msgid ""
|
2174 |
+
"Clear current cache. (Necessary if you edit shortcodes to change displayed "
|
2175 |
+
"categories, for example.)"
|
2176 |
+
msgstr ""
|
2177 |
+
|
2178 |
+
#: my-calendar-settings.php:315
|
2179 |
+
msgid "Default Sort order for Admin Events List"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: my-calendar-settings.php:317
|
2183 |
+
msgid "Event ID"
|
2184 |
+
msgstr ""
|
2185 |
+
|
2186 |
+
#: my-calendar-settings.php:320
|
2187 |
+
msgid "Start Date"
|
2188 |
+
msgstr ""
|
2189 |
+
|
2190 |
+
#: my-calendar-settings.php:328
|
2191 |
+
msgid "Currently editing my local calendar"
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: my-calendar-settings.php:331
|
2195 |
+
msgid "Currently editing the network calendar"
|
2196 |
+
msgstr ""
|
2197 |
+
|
2198 |
+
#: my-calendar-settings.php:335
|
2199 |
+
msgid ""
|
2200 |
+
"You are currently working in the primary site for this network; your local "
|
2201 |
+
"calendar is also the global table."
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: my-calendar-settings.php:341
|
2205 |
+
msgid "Save Management Settings"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: my-calendar-settings.php:345
|
2209 |
+
msgid "My Calendar management settings are only available to administrators."
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: my-calendar-settings.php:353
|
2213 |
+
msgid "Calendar Text Settings"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: my-calendar-settings.php:358
|
2217 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: my-calendar-settings.php:361
|
2221 |
+
msgid "Label for events without a set time"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: my-calendar-settings.php:364
|
2225 |
+
msgid "Previous events link"
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: my-calendar-settings.php:364
|
2229 |
+
msgid "Previous Events"
|
2230 |
+
msgstr ""
|
2231 |
+
|
2232 |
+
#: my-calendar-settings.php:364 my-calendar-settings.php:367
|
2233 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
+
#: my-calendar-settings.php:367
|
2237 |
+
msgid "Next events link"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: my-calendar-settings.php:367
|
2241 |
+
msgid "Next Events"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: my-calendar-settings.php:370
|
2245 |
+
msgid "If events are open"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: my-calendar-settings.php:370
|
2249 |
+
msgid "Registration is open"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: my-calendar-settings.php:373
|
2253 |
msgid "If events are closed"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: my-calendar-settings.php:373
|
2257 |
msgid "Registration is closed"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: my-calendar-settings.php:376
|
2261 |
msgid "Week view caption:"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: my-calendar-settings.php:379
|
2265 |
+
msgid "Extended caption:"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: my-calendar-settings.php:379
|
2269 |
msgid ""
|
2270 |
+
"The calendar caption shows month and year in list and grid formats. This "
|
2271 |
+
"text is displayed after the month/year."
|
|
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: my-calendar-settings.php:384
|
2275 |
msgid "Save Custom Text Settings"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: my-calendar-settings.php:393
|
2279 |
msgid "Calendar Output Settings"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: my-calendar-settings.php:397 my-calendar-settings.php:574
|
2283 |
msgid "Save Output Settings"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: my-calendar-settings.php:399
|
2287 |
msgid "Calendar Options: Customize the Output of your Calendar"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: my-calendar-settings.php:401
|
2291 |
msgid "General Calendar Options"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: my-calendar-settings.php:404
|
2295 |
msgid ""
|
2296 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details "
|
2297 |
"links:"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: my-calendar-settings.php:405
|
2301 |
msgid ""
|
2302 |
"Can be any Page or Post which includes the <code>[my_calendar]</code> "
|
2303 |
"shortcode."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: my-calendar-settings.php:408
|
2307 |
msgid ""
|
2308 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's "
|
2309 |
"timeline links."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: my-calendar-settings.php:409
|
2313 |
msgid ""
|
2314 |
"Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> "
|
2315 |
"shortcode."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: my-calendar-settings.php:412
|
2319 |
msgid ""
|
2320 |
"Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar "
|
2321 |
"in-page anchors:"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: my-calendar-settings.php:413
|
2325 |
msgid ""
|
2326 |
"Can be any Page or Post with the <code>[my_calendar]</code> shortcode using "
|
2327 |
"format selected below"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: my-calendar-settings.php:415
|
2331 |
msgid "With above settings:"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: my-calendar-settings.php:417
|
2335 |
msgid "Open calendar links to event details URL"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: my-calendar-settings.php:417
|
2339 |
msgid "Replaces pop-up in grid view."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: my-calendar-settings.php:420
|
2343 |
msgid "Mini calendar widget date links to:"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: my-calendar-settings.php:421
|
2347 |
msgid "jQuery pop-up view"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: my-calendar-settings.php:422
|
2351 |
msgid "daily view page (above)"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: my-calendar-settings.php:423
|
2355 |
msgid "in-page anchor on main calendar page (list)"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: my-calendar-settings.php:424
|
2359 |
msgid "in-page anchor on main calendar page (grid)"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: my-calendar-settings.php:426
|
2363 |
msgid "Replaces pop-up in mini calendar"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: my-calendar-settings.php:429
|
2367 |
msgid "Time format"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: my-calendar-settings.php:429 my-calendar-settings.php:432
|
2371 |
+
#: my-calendar-settings.php:435
|
2372 |
msgid "Current:"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: my-calendar-settings.php:432
|
2376 |
msgid "Date in grid mode, week view"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: my-calendar-settings.php:435
|
2380 |
msgid "Date Format in other views"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: my-calendar-settings.php:438
|
2384 |
msgid ""
|
2385 |
"Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP "
|
2386 |
"<code>date()</code> function</a>. Save options to update sample output."
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: my-calendar-settings.php:441
|
2390 |
msgid "Show link to My Calendar RSS feed."
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: my-calendar-settings.php:441
|
2394 |
msgid "RSS feed shows recently added events."
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: my-calendar-settings.php:444
|
2398 |
msgid "Show link to iCal format download."
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: my-calendar-settings.php:444
|
2402 |
msgid "iCal outputs events occurring in the current calendar month."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: my-calendar-settings.php:447
|
2406 |
msgid "Show link to print-formatted view of calendar"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: my-calendar-settings.php:450
|
2410 |
msgid "Display a jumpbox for changing month and year quickly?"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: my-calendar-settings.php:457
|
2414 |
msgid "Grid Layout Options"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: my-calendar-settings.php:460
|
2418 |
msgid "Show Weekends on Calendar"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: my-calendar-settings.php:463
|
2422 |
+
msgid "Switch to list view on mobile devices"
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: my-calendar-settings.php:470
|
2426 |
msgid "List Layout Options"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: my-calendar-settings.php:473
|
2430 |
msgid "How many months of events to show at a time:"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: my-calendar-settings.php:476
|
2434 |
msgid ""
|
2435 |
"Show the first event's title and the number of events that day next to the "
|
2436 |
"date."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: my-calendar-settings.php:483
|
2440 |
msgid "Event Details Options"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: my-calendar-settings.php:486
|
2444 |
msgid "Event title template"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: my-calendar-settings.php:487 my-calendar-settings.php:497
|
2448 |
msgid "Templating Help"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: my-calendar-settings.php:487 my-calendar-settings.php:497
|
2452 |
msgid "All template tags are available."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: my-calendar-settings.php:490
|
2456 |
msgid "Event details link text"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: my-calendar-settings.php:492
|
2460 |
msgid ""
|
2461 |
+
"Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}"
|
2462 |
+
"</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
|
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: my-calendar-settings.php:495
|
2466 |
msgid "Event URL link text"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: my-calendar-settings.php:502
|
2470 |
msgid "Display author's name"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: my-calendar-settings.php:505
|
2474 |
msgid "Display link to single event iCal download."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: my-calendar-settings.php:508
|
2478 |
msgid "Hide category icons"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: my-calendar-settings.php:511
|
2482 |
msgid "Show Link to Google Map"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: my-calendar-settings.php:514
|
2486 |
msgid "Show Event Address"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: my-calendar-settings.php:517
|
2490 |
+
msgid "Show short description."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: my-calendar-settings.php:520
|
2494 |
+
msgid "Show full description."
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: my-calendar-settings.php:523
|
2498 |
+
msgid "Process WordPress shortcodes in description fields."
|
|
|
|
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: my-calendar-settings.php:526
|
2502 |
+
msgid "Show link to single-event details. (requires <a href='#mc_uri'>URL</a>)"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: my-calendar-settings.php:529
|
2506 |
+
msgid "Event links expire after event passes."
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: my-calendar-settings.php:532
|
2510 |
+
msgid "Show availability status"
|
2511 |
+
msgstr ""
|
2512 |
+
|
2513 |
+
#: my-calendar-settings.php:535
|
2514 |
msgid "Default usage of category colors."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: my-calendar-settings.php:536
|
2518 |
+
msgid "Event titles are category colors."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: my-calendar-settings.php:537
|
2522 |
+
msgid "Event titles have category color as background."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: my-calendar-settings.php:543
|
2526 |
msgid "Event Scheduling Options"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: my-calendar-settings.php:546
|
2530 |
msgid ""
|
2531 |
"Default setting for event input: If a recurring event is scheduled for a "
|
2532 |
"date which doesn't exist (such as the 5th Wednesday in February), move it "
|
2533 |
"back one week."
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: my-calendar-settings.php:549
|
2537 |
msgid "Holiday Category"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: my-calendar-settings.php:551
|
2541 |
msgid "None"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: my-calendar-settings.php:567
|
2545 |
msgid ""
|
2546 |
"Default setting for event input: If an event coincides with an event in the "
|
2547 |
"designated \"Holiday\" category, do not show the event."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: my-calendar-settings.php:583
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2551 |
msgid "Calendar Input Settings"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: my-calendar-settings.php:588
|
2555 |
msgid ""
|
2556 |
"Select which input fields will be available when adding or editing events."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: my-calendar-settings.php:593
|
2560 |
msgid "Show Event Location Dropdown Menu"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: my-calendar-settings.php:593
|
2564 |
msgid "Show Event Short Description field"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: my-calendar-settings.php:593
|
2568 |
msgid "Show Event Description Field"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: my-calendar-settings.php:593
|
2572 |
msgid "Show Event Category field"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: my-calendar-settings.php:593
|
2576 |
msgid "Show Event image field"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: my-calendar-settings.php:593
|
2580 |
msgid "Show Event Link field"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: my-calendar-settings.php:593
|
2584 |
msgid "Show Event Recurrence Options"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: my-calendar-settings.php:593
|
2588 |
msgid "Show Event registration options"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: my-calendar-settings.php:593
|
2592 |
msgid "Show Event location fields"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: my-calendar-settings.php:593
|
2596 |
msgid "Use HTML Editor in Event Description Field"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: my-calendar-settings.php:606
|
2600 |
msgid "Administrators see all input options"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: my-calendar-settings.php:611
|
2604 |
msgid "Save Input Settings"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: my-calendar-settings.php:621
|
2608 |
msgid "Multisite Settings (Network Administrators only)"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: my-calendar-settings.php:623
|
2612 |
msgid "Multisite support is a beta feature - use with caution."
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: my-calendar-settings.php:628
|
2616 |
msgid "Settings for WP MultiSite configurations"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: my-calendar-settings.php:629
|
2620 |
msgid ""
|
2621 |
"The central calendar is the calendar associated with the primary site in "
|
2622 |
"your WordPress Multisite network."
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: my-calendar-settings.php:631
|
2626 |
msgid "Site owners may only post to their local calendar"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: my-calendar-settings.php:632
|
2630 |
msgid "Site owners may only post to the central calendar"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: my-calendar-settings.php:633
|
2634 |
msgid "Site owners may manage either calendar"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: my-calendar-settings.php:635
|
2638 |
msgid ""
|
2639 |
"Changes only effect input permissions. Public-facing calendars will be "
|
2640 |
"unchanged."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: my-calendar-settings.php:637
|
2644 |
msgid "Sub-site calendars show events from their local calendar."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: my-calendar-settings.php:638
|
2648 |
msgid "Sub-site calendars show events from the central calendar."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: my-calendar-settings.php:642
|
2652 |
msgid "Save Multisite Settings"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: my-calendar-settings.php:652
|
2656 |
+
msgid "My Calendar Permissions"
|
2657 |
+
msgstr ""
|
2658 |
+
|
2659 |
+
#: my-calendar-settings.php:659
|
2660 |
+
msgid "Calendar Options: Permissions"
|
2661 |
+
msgstr ""
|
2662 |
+
|
2663 |
+
#: my-calendar-settings.php:694
|
2664 |
+
msgid "Save Permissions"
|
2665 |
+
msgstr ""
|
2666 |
+
|
2667 |
+
#: my-calendar-settings.php:698
|
2668 |
+
msgid "My Calendar permission settings are only available to administrators."
|
2669 |
+
msgstr ""
|
2670 |
+
|
2671 |
+
#: my-calendar-settings.php:706
|
2672 |
msgid "Calendar Email Settings"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: my-calendar-settings.php:711
|
2676 |
msgid "Calendar Options: Email Notifications"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: my-calendar-settings.php:715
|
2680 |
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: my-calendar-settings.php:718
|
2684 |
msgid "Notification messages are sent to: "
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: my-calendar-settings.php:721
|
2688 |
msgid "Email subject"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: my-calendar-settings.php:721
|
2692 |
msgid "New event Added"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: my-calendar-settings.php:724
|
2696 |
msgid "Message Body"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: my-calendar-settings.php:724
|
2700 |
msgid "New Event:"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: my-calendar-settings.php:725
|
2704 |
msgid "Shortcode Help"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: my-calendar-settings.php:725
|
2708 |
msgid "All template shortcodes are available."
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: my-calendar-settings.php:730
|
2712 |
msgid "Save Email Settings"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: my-calendar-settings.php:739
|
2716 |
msgid "Calendar User Settings"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: my-calendar-settings.php:747
|
2720 |
msgid "Settings which can be configured in registered user's accounts"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: my-calendar-settings.php:749
|
2724 |
msgid ""
|
2725 |
"Allow registered users to provide timezone or location presets in their user "
|
2726 |
"profiles."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: my-calendar-settings.php:761
|
2730 |
msgid "Timezone Settings"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: my-calendar-settings.php:762
|
2734 |
msgid ""
|
2735 |
"These settings provide registered users with the ability to select a time "
|
2736 |
"zone in their user profile. When they view your calendar, the times for "
|
2738 |
"the entered value."
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: my-calendar-settings.php:764
|
2742 |
msgid "Enable Timezone"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: my-calendar-settings.php:767
|
2746 |
msgid "Select Timezone Label"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: my-calendar-settings.php:770
|
2750 |
msgid "Timezone Options"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: my-calendar-settings.php:770 my-calendar-settings.php:794
|
2754 |
msgid "Value, Label; one per line"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: my-calendar-settings.php:782
|
2758 |
msgid "Location Settings"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: my-calendar-settings.php:783
|
2762 |
msgid ""
|
2763 |
"These settings provide registered users with the ability to select a "
|
2764 |
"location in their user profile. When they view your calendar, their initial "
|
2768 |
"to enable these settings for users to use the custom filtering options."
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: my-calendar-settings.php:785
|
2772 |
msgid "Enable Location"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: my-calendar-settings.php:788
|
2776 |
msgid "Use this location list as input control"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: my-calendar-settings.php:788
|
2780 |
msgid ""
|
2781 |
"The normal text entry for this location type will be replaced by a drop down "
|
2782 |
"containing these choices."
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: my-calendar-settings.php:791
|
2786 |
msgid "Select Location Label"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: my-calendar-settings.php:794
|
2790 |
msgid "Location Options"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: my-calendar-settings.php:804
|
2794 |
msgid "Location Type"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: my-calendar-settings.php:817
|
2798 |
msgid "Save User Settings"
|
2799 |
msgstr ""
|
2800 |
|
2801 |
+
#: my-calendar-settings.php:821
|
2802 |
+
msgid ""
|
2803 |
+
"Only users with the ability to edit user accounts may modify user settings."
|
2804 |
+
msgstr ""
|
2805 |
+
|
2806 |
+
#: my-calendar-styles.php:80
|
2807 |
msgid "The stylesheet has been updated."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: my-calendar-styles.php:80
|
2811 |
msgid "Write Error! Please verify write permissions on the style file."
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: my-calendar-styles.php:94
|
2815 |
msgid "Stylesheet reset to default."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: my-calendar-styles.php:97
|
2819 |
msgid "Style Settings Saved"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: my-calendar-styles.php:106
|
2823 |
msgid "New theme selected."
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: my-calendar-styles.php:122
|
2827 |
msgid ""
|
2828 |
"Sorry. The file you are looking for doesn't appear to exist. Please check "
|
2829 |
"your file name and location!"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: my-calendar-styles.php:130
|
2833 |
msgid "My Calendar Styles"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: my-calendar-styles.php:136
|
2837 |
msgid "Calendar Style Settings"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: my-calendar-styles.php:144
|
2841 |
msgid "Select My Calendar Theme"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: my-calendar-styles.php:152
|
2845 |
msgid "Your Custom Stylesheets"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: my-calendar-styles.php:161
|
2849 |
msgid "Installed Stylesheets"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: my-calendar-styles.php:169
|
2853 |
msgid "Choose Style"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: my-calendar-styles.php:182
|
2857 |
msgid ""
|
2858 |
"My Calendar was unable to update your CSS files during the upgrade. Please "
|
2859 |
"check your file permissions if you wish to edit your My Calendar styles. "
|
2861 |
"be deleted from the database when you successfully update your stylesheet."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: my-calendar-styles.php:190
|
2865 |
msgid "CSS Style Options"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: my-calendar-styles.php:192
|
2869 |
msgid "Apply CSS only on these pages (comma separated page IDs)"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: my-calendar-styles.php:195
|
2873 |
msgid "Restore My Calendar stylesheet"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: my-calendar-styles.php:195
|
2877 |
msgid "Disable My Calendar Stylesheet"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: my-calendar-styles.php:198
|
2881 |
msgid "Edit the stylesheet for My Calendar"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: my-calendar-styles.php:211
|
2885 |
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: my-calendar-styles.php:215
|
2889 |
msgid "There have been updates to the stylesheet."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: my-calendar-styles.php:215
|
2893 |
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: my-calendar-styles.php:219
|
2897 |
msgid "Your stylesheet matches that included with My Calendar."
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: my-calendar-styles.php:227
|
2901 |
msgid ""
|
2902 |
"Resetting your stylesheet will set your stylesheet to the version of that "
|
2903 |
"style currently distributed with the plug-in."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: my-calendar-templates.php:52
|
|
|
|
|
|
|
|
|
2907 |
msgid "Map<span> to %s</span>"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: my-calendar-templates.php:73 my-calendar-templates.php:122
|
2911 |
msgid "Visit web site<span>: %s</span>"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: my-calendar-templates.php:131
|
2915 |
msgid "Date of Month (the %s of each month)"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: my-calendar-templates.php:132
|
2919 |
msgid "Day of Month (the %s %s of each month)"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: my-calendar-templating.php:19
|
2923 |
msgid "Grid Output Template saved"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: my-calendar-templating.php:31
|
2927 |
msgid "List Output Template saved"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: my-calendar-templating.php:42
|
2931 |
msgid "Mini Output Template saved"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: my-calendar-templating.php:53
|
2935 |
msgid "Event Details Template saved"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: my-calendar-templating.php:69
|
2939 |
msgid "My Calendar Information Templates"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: my-calendar-templating.php:74
|
2943 |
+
msgid ""
|
2944 |
+
"Advanced users may customize the HTML template for each event. This page "
|
2945 |
+
"lets you create a customized view of your events in each context. All "
|
2946 |
+
"available template tags are documented on the Help page. These default "
|
2947 |
+
"templates are based on the default views with all output enabled. "
|
2948 |
+
"<strong>Custom templates will override any other output rules in your "
|
2949 |
+
"settings.</strong>"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: my-calendar-templating.php:74
|
2953 |
+
msgid "Templates Help"
|
|
|
2954 |
msgstr ""
|
2955 |
|
2956 |
#: my-calendar-templating.php:79
|
2957 |
+
msgid "My Calendar: Grid Event Template"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: my-calendar-templating.php:84
|
2961 |
+
msgid "Use this grid event template"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: my-calendar-templating.php:87
|
2965 |
+
msgid "Your custom template for events in the calendar grid output."
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: my-calendar-templating.php:90
|
2969 |
+
msgid "Save Grid Template"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: my-calendar-templating.php:99
|
2973 |
+
msgid "My Calendar: List Event Template"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: my-calendar-templating.php:104
|
2977 |
+
msgid "Use this list event template"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: my-calendar-templating.php:107
|
2981 |
+
msgid "Your custom template for events in calendar list output."
|
|
|
|
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: my-calendar-templating.php:110
|
2985 |
+
msgid "Save List Template"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: my-calendar-templating.php:119
|
2989 |
+
msgid "My Calendar: Mini Calendar Template"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: my-calendar-templating.php:124
|
2993 |
+
msgid "Use this mini event template"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: my-calendar-templating.php:127
|
2997 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: my-calendar-templating.php:130
|
3001 |
+
msgid "Save Mini Template"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: my-calendar-templating.php:139
|
3005 |
+
msgid "My Calendar: Event Details Page Template"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: my-calendar-templating.php:144
|
3009 |
+
msgid "Use this details template"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: my-calendar-templating.php:147
|
3013 |
+
msgid "Your custom template for events on the event details page."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: my-calendar-templating.php:150
|
3017 |
+
msgid "Save Details Template"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: my-calendar-upgrade-db.php:19 my-calendar-upgrade-db.php:27
|
3021 |
+
msgid "The My Calendar database needs to be updated."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: my-calendar-upgrade-db.php:20 my-calendar-upgrade-db.php:40
|
3025 |
+
msgid "Update now"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: my-calendar-upgrade-db.php:27
|
3029 |
+
msgid "Update now."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: my-calendar-upgrade-db.php:39
|
3033 |
+
msgid ""
|
3034 |
+
"You haven't entered any events, so My Calendar can't tell whether your "
|
3035 |
+
"database is up to date. If you can't add events, upgrade your database!"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: my-calendar-upgrade-db.php:49
|
3039 |
+
msgid "My Calendar Database is updated."
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: my-calendar-user.php:36
|
3043 |
+
msgid "My Calendar User Settings"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: my-calendar-widgets.php:5
|
3047 |
+
msgid "My Calendar: Today's Events"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: my-calendar-widgets.php:44 my-calendar-widgets.php:130
|
3051 |
+
msgid "Template"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: my-calendar-widgets.php:47
|
3055 |
+
msgid "Add calendar URL to use this option."
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: my-calendar-widgets.php:49 my-calendar-widgets.php:138
|
3059 |
+
msgid "Link widget title to calendar:"
|
|
|
|
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: my-calendar-widgets.php:50 my-calendar-widgets.php:139
|
3063 |
+
msgid "Not Linked"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: my-calendar-widgets.php:51 my-calendar-widgets.php:140
|
3067 |
+
msgid "Linked"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: my-calendar-widgets.php:55
|
3071 |
+
msgid "Show this text if there are no events today:"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: my-calendar-widgets.php:59 my-calendar-widgets.php:171
|
3075 |
+
#: my-calendar-widgets.php:588
|
3076 |
+
msgid "Category or categories to display:"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: my-calendar-widgets.php:80
|
3080 |
+
msgid "My Calendar: Upcoming Events"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: my-calendar-widgets.php:134
|
3084 |
+
msgid "Widget Options"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: my-calendar-widgets.php:145
|
3088 |
+
msgid "Display upcoming events by:"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: my-calendar-widgets.php:146
|
3092 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: my-calendar-widgets.php:147
|
3096 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: my-calendar-widgets.php:151
|
3100 |
+
msgid "Skip the first <em>n</em> events"
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: my-calendar-widgets.php:154
|
3104 |
+
msgid "Events sort order:"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: my-calendar-widgets.php:155
|
3108 |
+
msgid "Ascending (near to far)"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: my-calendar-widgets.php:156
|
3112 |
+
msgid "Descending (far to near)"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: my-calendar-widgets.php:164
|
3116 |
+
msgid "Include today's events"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: my-calendar-widgets.php:167
|
3120 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: my-calendar-widgets.php:541
|
3124 |
+
msgid "My Calendar: Mini Calendar"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: my-calendar-widgets.php:563
|
3128 |
+
msgid "Calendar"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: my-calendar-widgets.php:592
|
3132 |
+
msgid "Show Next/Previous Navigation:"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: my-calendar-widgets.php:604
|
3136 |
+
msgid "Show Category Key:"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: my-calendar-widgets.php:610
|
3140 |
+
msgid "Mini-Calendar Timespan:"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: my-calendar.php:128
|
3144 |
+
msgid "Support This Plug-in"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: my-calendar.php:130
|
3148 |
+
msgid "Help me help you:"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: my-calendar.php:130
|
3152 |
+
msgid "Buy the My Calendar User's Guide"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
#: my-calendar.php:131
|
3156 |
+
msgid ""
|
3157 |
+
"<strong>Or make a donation today!</strong> Every donation counts - donate "
|
3158 |
+
"$2, $10, or $100 and help me keep this plug-in running!"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: my-calendar.php:136 my-calendar.php:139
|
3162 |
+
msgid "Make a Donation"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: my-calendar.php:146
|
3166 |
+
msgid "Get Help"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: my-calendar.php:149
|
3170 |
+
msgid "Get Support"
|
|
|
|
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: my-calendar.php:150 my-calendar.php:315
|
3174 |
+
msgid "My Calendar Help"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: my-calendar.php:151
|
3178 |
+
msgid "Check out my other plug-ins"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: my-calendar.php:152
|
3182 |
+
msgid "Rate this plug-in 5 stars!"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: my-calendar.php:164
|
3186 |
+
msgid "Title of the event."
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: my-calendar.php:167
|
3190 |
+
msgid ""
|
3191 |
+
"Title of the event as a link if a URL is present, or the title alone if not."
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: my-calendar.php:170
|
3195 |
+
msgid "Start time for the event."
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: my-calendar.php:173
|
3199 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: my-calendar.php:176
|
3203 |
+
msgid "Date on which the event begins."
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: my-calendar.php:179
|
3207 |
+
msgid "Date on which the event ends."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: my-calendar.php:182
|
3211 |
+
msgid "Time at which the event ends."
|
|
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: my-calendar.php:185
|
3215 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: my-calendar.php:188
|
3219 |
+
msgid ""
|
3220 |
+
"Multi-day events: an unordered list of dates/times. Otherwise, beginning "
|
3221 |
+
"date/time."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: my-calendar.php:191
|
3225 |
+
msgid "Author who posted the event."
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: my-calendar.php:194
|
3229 |
+
msgid "Name of the assigned host for the event."
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: my-calendar.php:197
|
3233 |
+
msgid "Email for the person assigned as host."
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: my-calendar.php:200
|
3237 |
+
msgid "Short event description."
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: my-calendar.php:203
|
3241 |
+
msgid "Description of the event."
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: my-calendar.php:209
|
3245 |
+
msgid "URL provided for the event."
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: my-calendar.php:212
|
3249 |
+
msgid "Link to an auto-generated page containing information about the event."
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: my-calendar.php:215
|
3253 |
+
msgid "Whether event is currently open for registration."
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: my-calendar.php:218
|
3257 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: my-calendar.php:224
|
3261 |
+
msgid "Name of the location of the event."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: my-calendar.php:227
|
3265 |
+
msgid "First line of the site address."
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: my-calendar.php:230
|
3269 |
+
msgid "Second line of the site address."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: my-calendar.php:233
|
3273 |
+
msgid "City."
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: my-calendar.php:236
|
3277 |
+
msgid "State."
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: my-calendar.php:239
|
3281 |
+
msgid "Postal code/zip code."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: my-calendar.php:242
|
3285 |
+
msgid "Custom region."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: my-calendar.php:245
|
3289 |
+
msgid "Country for the event location."
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: my-calendar.php:248
|
3293 |
+
msgid "Output the URL for the location."
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: my-calendar.php:251
|
3297 |
+
msgid ""
|
3298 |
+
"Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> "
|
3299 |
+
"format."
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: my-calendar.php:254
|
3303 |
+
msgid "Link to Google Map to the event, if address information is available."
|
3304 |
+
msgstr ""
|
3305 |
+
|
3306 |
+
#: my-calendar.php:260
|
3307 |
+
msgid "Name of the category of the event."
|
3308 |
+
msgstr ""
|
3309 |
+
|
3310 |
+
#: my-calendar.php:263
|
3311 |
+
msgid "URL for the event's category icon."
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: my-calendar.php:266
|
3315 |
+
msgid "Hex code for the event's category color."
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: my-calendar.php:269
|
3319 |
+
msgid "ID of the category of the event."
|
3320 |
+
msgstr ""
|
3321 |
+
|
3322 |
+
#. #-#-#-#-# plugin.pot (My Calendar 1.11.0) #-#-#-#-#
|
3323 |
#. Plugin Name of the plugin/theme
|
3324 |
+
#: my-calendar.php:289 my-calendar.php:291 my-calendar.php:296
|
3325 |
+
#: my-calendar.php:298
|
3326 |
msgid "My Calendar"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: my-calendar.php:306
|
3330 |
msgid "Add/Edit Events"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: my-calendar.php:312
|
3334 |
msgid "Style Editor"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: my-calendar.php:313
|
3338 |
msgid "Behavior Editor"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: my-calendar.php:314
|
3342 |
msgid "Template Editor"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: my-calendar.php:318
|
3346 |
msgid "My Calendar Pro Settings"
|
3347 |
msgstr ""
|
3348 |
|
mc-admin.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
font-size: .8em;
|
3 |
margin: 5px -5px -5px;
|
4 |
padding: 2px;
|
@@ -11,9 +11,9 @@ border-bottom-right-radius: 8px;
|
|
11 |
border-bottom-left-radius: 8px;
|
12 |
border-top: 1px solid #ddd;
|
13 |
}
|
14 |
-
|
15 |
margin-bottom: 5px;
|
16 |
}
|
17 |
-
|
18 |
-
|
19 |
-
|
1 |
+
.mc_edit_links {
|
2 |
font-size: .8em;
|
3 |
margin: 5px -5px -5px;
|
4 |
padding: 2px;
|
11 |
border-bottom-left-radius: 8px;
|
12 |
border-top: 1px solid #ddd;
|
13 |
}
|
14 |
+
.mini .mc_edit_links , .list .mc_edit_links {
|
15 |
margin-bottom: 5px;
|
16 |
}
|
17 |
+
.mc_edit_links ul {margin: 0 20px;}
|
18 |
+
.list .mc_edit_links li {padding: 0;list-style-type: disc;}
|
19 |
+
.list .mc_edit_links a {display: block!important;}
|
mc-styles.css
CHANGED
@@ -1,58 +1,14 @@
|
|
1 |
-
.jd-my-calendar {margin-right: 180px!important;}
|
2 |
-
.templating .jd-my-calendar {margin-right: 290px!important;}
|
3 |
#my-calendar legend {font-weight: 700;font-size: 1em;}
|
4 |
-
|
5 |
-
.
|
6 |
-
width: 150px;
|
7 |
-
border: 1px solid #666;
|
8 |
-
padding: 10px;
|
9 |
-
margin-left: 10px;
|
10 |
-
margin-bottom: 10px;
|
11 |
-
-moz-border-radius: 5px;
|
12 |
-
-webkit-border-radius: 5px;
|
13 |
-
border-radius: 5px;
|
14 |
-
-moz-box-shadow: 2px 2px 10px #ccc;
|
15 |
-
-webkit-box-shadow: 2px 2px 10px #ccc;
|
16 |
-
box-shadow: 2px 2px 10px #ccc;
|
17 |
-
background: #ffa;
|
18 |
-
text-align: center;
|
19 |
-
}
|
20 |
-
.mcbuy {font-size: 1.4em; line-height: 1.4;}
|
21 |
.templating .resources {width: 250px; }
|
22 |
.resources form {margin: 0!important;}
|
23 |
#category_icon option {padding: 5px 0 5px 24px;}
|
24 |
-
#my-calendar-admin-table .delete {
|
25 |
-
background: #
|
26 |
-
|
27 |
-
padding: 2px 8px;
|
28 |
-
font-size: .8em;
|
29 |
-
border: 1px solid #fff;
|
30 |
-
-moz-border-radius: 8px;
|
31 |
-
-webkit-border-radius: 8px;
|
32 |
-
border-radius: 8px;
|
33 |
-
text-decoration: none;
|
34 |
-
}
|
35 |
-
#my-calendar-admin-table .delete:hover, #my-calendar-admin-table .delete:focus {border: 1px solid #999;background: #b11;}
|
36 |
-
.import {
|
37 |
-
background: #ffa;
|
38 |
-
padding: 5px 10px;
|
39 |
-
border: 1px solid #aaa;
|
40 |
-
-moz-border-radius: 5px;
|
41 |
-
-webkit-border-radius: 5px;
|
42 |
-
border-radius: 5px;
|
43 |
-
margin: 15px 0;
|
44 |
-
}
|
45 |
.n4 {width: 42px;}
|
46 |
-
|
47 |
-
.category-color {
|
48 |
-
width: 1.2em;
|
49 |
-
height: 1.2em;
|
50 |
-
display: inline-block;
|
51 |
-
-moz-border-radius: 3px;
|
52 |
-
-webkit-border-radius: 3px;
|
53 |
-
border-radius: 3px;
|
54 |
-
border: 1px solid #000;
|
55 |
-
}
|
56 |
.jd-my-calendar .postbox h3 {cursor: text;}
|
57 |
.active-link {font-weight:700;text-decoration: underline;}
|
58 |
ul.links li {float: left;margin: 0 5px 10px;font-size: .9em;}
|
@@ -60,70 +16,31 @@ ul.links li {float: left;margin: 0 5px 10px;font-size: .9em;}
|
|
60 |
#toggle {height: 2em;}
|
61 |
#toggle li {float: left;margin-right: 5px;}
|
62 |
.spam {background: #ffa;}
|
63 |
-
#customstyles li {
|
64 |
-
font-size: .9em;
|
65 |
-
margin: 5px 0 5px 30px;
|
66 |
-
list-style-type: disc;
|
67 |
-
}
|
68 |
.jd-my-calendar legend {position: absolute;left: -999em;}
|
69 |
-
.jd-my-calendar fieldset fieldset legend {
|
70 |
-
position: static;
|
71 |
-
font-weight: 700;
|
72 |
-
padding: 5px;
|
73 |
-
background: #eee;
|
74 |
-
width: 99%;
|
75 |
-
}
|
76 |
.jd-my-calendar fieldset fieldset {margin: 0 0 20px 0;padding-top: 2px;}
|
77 |
#mceditor {border: 1px solid #ddd;margin: 0 0 5px;}
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
font-weight: 700;
|
82 |
-
font-size: 1em;
|
83 |
-
width: 9em;
|
84 |
-
}
|
85 |
-
#templates dd {margin-left: 10em;padding: 2px 1px;}
|
86 |
-
.mc_template_tags {
|
87 |
-
float: right;
|
88 |
-
clear: right;
|
89 |
-
width: 270px;
|
90 |
-
font-size: .9em;
|
91 |
-
}
|
92 |
.clonedInput {margin-bottom: 10px;border-bottom: 1px solid #ddd;}
|
93 |
-
#my-calendar .apply {
|
94 |
-
padding: 1px 5px 0;
|
95 |
-
margin: 0 -5px;
|
96 |
-
border-radius: 3px;
|
97 |
-
box-shadow: 2px 2px 3px #aaa;
|
98 |
-
background: #ffd;
|
99 |
-
}
|
100 |
-
#my-calendar .apply ul {
|
101 |
-
-moz-column-count: 3;
|
102 |
-
-moz-column-gap: 20px;
|
103 |
-
-webkit-column-count: 3;
|
104 |
-
-webkit-column-gap: 20px;
|
105 |
-
column-count: 3;
|
106 |
-
column-gap: 20px;
|
107 |
-
}
|
108 |
#my-calendar .apply legend {background: #ffd;padding: 2px 0;}
|
109 |
-
#my-calendar .apply .warning {
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
border: 1px solid #333;
|
114 |
-
}
|
115 |
-
#my-calendar .break ul {
|
116 |
-
padding: 10px 10px 0;
|
117 |
-
margin-right: 180px;
|
118 |
-
-moz-column-count: 3;
|
119 |
-
-moz-column-gap: 20px;
|
120 |
-
-webkit-column-count: 3;
|
121 |
-
-webkit-column-gap: 20px;
|
122 |
-
column-count: 3;
|
123 |
-
column-gap: 20px;
|
124 |
-
}
|
125 |
-
.event_image {float:right;}
|
126 |
.event_image img {margin-top: 2px;}
|
127 |
.mc_support {font-family:'Courier New';background:#fff;padding:5px;}
|
128 |
-
.jd-my-calendar .button-primary { position: absolute; top:
|
129 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#my-calendar legend {font-weight: 700;font-size: 1em;}
|
2 |
+
.mcbuy {font-size: 1.4em; line-height: 1.5;}
|
3 |
+
.mcd { text-align: center; font-size: 1.2em;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
.templating .resources {width: 250px; }
|
5 |
.resources form {margin: 0!important;}
|
6 |
#category_icon option {padding: 5px 0 5px 24px;}
|
7 |
+
#my-calendar-admin-table .delete {background: #a00;color: #fff;padding: 2px 6px;font-size: .8em;border: 1px solid #700;-moz-border-radius: 8px;-webkit-border-radius: 8px;border-radius: 8px;text-decoration: none;}
|
8 |
+
#my-calendar-admin-table .delete:hover, #my-calendar-admin-table .delete:focus {border: 1px solid #000;background: #c11; text-decoration: underline;}
|
9 |
+
.import {background: #ffa;padding: 5px 10px;border: 1px solid #aaa;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;margin: 15px 0;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
.n4 {width: 42px;}
|
11 |
+
.category-color {width: 1.2em;height: 1.2em;display: inline-block;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;border: 1px solid #000;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
.jd-my-calendar .postbox h3 {cursor: text;}
|
13 |
.active-link {font-weight:700;text-decoration: underline;}
|
14 |
ul.links li {float: left;margin: 0 5px 10px;font-size: .9em;}
|
16 |
#toggle {height: 2em;}
|
17 |
#toggle li {float: left;margin-right: 5px;}
|
18 |
.spam {background: #ffa;}
|
|
|
|
|
|
|
|
|
|
|
19 |
.jd-my-calendar legend {position: absolute;left: -999em;}
|
20 |
+
.jd-my-calendar fieldset fieldset legend {position: static;font-weight: 700;width: 99%;}
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
.jd-my-calendar fieldset fieldset {margin: 0 0 20px 0;padding-top: 2px;}
|
22 |
#mceditor {border: 1px solid #ddd;margin: 0 0 5px;}
|
23 |
+
.mc_template_tags dt {font-weight: 700;}
|
24 |
+
.mc_template_tags dd {margin-left: 0; padding: 2px 1px;}
|
25 |
+
.mc_template_tags {clear: right;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
.clonedInput {margin-bottom: 10px;border-bottom: 1px solid #ddd;}
|
27 |
+
#my-calendar .apply {padding: 1px 5px 0;margin: 0 -5px;border-radius: 3px;box-shadow: 2px 2px 3px #aaa;background: #ffd;}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
#my-calendar .apply legend {background: #ffd;padding: 2px 0;}
|
29 |
+
#my-calendar .apply .warning {background: #ffe;color: #a00;padding: 3px;border: 1px solid #333;}
|
30 |
+
#my-calendar .break ul {padding: 10px 10px 0;margin-right: 180px;}
|
31 |
+
#my-calendar .columns, .jd-my-calendar .columns {-moz-column-count: 3;-moz-column-gap: 20px;-webkit-column-count: 3;-webkit-column-gap: 20px;column-count: 3;column-gap: 20px;}
|
32 |
+
.jd-my-calendar .event_image img { max-width: 480px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
.event_image img {margin-top: 2px;}
|
34 |
.mc_support {font-family:'Courier New';background:#fff;padding:5px;}
|
35 |
+
.jd-my-calendar .button-primary { position: absolute; top: -24px; right: 10px;}
|
36 |
+
.jd-my-calendar .button-primary.group { top: -40px; }
|
37 |
+
.template-editor, .style-editor { width: 98%; }
|
38 |
+
.roles { width: 24%; float: left; min-height: 300px; }
|
39 |
+
.mc-settings li { display: inline; padding: 3px; margin: 3px; }
|
40 |
+
.jd-my-calendar .postbox { margin: 10px 10px 0 0;}
|
41 |
+
.jd-my-calendar .postbox .inside { overflow: visible!important; } /* some plugins change this, but I need it at WP default. */
|
42 |
+
.jd-my-calendar .meta-box-sortables { min-height: 0; }
|
43 |
+
.jd-my-calendar textarea { width: 100%; }
|
44 |
+
.mc-clear { clear: both; }
|
45 |
+
.jd-my-calendar pre { background: #fff; padding: 5px; border: 1px solid #ddd; box-shadow: 1px 1px 2px #ddd; }
|
46 |
+
.jd-my-calendar label span { font-size: .9em; color: #c33; }
|
my-calendar-behaviors.php
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
// Display the admin configuration page
|
3 |
function edit_my_calendar_behaviors() {
|
4 |
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs;
|
|
|
5 |
|
6 |
// We can't use this page unless My Calendar is installed/upgraded
|
7 |
check_my_calendar();
|
@@ -60,13 +61,15 @@ function edit_my_calendar_behaviors() {
|
|
60 |
|
61 |
// Now we render the form
|
62 |
?>
|
63 |
-
<div class="wrap">
|
64 |
<?php
|
65 |
my_calendar_check_db();
|
66 |
?>
|
67 |
<h2><?php _e('My Calendar Behaviors','my-calendar'); ?></h2>
|
68 |
-
|
69 |
-
<div
|
|
|
|
|
70 |
<div class="postbox" id="cdiff">
|
71 |
|
72 |
<h3><?php _e('Calendar Behavior Settings','my-calendar'); ?></h3>
|
@@ -74,7 +77,7 @@ my_calendar_check_db();
|
|
74 |
<form id="my-calendar" method="post" action="<?php echo admin_url('admin.php?page=my-calendar-behaviors'); ?>">
|
75 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
76 |
<p>
|
77 |
-
<label for="mc_show_js"><?php _e('
|
78 |
</p>
|
79 |
<p>
|
80 |
<input type="checkbox" id="mc_draggable" name="mc_draggable" value="1" <?php jd_cal_checkCheckbox('mc_draggable',1); ?> /> <label for="mc_draggable"><?php _e('Details boxes are draggable','my-calendar'); ?></label>
|
@@ -87,28 +90,29 @@ my_calendar_check_db();
|
|
87 |
<p>
|
88 |
<label for="calendar-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Calendar format','my-calendar'); ?></label><br /><textarea id="calendar-javascript" name="mc_caljs" rows="8" cols="80"><?php echo $mc_caljs; ?></textarea>
|
89 |
</p>
|
90 |
-
<p>
|
91 |
-
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
92 |
-
</p>
|
93 |
-
</fieldset>
|
94 |
-
|
95 |
<?php
|
96 |
$left_string = normalize_whitespace($mc_caljs);
|
97 |
$right_string = normalize_whitespace($initial_caljs);
|
98 |
if ( isset( $_GET['cdiff'] ) ) {
|
99 |
-
echo '<div class="wrap" id="diff">';
|
100 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
101 |
echo '</div>';
|
102 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
103 |
-
echo '<div class="wrap">';
|
104 |
echo '<div class="updated"><p>'.__('There have been updates to the calendar view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&cdiff#cdiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
105 |
echo '</div>';
|
106 |
} else {
|
107 |
-
echo '<div class="wrap">';
|
108 |
-
|
109 |
-
echo '</div>';
|
110 |
}
|
111 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
<fieldset id="ldiff">
|
114 |
<legend><?php _e('Calendar Behaviors: List View','my-calendar'); ?></legend>
|
@@ -118,28 +122,28 @@ my_calendar_check_db();
|
|
118 |
<p>
|
119 |
<label for="list-javascript"><?php _e('Edit the jQuery scripts for My Calendar in List format','my-calendar'); ?></label><br /><textarea id="list-javascript" name="mc_listjs" rows="8" cols="80"><?php echo $mc_listjs; ?></textarea>
|
120 |
</p>
|
121 |
-
<p>
|
122 |
-
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
123 |
-
</p>
|
124 |
-
</fieldset>
|
125 |
-
|
126 |
<?php
|
127 |
$left_string = normalize_whitespace($mc_listjs);
|
128 |
$right_string = normalize_whitespace($initial_listjs);
|
129 |
if ( isset( $_GET['ldiff'] ) ) {
|
130 |
-
echo '<div class="wrap" id="diff">';
|
131 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
132 |
echo '</div>';
|
133 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
134 |
-
echo '<div class="wrap">';
|
135 |
echo '<div class="updated"><p>'.__('There have been updates to the list view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&ldiff#ldiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
136 |
echo '</div>';
|
137 |
} else {
|
138 |
-
echo '<div class="wrap">';
|
139 |
-
|
140 |
-
echo '</div>';
|
141 |
}
|
142 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
<fieldset id="mdiff">
|
145 |
<legend><?php _e('Calendar Behaviors: Mini Calendar View','my-calendar'); ?></legend>
|
@@ -149,28 +153,29 @@ my_calendar_check_db();
|
|
149 |
<p>
|
150 |
<label for="mini-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Mini Calendar format','my-calendar'); ?></label><br /><textarea id="mini-javascript" name="mc_minijs" rows="8" cols="80"><?php echo $mc_minijs; ?></textarea>
|
151 |
</p>
|
152 |
-
<p>
|
153 |
-
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
154 |
-
</p>
|
155 |
-
</fieldset>
|
156 |
-
|
157 |
<?php
|
158 |
$left_string = normalize_whitespace($mc_minijs);
|
159 |
$right_string = normalize_whitespace($initial_minijs);
|
160 |
if ( isset( $_GET['mdiff'] ) ) {
|
161 |
-
echo '<div class="wrap" id="diff">';
|
162 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
163 |
echo '</div>';
|
164 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
165 |
-
echo '<div class="wrap">';
|
166 |
echo '<div class="updated"><p>'.__('There have been updates to the mini view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&mdiff#mdiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
167 |
echo '</div>';
|
168 |
} else {
|
169 |
-
echo '<div class="wrap">';
|
170 |
-
|
171 |
-
echo '</div>';
|
172 |
}
|
173 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
<fieldset id="adiff">
|
176 |
<legend><?php _e('Calendar Behaviors: AJAX Navigation','my-calendar'); ?></legend>
|
@@ -180,34 +185,39 @@ my_calendar_check_db();
|
|
180 |
<p>
|
181 |
<label for="ajax-javascript"><?php _e('Edit the jQuery scripts for My Calendar AJAX navigation','my-calendar'); ?></label><br /><textarea id="ajax-javascript" name="mc_ajaxjs" rows="8" cols="80"><?php echo $mc_ajaxjs; ?></textarea>
|
182 |
</p>
|
183 |
-
<p>
|
184 |
-
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
185 |
-
</p>
|
186 |
-
</fieldset>
|
187 |
<?php
|
188 |
$left_string = normalize_whitespace($mc_ajaxjs);
|
189 |
$right_string = normalize_whitespace($initial_ajaxjs);
|
190 |
if ( isset( $_GET['adiff'] ) ) {
|
191 |
-
echo '<div class="wrap" id="diff">';
|
192 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
193 |
echo '</div>';
|
194 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
195 |
-
echo '<div class="wrap">';
|
196 |
echo '<div class="updated"><p>'.__('There have been updates to the AJAX scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&adiff#adiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
197 |
echo '</div>';
|
198 |
} else {
|
199 |
-
echo '<div class="wrap">';
|
200 |
-
|
201 |
-
echo '</div>';
|
202 |
}
|
203 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
204 |
<p>
|
205 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save','my-calendar'); ?>" />
|
206 |
</p>
|
207 |
</form>
|
208 |
</div>
|
209 |
</div>
|
|
|
210 |
<p><?php _e('Resetting JavaScript will set that script to the version currently distributed with the plug-in.','my-calendar'); ?></p>
|
211 |
</div>
|
212 |
</div>
|
|
|
|
|
|
|
213 |
<?php }
|
2 |
// Display the admin configuration page
|
3 |
function edit_my_calendar_behaviors() {
|
4 |
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs;
|
5 |
+
$mcdb = $wpdb;
|
6 |
|
7 |
// We can't use this page unless My Calendar is installed/upgraded
|
8 |
check_my_calendar();
|
61 |
|
62 |
// Now we render the form
|
63 |
?>
|
64 |
+
<div class="wrap jd-my-calendar">
|
65 |
<?php
|
66 |
my_calendar_check_db();
|
67 |
?>
|
68 |
<h2><?php _e('My Calendar Behaviors','my-calendar'); ?></h2>
|
69 |
+
<div class="postbox-container" style="width: 70%">
|
70 |
+
<div class="metabox-holder">
|
71 |
+
|
72 |
+
<div class="ui-sortable meta-box-sortables">
|
73 |
<div class="postbox" id="cdiff">
|
74 |
|
75 |
<h3><?php _e('Calendar Behavior Settings','my-calendar'); ?></h3>
|
77 |
<form id="my-calendar" method="post" action="<?php echo admin_url('admin.php?page=my-calendar-behaviors'); ?>">
|
78 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
79 |
<p>
|
80 |
+
<label for="mc_show_js"><?php _e('Insert scripts on these pages (comma separated post IDs)','my-calendar'); ?></label> <input type="text" id="mc_show_js" name="mc_show_js" value="<?php echo $mc_show_js; ?>" />
|
81 |
</p>
|
82 |
<p>
|
83 |
<input type="checkbox" id="mc_draggable" name="mc_draggable" value="1" <?php jd_cal_checkCheckbox('mc_draggable',1); ?> /> <label for="mc_draggable"><?php _e('Details boxes are draggable','my-calendar'); ?></label>
|
90 |
<p>
|
91 |
<label for="calendar-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Calendar format','my-calendar'); ?></label><br /><textarea id="calendar-javascript" name="mc_caljs" rows="8" cols="80"><?php echo $mc_caljs; ?></textarea>
|
92 |
</p>
|
|
|
|
|
|
|
|
|
|
|
93 |
<?php
|
94 |
$left_string = normalize_whitespace($mc_caljs);
|
95 |
$right_string = normalize_whitespace($initial_caljs);
|
96 |
if ( isset( $_GET['cdiff'] ) ) {
|
97 |
+
echo '<div class="wrap jd-my-calendar" id="diff">';
|
98 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
99 |
echo '</div>';
|
100 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
101 |
+
echo '<div class="wrap jd-my-calendar">';
|
102 |
echo '<div class="updated"><p>'.__('There have been updates to the calendar view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&cdiff#cdiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
103 |
echo '</div>';
|
104 |
} else {
|
105 |
+
echo '<div class="wrap jd-my-calendar"><em>';
|
106 |
+
_e('Your script matches that included with My Calendar.','my-calendar');
|
107 |
+
echo '</em></div>';
|
108 |
}
|
109 |
+
?>
|
110 |
+
<p>
|
111 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
112 |
+
</p>
|
113 |
+
</fieldset>
|
114 |
+
|
115 |
+
|
116 |
|
117 |
<fieldset id="ldiff">
|
118 |
<legend><?php _e('Calendar Behaviors: List View','my-calendar'); ?></legend>
|
122 |
<p>
|
123 |
<label for="list-javascript"><?php _e('Edit the jQuery scripts for My Calendar in List format','my-calendar'); ?></label><br /><textarea id="list-javascript" name="mc_listjs" rows="8" cols="80"><?php echo $mc_listjs; ?></textarea>
|
124 |
</p>
|
|
|
|
|
|
|
|
|
|
|
125 |
<?php
|
126 |
$left_string = normalize_whitespace($mc_listjs);
|
127 |
$right_string = normalize_whitespace($initial_listjs);
|
128 |
if ( isset( $_GET['ldiff'] ) ) {
|
129 |
+
echo '<div class="wrap jd-my-calendar" id="diff">';
|
130 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
131 |
echo '</div>';
|
132 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
133 |
+
echo '<div class="wrap jd-my-calendar">';
|
134 |
echo '<div class="updated"><p>'.__('There have been updates to the list view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&ldiff#ldiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
135 |
echo '</div>';
|
136 |
} else {
|
137 |
+
echo '<div class="wrap jd-my-calendar"><em>';
|
138 |
+
_e('Your script matches that included with My Calendar.','my-calendar');
|
139 |
+
echo '</em></div>';
|
140 |
}
|
141 |
+
?>
|
142 |
+
<p>
|
143 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
144 |
+
</p>
|
145 |
+
</fieldset>
|
146 |
+
|
147 |
|
148 |
<fieldset id="mdiff">
|
149 |
<legend><?php _e('Calendar Behaviors: Mini Calendar View','my-calendar'); ?></legend>
|
153 |
<p>
|
154 |
<label for="mini-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Mini Calendar format','my-calendar'); ?></label><br /><textarea id="mini-javascript" name="mc_minijs" rows="8" cols="80"><?php echo $mc_minijs; ?></textarea>
|
155 |
</p>
|
|
|
|
|
|
|
|
|
|
|
156 |
<?php
|
157 |
$left_string = normalize_whitespace($mc_minijs);
|
158 |
$right_string = normalize_whitespace($initial_minijs);
|
159 |
if ( isset( $_GET['mdiff'] ) ) {
|
160 |
+
echo '<div class="wrap jd-my-calendar" id="diff">';
|
161 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
162 |
echo '</div>';
|
163 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
164 |
+
echo '<div class="wrap jd-my-calendar">';
|
165 |
echo '<div class="updated"><p>'.__('There have been updates to the mini view scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&mdiff#mdiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
166 |
echo '</div>';
|
167 |
} else {
|
168 |
+
echo '<div class="wrap jd-my-calendar"><em>';
|
169 |
+
_e('Your script matches that included with My Calendar.','my-calendar');
|
170 |
+
echo '</em></div>';
|
171 |
}
|
172 |
?>
|
173 |
+
<p>
|
174 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
175 |
+
</p>
|
176 |
+
</fieldset>
|
177 |
+
|
178 |
+
|
179 |
|
180 |
<fieldset id="adiff">
|
181 |
<legend><?php _e('Calendar Behaviors: AJAX Navigation','my-calendar'); ?></legend>
|
185 |
<p>
|
186 |
<label for="ajax-javascript"><?php _e('Edit the jQuery scripts for My Calendar AJAX navigation','my-calendar'); ?></label><br /><textarea id="ajax-javascript" name="mc_ajaxjs" rows="8" cols="80"><?php echo $mc_ajaxjs; ?></textarea>
|
187 |
</p>
|
|
|
|
|
|
|
|
|
188 |
<?php
|
189 |
$left_string = normalize_whitespace($mc_ajaxjs);
|
190 |
$right_string = normalize_whitespace($initial_ajaxjs);
|
191 |
if ( isset( $_GET['adiff'] ) ) {
|
192 |
+
echo '<div class="wrap jd-my-calendar" id="diff">';
|
193 |
echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing scripts with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
|
194 |
echo '</div>';
|
195 |
} else if ( trim($left_string)!=trim($right_string) ) {
|
196 |
+
echo '<div class="wrap jd-my-calendar">';
|
197 |
echo '<div class="updated"><p>'.__('There have been updates to the AJAX scripts.','my-calendar').' <a href="'.admin_url('admin.php?page=my-calendar-behaviors&adiff#adiff').'">'.__('Compare your scripts with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
|
198 |
echo '</div>';
|
199 |
} else {
|
200 |
+
echo '<div class="wrap jd-my-calendar"><em>';
|
201 |
+
_e('Your script matches that included with My Calendar.','my-calendar');
|
202 |
+
echo '</em></div>';
|
203 |
}
|
204 |
+
?>
|
205 |
+
<p>
|
206 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
|
207 |
+
</p>
|
208 |
+
</fieldset>
|
209 |
+
|
210 |
<p>
|
211 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save','my-calendar'); ?>" />
|
212 |
</p>
|
213 |
</form>
|
214 |
</div>
|
215 |
</div>
|
216 |
+
</div>
|
217 |
<p><?php _e('Resetting JavaScript will set that script to the version currently distributed with the plug-in.','my-calendar'); ?></p>
|
218 |
</div>
|
219 |
</div>
|
220 |
+
<?php jd_show_support_box(); ?>
|
221 |
+
|
222 |
+
</div>
|
223 |
<?php }
|
my-calendar-categories.php
CHANGED
@@ -75,11 +75,12 @@ function is_custom_icon() {
|
|
75 |
|
76 |
function my_calendar_manage_categories() {
|
77 |
global $wpdb;
|
|
|
78 |
$formats = array( '%s', '%s', '%s' );
|
79 |
// My Calendar must be installed and upgraded before this will work
|
80 |
check_my_calendar();
|
81 |
?>
|
82 |
-
<div class="wrap">
|
83 |
<?php
|
84 |
my_calendar_check_db();
|
85 |
?>
|
@@ -97,7 +98,7 @@ my_calendar_check_db();
|
|
97 |
'category_color'=>$_POST['category_color'],
|
98 |
'category_icon'=>$_POST['category_icon']
|
99 |
);
|
100 |
-
$results = $
|
101 |
|
102 |
if ( $results ) {
|
103 |
echo "<div class=\"updated\"><p><strong>".__('Category added successfully','my-calendar')."</strong></p></div>";
|
@@ -106,10 +107,10 @@ my_calendar_check_db();
|
|
106 |
}
|
107 |
} else if ( isset($_GET['mode']) && isset($_GET['category_id']) && $_GET['mode'] == 'delete' ) {
|
108 |
$sql = "DELETE FROM " . my_calendar_categories_table() . " WHERE category_id=".mysql_real_escape_string($_GET['category_id']);
|
109 |
-
$results = $
|
110 |
if ($results) {
|
111 |
$sql = "UPDATE " . my_calendar_table() . " SET event_category=1 WHERE event_category=".mysql_real_escape_string($_GET['category_id']);
|
112 |
-
$cal_results = $
|
113 |
}
|
114 |
if ($results && $cal_results) {
|
115 |
echo "<div class=\"updated\"><p><strong>".__('Category deleted successfully. Categories in calendar updated.','my-calendar')."</strong></p></div>";
|
@@ -130,7 +131,7 @@ my_calendar_check_db();
|
|
130 |
$where = array(
|
131 |
'category_id'=>(int) $_POST['category_id']
|
132 |
);
|
133 |
-
$results = $
|
134 |
if ($results) {
|
135 |
echo "<div class=\"updated\"><p><strong>".__('Category edited successfully','my-calendar')."</strong></p></div>";
|
136 |
} else {
|
@@ -149,10 +150,11 @@ my_calendar_check_db();
|
|
149 |
|
150 |
function mc_edit_category_form($view='edit',$catID='') {
|
151 |
global $wpdb;
|
|
|
152 |
if ( $catID != '' ) {
|
153 |
$catID = (int) $catID;
|
154 |
$sql = "SELECT * FROM " . my_calendar_categories_table() . " WHERE category_id=$catID";
|
155 |
-
$cur_cat = $
|
156 |
}
|
157 |
global $path, $wp_plugin_dir,$wp_plugin_url;
|
158 |
if ( is_custom_icon() ) {
|
@@ -172,10 +174,11 @@ global $path, $wp_plugin_dir,$wp_plugin_url;
|
|
172 |
<h2><?php _e('Edit Category','my-calendar'); ?></h2>
|
173 |
<?php } ?>
|
174 |
|
175 |
-
|
176 |
-
<div
|
177 |
-
<div class="postbox">
|
178 |
|
|
|
|
|
179 |
<h3><?php _e('Category Editor','my-calendar'); ?></h3>
|
180 |
<div class="inside">
|
181 |
<form id="my-calendar" method="post" action="<?php echo admin_url('admin.php?page=my-calendar-categories'); ?>">
|
@@ -196,48 +199,68 @@ global $path, $wp_plugin_dir,$wp_plugin_url;
|
|
196 |
<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 if ( !empty($cur_cat) && is_object($cur_cat) ) echo stripslashes( esc_attr( $cur_cat->category_name ) ); ?>" /><br />
|
197 |
<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 if ( !empty($cur_cat) && is_object($cur_cat) ) { echo (strpos($cur_cat->category_color,'#') !== 0)?'#':''; echo $cur_cat->category_color; } else { echo '#'; } ?>" /><br />
|
198 |
<label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
|
199 |
-
<?php
|
200 |
-
foreach ($iconlist as $value) {
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
}
|
208 |
-
?>
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
215 |
</div>
|
216 |
</div>
|
217 |
<?php if ($view == 'edit') { ?>
|
218 |
<p><a href="<?php echo admin_url('admin.php?page=my-calendar-categories'); ?>"><?php _e('Add a New Category','my-calendar'); ?> »</a></p>
|
219 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
220 |
<?php mc_manage_categories(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
</div>
|
222 |
<?php
|
223 |
}
|
224 |
|
225 |
function mc_manage_categories() {
|
226 |
global $wpdb, $path, $wp_plugin_url;
|
|
|
227 |
?>
|
228 |
<h2><?php _e('Manage Categories','my-calendar'); ?></h2>
|
229 |
<?php
|
230 |
-
|
|
|
|
|
|
|
|
|
|
|
231 |
// We pull the categories from the database
|
232 |
-
$categories = $
|
233 |
|
234 |
if ( !empty($categories) ) {
|
235 |
?>
|
236 |
-
<table class="widefat page fixed" id="my-calendar-admin-table"
|
237 |
<thead>
|
238 |
<tr>
|
239 |
-
<th class="manage-column" scope="col"><?php _e('ID','my-calendar') ?></th>
|
240 |
-
<th class="manage-column" scope="col"><?php _e('Category Name','my-calendar') ?></th>
|
241 |
<th class="manage-column" scope="col"><?php _e('Category Color','my-calendar') ?></th>
|
242 |
<th class="manage-column" scope="col"><?php _e('Category Icon','my-calendar'); ?></th>
|
243 |
<th class="manage-column" scope="col"><?php _e('Edit','my-calendar') ?></th>
|
75 |
|
76 |
function my_calendar_manage_categories() {
|
77 |
global $wpdb;
|
78 |
+
$mcdb = $wpdb;
|
79 |
$formats = array( '%s', '%s', '%s' );
|
80 |
// My Calendar must be installed and upgraded before this will work
|
81 |
check_my_calendar();
|
82 |
?>
|
83 |
+
<div class="wrap jd-my-calendar">
|
84 |
<?php
|
85 |
my_calendar_check_db();
|
86 |
?>
|
98 |
'category_color'=>$_POST['category_color'],
|
99 |
'category_icon'=>$_POST['category_icon']
|
100 |
);
|
101 |
+
$results = $mcdb->insert( my_calendar_categories_table(), $add, $formats );
|
102 |
|
103 |
if ( $results ) {
|
104 |
echo "<div class=\"updated\"><p><strong>".__('Category added successfully','my-calendar')."</strong></p></div>";
|
107 |
}
|
108 |
} else if ( isset($_GET['mode']) && isset($_GET['category_id']) && $_GET['mode'] == 'delete' ) {
|
109 |
$sql = "DELETE FROM " . my_calendar_categories_table() . " WHERE category_id=".mysql_real_escape_string($_GET['category_id']);
|
110 |
+
$results = $mcdb->query($sql);
|
111 |
if ($results) {
|
112 |
$sql = "UPDATE " . my_calendar_table() . " SET event_category=1 WHERE event_category=".mysql_real_escape_string($_GET['category_id']);
|
113 |
+
$cal_results = $mcdb->query($sql);
|
114 |
}
|
115 |
if ($results && $cal_results) {
|
116 |
echo "<div class=\"updated\"><p><strong>".__('Category deleted successfully. Categories in calendar updated.','my-calendar')."</strong></p></div>";
|
131 |
$where = array(
|
132 |
'category_id'=>(int) $_POST['category_id']
|
133 |
);
|
134 |
+
$results = $mcdb->update( my_calendar_categories_table(), $update, $where, $formats, '%d' );
|
135 |
if ($results) {
|
136 |
echo "<div class=\"updated\"><p><strong>".__('Category edited successfully','my-calendar')."</strong></p></div>";
|
137 |
} else {
|
150 |
|
151 |
function mc_edit_category_form($view='edit',$catID='') {
|
152 |
global $wpdb;
|
153 |
+
$mcdb = $wpdb;
|
154 |
if ( $catID != '' ) {
|
155 |
$catID = (int) $catID;
|
156 |
$sql = "SELECT * FROM " . my_calendar_categories_table() . " WHERE category_id=$catID";
|
157 |
+
$cur_cat = $mcdb->get_row($sql);
|
158 |
}
|
159 |
global $path, $wp_plugin_dir,$wp_plugin_url;
|
160 |
if ( is_custom_icon() ) {
|
174 |
<h2><?php _e('Edit Category','my-calendar'); ?></h2>
|
175 |
<?php } ?>
|
176 |
|
177 |
+
<div class="postbox-container" style="width: 70%">
|
178 |
+
<div class="metabox-holder">
|
|
|
179 |
|
180 |
+
<div class="ui-sortable meta-box-sortables">
|
181 |
+
<div class="postbox">
|
182 |
<h3><?php _e('Category Editor','my-calendar'); ?></h3>
|
183 |
<div class="inside">
|
184 |
<form id="my-calendar" method="post" action="<?php echo admin_url('admin.php?page=my-calendar-categories'); ?>">
|
199 |
<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 if ( !empty($cur_cat) && is_object($cur_cat) ) echo stripslashes( esc_attr( $cur_cat->category_name ) ); ?>" /><br />
|
200 |
<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 if ( !empty($cur_cat) && is_object($cur_cat) ) { echo (strpos($cur_cat->category_color,'#') !== 0)?'#':''; echo $cur_cat->category_color; } else { echo '#'; } ?>" /><br />
|
201 |
<label for="category_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="category_icon">
|
202 |
+
<?php
|
203 |
+
foreach ($iconlist as $value) {
|
204 |
+
if ( ( !empty($cur_cat) && is_object($cur_cat) ) && $cur_cat->category_icon == $value) {
|
205 |
+
$selected = " selected='selected'";
|
206 |
+
} else {
|
207 |
+
$selected = "";
|
208 |
+
}
|
209 |
+
echo "<option value='$value'$selected style='background: url(".$wp_plugin_url."$path/$value) left 50% no-repeat;'>$value</option>";
|
210 |
+
}
|
211 |
+
?>
|
212 |
+
</select>
|
213 |
+
</fieldset>
|
214 |
+
<p>
|
215 |
+
<input type="submit" name="save" class="button-primary" value="<?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Save Changes','my-calendar'); } ?> »" />
|
216 |
+
</p>
|
217 |
+
</form>
|
218 |
+
</div>
|
219 |
</div>
|
220 |
</div>
|
221 |
<?php if ($view == 'edit') { ?>
|
222 |
<p><a href="<?php echo admin_url('admin.php?page=my-calendar-categories'); ?>"><?php _e('Add a New Category','my-calendar'); ?> »</a></p>
|
223 |
<?php } ?>
|
224 |
+
|
225 |
+
<div class="ui-sortable meta-box-sortables">
|
226 |
+
<div class="postbox">
|
227 |
+
<h3><?php _e('Category List','my-calendar'); ?></h3>
|
228 |
+
<div class="inside">
|
229 |
<?php mc_manage_categories(); ?>
|
230 |
+
</div>
|
231 |
+
</div>
|
232 |
+
</div>
|
233 |
+
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
<?php jd_show_support_box(); ?>
|
237 |
+
|
238 |
</div>
|
239 |
<?php
|
240 |
}
|
241 |
|
242 |
function mc_manage_categories() {
|
243 |
global $wpdb, $path, $wp_plugin_url;
|
244 |
+
$mcdb = $wpdb;
|
245 |
?>
|
246 |
<h2><?php _e('Manage Categories','my-calendar'); ?></h2>
|
247 |
<?php
|
248 |
+
$co = ( !isset($_GET['co']) )?1:(int) $_GET['co'];
|
249 |
+
switch ( $co ) {
|
250 |
+
case 1: $cat_order = 'category_id';break;
|
251 |
+
case 2: $cat_order = 'category_name';break;
|
252 |
+
default: $cat_order = 'category_id';
|
253 |
+
}
|
254 |
// We pull the categories from the database
|
255 |
+
$categories = $mcdb->get_results("SELECT * FROM " . my_calendar_categories_table() . " ORDER BY $cat_order ASC");
|
256 |
|
257 |
if ( !empty($categories) ) {
|
258 |
?>
|
259 |
+
<table class="widefat page fixed" id="my-calendar-admin-table">
|
260 |
<thead>
|
261 |
<tr>
|
262 |
+
<th class="manage-column" scope="col"><?php echo ($co==2)?"<a href='".admin_url("admin.php?page=my-calendar-categories&co=1")."'>":''; ?><?php _e('ID','my-calendar') ?><?php echo ($co==2)?'</a>':''; ?></th>
|
263 |
+
<th class="manage-column" scope="col"><?php echo ($co==1)?"<a href='".admin_url("admin.php?page=my-calendar-categories&co=2")."'>":''; ?><?php _e('Category Name','my-calendar') ?><?php echo ($co==1)?'</a>':''; ?></th>
|
264 |
<th class="manage-column" scope="col"><?php _e('Category Color','my-calendar') ?></th>
|
265 |
<th class="manage-column" scope="col"><?php _e('Category Icon','my-calendar'); ?></th>
|
266 |
<th class="manage-column" scope="col"><?php _e('Edit','my-calendar') ?></th>
|
my-calendar-core.php
CHANGED
@@ -10,6 +10,7 @@ Note:
|
|
10 |
*/
|
11 |
function my_calendar_add_feed() {
|
12 |
global $wp_rewrite, $wpdb;
|
|
|
13 |
if ( get_option('mc_show_rss') == 'true' ) {
|
14 |
add_feed( 'my-calendar-rss', 'my_calendar_rss' );
|
15 |
}
|
@@ -52,8 +53,9 @@ if ( ! function_exists( 'is_ssl' ) ) {
|
|
52 |
// mod from Mike T
|
53 |
function my_calendar_getUsers() {
|
54 |
global $blog_id, $wpdb;
|
|
|
55 |
if ( version_compare( get_bloginfo( 'version' ), '3.1','<' ) ) {
|
56 |
-
$authors = $
|
57 |
return $authors;
|
58 |
} else {
|
59 |
$users = new WP_User_Query( array(
|
@@ -76,6 +78,7 @@ function jd_calendar_plugin_action($links, $file) {
|
|
76 |
// Function to add the calendar style into the header
|
77 |
function my_calendar_wp_head() {
|
78 |
global $wpdb, $wp_query, $wp_plugin_url;
|
|
|
79 |
// If the calendar isn't installed or upgraded this won't work
|
80 |
check_my_calendar();
|
81 |
$styles = mc_get_style_path( get_option( 'mc_css_file' ),'url' );
|
@@ -94,7 +97,7 @@ function my_calendar_wp_head() {
|
|
94 |
if ( @in_array( $id, $array ) || get_option( 'mc_show_css' ) == '' ) {
|
95 |
// generate category colors
|
96 |
$category_styles = '';
|
97 |
-
$categories = $
|
98 |
foreach ( $categories as $category ) {
|
99 |
$class = "mc_".sanitize_title($category->category_name);
|
100 |
$hex = (strpos($category->category_color,'#') !== 0)?'#':'';
|
@@ -105,7 +108,8 @@ function my_calendar_wp_head() {
|
|
105 |
$type = 'background';
|
106 |
}
|
107 |
if ( get_option( 'mc_apply_color' ) == 'font' || get_option( 'mc_apply_color' ) == 'background' ) {
|
108 |
-
|
|
|
109 |
}
|
110 |
}
|
111 |
$add = '';
|
@@ -118,14 +122,20 @@ $all_styles = "
|
|
118 |
$add
|
119 |
<style type=\"text/css\">
|
120 |
<!--
|
121 |
-
.mcjs
|
122 |
-
/* Styles
|
123 |
$category_styles
|
124 |
.mc-event-visible {
|
125 |
display: block!important;
|
126 |
}
|
127 |
-->
|
128 |
</style>";
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
$all_styles = apply_filters( 'mc_filter_styles',$all_styles,$styles );
|
130 |
echo $all_styles;
|
131 |
}
|
@@ -135,11 +145,12 @@ echo $all_styles;
|
|
135 |
// Function to deal with events posted by a user when that user is deleted
|
136 |
function mc_deal_with_deleted_user( $id ) {
|
137 |
global $wpdb;
|
|
|
138 |
check_my_calendar();
|
139 |
// Do the queries
|
140 |
// This may not work quite right in multi-site. Need to explore further when I have time.
|
141 |
-
$
|
142 |
-
$
|
143 |
}
|
144 |
|
145 |
// Function to add the javascript to the admin header
|
@@ -148,8 +159,10 @@ global $wp_plugin_url;
|
|
148 |
if ( isset($_GET['page']) && $_GET['page'] == 'my-calendar' ) {
|
149 |
wp_enqueue_script('jquery.calendrical',plugins_url( 'js/jquery.calendrical.js', __FILE__ ), array('jquery') );
|
150 |
wp_enqueue_script('jquery.addfields',plugins_url( 'js/jquery.addfields.js', __FILE__ ), array('jquery') );
|
151 |
-
|
152 |
-
|
|
|
|
|
153 |
$mc_input = get_option( 'mc_input_options' );
|
154 |
// If the editor is enabled, then don't modify the upload script.
|
155 |
if ( !isset($mc_input['event_image']) ) { $mc_input['event_image'] = 'off'; }
|
@@ -164,7 +177,7 @@ global $wp_plugin_url;
|
|
164 |
}
|
165 |
|
166 |
function my_calendar_write_js() {
|
167 |
-
if ( isset($_GET['page']) && $_GET['page']=='my-calendar') {
|
168 |
?>
|
169 |
<script type="text/javascript">
|
170 |
//<![CDATA[
|
@@ -220,9 +233,12 @@ global $wp_query;
|
|
220 |
}
|
221 |
|
222 |
function mc_footer_js() {
|
223 |
-
if (
|
|
|
|
|
224 |
$scripting = '';
|
225 |
global $wpdb, $wp_query;
|
|
|
226 |
if ( get_option('mc_calendar_javascript') != 1 || get_option('mc_list_javascript') != 1 || get_option('mc_mini_javascript') != 1 || get_option('mc_ajax_javascript') != 1 ) {
|
227 |
|
228 |
$list_js = stripcslashes( get_option( 'mc_listjs' ) );
|
@@ -267,7 +283,9 @@ function my_calendar_add_styles() {
|
|
267 |
if ( $mc_input['event_image'] == 'on' || $mc_input['event_use_editor'] != 'on' || version_compare( get_bloginfo( 'version' ), '3.0','<' ) ) {
|
268 |
echo '<link type="text/css" rel="stylesheet" href="'.includes_url( 'js/thickbox/thickbox.css' ).'" />';
|
269 |
}
|
270 |
-
|
|
|
|
|
271 |
}
|
272 |
}
|
273 |
}
|
@@ -300,9 +318,122 @@ function csv_to_array($csv, $delimiter = ',', $enclosure = '"', $escape = '\\',
|
|
300 |
return $r;
|
301 |
}
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
// Function to check what version of My Calendar is installed and install or upgrade if needed
|
304 |
function check_my_calendar() {
|
305 |
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs,$mc_version,$grid_template,$list_template,$mini_template,$single_template, $defaults;
|
|
|
|
|
306 |
$current_version = ( get_option('mc_version') == '') ? get_option('my_calendar_version') : get_option('mc_version');
|
307 |
// If current version matches, don't bother running this.
|
308 |
if ($current_version == $mc_version) {
|
@@ -316,7 +447,7 @@ function check_my_calendar() {
|
|
316 |
$upgrade_path = array();
|
317 |
|
318 |
// Determine the calendar version
|
319 |
-
$tables = $
|
320 |
foreach ( $tables as $table ) {
|
321 |
foreach ( $table as $value ) {
|
322 |
if ( $value == MY_CALENDAR_TABLE ) {
|
@@ -335,21 +466,23 @@ function check_my_calendar() {
|
|
335 |
} else {
|
336 |
// for each release requiring an upgrade path, add a version compare.
|
337 |
// Loop will run every relevant upgrade cycle.
|
338 |
-
if ( version_compare( $current_version, "1.4.0", "<" ) ) { $upgrade_path[] = "1.4.0";
|
339 |
-
if ( version_compare( $current_version, "1.4.7", "<" ) ) { $upgrade_path[] = "1.4.7";
|
340 |
-
if ( version_compare( $current_version, "1.4.8", "<" ) ) { $upgrade_path[] = "1.4.8";
|
341 |
-
if ( version_compare( $current_version, "1.5.0", "<" ) ) { $upgrade_path[] = "1.5.0";
|
342 |
-
if ( version_compare( $current_version, "1.6.0", "<" ) ) { $upgrade_path[] = "1.6.0";
|
343 |
-
if ( version_compare( $current_version, "1.6.2", "<" ) ) { $upgrade_path[] = "1.6.2";
|
344 |
-
if ( version_compare( $current_version, "1.6.3", "<" ) ) { $upgrade_path[] = "1.6.3";
|
345 |
-
if ( version_compare( $current_version, "1.7.0", "<" ) ) { $upgrade_path[] = "1.7.0";
|
346 |
-
if ( version_compare( $current_version, "1.7.1", "<" ) ) { $upgrade_path[] = "1.7.1";
|
347 |
-
if ( version_compare( $current_version, "1.8.0", "<" ) ) { $upgrade_path[] = "1.8.0";
|
348 |
-
if ( version_compare( $current_version, "1.9.0", "<" ) ) { $upgrade_path[] = "1.9.0";
|
349 |
-
if ( version_compare( $current_version, "1.9.1", "<" ) ) { $upgrade_path[] = "1.9.1";
|
350 |
-
if ( version_compare( $current_version, "1.9.3", "<" ) ) {
|
351 |
-
if ( version_compare( $current_version, "1.10.0", "<" ) ) { $upgrade_path[] = "1.10.0";
|
352 |
-
if ( version_compare( $current_version, "1.10.7", "<" ) ) { $upgrade_path[] = "1.10.7";
|
|
|
|
|
353 |
}
|
354 |
// having determined upgrade path, assign new version number
|
355 |
update_option( 'mc_version' , $mc_version );
|
@@ -358,7 +491,7 @@ function check_my_calendar() {
|
|
358 |
//add default settings
|
359 |
mc_default_settings();
|
360 |
$sql = "INSERT INTO " . MY_CALENDAR_CATEGORIES_TABLE . " SET category_id=1, category_name='General', category_color='#ffffff', category_icon='event.png'";
|
361 |
-
$
|
362 |
} else {
|
363 |
// clear cache so updates are immediately available
|
364 |
mc_delete_cache();
|
@@ -367,6 +500,20 @@ function check_my_calendar() {
|
|
367 |
foreach ($upgrade_path as $upgrade) {
|
368 |
switch ($upgrade) {
|
369 |
// only upgrade db on most recent version
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
case '1.10.7':
|
371 |
upgrade_db();
|
372 |
update_option( 'mc_multisite_show', 0 );
|
@@ -684,7 +831,7 @@ function check_my_calendar() {
|
|
684 |
add_option( 'mc_event_link_expires','false' );
|
685 |
add_option( 'mc_apply_color','default' );
|
686 |
add_option( 'mc_minijs', $initial_minijs);
|
687 |
-
add_option( 'mc_mini_javascript',
|
688 |
break;
|
689 |
default:
|
690 |
break;
|
@@ -814,7 +961,7 @@ function mc_can_edit_event($author_id) {
|
|
814 |
get_currentuserinfo();
|
815 |
$user = get_userdata($user_ID);
|
816 |
|
817 |
-
if ( current_user_can(
|
818 |
return true;
|
819 |
} elseif ( $user_ID == $author_id ) {
|
820 |
return true;
|
@@ -853,7 +1000,7 @@ if (version_compare(phpversion(), '5.0') < 0) {
|
|
853 |
add_action( 'admin_bar_menu','my_calendar_admin_bar', 200 );
|
854 |
function my_calendar_admin_bar() {
|
855 |
global $wp_admin_bar;
|
856 |
-
if ( current_user_can(
|
857 |
$url = admin_url('admin.php?page=my-calendar');
|
858 |
$args = array( 'id'=>'my-calendar','title'=>__('Add Event','my-calendar'),'href'=>$url );
|
859 |
$wp_admin_bar->add_menu($args);
|
@@ -907,7 +1054,7 @@ $event = event_as_array($details);
|
|
907 |
// checks submitted events against akismet, if available, otherwise just returns false
|
908 |
function mc_akismet( $event_url='', $description='' ) {
|
909 |
global $akismet_api_host, $akismet_api_port, $user;
|
910 |
-
if ( current_user_can( '
|
911 |
return 0;
|
912 |
}
|
913 |
$c = array();
|
@@ -946,15 +1093,6 @@ function mc_akismet( $event_url='', $description='' ) {
|
|
946 |
return 0;
|
947 |
}
|
948 |
|
949 |
-
function check_akismet() {
|
950 |
-
global $user;
|
951 |
-
if ( current_user_can( 'edit_plugins' ) ) {
|
952 |
-
if ( get_option('mc_can_manage_events') == 'read' && !function_exists( 'akismet_http_post' ) ) {
|
953 |
-
echo "<div class='error'><p class='warning'>".__("You're currently allowing to subscribers to post events, but aren't using Akismet. My Calendar can use Akismet to check for spam in event submissions. <a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>",'my-calendar' )."</p></div>";
|
954 |
-
}
|
955 |
-
}
|
956 |
-
}
|
957 |
-
|
958 |
function mc_external_link( $link, $type='event' ) {
|
959 |
$url = parse_url($link);
|
960 |
$host = $url['host'];
|
@@ -1014,18 +1152,28 @@ function mc_button( $buttons ) {
|
|
1014 |
return $buttons;
|
1015 |
}
|
1016 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
// Add a button to the quicktag view (HTML Mode) >>>
|
1018 |
function mc_add_quicktags(){
|
1019 |
?>
|
1020 |
-
<script type="text/javascript"
|
1021 |
// <![CDATA[
|
1022 |
(function(){
|
1023 |
if (typeof jQuery === 'undefined') {
|
1024 |
return;
|
1025 |
}
|
1026 |
-
jQuery(document).ready(function(){
|
1027 |
// Add the buttons to the HTML view
|
1028 |
-
|
1029 |
});
|
1030 |
}());
|
1031 |
// ]]>
|
@@ -1041,7 +1189,7 @@ function mc_newline_replace($string) {
|
|
1041 |
function mc_admin_js_vars(){
|
1042 |
global $wp_plugin_url;
|
1043 |
?>
|
1044 |
-
<script type="text/javascript"
|
1045 |
// <![CDATA[
|
1046 |
if (typeof myCalQT !== 'undefined' && typeof myCalQT.Tag !== 'undefined') {
|
1047 |
myCalQT.Tag.configUrl = "<?php echo plugins_url( 'button/generator.php',__FILE__ ); ?>";
|
@@ -1068,14 +1216,24 @@ function mc_is_mobile() {
|
|
1068 |
}
|
1069 |
}
|
1070 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
function mc_guess_calendar() {
|
1072 |
global $wpdb;
|
|
|
1073 |
/* If you're looking at this, and have suggestions for other slugs I could be looking at, feel free to let me know. I didn't feel a need to be overly thorough. */
|
1074 |
-
$my_guesses = array( 'calendar','events','
|
1075 |
foreach( $my_guesses as $guess ) {
|
1076 |
-
$value = $
|
1077 |
if ( $value ) {
|
1078 |
-
_e('Is this your calendar page?','my-calendar'); echo ' <code>'.
|
1079 |
return;
|
1080 |
} else {
|
1081 |
_e('I tried to guess, but don\'t have a suggestion for you.','my-calendar');;
|
@@ -1102,12 +1260,20 @@ get_currentuserinfo();
|
|
1102 |
$php_version = phpversion();
|
1103 |
|
1104 |
// theme data
|
1105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1106 |
$theme = get_theme_data($theme_path);
|
1107 |
$theme_name = $theme['Name'];
|
1108 |
-
$theme_uri = $theme['
|
1109 |
$theme_parent = $theme['Template'];
|
1110 |
$theme_version = $theme['Version'];
|
|
|
1111 |
// plugin data
|
1112 |
|
1113 |
$plugins = get_plugins();
|
10 |
*/
|
11 |
function my_calendar_add_feed() {
|
12 |
global $wp_rewrite, $wpdb;
|
13 |
+
$mcdb = $wpdb;
|
14 |
if ( get_option('mc_show_rss') == 'true' ) {
|
15 |
add_feed( 'my-calendar-rss', 'my_calendar_rss' );
|
16 |
}
|
53 |
// mod from Mike T
|
54 |
function my_calendar_getUsers() {
|
55 |
global $blog_id, $wpdb;
|
56 |
+
$mcdb = $wpdb;
|
57 |
if ( version_compare( get_bloginfo( 'version' ), '3.1','<' ) ) {
|
58 |
+
$authors = $mcdb->get_results( "SELECT ID, user_nicename, display_name from $mcdb->users ORDER BY display_name" );
|
59 |
return $authors;
|
60 |
} else {
|
61 |
$users = new WP_User_Query( array(
|
78 |
// Function to add the calendar style into the header
|
79 |
function my_calendar_wp_head() {
|
80 |
global $wpdb, $wp_query, $wp_plugin_url;
|
81 |
+
$mcdb = $wpdb;
|
82 |
// If the calendar isn't installed or upgraded this won't work
|
83 |
check_my_calendar();
|
84 |
$styles = mc_get_style_path( get_option( 'mc_css_file' ),'url' );
|
97 |
if ( @in_array( $id, $array ) || get_option( 'mc_show_css' ) == '' ) {
|
98 |
// generate category colors
|
99 |
$category_styles = '';
|
100 |
+
$categories = $mcdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
|
101 |
foreach ( $categories as $category ) {
|
102 |
$class = "mc_".sanitize_title($category->category_name);
|
103 |
$hex = (strpos($category->category_color,'#') !== 0)?'#':'';
|
108 |
$type = 'background';
|
109 |
}
|
110 |
if ( get_option( 'mc_apply_color' ) == 'font' || get_option( 'mc_apply_color' ) == 'background' ) {
|
111 |
+
// always an anchor as of 1.11.0
|
112 |
+
$category_styles .= "\n.mc-main .$class .event-title a { $type: $color; }";
|
113 |
}
|
114 |
}
|
115 |
$add = '';
|
122 |
$add
|
123 |
<style type=\"text/css\">
|
124 |
<!--
|
125 |
+
.mcjs .mc-main .details, .mcjs .mc-main .calendar-events { display: none; }
|
126 |
+
/* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
|
127 |
$category_styles
|
128 |
.mc-event-visible {
|
129 |
display: block!important;
|
130 |
}
|
131 |
-->
|
132 |
</style>";
|
133 |
+
if ( mc_is_tablet() && file_exists( get_stylesheet_directory() . '/mc-tablet.css' ) ) {
|
134 |
+
$all_styles .= get_stylesheet_directory_uri() . '/mc-tablet.css';
|
135 |
+
}
|
136 |
+
if ( mc_is_mobile() && file_exists( get_stylesheet_directory() . '/mc-mobile.css' ) ) {
|
137 |
+
$all_styles .= get_stylesheet_directory_uri() . '/mc-mobile.css';
|
138 |
+
}
|
139 |
$all_styles = apply_filters( 'mc_filter_styles',$all_styles,$styles );
|
140 |
echo $all_styles;
|
141 |
}
|
145 |
// Function to deal with events posted by a user when that user is deleted
|
146 |
function mc_deal_with_deleted_user( $id ) {
|
147 |
global $wpdb;
|
148 |
+
$mcdb = $wpdb;
|
149 |
check_my_calendar();
|
150 |
// Do the queries
|
151 |
// This may not work quite right in multi-site. Need to explore further when I have time.
|
152 |
+
$mcdb->get_results( "UPDATE ".my_calendar_table()." SET event_author=".$mcdb->get_var("SELECT MIN(ID) FROM ".$mcdb->prefix."users",0,0)." WHERE event_author=".$id );
|
153 |
+
$mcdb->get_results( "UPDATE ".my_calendar_table()." SET event_host=".$mcdb->get_var("SELECT MIN(ID) FROM ".$mcdb->prefix."users",0,0)." WHERE event_host=".$id );
|
154 |
}
|
155 |
|
156 |
// Function to add the javascript to the admin header
|
159 |
if ( isset($_GET['page']) && $_GET['page'] == 'my-calendar' ) {
|
160 |
wp_enqueue_script('jquery.calendrical',plugins_url( 'js/jquery.calendrical.js', __FILE__ ), array('jquery') );
|
161 |
wp_enqueue_script('jquery.addfields',plugins_url( 'js/jquery.addfields.js', __FILE__ ), array('jquery') );
|
162 |
+
if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '<' ) ) {
|
163 |
+
wp_enqueue_script('media-upload');
|
164 |
+
wp_enqueue_script('thickbox');
|
165 |
+
}
|
166 |
$mc_input = get_option( 'mc_input_options' );
|
167 |
// If the editor is enabled, then don't modify the upload script.
|
168 |
if ( !isset($mc_input['event_image']) ) { $mc_input['event_image'] = 'off'; }
|
177 |
}
|
178 |
|
179 |
function my_calendar_write_js() {
|
180 |
+
if ( isset($_GET['page']) && $_GET['page']=='my-calendar' ) {
|
181 |
?>
|
182 |
<script type="text/javascript">
|
183 |
//<![CDATA[
|
233 |
}
|
234 |
|
235 |
function mc_footer_js() {
|
236 |
+
if ( mc_is_mobile() && get_option('mc_mobile') == 'true' ) {
|
237 |
+
return;
|
238 |
+
} else {
|
239 |
$scripting = '';
|
240 |
global $wpdb, $wp_query;
|
241 |
+
$mcdb = $wpdb;
|
242 |
if ( get_option('mc_calendar_javascript') != 1 || get_option('mc_list_javascript') != 1 || get_option('mc_mini_javascript') != 1 || get_option('mc_ajax_javascript') != 1 ) {
|
243 |
|
244 |
$list_js = stripcslashes( get_option( 'mc_listjs' ) );
|
283 |
if ( $mc_input['event_image'] == 'on' || $mc_input['event_use_editor'] != 'on' || version_compare( get_bloginfo( 'version' ), '3.0','<' ) ) {
|
284 |
echo '<link type="text/css" rel="stylesheet" href="'.includes_url( 'js/thickbox/thickbox.css' ).'" />';
|
285 |
}
|
286 |
+
if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '<' ) ) {
|
287 |
+
wp_enqueue_style('thickbox');
|
288 |
+
}
|
289 |
}
|
290 |
}
|
291 |
}
|
318 |
return $r;
|
319 |
}
|
320 |
|
321 |
+
function mc_if_needs_permissions() {
|
322 |
+
// this prevents administrators from losing privileges to edit my calendar
|
323 |
+
$role = get_role( 'administrator' );
|
324 |
+
$caps = $role->capabilities;
|
325 |
+
if ( isset($caps['mc_add_events']) ) {
|
326 |
+
return;
|
327 |
+
} else {
|
328 |
+
$role->add_cap( 'mc_add_events' );
|
329 |
+
$role->add_cap( 'mc_approve_events' );
|
330 |
+
$role->add_cap( 'mc_manage_events' );
|
331 |
+
$role->add_cap( 'mc_edit_cats' );
|
332 |
+
$role->add_cap( 'mc_edit_styles' );
|
333 |
+
$role->add_cap( 'mc_edit_behaviors' );
|
334 |
+
$role->add_cap( 'mc_edit_templates' );
|
335 |
+
$role->add_cap( 'mc_edit_settings' );
|
336 |
+
$role->add_cap( 'mc_edit_locations' );
|
337 |
+
$role->add_cap( 'mc_view_help' );
|
338 |
+
}
|
339 |
+
}
|
340 |
+
|
341 |
+
function mc_add_roles( $add=false, $manage=false, $approve=false ) {
|
342 |
+
// grant administrator role all event permissions
|
343 |
+
$role = get_role( 'administrator' );
|
344 |
+
$role->add_cap( 'mc_add_events' );
|
345 |
+
$role->add_cap( 'mc_approve_events' );
|
346 |
+
$role->add_cap( 'mc_manage_events' );
|
347 |
+
$role->add_cap( 'mc_edit_cats' );
|
348 |
+
$role->add_cap( 'mc_edit_styles' );
|
349 |
+
$role->add_cap( 'mc_edit_behaviors' );
|
350 |
+
$role->add_cap( 'mc_edit_templates' );
|
351 |
+
$role->add_cap( 'mc_edit_settings' );
|
352 |
+
$role->add_cap( 'mc_edit_locations' );
|
353 |
+
$role->add_cap( 'mc_view_help' );
|
354 |
+
|
355 |
+
// depending on permissions settings, grant other permissions
|
356 |
+
|
357 |
+
if ( $add && $manage && $approve ) {
|
358 |
+
// this is an upgrade;
|
359 |
+
// Get Roles
|
360 |
+
$subscriber = get_role('subscriber');
|
361 |
+
$contributor = get_role('contributor');
|
362 |
+
$author = get_role('author');
|
363 |
+
$editor = get_role('editor');
|
364 |
+
$subscriber->add_cap( 'mc_view_help' );
|
365 |
+
$contributor->add_cap( 'mc_view_help' );
|
366 |
+
$author->add_cap( 'mc_view_help' );
|
367 |
+
$editor->add_cap( 'mc_view_help' );
|
368 |
+
|
369 |
+
switch( $add ) {
|
370 |
+
case 'read':
|
371 |
+
$subscriber->add_cap( 'mc_add_events' );
|
372 |
+
$contributor->add_cap( 'mc_add_events' );
|
373 |
+
$author->add_cap( 'mc_add_events' );
|
374 |
+
$editor->add_cap( 'mc_add_events' );
|
375 |
+
break;
|
376 |
+
case 'edit_posts':
|
377 |
+
$contributor->add_cap( 'mc_add_events' );
|
378 |
+
$author->add_cap( 'mc_add_events' );
|
379 |
+
$editor->add_cap( 'mc_add_events' );
|
380 |
+
break;
|
381 |
+
case 'publish_posts':
|
382 |
+
$author->add_cap( 'mc_add_events' );
|
383 |
+
$editor->add_cap( 'mc_add_events' );
|
384 |
+
break;
|
385 |
+
case 'moderate_comments':
|
386 |
+
$editor->add_cap( 'mc_add_events' );
|
387 |
+
break;
|
388 |
+
}
|
389 |
+
switch( $approve ) {
|
390 |
+
case 'read':
|
391 |
+
$subscriber->add_cap( 'mc_approve_events' );
|
392 |
+
$contributor->add_cap( 'mc_approve_events' );
|
393 |
+
$author->add_cap( 'mc_approve_events' );
|
394 |
+
$editor->add_cap( 'mc_approve_events' );
|
395 |
+
break;
|
396 |
+
case 'edit_posts':
|
397 |
+
$contributor->add_cap( 'mc_approve_events' );
|
398 |
+
$author->add_cap( 'mc_approve_events' );
|
399 |
+
$editor->add_cap( 'mc_approve_events' );
|
400 |
+
break;
|
401 |
+
case 'publish_posts':
|
402 |
+
$author->add_cap( 'mc_approve_events' );
|
403 |
+
$editor->add_cap( 'mc_approve_events' );
|
404 |
+
break;
|
405 |
+
case 'moderate_comments':
|
406 |
+
$editor->add_cap( 'mc_approve_events' );
|
407 |
+
break;
|
408 |
+
}
|
409 |
+
switch( $manage ) {
|
410 |
+
case 'read':
|
411 |
+
$subscriber->add_cap( 'mc_manage_events' );
|
412 |
+
$contributor->add_cap( 'mc_manage_events' );
|
413 |
+
$author->add_cap( 'mc_manage_events' );
|
414 |
+
$editor->add_cap( 'mc_manage_events' );
|
415 |
+
break;
|
416 |
+
case 'edit_posts':
|
417 |
+
$contributor->add_cap( 'mc_manage_events' );
|
418 |
+
$author->add_cap( 'mc_manage_events' );
|
419 |
+
$editor->add_cap( 'mc_manage_events' );
|
420 |
+
break;
|
421 |
+
case 'publish_posts':
|
422 |
+
$author->add_cap( 'mc_manage_events' );
|
423 |
+
$editor->add_cap( 'mc_manage_events' );
|
424 |
+
break;
|
425 |
+
case 'moderate_comments':
|
426 |
+
$editor->add_cap( 'mc_manage_events' );
|
427 |
+
break;
|
428 |
+
}
|
429 |
+
}
|
430 |
+
}
|
431 |
+
|
432 |
// Function to check what version of My Calendar is installed and install or upgrade if needed
|
433 |
function check_my_calendar() {
|
434 |
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs,$mc_version,$grid_template,$list_template,$mini_template,$single_template, $defaults;
|
435 |
+
$mcdb = $wpdb;
|
436 |
+
mc_if_needs_permissions();
|
437 |
$current_version = ( get_option('mc_version') == '') ? get_option('my_calendar_version') : get_option('mc_version');
|
438 |
// If current version matches, don't bother running this.
|
439 |
if ($current_version == $mc_version) {
|
447 |
$upgrade_path = array();
|
448 |
|
449 |
// Determine the calendar version
|
450 |
+
$tables = $mcdb->get_results("show tables;");
|
451 |
foreach ( $tables as $table ) {
|
452 |
foreach ( $table as $value ) {
|
453 |
if ( $value == MY_CALENDAR_TABLE ) {
|
466 |
} else {
|
467 |
// for each release requiring an upgrade path, add a version compare.
|
468 |
// Loop will run every relevant upgrade cycle.
|
469 |
+
if ( version_compare( $current_version, "1.4.0", "<" ) ) { $upgrade_path[] = "1.4.0"; }
|
470 |
+
if ( version_compare( $current_version, "1.4.7", "<" ) ) { $upgrade_path[] = "1.4.7"; }
|
471 |
+
if ( version_compare( $current_version, "1.4.8", "<" ) ) { $upgrade_path[] = "1.4.8"; }
|
472 |
+
if ( version_compare( $current_version, "1.5.0", "<" ) ) { $upgrade_path[] = "1.5.0"; }
|
473 |
+
if ( version_compare( $current_version, "1.6.0", "<" ) ) { $upgrade_path[] = "1.6.0"; }
|
474 |
+
if ( version_compare( $current_version, "1.6.2", "<" ) ) { $upgrade_path[] = "1.6.2"; }
|
475 |
+
if ( version_compare( $current_version, "1.6.3", "<" ) ) { $upgrade_path[] = "1.6.3"; }
|
476 |
+
if ( version_compare( $current_version, "1.7.0", "<" ) ) { $upgrade_path[] = "1.7.0"; }
|
477 |
+
if ( version_compare( $current_version, "1.7.1", "<" ) ) { $upgrade_path[] = "1.7.1"; }
|
478 |
+
if ( version_compare( $current_version, "1.8.0", "<" ) ) { $upgrade_path[] = "1.8.0"; }
|
479 |
+
if ( version_compare( $current_version, "1.9.0", "<" ) ) { $upgrade_path[] = "1.9.0"; }
|
480 |
+
if ( version_compare( $current_version, "1.9.1", "<" ) ) { $upgrade_path[] = "1.9.1"; }
|
481 |
+
if ( version_compare( $current_version, "1.9.3", "<" ) ) { $upgrade_path[] = "1.9.3"; }
|
482 |
+
if ( version_compare( $current_version, "1.10.0", "<" ) ) { $upgrade_path[] = "1.10.0"; }
|
483 |
+
if ( version_compare( $current_version, "1.10.7", "<" ) ) { $upgrade_path[] = "1.10.7"; }
|
484 |
+
if ( version_compare( $current_version, "1.11.0", "<" ) ) { $upgrade_path[] = "1.11.0"; }
|
485 |
+
if ( version_compare( $current_version, "1.11.1", "<" ) ) { $upgrade_path[] = "1.11.1"; }
|
486 |
}
|
487 |
// having determined upgrade path, assign new version number
|
488 |
update_option( 'mc_version' , $mc_version );
|
491 |
//add default settings
|
492 |
mc_default_settings();
|
493 |
$sql = "INSERT INTO " . MY_CALENDAR_CATEGORIES_TABLE . " SET category_id=1, category_name='General', category_color='#ffffff', category_icon='event.png'";
|
494 |
+
$mcdb->query($sql);
|
495 |
} else {
|
496 |
// clear cache so updates are immediately available
|
497 |
mc_delete_cache();
|
500 |
foreach ($upgrade_path as $upgrade) {
|
501 |
switch ($upgrade) {
|
502 |
// only upgrade db on most recent version
|
503 |
+
case '1.11.1':
|
504 |
+
add_option( 'mc_event_link', 'true' );
|
505 |
+
break;
|
506 |
+
case '1.11.0':
|
507 |
+
add_option( 'mc_convert','true');
|
508 |
+
add_option('mc_process_shortcodes','false');
|
509 |
+
$add = get_option('mc_can_manage_events'); // yes, this is correct.
|
510 |
+
$manage = get_option('mc_event_edit_perms');
|
511 |
+
$approve = get_option('mc_event_approve_perms');
|
512 |
+
mc_add_roles( $add, $manage, $approve );
|
513 |
+
delete_option( 'mc_can_manage_events' );
|
514 |
+
delete_option( 'mc_event_edit_perms' );
|
515 |
+
delete_option( 'mc_event_approve_perms' );
|
516 |
+
break;
|
517 |
case '1.10.7':
|
518 |
upgrade_db();
|
519 |
update_option( 'mc_multisite_show', 0 );
|
831 |
add_option( 'mc_event_link_expires','false' );
|
832 |
add_option( 'mc_apply_color','default' );
|
833 |
add_option( 'mc_minijs', $initial_minijs);
|
834 |
+
add_option( 'mc_mini_javascript', 0);
|
835 |
break;
|
836 |
default:
|
837 |
break;
|
961 |
get_currentuserinfo();
|
962 |
$user = get_userdata($user_ID);
|
963 |
|
964 |
+
if ( current_user_can( 'mc_manage_events' ) ) {
|
965 |
return true;
|
966 |
} elseif ( $user_ID == $author_id ) {
|
967 |
return true;
|
1000 |
add_action( 'admin_bar_menu','my_calendar_admin_bar', 200 );
|
1001 |
function my_calendar_admin_bar() {
|
1002 |
global $wp_admin_bar;
|
1003 |
+
if ( current_user_can( 'mc_add_events' ) ) {
|
1004 |
$url = admin_url('admin.php?page=my-calendar');
|
1005 |
$args = array( 'id'=>'my-calendar','title'=>__('Add Event','my-calendar'),'href'=>$url );
|
1006 |
$wp_admin_bar->add_menu($args);
|
1054 |
// checks submitted events against akismet, if available, otherwise just returns false
|
1055 |
function mc_akismet( $event_url='', $description='' ) {
|
1056 |
global $akismet_api_host, $akismet_api_port, $user;
|
1057 |
+
if ( current_user_can( 'mc_manage_events' ) ) { // is a privileged user
|
1058 |
return 0;
|
1059 |
}
|
1060 |
$c = array();
|
1093 |
return 0;
|
1094 |
}
|
1095 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
function mc_external_link( $link, $type='event' ) {
|
1097 |
$url = parse_url($link);
|
1098 |
$host = $url['host'];
|
1152 |
return $buttons;
|
1153 |
}
|
1154 |
|
1155 |
+
|
1156 |
+
add_action('admin_print_scripts', 'mc_quicktags');
|
1157 |
+
function mc_quicktags() {
|
1158 |
+
wp_enqueue_script(
|
1159 |
+
'mc_quicktags',
|
1160 |
+
plugin_dir_url(__FILE__) . 'js/mc-quicktags.js',
|
1161 |
+
array('quicktags')
|
1162 |
+
);
|
1163 |
+
}
|
1164 |
+
|
1165 |
// Add a button to the quicktag view (HTML Mode) >>>
|
1166 |
function mc_add_quicktags(){
|
1167 |
?>
|
1168 |
+
<script type="text/javascript">
|
1169 |
// <![CDATA[
|
1170 |
(function(){
|
1171 |
if (typeof jQuery === 'undefined') {
|
1172 |
return;
|
1173 |
}
|
1174 |
+
jQuery(document).ready(function($){
|
1175 |
// Add the buttons to the HTML view
|
1176 |
+
$("#ed_toolbar").append('<input type="button" class="ed_button" onclick="myCalQT.Tag.embed.apply(myCalQT.Tag); return false;" title="Insert My Calendar" value="My Calendar" />');
|
1177 |
});
|
1178 |
}());
|
1179 |
// ]]>
|
1189 |
function mc_admin_js_vars(){
|
1190 |
global $wp_plugin_url;
|
1191 |
?>
|
1192 |
+
<script type="text/javascript">
|
1193 |
// <![CDATA[
|
1194 |
if (typeof myCalQT !== 'undefined' && typeof myCalQT.Tag !== 'undefined') {
|
1195 |
myCalQT.Tag.configUrl = "<?php echo plugins_url( 'button/generator.php',__FILE__ ); ?>";
|
1216 |
}
|
1217 |
}
|
1218 |
|
1219 |
+
function mc_is_tablet() {
|
1220 |
+
$uagent = new uagent_info();
|
1221 |
+
if ( $uagent->DetectTierTablet() == $uagent->true ) {
|
1222 |
+
return true;
|
1223 |
+
} else {
|
1224 |
+
return false;
|
1225 |
+
}
|
1226 |
+
}
|
1227 |
+
|
1228 |
function mc_guess_calendar() {
|
1229 |
global $wpdb;
|
1230 |
+
$mcdb = $wpdb;
|
1231 |
/* If you're looking at this, and have suggestions for other slugs I could be looking at, feel free to let me know. I didn't feel a need to be overly thorough. */
|
1232 |
+
$my_guesses = array( 'calendar','events','activities','classes','courses','rehearsals','schedule','calendario','actividades','eventos','kalender','veranstaltungen','unterrichten','eventi','classi' );
|
1233 |
foreach( $my_guesses as $guess ) {
|
1234 |
+
$value = $mcdb->get_var("SELECT id FROM $mcdb->posts WHERE post_name LIKE '%$guess%'" );
|
1235 |
if ( $value ) {
|
1236 |
+
_e('Is this your calendar page?','my-calendar'); echo ' <code>'.get_permalink( $value ).'</code>';
|
1237 |
return;
|
1238 |
} else {
|
1239 |
_e('I tried to guess, but don\'t have a suggestion for you.','my-calendar');;
|
1260 |
$php_version = phpversion();
|
1261 |
|
1262 |
// theme data
|
1263 |
+
if ( function_exists( 'wp_get_theme' ) ) {
|
1264 |
+
$theme = wp_get_theme();
|
1265 |
+
$theme_name = $theme->Name;
|
1266 |
+
$theme_uri = $theme->ThemeURI;
|
1267 |
+
$theme_parent = $theme->Template;
|
1268 |
+
$theme_version = $theme->Version;
|
1269 |
+
} else {
|
1270 |
+
$theme_path = get_stylesheet_directory().'/style.css';
|
1271 |
$theme = get_theme_data($theme_path);
|
1272 |
$theme_name = $theme['Name'];
|
1273 |
+
$theme_uri = $theme['ThemeURI'];
|
1274 |
$theme_parent = $theme['Template'];
|
1275 |
$theme_version = $theme['Version'];
|
1276 |
+
}
|
1277 |
// plugin data
|
1278 |
|
1279 |
$plugins = get_plugins();
|
my-calendar-detect-mobile.php
CHANGED
@@ -1,31 +1,51 @@
|
|
1 |
<?php
|
|
|
2 |
/* *******************************************
|
3 |
-
// Copyright 2010-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
//
|
5 |
-
// File version date:
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
//
|
9 |
-
// File version date: March 14, 2011
|
10 |
-
//? ? Updates:
|
11 |
-
//? ? - In uagent_info(), added null test case when initializing variables.
|
12 |
-
//? ? - Added a stored variable 'isTierTablet' which is initialized in InitDeviceScan().
|
13 |
-
//? ? - Added a variable to support the new DetectBlackBerryTablet() function.
|
14 |
-
//? ? - Added a variable to support the new DetectAndroidTablet() function. This is a first draft!
|
15 |
-
//? ? - Added the new DetectTierTablet() function. Use this to detect any of the new
|
16 |
-
// larger-screen HTML5 capable tablets. (The 7 inch Galaxy Tab doesn't quality right now.)
|
17 |
-
//? ? - Moved Windows Phone 7 from iPhone Tier to Rich CSS Tier. Sorry, Microsoft, but IE 7 isn't good enough.
|
18 |
//
|
19 |
// LICENSE INFORMATION
|
20 |
-
// Licensed under the Apache License, Version 2.0 (the "License");
|
21 |
-
// you may not use this file except in compliance with the License.
|
22 |
-
// You may obtain a copy of the License at
|
23 |
-
// http://www.apache.org/licenses/LICENSE-2.0
|
24 |
-
// Unless required by applicable law or agreed to in writing,
|
25 |
-
// software distributed under the License is distributed on an
|
26 |
-
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
27 |
-
// either express or implied. See the License for the specific
|
28 |
-
// language governing permissions and limitations under the License.
|
29 |
//
|
30 |
//
|
31 |
// ABOUT THIS PROJECT
|
@@ -44,7 +64,7 @@
|
|
44 |
|
45 |
//**************************
|
46 |
// The uagent_info class encapsulates information about
|
47 |
-
// a browser's connection to your web site.
|
48 |
// You can use it to find out whether the browser asking for
|
49 |
// your site's content is probably running on a mobile device.
|
50 |
// The methods were written so you can be as granular as you want.
|
@@ -60,9 +80,9 @@ class uagent_info
|
|
60 |
var $true = 1;
|
61 |
var $false = 0;
|
62 |
|
63 |
-
//
|
64 |
-
// Call InitDeviceScan() to initialize these values.
|
65 |
var $isIphone = 0; //Stores whether the device is an iPhone or iPod Touch.
|
|
|
66 |
var $isTierTablet = 0; //Stores whether is the Tablet (HTML5-capable, larger screen) tier of devices.
|
67 |
var $isTierIphone = 0; //Stores whether is the iPhone tier of devices.
|
68 |
var $isTierRichCss = 0; //Stores whether the device can probably support Rich CSS, but JavaScript support is not assumed. (e.g., newer BlackBerry, Windows Mobile)
|
@@ -78,6 +98,7 @@ class uagent_info
|
|
78 |
var $deviceAndroid = 'android';
|
79 |
var $deviceGoogleTV = 'googletv';
|
80 |
var $deviceXoom = 'xoom'; //Motorola Xoom
|
|
|
81 |
|
82 |
var $deviceNuvifone = 'nuvifone'; //Garmin Nuvifone
|
83 |
|
@@ -87,9 +108,9 @@ class uagent_info
|
|
87 |
var $deviceS80 = 'series80';
|
88 |
var $deviceS90 = 'series90';
|
89 |
|
90 |
-
var $deviceWinPhone7 = 'windows phone os 7';
|
91 |
var $deviceWinMob = 'windows ce';
|
92 |
-
var $deviceWindows = 'windows';
|
93 |
var $deviceIeMob = 'iemobile';
|
94 |
var $devicePpc = 'ppc'; //Stands for PocketPC
|
95 |
var $enginePie = 'wm5 pie'; //An old Windows Mobile
|
@@ -97,24 +118,30 @@ class uagent_info
|
|
97 |
var $deviceBB = 'blackberry';
|
98 |
var $vndRIM = 'vnd.rim'; //Detectable when BB devices emulate IE or Firefox
|
99 |
var $deviceBBStorm = 'blackberry95'; //Storm 1 and 2
|
100 |
-
var $deviceBBBold = 'blackberry97'; //Bold
|
|
|
101 |
var $deviceBBTour = 'blackberry96'; //Tour
|
102 |
var $deviceBBCurve = 'blackberry89'; //Curve2
|
|
|
103 |
var $deviceBBTorch = 'blackberry 98'; //Torch
|
104 |
var $deviceBBPlaybook = 'playbook'; //PlayBook tablet
|
105 |
|
106 |
var $devicePalm = 'palm';
|
107 |
-
var $deviceWebOS = 'webos'; //For Palm's
|
|
|
|
|
108 |
var $engineBlazer = 'blazer'; //Old Palm browser
|
109 |
var $engineXiino = 'xiino'; //Another old Palm
|
110 |
|
111 |
-
var $deviceKindle = 'kindle'; //Amazon Kindle, eInk one
|
|
|
112 |
|
113 |
//Initialize variables for mobile-specific content.
|
114 |
var $vndwap = 'vnd.wap';
|
115 |
var $wml = 'wml';
|
116 |
|
117 |
//Initialize variables for other random devices and mobile browsers.
|
|
|
118 |
var $deviceBrew = 'brew';
|
119 |
var $deviceDanger = 'danger';
|
120 |
var $deviceHiptop = 'hiptop';
|
@@ -140,7 +167,6 @@ class uagent_info
|
|
140 |
|
141 |
//Use Maemo, Tablet, and Linux to test for Nokia's Internet Tablets.
|
142 |
var $maemo = 'maemo';
|
143 |
-
var $maemoTablet = 'tablet';
|
144 |
var $linux = 'linux';
|
145 |
var $qtembedded = 'qt embedded'; //for Sony Mylo and others
|
146 |
var $mylocom2 = 'com2'; //for Sony Mylo also
|
@@ -162,22 +188,38 @@ class uagent_info
|
|
162 |
|
163 |
|
164 |
//**************************
|
165 |
-
//The constructor.
|
166 |
-
function
|
167 |
-
{
|
168 |
-
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
}
|
171 |
|
172 |
//**************************
|
173 |
// Initialize Key Stored Values.
|
174 |
function InitDeviceScan()
|
175 |
{
|
176 |
-
global $isIphone, $
|
177 |
|
|
|
178 |
$this->isIphone = $this->DetectIphoneOrIpod();
|
179 |
-
$this->
|
180 |
$this->isTierIphone = $this->DetectTierIphone();
|
|
|
|
|
|
|
|
|
181 |
$this->isTierRichCss = $this->DetectTierRichCss();
|
182 |
$this->isTierGenericMobile = $this->DetectTierOtherPhones();
|
183 |
}
|
@@ -185,16 +227,17 @@ class uagent_info
|
|
185 |
//**************************
|
186 |
//Returns the contents of the User Agent value, in lower case.
|
187 |
function Get_Uagent()
|
188 |
-
{
|
189 |
return $this->useragent;
|
190 |
}
|
191 |
|
192 |
//**************************
|
193 |
//Returns the contents of the HTTP Accept value, in lower case.
|
194 |
function Get_HttpAccept()
|
195 |
-
{
|
196 |
return $this->httpaccept;
|
197 |
}
|
|
|
198 |
|
199 |
//**************************
|
200 |
// Detects if the current device is an iPhone.
|
@@ -202,17 +245,16 @@ class uagent_info
|
|
202 |
{
|
203 |
if (stripos($this->useragent, $this->deviceIphone) > -1)
|
204 |
{
|
205 |
-
//The iPad and iPod Touch say they're an iPhone
|
206 |
if ($this->DetectIpad() == $this->true ||
|
207 |
$this->DetectIpod() == $this->true)
|
208 |
-
{
|
209 |
return $this->false;
|
210 |
-
|
211 |
else
|
212 |
-
return $this->true;
|
213 |
}
|
214 |
else
|
215 |
-
return $this->false;
|
216 |
}
|
217 |
|
218 |
//**************************
|
@@ -220,9 +262,9 @@ class uagent_info
|
|
220 |
function DetectIpod()
|
221 |
{
|
222 |
if (stripos($this->useragent, $this->deviceIpod) > -1)
|
223 |
-
return $this->true;
|
224 |
else
|
225 |
-
return $this->false;
|
226 |
}
|
227 |
|
228 |
//**************************
|
@@ -231,9 +273,9 @@ class uagent_info
|
|
231 |
{
|
232 |
if (stripos($this->useragent, $this->deviceIpad) > -1 &&
|
233 |
$this->DetectWebkit() == $this->true)
|
234 |
-
return $this->true;
|
235 |
else
|
236 |
-
return $this->false;
|
237 |
}
|
238 |
|
239 |
//**************************
|
@@ -243,34 +285,79 @@ class uagent_info
|
|
243 |
//We repeat the searches here because some iPods may report themselves as an iPhone, which would be okay.
|
244 |
if (stripos($this->useragent, $this->deviceIphone) > -1 ||
|
245 |
stripos($this->useragent, $this->deviceIpod) > -1)
|
246 |
-
return $this->true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
else
|
248 |
return $this->false;
|
249 |
}
|
250 |
|
|
|
251 |
//**************************
|
252 |
-
// Detects
|
253 |
-
//
|
254 |
function DetectAndroid()
|
255 |
{
|
256 |
-
if ($this->
|
257 |
-
|
258 |
-
|
259 |
-
|
|
|
|
|
260 |
else
|
261 |
-
return $this->false;
|
262 |
}
|
263 |
|
264 |
//**************************
|
265 |
-
// Detects if the current device is
|
266 |
-
//
|
267 |
-
//
|
268 |
-
|
|
|
269 |
{
|
270 |
-
if (
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
return $this->false;
|
|
|
|
|
274 |
}
|
275 |
|
276 |
//**************************
|
@@ -278,17 +365,11 @@ class uagent_info
|
|
278 |
// the browser is based on WebKit.
|
279 |
function DetectAndroidWebKit()
|
280 |
{
|
281 |
-
if ($this->DetectAndroid() == $this->true)
|
282 |
-
|
283 |
-
|
284 |
-
{
|
285 |
-
return $this->true;
|
286 |
-
}
|
287 |
-
else
|
288 |
-
return $this->false;
|
289 |
-
}
|
290 |
else
|
291 |
-
return $this->false;
|
292 |
}
|
293 |
|
294 |
//**************************
|
@@ -296,9 +377,9 @@ class uagent_info
|
|
296 |
function DetectGoogleTV()
|
297 |
{
|
298 |
if (stripos($this->useragent, $this->deviceGoogleTV) > -1)
|
299 |
-
return $this->true;
|
300 |
else
|
301 |
-
return $this->false;
|
302 |
}
|
303 |
|
304 |
//**************************
|
@@ -306,9 +387,9 @@ class uagent_info
|
|
306 |
function DetectWebkit()
|
307 |
{
|
308 |
if (stripos($this->useragent, $this->engineWebKit) > -1)
|
309 |
-
return $this->true;
|
310 |
else
|
311 |
-
return $this->false;
|
312 |
}
|
313 |
|
314 |
|
@@ -325,78 +406,78 @@ class uagent_info
|
|
325 |
return $this->true;
|
326 |
}
|
327 |
else
|
328 |
-
return $this->false;
|
329 |
}
|
330 |
else
|
331 |
-
return $this->false;
|
332 |
}
|
333 |
|
334 |
//**************************
|
335 |
// Detects if the current device is any Symbian OS-based device,
|
336 |
-
// including older S60, Series 70, Series 80, Series 90, and UIQ,
|
337 |
// or other browsers running on these devices.
|
338 |
function DetectSymbianOS()
|
339 |
{
|
340 |
-
if (stripos($this->useragent, $this->deviceSymbian) > -1 ||
|
341 |
stripos($this->useragent, $this->deviceS60) > -1 ||
|
342 |
-
stripos($this->useragent, $this->deviceS70) > -1 ||
|
343 |
stripos($this->useragent, $this->deviceS80) > -1 ||
|
344 |
stripos($this->useragent, $this->deviceS90) > -1)
|
345 |
-
return $this->true;
|
346 |
else
|
347 |
-
return $this->false;
|
348 |
}
|
349 |
|
350 |
//**************************
|
351 |
-
// Detects if the current browser is a
|
352 |
// Windows Phone 7 device.
|
353 |
function DetectWindowsPhone7()
|
354 |
{
|
355 |
if (stripos($this->useragent, $this->deviceWinPhone7) > -1)
|
356 |
-
return $this->true;
|
357 |
else
|
358 |
-
return $this->false;
|
359 |
}
|
360 |
|
361 |
//**************************
|
362 |
// Detects if the current browser is a Windows Mobile device.
|
363 |
-
// Excludes Windows Phone 7 devices.
|
364 |
// Focuses on Windows Mobile 6.xx and earlier.
|
365 |
function DetectWindowsMobile()
|
366 |
{
|
367 |
if ($this->DetectWindowsPhone7() == $this->true)
|
368 |
-
return $this->false;
|
369 |
-
//Most devices use 'Windows CE', but some report 'iemobile'
|
370 |
-
// and some older ones report as 'PIE' for Pocket IE.
|
371 |
if (stripos($this->useragent, $this->deviceWinMob) > -1 ||
|
372 |
stripos($this->useragent, $this->deviceIeMob) > -1 ||
|
373 |
stripos($this->useragent, $this->enginePie) > -1)
|
374 |
-
return $this->true;
|
375 |
//Test for Windows Mobile PPC but not old Macintosh PowerPC.
|
376 |
-
|
377 |
-
|
378 |
-
return $this->true;
|
379 |
//Test for certain Windwos Mobile-based HTC devices.
|
380 |
if (stripos($this->useragent, $this->manuHtc) > -1 &&
|
381 |
stripos($this->useragent, $this->deviceWindows) > -1)
|
382 |
-
return $this->true;
|
383 |
if ($this->DetectWapWml() == $this->true &&
|
384 |
-
stripos($this->useragent, $this->deviceWindows) > -1)
|
385 |
-
return $this->true;
|
386 |
else
|
387 |
-
return $this->false;
|
388 |
}
|
389 |
|
390 |
//**************************
|
391 |
-
// Detects if the current browser is
|
|
|
392 |
function DetectBlackBerry()
|
393 |
{
|
394 |
-
if (stripos($this->useragent, $this->deviceBB) > -1)
|
395 |
-
|
396 |
-
|
397 |
-
return $this->true;
|
398 |
else
|
399 |
-
return $this->false;
|
400 |
}
|
401 |
|
402 |
//**************************
|
@@ -405,48 +486,48 @@ class uagent_info
|
|
405 |
function DetectBlackBerryTablet()
|
406 |
{
|
407 |
if ((stripos($this->useragent, $this->deviceBBPlaybook) > -1))
|
408 |
-
|
409 |
-
return $this->true;
|
410 |
-
}
|
411 |
else
|
412 |
-
return $this->false;
|
413 |
}
|
414 |
|
415 |
//**************************
|
416 |
-
// Detects if the current browser is a BlackBerry device AND uses a
|
417 |
// WebKit-based browser. These are signatures for the new BlackBerry OS 6.
|
418 |
-
// Examples: Torch
|
419 |
function DetectBlackBerryWebKit()
|
420 |
{
|
421 |
-
if ((
|
422 |
-
|
423 |
-
return $this->true;
|
424 |
-
}
|
425 |
else
|
426 |
-
return $this->false;
|
427 |
}
|
428 |
|
429 |
//**************************
|
430 |
-
// Detects if the current browser is a BlackBerry Touch
|
431 |
-
//
|
432 |
function DetectBlackBerryTouch()
|
433 |
-
{
|
434 |
-
if ((stripos($this->useragent, $this->deviceBBStorm) > -1) ||
|
435 |
-
|
|
|
|
|
|
|
436 |
else
|
437 |
-
return $this->false;
|
438 |
}
|
439 |
|
440 |
//**************************
|
441 |
// Detects if the current browser is a BlackBerry OS 5 device AND
|
442 |
-
// has a more capable recent browser.
|
443 |
// Examples, Storm, Bold, Tour, Curve2
|
444 |
-
// Excludes the new BlackBerry OS 6 browser!!
|
445 |
function DetectBlackBerryHigh()
|
446 |
{
|
447 |
-
//Disambiguate for BlackBerry OS 6 (WebKit) browser
|
448 |
if ($this->DetectBlackBerryWebKit() == $this->true)
|
449 |
-
return $this->false;
|
450 |
if ($this->DetectBlackBerry() == $this->true)
|
451 |
{
|
452 |
if (($this->DetectBlackBerryTouch() == $this->true) ||
|
@@ -454,31 +535,32 @@ class uagent_info
|
|
454 |
stripos($this->useragent, $this->deviceBBTour) > -1 ||
|
455 |
stripos($this->useragent, $this->deviceBBCurve) > -1)
|
456 |
{
|
457 |
-
return $this->true;
|
458 |
}
|
459 |
else
|
460 |
-
return $this->false;
|
461 |
}
|
462 |
else
|
463 |
-
return $this->false;
|
464 |
}
|
465 |
|
466 |
//**************************
|
467 |
// Detects if the current browser is a BlackBerry device AND
|
468 |
-
// has an older, less capable browser.
|
469 |
// Examples: Pearl, 8800, Curve1.
|
470 |
function DetectBlackBerryLow()
|
471 |
{
|
472 |
if ($this->DetectBlackBerry() == $this->true)
|
473 |
{
|
474 |
//Assume that if it's not in the High tier, then it's Low.
|
475 |
-
if ($this->DetectBlackBerryHigh() == $this->true)
|
476 |
-
|
|
|
477 |
else
|
478 |
-
return $this->true;
|
479 |
}
|
480 |
else
|
481 |
-
return $this->false;
|
482 |
}
|
483 |
|
484 |
//**************************
|
@@ -494,10 +576,10 @@ class uagent_info
|
|
494 |
if ($this->DetectPalmWebOS() == $this->true)
|
495 |
return $this->false;
|
496 |
else
|
497 |
-
return $this->true;
|
498 |
}
|
499 |
else
|
500 |
-
return $this->false;
|
501 |
}
|
502 |
|
503 |
|
@@ -507,9 +589,20 @@ class uagent_info
|
|
507 |
function DetectPalmWebOS()
|
508 |
{
|
509 |
if (stripos($this->useragent, $this->deviceWebOS) > -1)
|
510 |
-
return $this->true;
|
511 |
else
|
512 |
-
return $this->false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
}
|
514 |
|
515 |
//**************************
|
@@ -518,9 +611,9 @@ class uagent_info
|
|
518 |
function DetectGarminNuvifone()
|
519 |
{
|
520 |
if (stripos($this->useragent, $this->deviceNuvifone) > -1)
|
521 |
-
return $this->true;
|
522 |
else
|
523 |
-
return $this->false;
|
524 |
}
|
525 |
|
526 |
|
@@ -529,28 +622,22 @@ class uagent_info
|
|
529 |
// in the 'smartphone' category.
|
530 |
function DetectSmartphone()
|
531 |
{
|
532 |
-
|
533 |
-
|
534 |
-
if ($this->
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
return $this->true;
|
546 |
-
if ($this->DetectPalmWebOS() == $this->true)
|
547 |
-
return $this->true;
|
548 |
-
if ($this->DetectPalmOS() == $this->true)
|
549 |
-
return $this->true;
|
550 |
-
if ($this->DetectGarminNuvifone() == $this->true)
|
551 |
-
return $this->true;
|
552 |
else
|
553 |
-
return $this->false;
|
554 |
}
|
555 |
|
556 |
|
@@ -559,9 +646,9 @@ class uagent_info
|
|
559 |
function DetectBrewDevice()
|
560 |
{
|
561 |
if (stripos($this->useragent, $this->deviceBrew) > -1)
|
562 |
-
return $this->true;
|
563 |
else
|
564 |
-
return $this->false;
|
565 |
}
|
566 |
|
567 |
//**************************
|
@@ -570,9 +657,9 @@ class uagent_info
|
|
570 |
{
|
571 |
if (stripos($this->useragent, $this->deviceDanger) > -1 ||
|
572 |
stripos($this->useragent, $this->deviceHiptop) > -1)
|
573 |
-
return $this->true;
|
574 |
else
|
575 |
-
return $this->false;
|
576 |
}
|
577 |
|
578 |
//**************************
|
@@ -583,12 +670,38 @@ class uagent_info
|
|
583 |
{
|
584 |
if ((stripos($this->useragent, $this->mini) > -1) ||
|
585 |
(stripos($this->useragent, $this->mobi) > -1))
|
586 |
-
return $this->true;
|
587 |
else
|
588 |
-
return $this->false;
|
589 |
}
|
590 |
else
|
591 |
-
return $this->false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
}
|
593 |
|
594 |
//**************************
|
@@ -597,68 +710,78 @@ class uagent_info
|
|
597 |
{
|
598 |
if (stripos($this->httpaccept, $this->vndwap) > -1 ||
|
599 |
stripos($this->httpaccept, $this->wml) > -1)
|
600 |
-
return $this->true;
|
601 |
else
|
602 |
-
return $this->false;
|
603 |
}
|
604 |
|
605 |
//**************************
|
606 |
-
// Detects if the current device is an Amazon Kindle.
|
|
|
607 |
function DetectKindle()
|
608 |
{
|
609 |
-
if (stripos($this->useragent, $this->deviceKindle) > -1
|
610 |
-
|
|
|
611 |
else
|
612 |
-
return $this->false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
}
|
614 |
|
615 |
|
616 |
//**************************
|
617 |
// The quick way to detect for a mobile device.
|
618 |
// Will probably detect most recent/current mid-tier Feature Phones
|
619 |
-
// as well as smartphone-class devices. Excludes Apple iPads.
|
620 |
function DetectMobileQuick()
|
621 |
{
|
622 |
-
//Let's
|
623 |
-
if ($this->
|
624 |
return $this->false;
|
625 |
-
|
626 |
//Most mobile browsing is done on smartphones
|
627 |
-
if ($this->DetectSmartphone() == $this->true)
|
628 |
return $this->true;
|
629 |
|
630 |
-
if ($this->DetectWapWml() == $this->true)
|
631 |
-
|
632 |
-
|
633 |
-
return $this->true;
|
634 |
-
if ($this->DetectOperaMobile() == $this->true)
|
635 |
return $this->true;
|
636 |
|
637 |
-
if (stripos($this->useragent, $this->engineNetfront) > -1)
|
638 |
-
|
639 |
-
|
640 |
-
return $this->true;
|
641 |
-
if (stripos($this->useragent, $this->engineOpenWeb) > -1)
|
642 |
-
return $this->true;
|
643 |
|
644 |
-
if ($this->DetectDangerHiptop() == $this->true)
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
return $this->true;
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
return $this->true;
|
654 |
-
|
655 |
-
if ((stripos($this->useragent, $this->devicePda) > -1) && (stripos($this->useragent, $this->disUpdate) < 0)) //no index found
|
656 |
-
return $this->true;
|
657 |
if (stripos($this->useragent, $this->mobile) > -1)
|
|
|
|
|
|
|
|
|
|
|
658 |
return $this->true;
|
659 |
|
660 |
else
|
661 |
-
return $this->false;
|
662 |
}
|
663 |
|
664 |
//**************************
|
@@ -666,21 +789,21 @@ class uagent_info
|
|
666 |
function DetectSonyPlaystation()
|
667 |
{
|
668 |
if (stripos($this->useragent, $this->devicePlaystation) > -1)
|
669 |
-
return $this->true;
|
670 |
else
|
671 |
-
return $this->false;
|
672 |
}
|
673 |
|
674 |
//**************************
|
675 |
// Detects if the current device is a Nintendo game device.
|
676 |
function DetectNintendo()
|
677 |
{
|
678 |
-
if (stripos($this->useragent, $this->deviceNintendo) > -1 ||
|
679 |
stripos($this->useragent, $this->deviceWii) > -1 ||
|
680 |
stripos($this->useragent, $this->deviceNintendoDs) > -1)
|
681 |
-
return $this->true;
|
682 |
else
|
683 |
-
return $this->false;
|
684 |
}
|
685 |
|
686 |
//**************************
|
@@ -688,34 +811,34 @@ class uagent_info
|
|
688 |
function DetectXbox()
|
689 |
{
|
690 |
if (stripos($this->useragent, $this->deviceXbox) > -1)
|
691 |
-
return $this->true;
|
692 |
else
|
693 |
-
return $this->false;
|
694 |
}
|
695 |
|
696 |
//**************************
|
697 |
// Detects if the current device is an Internet-capable game console.
|
698 |
function DetectGameConsole()
|
699 |
{
|
700 |
-
if ($this->DetectSonyPlaystation() == $this->true)
|
701 |
-
return $this->true;
|
702 |
-
else if ($this->DetectNintendo() == $this->true)
|
703 |
-
return $this->true;
|
704 |
-
else if ($this->DetectXbox() == $this->true)
|
705 |
-
return $this->true;
|
706 |
else
|
707 |
-
return $this->false;
|
708 |
}
|
709 |
|
710 |
//**************************
|
711 |
// Detects if the current device supports MIDP, a mobile Java technology.
|
712 |
function DetectMidpCapable()
|
713 |
{
|
714 |
-
if (stripos($this->useragent, $this->deviceMidp) > -1 ||
|
715 |
stripos($this->httpaccept, $this->deviceMidp) > -1)
|
716 |
-
return $this->true;
|
717 |
else
|
718 |
-
return $this->false;
|
719 |
}
|
720 |
|
721 |
//**************************
|
@@ -723,13 +846,15 @@ class uagent_info
|
|
723 |
function DetectMaemoTablet()
|
724 |
{
|
725 |
if (stripos($this->useragent, $this->maemo) > -1)
|
726 |
-
return $this->true;
|
727 |
-
//
|
728 |
-
if (stripos($this->useragent, $this->
|
729 |
-
|
730 |
-
|
|
|
|
|
731 |
else
|
732 |
-
return $this->false;
|
733 |
}
|
734 |
|
735 |
//**************************
|
@@ -737,9 +862,9 @@ class uagent_info
|
|
737 |
function DetectArchos()
|
738 |
{
|
739 |
if (stripos($this->useragent, $this->deviceArchos) > -1)
|
740 |
-
return $this->true;
|
741 |
else
|
742 |
-
return $this->false;
|
743 |
}
|
744 |
|
745 |
//**************************
|
@@ -751,51 +876,51 @@ class uagent_info
|
|
751 |
if ((stripos($this->useragent, $this->qtembedded) > -1) ||
|
752 |
(stripos($this->useragent, $this->mylocom2) > -1))
|
753 |
{
|
754 |
-
return $this->true;
|
755 |
}
|
756 |
else
|
757 |
-
return $this->false;
|
758 |
}
|
759 |
else
|
760 |
-
return $this->false;
|
761 |
}
|
762 |
|
763 |
|
764 |
//**************************
|
765 |
// The longer and more thorough way to detect for a mobile device.
|
766 |
// Will probably detect most feature phones,
|
767 |
-
// smartphone-class devices, Internet Tablets,
|
768 |
// Internet-enabled game consoles, etc.
|
769 |
// This ought to catch a lot of the more obscure and older devices, also --
|
770 |
// but no promises on thoroughness!
|
771 |
function DetectMobileLong()
|
772 |
{
|
773 |
-
if ($this->DetectMobileQuick() == $this->true)
|
774 |
-
return $this->true;
|
775 |
-
if ($this->DetectGameConsole() == $this->true)
|
776 |
-
return $this->true;
|
777 |
-
if ($this->DetectSonyMylo() == $this->true)
|
778 |
-
return $this->true;
|
779 |
-
|
780 |
-
//Detect older phones from certain manufacturers and operators.
|
781 |
if (stripos($this->useragent, $this->uplink) > -1)
|
782 |
-
return $this->true;
|
783 |
if (stripos($this->useragent, $this->manuSonyEricsson) > -1)
|
784 |
-
return $this->true;
|
785 |
if (stripos($this->useragent, $this->manuericsson) > -1)
|
786 |
-
return $this->true;
|
787 |
|
788 |
if (stripos($this->useragent, $this->manuSamsung1) > -1)
|
789 |
-
return $this->true;
|
790 |
if (stripos($this->useragent, $this->svcDocomo) > -1)
|
791 |
-
return $this->true;
|
792 |
if (stripos($this->useragent, $this->svcKddi) > -1)
|
793 |
-
return $this->true;
|
794 |
if (stripos($this->useragent, $this->svcVodafone) > -1)
|
795 |
-
return $this->true;
|
796 |
|
797 |
else
|
798 |
-
return $this->false;
|
799 |
}
|
800 |
|
801 |
|
@@ -808,56 +933,56 @@ class uagent_info
|
|
808 |
// The quick way to detect for a tier of devices.
|
809 |
// This method detects for the new generation of
|
810 |
// HTML 5 capable, larger screen tablets.
|
811 |
-
// Includes iPad, Android (e.g., Xoom), BB Playbook, etc.
|
812 |
function DetectTierTablet()
|
813 |
{
|
814 |
-
if ($this->DetectIpad() == $this->true)
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
return $this->true;
|
820 |
else
|
821 |
-
return $this->false;
|
822 |
}
|
823 |
|
824 |
|
825 |
//**************************
|
826 |
// The quick way to detect for a tier of devices.
|
827 |
-
// This method detects for devices which can
|
828 |
// display iPhone-optimized web content.
|
829 |
-
// Includes iPhone, iPod Touch, Android, WebOS, etc.
|
830 |
function DetectTierIphone()
|
831 |
{
|
832 |
-
if ($this->
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
if ($this->
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
return $this->true;
|
846 |
else
|
847 |
-
return $this->false;
|
848 |
}
|
849 |
|
850 |
//**************************
|
851 |
// The quick way to detect for a tier of devices.
|
852 |
-
// This method detects for devices which are likely to be capable
|
853 |
-
// of viewing CSS content optimized for the iPhone,
|
854 |
// but may not necessarily support JavaScript.
|
855 |
// Excludes all iPhone Tier devices.
|
856 |
function DetectTierRichCss()
|
857 |
{
|
858 |
-
if ($this->DetectMobileQuick() == $this->true)
|
859 |
{
|
860 |
-
|
|
|
|
|
861 |
return $this->false;
|
862 |
|
863 |
//The following devices are explicitly ok.
|
@@ -870,20 +995,18 @@ class uagent_info
|
|
870 |
if ($this->DetectBlackBerryHigh() == $this->true)
|
871 |
return $this->true;
|
872 |
|
873 |
-
//
|
874 |
-
if ($this->DetectWindowsPhone7() == $this->true)
|
875 |
-
return $this->true;
|
876 |
if ($this->DetectWindowsMobile() == $this->true)
|
877 |
return $this->true;
|
878 |
if (stripos($this->useragent, $this->engineTelecaQ) > -1)
|
879 |
return $this->true;
|
880 |
-
|
881 |
//default
|
882 |
else
|
883 |
return $this->false;
|
884 |
}
|
885 |
else
|
886 |
-
return $this->false;
|
887 |
}
|
888 |
|
889 |
//**************************
|
@@ -892,27 +1015,19 @@ class uagent_info
|
|
892 |
// but excludes the iPhone and RichCSS Tier devices.
|
893 |
function DetectTierOtherPhones()
|
894 |
{
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
return $this->false;
|
900 |
-
if ($this->DetectTierRichCss() == $this->true)
|
901 |
-
return $this->false;
|
902 |
-
|
903 |
-
//Otherwise, it's a YES
|
904 |
-
else
|
905 |
return $this->true;
|
906 |
-
}
|
907 |
else
|
908 |
-
return $this->false;
|
909 |
}
|
910 |
|
911 |
|
912 |
}
|
913 |
|
914 |
|
915 |
-
//Was informed by a MobileESP user that it's a best practice
|
916 |
// to omit the closing ?> marks here. They can sometimes
|
917 |
-
// cause errors with HTML headers.
|
918 |
-
?>
|
1 |
<?php
|
2 |
+
|
3 |
/* *******************************************
|
4 |
+
// Copyright 2010-2012, Anthony Hand
|
5 |
+
//
|
6 |
+
// File version date: April 23, 2012
|
7 |
+
// Update:
|
8 |
+
// - Updated DetectAmazonSilk(): Fixed an issue in the detection logic.
|
9 |
+
//
|
10 |
+
// File version date: April 22, 2012 - Second update
|
11 |
+
// Update: To address additional Kindle issues...
|
12 |
+
// - Updated DetectRichCSS(): Excluded e-Ink Kindle devices.
|
13 |
+
// - Created DetectAmazonSilk(): Created to detect Kindle Fire devices in Silk mode.
|
14 |
+
// - Updated DetectMobileQuick(): Updated to include e-Ink Kindle devices and the Kindle Fire in Silk mode.
|
15 |
+
//
|
16 |
+
// File version date: April 11, 2012
|
17 |
+
// Update:
|
18 |
+
// - Added a new variable for the new BlackBerry Curve Touch (9380): deviceBBCurveTouch.
|
19 |
+
// - Updated DetectBlackBerryTouch() to support the new BlackBerry Curve Touch (9380).
|
20 |
+
// - Updated DetectKindle(): Added the missing 'this' class identifier for the DetectAndroid() call.
|
21 |
//
|
22 |
+
// File version date: January 21, 2012
|
23 |
+
// Update:
|
24 |
+
// - Added the constructor method per new features in PHP 5.0: __construct().
|
25 |
+
// - Moved Windows Phone 7 to the iPhone Tier. WP7.5's IE 9-based browser is good enough now.
|
26 |
+
// - Added a new variable for 2 versions of the new BlackBerry Bold Touch (9900 and 9930): deviceBBBoldTouch.
|
27 |
+
// - Updated DetectBlackBerryTouch() to support the 2 versions of the new BlackBerry Bold Touch (9900 and 9930).
|
28 |
+
// - Updated DetectKindle() to focus on eInk devices only. The Kindle Fire should be detected as a regular Android device.
|
29 |
+
//
|
30 |
+
// File version date: August 22, 2011
|
31 |
+
// Update:
|
32 |
+
// - Updated DetectAndroidTablet() to fix a bug introduced in the last fix! The true/false returns were mixed up.
|
33 |
+
//
|
34 |
+
// File version date: August 16, 2011
|
35 |
+
// Update:
|
36 |
+
// - Updated DetectAndroidTablet() to exclude Opera Mini, which was falsely reporting as running on a tablet device when on a phone.
|
37 |
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
//
|
39 |
// LICENSE INFORMATION
|
40 |
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
41 |
+
// you may not use this file except in compliance with the License.
|
42 |
+
// You may obtain a copy of the License at
|
43 |
+
// http://www.apache.org/licenses/LICENSE-2.0
|
44 |
+
// Unless required by applicable law or agreed to in writing,
|
45 |
+
// software distributed under the License is distributed on an
|
46 |
+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
47 |
+
// either express or implied. See the License for the specific
|
48 |
+
// language governing permissions and limitations under the License.
|
49 |
//
|
50 |
//
|
51 |
// ABOUT THIS PROJECT
|
64 |
|
65 |
//**************************
|
66 |
// The uagent_info class encapsulates information about
|
67 |
+
// a browser's connection to your web site.
|
68 |
// You can use it to find out whether the browser asking for
|
69 |
// your site's content is probably running on a mobile device.
|
70 |
// The methods were written so you can be as granular as you want.
|
80 |
var $true = 1;
|
81 |
var $false = 0;
|
82 |
|
83 |
+
//Let's store values for quickly accessing the same info multiple times.
|
|
|
84 |
var $isIphone = 0; //Stores whether the device is an iPhone or iPod Touch.
|
85 |
+
var $isAndroidPhone = 0; //Stores whether the device is a (small-ish) Android phone or media player.
|
86 |
var $isTierTablet = 0; //Stores whether is the Tablet (HTML5-capable, larger screen) tier of devices.
|
87 |
var $isTierIphone = 0; //Stores whether is the iPhone tier of devices.
|
88 |
var $isTierRichCss = 0; //Stores whether the device can probably support Rich CSS, but JavaScript support is not assumed. (e.g., newer BlackBerry, Windows Mobile)
|
98 |
var $deviceAndroid = 'android';
|
99 |
var $deviceGoogleTV = 'googletv';
|
100 |
var $deviceXoom = 'xoom'; //Motorola Xoom
|
101 |
+
var $deviceHtcFlyer = 'htc_flyer'; //HTC Flyer
|
102 |
|
103 |
var $deviceNuvifone = 'nuvifone'; //Garmin Nuvifone
|
104 |
|
108 |
var $deviceS80 = 'series80';
|
109 |
var $deviceS90 = 'series90';
|
110 |
|
111 |
+
var $deviceWinPhone7 = 'windows phone os 7';
|
112 |
var $deviceWinMob = 'windows ce';
|
113 |
+
var $deviceWindows = 'windows';
|
114 |
var $deviceIeMob = 'iemobile';
|
115 |
var $devicePpc = 'ppc'; //Stands for PocketPC
|
116 |
var $enginePie = 'wm5 pie'; //An old Windows Mobile
|
118 |
var $deviceBB = 'blackberry';
|
119 |
var $vndRIM = 'vnd.rim'; //Detectable when BB devices emulate IE or Firefox
|
120 |
var $deviceBBStorm = 'blackberry95'; //Storm 1 and 2
|
121 |
+
var $deviceBBBold = 'blackberry97'; //Bold 97x0 (non-touch)
|
122 |
+
var $deviceBBBoldTouch = 'blackberry 99'; //Bold 99x0 (touchscreen)
|
123 |
var $deviceBBTour = 'blackberry96'; //Tour
|
124 |
var $deviceBBCurve = 'blackberry89'; //Curve2
|
125 |
+
var $deviceBBCurveTouch = 'blackberry 938'; //Curve Touch
|
126 |
var $deviceBBTorch = 'blackberry 98'; //Torch
|
127 |
var $deviceBBPlaybook = 'playbook'; //PlayBook tablet
|
128 |
|
129 |
var $devicePalm = 'palm';
|
130 |
+
var $deviceWebOS = 'webos'; //For Palm's line of WebOS devices
|
131 |
+
var $deviceWebOShp = 'hpwos'; //For HP's line of WebOS devices
|
132 |
+
|
133 |
var $engineBlazer = 'blazer'; //Old Palm browser
|
134 |
var $engineXiino = 'xiino'; //Another old Palm
|
135 |
|
136 |
+
var $deviceKindle = 'kindle'; //Amazon Kindle, eInk one
|
137 |
+
var $engineSilk = 'silk'; //Amazon's accelerated Silk browser for Kindle Fire
|
138 |
|
139 |
//Initialize variables for mobile-specific content.
|
140 |
var $vndwap = 'vnd.wap';
|
141 |
var $wml = 'wml';
|
142 |
|
143 |
//Initialize variables for other random devices and mobile browsers.
|
144 |
+
var $deviceTablet = 'tablet'; //Generic term for slate and tablet devices
|
145 |
var $deviceBrew = 'brew';
|
146 |
var $deviceDanger = 'danger';
|
147 |
var $deviceHiptop = 'hiptop';
|
167 |
|
168 |
//Use Maemo, Tablet, and Linux to test for Nokia's Internet Tablets.
|
169 |
var $maemo = 'maemo';
|
|
|
170 |
var $linux = 'linux';
|
171 |
var $qtembedded = 'qt embedded'; //for Sony Mylo and others
|
172 |
var $mylocom2 = 'com2'; //for Sony Mylo also
|
188 |
|
189 |
|
190 |
//**************************
|
191 |
+
//The constructor. Allows the latest PHP (5.0+) to locate a constructor object and initialize the object.
|
192 |
+
function __construct()
|
193 |
+
{
|
194 |
+
$this->uagent_info();
|
195 |
+
}
|
196 |
+
|
197 |
+
|
198 |
+
//**************************
|
199 |
+
//The object initializer. Initializes several default variables.
|
200 |
+
function uagent_info()
|
201 |
+
{
|
202 |
+
$this->useragent = isset($_SERVER['HTTP_USER_AGENT'])?strtolower($_SERVER['HTTP_USER_AGENT']):'';
|
203 |
+
$this->httpaccept = isset($_SERVER['HTTP_ACCEPT'])?strtolower($_SERVER['HTTP_ACCEPT']):'';
|
204 |
+
|
205 |
+
//Let's initialize some values to save cycles later.
|
206 |
+
$this->InitDeviceScan();
|
207 |
}
|
208 |
|
209 |
//**************************
|
210 |
// Initialize Key Stored Values.
|
211 |
function InitDeviceScan()
|
212 |
{
|
213 |
+
global $isIphone, $isAndroidPhone, $isTierTablet, $isTierIphone;
|
214 |
|
215 |
+
//We'll use these 4 variables to speed other processing. They're super common.
|
216 |
$this->isIphone = $this->DetectIphoneOrIpod();
|
217 |
+
$this->isAndroidPhone = $this->DetectAndroidPhone();
|
218 |
$this->isTierIphone = $this->DetectTierIphone();
|
219 |
+
$this->isTierTablet = $this->DetectTierTablet();
|
220 |
+
|
221 |
+
//Optional: Comment these out if you don't need them.
|
222 |
+
global $isTierRichCss, $isTierGenericMobile;
|
223 |
$this->isTierRichCss = $this->DetectTierRichCss();
|
224 |
$this->isTierGenericMobile = $this->DetectTierOtherPhones();
|
225 |
}
|
227 |
//**************************
|
228 |
//Returns the contents of the User Agent value, in lower case.
|
229 |
function Get_Uagent()
|
230 |
+
{
|
231 |
return $this->useragent;
|
232 |
}
|
233 |
|
234 |
//**************************
|
235 |
//Returns the contents of the HTTP Accept value, in lower case.
|
236 |
function Get_HttpAccept()
|
237 |
+
{
|
238 |
return $this->httpaccept;
|
239 |
}
|
240 |
+
|
241 |
|
242 |
//**************************
|
243 |
// Detects if the current device is an iPhone.
|
245 |
{
|
246 |
if (stripos($this->useragent, $this->deviceIphone) > -1)
|
247 |
{
|
248 |
+
//The iPad and iPod Touch say they're an iPhone. So let's disambiguate.
|
249 |
if ($this->DetectIpad() == $this->true ||
|
250 |
$this->DetectIpod() == $this->true)
|
|
|
251 |
return $this->false;
|
252 |
+
//Yay! It's an iPhone!
|
253 |
else
|
254 |
+
return $this->true;
|
255 |
}
|
256 |
else
|
257 |
+
return $this->false;
|
258 |
}
|
259 |
|
260 |
//**************************
|
262 |
function DetectIpod()
|
263 |
{
|
264 |
if (stripos($this->useragent, $this->deviceIpod) > -1)
|
265 |
+
return $this->true;
|
266 |
else
|
267 |
+
return $this->false;
|
268 |
}
|
269 |
|
270 |
//**************************
|
273 |
{
|
274 |
if (stripos($this->useragent, $this->deviceIpad) > -1 &&
|
275 |
$this->DetectWebkit() == $this->true)
|
276 |
+
return $this->true;
|
277 |
else
|
278 |
+
return $this->false;
|
279 |
}
|
280 |
|
281 |
//**************************
|
285 |
//We repeat the searches here because some iPods may report themselves as an iPhone, which would be okay.
|
286 |
if (stripos($this->useragent, $this->deviceIphone) > -1 ||
|
287 |
stripos($this->useragent, $this->deviceIpod) > -1)
|
288 |
+
return $this->true;
|
289 |
+
else
|
290 |
+
return $this->false;
|
291 |
+
}
|
292 |
+
|
293 |
+
//**************************
|
294 |
+
// Detects *any* iOS device: iPhone, iPod Touch, iPad.
|
295 |
+
function DetectIos()
|
296 |
+
{
|
297 |
+
if (($this->DetectIphoneOrIpod() == $this->true) ||
|
298 |
+
($this->DetectIpad() == $this->true))
|
299 |
+
return $this->true;
|
300 |
else
|
301 |
return $this->false;
|
302 |
}
|
303 |
|
304 |
+
|
305 |
//**************************
|
306 |
+
// Detects *any* Android OS-based device: phone, tablet, and multi-media player.
|
307 |
+
// Also detects Google TV.
|
308 |
function DetectAndroid()
|
309 |
{
|
310 |
+
if ((stripos($this->useragent, $this->deviceAndroid) > -1) ||
|
311 |
+
($this->DetectGoogleTV() == $this->true))
|
312 |
+
return $this->true;
|
313 |
+
//Special check for the HTC Flyer 7" tablet
|
314 |
+
if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
|
315 |
+
return $this->true;
|
316 |
else
|
317 |
+
return $this->false;
|
318 |
}
|
319 |
|
320 |
//**************************
|
321 |
+
// Detects if the current device is a (small-ish) Android OS-based device
|
322 |
+
// used for calling and/or multi-media (like a Samsung Galaxy Player).
|
323 |
+
// Google says these devices will have 'Android' AND 'mobile' in user agent.
|
324 |
+
// Ignores tablets (Honeycomb and later).
|
325 |
+
function DetectAndroidPhone()
|
326 |
{
|
327 |
+
if (($this->DetectAndroid() == $this->true) &&
|
328 |
+
(stripos($this->useragent, $this->mobile) > -1))
|
329 |
+
return $this->true;
|
330 |
+
//Special check for Android phones with Opera Mobile. They should report here.
|
331 |
+
if (($this->DetectOperaAndroidPhone() == $this->true))
|
332 |
+
return $this->true;
|
333 |
+
//Special check for the HTC Flyer 7" tablet. It should report here.
|
334 |
+
if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
|
335 |
+
return $this->true;
|
336 |
else
|
337 |
+
return $this->false;
|
338 |
+
}
|
339 |
+
|
340 |
+
//**************************
|
341 |
+
// Detects if the current device is a (self-reported) Android tablet.
|
342 |
+
// Google says these devices will have 'Android' and NOT 'mobile' in their user agent.
|
343 |
+
function DetectAndroidTablet()
|
344 |
+
{
|
345 |
+
//First, let's make sure we're on an Android device.
|
346 |
+
if ($this->DetectAndroid() == $this->false)
|
347 |
+
return $this->false;
|
348 |
+
|
349 |
+
//Special check for Opera Android Phones. They should NOT report here.
|
350 |
+
if ($this->DetectOperaMobile() == $this->true)
|
351 |
+
return $this->false;
|
352 |
+
//Special check for the HTC Flyer 7" tablet. It should NOT report here.
|
353 |
+
if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
|
354 |
+
return $this->false;
|
355 |
+
|
356 |
+
//Otherwise, if it's Android and does NOT have 'mobile' in it, Google says it's a tablet.
|
357 |
+
if (stripos($this->useragent, $this->mobile) > -1)
|
358 |
return $this->false;
|
359 |
+
else
|
360 |
+
return $this->true;
|
361 |
}
|
362 |
|
363 |
//**************************
|
365 |
// the browser is based on WebKit.
|
366 |
function DetectAndroidWebKit()
|
367 |
{
|
368 |
+
if (($this->DetectAndroid() == $this->true) &&
|
369 |
+
($this->DetectWebkit() == $this->true))
|
370 |
+
return $this->true;
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
else
|
372 |
+
return $this->false;
|
373 |
}
|
374 |
|
375 |
//**************************
|
377 |
function DetectGoogleTV()
|
378 |
{
|
379 |
if (stripos($this->useragent, $this->deviceGoogleTV) > -1)
|
380 |
+
return $this->true;
|
381 |
else
|
382 |
+
return $this->false;
|
383 |
}
|
384 |
|
385 |
//**************************
|
387 |
function DetectWebkit()
|
388 |
{
|
389 |
if (stripos($this->useragent, $this->engineWebKit) > -1)
|
390 |
+
return $this->true;
|
391 |
else
|
392 |
+
return $this->false;
|
393 |
}
|
394 |
|
395 |
|
406 |
return $this->true;
|
407 |
}
|
408 |
else
|
409 |
+
return $this->false;
|
410 |
}
|
411 |
else
|
412 |
+
return $this->false;
|
413 |
}
|
414 |
|
415 |
//**************************
|
416 |
// Detects if the current device is any Symbian OS-based device,
|
417 |
+
// including older S60, Series 70, Series 80, Series 90, and UIQ,
|
418 |
// or other browsers running on these devices.
|
419 |
function DetectSymbianOS()
|
420 |
{
|
421 |
+
if (stripos($this->useragent, $this->deviceSymbian) > -1 ||
|
422 |
stripos($this->useragent, $this->deviceS60) > -1 ||
|
423 |
+
stripos($this->useragent, $this->deviceS70) > -1 ||
|
424 |
stripos($this->useragent, $this->deviceS80) > -1 ||
|
425 |
stripos($this->useragent, $this->deviceS90) > -1)
|
426 |
+
return $this->true;
|
427 |
else
|
428 |
+
return $this->false;
|
429 |
}
|
430 |
|
431 |
//**************************
|
432 |
+
// Detects if the current browser is a
|
433 |
// Windows Phone 7 device.
|
434 |
function DetectWindowsPhone7()
|
435 |
{
|
436 |
if (stripos($this->useragent, $this->deviceWinPhone7) > -1)
|
437 |
+
return $this->true;
|
438 |
else
|
439 |
+
return $this->false;
|
440 |
}
|
441 |
|
442 |
//**************************
|
443 |
// Detects if the current browser is a Windows Mobile device.
|
444 |
+
// Excludes Windows Phone 7 devices.
|
445 |
// Focuses on Windows Mobile 6.xx and earlier.
|
446 |
function DetectWindowsMobile()
|
447 |
{
|
448 |
if ($this->DetectWindowsPhone7() == $this->true)
|
449 |
+
return $this->false;
|
450 |
+
//Most devices use 'Windows CE', but some report 'iemobile'
|
451 |
+
// and some older ones report as 'PIE' for Pocket IE.
|
452 |
if (stripos($this->useragent, $this->deviceWinMob) > -1 ||
|
453 |
stripos($this->useragent, $this->deviceIeMob) > -1 ||
|
454 |
stripos($this->useragent, $this->enginePie) > -1)
|
455 |
+
return $this->true;
|
456 |
//Test for Windows Mobile PPC but not old Macintosh PowerPC.
|
457 |
+
if (stripos($this->useragent, $this->devicePpc) > -1
|
458 |
+
&& !(stripos($this->useragent, $this->deviceMacPpc) > 1))
|
459 |
+
return $this->true;
|
460 |
//Test for certain Windwos Mobile-based HTC devices.
|
461 |
if (stripos($this->useragent, $this->manuHtc) > -1 &&
|
462 |
stripos($this->useragent, $this->deviceWindows) > -1)
|
463 |
+
return $this->true;
|
464 |
if ($this->DetectWapWml() == $this->true &&
|
465 |
+
stripos($this->useragent, $this->deviceWindows) > -1)
|
466 |
+
return $this->true;
|
467 |
else
|
468 |
+
return $this->false;
|
469 |
}
|
470 |
|
471 |
//**************************
|
472 |
+
// Detects if the current browser is any BlackBerry device.
|
473 |
+
// Includes the PlayBook.
|
474 |
function DetectBlackBerry()
|
475 |
{
|
476 |
+
if ((stripos($this->useragent, $this->deviceBB) > -1) ||
|
477 |
+
(stripos($this->httpaccept, $this->vndRIM) > -1))
|
478 |
+
return $this->true;
|
|
|
479 |
else
|
480 |
+
return $this->false;
|
481 |
}
|
482 |
|
483 |
//**************************
|
486 |
function DetectBlackBerryTablet()
|
487 |
{
|
488 |
if ((stripos($this->useragent, $this->deviceBBPlaybook) > -1))
|
489 |
+
return $this->true;
|
|
|
|
|
490 |
else
|
491 |
+
return $this->false;
|
492 |
}
|
493 |
|
494 |
//**************************
|
495 |
+
// Detects if the current browser is a BlackBerry phone device AND uses a
|
496 |
// WebKit-based browser. These are signatures for the new BlackBerry OS 6.
|
497 |
+
// Examples: Torch. Includes the Playbook.
|
498 |
function DetectBlackBerryWebKit()
|
499 |
{
|
500 |
+
if (($this->DetectBlackBerry() == $this->true) &&
|
501 |
+
($this->DetectWebkit() == $this->true))
|
502 |
+
return $this->true;
|
|
|
503 |
else
|
504 |
+
return $this->false;
|
505 |
}
|
506 |
|
507 |
//**************************
|
508 |
+
// Detects if the current browser is a BlackBerry Touch phone device with
|
509 |
+
// a large screen, such as the Storm, Torch, and Bold Touch. Excludes the Playbook.
|
510 |
function DetectBlackBerryTouch()
|
511 |
+
{
|
512 |
+
if ((stripos($this->useragent, $this->deviceBBStorm) > -1) ||
|
513 |
+
(stripos($this->useragent, $this->deviceBBTorch) > -1) ||
|
514 |
+
(stripos($this->useragent, $this->deviceBBBoldTouch) > -1) ||
|
515 |
+
(stripos($this->useragent, $this->deviceBBCurveTouch) > -1))
|
516 |
+
return $this->true;
|
517 |
else
|
518 |
+
return $this->false;
|
519 |
}
|
520 |
|
521 |
//**************************
|
522 |
// Detects if the current browser is a BlackBerry OS 5 device AND
|
523 |
+
// has a more capable recent browser. Excludes the Playbook.
|
524 |
// Examples, Storm, Bold, Tour, Curve2
|
525 |
+
// Excludes the new BlackBerry OS 6 and 7 browser!!
|
526 |
function DetectBlackBerryHigh()
|
527 |
{
|
528 |
+
//Disambiguate for BlackBerry OS 6 or 7 (WebKit) browser
|
529 |
if ($this->DetectBlackBerryWebKit() == $this->true)
|
530 |
+
return $this->false;
|
531 |
if ($this->DetectBlackBerry() == $this->true)
|
532 |
{
|
533 |
if (($this->DetectBlackBerryTouch() == $this->true) ||
|
535 |
stripos($this->useragent, $this->deviceBBTour) > -1 ||
|
536 |
stripos($this->useragent, $this->deviceBBCurve) > -1)
|
537 |
{
|
538 |
+
return $this->true;
|
539 |
}
|
540 |
else
|
541 |
+
return $this->false;
|
542 |
}
|
543 |
else
|
544 |
+
return $this->false;
|
545 |
}
|
546 |
|
547 |
//**************************
|
548 |
// Detects if the current browser is a BlackBerry device AND
|
549 |
+
// has an older, less capable browser.
|
550 |
// Examples: Pearl, 8800, Curve1.
|
551 |
function DetectBlackBerryLow()
|
552 |
{
|
553 |
if ($this->DetectBlackBerry() == $this->true)
|
554 |
{
|
555 |
//Assume that if it's not in the High tier, then it's Low.
|
556 |
+
if (($this->DetectBlackBerryHigh() == $this->true) ||
|
557 |
+
($this->DetectBlackBerryWebKit() == $this->true))
|
558 |
+
return $this->false;
|
559 |
else
|
560 |
+
return $this->true;
|
561 |
}
|
562 |
else
|
563 |
+
return $this->false;
|
564 |
}
|
565 |
|
566 |
//**************************
|
576 |
if ($this->DetectPalmWebOS() == $this->true)
|
577 |
return $this->false;
|
578 |
else
|
579 |
+
return $this->true;
|
580 |
}
|
581 |
else
|
582 |
+
return $this->false;
|
583 |
}
|
584 |
|
585 |
|
589 |
function DetectPalmWebOS()
|
590 |
{
|
591 |
if (stripos($this->useragent, $this->deviceWebOS) > -1)
|
592 |
+
return $this->true;
|
593 |
else
|
594 |
+
return $this->false;
|
595 |
+
}
|
596 |
+
|
597 |
+
//**************************
|
598 |
+
// Detects if the current browser is on an HP tablet running WebOS.
|
599 |
+
function DetectWebOSTablet()
|
600 |
+
{
|
601 |
+
if ((stripos($this->useragent, $this->deviceWebOShp) > -1)
|
602 |
+
&& (stripos($this->useragent, $this->deviceTablet) > -1))
|
603 |
+
return $this->true;
|
604 |
+
else
|
605 |
+
return $this->false;
|
606 |
}
|
607 |
|
608 |
//**************************
|
611 |
function DetectGarminNuvifone()
|
612 |
{
|
613 |
if (stripos($this->useragent, $this->deviceNuvifone) > -1)
|
614 |
+
return $this->true;
|
615 |
else
|
616 |
+
return $this->false;
|
617 |
}
|
618 |
|
619 |
|
622 |
// in the 'smartphone' category.
|
623 |
function DetectSmartphone()
|
624 |
{
|
625 |
+
global $isIphone, $isAndroidPhone, $isTierIphone;
|
626 |
+
|
627 |
+
if (($this->isIphone == $this->true)
|
628 |
+
|| ($this->isAndroidPhone == $this->true)
|
629 |
+
|| ($this->isTierIphone == $this->true)
|
630 |
+
|| ($this->DetectS60OssBrowser() == $this->true)
|
631 |
+
|| ($this->DetectSymbianOS() == $this->true)
|
632 |
+
|| ($this->DetectWindowsMobile() == $this->true)
|
633 |
+
|| ($this->DetectWindowsPhone7() == $this->true)
|
634 |
+
|| ($this->DetectBlackBerry() == $this->true)
|
635 |
+
|| ($this->DetectPalmWebOS() == $this->true)
|
636 |
+
|| ($this->DetectPalmOS() == $this->true)
|
637 |
+
|| ($this->DetectGarminNuvifone() == $this->true))
|
638 |
+
return $this->true;
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
else
|
640 |
+
return $this->false;
|
641 |
}
|
642 |
|
643 |
|
646 |
function DetectBrewDevice()
|
647 |
{
|
648 |
if (stripos($this->useragent, $this->deviceBrew) > -1)
|
649 |
+
return $this->true;
|
650 |
else
|
651 |
+
return $this->false;
|
652 |
}
|
653 |
|
654 |
//**************************
|
657 |
{
|
658 |
if (stripos($this->useragent, $this->deviceDanger) > -1 ||
|
659 |
stripos($this->useragent, $this->deviceHiptop) > -1)
|
660 |
+
return $this->true;
|
661 |
else
|
662 |
+
return $this->false;
|
663 |
}
|
664 |
|
665 |
//**************************
|
670 |
{
|
671 |
if ((stripos($this->useragent, $this->mini) > -1) ||
|
672 |
(stripos($this->useragent, $this->mobi) > -1))
|
673 |
+
return $this->true;
|
674 |
else
|
675 |
+
return $this->false;
|
676 |
}
|
677 |
else
|
678 |
+
return $this->false;
|
679 |
+
}
|
680 |
+
|
681 |
+
//**************************
|
682 |
+
// Detects if the current browser is Opera Mobile
|
683 |
+
// running on an Android phone.
|
684 |
+
function DetectOperaAndroidPhone()
|
685 |
+
{
|
686 |
+
if ((stripos($this->useragent, $this->engineOpera) > -1) &&
|
687 |
+
(stripos($this->useragent, $this->deviceAndroid) > -1) &&
|
688 |
+
(stripos($this->useragent, $this->mobi) > -1))
|
689 |
+
return $this->true;
|
690 |
+
else
|
691 |
+
return $this->false;
|
692 |
+
}
|
693 |
+
|
694 |
+
//**************************
|
695 |
+
// Detects if the current browser is Opera Mobile
|
696 |
+
// running on an Android tablet.
|
697 |
+
function DetectOperaAndroidTablet()
|
698 |
+
{
|
699 |
+
if ((stripos($this->useragent, $this->engineOpera) > -1) &&
|
700 |
+
(stripos($this->useragent, $this->deviceAndroid) > -1) &&
|
701 |
+
(stripos($this->useragent, $this->deviceTablet) > -1))
|
702 |
+
return $this->true;
|
703 |
+
else
|
704 |
+
return $this->false;
|
705 |
}
|
706 |
|
707 |
//**************************
|
710 |
{
|
711 |
if (stripos($this->httpaccept, $this->vndwap) > -1 ||
|
712 |
stripos($this->httpaccept, $this->wml) > -1)
|
713 |
+
return $this->true;
|
714 |
else
|
715 |
+
return $this->false;
|
716 |
}
|
717 |
|
718 |
//**************************
|
719 |
+
// Detects if the current device is an Amazon Kindle (eInk devices only).
|
720 |
+
// Note: For the Kindle Fire, use the normal Android methods.
|
721 |
function DetectKindle()
|
722 |
{
|
723 |
+
if (stripos($this->useragent, $this->deviceKindle) > -1 &&
|
724 |
+
$this->DetectAndroid() == $this->false)
|
725 |
+
return $this->true;
|
726 |
else
|
727 |
+
return $this->false;
|
728 |
+
}
|
729 |
+
|
730 |
+
//**************************
|
731 |
+
// Detects if the current Amazon device is using the Silk Browser.
|
732 |
+
// Note: Typically used by the the Kindle Fire.
|
733 |
+
function DetectAmazonSilk()
|
734 |
+
{
|
735 |
+
if (stripos($this->useragent, $this->engineSilk) > -1)
|
736 |
+
return $this->true;
|
737 |
+
else
|
738 |
+
return $this->false;
|
739 |
}
|
740 |
|
741 |
|
742 |
//**************************
|
743 |
// The quick way to detect for a mobile device.
|
744 |
// Will probably detect most recent/current mid-tier Feature Phones
|
745 |
+
// as well as smartphone-class devices. Excludes Apple iPads and other modern tablets.
|
746 |
function DetectMobileQuick()
|
747 |
{
|
748 |
+
//Let's exclude tablets
|
749 |
+
if ($this->isTierTablet == $this->true)
|
750 |
return $this->false;
|
751 |
+
|
752 |
//Most mobile browsing is done on smartphones
|
753 |
+
if ($this->DetectSmartphone() == $this->true)
|
754 |
return $this->true;
|
755 |
|
756 |
+
if (($this->DetectWapWml() == $this->true)
|
757 |
+
|| ($this->DetectBrewDevice() == $this->true)
|
758 |
+
|| ($this->DetectOperaMobile() == $this->true))
|
|
|
|
|
759 |
return $this->true;
|
760 |
|
761 |
+
if ((stripos($this->useragent, $this->engineNetfront) > -1)
|
762 |
+
|| (stripos($this->useragent, $this->engineUpBrowser) > -1)
|
763 |
+
|| (stripos($this->useragent, $this->engineOpenWeb) > -1))
|
764 |
+
return $this->true;
|
|
|
|
|
765 |
|
766 |
+
if (($this->DetectDangerHiptop() == $this->true)
|
767 |
+
|| ($this->DetectMidpCapable() == $this->true)
|
768 |
+
|| ($this->DetectMaemoTablet() == $this->true)
|
769 |
+
|| ($this->DetectArchos() == $this->true))
|
770 |
+
return $this->true;
|
771 |
+
|
772 |
+
if ((stripos($this->useragent, $this->devicePda) > -1) &&
|
773 |
+
!(stripos($this->useragent, $this->disUpdate) > -1))
|
774 |
+
return $this->true;
|
|
|
|
|
|
|
|
|
775 |
if (stripos($this->useragent, $this->mobile) > -1)
|
776 |
+
return $this->true;
|
777 |
+
|
778 |
+
//We also look for Kindle devices
|
779 |
+
if ($this->DetectKindle() == $this->true ||
|
780 |
+
$this->DetectAmazonSilk() == $this->true)
|
781 |
return $this->true;
|
782 |
|
783 |
else
|
784 |
+
return $this->false;
|
785 |
}
|
786 |
|
787 |
//**************************
|
789 |
function DetectSonyPlaystation()
|
790 |
{
|
791 |
if (stripos($this->useragent, $this->devicePlaystation) > -1)
|
792 |
+
return $this->true;
|
793 |
else
|
794 |
+
return $this->false;
|
795 |
}
|
796 |
|
797 |
//**************************
|
798 |
// Detects if the current device is a Nintendo game device.
|
799 |
function DetectNintendo()
|
800 |
{
|
801 |
+
if (stripos($this->useragent, $this->deviceNintendo) > -1 ||
|
802 |
stripos($this->useragent, $this->deviceWii) > -1 ||
|
803 |
stripos($this->useragent, $this->deviceNintendoDs) > -1)
|
804 |
+
return $this->true;
|
805 |
else
|
806 |
+
return $this->false;
|
807 |
}
|
808 |
|
809 |
//**************************
|
811 |
function DetectXbox()
|
812 |
{
|
813 |
if (stripos($this->useragent, $this->deviceXbox) > -1)
|
814 |
+
return $this->true;
|
815 |
else
|
816 |
+
return $this->false;
|
817 |
}
|
818 |
|
819 |
//**************************
|
820 |
// Detects if the current device is an Internet-capable game console.
|
821 |
function DetectGameConsole()
|
822 |
{
|
823 |
+
if ($this->DetectSonyPlaystation() == $this->true)
|
824 |
+
return $this->true;
|
825 |
+
else if ($this->DetectNintendo() == $this->true)
|
826 |
+
return $this->true;
|
827 |
+
else if ($this->DetectXbox() == $this->true)
|
828 |
+
return $this->true;
|
829 |
else
|
830 |
+
return $this->false;
|
831 |
}
|
832 |
|
833 |
//**************************
|
834 |
// Detects if the current device supports MIDP, a mobile Java technology.
|
835 |
function DetectMidpCapable()
|
836 |
{
|
837 |
+
if (stripos($this->useragent, $this->deviceMidp) > -1 ||
|
838 |
stripos($this->httpaccept, $this->deviceMidp) > -1)
|
839 |
+
return $this->true;
|
840 |
else
|
841 |
+
return $this->false;
|
842 |
}
|
843 |
|
844 |
//**************************
|
846 |
function DetectMaemoTablet()
|
847 |
{
|
848 |
if (stripos($this->useragent, $this->maemo) > -1)
|
849 |
+
return $this->true;
|
850 |
+
//For Nokia N810, must be Linux + Tablet, or else it could be something else.
|
851 |
+
if ((stripos($this->useragent, $this->linux) > -1)
|
852 |
+
&& (stripos($this->useragent, $this->deviceTablet) > -1)
|
853 |
+
&& ($this->DetectWebOSTablet() == $this->false)
|
854 |
+
&& ($this->DetectAndroid() == $this->false))
|
855 |
+
return $this->true;
|
856 |
else
|
857 |
+
return $this->false;
|
858 |
}
|
859 |
|
860 |
//**************************
|
862 |
function DetectArchos()
|
863 |
{
|
864 |
if (stripos($this->useragent, $this->deviceArchos) > -1)
|
865 |
+
return $this->true;
|
866 |
else
|
867 |
+
return $this->false;
|
868 |
}
|
869 |
|
870 |
//**************************
|
876 |
if ((stripos($this->useragent, $this->qtembedded) > -1) ||
|
877 |
(stripos($this->useragent, $this->mylocom2) > -1))
|
878 |
{
|
879 |
+
return $this->true;
|
880 |
}
|
881 |
else
|
882 |
+
return $this->false;
|
883 |
}
|
884 |
else
|
885 |
+
return $this->false;
|
886 |
}
|
887 |
|
888 |
|
889 |
//**************************
|
890 |
// The longer and more thorough way to detect for a mobile device.
|
891 |
// Will probably detect most feature phones,
|
892 |
+
// smartphone-class devices, Internet Tablets,
|
893 |
// Internet-enabled game consoles, etc.
|
894 |
// This ought to catch a lot of the more obscure and older devices, also --
|
895 |
// but no promises on thoroughness!
|
896 |
function DetectMobileLong()
|
897 |
{
|
898 |
+
if ($this->DetectMobileQuick() == $this->true)
|
899 |
+
return $this->true;
|
900 |
+
if ($this->DetectGameConsole() == $this->true)
|
901 |
+
return $this->true;
|
902 |
+
if ($this->DetectSonyMylo() == $this->true)
|
903 |
+
return $this->true;
|
904 |
+
|
905 |
+
//Detect older phones from certain manufacturers and operators.
|
906 |
if (stripos($this->useragent, $this->uplink) > -1)
|
907 |
+
return $this->true;
|
908 |
if (stripos($this->useragent, $this->manuSonyEricsson) > -1)
|
909 |
+
return $this->true;
|
910 |
if (stripos($this->useragent, $this->manuericsson) > -1)
|
911 |
+
return $this->true;
|
912 |
|
913 |
if (stripos($this->useragent, $this->manuSamsung1) > -1)
|
914 |
+
return $this->true;
|
915 |
if (stripos($this->useragent, $this->svcDocomo) > -1)
|
916 |
+
return $this->true;
|
917 |
if (stripos($this->useragent, $this->svcKddi) > -1)
|
918 |
+
return $this->true;
|
919 |
if (stripos($this->useragent, $this->svcVodafone) > -1)
|
920 |
+
return $this->true;
|
921 |
|
922 |
else
|
923 |
+
return $this->false;
|
924 |
}
|
925 |
|
926 |
|
933 |
// The quick way to detect for a tier of devices.
|
934 |
// This method detects for the new generation of
|
935 |
// HTML 5 capable, larger screen tablets.
|
936 |
+
// Includes iPad, Android (e.g., Xoom), BB Playbook, WebOS, etc.
|
937 |
function DetectTierTablet()
|
938 |
{
|
939 |
+
if (($this->DetectIpad() == $this->true)
|
940 |
+
|| ($this->DetectAndroidTablet() == $this->true)
|
941 |
+
|| ($this->DetectBlackBerryTablet() == $this->true)
|
942 |
+
|| ($this->DetectWebOSTablet() == $this->true))
|
943 |
+
return $this->true;
|
|
|
944 |
else
|
945 |
+
return $this->false;
|
946 |
}
|
947 |
|
948 |
|
949 |
//**************************
|
950 |
// The quick way to detect for a tier of devices.
|
951 |
+
// This method detects for devices which can
|
952 |
// display iPhone-optimized web content.
|
953 |
+
// Includes iPhone, iPod Touch, Android, Windows Phone 7, WebOS, etc.
|
954 |
function DetectTierIphone()
|
955 |
{
|
956 |
+
if (($this->isIphone == $this->true) ||
|
957 |
+
($this->isAndroidPhone == $this->true))
|
958 |
+
return $this->true;
|
959 |
+
|
960 |
+
if (($this->DetectBlackBerryWebKit() == $this->true) &&
|
961 |
+
($this->DetectBlackBerryTouch() == $this->true))
|
962 |
+
return $this->true;
|
963 |
+
if ($this->DetectWindowsPhone7() == $this->true)
|
964 |
+
return $this->true;
|
965 |
+
if ($this->DetectPalmWebOS() == $this->true)
|
966 |
+
return $this->true;
|
967 |
+
if ($this->DetectGarminNuvifone() == $this->true)
|
968 |
+
return $this->true;
|
|
|
969 |
else
|
970 |
+
return $this->false;
|
971 |
}
|
972 |
|
973 |
//**************************
|
974 |
// The quick way to detect for a tier of devices.
|
975 |
+
// This method detects for devices which are likely to be capable
|
976 |
+
// of viewing CSS content optimized for the iPhone,
|
977 |
// but may not necessarily support JavaScript.
|
978 |
// Excludes all iPhone Tier devices.
|
979 |
function DetectTierRichCss()
|
980 |
{
|
981 |
+
if ($this->DetectMobileQuick() == $this->true)
|
982 |
{
|
983 |
+
//Exclude iPhone Tier and e-Ink Kindle devices
|
984 |
+
if (($this->DetectTierIphone() == $this->true) ||
|
985 |
+
($this->DetectKindle() == $this->true))
|
986 |
return $this->false;
|
987 |
|
988 |
//The following devices are explicitly ok.
|
995 |
if ($this->DetectBlackBerryHigh() == $this->true)
|
996 |
return $this->true;
|
997 |
|
998 |
+
//Older Windows 'Mobile' isn't good enough for iPhone Tier.
|
|
|
|
|
999 |
if ($this->DetectWindowsMobile() == $this->true)
|
1000 |
return $this->true;
|
1001 |
if (stripos($this->useragent, $this->engineTelecaQ) > -1)
|
1002 |
return $this->true;
|
1003 |
+
|
1004 |
//default
|
1005 |
else
|
1006 |
return $this->false;
|
1007 |
}
|
1008 |
else
|
1009 |
+
return $this->false;
|
1010 |
}
|
1011 |
|
1012 |
//**************************
|
1015 |
// but excludes the iPhone and RichCSS Tier devices.
|
1016 |
function DetectTierOtherPhones()
|
1017 |
{
|
1018 |
+
//Exclude devices in the other 2 categories
|
1019 |
+
if (($this->DetectMobileLong() == $this->true)
|
1020 |
+
&& ($this->DetectTierIphone() == $this->false)
|
1021 |
+
&& ($this->DetectTierRichCss() == $this->false))
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
return $this->true;
|
|
|
1023 |
else
|
1024 |
+
return $this->false;
|
1025 |
}
|
1026 |
|
1027 |
|
1028 |
}
|
1029 |
|
1030 |
|
1031 |
+
//Was informed by a MobileESP user that it's a best practice
|
1032 |
// to omit the closing ?> marks here. They can sometimes
|
1033 |
+
// cause errors with HTML headers.
|
|
my-calendar-event-manager.php
CHANGED
@@ -9,7 +9,8 @@ return = message confirming successful edits
|
|
9 |
*/
|
10 |
function mc_split_event( $event_id, $instance ) {
|
11 |
global $wpdb, $users_entries;
|
12 |
-
$
|
|
|
13 |
$event = $event[0];
|
14 |
if ( $event->event_recur == 'S' ) {
|
15 |
return;
|
@@ -94,6 +95,7 @@ function mc_convert( $object, $edit=false ) {
|
|
94 |
|
95 |
function edit_my_calendar() {
|
96 |
global $current_user, $wpdb, $users_entries;
|
|
|
97 |
|
98 |
if ( get_option('ko_calendar_imported') != 'true' ) {
|
99 |
if (function_exists('check_calendar')) {
|
@@ -143,7 +145,7 @@ if ( !empty($_POST['mass_delete']) ) {
|
|
143 |
foreach ($events as $value) {
|
144 |
$value = (int) $value;
|
145 |
$ea = "SELECT event_author FROM " . my_calendar_table() . " WHERE event_id = $value";
|
146 |
-
$result = $
|
147 |
$total = count($events);
|
148 |
if ( mc_can_edit_event( $result[0]['event_author'] ) ) {
|
149 |
$sql .= mysql_real_escape_string($value).',';
|
@@ -153,7 +155,7 @@ if ( !empty($_POST['mass_delete']) ) {
|
|
153 |
}
|
154 |
$sql = substr( $sql, 0, -1 );
|
155 |
$sql .= ')';
|
156 |
-
$result = $
|
157 |
if ( $result !== 0 && $result !== false ) {
|
158 |
mc_delete_cache();
|
159 |
// argument: array of event IDs
|
@@ -167,22 +169,20 @@ if ( !empty($_POST['mass_delete']) ) {
|
|
167 |
|
168 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'delete' ) {
|
169 |
$sql = "SELECT event_title, event_author FROM " . my_calendar_table() . " WHERE event_id=" . (int) $_GET['event_id'];
|
170 |
-
$result = $
|
171 |
if ( mc_can_edit_event( $result[0]['event_author'] ) ) {
|
172 |
?>
|
173 |
<div class="error">
|
174 |
-
<p><strong><?php _e('Delete Event','my-calendar'); ?>:</strong> <?php _e('Are you sure you want to delete this event?','my-calendar'); ?></p>
|
175 |
<form action="<?php echo admin_url('admin.php?page=my-calendar'); ?>" method="post">
|
176 |
-
<
|
177 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
178 |
<input type="hidden" value="delete" name="event_action" />
|
179 |
<?php if ( !empty( $_GET['date'] ) ) { ?>
|
180 |
<input type="hidden" name="event_instance" value="<?php echo date( 'Y-m-d',strtotime( $_GET['date'] ) ); ?>" />
|
181 |
<?php } ?>
|
182 |
<input type="hidden" value="<?php echo (int) $_GET['event_id']; ?>" name="event_id" />
|
183 |
-
<input type="submit" name="submit" class="button-
|
184 |
-
</
|
185 |
-
</form>
|
186 |
</div>
|
187 |
<?php
|
188 |
} else {
|
@@ -196,9 +196,9 @@ if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'delete' ) {
|
|
196 |
|
197 |
// Approve and show an Event ...originally by Roland
|
198 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'approve' ) {
|
199 |
-
if ( current_user_can(
|
200 |
$sql = "UPDATE " . my_calendar_table() . " SET event_approved = 1 WHERE event_id=" . (int) $_GET['event_id'];
|
201 |
-
$result = $
|
202 |
mc_delete_cache();
|
203 |
} else {
|
204 |
?>
|
@@ -211,9 +211,9 @@ if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'approve' ) {
|
|
211 |
|
212 |
// Reject and hide an Event ...by Roland
|
213 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'reject' ) {
|
214 |
-
if ( current_user_can(
|
215 |
$sql = "UPDATE " . my_calendar_table() . " SET event_approved = 2 WHERE event_id=" . (int) $_GET['event_id'];
|
216 |
-
$result = $
|
217 |
mc_delete_cache();
|
218 |
} else {
|
219 |
?>
|
@@ -229,7 +229,8 @@ if ( isset( $_POST['event_action'] ) ) {
|
|
229 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
230 |
$proceed = false;
|
231 |
global $mc_output;
|
232 |
-
|
|
|
233 |
$count = count($_POST['event_begin']);
|
234 |
} else {
|
235 |
$response = my_calendar_save($action,$mc_output,(int) $_POST['event_id']);
|
@@ -252,11 +253,9 @@ if ( isset( $_POST['event_action'] ) ) {
|
|
252 |
|
253 |
?>
|
254 |
|
255 |
-
<div class="wrap">
|
256 |
-
|
257 |
-
my_calendar_check_db()
|
258 |
-
check_akismet();
|
259 |
-
?>
|
260 |
<?php
|
261 |
if ( get_site_option('mc_multisite') == 2 ) {
|
262 |
if ( get_option('mc_current_table') == 0 ) {
|
@@ -271,39 +270,38 @@ if ( get_site_option('mc_multisite') == 2 ) {
|
|
271 |
?>
|
272 |
<div id="icon-edit" class="icon32"></div>
|
273 |
<h2><?php _e('Edit Event','my-calendar'); ?></h2>
|
274 |
-
<?php jd_show_support_box(); ?>
|
275 |
<?php
|
276 |
if ( empty($event_id) ) {
|
277 |
echo "<div class=\"error\"><p>".__("You must provide an event id in order to edit it",'my-calendar')."</p></div>";
|
278 |
} else {
|
279 |
jd_events_edit_form('edit', $event_id);
|
280 |
}
|
281 |
-
jd_events_display_list();
|
282 |
} else if ( $action == 'copy' || ($action == 'copy' && $error_with_saving == 1)) { ?>
|
283 |
<div id="icon-edit" class="icon32"></div>
|
284 |
<h2><?php _e('Copy Event','my-calendar'); ?></h2>
|
285 |
-
<?php jd_show_support_box(); ?>
|
286 |
<?php
|
287 |
if ( empty($event_id) ) {
|
288 |
echo "<div class=\"error\"><p>".__("You must provide an event id in order to edit it",'my-calendar')."</p></div>";
|
289 |
} else {
|
290 |
jd_events_edit_form('copy', $event_id);
|
291 |
}
|
292 |
-
jd_events_display_list();
|
293 |
} else {
|
294 |
?>
|
295 |
<div id="icon-edit" class="icon32"></div>
|
296 |
<h2><?php _e('Add Event','my-calendar'); ?></h2>
|
297 |
-
<?php jd_show_support_box(); ?>
|
298 |
<?php jd_events_edit_form(); ?>
|
299 |
-
<?php jd_events_display_list(); ?>
|
300 |
<?php } ?>
|
|
|
|
|
|
|
|
|
301 |
</div>
|
302 |
-
<?php
|
303 |
}
|
304 |
|
305 |
function my_calendar_save( $action,$output,$event_id=false ) {
|
306 |
global $wpdb,$event_author;
|
|
|
307 |
$proceed = $output[0];
|
308 |
$message = '';
|
309 |
|
@@ -314,7 +312,7 @@ global $wpdb,$event_author;
|
|
314 |
'%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d',
|
315 |
'%f','%f'
|
316 |
);
|
317 |
-
$result = $
|
318 |
my_calendar_table(),
|
319 |
$add,
|
320 |
$formats
|
@@ -325,8 +323,8 @@ global $wpdb,$event_author;
|
|
325 |
// do an action using the $action and processed event data
|
326 |
do_action( 'mc_save_event', $action, $add );
|
327 |
// Call mail function
|
328 |
-
$sql = "SELECT * FROM ". my_calendar_table()." JOIN " . my_calendar_categories_table() . " ON (event_category=category_id) WHERE event_id = ".$
|
329 |
-
$event = $
|
330 |
$event_start_ts = strtotime( $event[0]->event_begin . ' ' . $event[0]->event_time );
|
331 |
$event[0]->event_start_ts = $event_start_ts;
|
332 |
my_calendar_send_email( $event[0] );
|
@@ -343,14 +341,14 @@ global $wpdb,$event_author;
|
|
343 |
'%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d',
|
344 |
'%f','%f'
|
345 |
);
|
346 |
-
//$
|
347 |
-
$result = $
|
348 |
my_calendar_table(),
|
349 |
$update,
|
350 |
array( 'event_id'=>$event_id ),
|
351 |
$formats,
|
352 |
'%d' );
|
353 |
-
//$
|
354 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
355 |
if ( $result === false ) {
|
356 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
|
@@ -377,9 +375,9 @@ global $wpdb,$event_author;
|
|
377 |
mc_split_event( $event_id, $instance );
|
378 |
}
|
379 |
$sql = "DELETE FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "'";
|
380 |
-
$
|
381 |
$sql = "SELECT event_id FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "'";
|
382 |
-
$result = $
|
383 |
if ( empty($result) || empty($result[0]->event_id) ) {
|
384 |
mc_delete_cache();
|
385 |
// do an action using the event_id
|
@@ -396,11 +394,12 @@ global $wpdb,$event_author;
|
|
396 |
|
397 |
function jd_acquire_form_data($event_id=false) {
|
398 |
global $wpdb,$users_entries;
|
|
|
399 |
if ( $event_id !== false ) {
|
400 |
if ( intval($event_id) != $event_id ) {
|
401 |
return "<div class=\"error\"><p>".__('Sorry! That\'s an invalid event key.','my-calendar')."</p></div>";
|
402 |
} else {
|
403 |
-
$data = $
|
404 |
if ( empty($data) ) {
|
405 |
return "<div class=\"error\"><p>".__("Sorry! We couldn't find an event with that ID.",'my-calendar')."</p></div>";
|
406 |
}
|
@@ -421,6 +420,7 @@ global $wpdb,$users_entries;
|
|
421 |
// The event edit form for the manage events admin page
|
422 |
function jd_events_edit_form($mode='add', $event_id=false) {
|
423 |
global $wpdb,$users_entries,$user_ID, $output;
|
|
|
424 |
if ($event_id != false) {
|
425 |
$data = jd_acquire_form_data($event_id);
|
426 |
} else {
|
@@ -433,31 +433,34 @@ function jd_events_edit_form($mode='add', $event_id=false) {
|
|
433 |
}
|
434 |
echo ($message != '')?"<div class='error'><p>$message</p></div>":'';
|
435 |
?>
|
436 |
-
<form id="my-calendar" method="post" class="jd-my-calendar" action="<?php echo admin_url('admin.php?page=my-calendar'); ?>">
|
437 |
<?php my_calendar_print_form_fields($data,$mode,$event_id); ?>
|
438 |
-
<p>
|
439 |
-
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
440 |
-
</p>
|
441 |
-
</form>
|
442 |
|
443 |
<?php
|
444 |
}
|
445 |
/* returns next available group ID */
|
446 |
function mc_group_id() {
|
447 |
global $wpdb;
|
|
|
448 |
$query = "SELECT MAX(event_id) FROM ".my_calendar_table();
|
449 |
-
$result = $
|
450 |
$next = $result+1;
|
451 |
echo $next;
|
452 |
}
|
453 |
|
454 |
function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
455 |
global $user_ID,$wpdb;
|
|
|
456 |
get_currentuserinfo();
|
457 |
$user = get_userdata($user_ID);
|
458 |
$mc_input_administrator = (get_option('mc_input_options_administrators')=='true' && current_user_can('manage_options'))?true:false;
|
459 |
$mc_input = get_option('mc_input_options');
|
460 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
<div>
|
462 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
463 |
<input type="hidden" name="event_group_id" value="<?php if ( !empty( $data->event_group_id ) ) { echo $data->event_group_id; } else { mc_group_id(); } ?>" />
|
@@ -466,8 +469,10 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
466 |
<input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
|
467 |
<input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
|
468 |
</div>
|
469 |
-
|
|
|
470 |
<div class="postbox">
|
|
|
471 |
<div class="inside">
|
472 |
<p>
|
473 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
@@ -486,10 +491,10 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
486 |
<fieldset>
|
487 |
<legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
|
488 |
<p>
|
489 |
-
<label for="event_title"><?php _e('Event Title','my-calendar'); ?><span><?php _e('(required)','my-calendar'); ?></span></label
|
490 |
<?php if ( $mode == 'edit' ) { ?>
|
491 |
<?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
|
492 |
-
<?php if ( current_user_can(
|
493 |
<input type="checkbox" value="1" id="event_approved" name="event_approved"<?php if ( !empty($data) && $data->event_approved == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_approved == '0' ) { echo ""; } else if ( get_option( 'mc_event_approve' ) == 'true' ) { echo "checked=\"checked\""; } ?> /> <label for="event_approved"><?php _e('Publish','my-calendar'); ?><?php if ($event->event_approved != 1) { ?> <small>[<?php _e('You must approve this event to promote it to the calendar.','my-calendar'); ?>]</small> <?php } ?></label>
|
494 |
<?php } else { // case: editing, approval enabled, user cannot approve ?>
|
495 |
<input type="hidden" value="0" name="event_approved" /><?php _e('An administrator must approve your new event.','my-calendar'); ?>
|
@@ -498,7 +503,7 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
498 |
<input type="hidden" value="1" name="event_approved" />
|
499 |
<?php } ?>
|
500 |
<?php } else { // case: adding new event (if use can, then 1, else 0) ?>
|
501 |
-
<?php if ( current_user_can(
|
502 |
<input type="hidden" value="<?php echo $dvalue; ?>" name="event_approved" />
|
503 |
<?php } ?>
|
504 |
</p>
|
@@ -510,12 +515,23 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
510 |
</div>
|
511 |
<?php } ?>
|
512 |
<?php if ($mc_input['event_desc'] == 'on' || $mc_input_administrator ) { ?>
|
513 |
-
<
|
514 |
<?php if ( !empty($data) ) { $description = $data->event_desc; } else { $description = ''; } ?>
|
515 |
-
<label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br
|
516 |
-
</p>
|
517 |
-
<?php } ?>
|
518 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
// If the editor is enabled, shouldn't display the image uploader.
|
520 |
// It restricts use of the image uploader to a single image and forces it to be in
|
521 |
// the event image field, rather than the event description.
|
@@ -569,13 +585,13 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
569 |
<select id="event_category" name="event_category">
|
570 |
<?php
|
571 |
// Grab all the categories and list them
|
572 |
-
$sql = "SELECT * FROM " . my_calendar_categories_table();
|
573 |
-
$cats = $
|
574 |
foreach($cats as $cat) {
|
575 |
echo '<option value="'.$cat->category_id.'"';
|
576 |
if (!empty($data)) {
|
577 |
if ($data->event_category == $cat->category_id){
|
578 |
-
echo 'selected="selected"';
|
579 |
}
|
580 |
}
|
581 |
echo '>'.stripslashes($cat->category_name).'</option>';
|
@@ -596,7 +612,11 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
596 |
</fieldset>
|
597 |
</div>
|
598 |
</div>
|
599 |
-
|
|
|
|
|
|
|
|
|
600 |
<div class="inside">
|
601 |
<fieldset><legend><?php _e('Event Date and Time','my-calendar'); ?></legend>
|
602 |
<div id="event1" class="clonedInput">
|
@@ -647,9 +667,12 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
647 |
</p>
|
648 |
</fieldset>
|
649 |
</div>
|
|
|
650 |
</div>
|
651 |
<?php if ( ( $mc_input['event_recurs'] == 'on' || $mc_input_administrator ) && empty( $_GET['date'] ) ) { ?>
|
|
|
652 |
<div class="postbox">
|
|
|
653 |
<div class="inside">
|
654 |
<fieldset>
|
655 |
<legend><?php _e('Recurring Events','my-calendar'); ?></legend>
|
@@ -666,11 +689,13 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
666 |
<option class="input" <?php if ( is_object($data) ) 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>
|
667 |
<option class="input" <?php if ( is_object($data) ) echo jd_option_selected( $data->event_recur,'Y','option'); ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
|
668 |
</select><br />
|
669 |
-
<?php _e('
|
|
|
670 |
</p>
|
671 |
</fieldset>
|
672 |
</div>
|
673 |
-
</div>
|
|
|
674 |
<?php } else { ?>
|
675 |
<div>
|
676 |
<input type="hidden" name="event_repeats" value="0" />
|
@@ -679,8 +704,10 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
679 |
|
680 |
<?php } ?>
|
681 |
|
682 |
-
<?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) { ?>
|
|
|
683 |
<div class="postbox">
|
|
|
684 |
<div class="inside">
|
685 |
<fieldset>
|
686 |
<legend><?php _e('Event Registration Status','my-calendar'); ?></legend>
|
@@ -695,7 +722,8 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
695 |
</p>
|
696 |
</fieldset>
|
697 |
</div>
|
698 |
-
</div>
|
|
|
699 |
<?php } else { ?>
|
700 |
<div>
|
701 |
<input type="hidden" name="event_open" value="2" />
|
@@ -705,13 +733,15 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
705 |
|
706 |
<?php if ( ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') || $mc_input_administrator ) { ?>
|
707 |
|
|
|
708 |
<div class="postbox">
|
|
|
709 |
<div class="inside">
|
710 |
<fieldset>
|
711 |
<legend><?php _e('Event Location','my-calendar'); ?></legend>
|
712 |
<?php } ?>
|
713 |
<?php if ($mc_input['event_location_dropdown'] == 'on' || $mc_input_administrator ) { ?>
|
714 |
-
<?php $locations = $
|
715 |
if ( !empty($locations) ) {
|
716 |
?>
|
717 |
<p>
|
@@ -773,6 +803,8 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
773 |
} else { ?>
|
774 |
<input type="text" id="event_state" name="event_state" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_state)); ?>" />
|
775 |
<?php } ?>
|
|
|
|
|
776 |
<label for="event_postcode"><?php _e('Postal Code','my-calendar'); ?></label>
|
777 |
<?php if ( mc_controlled_field( 'postcode' ) ) {
|
778 |
if ( !empty( $data ) ) $cur_label = ( stripslashes( $data->event_postcode ) );
|
@@ -780,8 +812,6 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
780 |
} else { ?>
|
781 |
<input type="text" id="event_postcode" name="event_postcode" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_postcode)); ?>" />
|
782 |
<?php } ?>
|
783 |
-
</p>
|
784 |
-
<p>
|
785 |
<label for="event_region"><?php _e('Region','my-calendar'); ?></label>
|
786 |
<?php if ( mc_controlled_field( 'region' ) ) {
|
787 |
if ( !empty( $data ) ) $cur_label = ( stripslashes( $data->event_region ) );
|
@@ -827,10 +857,13 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
827 |
</fieldset>
|
828 |
</div>
|
829 |
</div>
|
|
|
830 |
<?php } ?>
|
831 |
|
832 |
-
<div class="
|
833 |
-
<div class="
|
|
|
|
|
834 |
<fieldset>
|
835 |
<legend><?php _e('Special Options','my-calendar'); ?></legend>
|
836 |
<p>
|
@@ -841,14 +874,22 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
841 |
</p>
|
842 |
</fieldset>
|
843 |
</div>
|
844 |
-
|
845 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
846 |
<?php }
|
847 |
|
848 |
// Used on the manage events admin page to display a list of events
|
849 |
function jd_events_display_list( $type='normal' ) {
|
850 |
global $wpdb;
|
851 |
-
|
|
|
852 |
$sortby = ( isset( $_GET['sort'] ) )?(int) $_GET['sort']:get_option('mc_default_sort');
|
853 |
|
854 |
if ( isset( $_GET['order'] ) ) {
|
@@ -906,14 +947,14 @@ function jd_events_display_list( $type='normal' ) {
|
|
906 |
break;
|
907 |
default:$limit = '';
|
908 |
}
|
909 |
-
$events = $
|
910 |
if ($sortbydirection == 'DESC') {
|
911 |
$sorting = "&order=ASC";
|
912 |
} else {
|
913 |
$sorting = '';
|
914 |
}
|
915 |
?>
|
916 |
-
<h2><?php _e('Manage Events','my-calendar'); ?></h2>
|
917 |
<?php if ( get_option('mc_event_approve') == 'true' ) { ?>
|
918 |
<ul class="links">
|
919 |
<li><a <?php echo ($_GET['limit']=='published')?' class="active-link"':''; ?> href="<?php echo admin_url('admin.php?page=my-calendar&limit=published'); ?>"><?php _e('Published','my-calendar'); ?></a></li>
|
@@ -928,24 +969,24 @@ function jd_events_display_list( $type='normal' ) {
|
|
928 |
<div>
|
929 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
930 |
</div>
|
931 |
-
<table class="widefat page fixed" id="my-calendar-admin-table"
|
932 |
<thead>
|
933 |
<tr>
|
934 |
-
<th class="manage-column
|
935 |
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
|
936 |
-
<th class="manage-column
|
937 |
-
<th class="manage-column
|
938 |
-
<th class="manage-column
|
939 |
-
<th class="manage-column
|
940 |
-
<th class="manage-column
|
941 |
-
<th class="manage-column
|
942 |
-
<th class="manage-column
|
943 |
</tr>
|
944 |
</thead>
|
945 |
<?php
|
946 |
$class = '';
|
947 |
$sql = "SELECT * FROM " . my_calendar_categories_table() ;
|
948 |
-
$categories = $
|
949 |
|
950 |
foreach ( array_keys($events) as $key ) {
|
951 |
$event =& $events[$key];
|
@@ -1005,7 +1046,7 @@ function jd_events_display_list( $type='normal' ) {
|
|
1005 |
<?php } else { _e("Not editable.",'my-calendar'); } ?>
|
1006 |
<?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
|
1007 |
·
|
1008 |
-
<?php if ( current_user_can(
|
1009 |
<?php // by Roland
|
1010 |
if ( $event->event_approved == '1' ) { ?>
|
1011 |
<a href="<?php echo admin_url("admin.php?page=my-calendar&mode=reject&event_id=$event->event_id"); ?>" class='reject'><?php _e('Reject','my-calendar'); ?></a>
|
@@ -1030,7 +1071,7 @@ function jd_events_display_list( $type='normal' ) {
|
|
1030 |
?>
|
1031 |
</table>
|
1032 |
<p>
|
1033 |
-
<input type="submit" class="button-
|
1034 |
</p>
|
1035 |
</form>
|
1036 |
<?php
|
@@ -1044,13 +1085,15 @@ function jd_events_display_list( $type='normal' ) {
|
|
1044 |
<p><?php _e("There are no events in the database!",'my-calendar') ?></p>
|
1045 |
<?php
|
1046 |
}
|
|
|
1047 |
}
|
1048 |
|
1049 |
function mc_event_is_grouped( $group_id ) {
|
1050 |
global $wpdb;
|
|
|
1051 |
if ( $group_id == 0 ) { return false; } else {
|
1052 |
$query = "SELECT count( event_group_id ) FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
1053 |
-
$value = $
|
1054 |
if ( $value > 1 ) {
|
1055 |
return true;
|
1056 |
} else {
|
@@ -1061,6 +1104,7 @@ function mc_event_is_grouped( $group_id ) {
|
|
1061 |
|
1062 |
function mc_check_data($action,$_POST, $i) {
|
1063 |
global $wpdb, $current_user, $users_entries;
|
|
|
1064 |
|
1065 |
$start_date_ok = 0;
|
1066 |
$end_date_ok = 0;
|
@@ -1133,7 +1177,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
|
|
1133 |
// set location
|
1134 |
if ($location_preset != 'none') {
|
1135 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id = $location_preset";
|
1136 |
-
$location = $
|
1137 |
$event_label = $location->location_label;
|
1138 |
$event_street = $location->location_street;
|
1139 |
$event_street2 = $location->location_street2;
|
9 |
*/
|
10 |
function mc_split_event( $event_id, $instance ) {
|
11 |
global $wpdb, $users_entries;
|
12 |
+
$mcdb = $wpdb;
|
13 |
+
$event = $mcdb->get_results("SELECT * FROM " . my_calendar_table() . " WHERE event_id = $event_id");
|
14 |
$event = $event[0];
|
15 |
if ( $event->event_recur == 'S' ) {
|
16 |
return;
|
95 |
|
96 |
function edit_my_calendar() {
|
97 |
global $current_user, $wpdb, $users_entries;
|
98 |
+
$mcdb = $wpdb;
|
99 |
|
100 |
if ( get_option('ko_calendar_imported') != 'true' ) {
|
101 |
if (function_exists('check_calendar')) {
|
145 |
foreach ($events as $value) {
|
146 |
$value = (int) $value;
|
147 |
$ea = "SELECT event_author FROM " . my_calendar_table() . " WHERE event_id = $value";
|
148 |
+
$result = $mcdb->get_results( $ea, ARRAY_A );
|
149 |
$total = count($events);
|
150 |
if ( mc_can_edit_event( $result[0]['event_author'] ) ) {
|
151 |
$sql .= mysql_real_escape_string($value).',';
|
155 |
}
|
156 |
$sql = substr( $sql, 0, -1 );
|
157 |
$sql .= ')';
|
158 |
+
$result = $mcdb->query($sql);
|
159 |
if ( $result !== 0 && $result !== false ) {
|
160 |
mc_delete_cache();
|
161 |
// argument: array of event IDs
|
169 |
|
170 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'delete' ) {
|
171 |
$sql = "SELECT event_title, event_author FROM " . my_calendar_table() . " WHERE event_id=" . (int) $_GET['event_id'];
|
172 |
+
$result = $mcdb->get_results( $sql, ARRAY_A );
|
173 |
if ( mc_can_edit_event( $result[0]['event_author'] ) ) {
|
174 |
?>
|
175 |
<div class="error">
|
|
|
176 |
<form action="<?php echo admin_url('admin.php?page=my-calendar'); ?>" method="post">
|
177 |
+
<p><strong><?php _e('Delete Event','my-calendar'); ?>:</strong> <?php _e('Are you sure you want to delete this event?','my-calendar'); ?>
|
178 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
179 |
<input type="hidden" value="delete" name="event_action" />
|
180 |
<?php if ( !empty( $_GET['date'] ) ) { ?>
|
181 |
<input type="hidden" name="event_instance" value="<?php echo date( 'Y-m-d',strtotime( $_GET['date'] ) ); ?>" />
|
182 |
<?php } ?>
|
183 |
<input type="hidden" value="<?php echo (int) $_GET['event_id']; ?>" name="event_id" />
|
184 |
+
<input type="submit" name="submit" class="button-secondary delete" value="<?php _e('Delete','my-calendar'); echo " "".$result[0]['event_title']."""; ?>" />
|
185 |
+
</form></p>
|
|
|
186 |
</div>
|
187 |
<?php
|
188 |
} else {
|
196 |
|
197 |
// Approve and show an Event ...originally by Roland
|
198 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'approve' ) {
|
199 |
+
if ( current_user_can( 'mc_approve_events' ) ) {
|
200 |
$sql = "UPDATE " . my_calendar_table() . " SET event_approved = 1 WHERE event_id=" . (int) $_GET['event_id'];
|
201 |
+
$result = $mcdb->get_results( $sql, ARRAY_A );
|
202 |
mc_delete_cache();
|
203 |
} else {
|
204 |
?>
|
211 |
|
212 |
// Reject and hide an Event ...by Roland
|
213 |
if ( isset( $_GET['mode'] ) && $_GET['mode'] == 'reject' ) {
|
214 |
+
if ( current_user_can( 'mc_approve_events' ) ) {
|
215 |
$sql = "UPDATE " . my_calendar_table() . " SET event_approved = 2 WHERE event_id=" . (int) $_GET['event_id'];
|
216 |
+
$result = $mcdb->get_results( $sql, ARRAY_A );
|
217 |
mc_delete_cache();
|
218 |
} else {
|
219 |
?>
|
229 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
230 |
$proceed = false;
|
231 |
global $mc_output;
|
232 |
+
$count = 0;
|
233 |
+
if ( isset($_POST['event_begin']) && is_array( $_POST['event_begin'] ) ) {
|
234 |
$count = count($_POST['event_begin']);
|
235 |
} else {
|
236 |
$response = my_calendar_save($action,$mc_output,(int) $_POST['event_id']);
|
253 |
|
254 |
?>
|
255 |
|
256 |
+
<div class="wrap jd-my-calendar">
|
257 |
+
|
258 |
+
<?php my_calendar_check_db();?>
|
|
|
|
|
259 |
<?php
|
260 |
if ( get_site_option('mc_multisite') == 2 ) {
|
261 |
if ( get_option('mc_current_table') == 0 ) {
|
270 |
?>
|
271 |
<div id="icon-edit" class="icon32"></div>
|
272 |
<h2><?php _e('Edit Event','my-calendar'); ?></h2>
|
|
|
273 |
<?php
|
274 |
if ( empty($event_id) ) {
|
275 |
echo "<div class=\"error\"><p>".__("You must provide an event id in order to edit it",'my-calendar')."</p></div>";
|
276 |
} else {
|
277 |
jd_events_edit_form('edit', $event_id);
|
278 |
}
|
|
|
279 |
} else if ( $action == 'copy' || ($action == 'copy' && $error_with_saving == 1)) { ?>
|
280 |
<div id="icon-edit" class="icon32"></div>
|
281 |
<h2><?php _e('Copy Event','my-calendar'); ?></h2>
|
|
|
282 |
<?php
|
283 |
if ( empty($event_id) ) {
|
284 |
echo "<div class=\"error\"><p>".__("You must provide an event id in order to edit it",'my-calendar')."</p></div>";
|
285 |
} else {
|
286 |
jd_events_edit_form('copy', $event_id);
|
287 |
}
|
|
|
288 |
} else {
|
289 |
?>
|
290 |
<div id="icon-edit" class="icon32"></div>
|
291 |
<h2><?php _e('Add Event','my-calendar'); ?></h2>
|
|
|
292 |
<?php jd_events_edit_form(); ?>
|
|
|
293 |
<?php } ?>
|
294 |
+
|
295 |
+
<?php jd_show_support_box(); ?>
|
296 |
+
|
297 |
+
<?php jd_events_display_list(); ?>
|
298 |
</div>
|
299 |
+
<?php
|
300 |
}
|
301 |
|
302 |
function my_calendar_save( $action,$output,$event_id=false ) {
|
303 |
global $wpdb,$event_author;
|
304 |
+
$mcdb = $wpdb;
|
305 |
$proceed = $output[0];
|
306 |
$message = '';
|
307 |
|
312 |
'%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d',
|
313 |
'%f','%f'
|
314 |
);
|
315 |
+
$result = $mcdb->insert(
|
316 |
my_calendar_table(),
|
317 |
$add,
|
318 |
$formats
|
323 |
// do an action using the $action and processed event data
|
324 |
do_action( 'mc_save_event', $action, $add );
|
325 |
// Call mail function
|
326 |
+
$sql = "SELECT * FROM ". my_calendar_table()." JOIN " . my_calendar_categories_table() . " ON (event_category=category_id) WHERE event_id = ".$mcdb->insert_id;
|
327 |
+
$event = $mcdb->get_results($sql);
|
328 |
$event_start_ts = strtotime( $event[0]->event_begin . ' ' . $event[0]->event_time );
|
329 |
$event[0]->event_start_ts = $event_start_ts;
|
330 |
my_calendar_send_email( $event[0] );
|
341 |
'%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d','%d',
|
342 |
'%f','%f'
|
343 |
);
|
344 |
+
//$mcdb->show_errors();
|
345 |
+
$result = $mcdb->update(
|
346 |
my_calendar_table(),
|
347 |
$update,
|
348 |
array( 'event_id'=>$event_id ),
|
349 |
$formats,
|
350 |
'%d' );
|
351 |
+
//$mcdb->print_error();
|
352 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
353 |
if ( $result === false ) {
|
354 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
|
375 |
mc_split_event( $event_id, $instance );
|
376 |
}
|
377 |
$sql = "DELETE FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "'";
|
378 |
+
$mcdb->query($sql);
|
379 |
$sql = "SELECT event_id FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "'";
|
380 |
+
$result = $mcdb->get_results($sql);
|
381 |
if ( empty($result) || empty($result[0]->event_id) ) {
|
382 |
mc_delete_cache();
|
383 |
// do an action using the event_id
|
394 |
|
395 |
function jd_acquire_form_data($event_id=false) {
|
396 |
global $wpdb,$users_entries;
|
397 |
+
$mcdb = $wpdb;
|
398 |
if ( $event_id !== false ) {
|
399 |
if ( intval($event_id) != $event_id ) {
|
400 |
return "<div class=\"error\"><p>".__('Sorry! That\'s an invalid event key.','my-calendar')."</p></div>";
|
401 |
} else {
|
402 |
+
$data = $mcdb->get_results("SELECT * FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "' LIMIT 1");
|
403 |
if ( empty($data) ) {
|
404 |
return "<div class=\"error\"><p>".__("Sorry! We couldn't find an event with that ID.",'my-calendar')."</p></div>";
|
405 |
}
|
420 |
// The event edit form for the manage events admin page
|
421 |
function jd_events_edit_form($mode='add', $event_id=false) {
|
422 |
global $wpdb,$users_entries,$user_ID, $output;
|
423 |
+
$mcdb = $wpdb;
|
424 |
if ($event_id != false) {
|
425 |
$data = jd_acquire_form_data($event_id);
|
426 |
} else {
|
433 |
}
|
434 |
echo ($message != '')?"<div class='error'><p>$message</p></div>":'';
|
435 |
?>
|
|
|
436 |
<?php my_calendar_print_form_fields($data,$mode,$event_id); ?>
|
|
|
|
|
|
|
|
|
437 |
|
438 |
<?php
|
439 |
}
|
440 |
/* returns next available group ID */
|
441 |
function mc_group_id() {
|
442 |
global $wpdb;
|
443 |
+
$mcdb = $wpdb;
|
444 |
$query = "SELECT MAX(event_id) FROM ".my_calendar_table();
|
445 |
+
$result = $mcdb->get_var($query);
|
446 |
$next = $result+1;
|
447 |
echo $next;
|
448 |
}
|
449 |
|
450 |
function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
451 |
global $user_ID,$wpdb;
|
452 |
+
$mcdb = $wpdb;
|
453 |
get_currentuserinfo();
|
454 |
$user = get_userdata($user_ID);
|
455 |
$mc_input_administrator = (get_option('mc_input_options_administrators')=='true' && current_user_can('manage_options'))?true:false;
|
456 |
$mc_input = get_option('mc_input_options');
|
457 |
?>
|
458 |
+
|
459 |
+
<div class="postbox-container" style="width: 70%">
|
460 |
+
<div class="metabox-holder">
|
461 |
+
|
462 |
+
<form id="my-calendar" method="post" action="<?php echo admin_url('admin.php?page=my-calendar'); ?>">
|
463 |
+
|
464 |
<div>
|
465 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
466 |
<input type="hidden" name="event_group_id" value="<?php if ( !empty( $data->event_group_id ) ) { echo $data->event_group_id; } else { mc_group_id(); } ?>" />
|
469 |
<input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
|
470 |
<input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
|
471 |
</div>
|
472 |
+
|
473 |
+
<div class="ui-sortable meta-box-sortables">
|
474 |
<div class="postbox">
|
475 |
+
<h3><?php _e('Add/Edit Event','my-calendar'); ?></h3>
|
476 |
<div class="inside">
|
477 |
<p>
|
478 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
491 |
<fieldset>
|
492 |
<legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
|
493 |
<p>
|
494 |
+
<label for="event_title"><?php _e('Event Title','my-calendar'); ?><span><?php _e('(required)','my-calendar'); ?></span></label><br /><input type="text" id="event_title" name="event_title" class="input" size="60" value="<?php if ( !empty($data) ) echo stripslashes(esc_attr($data->event_title)); ?>" />
|
495 |
<?php if ( $mode == 'edit' ) { ?>
|
496 |
<?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
|
497 |
+
<?php if ( current_user_can( 'mc_approve_events' ) ) { // (Added by Roland P. ?>
|
498 |
<input type="checkbox" value="1" id="event_approved" name="event_approved"<?php if ( !empty($data) && $data->event_approved == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_approved == '0' ) { echo ""; } else if ( get_option( 'mc_event_approve' ) == 'true' ) { echo "checked=\"checked\""; } ?> /> <label for="event_approved"><?php _e('Publish','my-calendar'); ?><?php if ($event->event_approved != 1) { ?> <small>[<?php _e('You must approve this event to promote it to the calendar.','my-calendar'); ?>]</small> <?php } ?></label>
|
499 |
<?php } else { // case: editing, approval enabled, user cannot approve ?>
|
500 |
<input type="hidden" value="0" name="event_approved" /><?php _e('An administrator must approve your new event.','my-calendar'); ?>
|
503 |
<input type="hidden" value="1" name="event_approved" />
|
504 |
<?php } ?>
|
505 |
<?php } else { // case: adding new event (if use can, then 1, else 0) ?>
|
506 |
+
<?php if ( current_user_can( 'mc_approve_events' ) ) { $dvalue = 1; } else { $dvalue = 0; } ?>
|
507 |
<input type="hidden" value="<?php echo $dvalue; ?>" name="event_approved" />
|
508 |
<?php } ?>
|
509 |
</p>
|
515 |
</div>
|
516 |
<?php } ?>
|
517 |
<?php if ($mc_input['event_desc'] == 'on' || $mc_input_administrator ) { ?>
|
518 |
+
<div class="event_description">
|
519 |
<?php if ( !empty($data) ) { $description = $data->event_desc; } else { $description = ''; } ?>
|
520 |
+
<label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br />
|
|
|
|
|
521 |
<?php
|
522 |
+
if ( $mc_input['event_use_editor'] == 'on' ) {
|
523 |
+
if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '>=' ) ) {
|
524 |
+
wp_editor( stripslashes($description), 'content', array( 'textarea_rows'=>10 ) );
|
525 |
+
} else {
|
526 |
+
the_editor( stripslashes($description) );
|
527 |
+
}
|
528 |
+
} else {
|
529 |
+
?><textarea id="content" name="content" class="event_desc" rows="5" cols="80"><?php echo stripslashes(esc_attr($description)); ?></textarea>
|
530 |
+
<?php if ( $mc_input['event_use_editor'] == 'on' ) { ?></div><?php }
|
531 |
+
} ?>
|
532 |
+
</div>
|
533 |
+
<?php } ?>
|
534 |
+
<?php
|
535 |
// If the editor is enabled, shouldn't display the image uploader.
|
536 |
// It restricts use of the image uploader to a single image and forces it to be in
|
537 |
// the event image field, rather than the event description.
|
585 |
<select id="event_category" name="event_category">
|
586 |
<?php
|
587 |
// Grab all the categories and list them
|
588 |
+
$sql = "SELECT * FROM " . my_calendar_categories_table() . " ORDER BY category_name ASC";
|
589 |
+
$cats = $mcdb->get_results($sql);
|
590 |
foreach($cats as $cat) {
|
591 |
echo '<option value="'.$cat->category_id.'"';
|
592 |
if (!empty($data)) {
|
593 |
if ($data->event_category == $cat->category_id){
|
594 |
+
echo ' selected="selected"';
|
595 |
}
|
596 |
}
|
597 |
echo '>'.stripslashes($cat->category_name).'</option>';
|
612 |
</fieldset>
|
613 |
</div>
|
614 |
</div>
|
615 |
+
</div>
|
616 |
+
|
617 |
+
<div class="ui-sortable meta-box-sortables">
|
618 |
+
<div class="postbox">
|
619 |
+
<h3><?php _e('Event Date and Time','my-calendar'); ?></h3>
|
620 |
<div class="inside">
|
621 |
<fieldset><legend><?php _e('Event Date and Time','my-calendar'); ?></legend>
|
622 |
<div id="event1" class="clonedInput">
|
667 |
</p>
|
668 |
</fieldset>
|
669 |
</div>
|
670 |
+
</div>
|
671 |
</div>
|
672 |
<?php if ( ( $mc_input['event_recurs'] == 'on' || $mc_input_administrator ) && empty( $_GET['date'] ) ) { ?>
|
673 |
+
<div class="ui-sortable meta-box-sortables">
|
674 |
<div class="postbox">
|
675 |
+
<h3><?php _e('Recurring Events','my-calendar'); ?></h3>
|
676 |
<div class="inside">
|
677 |
<fieldset>
|
678 |
<legend><?php _e('Recurring Events','my-calendar'); ?></legend>
|
689 |
<option class="input" <?php if ( is_object($data) ) 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>
|
690 |
<option class="input" <?php if ( is_object($data) ) echo jd_option_selected( $data->event_recur,'Y','option'); ?> value="Y"><?php _e('Annually','my-calendar'); ?></option>
|
691 |
</select><br />
|
692 |
+
<?php _e('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'); ?>
|
693 |
+
<?php _e('You can use "0" to indicate that a recurring event should reoccur indefinitely. However, infinite recurrences will be removed in the next major update of My Calendar.','my-calendar'); ?>
|
694 |
</p>
|
695 |
</fieldset>
|
696 |
</div>
|
697 |
+
</div>
|
698 |
+
</div>
|
699 |
<?php } else { ?>
|
700 |
<div>
|
701 |
<input type="hidden" name="event_repeats" value="0" />
|
704 |
|
705 |
<?php } ?>
|
706 |
|
707 |
+
<?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) { ?>
|
708 |
+
<div class="ui-sortable meta-box-sortables">
|
709 |
<div class="postbox">
|
710 |
+
<h3><?php _e('Event Registration Settings','my-calendar'); ?></h3>
|
711 |
<div class="inside">
|
712 |
<fieldset>
|
713 |
<legend><?php _e('Event Registration Status','my-calendar'); ?></legend>
|
722 |
</p>
|
723 |
</fieldset>
|
724 |
</div>
|
725 |
+
</div>
|
726 |
+
</div>
|
727 |
<?php } else { ?>
|
728 |
<div>
|
729 |
<input type="hidden" name="event_open" value="2" />
|
733 |
|
734 |
<?php if ( ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') || $mc_input_administrator ) { ?>
|
735 |
|
736 |
+
<div class="ui-sortable meta-box-sortables">
|
737 |
<div class="postbox">
|
738 |
+
<h3><?php _e('Event Location','my-calendar'); ?></h3>
|
739 |
<div class="inside">
|
740 |
<fieldset>
|
741 |
<legend><?php _e('Event Location','my-calendar'); ?></legend>
|
742 |
<?php } ?>
|
743 |
<?php if ($mc_input['event_location_dropdown'] == 'on' || $mc_input_administrator ) { ?>
|
744 |
+
<?php $locations = $mcdb->get_results("SELECT location_id,location_label FROM " . my_calendar_locations_table() . " ORDER BY location_label ASC");
|
745 |
if ( !empty($locations) ) {
|
746 |
?>
|
747 |
<p>
|
803 |
} else { ?>
|
804 |
<input type="text" id="event_state" name="event_state" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_state)); ?>" />
|
805 |
<?php } ?>
|
806 |
+
</p>
|
807 |
+
<p>
|
808 |
<label for="event_postcode"><?php _e('Postal Code','my-calendar'); ?></label>
|
809 |
<?php if ( mc_controlled_field( 'postcode' ) ) {
|
810 |
if ( !empty( $data ) ) $cur_label = ( stripslashes( $data->event_postcode ) );
|
812 |
} else { ?>
|
813 |
<input type="text" id="event_postcode" name="event_postcode" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_postcode)); ?>" />
|
814 |
<?php } ?>
|
|
|
|
|
815 |
<label for="event_region"><?php _e('Region','my-calendar'); ?></label>
|
816 |
<?php if ( mc_controlled_field( 'region' ) ) {
|
817 |
if ( !empty( $data ) ) $cur_label = ( stripslashes( $data->event_region ) );
|
857 |
</fieldset>
|
858 |
</div>
|
859 |
</div>
|
860 |
+
</div>
|
861 |
<?php } ?>
|
862 |
|
863 |
+
<div class="ui-sortable meta-box-sortables">
|
864 |
+
<div class="postbox">
|
865 |
+
<h3><?php _e('Special scheduling options','my-calendar'); ?></h3>
|
866 |
+
<div class="inside">
|
867 |
<fieldset>
|
868 |
<legend><?php _e('Special Options','my-calendar'); ?></legend>
|
869 |
<p>
|
874 |
</p>
|
875 |
</fieldset>
|
876 |
</div>
|
877 |
+
</div>
|
878 |
</div>
|
879 |
+
<p>
|
880 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
881 |
+
</p>
|
882 |
+
</form>
|
883 |
+
</div>
|
884 |
+
</div>
|
885 |
+
|
886 |
<?php }
|
887 |
|
888 |
// Used on the manage events admin page to display a list of events
|
889 |
function jd_events_display_list( $type='normal' ) {
|
890 |
global $wpdb;
|
891 |
+
$mcdb = $wpdb;
|
892 |
+
if ( current_user_can('mc_approve_events') || current_user_can('mc_manage_events') ) {
|
893 |
$sortby = ( isset( $_GET['sort'] ) )?(int) $_GET['sort']:get_option('mc_default_sort');
|
894 |
|
895 |
if ( isset( $_GET['order'] ) ) {
|
947 |
break;
|
948 |
default:$limit = '';
|
949 |
}
|
950 |
+
$events = $mcdb->get_results("SELECT * FROM " . my_calendar_table() . " $limit ORDER BY $sortbyvalue $sortbydirection");
|
951 |
if ($sortbydirection == 'DESC') {
|
952 |
$sorting = "&order=ASC";
|
953 |
} else {
|
954 |
$sorting = '';
|
955 |
}
|
956 |
?>
|
957 |
+
<h2 class='mc-clear'><?php _e('Manage Events','my-calendar'); ?></h2>
|
958 |
<?php if ( get_option('mc_event_approve') == 'true' ) { ?>
|
959 |
<ul class="links">
|
960 |
<li><a <?php echo ($_GET['limit']=='published')?' class="active-link"':''; ?> href="<?php echo admin_url('admin.php?page=my-calendar&limit=published'); ?>"><?php _e('Published','my-calendar'); ?></a></li>
|
969 |
<div>
|
970 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
971 |
</div>
|
972 |
+
<table class="widefat page fixed" id="my-calendar-admin-table">
|
973 |
<thead>
|
974 |
<tr>
|
975 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
|
976 |
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
|
977 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=7$sorting"); ?>"><?php _e('Where','my-calendar') ?></a></th>
|
978 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=3$sorting"); ?>"><?php _e('Description','my-calendar') ?></a></th>
|
979 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=4$sorting"); ?>"><?php _e('Starts','my-calendar') ?></a></th>
|
980 |
+
<th class="manage-column" scope="col"><?php _e('Recurs','my-calendar') ?></th>
|
981 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
|
982 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar&sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
|
983 |
+
<th class="manage-column" scope="col"><?php _e('Edit / Delete','my-calendar') ?></th>
|
984 |
</tr>
|
985 |
</thead>
|
986 |
<?php
|
987 |
$class = '';
|
988 |
$sql = "SELECT * FROM " . my_calendar_categories_table() ;
|
989 |
+
$categories = $mcdb->get_results($sql);
|
990 |
|
991 |
foreach ( array_keys($events) as $key ) {
|
992 |
$event =& $events[$key];
|
1046 |
<?php } else { _e("Not editable.",'my-calendar'); } ?>
|
1047 |
<?php if ( get_option( 'mc_event_approve' ) == 'true' ) { ?>
|
1048 |
·
|
1049 |
+
<?php if ( current_user_can( 'mc_approve_events' ) ) { // Added by Roland P.?>
|
1050 |
<?php // by Roland
|
1051 |
if ( $event->event_approved == '1' ) { ?>
|
1052 |
<a href="<?php echo admin_url("admin.php?page=my-calendar&mode=reject&event_id=$event->event_id"); ?>" class='reject'><?php _e('Reject','my-calendar'); ?></a>
|
1071 |
?>
|
1072 |
</table>
|
1073 |
<p>
|
1074 |
+
<input type="submit" class="button-secondary delete" value="<?php _e('Delete checked events','my-calendar'); ?>" />
|
1075 |
</p>
|
1076 |
</form>
|
1077 |
<?php
|
1085 |
<p><?php _e("There are no events in the database!",'my-calendar') ?></p>
|
1086 |
<?php
|
1087 |
}
|
1088 |
+
}
|
1089 |
}
|
1090 |
|
1091 |
function mc_event_is_grouped( $group_id ) {
|
1092 |
global $wpdb;
|
1093 |
+
$mcdb = $wpdb;
|
1094 |
if ( $group_id == 0 ) { return false; } else {
|
1095 |
$query = "SELECT count( event_group_id ) FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
1096 |
+
$value = $mcdb->get_var($query);
|
1097 |
if ( $value > 1 ) {
|
1098 |
return true;
|
1099 |
} else {
|
1104 |
|
1105 |
function mc_check_data($action,$_POST, $i) {
|
1106 |
global $wpdb, $current_user, $users_entries;
|
1107 |
+
$mcdb = $wpdb;
|
1108 |
|
1109 |
$start_date_ok = 0;
|
1110 |
$end_date_ok = 0;
|
1177 |
// set location
|
1178 |
if ($location_preset != 'none') {
|
1179 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id = $location_preset";
|
1180 |
+
$location = $mcdb->get_row($sql);
|
1181 |
$event_label = $location->location_label;
|
1182 |
$event_street = $location->location_street;
|
1183 |
$event_street2 = $location->location_street2;
|
my-calendar-events.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
// used to generate upcoming events lists
|
3 |
function mc_get_all_events( $category ) {
|
4 |
global $wpdb;
|
|
|
|
|
5 |
$select_category = ( $category!='default' )?mc_select_category($category,'all'):'';
|
6 |
$limit_string = mc_limit_string('all');
|
7 |
|
@@ -13,7 +15,7 @@ global $wpdb;
|
|
13 |
$join = '';
|
14 |
}
|
15 |
$limits = $select_category . $join . $limit_string;
|
16 |
-
$events = $
|
17 |
$offset = (60*60*get_option('gmt_offset'));
|
18 |
$date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
|
19 |
$arr_events = array();
|
@@ -35,8 +37,10 @@ global $wpdb;
|
|
35 |
|
36 |
function mc_get_rss_events( $cat_id=false) {
|
37 |
global $wpdb;
|
|
|
|
|
38 |
if ( $cat_id ) { $cat = "WHERE event_category = $cat_id"; } else { $cat = ''; }
|
39 |
-
$events = $
|
40 |
foreach ( array_keys($events) as $key ) {
|
41 |
$event =& $events[$key];
|
42 |
$output[] = $event;
|
@@ -46,6 +50,8 @@ function mc_get_rss_events( $cat_id=false) {
|
|
46 |
|
47 |
function my_calendar_get_event($date,$id,$type='html') {
|
48 |
global $wpdb;
|
|
|
|
|
49 |
$date = explode("-",$date);
|
50 |
$m = (int) $date[1];
|
51 |
$d = (int) $date[2];
|
@@ -53,7 +59,7 @@ function my_calendar_get_event($date,$id,$type='html') {
|
|
53 |
if (!checkdate($m,$d,$y)) {
|
54 |
return;
|
55 |
}
|
56 |
-
$event = $
|
57 |
$event->event_start_ts = strtotime( $event->event_begin . ' ' . $event->event_time );
|
58 |
if ( $type == 'object' ) { return $event; }
|
59 |
if ($event) {
|
@@ -82,6 +88,8 @@ function my_calendar_grab_events($y,$m,$d,$category=null,$ltype='',$lvalue='',$s
|
|
82 |
}
|
83 |
}
|
84 |
global $wpdb;
|
|
|
|
|
85 |
$select_category = ( $category != null )?mc_select_category($category):'';
|
86 |
$select_location = mc_limit_string( 'grab', $ltype, $lvalue );
|
87 |
|
@@ -101,7 +109,7 @@ function my_calendar_grab_events($y,$m,$d,$category=null,$ltype='',$lvalue='',$s
|
|
101 |
} else {
|
102 |
$weekday_string = '';
|
103 |
}
|
104 |
-
$events = $
|
105 |
SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category $select_location $limit_string AND event_begin <= '$date' AND event_end >= '$date' AND event_recur = 'S'
|
106 |
UNION
|
107 |
SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category $select_location $limit_string AND event_recur = 'Y' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin)
|
@@ -364,6 +372,7 @@ function mc_check_cache($y, $m, $d, $category, $ltype, $lvalue) {
|
|
364 |
|
365 |
function mc_clean_cache( $cache, $category, $ltype, $lvalue ) {
|
366 |
global $wpdb;
|
|
|
367 |
// process cache to strip events which do not meet current restrictions
|
368 |
if ( $cache == 'empty' ) return false;
|
369 |
$type = ($ltype != 'all')?"event_$ltype":"event_state";
|
2 |
// used to generate upcoming events lists
|
3 |
function mc_get_all_events( $category ) {
|
4 |
global $wpdb;
|
5 |
+
$mcdb = $wpdb;
|
6 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
7 |
$select_category = ( $category!='default' )?mc_select_category($category,'all'):'';
|
8 |
$limit_string = mc_limit_string('all');
|
9 |
|
15 |
$join = '';
|
16 |
}
|
17 |
$limits = $select_category . $join . $limit_string;
|
18 |
+
$events = $mcdb->get_results("SELECT *,event_begin as event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $limits AND event_flagged <> 1");
|
19 |
$offset = (60*60*get_option('gmt_offset'));
|
20 |
$date = date('Y', time()+($offset)).'-'.date('m', time()+($offset)).'-'.date('d', time()+($offset));
|
21 |
$arr_events = array();
|
37 |
|
38 |
function mc_get_rss_events( $cat_id=false) {
|
39 |
global $wpdb;
|
40 |
+
$mcdb = $wpdb;
|
41 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
42 |
if ( $cat_id ) { $cat = "WHERE event_category = $cat_id"; } else { $cat = ''; }
|
43 |
+
$events = $mcdb->get_results("SELECT *,event_begin as event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $cat ORDER BY event_added DESC LIMIT 0,15" );
|
44 |
foreach ( array_keys($events) as $key ) {
|
45 |
$event =& $events[$key];
|
46 |
$output[] = $event;
|
50 |
|
51 |
function my_calendar_get_event($date,$id,$type='html') {
|
52 |
global $wpdb;
|
53 |
+
$mcdb = $wpdb;
|
54 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
55 |
$date = explode("-",$date);
|
56 |
$m = (int) $date[1];
|
57 |
$d = (int) $date[2];
|
59 |
if (!checkdate($m,$d,$y)) {
|
60 |
return;
|
61 |
}
|
62 |
+
$event = $mcdb->get_row("SELECT * FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE event_id=$id");
|
63 |
$event->event_start_ts = strtotime( $event->event_begin . ' ' . $event->event_time );
|
64 |
if ( $type == 'object' ) { return $event; }
|
65 |
if ($event) {
|
88 |
}
|
89 |
}
|
90 |
global $wpdb;
|
91 |
+
$mcdb = $wpdb;
|
92 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
93 |
$select_category = ( $category != null )?mc_select_category($category):'';
|
94 |
$select_location = mc_limit_string( 'grab', $ltype, $lvalue );
|
95 |
|
109 |
} else {
|
110 |
$weekday_string = '';
|
111 |
}
|
112 |
+
$events = $mcdb->get_results($weekday_string . "
|
113 |
SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category $select_location $limit_string AND event_begin <= '$date' AND event_end >= '$date' AND event_recur = 'S'
|
114 |
UNION
|
115 |
SELECT *,event_begin AS event_original_begin FROM " . MY_CALENDAR_TABLE . " JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE $select_category $select_location $limit_string AND event_recur = 'Y' AND EXTRACT(YEAR FROM '$date') >= EXTRACT(YEAR FROM event_begin)
|
372 |
|
373 |
function mc_clean_cache( $cache, $category, $ltype, $lvalue ) {
|
374 |
global $wpdb;
|
375 |
+
$mcdb = $wpdb;
|
376 |
// process cache to strip events which do not meet current restrictions
|
377 |
if ( $cache == 'empty' ) return false;
|
378 |
$type = ($ltype != 'all')?"event_$ltype":"event_state";
|
my-calendar-export.php
CHANGED
@@ -25,7 +25,10 @@ function my_calendar_generate_vcal( $event_id ) {
|
|
25 |
$id = (int) $mc_id[2];
|
26 |
$date = $mc_id[1];
|
27 |
$event = my_calendar_get_event( $date, $id, 'object' );
|
|
|
28 |
$array = event_as_array($event, 'ical' );
|
|
|
|
|
29 |
$template = "BEGIN:VCALENDAR
|
30 |
VERSION:2.0
|
31 |
METHOD:PUBLISH
|
25 |
$id = (int) $mc_id[2];
|
26 |
$date = $mc_id[1];
|
27 |
$event = my_calendar_get_event( $date, $id, 'object' );
|
28 |
+
// need to modify date values to match real values using date above
|
29 |
$array = event_as_array($event, 'ical' );
|
30 |
+
print_r($array);
|
31 |
+
|
32 |
$template = "BEGIN:VCALENDAR
|
33 |
VERSION:2.0
|
34 |
METHOD:PUBLISH
|
my-calendar-group-manager.php
CHANGED
@@ -5,6 +5,7 @@ if (!empty($_SERVER['SCRIPT_FILENAME']) && 'my-calendar-group-manager.php' == ba
|
|
5 |
|
6 |
function edit_my_calendar_groups() {
|
7 |
global $current_user, $wpdb, $users_entries;
|
|
|
8 |
|
9 |
// First some quick cleaning up
|
10 |
$edit = $save = false;
|
@@ -44,14 +45,14 @@ if ( isset( $_POST['event_action'] ) ) {
|
|
44 |
foreach ( $_POST['break'] as $event_id ) {
|
45 |
$update = array( 'event_group_id'=>0 );
|
46 |
$formats = array( '%d' );
|
47 |
-
//$
|
48 |
-
$result = $
|
49 |
my_calendar_table(),
|
50 |
$update,
|
51 |
array( 'event_id'=>$event_id ),
|
52 |
$formats,
|
53 |
'%d' );
|
54 |
-
//$
|
55 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
56 |
if ( $result === false ) {
|
57 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not updated.','my-calendar')."$url</p></div>";
|
@@ -71,14 +72,14 @@ if ( isset( $_POST['event_action'] ) ) {
|
|
71 |
$group_id = $events[0];
|
72 |
$update = array( 'event_group_id'=>$group_id );
|
73 |
$formats = array( '%d' );
|
74 |
-
//$
|
75 |
-
$result = $
|
76 |
my_calendar_table(),
|
77 |
$update,
|
78 |
array( 'event_id'=>$event_id ),
|
79 |
$formats,
|
80 |
'%d' );
|
81 |
-
//$
|
82 |
if ( $result === false ) {
|
83 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not grouped.','my-calendar')."</p></div>";
|
84 |
} else if ( $result === 0 ) {
|
@@ -93,39 +94,36 @@ if ( isset( $_POST['event_action'] ) ) {
|
|
93 |
|
94 |
?>
|
95 |
|
96 |
-
<div class="wrap" id="my-calendar">
|
97 |
-
<?php
|
98 |
-
my_calendar_check_db();
|
99 |
-
check_akismet();
|
100 |
-
?>
|
101 |
<?php
|
102 |
if ( $action == 'edit' || ($action == 'edit' && $error_with_saving == 1) ) {
|
103 |
?>
|
104 |
<div id="icon-edit" class="icon32"></div>
|
105 |
<h2><?php _e('Edit Event Group','my-calendar'); ?></h2>
|
106 |
-
<?php jd_show_support_box(); ?>
|
107 |
<?php
|
108 |
if ( empty($event_id) || empty($group_id) ) {
|
109 |
echo "<div class=\"error\"><p>".__("You must provide an event group id in order to edit it",'my-calendar')."</p></div>";
|
110 |
} else {
|
111 |
jd_groups_edit_form('edit', $event_id, $group_id );
|
112 |
}
|
113 |
-
jd_groups_display_list();
|
114 |
} else {
|
115 |
?>
|
116 |
<div id="icon-edit" class="icon32"></div>
|
117 |
<h2><?php _e('Manage Event Groups','my-calendar'); ?></h2>
|
118 |
-
<?php jd_show_support_box(); ?>
|
119 |
<p><?php _e('Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the "Edit Group" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)','my-calendar'); ?></p>
|
120 |
<p><?php _e('The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event.','my-calendar'); ?></p>
|
121 |
-
<?php jd_groups_display_list(); ?>
|
122 |
<?php } ?>
|
|
|
|
|
|
|
123 |
</div>
|
124 |
<?php
|
125 |
}
|
126 |
|
127 |
function my_calendar_save_group( $action,$output,$event_id=false ) {
|
128 |
global $wpdb,$event_author;
|
|
|
129 |
$proceed = $output[0];
|
130 |
$message = '';
|
131 |
if ( $action == 'edit' && $proceed == true ) {
|
@@ -137,14 +135,14 @@ global $wpdb,$event_author;
|
|
137 |
'%d','%d','%d','%d','%d',
|
138 |
'%f','%f'
|
139 |
);
|
140 |
-
//$
|
141 |
-
$result = $
|
142 |
my_calendar_table(),
|
143 |
$update,
|
144 |
array( 'event_id'=>$event_id ),
|
145 |
$formats,
|
146 |
'%d' );
|
147 |
-
//$
|
148 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
149 |
if ( $result === false ) {
|
150 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
|
@@ -164,11 +162,12 @@ global $wpdb,$event_author;
|
|
164 |
|
165 |
function jd_acquire_group_data($event_id=false) {
|
166 |
global $wpdb,$users_entries;
|
|
|
167 |
if ( $event_id !== false ) {
|
168 |
if ( intval($event_id) != $event_id ) {
|
169 |
return "<div class=\"error\"><p>".__('Sorry! That\'s an invalid event key.','my-calendar')."</p></div>";
|
170 |
} else {
|
171 |
-
$data = $
|
172 |
if ( empty($data) ) {
|
173 |
return "<div class=\"error\"><p>".__("Sorry! We couldn't find an event with that ID.",'my-calendar')."</p></div>";
|
174 |
}
|
@@ -188,12 +187,13 @@ global $wpdb,$users_entries;
|
|
188 |
|
189 |
function mc_compare_group_members( $group_id ) {
|
190 |
global $wpdb;
|
|
|
191 |
$query = "SELECT event_title, event_desc, event_short, event_link, event_label,
|
192 |
event_street, event_street2, event_city, event_state, event_postcode,
|
193 |
event_region, event_country, event_url, event_image, event_category,
|
194 |
event_link_expires, event_zoom, event_phone, event_open, event_host, event_longitude, event_latitude
|
195 |
FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
196 |
-
$results = $
|
197 |
$count = count($results);
|
198 |
for($i=0;$i<$count;$i++) {
|
199 |
$n = (($i+1)>$count-1)?0:$i+1;
|
@@ -206,10 +206,11 @@ function mc_compare_group_members( $group_id ) {
|
|
206 |
|
207 |
function mc_group_form( $group_id, $type='break' ) {
|
208 |
global $wpdb;
|
|
|
209 |
$event_id = (int) $_GET['event_id'];
|
210 |
$nonce = wp_create_nonce('my-calendar-nonce');
|
211 |
$query = "SELECT event_id, event_begin, event_time FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
212 |
-
$results = $
|
213 |
if ( $type == 'apply' ) {
|
214 |
$warning = (!mc_compare_group_members($group_id))?"<p class='warning'>".__('<strong>NOTE:</strong> The group editable fields for the events in this group do not match','my-calendar')."</p>":'<p>'.__('The group editable fields for the events in this group match.','my-calendar').'</p>';
|
215 |
} else {
|
@@ -222,7 +223,7 @@ function mc_group_form( $group_id, $type='break' ) {
|
|
222 |
$group .= ($type == 'break')?"<form method='post' action='".admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event_id&group_id=$group_id")."'>
|
223 |
<div><input type='hidden' value='$group_id' name='group_id' /><input type='hidden' value='$type' name='event_action' /><input type='hidden' name='_wpnonce' value='$nonce' />
|
224 |
</div>":'';
|
225 |
-
$group .= "<ul>";
|
226 |
$checked = ( $type=='apply' )?' checked="checked"':'';
|
227 |
foreach ( $results as $result ) {
|
228 |
$date = date_i18n( 'D, j M, Y', strtotime( $result->event_begin ) );
|
@@ -239,6 +240,7 @@ function mc_group_form( $group_id, $type='break' ) {
|
|
239 |
// The event edit form for the manage events admin page
|
240 |
function jd_groups_edit_form( $mode='edit', $event_id=false, $group_id=false ) {
|
241 |
global $wpdb,$users_entries,$user_ID, $output;
|
|
|
242 |
$message = '';
|
243 |
if ($event_id != false) {
|
244 |
$data = jd_acquire_group_data( $event_id );
|
@@ -255,23 +257,23 @@ function jd_groups_edit_form( $mode='edit', $event_id=false, $group_id=false ) {
|
|
255 |
|
256 |
<?php echo ($message != '')?"<div class='error'><p>$message</p></div>":''; ?>
|
257 |
<?php echo $group; ?>
|
258 |
-
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event_id&group_id=$group_id"); ?>">
|
259 |
<?php my_calendar_print_group_fields($data,$mode,$event_id, $group_id); ?>
|
260 |
-
<p>
|
261 |
-
<input type="submit" name="save" class="button-primary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
|
262 |
-
</p>
|
263 |
-
</form>
|
264 |
|
265 |
<?php
|
266 |
}
|
267 |
|
268 |
function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
269 |
global $user_ID, $wpdb;
|
|
|
270 |
get_currentuserinfo();
|
271 |
$user = get_userdata($user_ID);
|
272 |
$mc_input_administrator = (get_option('mc_input_options_administrators')=='true' && current_user_can('manage_options'))?true:false;
|
273 |
$mc_input = get_option('mc_input_options');
|
274 |
?>
|
|
|
|
|
|
|
|
|
275 |
<div>
|
276 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
277 |
<input type="hidden" name="group_id" value="<?php if ( !empty( $data->event_group_id ) ) { echo $data->event_group_id; } else { mc_group_id(); } ?>" />
|
@@ -280,16 +282,17 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
280 |
<input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
|
281 |
<input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
|
282 |
</div>
|
283 |
-
<div
|
284 |
<div class="postbox">
|
|
|
285 |
<div class="inside">
|
286 |
-
|
287 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
|
288 |
</p>
|
289 |
<fieldset>
|
290 |
<legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
|
291 |
<p>
|
292 |
-
<label for="event_title"><?php _e('Event Title','my-calendar'); ?><span><?php _e('(required)','my-calendar'); ?></span></label
|
293 |
</p>
|
294 |
<?php
|
295 |
$apply = mc_group_form( $group_id, 'apply' );
|
@@ -301,10 +304,10 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
301 |
</p>
|
302 |
<?php } ?>
|
303 |
<?php if ($mc_input['event_desc'] == 'on' || $mc_input_administrator ) { ?>
|
304 |
-
<
|
305 |
<?php if ( !empty($data) ) { $description = $data->event_desc; } else { $description = ''; } ?>
|
306 |
-
<label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><?php if ( $mc_input['event_use_editor'] == 'on' ) { the_editor( stripslashes($description) ); } else { ?><textarea id="content" name="content" class="event_desc" rows="5" cols="80"><?php echo stripslashes(esc_attr($description)); ?></textarea><?php if ( $mc_input['event_use_editor'] == 'on' ) { ?></div><?php } } ?>
|
307 |
-
</
|
308 |
<?php } ?>
|
309 |
<?php
|
310 |
// If the editor is enabled, shouldn't display the image uploader.
|
@@ -348,20 +351,20 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
348 |
}
|
349 |
?>
|
350 |
</select>
|
351 |
-
</p>
|
352 |
<?php if ($mc_input['event_category'] == 'on' || $mc_input_administrator ) { ?>
|
353 |
<p>
|
354 |
<label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
|
355 |
<select id="event_category" name="event_category">
|
356 |
<?php
|
357 |
// Grab all the categories and list them
|
358 |
-
$sql = "SELECT * FROM " . my_calendar_categories_table();
|
359 |
-
$cats = $
|
360 |
foreach($cats as $cat) {
|
361 |
echo '<option value="'.$cat->category_id.'"';
|
362 |
if (!empty($data)) {
|
363 |
if ($data->event_category == $cat->category_id){
|
364 |
-
echo 'selected="selected"';
|
365 |
}
|
366 |
}
|
367 |
echo '>'.stripslashes($cat->category_name).'</option>';
|
@@ -382,9 +385,12 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
382 |
</fieldset>
|
383 |
</div>
|
384 |
</div>
|
|
|
385 |
<?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) {
|
386 |
// add a "don't change" option here ?>
|
|
|
387 |
<div class="postbox">
|
|
|
388 |
<div class="inside">
|
389 |
<fieldset>
|
390 |
<legend><?php _e('Event Registration Status','my-calendar'); ?></legend>
|
@@ -399,7 +405,8 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
399 |
</p>
|
400 |
</fieldset>
|
401 |
</div>
|
402 |
-
</div>
|
|
|
403 |
<?php } else { ?>
|
404 |
<div>
|
405 |
<input type="hidden" name="event_open" value="2" />
|
@@ -409,13 +416,15 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
409 |
|
410 |
<?php if ( ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') || $mc_input_administrator ) { ?>
|
411 |
|
|
|
412 |
<div class="postbox">
|
|
|
413 |
<div class="inside">
|
414 |
<fieldset>
|
415 |
<legend><?php _e('Event Location','my-calendar'); ?></legend>
|
416 |
<?php } ?>
|
417 |
<?php if ($mc_input['event_location_dropdown'] == 'on' || $mc_input_administrator ) { ?>
|
418 |
-
<?php $locations = $
|
419 |
if ( !empty($locations) ) {
|
420 |
?>
|
421 |
<p>
|
@@ -457,9 +466,10 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
457 |
<label for="event_phone"><?php _e('Phone','my-calendar'); ?></label> <input type="text" id="event_phone" name="event_phone" class="input" size="32" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_phone)); ?>" />
|
458 |
</p>
|
459 |
<p>
|
460 |
-
<label for="event_city"><?php _e('City','my-calendar'); ?></label> <input type="text" id="event_city" name="event_city" class="input" size="40" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_city)); ?>" /> <label for="event_state"><?php _e('State/Province','my-calendar'); ?></label> <input type="text" id="event_state" name="event_state" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_state)); ?>" />
|
461 |
</p>
|
462 |
<p>
|
|
|
463 |
<label for="event_region"><?php _e('Region','my-calendar'); ?></label> <input type="text" id="event_region" name="event_region" class="input" size="40" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_region)); ?>" />
|
464 |
</p>
|
465 |
<p>
|
@@ -493,12 +503,19 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
|
493 |
</fieldset>
|
494 |
</div>
|
495 |
</div>
|
|
|
|
|
|
|
|
|
|
|
496 |
<?php } ?>
|
497 |
</div>
|
|
|
498 |
<?php }
|
499 |
|
500 |
function mc_check_group_data( $action,$_POST ) {
|
501 |
global $wpdb, $current_user, $users_entries;
|
|
|
502 |
|
503 |
$url_ok = 0;
|
504 |
$title_ok = 0;
|
@@ -518,7 +535,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
|
|
518 |
$desc = !empty($_POST['content']) ? trim($_POST['content']) : '';
|
519 |
$short = !empty($_POST['event_short']) ? trim($_POST['event_short']) : '';
|
520 |
$repeats = !empty($_POST['event_repeats']) ? trim($_POST['event_repeats']) : 0;
|
521 |
-
$host = !empty($_POST['event_host']) ? $_POST['event_host'] : $current_user->ID;
|
522 |
$category = !empty($_POST['event_category']) ? $_POST['event_category'] : '';
|
523 |
$linky = !empty($_POST['event_link']) ? trim($_POST['event_link']) : '';
|
524 |
$expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
|
@@ -529,7 +546,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
|
|
529 |
// set location
|
530 |
if ($location_preset != 'none') {
|
531 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id = $location_preset";
|
532 |
-
$location = $
|
533 |
$event_label = $location->location_label;
|
534 |
$event_street = $location->location_street;
|
535 |
$event_street2 = $location->location_street2;
|
@@ -642,6 +659,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
|
|
642 |
// Used on the manage events admin page to display a list of events
|
643 |
function jd_groups_display_list() {
|
644 |
global $wpdb;
|
|
|
645 |
|
646 |
$sortby = ( isset( $_GET['sort'] ) )?(int) $_GET['sort']:get_option('mc_default_sort');
|
647 |
|
@@ -680,14 +698,14 @@ function jd_groups_display_list() {
|
|
680 |
$sortbydirection = $sortdir;
|
681 |
}
|
682 |
|
683 |
-
$events = $
|
684 |
if ($sortbydirection == 'DESC') {
|
685 |
$sorting = "&order=ASC";
|
686 |
} else {
|
687 |
$sorting = '';
|
688 |
}
|
689 |
?>
|
690 |
-
<h2><?php _e('Create/Modify Groups','my-calendar'); ?></h2>
|
691 |
<p><?php _e('Check a set of events to group them for mass editing.','my-calendar'); ?></p>
|
692 |
<?php
|
693 |
if ( !empty($events) ) {
|
@@ -697,28 +715,28 @@ function jd_groups_display_list() {
|
|
697 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
698 |
<input type="hidden" name="event_action" value="group" />
|
699 |
</div>
|
700 |
-
<p>
|
701 |
<input type="submit" class="button-primary group" value="<?php _e('Group checked events for mass editing','my-calendar'); ?>" />
|
702 |
</p>
|
703 |
-
<table class="widefat page fixed" id="my-calendar-admin-table"
|
704 |
<thead>
|
705 |
<tr>
|
706 |
-
<th class="manage-column
|
707 |
-
<th class="manage-column
|
708 |
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
|
709 |
-
<th class="manage-column
|
710 |
-
<th class="manage-column
|
711 |
-
<th class="manage-column
|
712 |
-
<th class="manage-column
|
713 |
-
<th class="manage-column
|
714 |
-
<th class="manage-column
|
715 |
-
<th class="manage-column
|
716 |
</tr>
|
717 |
</thead>
|
718 |
<?php
|
719 |
$class = '';
|
720 |
$sql = "SELECT * FROM " . my_calendar_categories_table() ;
|
721 |
-
$categories = $
|
722 |
|
723 |
foreach ( $events as $event ) {
|
724 |
$class = ($class == 'alternate') ? '' : 'alternate';
|
@@ -784,7 +802,7 @@ function jd_groups_display_list() {
|
|
784 |
?>
|
785 |
</table>
|
786 |
<p>
|
787 |
-
<input type="submit" class="button-
|
788 |
</p>
|
789 |
</form>
|
790 |
<?php
|
5 |
|
6 |
function edit_my_calendar_groups() {
|
7 |
global $current_user, $wpdb, $users_entries;
|
8 |
+
$mcdb = $wpdb;
|
9 |
|
10 |
// First some quick cleaning up
|
11 |
$edit = $save = false;
|
45 |
foreach ( $_POST['break'] as $event_id ) {
|
46 |
$update = array( 'event_group_id'=>0 );
|
47 |
$formats = array( '%d' );
|
48 |
+
//$mcdb->show_errors();
|
49 |
+
$result = $mcdb->update(
|
50 |
my_calendar_table(),
|
51 |
$update,
|
52 |
array( 'event_id'=>$event_id ),
|
53 |
$formats,
|
54 |
'%d' );
|
55 |
+
//$mcdb->print_error();
|
56 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
57 |
if ( $result === false ) {
|
58 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not updated.','my-calendar')."$url</p></div>";
|
72 |
$group_id = $events[0];
|
73 |
$update = array( 'event_group_id'=>$group_id );
|
74 |
$formats = array( '%d' );
|
75 |
+
//$mcdb->show_errors();
|
76 |
+
$result = $mcdb->update(
|
77 |
my_calendar_table(),
|
78 |
$update,
|
79 |
array( 'event_id'=>$event_id ),
|
80 |
$formats,
|
81 |
'%d' );
|
82 |
+
//$mcdb->print_error();
|
83 |
if ( $result === false ) {
|
84 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not grouped.','my-calendar')."</p></div>";
|
85 |
} else if ( $result === 0 ) {
|
94 |
|
95 |
?>
|
96 |
|
97 |
+
<div class="wrap jd-my-calendar" id="my-calendar">
|
98 |
+
<?php my_calendar_check_db();?>
|
|
|
|
|
|
|
99 |
<?php
|
100 |
if ( $action == 'edit' || ($action == 'edit' && $error_with_saving == 1) ) {
|
101 |
?>
|
102 |
<div id="icon-edit" class="icon32"></div>
|
103 |
<h2><?php _e('Edit Event Group','my-calendar'); ?></h2>
|
|
|
104 |
<?php
|
105 |
if ( empty($event_id) || empty($group_id) ) {
|
106 |
echo "<div class=\"error\"><p>".__("You must provide an event group id in order to edit it",'my-calendar')."</p></div>";
|
107 |
} else {
|
108 |
jd_groups_edit_form('edit', $event_id, $group_id );
|
109 |
}
|
|
|
110 |
} else {
|
111 |
?>
|
112 |
<div id="icon-edit" class="icon32"></div>
|
113 |
<h2><?php _e('Manage Event Groups','my-calendar'); ?></h2>
|
|
|
114 |
<p><?php _e('Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the "Edit Group" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)','my-calendar'); ?></p>
|
115 |
<p><?php _e('The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event.','my-calendar'); ?></p>
|
|
|
116 |
<?php } ?>
|
117 |
+
|
118 |
+
<?php jd_show_support_box(); ?>
|
119 |
+
<?php jd_groups_display_list(); ?>
|
120 |
</div>
|
121 |
<?php
|
122 |
}
|
123 |
|
124 |
function my_calendar_save_group( $action,$output,$event_id=false ) {
|
125 |
global $wpdb,$event_author;
|
126 |
+
$mcdb = $wpdb;
|
127 |
$proceed = $output[0];
|
128 |
$message = '';
|
129 |
if ( $action == 'edit' && $proceed == true ) {
|
135 |
'%d','%d','%d','%d','%d',
|
136 |
'%f','%f'
|
137 |
);
|
138 |
+
//$mcdb->show_errors();
|
139 |
+
$result = $mcdb->update(
|
140 |
my_calendar_table(),
|
141 |
$update,
|
142 |
array( 'event_id'=>$event_id ),
|
143 |
$formats,
|
144 |
'%d' );
|
145 |
+
//$mcdb->print_error();
|
146 |
$url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
|
147 |
if ( $result === false ) {
|
148 |
$message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
|
162 |
|
163 |
function jd_acquire_group_data($event_id=false) {
|
164 |
global $wpdb,$users_entries;
|
165 |
+
$mcdb = $wpdb;
|
166 |
if ( $event_id !== false ) {
|
167 |
if ( intval($event_id) != $event_id ) {
|
168 |
return "<div class=\"error\"><p>".__('Sorry! That\'s an invalid event key.','my-calendar')."</p></div>";
|
169 |
} else {
|
170 |
+
$data = $mcdb->get_results("SELECT * FROM " . my_calendar_table() . " WHERE event_id='" . (int) $event_id . "' LIMIT 1");
|
171 |
if ( empty($data) ) {
|
172 |
return "<div class=\"error\"><p>".__("Sorry! We couldn't find an event with that ID.",'my-calendar')."</p></div>";
|
173 |
}
|
187 |
|
188 |
function mc_compare_group_members( $group_id ) {
|
189 |
global $wpdb;
|
190 |
+
$mcdb = $wpdb;
|
191 |
$query = "SELECT event_title, event_desc, event_short, event_link, event_label,
|
192 |
event_street, event_street2, event_city, event_state, event_postcode,
|
193 |
event_region, event_country, event_url, event_image, event_category,
|
194 |
event_link_expires, event_zoom, event_phone, event_open, event_host, event_longitude, event_latitude
|
195 |
FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
196 |
+
$results = $mcdb->get_results( $query, ARRAY_N );
|
197 |
$count = count($results);
|
198 |
for($i=0;$i<$count;$i++) {
|
199 |
$n = (($i+1)>$count-1)?0:$i+1;
|
206 |
|
207 |
function mc_group_form( $group_id, $type='break' ) {
|
208 |
global $wpdb;
|
209 |
+
$mcdb = $wpdb;
|
210 |
$event_id = (int) $_GET['event_id'];
|
211 |
$nonce = wp_create_nonce('my-calendar-nonce');
|
212 |
$query = "SELECT event_id, event_begin, event_time FROM ".my_calendar_table()." WHERE event_group_id = $group_id";
|
213 |
+
$results = $mcdb->get_results($query);
|
214 |
if ( $type == 'apply' ) {
|
215 |
$warning = (!mc_compare_group_members($group_id))?"<p class='warning'>".__('<strong>NOTE:</strong> The group editable fields for the events in this group do not match','my-calendar')."</p>":'<p>'.__('The group editable fields for the events in this group match.','my-calendar').'</p>';
|
216 |
} else {
|
223 |
$group .= ($type == 'break')?"<form method='post' action='".admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event_id&group_id=$group_id")."'>
|
224 |
<div><input type='hidden' value='$group_id' name='group_id' /><input type='hidden' value='$type' name='event_action' /><input type='hidden' name='_wpnonce' value='$nonce' />
|
225 |
</div>":'';
|
226 |
+
$group .= "<ul class='columns'>";
|
227 |
$checked = ( $type=='apply' )?' checked="checked"':'';
|
228 |
foreach ( $results as $result ) {
|
229 |
$date = date_i18n( 'D, j M, Y', strtotime( $result->event_begin ) );
|
240 |
// The event edit form for the manage events admin page
|
241 |
function jd_groups_edit_form( $mode='edit', $event_id=false, $group_id=false ) {
|
242 |
global $wpdb,$users_entries,$user_ID, $output;
|
243 |
+
$mcdb = $wpdb;
|
244 |
$message = '';
|
245 |
if ($event_id != false) {
|
246 |
$data = jd_acquire_group_data( $event_id );
|
257 |
|
258 |
<?php echo ($message != '')?"<div class='error'><p>$message</p></div>":''; ?>
|
259 |
<?php echo $group; ?>
|
|
|
260 |
<?php my_calendar_print_group_fields($data,$mode,$event_id, $group_id); ?>
|
|
|
|
|
|
|
|
|
261 |
|
262 |
<?php
|
263 |
}
|
264 |
|
265 |
function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
|
266 |
global $user_ID, $wpdb;
|
267 |
+
$mcdb = $wpdb;
|
268 |
get_currentuserinfo();
|
269 |
$user = get_userdata($user_ID);
|
270 |
$mc_input_administrator = (get_option('mc_input_options_administrators')=='true' && current_user_can('manage_options'))?true:false;
|
271 |
$mc_input = get_option('mc_input_options');
|
272 |
?>
|
273 |
+
|
274 |
+
<div class="postbox-container" style="width: 70%">
|
275 |
+
<div class="metabox-holder">
|
276 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event_id&group_id=$group_id"); ?>">
|
277 |
<div>
|
278 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
279 |
<input type="hidden" name="group_id" value="<?php if ( !empty( $data->event_group_id ) ) { echo $data->event_group_id; } else { mc_group_id(); } ?>" />
|
282 |
<input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
|
283 |
<input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
|
284 |
</div>
|
285 |
+
<div class="ui-sortable meta-box-sortables">
|
286 |
<div class="postbox">
|
287 |
+
<h3><?php _e('Manage Event Groups','my-calendar'); ?></h3>
|
288 |
<div class="inside">
|
289 |
+
<p>
|
290 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
|
291 |
</p>
|
292 |
<fieldset>
|
293 |
<legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
|
294 |
<p>
|
295 |
+
<label for="event_title"><?php _e('Event Title','my-calendar'); ?><span><?php _e('(required)','my-calendar'); ?></span></label><br /><input type="text" id="event_title" name="event_title" class="input" size="60" value="<?php if ( !empty($data) ) echo stripslashes(esc_attr($data->event_title)); ?>" />
|
296 |
</p>
|
297 |
<?php
|
298 |
$apply = mc_group_form( $group_id, 'apply' );
|
304 |
</p>
|
305 |
<?php } ?>
|
306 |
<?php if ($mc_input['event_desc'] == 'on' || $mc_input_administrator ) { ?>
|
307 |
+
<div id="group_description">
|
308 |
<?php if ( !empty($data) ) { $description = $data->event_desc; } else { $description = ''; } ?>
|
309 |
+
<label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><?php if ( $mc_input['event_use_editor'] == 'on' ) { if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '>=' ) ) { wp_editor( stripslashes($description), 'content', array( 'textarea_rows'=>10 ) ); } else { the_editor( stripslashes($description) ); } } else { ?><textarea id="content" name="content" class="event_desc" rows="5" cols="80"><?php echo stripslashes(esc_attr($description)); ?></textarea><?php if ( $mc_input['event_use_editor'] == 'on' ) { ?></div><?php } } ?>
|
310 |
+
</div>
|
311 |
<?php } ?>
|
312 |
<?php
|
313 |
// If the editor is enabled, shouldn't display the image uploader.
|
351 |
}
|
352 |
?>
|
353 |
</select>
|
354 |
+
</p>
|
355 |
<?php if ($mc_input['event_category'] == 'on' || $mc_input_administrator ) { ?>
|
356 |
<p>
|
357 |
<label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
|
358 |
<select id="event_category" name="event_category">
|
359 |
<?php
|
360 |
// Grab all the categories and list them
|
361 |
+
$sql = "SELECT * FROM " . my_calendar_categories_table() . " ORDER BY category_name ASC";
|
362 |
+
$cats = $mcdb->get_results($sql);
|
363 |
foreach($cats as $cat) {
|
364 |
echo '<option value="'.$cat->category_id.'"';
|
365 |
if (!empty($data)) {
|
366 |
if ($data->event_category == $cat->category_id){
|
367 |
+
echo ' selected="selected"';
|
368 |
}
|
369 |
}
|
370 |
echo '>'.stripslashes($cat->category_name).'</option>';
|
385 |
</fieldset>
|
386 |
</div>
|
387 |
</div>
|
388 |
+
</div>
|
389 |
<?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) {
|
390 |
// add a "don't change" option here ?>
|
391 |
+
<div class="ui-sortable meta-box-sortables">
|
392 |
<div class="postbox">
|
393 |
+
<h3><?php _e('Event Registration Options','my-calendar'); ?></h3>
|
394 |
<div class="inside">
|
395 |
<fieldset>
|
396 |
<legend><?php _e('Event Registration Status','my-calendar'); ?></legend>
|
405 |
</p>
|
406 |
</fieldset>
|
407 |
</div>
|
408 |
+
</div>
|
409 |
+
</div>
|
410 |
<?php } else { ?>
|
411 |
<div>
|
412 |
<input type="hidden" name="event_open" value="2" />
|
416 |
|
417 |
<?php if ( ($mc_input['event_location'] == 'on' || $mc_input['event_location_dropdown'] == 'on') || $mc_input_administrator ) { ?>
|
418 |
|
419 |
+
<div class="ui-sortable meta-box-sortables">
|
420 |
<div class="postbox">
|
421 |
+
<h3><?php _e('Event Location','my-calendar'); ?></h3>
|
422 |
<div class="inside">
|
423 |
<fieldset>
|
424 |
<legend><?php _e('Event Location','my-calendar'); ?></legend>
|
425 |
<?php } ?>
|
426 |
<?php if ($mc_input['event_location_dropdown'] == 'on' || $mc_input_administrator ) { ?>
|
427 |
+
<?php $locations = $mcdb->get_results("SELECT location_id,location_label FROM " . my_calendar_locations_table() . " ORDER BY location_label ASC");
|
428 |
if ( !empty($locations) ) {
|
429 |
?>
|
430 |
<p>
|
466 |
<label for="event_phone"><?php _e('Phone','my-calendar'); ?></label> <input type="text" id="event_phone" name="event_phone" class="input" size="32" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_phone)); ?>" />
|
467 |
</p>
|
468 |
<p>
|
469 |
+
<label for="event_city"><?php _e('City','my-calendar'); ?></label> <input type="text" id="event_city" name="event_city" class="input" size="40" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_city)); ?>" /> <label for="event_state"><?php _e('State/Province','my-calendar'); ?></label> <input type="text" id="event_state" name="event_state" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_state)); ?>" />
|
470 |
</p>
|
471 |
<p>
|
472 |
+
<label for="event_postcode"><?php _e('Postal Code','my-calendar'); ?></label> <input type="text" id="event_postcode" name="event_postcode" class="input" size="10" value="<?php if ( !empty($data) ) esc_attr_e(stripslashes($data->event_postcode)); ?>" />
|
473 |
<label for="event_region"><?php _e('Region','my-calendar'); ?></label> <input type="text" id="event_region" name="event_region" class="input" size="40" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_region)); ?>" />
|
474 |
</p>
|
475 |
<p>
|
503 |
</fieldset>
|
504 |
</div>
|
505 |
</div>
|
506 |
+
</div>
|
507 |
+
<p>
|
508 |
+
<input type="submit" name="save" class="button-secondary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
|
509 |
+
</p>
|
510 |
+
</form>
|
511 |
<?php } ?>
|
512 |
</div>
|
513 |
+
</div>
|
514 |
<?php }
|
515 |
|
516 |
function mc_check_group_data( $action,$_POST ) {
|
517 |
global $wpdb, $current_user, $users_entries;
|
518 |
+
$mcdb = $wpdb;
|
519 |
|
520 |
$url_ok = 0;
|
521 |
$title_ok = 0;
|
535 |
$desc = !empty($_POST['content']) ? trim($_POST['content']) : '';
|
536 |
$short = !empty($_POST['event_short']) ? trim($_POST['event_short']) : '';
|
537 |
$repeats = !empty($_POST['event_repeats']) ? trim($_POST['event_repeats']) : 0;
|
538 |
+
$host = !empty($_POST['event_host']) ? $_POST['event_host'] : $current_user->ID;
|
539 |
$category = !empty($_POST['event_category']) ? $_POST['event_category'] : '';
|
540 |
$linky = !empty($_POST['event_link']) ? trim($_POST['event_link']) : '';
|
541 |
$expires = !empty($_POST['event_link_expires']) ? $_POST['event_link_expires'] : '0';
|
546 |
// set location
|
547 |
if ($location_preset != 'none') {
|
548 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id = $location_preset";
|
549 |
+
$location = $mcdb->get_row($sql);
|
550 |
$event_label = $location->location_label;
|
551 |
$event_street = $location->location_street;
|
552 |
$event_street2 = $location->location_street2;
|
659 |
// Used on the manage events admin page to display a list of events
|
660 |
function jd_groups_display_list() {
|
661 |
global $wpdb;
|
662 |
+
$mcdb = $wpdb;
|
663 |
|
664 |
$sortby = ( isset( $_GET['sort'] ) )?(int) $_GET['sort']:get_option('mc_default_sort');
|
665 |
|
698 |
$sortbydirection = $sortdir;
|
699 |
}
|
700 |
|
701 |
+
$events = $mcdb->get_results("SELECT * FROM " . my_calendar_table() . " ORDER BY $sortbyvalue $sortbydirection");
|
702 |
if ($sortbydirection == 'DESC') {
|
703 |
$sorting = "&order=ASC";
|
704 |
} else {
|
705 |
$sorting = '';
|
706 |
}
|
707 |
?>
|
708 |
+
<h2 class="mc-clear"><?php _e('Create/Modify Groups','my-calendar'); ?></h2>
|
709 |
<p><?php _e('Check a set of events to group them for mass editing.','my-calendar'); ?></p>
|
710 |
<?php
|
711 |
if ( !empty($events) ) {
|
715 |
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
|
716 |
<input type="hidden" name="event_action" value="group" />
|
717 |
</div>
|
718 |
+
<p style="position:relative;">
|
719 |
<input type="submit" class="button-primary group" value="<?php _e('Group checked events for mass editing','my-calendar'); ?>" />
|
720 |
</p>
|
721 |
+
<table class="widefat page fixed" id="my-calendar-admin-table">
|
722 |
<thead>
|
723 |
<tr>
|
724 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
|
725 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=8$sorting"); ?>"><?php _e('Group','my-calendar') ?></a></th>
|
726 |
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
|
727 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=7$sorting"); ?>"><?php _e('Where','my-calendar') ?></a></th>
|
728 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=3$sorting"); ?>"><?php _e('Description','my-calendar') ?></a></th>
|
729 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=4$sorting"); ?>"><?php _e('Starts','my-calendar') ?></a></th>
|
730 |
+
<th class="manage-column" scope="col"><?php _e('Recurs','my-calendar') ?></th>
|
731 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
|
732 |
+
<th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
|
733 |
+
<th class="manage-column" scope="col"><?php _e('Edit','my-calendar') ?></th>
|
734 |
</tr>
|
735 |
</thead>
|
736 |
<?php
|
737 |
$class = '';
|
738 |
$sql = "SELECT * FROM " . my_calendar_categories_table() ;
|
739 |
+
$categories = $mcdb->get_results($sql);
|
740 |
|
741 |
foreach ( $events as $event ) {
|
742 |
$class = ($class == 'alternate') ? '' : 'alternate';
|
802 |
?>
|
803 |
</table>
|
804 |
<p>
|
805 |
+
<input type="submit" class="button-secondary group" value="<?php _e('Group checked events for mass editing','my-calendar'); ?>" />
|
806 |
</p>
|
807 |
</form>
|
808 |
<?php
|
my-calendar-help.php
CHANGED
@@ -3,11 +3,12 @@ function my_calendar_help() {
|
|
3 |
global $wp_plugin_dir;
|
4 |
?>
|
5 |
|
6 |
-
<div class="wrap">
|
7 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
8 |
-
|
9 |
-
<div
|
10 |
|
|
|
11 |
<div class="postbox">
|
12 |
<h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
|
13 |
<div class="inside">
|
@@ -15,30 +16,35 @@ global $wp_plugin_dir;
|
|
15 |
<?php _e('These shortcodes can be used in Posts, Pages, or in text widgets.','my-calendar'); ?>
|
16 |
</p>
|
17 |
<h4><?php _e('Main Calendar Shortcode (List or Grid, Weekly or Monthly view)','my-calendar'); ?></h4>
|
18 |
-
<p><code>[my_calendar]</code
|
|
|
19 |
<?php _e('This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format.','my-calendar'); ?>
|
20 |
</p>
|
21 |
-
<p><code>[my_calendar category="General|Other" format="list" showkey="yes" shownav="yes" toggle="no" time="week"]</code
|
22 |
-
|
|
|
|
|
23 |
<ul>
|
24 |
<li><code>category</code>: <?php _e('Names or IDs of categories included in this calendar, comma or pipe separated.','my-calendar'); ?></li>
|
25 |
<li><code>format</code>: <?php _e('Either "list" or "mini" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar.','my-calendar'); ?></li>
|
26 |
<li><code>showkey</code>: <?php _e('Set as "no" to hide the category key.','my-calendar'); ?></li>
|
27 |
<li><code>shownav</code>: <?php _e('Set as "no" to hide the month-by-month navigation.','my-calendar'); ?></li>
|
|
|
28 |
<li><code>toggle</code>: <?php _e('Set as "yes" to show a link to switch between list and grid formats.','my-calendar'); ?></li>
|
29 |
<li><code>time</code>: <?php _e('Set to "week" to show a one week view or to "day" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)','my-calendar'); ?></li>
|
30 |
<li><code>ltype</code>: <?php _e('The type of location data to restrict by.','my-calendar'); ?></li>
|
31 |
<li><code>lvalue</code>: <?php _e('The specific location information to filter to.','my-calendar'); ?></li>
|
32 |
</ul>
|
33 |
-
</p>
|
34 |
<p>
|
35 |
<em><?php _e('The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget.','my-calendar'); ?></em>
|
36 |
</p>
|
37 |
<h4><?php _e('Additional Calendar Views (Upcoming events, today\'s events)','my-calendar'); ?></h4>
|
38 |
-
<p><code>[my_calendar_upcoming before="3" after="3" type="event" fallback="No events coming up!" category="General" template="{title} {date}" order="asc" skip="0"]</code
|
|
|
39 |
<?php _e('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. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events.','my-calendar'); ?>
|
40 |
</p>
|
41 |
-
<p><code>[my_calendar_today category="" fallback="Nothing today!" template="{title} {date}"]</code
|
|
|
42 |
<?php _e('Predictably enough, this shortcode displays the output of the Today\'s Events widget, with three configurable attributes: category, template and fallback text.','my-calendar'); ?>
|
43 |
</p>
|
44 |
<p>
|
@@ -47,228 +53,259 @@ global $wp_plugin_dir;
|
|
47 |
|
48 |
<h4><?php _e('Supplement Features (Locations filter, Categories filter)','my-calendar'); ?></h4>
|
49 |
|
50 |
-
<p><code>[my_calendar_locations show="list" type="saved" datatype="name"]</code
|
|
|
51 |
<?php _e('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>, <code>zip</code> (postal code), or <code>region</code>.','my-calendar'); ?>
|
52 |
</p>
|
53 |
-
<p><code>[my_calendar_show_locations datatype=""]</code
|
|
|
54 |
<?php _e('If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use "hcard" to display all available location information.','my-calendar'); ?>
|
55 |
</p>
|
56 |
-
<p><code>[my_calendar_categories show="list"]</code
|
|
|
57 |
<?php _e('This shortcode produces a list of event categories, 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>.','my-calendar'); ?>
|
58 |
</p>
|
59 |
</div>
|
60 |
</div>
|
61 |
-
<div id="icons">
|
62 |
-
<div class="postbox">
|
63 |
-
<h3><?php _e('Category Icons','my-calendar'); ?></h3>
|
64 |
-
<div class="inside">
|
65 |
-
<p>
|
66 |
-
<?php _e('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.','my-calendar'); ?>
|
67 |
-
</p>
|
68 |
-
<p>
|
69 |
-
<?php _e('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.','my-calendar'); ?> <?php _e('Your icons folder is:','my-calendar'); ?> <code><?php echo $wp_plugin_dir; ?>/my-calendar/icons/</code> <?php _e('You can alternately place icons in:','my-calendar'); ?> <code><?php echo $wp_plugin_dir; ?>/my-calendar-custom/</code>
|
70 |
-
</p>
|
71 |
-
</div>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
|
75 |
-
|
76 |
-
<div class="
|
77 |
-
<
|
78 |
-
<
|
79 |
-
<
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
<
|
84 |
-
|
85 |
-
</
|
86 |
-
</div>
|
|
|
87 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
</div>
|
89 |
|
90 |
-
<div id="templates">
|
91 |
<div class="postbox">
|
92 |
<h3 id="template"><?php _e('Widget Templating','my-calendar'); ?></h3>
|
93 |
<div class="inside">
|
94 |
-
<p>
|
95 |
-
<?php _e('
|
96 |
-
</p>
|
97 |
-
<
|
98 |
-
<
|
99 |
-
|
100 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
-
<dt><code>{link_title}</code></dt>
|
103 |
-
<dd><?php _e('Displays title of the event as a link if a URL is present, or the title alone if no URL is available.','my-calendar'); ?></dd>
|
104 |
|
105 |
-
<dt><code>{time}</code></dt>
|
106 |
-
<dd><?php _e('Displays the start time for the event.','my-calendar'); ?></dd>
|
107 |
|
108 |
-
<dt><code>{usertime}</code></dt>
|
109 |
-
<dd><?php _e('Displays the start time for the event adjusted to the current user\'s time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone.','my-calendar'); ?></dd>
|
110 |
|
111 |
-
<dt><code>{endusertime}</code></dt>
|
112 |
-
<dd><?php _e('Displays the end time for the event adjusted to the current user\'s time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone.','my-calendar'); ?></dd>
|
113 |
|
114 |
-
<dt><code>{date}</code></dt>
|
115 |
-
<dd><?php _e('Displays the date on which the event begins.','my-calendar'); ?></dd>
|
116 |
|
117 |
-
<dt><code>{enddate}</code></dt>
|
118 |
-
<dd><?php _e('Displays the date on which the event ends.','my-calendar'); ?></dd>
|
119 |
|
120 |
-
<dt><code>{endtime}</code></dt>
|
121 |
-
<dd><?php _e('Displays the time at which the event ends.','my-calendar'); ?></dd>
|
122 |
|
123 |
-
<dt><code>{daterange}</code></dt>
|
124 |
-
<dd><?php _e('Displays the beginning date to the end date for events. Does not show end date if same as start date.','my-calendar'); ?></dd>
|
125 |
|
126 |
-
<dt><code>{
|
127 |
-
<dd><?php _e('
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
-
<dt><code>{author}</code></dt>
|
130 |
-
<dd><?php _e('Displays the WordPress author who posted the event.','my-calendar'); ?></dd>
|
131 |
|
132 |
-
<dt><code>{host}</code></dt>
|
133 |
-
<dd><?php _e('Displays the name of the person assigned as host for the event.','my-calendar'); ?></dd>
|
134 |
|
135 |
-
<dt><code>{host_email}</code></dt>
|
136 |
-
<dd><?php _e('Displays the email address of the person assigned as host for the event.','my-calendar'); ?></dd>
|
137 |
|
138 |
-
<dt><code>{shortdesc}</code></dt>
|
139 |
-
<dd><?php _e('Displays the short version of the event description.','my-calendar'); ?></dd>
|
140 |
|
141 |
-
<dt><code>{shortdesc_raw}</code></dt>
|
142 |
-
<dd><?php _e('Displays short description without converting paragraphs.','my-calendar'); ?></dd>
|
143 |
|
144 |
-
<dt><code>{description}</code></dt>
|
145 |
-
<dd><?php _e('Displays the description of the event.','my-calendar'); ?></dd>
|
146 |
|
147 |
-
<dt><code>{description_raw}</code></dt>
|
148 |
-
<dd><?php _e('Displays description without converting paragraphs.','my-calendar'); ?></dd>
|
149 |
|
150 |
-
<dt><code>{image}</code></dt>
|
151 |
-
<dd><?php _e('Image associated with the event.','my-calendar'); ?></dd>
|
152 |
|
153 |
-
<dt><code>{link}</code></dt>
|
154 |
-
<dd><?php _e('Displays the URL provided for the event.','my-calendar'); ?></dd>
|
155 |
|
156 |
-
<dt><code>{ical_link}</code></dt>
|
157 |
-
<dd><?php _e('Produces the URL to download an iCal formatted record for the event.','my-calendar'); ?></dd>
|
158 |
|
159 |
-
<dt><code>{ical_html}</code></dt>
|
160 |
-
<dd><?php _e('Produces a hyperlink to download an iCal formatted record for the event.','my-calendar'); ?></dd>
|
161 |
|
162 |
-
<dt><code>{recurs}</code></dt>
|
163 |
-
<dd><?php _e('Shows the recurrence status of the event. (Daily, Weekly, etc.)','my-calendar'); ?></dd>
|
164 |
|
165 |
-
<dt><code>{repeats}</code></dt>
|
166 |
-
<dd><?php _e('Shows the number of repetitions of the event.','my-calendar'); ?></dd>
|
167 |
|
168 |
-
<dt><code>{details}</code></dt>
|
169 |
-
<dd><?php _e('Provides a link to an auto-generated page containing all information on the given event.','my-calendar'); ?> <strong><?php _e('Requires that the site URL has been provided on the Settings page','my-calendar'); ?></strong>
|
170 |
|
171 |
-
<dt><code>{event_open}</code></dt>
|
172 |
-
<dd><?php _e('Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event.','my-calendar'); ?></dd>
|
173 |
|
174 |
-
<dt><code>{event_status}</code></dt>
|
175 |
-
<dd><?php _e('Displays the current status of the event: either "Published" or "Reserved" - primary used in email templates.','my-calendar'); ?></dd>
|
176 |
-
</dl>
|
177 |
-
<h4><?php _e('Location Template Tags','my-calendar'); ?></h4>
|
178 |
|
179 |
-
<dl>
|
180 |
-
<dt><code>{location}</code></dt>
|
181 |
-
<dd><?php _e('Displays the name of the location of the event.','my-calendar'); ?></dd>
|
182 |
|
183 |
-
<dt><code>{street}</code></dt>
|
184 |
-
<dd><?php _e('Displays the first line of the site address.','my-calendar'); ?></dd>
|
185 |
|
186 |
-
<dt><code>{street2}</code></dt>
|
187 |
-
<dd><?php _e('Displays the second line of the site address.','my-calendar'); ?></dd>
|
188 |
|
189 |
-
<dt><code>{city}</code></dt>
|
190 |
-
<dd><?php _e('Displays the city for the location.','my-calendar'); ?></dd>
|
191 |
|
192 |
-
<dt><code>{state}</code></dt>
|
193 |
-
<dd><?php _e('Displays the state for the location.','my-calendar'); ?></dd>
|
194 |
|
195 |
-
<dt><code>{postcode}</code></dt>
|
196 |
-
<dd><?php _e('Displays the postcode for the location.','my-calendar'); ?></dd>
|
197 |
|
198 |
-
<dt><code>{region}</code></dt>
|
199 |
-
<dd><?php _e('Shows the custom region entered for the location.','my-calendar'); ?></dd>
|
200 |
|
201 |
-
<dt><code>{country}</code></dt>
|
202 |
-
<dd><?php _e('Displays the country for the event location.','my-calendar'); ?></dd>
|
203 |
|
204 |
-
<dt><code>{sitelink}</code></dt>
|
205 |
-
<dd><?php _e('Output the URL for the location link.','my-calendar'); ?></dd>
|
206 |
|
207 |
-
<dt><code>{sitelink_html}</code></dt>
|
208 |
-
<dd><?php _e('Output a hyperlink to the location\'s listed link with default link text.','my-calendar'); ?></dd>
|
209 |
|
210 |
-
<dt><code>{hcard}</code></dt>
|
211 |
-
<dd><?php _e('Displays the event address in <a href="http://microformats.org/wiki/hcard">hcard</a> format.','my-calendar'); ?></dd>
|
212 |
|
213 |
-
<dt><code>{link_map}</code></dt>
|
214 |
-
<dd><?php _e('Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty.','my-calendar'); ?></dd>
|
215 |
-
</dl>
|
216 |
-
<h4><?php _e('Category Template Tags','my-calendar'); ?></h4>
|
217 |
|
218 |
-
<dl>
|
219 |
-
<dt><code>{category}</code></dt>
|
220 |
-
<dd><?php _e('Displays the name of the category the event is in.','my-calendar'); ?></dd>
|
221 |
|
222 |
-
<dt><code>{icon}</code></dt>
|
223 |
-
<dd><?php _e('Produces the address of the current event\'s category icon.','my-calendar'); ?></dd>
|
224 |
|
225 |
-
<dt><code>{icon_html}</code></dt>
|
226 |
-
<dd><?php _e('Produces the HTML for the current event\'s category icon.','my-calendar'); ?></dd>
|
227 |
|
228 |
-
<dt><code>{color}</code></dt>
|
229 |
-
<dd><?php _e('Produces the hex code for the current event\'s category color.','my-calendar'); ?></dd>
|
230 |
|
231 |
-
<dt><code>{category_id}</code></dt>
|
232 |
-
<dd><?php _e('Displays the ID for
|
233 |
-
|
234 |
-
</dl>
|
235 |
|
236 |
-
<h4><?php _e('Special use Template Tags','my-calendar'); ?></h4>
|
237 |
|
238 |
-
<dl>
|
239 |
-
<dt><code>{dateid}</code></dt>
|
240 |
-
<dd><?php _e('A unique ID for the current instance of an event.','my-calendar'); ?></dd>
|
241 |
|
242 |
-
<dt><code>{id}</code></dt>
|
243 |
-
<dd><?php _e('The ID for the event record associated with the current instance of an event.','my-calendar'); ?></dd>
|
244 |
|
245 |
-
</dl>
|
246 |
|
247 |
-
</div>
|
248 |
</div>
|
249 |
</div>
|
250 |
-
|
|
|
|
|
251 |
<div class="postbox">
|
252 |
-
<h3 id="
|
253 |
<div class="inside">
|
254 |
-
<?php
|
|
|
|
|
|
|
|
|
255 |
</div>
|
256 |
</div>
|
257 |
|
258 |
-
<div id="notes">
|
259 |
<div class="postbox">
|
260 |
-
<h3 id="
|
261 |
<div class="inside">
|
262 |
-
<p>
|
263 |
-
<?php _e('<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they\'re uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the "General" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you\'ll need to remove those tables yourself. All your My Calendar settings will be deleted, however.','my-calendar'); ?>
|
264 |
-
</p>
|
265 |
-
<p>
|
266 |
-
<?php _e('<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!','my-calendar'); ?>
|
267 |
-
</p>
|
268 |
</div>
|
269 |
</div>
|
270 |
</div>
|
271 |
|
272 |
</div>
|
|
|
|
|
|
|
|
|
|
|
273 |
</div>
|
274 |
<?php } ?>
|
3 |
global $wp_plugin_dir;
|
4 |
?>
|
5 |
|
6 |
+
<div class="wrap jd-my-calendar">
|
7 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
8 |
+
<div class="postbox-container" style="width: 70%">
|
9 |
+
<div class="metabox-holder">
|
10 |
|
11 |
+
<div class="ui-sortable meta-box-sortables">
|
12 |
<div class="postbox">
|
13 |
<h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
|
14 |
<div class="inside">
|
16 |
<?php _e('These shortcodes can be used in Posts, Pages, or in text widgets.','my-calendar'); ?>
|
17 |
</p>
|
18 |
<h4><?php _e('Main Calendar Shortcode (List or Grid, Weekly or Monthly view)','my-calendar'); ?></h4>
|
19 |
+
<p><code>[my_calendar]</code></p>
|
20 |
+
<p>
|
21 |
<?php _e('This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format.','my-calendar'); ?>
|
22 |
</p>
|
23 |
+
<p><code>[my_calendar category="General|Other" format="list" showkey="yes" shownav="yes" showjump="(settings value)" toggle="no" time="week"]</code></p>
|
24 |
+
<p>
|
25 |
+
<?php _e('The shortcode supports nine attributes:','my-calendar'); ?>
|
26 |
+
</p>
|
27 |
<ul>
|
28 |
<li><code>category</code>: <?php _e('Names or IDs of categories included in this calendar, comma or pipe separated.','my-calendar'); ?></li>
|
29 |
<li><code>format</code>: <?php _e('Either "list" or "mini" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar.','my-calendar'); ?></li>
|
30 |
<li><code>showkey</code>: <?php _e('Set as "no" to hide the category key.','my-calendar'); ?></li>
|
31 |
<li><code>shownav</code>: <?php _e('Set as "no" to hide the month-by-month navigation.','my-calendar'); ?></li>
|
32 |
+
<li><code>showjump</code>: <?php _e('Set to "no" or "yes" to override the default settings.','my-calendar'); ?></li>
|
33 |
<li><code>toggle</code>: <?php _e('Set as "yes" to show a link to switch between list and grid formats.','my-calendar'); ?></li>
|
34 |
<li><code>time</code>: <?php _e('Set to "week" to show a one week view or to "day" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)','my-calendar'); ?></li>
|
35 |
<li><code>ltype</code>: <?php _e('The type of location data to restrict by.','my-calendar'); ?></li>
|
36 |
<li><code>lvalue</code>: <?php _e('The specific location information to filter to.','my-calendar'); ?></li>
|
37 |
</ul>
|
|
|
38 |
<p>
|
39 |
<em><?php _e('The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget.','my-calendar'); ?></em>
|
40 |
</p>
|
41 |
<h4><?php _e('Additional Calendar Views (Upcoming events, today\'s events)','my-calendar'); ?></h4>
|
42 |
+
<p><code>[my_calendar_upcoming before="3" after="3" type="event" fallback="No events coming up!" category="General" template="{title} {date}" order="asc" skip="0"]</code></p>
|
43 |
+
<p>
|
44 |
<?php _e('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. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events.','my-calendar'); ?>
|
45 |
</p>
|
46 |
+
<p><code>[my_calendar_today category="" fallback="Nothing today!" template="{title} {date}"]</code></p>
|
47 |
+
<p>
|
48 |
<?php _e('Predictably enough, this shortcode displays the output of the Today\'s Events widget, with three configurable attributes: category, template and fallback text.','my-calendar'); ?>
|
49 |
</p>
|
50 |
<p>
|
53 |
|
54 |
<h4><?php _e('Supplement Features (Locations filter, Categories filter)','my-calendar'); ?></h4>
|
55 |
|
56 |
+
<p><code>[my_calendar_locations show="list" type="saved" datatype="name"]</code></p>
|
57 |
+
<p>
|
58 |
<?php _e('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>, <code>zip</code> (postal code), or <code>region</code>.','my-calendar'); ?>
|
59 |
</p>
|
60 |
+
<p><code>[my_calendar_show_locations datatype=""]</code></p>
|
61 |
+
<p>
|
62 |
<?php _e('If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use "hcard" to display all available location information.','my-calendar'); ?>
|
63 |
</p>
|
64 |
+
<p><code>[my_calendar_categories show="list"]</code></p>
|
65 |
+
<p>
|
66 |
<?php _e('This shortcode produces a list of event categories, 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>.','my-calendar'); ?>
|
67 |
</p>
|
68 |
</div>
|
69 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
|
72 |
+
<div class="ui-sortable meta-box-sortables" id="icons">
|
73 |
+
<div class="postbox">
|
74 |
+
<h3><?php _e('Category Icons','my-calendar'); ?></h3>
|
75 |
+
<div class="inside">
|
76 |
+
<p>
|
77 |
+
<?php _e('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.','my-calendar'); ?>
|
78 |
+
</p>
|
79 |
+
<p>
|
80 |
+
<?php _e('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.','my-calendar'); ?> <?php _e('Your icons folder is:','my-calendar'); ?> <code><?php echo $wp_plugin_dir; ?>/my-calendar/icons/</code> <?php _e('You can alternately place icons in:','my-calendar'); ?> <code><?php echo $wp_plugin_dir; ?>/my-calendar-custom/</code>
|
81 |
+
</p>
|
82 |
+
</div>
|
83 |
+
</div>
|
84 |
</div>
|
85 |
+
|
86 |
+
|
87 |
+
<div class="ui-sortable meta-box-sortables">
|
88 |
+
<div class="postbox">
|
89 |
+
<h3><?php _e('Custom Styles','my-calendar'); ?></h3>
|
90 |
+
<div class="inside">
|
91 |
+
<p>
|
92 |
+
<?php _e('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.','my-calendar'); ?>
|
93 |
+
</p>
|
94 |
+
<ul>
|
95 |
+
<li><?php _e('Your stylesheet directory is','my-calendar'); ?>: <code><?php echo $wp_plugin_dir; ?>/my-calendar/styles/</code></li>
|
96 |
+
<li><?php _e('Your custom stylesheets directory is','my-calendar'); ?>: <code><?php echo $wp_plugin_dir; ?>/my-calendar-custom/styles/</code></li>
|
97 |
+
</ul>
|
98 |
+
<p>
|
99 |
+
<?php _e('You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>.','my-calendar'); ?>
|
100 |
+
</p>
|
101 |
+
</div>
|
102 |
+
</div>
|
103 |
</div>
|
104 |
|
105 |
+
<div class="ui-sortable meta-box-sortables" id="templates">
|
106 |
<div class="postbox">
|
107 |
<h3 id="template"><?php _e('Widget Templating','my-calendar'); ?></h3>
|
108 |
<div class="inside">
|
109 |
+
<p>
|
110 |
+
<?php _e('All template tags support two attributes: before="value" and after="value". The values of the attributes will be placed before and after the output value. These attribute values <strong>must</strong> be wrapped in double quotes.','my-calendar'); ?>
|
111 |
+
</p>
|
112 |
+
<p>
|
113 |
+
<?php _e('Date/Time template tags support the "format" attribute: format="M, Y", where the value is a PHP formatted date string. Only <code>dtstart</code> and <code>dtend</code> include the full date/time information for formatting.','my-calendar'); ?>
|
114 |
+
</p>
|
115 |
+
<p>
|
116 |
+
<strong><?php _e('Example:','my-calendar'); ?></strong> <code>{title before="<h3>" after="</h3>"}</code>
|
117 |
+
</p>
|
118 |
+
<h4><?php _e('Event Template Tags','my-calendar'); ?></h4>
|
119 |
+
<dl>
|
120 |
+
<dt><code>{title}</code></dt>
|
121 |
+
<dd><?php _e('Displays the title of the event.','my-calendar'); ?></dd>
|
122 |
|
123 |
+
<dt><code>{link_title}</code></dt>
|
124 |
+
<dd><?php _e('Displays title of the event as a link if a URL is present, or the title alone if no URL is available.','my-calendar'); ?></dd>
|
125 |
|
126 |
+
<dt><code>{time}</code></dt>
|
127 |
+
<dd><?php _e('Displays the start time for the event.','my-calendar'); ?></dd>
|
128 |
|
129 |
+
<dt><code>{usertime}</code></dt>
|
130 |
+
<dd><?php _e('Displays the start time for the event adjusted to the current user\'s time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone.','my-calendar'); ?></dd>
|
131 |
|
132 |
+
<dt><code>{endusertime}</code></dt>
|
133 |
+
<dd><?php _e('Displays the end time for the event adjusted to the current user\'s time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone.','my-calendar'); ?></dd>
|
134 |
|
135 |
+
<dt><code>{date}</code></dt>
|
136 |
+
<dd><?php _e('Displays the date on which the event begins.','my-calendar'); ?></dd>
|
137 |
|
138 |
+
<dt><code>{enddate}</code></dt>
|
139 |
+
<dd><?php _e('Displays the date on which the event ends.','my-calendar'); ?></dd>
|
140 |
|
141 |
+
<dt><code>{endtime}</code></dt>
|
142 |
+
<dd><?php _e('Displays the time at which the event ends.','my-calendar'); ?></dd>
|
143 |
|
144 |
+
<dt><code>{daterange}</code></dt>
|
145 |
+
<dd><?php _e('Displays the beginning date to the end date for events. Does not show end date if same as start date.','my-calendar'); ?></dd>
|
146 |
|
147 |
+
<dt><code>{dtstart}</code></dt>
|
148 |
+
<dd><?php _e('Timestamp for beginning of event.','my-calendar'); ?></dd>
|
149 |
+
|
150 |
+
<dt><code>{dtend}</code></dt>
|
151 |
+
<dd><?php _e('Timestamp for end of event.','my-calendar'); ?></dd>
|
152 |
+
|
153 |
+
<dt><code>{multidate}</code></dt>
|
154 |
+
<dd><?php _e('For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time.','my-calendar'); ?></dd>
|
155 |
|
156 |
+
<dt><code>{author}</code></dt>
|
157 |
+
<dd><?php _e('Displays the WordPress author who posted the event.','my-calendar'); ?></dd>
|
158 |
|
159 |
+
<dt><code>{host}</code></dt>
|
160 |
+
<dd><?php _e('Displays the name of the person assigned as host for the event.','my-calendar'); ?></dd>
|
161 |
|
162 |
+
<dt><code>{host_email}</code></dt>
|
163 |
+
<dd><?php _e('Displays the email address of the person assigned as host for the event.','my-calendar'); ?></dd>
|
164 |
|
165 |
+
<dt><code>{shortdesc}</code></dt>
|
166 |
+
<dd><?php _e('Displays the short version of the event description.','my-calendar'); ?></dd>
|
167 |
|
168 |
+
<dt><code>{shortdesc_raw}</code></dt>
|
169 |
+
<dd><?php _e('Displays short description without converting paragraphs.','my-calendar'); ?></dd>
|
170 |
|
171 |
+
<dt><code>{description}</code></dt>
|
172 |
+
<dd><?php _e('Displays the description of the event.','my-calendar'); ?></dd>
|
173 |
|
174 |
+
<dt><code>{description_raw}</code></dt>
|
175 |
+
<dd><?php _e('Displays description without converting paragraphs.','my-calendar'); ?></dd>
|
176 |
|
177 |
+
<dt><code>{image}</code></dt>
|
178 |
+
<dd><?php _e('Image associated with the event.','my-calendar'); ?></dd>
|
179 |
|
180 |
+
<dt><code>{link}</code></dt>
|
181 |
+
<dd><?php _e('Displays the URL provided for the event.','my-calendar'); ?></dd>
|
182 |
|
183 |
+
<dt><code>{ical_link}</code></dt>
|
184 |
+
<dd><?php _e('Produces the URL to download an iCal formatted record for the event.','my-calendar'); ?></dd>
|
185 |
|
186 |
+
<dt><code>{ical_html}</code></dt>
|
187 |
+
<dd><?php _e('Produces a hyperlink to download an iCal formatted record for the event.','my-calendar'); ?></dd>
|
188 |
|
189 |
+
<dt><code>{recurs}</code></dt>
|
190 |
+
<dd><?php _e('Shows the recurrence status of the event. (Daily, Weekly, etc.)','my-calendar'); ?></dd>
|
191 |
|
192 |
+
<dt><code>{repeats}</code></dt>
|
193 |
+
<dd><?php _e('Shows the number of repetitions of the event.','my-calendar'); ?></dd>
|
194 |
|
195 |
+
<dt><code>{details}</code></dt>
|
196 |
+
<dd><?php _e('Provides a link to an auto-generated page containing all information on the given event.','my-calendar'); ?> <strong><?php _e('Requires that the site URL has been provided on the Settings page','my-calendar'); ?></strong>
|
197 |
|
198 |
+
<dt><code>{event_open}</code></dt>
|
199 |
+
<dd><?php _e('Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event.','my-calendar'); ?></dd>
|
200 |
|
201 |
+
<dt><code>{event_status}</code></dt>
|
202 |
+
<dd><?php _e('Displays the current status of the event: either "Published" or "Reserved" - primary used in email templates.','my-calendar'); ?></dd>
|
203 |
+
</dl>
|
204 |
+
<h4><?php _e('Location Template Tags','my-calendar'); ?></h4>
|
205 |
|
206 |
+
<dl>
|
207 |
+
<dt><code>{location}</code></dt>
|
208 |
+
<dd><?php _e('Displays the name of the location of the event.','my-calendar'); ?></dd>
|
209 |
|
210 |
+
<dt><code>{street}</code></dt>
|
211 |
+
<dd><?php _e('Displays the first line of the site address.','my-calendar'); ?></dd>
|
212 |
|
213 |
+
<dt><code>{street2}</code></dt>
|
214 |
+
<dd><?php _e('Displays the second line of the site address.','my-calendar'); ?></dd>
|
215 |
|
216 |
+
<dt><code>{city}</code></dt>
|
217 |
+
<dd><?php _e('Displays the city for the location.','my-calendar'); ?></dd>
|
218 |
|
219 |
+
<dt><code>{state}</code></dt>
|
220 |
+
<dd><?php _e('Displays the state for the location.','my-calendar'); ?></dd>
|
221 |
|
222 |
+
<dt><code>{postcode}</code></dt>
|
223 |
+
<dd><?php _e('Displays the postcode for the location.','my-calendar'); ?></dd>
|
224 |
|
225 |
+
<dt><code>{region}</code></dt>
|
226 |
+
<dd><?php _e('Shows the custom region entered for the location.','my-calendar'); ?></dd>
|
227 |
|
228 |
+
<dt><code>{country}</code></dt>
|
229 |
+
<dd><?php _e('Displays the country for the event location.','my-calendar'); ?></dd>
|
230 |
|
231 |
+
<dt><code>{sitelink}</code></dt>
|
232 |
+
<dd><?php _e('Output the URL for the location link.','my-calendar'); ?></dd>
|
233 |
|
234 |
+
<dt><code>{sitelink_html}</code></dt>
|
235 |
+
<dd><?php _e('Output a hyperlink to the location\'s listed link with default link text.','my-calendar'); ?></dd>
|
236 |
|
237 |
+
<dt><code>{hcard}</code></dt>
|
238 |
+
<dd><?php _e('Displays the event address in <a href="http://microformats.org/wiki/hcard">hcard</a> format.','my-calendar'); ?></dd>
|
239 |
|
240 |
+
<dt><code>{link_map}</code></dt>
|
241 |
+
<dd><?php _e('Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty.','my-calendar'); ?></dd>
|
242 |
+
</dl>
|
243 |
+
<h4><?php _e('Category Template Tags','my-calendar'); ?></h4>
|
244 |
|
245 |
+
<dl>
|
246 |
+
<dt><code>{category}</code></dt>
|
247 |
+
<dd><?php _e('Displays the name of the category the event is in.','my-calendar'); ?></dd>
|
248 |
|
249 |
+
<dt><code>{icon}</code></dt>
|
250 |
+
<dd><?php _e('Produces the address of the current event\'s category icon.','my-calendar'); ?></dd>
|
251 |
|
252 |
+
<dt><code>{icon_html}</code></dt>
|
253 |
+
<dd><?php _e('Produces the HTML for the current event\'s category icon.','my-calendar'); ?></dd>
|
254 |
|
255 |
+
<dt><code>{color}</code></dt>
|
256 |
+
<dd><?php _e('Produces the hex code for the current event\'s category color.','my-calendar'); ?></dd>
|
257 |
|
258 |
+
<dt><code>{category_id}</code></dt>
|
259 |
+
<dd><?php _e('Displays the ID for
|
260 |
+
the category the event is in.','my-calendar'); ?></dd>
|
261 |
+
</dl>
|
262 |
|
263 |
+
<h4><?php _e('Special use Template Tags','my-calendar'); ?></h4>
|
264 |
|
265 |
+
<dl>
|
266 |
+
<dt><code>{dateid}</code></dt>
|
267 |
+
<dd><?php _e('A unique ID for the current instance of an event.','my-calendar'); ?></dd>
|
268 |
|
269 |
+
<dt><code>{id}</code></dt>
|
270 |
+
<dd><?php _e('The ID for the event record associated with the current instance of an event.','my-calendar'); ?></dd>
|
271 |
|
272 |
+
</dl>
|
273 |
|
|
|
274 |
</div>
|
275 |
</div>
|
276 |
+
</div>
|
277 |
+
|
278 |
+
<div class="ui-sortable meta-box-sortables" id="get-support">
|
279 |
<div class="postbox">
|
280 |
+
<h3 id="support"><?php _e('Get Plug-in Support','my-calendar'); ?></h3>
|
281 |
<div class="inside">
|
282 |
+
<?php if ( current_user_can('administrator') ) { ?>
|
283 |
+
<?php jcd_get_support_form(); ?>
|
284 |
+
<?php } else { ?>
|
285 |
+
<?php _e('My Calendar support requests can only be sent by administrators.','my-calendar'); ?>
|
286 |
+
<?php } ?>
|
287 |
</div>
|
288 |
</div>
|
289 |
|
290 |
+
<div class="ui-sortable meta-box-sortables" id="notes">
|
291 |
<div class="postbox">
|
292 |
+
<h3 id="help"><?php _e('Helpful Information','my-calendar'); ?></h3>
|
293 |
<div class="inside">
|
294 |
+
<p>
|
295 |
+
<?php _e('<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they\'re uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the "General" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you\'ll need to remove those tables yourself. All your My Calendar settings will be deleted, however.','my-calendar'); ?>
|
296 |
+
</p>
|
297 |
+
<p>
|
298 |
+
<?php _e('<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!','my-calendar'); ?>
|
299 |
+
</p>
|
300 |
</div>
|
301 |
</div>
|
302 |
</div>
|
303 |
|
304 |
</div>
|
305 |
+
</div>
|
306 |
+
</div>
|
307 |
+
</div>
|
308 |
+
<?php jd_show_support_box(); ?>
|
309 |
+
|
310 |
</div>
|
311 |
<?php } ?>
|
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 |
$defaults = array(
|
6 |
'upcoming'=>array(
|
@@ -63,26 +63,26 @@ $initial_ajaxjs = "jQuery(document).ready(function($){
|
|
63 |
$('.calendar .my-calendar-nav a').live('click', function(e){
|
64 |
e.preventDefault();
|
65 |
var link = $(this).attr('href');
|
66 |
-
$('
|
67 |
-
$('
|
68 |
$('.calendar-event').children().not('h3').hide();
|
69 |
});
|
70 |
});
|
71 |
$('.mini .my-calendar-nav a').live('click', function(e){
|
72 |
e.preventDefault();
|
73 |
var link = $(this).attr('href');
|
74 |
-
$('
|
75 |
-
$('
|
76 |
$('.mini .has-events').children().not('.trigger').hide();
|
77 |
});
|
78 |
});
|
79 |
$('.list .my-calendar-nav a').live('click', function(e){
|
80 |
e.preventDefault();
|
81 |
var link = $(this).attr('href');
|
82 |
-
$('
|
83 |
-
$('
|
84 |
-
$('
|
85 |
-
$('
|
86 |
});
|
87 |
});
|
88 |
});";
|
@@ -102,8 +102,8 @@ $initial_caljs = 'jQuery(document).ready(function($) {
|
|
102 |
});';
|
103 |
|
104 |
$initial_listjs = 'jQuery(document).ready(function($) {
|
105 |
-
$("
|
106 |
-
$("
|
107 |
$(".event-date").live("click",
|
108 |
function(e) {
|
109 |
e.preventDefault();
|
@@ -127,11 +127,11 @@ $initial_minijs = 'jQuery(document).ready(function($) {
|
|
127 |
|
128 |
$default_template = "<strong>{date}</strong> – {link_title}<br /><span>{time}, {category}</span>";
|
129 |
$charset_collate = '';
|
130 |
-
if ( ! empty($
|
131 |
-
$charset_collate = "DEFAULT CHARACTER SET $
|
132 |
}
|
133 |
-
if ( ! empty($
|
134 |
-
$charset_collate .= " COLLATE $
|
135 |
}
|
136 |
|
137 |
$event_holiday = (get_option('mc_skip_holidays') == 'true' )?1:0;
|
@@ -314,7 +314,6 @@ $default_user_settings = array(
|
|
314 |
function mc_default_settings( ) {
|
315 |
global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_loc_db, $initial_cat_db, $default_user_settings,$grid_template,$list_template,$mini_template,$single_template,$mc_version, $defaults;
|
316 |
// no arguments
|
317 |
-
add_option('mc_can_manage_events','edit_posts');
|
318 |
add_option('mc_display_author','false');
|
319 |
add_option('mc_display_jump','false');
|
320 |
add_option('mc_version',$mc_version);
|
@@ -339,6 +338,7 @@ global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $ini
|
|
339 |
add_site_option('mc_multisite', '0' );
|
340 |
add_option('mc_event_mail','false');
|
341 |
add_option('mc_desc','true');
|
|
|
342 |
add_option('mc_short','false');
|
343 |
add_option('mc_event_mail_subject','');
|
344 |
add_option('mc_event_mail_to','');
|
@@ -357,16 +357,15 @@ global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $ini
|
|
357 |
add_option( 'mc_location_control','' );
|
358 |
add_option('mc_date_format',get_option('date_format') );
|
359 |
add_option('mc_templates', array(
|
360 |
-
'title'=>'{
|
361 |
'link'=>'{title}',
|
362 |
'grid'=>$grid_template,
|
363 |
'list'=>$list_template,
|
364 |
'mini'=>$mini_template,
|
365 |
'details'=>$single_template,
|
366 |
-
'label'=>''
|
367 |
));
|
368 |
add_option('mc_skip_holidays','false');
|
369 |
-
add_option('mc_event_edit_perms','manage_options');
|
370 |
add_option('mc_css_file','refresh.css');
|
371 |
add_option('mc_show_rss','false');
|
372 |
add_option('mc_show_ical','false');
|
@@ -374,12 +373,15 @@ global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $ini
|
|
374 |
add_option('mc_time_format',get_option('time_format'));
|
375 |
add_option( 'mc_widget_defaults',$defaults);
|
376 |
add_option( 'mc_show_weekends','true' );
|
|
|
377 |
add_option( 'mc_uri','' );
|
378 |
add_option( 'mc_show_event_vcal','false' );
|
379 |
add_option( 'mc_draggable',0 );
|
380 |
add_option( 'mc_caching_enabled','false' );
|
381 |
add_option( 'mc_week_caption',"The week's events" );
|
382 |
add_option( 'mc_multisite_show', 0 );
|
|
|
|
|
383 |
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
384 |
dbDelta($initial_db);
|
385 |
dbDelta($initial_cat_db);
|
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, $mcdb,$grid_template,$list_template,$mini_template,$single_template, $defaults;
|
4 |
|
5 |
$defaults = array(
|
6 |
'upcoming'=>array(
|
63 |
$('.calendar .my-calendar-nav a').live('click', function(e){
|
64 |
e.preventDefault();
|
65 |
var link = $(this).attr('href');
|
66 |
+
$('.calendar').html('Loading...');
|
67 |
+
$('.calendar').load(link+' .mc-main.calendar > *', function() {
|
68 |
$('.calendar-event').children().not('h3').hide();
|
69 |
});
|
70 |
});
|
71 |
$('.mini .my-calendar-nav a').live('click', function(e){
|
72 |
e.preventDefault();
|
73 |
var link = $(this).attr('href');
|
74 |
+
$('.mini').html('Loading...');
|
75 |
+
$('.mini').load(link+' .mini > *', function() {
|
76 |
$('.mini .has-events').children().not('.trigger').hide();
|
77 |
});
|
78 |
});
|
79 |
$('.list .my-calendar-nav a').live('click', function(e){
|
80 |
e.preventDefault();
|
81 |
var link = $(this).attr('href');
|
82 |
+
$('.list').html('Loading...');
|
83 |
+
$('.list').load(link+' .list > *', function() {
|
84 |
+
$('li.mc-events').children().not('.event-date').hide();
|
85 |
+
$('li.current-day').children().show();
|
86 |
});
|
87 |
});
|
88 |
});";
|
102 |
});';
|
103 |
|
104 |
$initial_listjs = 'jQuery(document).ready(function($) {
|
105 |
+
$("li.mc-events").children().not(".event-date").hide();
|
106 |
+
$("li.current-day").children().show();
|
107 |
$(".event-date").live("click",
|
108 |
function(e) {
|
109 |
e.preventDefault();
|
127 |
|
128 |
$default_template = "<strong>{date}</strong> – {link_title}<br /><span>{time}, {category}</span>";
|
129 |
$charset_collate = '';
|
130 |
+
if ( ! empty($mcdb->charset) ) {
|
131 |
+
$charset_collate = "DEFAULT CHARACTER SET $mcdb->charset";
|
132 |
}
|
133 |
+
if ( ! empty($mcdb->collate) ) {
|
134 |
+
$charset_collate .= " COLLATE $mcdb->collate";
|
135 |
}
|
136 |
|
137 |
$event_holiday = (get_option('mc_skip_holidays') == 'true' )?1:0;
|
314 |
function mc_default_settings( ) {
|
315 |
global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_loc_db, $initial_cat_db, $default_user_settings,$grid_template,$list_template,$mini_template,$single_template,$mc_version, $defaults;
|
316 |
// no arguments
|
|
|
317 |
add_option('mc_display_author','false');
|
318 |
add_option('mc_display_jump','false');
|
319 |
add_option('mc_version',$mc_version);
|
338 |
add_site_option('mc_multisite', '0' );
|
339 |
add_option('mc_event_mail','false');
|
340 |
add_option('mc_desc','true');
|
341 |
+
add_option('mc_process_shortcodes','false');
|
342 |
add_option('mc_short','false');
|
343 |
add_option('mc_event_mail_subject','');
|
344 |
add_option('mc_event_mail_to','');
|
357 |
add_option( 'mc_location_control','' );
|
358 |
add_option('mc_date_format',get_option('date_format') );
|
359 |
add_option('mc_templates', array(
|
360 |
+
'title'=>'{details}',
|
361 |
'link'=>'{title}',
|
362 |
'grid'=>$grid_template,
|
363 |
'list'=>$list_template,
|
364 |
'mini'=>$mini_template,
|
365 |
'details'=>$single_template,
|
366 |
+
'label'=>'{title}'
|
367 |
));
|
368 |
add_option('mc_skip_holidays','false');
|
|
|
369 |
add_option('mc_css_file','refresh.css');
|
370 |
add_option('mc_show_rss','false');
|
371 |
add_option('mc_show_ical','false');
|
373 |
add_option('mc_time_format',get_option('time_format'));
|
374 |
add_option( 'mc_widget_defaults',$defaults);
|
375 |
add_option( 'mc_show_weekends','true' );
|
376 |
+
add_option( 'mc_convert','true' );
|
377 |
add_option( 'mc_uri','' );
|
378 |
add_option( 'mc_show_event_vcal','false' );
|
379 |
add_option( 'mc_draggable',0 );
|
380 |
add_option( 'mc_caching_enabled','false' );
|
381 |
add_option( 'mc_week_caption',"The week's events" );
|
382 |
add_option( 'mc_multisite_show', 0 );
|
383 |
+
add_option( 'mc_event_link', 'true' );
|
384 |
+
mc_add_roles();
|
385 |
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
386 |
dbDelta($initial_db);
|
387 |
dbDelta($initial_cat_db);
|
my-calendar-limits.php
CHANGED
@@ -2,6 +2,8 @@
|
|
2 |
function mc_select_category($category, $type='event', $group='events' ) {
|
3 |
$category = urldecode($category);
|
4 |
global $wpdb;
|
|
|
|
|
5 |
$select_category = '';
|
6 |
$data = ($group=='category')?'category_id':'event_category';
|
7 |
if ( isset( $_GET['mcat'] ) ) { $category = $_GET['mcat']; }
|
@@ -29,7 +31,7 @@ global $wpdb;
|
|
29 |
$i++;
|
30 |
} else {
|
31 |
$key = esc_sql(trim($key));
|
32 |
-
$cat = $
|
33 |
$category_id = $cat->category_id;
|
34 |
if ($i == 1) { $select_category .= ($type=='all')?" WHERE (":' ('; }
|
35 |
$select_category .= " $data = $category_id";
|
@@ -45,7 +47,7 @@ global $wpdb;
|
|
45 |
if ( is_numeric( $category ) ) {
|
46 |
$select_category = ($type=='all')?" WHERE $data = $category":" event_category = $category AND";
|
47 |
} else {
|
48 |
-
$cat = $
|
49 |
if ( is_object($cat) ) {
|
50 |
$category_id = $cat->category_id;
|
51 |
$select_category = ($type=='all')?" WHERE $data = $category_id":" $data = $category_id AND";
|
@@ -100,5 +102,38 @@ global $user_ID;
|
|
100 |
//$limit_string .= ($type=='all')?' AND':"";
|
101 |
}
|
102 |
}
|
|
|
|
|
|
|
|
|
|
|
103 |
return $limit_string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
2 |
function mc_select_category($category, $type='event', $group='events' ) {
|
3 |
$category = urldecode($category);
|
4 |
global $wpdb;
|
5 |
+
$mcdb = $wpdb;
|
6 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
7 |
$select_category = '';
|
8 |
$data = ($group=='category')?'category_id':'event_category';
|
9 |
if ( isset( $_GET['mcat'] ) ) { $category = $_GET['mcat']; }
|
31 |
$i++;
|
32 |
} else {
|
33 |
$key = esc_sql(trim($key));
|
34 |
+
$cat = $mcdb->get_row("SELECT category_id FROM " . my_calendar_categories_table() . " WHERE category_name = '$key'");
|
35 |
$category_id = $cat->category_id;
|
36 |
if ($i == 1) { $select_category .= ($type=='all')?" WHERE (":' ('; }
|
37 |
$select_category .= " $data = $category_id";
|
47 |
if ( is_numeric( $category ) ) {
|
48 |
$select_category = ($type=='all')?" WHERE $data = $category":" event_category = $category AND";
|
49 |
} else {
|
50 |
+
$cat = $mcdb->get_row("SELECT category_id FROM " . my_calendar_categories_table() . " WHERE category_name = '$category'");
|
51 |
if ( is_object($cat) ) {
|
52 |
$category_id = $cat->category_id;
|
53 |
$select_category = ($type=='all')?" WHERE $data = $category_id":" $data = $category_id AND";
|
102 |
//$limit_string .= ($type=='all')?' AND':"";
|
103 |
}
|
104 |
}
|
105 |
+
if ( $limit_string != '' ) {
|
106 |
+
if ( isset($_GET['loc2']) && isset($_GET['ltype2']) ) {
|
107 |
+
$limit_string .= mc_secondary_limit( $_GET['ltype2'],$_GET['loc2'] );
|
108 |
+
}
|
109 |
+
}
|
110 |
return $limit_string;
|
111 |
+
}
|
112 |
+
|
113 |
+
// set up a secondary limit on location
|
114 |
+
function mc_secondary_limit($ltype='',$lvalue='') {
|
115 |
+
$limit_string = "";
|
116 |
+
$current_location = urldecode( $lvalue );
|
117 |
+
$location = urldecode( $ltype );
|
118 |
+
switch ($location) {
|
119 |
+
case "name":$location_type = "event_label";
|
120 |
+
break;
|
121 |
+
case "city":$location_type = "event_city";
|
122 |
+
break;
|
123 |
+
case "state":$location_type = "event_state";
|
124 |
+
break;
|
125 |
+
case "zip":$location_type = "event_postcode";
|
126 |
+
break;
|
127 |
+
case "country":$location_type = "event_country";
|
128 |
+
break;
|
129 |
+
case "region":$location_type = "event_region";
|
130 |
+
break;
|
131 |
+
default:$location_type = "event_label";
|
132 |
+
break;
|
133 |
+
}
|
134 |
+
if ($current_location != 'all' && $current_location != '') {
|
135 |
+
$limit_string = " $location_type='$current_location' AND ";
|
136 |
+
//$limit_string .= ($type=='all')?' AND':"";
|
137 |
+
}
|
138 |
+
return $limit_string;
|
139 |
}
|
my-calendar-locations.php
CHANGED
@@ -6,13 +6,14 @@ if (!empty($_SERVER['SCRIPT_FILENAME']) && 'my-calendar-locations.php' == basena
|
|
6 |
|
7 |
function my_calendar_manage_locations() {
|
8 |
global $wpdb;
|
|
|
9 |
// My Calendar must be installed and upgraded before this will work
|
10 |
check_my_calendar();
|
11 |
$formats = array( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%f', '%f', '%d', '%s' )
|
12 |
|
13 |
|
14 |
?>
|
15 |
-
<div class="wrap">
|
16 |
<?php
|
17 |
my_calendar_check_db();
|
18 |
?>
|
@@ -38,7 +39,7 @@ my_calendar_check_db();
|
|
38 |
'location_zoom'=>$_POST['location_zoom'],
|
39 |
'location_phone'=>$_POST['location_phone']
|
40 |
);
|
41 |
-
$results = $
|
42 |
|
43 |
if ($results) {
|
44 |
echo "<div class=\"updated\"><p><strong>".__('Location added successfully','my-calendar')."</strong></p></div>";
|
@@ -47,7 +48,7 @@ my_calendar_check_db();
|
|
47 |
}
|
48 |
} else if ( isset($_GET['location_id']) && $_GET['mode'] == 'delete') {
|
49 |
$sql = "DELETE FROM " . my_calendar_locations_table() . " WHERE location_id=".(int)($_GET['location_id']);
|
50 |
-
$results = $
|
51 |
if ($results) {
|
52 |
echo "<div class=\"updated\"><p><strong>".__('Location deleted successfully','my-calendar')."</strong></p></div>";
|
53 |
} else {
|
@@ -75,7 +76,7 @@ my_calendar_check_db();
|
|
75 |
$where = array(
|
76 |
'location_id'=>(int) $_POST['location_id']
|
77 |
);
|
78 |
-
$results = $
|
79 |
if ( $results === false ) {
|
80 |
echo "<div class=\"error\"><p><strong>".__('Location could not be edited.','my-calendar')."</strong></p></div>";
|
81 |
} else if ( $results == 0 ) {
|
@@ -95,9 +96,10 @@ my_calendar_check_db();
|
|
95 |
|
96 |
function mc_show_location_form( $view='add',$curID='' ) {
|
97 |
global $wpdb;
|
|
|
98 |
if ($curID != '') {
|
99 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id=$curID";
|
100 |
-
$cur_loc = $
|
101 |
}
|
102 |
?>
|
103 |
<?php if ($view == 'add') { ?>
|
@@ -105,8 +107,10 @@ global $wpdb;
|
|
105 |
<?php } else { ?>
|
106 |
<h2><?php _e('Edit Location','my-calendar'); ?></h2>
|
107 |
<?php } ?>
|
108 |
-
|
109 |
-
<div
|
|
|
|
|
110 |
<div class="postbox">
|
111 |
<h3><?php _e('Location Editor','my-calendar'); ?></h3>
|
112 |
<div class="inside">
|
@@ -161,6 +165,8 @@ global $wpdb;
|
|
161 |
} else { ?>
|
162 |
<input type="text" id="location_state" name="location_state" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_state)); ?>" />
|
163 |
<?php } ?>
|
|
|
|
|
164 |
<label for="location_postcode"><?php _e('Postal Code','my-calendar'); ?></label>
|
165 |
<?php if ( mc_controlled_field( 'postcode' ) ) {
|
166 |
if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_postcode));
|
@@ -168,8 +174,6 @@ global $wpdb;
|
|
168 |
} else { ?>
|
169 |
<input type="text" id="location_postcode" name="location_postcode" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_postcode)); ?>" />
|
170 |
<?php } ?>
|
171 |
-
</p>
|
172 |
-
<p>
|
173 |
<label for="location_region"><?php _e('Region','my-calendar'); ?></label>
|
174 |
<?php if ( mc_controlled_field( 'region' ) ) {
|
175 |
if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_region));
|
@@ -186,8 +190,6 @@ global $wpdb;
|
|
186 |
} else { ?>
|
187 |
<input type="text" id="location_country" name="location_country" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_country)); ?>" />
|
188 |
<?php } ?>
|
189 |
-
</p>
|
190 |
-
<p>
|
191 |
<label for="location_zoom"><?php _e('Initial Zoom','my-calendar'); ?></label>
|
192 |
<select name="location_zoom" id="location_zoom">
|
193 |
<option value="16"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 16 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Neighborhood','my-calendar'); ?></option>
|
@@ -218,11 +220,24 @@ global $wpdb;
|
|
218 |
</form>
|
219 |
</div>
|
220 |
</div>
|
|
|
221 |
<?php if ($view == 'edit') { ?>
|
222 |
<p><a href="<?php echo admin_url("admin.php?page=my-calendar-locations"); ?>"><?php _e('Add a New Location','my-calendar'); ?> »</a></p>
|
223 |
<?php } ?>
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
</div>
|
|
|
226 |
<?php
|
227 |
}
|
228 |
|
@@ -259,17 +274,17 @@ function mc_location_controller( $fieldname, $selected ) {
|
|
259 |
|
260 |
function mc_manage_locations() {
|
261 |
global $wpdb;
|
|
|
262 |
?>
|
263 |
-
<h2><?php _e('Manage Locations','my-calendar'); ?></h2>
|
264 |
<?php
|
265 |
|
266 |
// We pull the locations from the database
|
267 |
-
$locations = $
|
268 |
|
269 |
if ( !empty($locations) )
|
270 |
{
|
271 |
?>
|
272 |
-
<table class="widefat page fixed" id="my-calendar-admin-table"
|
273 |
<thead>
|
274 |
<tr>
|
275 |
<th class="manage-column" scope="col"><?php _e('ID','my-calendar') ?></th>
|
@@ -301,7 +316,7 @@ global $wpdb;
|
|
301 |
<p><em>
|
302 |
<?php _e('Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records.','my-calendar'); ?>
|
303 |
</em></p>
|
|
|
304 |
</div>
|
305 |
<?php
|
306 |
-
}
|
307 |
-
?>
|
6 |
|
7 |
function my_calendar_manage_locations() {
|
8 |
global $wpdb;
|
9 |
+
$mcdb = $wpdb;
|
10 |
// My Calendar must be installed and upgraded before this will work
|
11 |
check_my_calendar();
|
12 |
$formats = array( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%f', '%f', '%d', '%s' )
|
13 |
|
14 |
|
15 |
?>
|
16 |
+
<div class="wrap jd-my-calendar">
|
17 |
<?php
|
18 |
my_calendar_check_db();
|
19 |
?>
|
39 |
'location_zoom'=>$_POST['location_zoom'],
|
40 |
'location_phone'=>$_POST['location_phone']
|
41 |
);
|
42 |
+
$results = $mcdb->insert( my_calendar_locations_table(), $add, $formats );
|
43 |
|
44 |
if ($results) {
|
45 |
echo "<div class=\"updated\"><p><strong>".__('Location added successfully','my-calendar')."</strong></p></div>";
|
48 |
}
|
49 |
} else if ( isset($_GET['location_id']) && $_GET['mode'] == 'delete') {
|
50 |
$sql = "DELETE FROM " . my_calendar_locations_table() . " WHERE location_id=".(int)($_GET['location_id']);
|
51 |
+
$results = $mcdb->query($sql);
|
52 |
if ($results) {
|
53 |
echo "<div class=\"updated\"><p><strong>".__('Location deleted successfully','my-calendar')."</strong></p></div>";
|
54 |
} else {
|
76 |
$where = array(
|
77 |
'location_id'=>(int) $_POST['location_id']
|
78 |
);
|
79 |
+
$results = $mcdb->update( my_calendar_locations_table(), $update, $where, $formats, '%d' );
|
80 |
if ( $results === false ) {
|
81 |
echo "<div class=\"error\"><p><strong>".__('Location could not be edited.','my-calendar')."</strong></p></div>";
|
82 |
} else if ( $results == 0 ) {
|
96 |
|
97 |
function mc_show_location_form( $view='add',$curID='' ) {
|
98 |
global $wpdb;
|
99 |
+
$mcdb = $wpdb;
|
100 |
if ($curID != '') {
|
101 |
$sql = "SELECT * FROM " . my_calendar_locations_table() . " WHERE location_id=$curID";
|
102 |
+
$cur_loc = $mcdb->get_row($sql);
|
103 |
}
|
104 |
?>
|
105 |
<?php if ($view == 'add') { ?>
|
107 |
<?php } else { ?>
|
108 |
<h2><?php _e('Edit Location','my-calendar'); ?></h2>
|
109 |
<?php } ?>
|
110 |
+
<div class="postbox-container" style="width: 70%">
|
111 |
+
<div class="metabox-holder">
|
112 |
+
|
113 |
+
<div class="ui-sortable meta-box-sortables">
|
114 |
<div class="postbox">
|
115 |
<h3><?php _e('Location Editor','my-calendar'); ?></h3>
|
116 |
<div class="inside">
|
165 |
} else { ?>
|
166 |
<input type="text" id="location_state" name="location_state" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_state)); ?>" />
|
167 |
<?php } ?>
|
168 |
+
</p>
|
169 |
+
<p>
|
170 |
<label for="location_postcode"><?php _e('Postal Code','my-calendar'); ?></label>
|
171 |
<?php if ( mc_controlled_field( 'postcode' ) ) {
|
172 |
if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_postcode));
|
174 |
} else { ?>
|
175 |
<input type="text" id="location_postcode" name="location_postcode" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_postcode)); ?>" />
|
176 |
<?php } ?>
|
|
|
|
|
177 |
<label for="location_region"><?php _e('Region','my-calendar'); ?></label>
|
178 |
<?php if ( mc_controlled_field( 'region' ) ) {
|
179 |
if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_region));
|
190 |
} else { ?>
|
191 |
<input type="text" id="location_country" name="location_country" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_country)); ?>" />
|
192 |
<?php } ?>
|
|
|
|
|
193 |
<label for="location_zoom"><?php _e('Initial Zoom','my-calendar'); ?></label>
|
194 |
<select name="location_zoom" id="location_zoom">
|
195 |
<option value="16"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 16 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Neighborhood','my-calendar'); ?></option>
|
220 |
</form>
|
221 |
</div>
|
222 |
</div>
|
223 |
+
</div>
|
224 |
<?php if ($view == 'edit') { ?>
|
225 |
<p><a href="<?php echo admin_url("admin.php?page=my-calendar-locations"); ?>"><?php _e('Add a New Location','my-calendar'); ?> »</a></p>
|
226 |
<?php } ?>
|
227 |
+
|
228 |
+
<div class="ui-sortable meta-box-sortables">
|
229 |
+
<div class="postbox">
|
230 |
+
<h3><?php _e('Manage Locations','my-calendar'); ?></h3>
|
231 |
+
<div class="inside">
|
232 |
+
<?php mc_manage_locations(); ?>
|
233 |
+
</div>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
</div>
|
237 |
+
<?php jd_show_support_box(); ?>
|
238 |
+
|
239 |
</div>
|
240 |
+
|
241 |
<?php
|
242 |
}
|
243 |
|
274 |
|
275 |
function mc_manage_locations() {
|
276 |
global $wpdb;
|
277 |
+
$mcdb = $wpdb;
|
278 |
?>
|
|
|
279 |
<?php
|
280 |
|
281 |
// We pull the locations from the database
|
282 |
+
$locations = $mcdb->get_results("SELECT * FROM " . my_calendar_locations_table() . " ORDER BY location_label ASC");
|
283 |
|
284 |
if ( !empty($locations) )
|
285 |
{
|
286 |
?>
|
287 |
+
<table class="widefat page fixed" id="my-calendar-admin-table">
|
288 |
<thead>
|
289 |
<tr>
|
290 |
<th class="manage-column" scope="col"><?php _e('ID','my-calendar') ?></th>
|
316 |
<p><em>
|
317 |
<?php _e('Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records.','my-calendar'); ?>
|
318 |
</em></p>
|
319 |
+
|
320 |
</div>
|
321 |
<?php
|
322 |
+
}
|
|
my-calendar-output.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
// Used to draw multiple events
|
3 |
-
function my_calendar_draw_events($events, $type, $process_date) {
|
4 |
if ( $type == 'mini' && ( get_option('mc_open_day_uri') == 'true' || get_option('mc_open_day_uri') == 'listanchor' || get_option('mc_open_day_uri') == 'calendaranchor' ) ) return;
|
5 |
// We need to sort arrays of objects by time
|
6 |
if ( is_array($events) ) {
|
@@ -42,14 +42,14 @@ jQuery(document).ready(function($) {
|
|
42 |
$event =& $temp_array[$key];
|
43 |
if ($skipping == true) {
|
44 |
if ($event->event_category == get_option('mc_skip_holidays_category') ) {
|
45 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date);
|
46 |
} else {
|
47 |
if ( $event->event_holiday == '0' ) { // '1' means "is canceled"
|
48 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date);
|
49 |
}
|
50 |
}
|
51 |
} else {
|
52 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date);
|
53 |
}
|
54 |
}
|
55 |
if ( is_array($output_array) ) {
|
@@ -65,8 +65,10 @@ jQuery(document).ready(function($) {
|
|
65 |
}
|
66 |
}
|
67 |
// Used to draw an event to the screen
|
68 |
-
function my_calendar_draw_event($event, $type="calendar", $process_date) {
|
69 |
global $wpdb,$wp_plugin_url;
|
|
|
|
|
70 |
// My Calendar must be updated to run this function
|
71 |
check_my_calendar();
|
72 |
|
@@ -79,33 +81,37 @@ function my_calendar_draw_event($event, $type="calendar", $process_date) {
|
|
79 |
|
80 |
$data = event_as_array($event);
|
81 |
$details = false;
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
|
111 |
$mc_display_author = get_option('mc_display_author');
|
@@ -145,12 +151,23 @@ jQuery(document).ready(function($) {
|
|
145 |
$templates = get_option('mc_templates');
|
146 |
$title_template = ($templates['title'] == '' )?'{title}':$templates['title'];
|
147 |
$mytitle = jd_draw_template($data,$title_template);
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
$current_date = date_i18n($date_format,strtotime($process_date));
|
151 |
$event_date = ($type == 'single')?$current_date.', ':'';
|
152 |
if ( $event->event_span == 1 ) { $group_class = ' multidate group'.$event->event_group_id; } else { $group_class = ''; }
|
153 |
-
$header_details .= ($type != 'list' && $type != 'single')?"<h3 class='event-title summary$group_class'>$image".$mytitle."$
|
154 |
$title = apply_filters( 'mc_before_event_title','',$event );
|
155 |
$title .= ($type == 'single' )?"<h2 class='event-title summary'>$image $mytitle</h2>\n":'';
|
156 |
$title .= apply_filters( 'mc_after_event_title','',$event );
|
@@ -159,20 +176,20 @@ jQuery(document).ready(function($) {
|
|
159 |
// need to figure out what this is. I don't remember it, and it isn't being used...
|
160 |
//$closure = ( $details === false )?'</div>':"";
|
161 |
$dateid = date('Y-m-d',$event->event_start_ts);
|
162 |
-
|
163 |
if ( $details === false ) {
|
164 |
// put together address information as vcard
|
165 |
if (($display_address == 'true' || $display_map == 'true') ) {
|
166 |
$address .= mc_hcard( $event, $display_address, $display_map );
|
167 |
}
|
168 |
// end vcard
|
169 |
-
$
|
170 |
-
$
|
171 |
$body_details .= ($type == 'calendar' || $type == 'mini' )?"<span class='close'><a href='#' class='mc-toggle mc-close'><img src='".MY_CALENDAR_DIRECTORY."/images/event-close.png' alt='".__('Close','my-calendar')."' /></a></span>":'';
|
172 |
$body_details .= "<div class='time-block'>";
|
173 |
if ( $event->event_time != "00:00:00" && $event->event_time != '' ) {
|
174 |
$body_details .= "\n <span class='event-time dtstart' title='".$id_start.'T'.$event->event_time."'>$event_date".date_i18n(get_option('mc_time_format'), strtotime($event->event_time));
|
175 |
-
if ($event->event_endtime != "00:00:00" && $event->event_endtime != '' ) {
|
176 |
$body_details .= "<span class='time-separator'> – </span><span class='end-time dtend' title='".$id_end.'T'.$event->event_endtime."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_endtime))."</span>";
|
177 |
}
|
178 |
if ($tz != '') {
|
@@ -190,17 +207,17 @@ jQuery(document).ready(function($) {
|
|
190 |
$body_details .= "</span>";
|
191 |
}
|
192 |
$body_details .= "
|
193 |
-
</div>
|
194 |
-
|
195 |
if ($type == "list") {
|
196 |
-
$
|
197 |
}
|
198 |
if ($mc_display_author == 'true') {
|
199 |
$e = get_userdata($event->event_author);
|
200 |
-
$
|
201 |
}
|
202 |
if (($display_address == 'true' || $display_map == 'true') ) {
|
203 |
-
$
|
204 |
}
|
205 |
if ($display_details == 'true' && !isset($_GET['mc_id']) ) {
|
206 |
$id = $event->event_id;
|
@@ -210,7 +227,7 @@ jQuery(document).ready(function($) {
|
|
210 |
$replacements = array( stripslashes($event->event_title), stripslashes($event->event_label), $event->category_color, $event->category_icon, $current_date, $current_time );
|
211 |
$details_label = str_replace($tags,$replacements,$details_template );
|
212 |
$details_link = mc_build_url( array('mc_id'=>$uid), array('month','dy','yr','ltype','loc','mcat'), get_option( 'mc_uri' ) );
|
213 |
-
$
|
214 |
}
|
215 |
// handle link expiration
|
216 |
if ( $event->event_link_expires == 0 ) {
|
@@ -226,17 +243,18 @@ jQuery(document).ready(function($) {
|
|
226 |
if ( function_exists('my_calendar_generate_vcal') && get_option('mc_show_event_vcal') == 'true' ) {
|
227 |
$nonce = wp_create_nonce('my-calendar-nonce');
|
228 |
$vcal_link = "<p class='ical'><a rel='nofollow' href='".home_url()."?vcal=$uid"."'>".__('iCal','my-calendar')."</a></p>\n";
|
229 |
-
$
|
230 |
}
|
231 |
|
232 |
$event_image = ($event->event_image!='')?"<img src='$event->event_image' alt='' class='mc-image' />":'';
|
233 |
$short = '';
|
234 |
if ( get_option('mc_short') == 'true' && $type != 'single' ) {
|
235 |
-
$short =
|
|
|
236 |
}
|
237 |
if ( get_option('mc_desc') == 'true' || $type == 'single' ) {
|
238 |
-
$description =
|
239 |
-
<div class='longdesc'>$event_image".
|
240 |
} else {
|
241 |
$description = '';
|
242 |
}
|
@@ -268,22 +286,22 @@ jQuery(document).ready(function($) {
|
|
268 |
// if we're opening in a new page, there's no reason to display any of that. Later, re-write this section to make this easier to skip.
|
269 |
if ( $type == 'calendar' && get_option('mc_open_uri') == 'true' && $time != 'day' ) $body_details = $description = $short = $status = '';
|
270 |
|
271 |
-
|
|
|
|
|
272 |
$is_external = mc_external_link( $event_link );
|
273 |
$link_template = ( isset($templates['link']))?$templates['link']:'{title}';
|
274 |
$link_text = jd_draw_template($data,$link_template);
|
275 |
-
$details = "\n". $header_details . $body_details . $description . $short . $status."<p><a href='$event_link' $is_external>".$link_text.'</a></p>'.$return;
|
276 |
} else {
|
277 |
-
$details = "\n". $header_details . $body_details . $description . $short . $status . $return;
|
278 |
}
|
279 |
-
$details .= "
|
280 |
-
</div><!--ends .sub-details-->\n";
|
281 |
} else {
|
282 |
$toggle = ($type == 'calendar' || $type == 'mini' )?"<a href='#' class='mc-toggle mc-close close'><img src='".MY_CALENDAR_DIRECTORY."/images/event-close.png' alt='".__('Close','my-calendar')."' /></a>":'';
|
283 |
$details = $header_details."\n<div id='$uid-$type-details' class='details'>\n ".$toggle.$details."\n";
|
284 |
}
|
285 |
// create edit links
|
286 |
-
if ( mc_can_edit_event( $event->event_author ) ) {
|
287 |
$groupedit = ( $event->event_group_id != 0 )?"<li><a href='".admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event->event_id&group_id=$event->event_group_id")."' class='group'>".__('Edit Group','my-calendar')."</a></li>\n":'';
|
288 |
if ( $event->event_recur == 'S' ) {
|
289 |
$edit = "
|
@@ -337,6 +355,8 @@ jQuery(document).ready(function($) {
|
|
337 |
|
338 |
function mc_build_date_switcher( $type='calendar', $cid='all' ) {
|
339 |
global $wpdb;
|
|
|
|
|
340 |
$current_url = mc_get_current_url();
|
341 |
$date_switcher = "";
|
342 |
$date_switcher .= '<div class="my-calendar-date-switcher">
|
@@ -361,7 +381,7 @@ $current_url = mc_get_current_url();
|
|
361 |
<label for="mc-'.$type.'-year">'.__('Year','my-calendar').':</label> <select id="mc-'.$type.'-year" name="yr">'."\n";
|
362 |
// query to identify oldest start date in the database
|
363 |
$query = "SELECT event_begin FROM ".MY_CALENDAR_TABLE." WHERE event_approved = 1 AND event_flagged <> 1 ORDER BY event_begin ASC LIMIT 0 , 1";
|
364 |
-
$year1 = date('Y',strtotime( $
|
365 |
$diff1 = date('Y') - $year1;
|
366 |
$past = $diff1;
|
367 |
$future = 5;
|
@@ -428,7 +448,7 @@ echo "
|
|
428 |
<link rel='stylesheet' href='$stylesheet' type='text/css' media='screen,print' />
|
429 |
</head>
|
430 |
<body>\n";
|
431 |
-
echo my_calendar('print','calendar',$category,'no','no','no',$time,$ltype,$lvalue);
|
432 |
$return_url = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url();
|
433 |
echo "<p class='return'><a href='$return_url'>".__('Return to site','my-calendar')."</a></p>";
|
434 |
echo '
|
@@ -437,14 +457,18 @@ echo '
|
|
437 |
}
|
438 |
|
439 |
// Actually do the printing of the calendar
|
440 |
-
function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='month',$ltype='',$lvalue='') {
|
441 |
global $wpdb, $wp_plugin_url;
|
|
|
|
|
442 |
$my_calendar_body = '';
|
443 |
$args = array('name'=>$name,'format'=>$format,'category'=>$category,'showkey'=>$showkey,'shownav'=>$shownav,'toggle'=>$toggle,'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue);
|
444 |
$my_calendar_body .= apply_filters('mc_before_calendar','',$args);
|
445 |
$main_class = ( $name !='' )?sanitize_title($name):'all';
|
446 |
$cid = ( isset( $_GET['cid'] ) )?esc_attr(strip_tags($_GET['cid'])):'all';
|
447 |
-
|
|
|
|
|
448 |
$date_format = ( get_option('mc_date_format') != '' )?get_option('mc_date_format'):get_option('date_format');
|
449 |
|
450 |
if ( $format != 'mini' && $toggle == 'yes' ) {
|
@@ -467,9 +491,9 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
467 |
|
468 |
if ( isset( $_GET['mc_id'] ) && $format != 'mini' ) {
|
469 |
$mc_id = explode("_",$_GET['mc_id']);
|
470 |
-
$
|
471 |
$date = $mc_id[1];
|
472 |
-
$my_calendar_body .= my_calendar_get_event( $date, $
|
473 |
} else {
|
474 |
if ($category == "") {
|
475 |
$category=null;
|
@@ -546,7 +570,7 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
546 |
}
|
547 |
$mc_print_url = mc_build_url( array( 'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue,'mcat'=>$category,'yr'=>$c_year,'month'=>$c_month,'dy'=>$c_day, 'cid'=>'print' ), array(), mc_feed_base() . 'my-calendar-print' );
|
548 |
|
549 |
-
$anchor = (get_option('ajax_javascript') == '1' )?
|
550 |
if ($shownav == 'yes') {
|
551 |
$pLink = my_calendar_prev_link($c_year,$c_month,$c_day,$format,$time);
|
552 |
$nLink = my_calendar_next_link($c_year,$c_month,$c_day,$format,$time);
|
@@ -564,7 +588,7 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
564 |
} else {
|
565 |
$mc_nav = '';
|
566 |
}
|
567 |
-
$my_calendar_body .= "<div id=\"
|
568 |
if ( get_option( 'mc_show_print' ) == 'true' ) { $my_calendar_body .= "<p class='mc-print'><a href='$mc_print_url'>".__('Print View','my-calendar')."</a></p>"; }
|
569 |
if ( $time == 'day' ) {
|
570 |
$dayclass = strtolower(date_i18n('D',mktime (0,0,0,$c_month,$c_day,$c_year)));
|
@@ -595,7 +619,7 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
595 |
$class .= $author;
|
596 |
}
|
597 |
}
|
598 |
-
$my_calendar_body .= my_calendar_draw_events($grabbed_events, $format, $process_date);
|
599 |
} else {
|
600 |
$my_calendar_body .= __( 'No events scheduled for today!','my-calendar');
|
601 |
}
|
@@ -628,7 +652,8 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
628 |
$category_label = ($category != "" && $category != "all")?str_replace("|"," $and ",$category) . ' ':'';
|
629 |
// Add the calendar table and heading
|
630 |
$caption_text = ' '.stripslashes( trim( get_option('mc_caption') ) );
|
631 |
-
$mc_display_jump = get_option('mc_display_jump');
|
|
|
632 |
if ($format == "calendar" || $format == "mini" ) {
|
633 |
$my_calendar_body .= '
|
634 |
<div class="my-calendar-header">';
|
@@ -681,13 +706,10 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
681 |
$firstday = 1;
|
682 |
$lastday = $days_in_month;
|
683 |
}
|
684 |
-
|
685 |
-
$useday = 1;
|
686 |
-
$inc_month = false;
|
687 |
-
$go = false;
|
688 |
-
$inc = 0;
|
689 |
for ($i=$firstday; $i<=$lastday;) {
|
690 |
-
$my_calendar_body .=
|
691 |
if ($time == 'week') {
|
692 |
$ii_start = $first_weekday;$ii_end = $first_weekday + 6;
|
693 |
} else {
|
@@ -696,11 +718,10 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
696 |
for ($ii=$ii_start; $ii<=$ii_end; $ii++) {
|
697 |
// moved $process_date down here because needs to be updated daily, not weekly.
|
698 |
$process_date = date_i18n('Y-m-d',mktime(0,0,0,$c_month,$thisday+1,$c_year));
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
$go = FALSE;
|
704 |
}
|
705 |
if ( empty( $thisday ) ) {
|
706 |
$numdays = date('t',mktime(0,0,0,$c_month-1));
|
@@ -775,11 +796,12 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
775 |
$week_format = (get_option('mc_week_format')=='')?'M j, \'y':get_option('mc_week_format');
|
776 |
$week_date_format = date_i18n($week_format,strtotime( "$c_year-$c_month-$thisday" ) );
|
777 |
$thisday_heading = ($time == 'week')?"<small>$week_date_format</small>":$thisday;
|
778 |
-
/* if ( $thisday == 19 || $thisday == 20 || $thisday == 21 ) {
|
779 |
-
echo 'Today: '.date_i18n("Y-m-d h:i",time()+$offset).' -- '.date("Y-m-d h:i", mktime (0,0,0,$c_month,$thisday,$c_year)).'<br />';
|
780 |
-
} */
|
781 |
if ( ( $is_weekend && get_option('mc_show_weekends') == 'true' ) || !$is_weekend ) {
|
782 |
-
|
|
|
|
|
|
|
|
|
783 |
}
|
784 |
} else {
|
785 |
if ( !isset($now) ) { $now = 1; }
|
@@ -790,19 +812,21 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
790 |
}
|
791 |
$is_weekend = ( date('N',strtotime($process_date)) < 6 )?false:true;
|
792 |
//$my_calendar_body .= date('N',$process_date);
|
793 |
-
if ( ( $is_weekend && get_option('mc_show_weekends') == 'true' ) ||
|
794 |
if ( get_option('mc_show_weekends') == 'true' || ( get_option('mc_show_weekends') != 'true' && $inc < 5 ) ) {
|
795 |
-
|
|
|
796 |
}
|
797 |
$inc++;
|
798 |
-
}
|
799 |
}
|
800 |
}
|
801 |
$my_calendar_body .= "</tr>\n";
|
802 |
}
|
803 |
$my_calendar_body .= "\n</tbody>\n</table>";
|
804 |
} else if ($format == "list") {
|
805 |
-
$
|
|
|
806 |
// show calendar as list
|
807 |
$num_months = ($time == 'week')?1:get_option('mc_show_months');
|
808 |
$num_events = 0;
|
@@ -864,33 +888,53 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
864 |
}
|
865 |
$my_calendar_body .= "
|
866 |
<li id='$format-$process_date' class='mc-events $class $classes'>
|
867 |
-
<strong class=\"event-date\">$is_anchor".date_i18n($date_format,mktime(0,0,0,$c_month,$thisday,$c_year))."$is_close_anchor"."$title</strong>".my_calendar_draw_events($grabbed_events, $format, $process_date)."
|
868 |
</li>";
|
869 |
-
}
|
870 |
$num_events++;
|
871 |
$class = (my_calendar_is_odd($num_events))?"odd":"even";
|
|
|
872 |
}
|
873 |
}
|
874 |
if ($num_events == 0) {
|
875 |
-
$
|
|
|
876 |
}
|
877 |
$my_calendar_body .= "</ul>";
|
878 |
} else {
|
879 |
$my_calendar_body .= __("Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'.",'my-calendar')." '<code>$format</code>.'";
|
880 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
881 |
$category_key = '';
|
|
|
882 |
$cat_details = '';
|
883 |
-
if ($showkey
|
|
|
|
|
884 |
$cat_limit = mc_select_category($category,'all','category');
|
885 |
$sql = "SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " $cat_limit ORDER BY category_name ASC";
|
886 |
-
$cat_details = $
|
887 |
$category_key .= '<div class="category-key">
|
888 |
<h3>'.__('Category Key','my-calendar')."</h3>\n<ul>\n";
|
889 |
$subpath = (is_custom_icon())?'/my-calendar-custom/':'/my-calendar/icons/';
|
890 |
$path = $wp_plugin_url . $subpath;
|
891 |
foreach($cat_details as $cat_detail) {
|
892 |
-
$hex = (strpos($cat_detail->category_color,'#') !== 0)?'#':'';
|
893 |
-
|
894 |
$title_class = sanitize_title($cat_detail->category_name);
|
895 |
if ($cat_detail->category_icon != "" && get_option('mc_hide_icons')!='true') {
|
896 |
$category_key .= '<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";
|
@@ -901,18 +945,7 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$toggle,$time='mo
|
|
901 |
$category_key .= "</ul>\n</div>";
|
902 |
}
|
903 |
$category_key = apply_filters('mc_category_key',$category_key,$cat_details);
|
904 |
-
|
905 |
-
if ($format != 'mini') {
|
906 |
-
$ical_m = (isset($_GET['month']))?(int) $_GET['month']:date('n');
|
907 |
-
$ical_y = (isset($_GET['yr']))?(int) $_GET['yr']:date('Y');
|
908 |
-
$my_calendar_body .= mc_rss_links($ical_y,$ical_m);
|
909 |
-
}
|
910 |
-
}
|
911 |
-
$my_calendar_body .= "\n</div>";
|
912 |
-
}
|
913 |
-
// The actual printing is done by the shortcode function.
|
914 |
-
$my_calendar_body .= apply_filters('mc_after_calendar','',$args);
|
915 |
-
return $my_calendar_body;
|
916 |
}
|
917 |
|
918 |
function mc_rss_links($y,$m) {
|
@@ -1034,6 +1067,8 @@ function my_calendar_prev_link($cur_year,$cur_month,$cur_day,$format,$time='mont
|
|
1034 |
|
1035 |
function my_calendar_categories_list($show='list',$context='public') {
|
1036 |
global $wpdb;
|
|
|
|
|
1037 |
if ( isset($_GET['mc_id']) ) {
|
1038 |
return;
|
1039 |
}
|
@@ -1059,7 +1094,7 @@ function my_calendar_categories_list($show='list',$context='public') {
|
|
1059 |
$public_form = ($context == 'public')?$form:'';
|
1060 |
$name = ($context == 'public')?'mcat':'category';
|
1061 |
|
1062 |
-
$categories = $
|
1063 |
if ( !empty($categories) && count($categories)>=1 ) {
|
1064 |
$output = "<div id='mc_categories'>\n";
|
1065 |
$url = mc_build_url( array('mcat'=>'all'),array() );
|
@@ -1131,6 +1166,8 @@ return $home.$char.http_build_query($variables, '', '&');
|
|
1131 |
|
1132 |
function my_calendar_show_locations($show='list',$datatype='name') {
|
1133 |
global $wpdb;
|
|
|
|
|
1134 |
switch ( $datatype ) {
|
1135 |
case "name":$data = "location_label";
|
1136 |
break;
|
@@ -1147,7 +1184,7 @@ function my_calendar_show_locations($show='list',$datatype='name') {
|
|
1147 |
default:$data = "location_label";
|
1148 |
break;
|
1149 |
}
|
1150 |
-
$locations = $
|
1151 |
if ( $locations ) {
|
1152 |
$output = "<ul>";
|
1153 |
foreach( $locations as $key=>$value ) {
|
@@ -1173,6 +1210,8 @@ function my_calendar_show_locations($show='list',$datatype='name') {
|
|
1173 |
|
1174 |
function my_calendar_locations_list($show='list',$type='saved',$datatype='name') {
|
1175 |
global $wpdb;
|
|
|
|
|
1176 |
$output = '';
|
1177 |
if ( isset( $_GET['mc_id'] ) ) {
|
1178 |
return;
|
@@ -1197,7 +1236,7 @@ global $wpdb;
|
|
1197 |
}
|
1198 |
$current_url = mc_get_current_url();
|
1199 |
if ($type == 'saved') {
|
1200 |
-
$locations = $
|
1201 |
} else {
|
1202 |
$data = get_option( 'mc_user_settings' );
|
1203 |
$locations = $data['my_calendar_location_default']['values'];
|
1 |
<?php
|
2 |
// Used to draw multiple events
|
3 |
+
function my_calendar_draw_events($events, $type, $process_date, $template='') {
|
4 |
if ( $type == 'mini' && ( get_option('mc_open_day_uri') == 'true' || get_option('mc_open_day_uri') == 'listanchor' || get_option('mc_open_day_uri') == 'calendaranchor' ) ) return;
|
5 |
// We need to sort arrays of objects by time
|
6 |
if ( is_array($events) ) {
|
42 |
$event =& $temp_array[$key];
|
43 |
if ($skipping == true) {
|
44 |
if ($event->event_category == get_option('mc_skip_holidays_category') ) {
|
45 |
+
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$template);
|
46 |
} else {
|
47 |
if ( $event->event_holiday == '0' ) { // '1' means "is canceled"
|
48 |
+
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$template);
|
49 |
}
|
50 |
}
|
51 |
} else {
|
52 |
+
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$template);
|
53 |
}
|
54 |
}
|
55 |
if ( is_array($output_array) ) {
|
65 |
}
|
66 |
}
|
67 |
// Used to draw an event to the screen
|
68 |
+
function my_calendar_draw_event($event, $type="calendar", $process_date, $template='') {
|
69 |
global $wpdb,$wp_plugin_url;
|
70 |
+
$mcdb = $wpdb;
|
71 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
72 |
// My Calendar must be updated to run this function
|
73 |
check_my_calendar();
|
74 |
|
81 |
|
82 |
$data = event_as_array($event);
|
83 |
$details = false;
|
84 |
+
if ( $template != '' && file_exists( get_stylesheet_directory() . '/' . $template ) ) {
|
85 |
+
$template = @file_get_contents( get_stylesheet_directory() . '/' . $template );
|
86 |
+
$details = jd_draw_template( $data, $template );
|
87 |
+
} else {
|
88 |
+
switch ($type) {
|
89 |
+
case 'mini':
|
90 |
+
$template = $templates['mini'];
|
91 |
+
if ( get_option('mc_use_mini_template')==1 ) {
|
92 |
+
$details = jd_draw_template( $data, $template );
|
93 |
+
}
|
94 |
+
break;
|
95 |
+
case 'list':
|
96 |
+
$template = $templates['list'];
|
97 |
+
if ( get_option('mc_use_list_template')==1 ) {
|
98 |
+
$details = jd_draw_template( $data, $template );
|
99 |
+
}
|
100 |
+
break;
|
101 |
+
case 'single':
|
102 |
+
$template = $templates['details'];
|
103 |
+
if ( get_option('mc_use_details_template')==1 ) {
|
104 |
+
$details = jd_draw_template( $data, $template );
|
105 |
+
}
|
106 |
+
break;
|
107 |
+
case 'calendar':
|
108 |
+
default:
|
109 |
+
$template = $templates['grid'];
|
110 |
+
if ( get_option('mc_use_grid_template')==1 ) {
|
111 |
+
$details = jd_draw_template( $data, $template );
|
112 |
+
}
|
113 |
+
break;
|
114 |
+
}
|
115 |
}
|
116 |
|
117 |
$mc_display_author = get_option('mc_display_author');
|
151 |
$templates = get_option('mc_templates');
|
152 |
$title_template = ($templates['title'] == '' )?'{title}':$templates['title'];
|
153 |
$mytitle = jd_draw_template($data,$title_template);
|
154 |
+
if ( strpos( $mytitle,'http' ) === false ) {
|
155 |
+
if ( get_option('mc_open_uri') == 'true' ) {
|
156 |
+
$details_link = mc_build_url( array('mc_id'=>$uid), array('month','dy','yr','ltype','loc','mcat'), get_option( 'mc_uri' ) );
|
157 |
+
$wrap = "<a href='$details_link'>"; $balance = "</a>";
|
158 |
+
} else {
|
159 |
+
$wrap = "<a href='#$uid-$type-details'>"; $balance = "</a>";
|
160 |
+
}
|
161 |
+
} else {
|
162 |
+
$wrap = $balance = '';
|
163 |
+
}
|
164 |
+
|
165 |
+
//$toggle = ($type == 'calendar')?" <a href='#' class='mc-toggle'><img src='".MY_CALENDAR_DIRECTORY."/images/event-details.png' alt='".__('Event Details','my-calendar')."' /></a>":'';
|
166 |
+
//$toggle = (get_option('mc_open_uri')=='true')?'':$toggle;
|
167 |
$current_date = date_i18n($date_format,strtotime($process_date));
|
168 |
$event_date = ($type == 'single')?$current_date.', ':'';
|
169 |
if ( $event->event_span == 1 ) { $group_class = ' multidate group'.$event->event_group_id; } else { $group_class = ''; }
|
170 |
+
$header_details .= ($type != 'list' && $type != 'single')?"<h3 class='event-title summary$group_class'>$wrap$image".$mytitle."$balance</h3>\n":'';
|
171 |
$title = apply_filters( 'mc_before_event_title','',$event );
|
172 |
$title .= ($type == 'single' )?"<h2 class='event-title summary'>$image $mytitle</h2>\n":'';
|
173 |
$title .= apply_filters( 'mc_after_event_title','',$event );
|
176 |
// need to figure out what this is. I don't remember it, and it isn't being used...
|
177 |
//$closure = ( $details === false )?'</div>':"";
|
178 |
$dateid = date('Y-m-d',$event->event_start_ts);
|
179 |
+
$container = '';
|
180 |
if ( $details === false ) {
|
181 |
// put together address information as vcard
|
182 |
if (($display_address == 'true' || $display_map == 'true') ) {
|
183 |
$address .= mc_hcard( $event, $display_address, $display_map );
|
184 |
}
|
185 |
// end vcard
|
186 |
+
$container .= " <div id='$uid-$type-details' class='details'>\n";
|
187 |
+
$container .= apply_filters('mc_before_event','',$event);
|
188 |
$body_details .= ($type == 'calendar' || $type == 'mini' )?"<span class='close'><a href='#' class='mc-toggle mc-close'><img src='".MY_CALENDAR_DIRECTORY."/images/event-close.png' alt='".__('Close','my-calendar')."' /></a></span>":'';
|
189 |
$body_details .= "<div class='time-block'>";
|
190 |
if ( $event->event_time != "00:00:00" && $event->event_time != '' ) {
|
191 |
$body_details .= "\n <span class='event-time dtstart' title='".$id_start.'T'.$event->event_time."'>$event_date".date_i18n(get_option('mc_time_format'), strtotime($event->event_time));
|
192 |
+
if ($event->event_endtime != "00:00:00" && $event->event_endtime != '' && $event->event_endtime != $event->event_time ) {
|
193 |
$body_details .= "<span class='time-separator'> – </span><span class='end-time dtend' title='".$id_end.'T'.$event->event_endtime."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_endtime))."</span>";
|
194 |
}
|
195 |
if ($tz != '') {
|
207 |
$body_details .= "</span>";
|
208 |
}
|
209 |
$body_details .= "
|
210 |
+
</div>";
|
211 |
+
$subdetails = '';
|
212 |
if ($type == "list") {
|
213 |
+
$subdetails .= "<h3 class='event-title summary'>$image".$mytitle."</h3>\n";
|
214 |
}
|
215 |
if ($mc_display_author == 'true') {
|
216 |
$e = get_userdata($event->event_author);
|
217 |
+
$subdetails .= '<span class="event-author">'.__('Posted by', 'my-calendar').': <span class="author-name">'.$e->display_name."</span></span><br />\n";
|
218 |
}
|
219 |
if (($display_address == 'true' || $display_map == 'true') ) {
|
220 |
+
$subdetails .= $address;
|
221 |
}
|
222 |
if ($display_details == 'true' && !isset($_GET['mc_id']) ) {
|
223 |
$id = $event->event_id;
|
227 |
$replacements = array( stripslashes($event->event_title), stripslashes($event->event_label), $event->category_color, $event->category_icon, $current_date, $current_time );
|
228 |
$details_label = str_replace($tags,$replacements,$details_template );
|
229 |
$details_link = mc_build_url( array('mc_id'=>$uid), array('month','dy','yr','ltype','loc','mcat'), get_option( 'mc_uri' ) );
|
230 |
+
$subdetails .= ( get_option( 'mc_uri' ) != '' )?"<p class='mc_details'><a href='$details_link'>$details_label</a></p>\n":'';
|
231 |
}
|
232 |
// handle link expiration
|
233 |
if ( $event->event_link_expires == 0 ) {
|
243 |
if ( function_exists('my_calendar_generate_vcal') && get_option('mc_show_event_vcal') == 'true' ) {
|
244 |
$nonce = wp_create_nonce('my-calendar-nonce');
|
245 |
$vcal_link = "<p class='ical'><a rel='nofollow' href='".home_url()."?vcal=$uid"."'>".__('iCal','my-calendar')."</a></p>\n";
|
246 |
+
$subdetails .= $vcal_link;
|
247 |
}
|
248 |
|
249 |
$event_image = ($event->event_image!='')?"<img src='$event->event_image' alt='' class='mc-image' />":'';
|
250 |
$short = '';
|
251 |
if ( get_option('mc_short') == 'true' && $type != 'single' ) {
|
252 |
+
$short = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_short):wpautop(stripcslashes($event->event_short),1);
|
253 |
+
$short = "<div class='shortdesc'>$event_image".$short."</div>";
|
254 |
}
|
255 |
if ( get_option('mc_desc') == 'true' || $type == 'single' ) {
|
256 |
+
$description = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_desc):wpautop(stripcslashes($event->event_desc),1);
|
257 |
+
$description = "<div class='longdesc'>$event_image".$description."</div>";
|
258 |
} else {
|
259 |
$description = '';
|
260 |
}
|
286 |
// if we're opening in a new page, there's no reason to display any of that. Later, re-write this section to make this easier to skip.
|
287 |
if ( $type == 'calendar' && get_option('mc_open_uri') == 'true' && $time != 'day' ) $body_details = $description = $short = $status = '';
|
288 |
|
289 |
+
$subdetails = ( get_option('mc_open_uri') =='true')?"":"<div class='sub-details'>$subdetails</div>";
|
290 |
+
$body_details .= $subdetails;
|
291 |
+
if ( $event_link != '' && get_option( 'mc_event_link' ) != 'false' ) {
|
292 |
$is_external = mc_external_link( $event_link );
|
293 |
$link_template = ( isset($templates['link']))?$templates['link']:'{title}';
|
294 |
$link_text = jd_draw_template($data,$link_template);
|
295 |
+
$details = "\n". $header_details . $container . $body_details . $description . $short . $status."<p><a href='$event_link' $is_external>".$link_text.'</a></p>'.$return;
|
296 |
} else {
|
297 |
+
$details = "\n". $header_details . $container . $body_details . $description . $short . $status . $return;
|
298 |
}
|
|
|
|
|
299 |
} else {
|
300 |
$toggle = ($type == 'calendar' || $type == 'mini' )?"<a href='#' class='mc-toggle mc-close close'><img src='".MY_CALENDAR_DIRECTORY."/images/event-close.png' alt='".__('Close','my-calendar')."' /></a>":'';
|
301 |
$details = $header_details."\n<div id='$uid-$type-details' class='details'>\n ".$toggle.$details."\n";
|
302 |
}
|
303 |
// create edit links
|
304 |
+
if ( mc_can_edit_event( $event->event_author ) && get_option('mc_remote') != 'true' ) {
|
305 |
$groupedit = ( $event->event_group_id != 0 )?"<li><a href='".admin_url("admin.php?page=my-calendar-groups&mode=edit&event_id=$event->event_id&group_id=$event->event_group_id")."' class='group'>".__('Edit Group','my-calendar')."</a></li>\n":'';
|
306 |
if ( $event->event_recur == 'S' ) {
|
307 |
$edit = "
|
355 |
|
356 |
function mc_build_date_switcher( $type='calendar', $cid='all' ) {
|
357 |
global $wpdb;
|
358 |
+
$mcdb = $wpdb;
|
359 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
360 |
$current_url = mc_get_current_url();
|
361 |
$date_switcher = "";
|
362 |
$date_switcher .= '<div class="my-calendar-date-switcher">
|
381 |
<label for="mc-'.$type.'-year">'.__('Year','my-calendar').':</label> <select id="mc-'.$type.'-year" name="yr">'."\n";
|
382 |
// query to identify oldest start date in the database
|
383 |
$query = "SELECT event_begin FROM ".MY_CALENDAR_TABLE." WHERE event_approved = 1 AND event_flagged <> 1 ORDER BY event_begin ASC LIMIT 0 , 1";
|
384 |
+
$year1 = date('Y',strtotime( $mcdb->get_var( $query ) ) );
|
385 |
$diff1 = date('Y') - $year1;
|
386 |
$past = $diff1;
|
387 |
$future = 5;
|
448 |
<link rel='stylesheet' href='$stylesheet' type='text/css' media='screen,print' />
|
449 |
</head>
|
450 |
<body>\n";
|
451 |
+
echo my_calendar('print','calendar',$category,'no','no','no','no',$time,$ltype,$lvalue);
|
452 |
$return_url = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url();
|
453 |
echo "<p class='return'><a href='$return_url'>".__('Return to site','my-calendar')."</a></p>";
|
454 |
echo '
|
457 |
}
|
458 |
|
459 |
// Actually do the printing of the calendar
|
460 |
+
function my_calendar($name,$format,$category,$showkey,$shownav,$showjump,$toggle,$time='month',$ltype='',$lvalue='',$id='jd-calendar',$template='',$content='') {
|
461 |
global $wpdb, $wp_plugin_url;
|
462 |
+
$mcdb = $wpdb;
|
463 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
464 |
$my_calendar_body = '';
|
465 |
$args = array('name'=>$name,'format'=>$format,'category'=>$category,'showkey'=>$showkey,'shownav'=>$shownav,'toggle'=>$toggle,'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue);
|
466 |
$my_calendar_body .= apply_filters('mc_before_calendar','',$args);
|
467 |
$main_class = ( $name !='' )?sanitize_title($name):'all';
|
468 |
$cid = ( isset( $_GET['cid'] ) )?esc_attr(strip_tags($_GET['cid'])):'all';
|
469 |
+
if ( get_option('mc_mobile') == 'true' ) {
|
470 |
+
$format = ( mc_is_mobile() )?'list':$format;
|
471 |
+
}
|
472 |
$date_format = ( get_option('mc_date_format') != '' )?get_option('mc_date_format'):get_option('date_format');
|
473 |
|
474 |
if ( $format != 'mini' && $toggle == 'yes' ) {
|
491 |
|
492 |
if ( isset( $_GET['mc_id'] ) && $format != 'mini' ) {
|
493 |
$mc_id = explode("_",$_GET['mc_id']);
|
494 |
+
$mcid = (int) $mc_id[2];
|
495 |
$date = $mc_id[1];
|
496 |
+
$my_calendar_body .= my_calendar_get_event( $date, $mcid );
|
497 |
} else {
|
498 |
if ($category == "") {
|
499 |
$category=null;
|
570 |
}
|
571 |
$mc_print_url = mc_build_url( array( 'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue,'mcat'=>$category,'yr'=>$c_year,'month'=>$c_month,'dy'=>$c_day, 'cid'=>'print' ), array(), mc_feed_base() . 'my-calendar-print' );
|
572 |
|
573 |
+
$anchor = (get_option('ajax_javascript') == '1' )?"#$id":'';
|
574 |
if ($shownav == 'yes') {
|
575 |
$pLink = my_calendar_prev_link($c_year,$c_month,$c_day,$format,$time);
|
576 |
$nLink = my_calendar_next_link($c_year,$c_month,$c_day,$format,$time);
|
588 |
} else {
|
589 |
$mc_nav = '';
|
590 |
}
|
591 |
+
$my_calendar_body .= "<div id=\"$id\" class=\"mc-main $format $time $main_class\">";
|
592 |
if ( get_option( 'mc_show_print' ) == 'true' ) { $my_calendar_body .= "<p class='mc-print'><a href='$mc_print_url'>".__('Print View','my-calendar')."</a></p>"; }
|
593 |
if ( $time == 'day' ) {
|
594 |
$dayclass = strtolower(date_i18n('D',mktime (0,0,0,$c_month,$c_day,$c_year)));
|
619 |
$class .= $author;
|
620 |
}
|
621 |
}
|
622 |
+
$my_calendar_body .= my_calendar_draw_events($grabbed_events, $format, $process_date, $template);
|
623 |
} else {
|
624 |
$my_calendar_body .= __( 'No events scheduled for today!','my-calendar');
|
625 |
}
|
652 |
$category_label = ($category != "" && $category != "all")?str_replace("|"," $and ",$category) . ' ':'';
|
653 |
// Add the calendar table and heading
|
654 |
$caption_text = ' '.stripslashes( trim( get_option('mc_caption') ) );
|
655 |
+
$mc_display_jump = ( $showjump != '' )?$showjump:get_option('mc_display_jump');
|
656 |
+
if ( $mc_display_jump == 'yes' ) { $mc_display_jump = 'true'; }
|
657 |
if ($format == "calendar" || $format == "mini" ) {
|
658 |
$my_calendar_body .= '
|
659 |
<div class="my-calendar-header">';
|
706 |
$firstday = 1;
|
707 |
$lastday = $days_in_month;
|
708 |
}
|
709 |
+
// initiating variables
|
710 |
+
$thisday = 0; $useday = 1; $inc_month = false; $go = false; $inc = 0;
|
|
|
|
|
|
|
711 |
for ($i=$firstday; $i<=$lastday;) {
|
712 |
+
$my_calendar_body .= "<tr>\n";
|
713 |
if ($time == 'week') {
|
714 |
$ii_start = $first_weekday;$ii_end = $first_weekday + 6;
|
715 |
} else {
|
718 |
for ($ii=$ii_start; $ii<=$ii_end; $ii++) {
|
719 |
// moved $process_date down here because needs to be updated daily, not weekly.
|
720 |
$process_date = date_i18n('Y-m-d',mktime(0,0,0,$c_month,$thisday+1,$c_year));
|
721 |
+
if ($ii==$first_weekday && $i==$firstday ) {
|
722 |
+
$go = true;
|
723 |
+
} else if ($thisday > $days_in_month ) {
|
724 |
+
$go = false;
|
|
|
725 |
}
|
726 |
if ( empty( $thisday ) ) {
|
727 |
$numdays = date('t',mktime(0,0,0,$c_month-1));
|
796 |
$week_format = (get_option('mc_week_format')=='')?'M j, \'y':get_option('mc_week_format');
|
797 |
$week_date_format = date_i18n($week_format,strtotime( "$c_year-$c_month-$thisday" ) );
|
798 |
$thisday_heading = ($time == 'week')?"<small>$week_date_format</small>":$thisday;
|
|
|
|
|
|
|
799 |
if ( ( $is_weekend && get_option('mc_show_weekends') == 'true' ) || !$is_weekend ) {
|
800 |
+
$my_calendar_body .= "
|
801 |
+
<td id='$format-$process_date' class='$dayclass $class $dateclass $events_class'>"."
|
802 |
+
<$element class='mc-date $class'>$thisday_heading</$close>".
|
803 |
+
my_calendar_draw_events($grabbed_events, $format, $process_date,$template)."
|
804 |
+
</td>\n";
|
805 |
}
|
806 |
} else {
|
807 |
if ( !isset($now) ) { $now = 1; }
|
812 |
}
|
813 |
$is_weekend = ( date('N',strtotime($process_date)) < 6 )?false:true;
|
814 |
//$my_calendar_body .= date('N',$process_date);
|
815 |
+
//if ( ( $is_weekend && get_option('mc_show_weekends') == 'true' ) || get_option('mc_show_weekends') != 'true' ) {
|
816 |
if ( get_option('mc_show_weekends') == 'true' || ( get_option('mc_show_weekends') != 'true' && $inc < 5 ) ) {
|
817 |
+
$dayclass = strtolower(date_i18n('D',strtotime($process_date)));
|
818 |
+
$my_calendar_body .= "\n<td class='day-without-date $dayclass'> </td>\n";
|
819 |
}
|
820 |
$inc++;
|
821 |
+
//}
|
822 |
}
|
823 |
}
|
824 |
$my_calendar_body .= "</tr>\n";
|
825 |
}
|
826 |
$my_calendar_body .= "\n</tbody>\n</table>";
|
827 |
} else if ($format == "list") {
|
828 |
+
if ( $id == 'jd-calendar' ) { $list_id = 'calendar-list'; } else { $list_id = $id; }
|
829 |
+
$my_calendar_body .= "<ul id=\"$list_id\" class=\"mc-list\">";
|
830 |
// show calendar as list
|
831 |
$num_months = ($time == 'week')?1:get_option('mc_show_months');
|
832 |
$num_events = 0;
|
888 |
}
|
889 |
$my_calendar_body .= "
|
890 |
<li id='$format-$process_date' class='mc-events $class $classes'>
|
891 |
+
<strong class=\"event-date\">$is_anchor".date_i18n($date_format,mktime(0,0,0,$c_month,$thisday,$c_year))."$is_close_anchor"."$title</strong>".my_calendar_draw_events($grabbed_events, $format, $process_date,$template)."
|
892 |
</li>";
|
|
|
893 |
$num_events++;
|
894 |
$class = (my_calendar_is_odd($num_events))?"odd":"even";
|
895 |
+
}
|
896 |
}
|
897 |
}
|
898 |
if ($num_events == 0) {
|
899 |
+
$no_events = ( $content == '' )?__('There are no events scheduled during this period.','my-calendar'):$content;
|
900 |
+
$my_calendar_body .= "<li class='no-events'>$no_events</li>";
|
901 |
}
|
902 |
$my_calendar_body .= "</ul>";
|
903 |
} else {
|
904 |
$my_calendar_body .= __("Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'.",'my-calendar')." '<code>$format</code>.'";
|
905 |
}
|
906 |
+
$my_calendar_body .= my_category_key( $showkey, $category );
|
907 |
+
if ($format != 'mini') {
|
908 |
+
$ical_m = (isset($_GET['month']))?(int) $_GET['month']:date('n');
|
909 |
+
$ical_y = (isset($_GET['yr']))?(int) $_GET['yr']:date('Y');
|
910 |
+
$my_calendar_body .= mc_rss_links($ical_y,$ical_m);
|
911 |
+
}
|
912 |
+
}
|
913 |
+
$my_calendar_body .= "\n</div>";
|
914 |
+
}
|
915 |
+
// The actual printing is done by the shortcode function.
|
916 |
+
$my_calendar_body .= apply_filters('mc_after_calendar','',$args);
|
917 |
+
return $my_calendar_body;
|
918 |
+
}
|
919 |
+
|
920 |
+
function my_category_key( $showkey, $category ) {
|
921 |
+
global $wpdb,$wp_plugin_url;
|
922 |
+
$mcdb = $wpdb;
|
923 |
$category_key = '';
|
924 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
925 |
$cat_details = '';
|
926 |
+
if ($showkey == 'no') {
|
927 |
+
return;
|
928 |
+
} else {
|
929 |
$cat_limit = mc_select_category($category,'all','category');
|
930 |
$sql = "SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " $cat_limit ORDER BY category_name ASC";
|
931 |
+
$cat_details = $mcdb->get_results($sql);
|
932 |
$category_key .= '<div class="category-key">
|
933 |
<h3>'.__('Category Key','my-calendar')."</h3>\n<ul>\n";
|
934 |
$subpath = (is_custom_icon())?'/my-calendar-custom/':'/my-calendar/icons/';
|
935 |
$path = $wp_plugin_url . $subpath;
|
936 |
foreach($cat_details as $cat_detail) {
|
937 |
+
$hex = ( strpos( $cat_detail->category_color,'#' ) !== 0 )?'#':'';
|
|
|
938 |
$title_class = sanitize_title($cat_detail->category_name);
|
939 |
if ($cat_detail->category_icon != "" && get_option('mc_hide_icons')!='true') {
|
940 |
$category_key .= '<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";
|
945 |
$category_key .= "</ul>\n</div>";
|
946 |
}
|
947 |
$category_key = apply_filters('mc_category_key',$category_key,$cat_details);
|
948 |
+
return $category_key;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
}
|
950 |
|
951 |
function mc_rss_links($y,$m) {
|
1067 |
|
1068 |
function my_calendar_categories_list($show='list',$context='public') {
|
1069 |
global $wpdb;
|
1070 |
+
$mcdb = $wpdb;
|
1071 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
1072 |
if ( isset($_GET['mc_id']) ) {
|
1073 |
return;
|
1074 |
}
|
1094 |
$public_form = ($context == 'public')?$form:'';
|
1095 |
$name = ($context == 'public')?'mcat':'category';
|
1096 |
|
1097 |
+
$categories = $mcdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
|
1098 |
if ( !empty($categories) && count($categories)>=1 ) {
|
1099 |
$output = "<div id='mc_categories'>\n";
|
1100 |
$url = mc_build_url( array('mcat'=>'all'),array() );
|
1166 |
|
1167 |
function my_calendar_show_locations($show='list',$datatype='name') {
|
1168 |
global $wpdb;
|
1169 |
+
$mcdb = $wpdb;
|
1170 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
1171 |
switch ( $datatype ) {
|
1172 |
case "name":$data = "location_label";
|
1173 |
break;
|
1184 |
default:$data = "location_label";
|
1185 |
break;
|
1186 |
}
|
1187 |
+
$locations = $mcdb->get_results("SELECT DISTINCT * FROM " . MY_CALENDAR_LOCATIONS_TABLE . " ORDER BY $data ASC" );
|
1188 |
if ( $locations ) {
|
1189 |
$output = "<ul>";
|
1190 |
foreach( $locations as $key=>$value ) {
|
1210 |
|
1211 |
function my_calendar_locations_list($show='list',$type='saved',$datatype='name') {
|
1212 |
global $wpdb;
|
1213 |
+
$mcdb = $wpdb;
|
1214 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
1215 |
$output = '';
|
1216 |
if ( isset( $_GET['mc_id'] ) ) {
|
1217 |
return;
|
1236 |
}
|
1237 |
$current_url = mc_get_current_url();
|
1238 |
if ($type == 'saved') {
|
1239 |
+
$locations = $mcdb->get_results("SELECT DISTINCT $data FROM " . MY_CALENDAR_LOCATIONS_TABLE . " ORDER BY $data ASC", ARRAY_A );
|
1240 |
} else {
|
1241 |
$data = get_option( 'mc_user_settings' );
|
1242 |
$locations = $data['my_calendar_location_default']['values'];
|
my-calendar-settings.php
CHANGED
@@ -3,9 +3,10 @@
|
|
3 |
function my_calendar_import() {
|
4 |
if ( get_option('ko_calendar_imported') != 'true' ) {
|
5 |
global $wpdb;
|
6 |
-
|
7 |
-
define('
|
8 |
-
|
|
|
9 |
$sql = "";
|
10 |
foreach ($events as $key) {
|
11 |
$title = mysql_real_escape_string($key['event_title']);
|
@@ -30,9 +31,9 @@ function my_calendar_import() {
|
|
30 |
event_category=".($category).",
|
31 |
event_link='".($linky)."';
|
32 |
";
|
33 |
-
$events_results = $
|
34 |
}
|
35 |
-
$cats = $
|
36 |
$catsql = "";
|
37 |
foreach ($cats as $key) {
|
38 |
$name = mysql_real_escape_string($key['category_name']);
|
@@ -46,8 +47,8 @@ function my_calendar_import() {
|
|
46 |
category_name='".$name."',
|
47 |
category_color='".$color."';
|
48 |
";
|
49 |
-
$cats_results = $
|
50 |
-
//$
|
51 |
}
|
52 |
$message = ( $cats_results !== false )?__('Categories imported successfully.','my-calendar'):__('Categories not imported.','my-calendar');
|
53 |
$e_message = ( $events_results !== false )?__('Events imported successfully.','my-calendar'):__('Events not imported.','my-calendar');
|
@@ -61,39 +62,67 @@ function my_calendar_import() {
|
|
61 |
|
62 |
function edit_my_calendar_config() {
|
63 |
global $wpdb,$default_user_settings;
|
|
|
64 |
// We can't use this page unless My Calendar is installed/upgraded
|
65 |
check_my_calendar();
|
66 |
if (!empty($_POST)) {
|
67 |
$nonce=$_REQUEST['_wpnonce'];
|
68 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
69 |
}
|
70 |
-
if (isset($_POST['
|
71 |
// management
|
72 |
$clear = '';
|
73 |
-
$new_perms = $_POST['permissions'];
|
74 |
$mc_event_approve = ( !empty($_POST['mc_event_approve']) && $_POST['mc_event_approve']=='on')?'true':'false';
|
75 |
-
$
|
76 |
-
$mc_event_edit_perms = $_POST['mc_event_edit_perms'];
|
77 |
$mc_caching_enabled = ( !empty($_POST['mc_caching_enabled']) && $_POST['mc_caching_enabled']=='on')?'true':'false';
|
|
|
78 |
if ( isset($_POST['mc_clear_cache']) && $_POST['mc_clear_cache'] == 'clear' ) { mc_delete_cache(); $clear = __('My Calendar Cache cleared','my-calendar'); }
|
79 |
-
update_option('mc_event_approve_perms',$mc_event_approve_perms);
|
80 |
update_option('mc_event_approve',$mc_event_approve);
|
81 |
-
update_option('
|
82 |
-
update_option('mc_event_edit_perms',$mc_event_edit_perms);
|
83 |
update_option('mc_caching_enabled',$mc_caching_enabled);
|
|
|
|
|
84 |
|
85 |
if ( get_site_option('mc_multisite') == 2 ) {
|
86 |
$mc_current_table = (int) $_POST['mc_current_table'];
|
87 |
update_option('mc_current_table',$mc_current_table);
|
88 |
}
|
89 |
-
echo "<div class='updated'><p><strong>".__('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
}
|
91 |
// output
|
92 |
if (isset($_POST['mc_show_months']) ) {
|
93 |
$mc_title_template = $_POST['mc_title_template'];
|
94 |
$mc_details_label = $_POST['mc_details_label'];
|
95 |
$mc_link_label = $_POST['mc_link_label'];
|
96 |
-
|
97 |
$templates = get_option('mc_templates');
|
98 |
$templates['title'] = $mc_title_template;
|
99 |
$templates['label'] = $mc_details_label;
|
@@ -116,20 +145,21 @@ function edit_my_calendar_config() {
|
|
116 |
update_option('mc_time_format',stripslashes($_POST['mc_time_format']));
|
117 |
update_option('mc_show_map',( !empty($_POST['mc_show_map']) && $_POST['mc_show_map']=='on')?'true':'false');
|
118 |
update_option('mc_show_address',( !empty($_POST['mc_show_address']) && $_POST['mc_show_address']=='on')?'true':'false');
|
119 |
-
update_option('mc_hide_icons',( !empty($_POST['mc_hide_icons']) && $_POST['mc_hide_icons']=='on')?'
|
120 |
update_option('mc_event_link_expires',( !empty($_POST['mc_event_link_expires']) && $_POST['mc_event_link_expires']=='on')?'true':'false');
|
121 |
update_option('mc_apply_color',$_POST['mc_apply_color']);
|
122 |
update_option('mc_event_registration',( !empty($_POST['mc_event_registration']) && $_POST['mc_event_registration']=='on')?'true':'false');
|
123 |
update_option('mc_short',( !empty($_POST['mc_short']) && $_POST['mc_short']=='on')?'true':'false');
|
124 |
update_option('mc_desc',( !empty($_POST['mc_desc']) && $_POST['mc_desc']=='on')?'true':'false');
|
|
|
125 |
update_option('mc_details',( !empty($_POST['mc_details']) && $_POST['mc_details']=='on')?'true':'false');
|
|
|
126 |
update_option('mc_show_weekends',( !empty($_POST['mc_show_weekends']) && $_POST['mc_show_weekends']=='on')?'true':'false');
|
|
|
127 |
update_option('mc_no_fifth_week',( !empty($_POST['mc_no_fifth_week']) && $_POST['mc_no_fifth_week']=='on')?'true':'false');
|
128 |
update_option('mc_show_rss',( !empty($_POST['mc_show_rss']) && $_POST['mc_show_rss']=='on')?'true':'false');
|
129 |
update_option('mc_show_ical',( !empty($_POST['mc_show_ical']) && $_POST['mc_show_ical']=='on')?'true':'false');
|
130 |
update_option('mc_show_print',( !empty($_POST['mc_show_print']) && $_POST['mc_show_print']=='on')?'true':'false');
|
131 |
-
|
132 |
-
update_option('mc_default_sort',$_POST['mc_default_sort']);
|
133 |
// styles (output)
|
134 |
echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar').".</strong></p></div>";
|
135 |
}
|
@@ -227,57 +257,74 @@ function edit_my_calendar_config() {
|
|
227 |
$mc_uri = get_option('mc_uri');
|
228 |
$mc_day_uri = get_option('mc_day_uri');
|
229 |
$mc_mini_uri = get_option('mc_mini_uri');
|
230 |
-
?>
|
231 |
-
|
232 |
-
|
233 |
-
my_calendar_check_db()
|
234 |
-
check_akismet();
|
235 |
-
?>
|
236 |
<div id="icon-options-general" class="icon32"><br /></div>
|
237 |
<h2><?php _e('My Calendar Options','my-calendar'); ?></h2>
|
238 |
-
|
239 |
-
<div
|
|
|
|
|
240 |
<div class="postbox">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
<h3><?php _e('Calendar Management Settings','my-calendar'); ?></h3>
|
242 |
-
<div class="inside">
|
243 |
-
|
|
|
244 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
245 |
<fieldset>
|
246 |
<legend><?php _e('Calendar Options: Management','my-calendar'); ?></legend>
|
247 |
<ul>
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
<option value="publish_posts"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'publish_posts','option'); ?>><?php _e('Author','my-calendar')?></option>
|
261 |
-
<option value="moderate_comments"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'moderate_comments','option'); ?>><?php _e('Editor','my-calendar')?></option>
|
262 |
-
<option value="manage_options"<?php echo jd_option_selected(get_option('mc_event_approve_perms'),'manage_options','option'); ?>><?php _e('Administrator','my-calendar')?></option>
|
263 |
-
</select> <input type="checkbox" id="mc_event_approve" name="mc_event_approve" <?php jd_cal_checkCheckbox('mc_event_approve','true'); ?> /> <label for="mc_event_approve"><?php _e('Enable approval options.','my-calendar'); ?></label>
|
264 |
-
</li>
|
265 |
-
<li>
|
266 |
-
<label for="mc_event_edit_perms"><?php _e('Lowest user group that may edit or delete all events','my-calendar'); ?></label> <select id="mc_event_edit_perms" name="mc_event_edit_perms">
|
267 |
-
<option value="edit_posts"<?php echo jd_option_selected(get_option('mc_event_edit_perms'),'edit_posts','option'); ?>><?php _e('Contributor','my-calendar')?></option>
|
268 |
-
<option value="publish_posts"<?php echo jd_option_selected(get_option('mc_event_edit_perms'),'publish_posts','option'); ?>><?php _e('Author','my-calendar')?></option>
|
269 |
-
<option value="moderate_comments"<?php echo jd_option_selected(get_option('mc_event_edit_perms'),'moderate_comments','option'); ?>><?php _e('Editor','my-calendar')?></option>
|
270 |
-
<option value="manage_options"<?php echo jd_option_selected(get_option('mc_event_edit_perms'),'manage_options','option'); ?>><?php _e('Administrator','my-calendar')?></option>
|
271 |
-
</select><br />
|
272 |
-
<em><?php _e('By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored.','my-calendar'); ?></em>
|
273 |
-
</li>
|
274 |
-
<li><input type="checkbox" id="mc_caching_enabled" name="mc_caching_enabled" <?php jd_cal_checkCheckbox('mc_caching_enabled','true'); ?> /> <label for="mc_caching_enabled"><?php _e('Enable caching.','my-calendar'); ?></label>
|
275 |
-
</li>
|
276 |
<?php if ( get_option('mc_caching_enabled') == 'true' ) { ?>
|
277 |
<li><input type="checkbox" id="mc_clear_cache" name="mc_clear_cache" value="clear" /> <label for="mc_clear_cache"><?php _e('Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)','my-calendar'); ?></label>
|
278 |
</li>
|
279 |
<?php } ?>
|
280 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
<li>
|
282 |
<input type="radio" name="mc_current_table" id="mc0" value="0"<?php echo jd_option_selected(get_option('mc_current_table'),0); ?> /> <label for="mc0"><?php _e('Currently editing my local calendar','my-calendar'); ?></label>
|
283 |
</li>
|
@@ -285,20 +332,28 @@ check_akismet();
|
|
285 |
<input type="radio" name="mc_current_table" id="mc1" value="1"<?php echo jd_option_selected(get_option('mc_current_table'),1); ?> /> <label for="mc1"><?php _e('Currently editing the network calendar','my-calendar'); ?></label>
|
286 |
</li>
|
287 |
<?php } else { ?>
|
|
|
288 |
<li><?php _e('You are currently working in the primary site for this network; your local calendar is also the global table.','my-calendar'); ?></li>
|
|
|
289 |
<?php } ?>
|
290 |
</ul>
|
291 |
</fieldset>
|
292 |
<p>
|
293 |
-
<input type="submit" name="
|
294 |
</p>
|
295 |
</form>
|
|
|
|
|
|
|
296 |
</div>
|
297 |
</div>
|
298 |
-
|
|
|
|
|
|
|
299 |
<h3><?php _e('Calendar Text Settings','my-calendar'); ?></h3>
|
300 |
<div class="inside">
|
301 |
-
<form
|
302 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
303 |
<fieldset>
|
304 |
<legend><?php _e('Calendar Options: Customizable Text Fields','my-calendar'); ?></legend>
|
@@ -322,7 +377,7 @@ check_akismet();
|
|
322 |
<label for="mc_week_caption"><?php _e('Week view caption:','my-calendar'); ?></label> <input type="text" id="mc_week_caption" name="mc_week_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_week_caption') ) ); ?>" />
|
323 |
</li>
|
324 |
<li>
|
325 |
-
<label for="my_calendar_caption"><?php _e('
|
326 |
</li>
|
327 |
</ul>
|
328 |
</fieldset>
|
@@ -332,10 +387,13 @@ check_akismet();
|
|
332 |
</form>
|
333 |
</div>
|
334 |
</div>
|
335 |
-
|
|
|
|
|
|
|
336 |
<h3><?php _e('Calendar Output Settings','my-calendar'); ?></h3>
|
337 |
<div class="inside">
|
338 |
-
<form
|
3 |
function my_calendar_import() {
|
4 |
if ( get_option('ko_calendar_imported') != 'true' ) {
|
5 |
global $wpdb;
|
6 |
+
$mcdb = $wpdb;
|
7 |
+
define('KO_CALENDAR_TABLE', $mcdb->prefix . 'calendar');
|
8 |
+
define('KO_CALENDAR_CATS', $mcdb->prefix . 'calendar_categories');
|
9 |
+
$events = $mcdb->get_results("SELECT * FROM " . KO_CALENDAR_TABLE, 'ARRAY_A');
|
10 |
$sql = "";
|
11 |
foreach ($events as $key) {
|
12 |
$title = mysql_real_escape_string($key['event_title']);
|
31 |
event_category=".($category).",
|
32 |
event_link='".($linky)."';
|
33 |
";
|
34 |
+
$events_results = $mcdb->query($sql);
|
35 |
}
|
36 |
+
$cats = $mcdb->get_results("SELECT * FROM " . KO_CALENDAR_CATS, 'ARRAY_A');
|
37 |
$catsql = "";
|
38 |
foreach ($cats as $key) {
|
39 |
$name = mysql_real_escape_string($key['category_name']);
|
47 |
category_name='".$name."',
|
48 |
category_color='".$color."';
|
49 |
";
|
50 |
+
$cats_results = $mcdb->query($catsql);
|
51 |
+
//$mcdb->print_error();
|
52 |
}
|
53 |
$message = ( $cats_results !== false )?__('Categories imported successfully.','my-calendar'):__('Categories not imported.','my-calendar');
|
54 |
$e_message = ( $events_results !== false )?__('Events imported successfully.','my-calendar'):__('Events not imported.','my-calendar');
|
62 |
|
63 |
function edit_my_calendar_config() {
|
64 |
global $wpdb,$default_user_settings;
|
65 |
+
$mcdb = $wpdb;
|
66 |
// We can't use this page unless My Calendar is installed/upgraded
|
67 |
check_my_calendar();
|
68 |
if (!empty($_POST)) {
|
69 |
$nonce=$_REQUEST['_wpnonce'];
|
70 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
71 |
}
|
72 |
+
if (isset($_POST['mc_manage'])) {
|
73 |
// management
|
74 |
$clear = '';
|
|
|
75 |
$mc_event_approve = ( !empty($_POST['mc_event_approve']) && $_POST['mc_event_approve']=='on')?'true':'false';
|
76 |
+
$mc_remote = ( !empty($_POST['mc_remote']) && $_POST['mc_remote']=='on')?'true':'false';
|
|
|
77 |
$mc_caching_enabled = ( !empty($_POST['mc_caching_enabled']) && $_POST['mc_caching_enabled']=='on')?'true':'false';
|
78 |
+
if ( $mc_remote == 'true' ) { $mc_caching_enabled = 'false'; }
|
79 |
if ( isset($_POST['mc_clear_cache']) && $_POST['mc_clear_cache'] == 'clear' ) { mc_delete_cache(); $clear = __('My Calendar Cache cleared','my-calendar'); }
|
|
|
80 |
update_option('mc_event_approve',$mc_event_approve);
|
81 |
+
update_option('mc_remote',$mc_remote);
|
|
|
82 |
update_option('mc_caching_enabled',$mc_caching_enabled);
|
83 |
+
update_option('mc_default_sort',$_POST['mc_default_sort']);
|
84 |
+
|
85 |
|
86 |
if ( get_site_option('mc_multisite') == 2 ) {
|
87 |
$mc_current_table = (int) $_POST['mc_current_table'];
|
88 |
update_option('mc_current_table',$mc_current_table);
|
89 |
}
|
90 |
+
echo "<div class='updated'><p><strong>".__('My Calendar Management Settings saved','my-calendar').". $clear</strong></p></div>";
|
91 |
+
}
|
92 |
+
if ( isset($_POST['mc_permissions'] ) ) {
|
93 |
+
$perms = $_POST['mc_caps'];
|
94 |
+
$caps = array(
|
95 |
+
'mc_add_events'=>__('Add Events','my-calendar'),
|
96 |
+
'mc_approve_events'=>__('Approve Events','my-calendar'),
|
97 |
+
'mc_manage_events'=>__('Manage Events','my-calendar'),
|
98 |
+
'mc_edit_cats'=>__('Edit Categories','my-calendar'),
|
99 |
+
'mc_edit_locations'=>__('Edit Locations','my-calendar'),
|
100 |
+
'mc_edit_styles'=>__('Edit Styles','my-calendar'),
|
101 |
+
'mc_edit_behaviors'=>__('Edit Behaviors','my-calendar'),
|
102 |
+
'mc_edit_templates'=>__('Edit Templates','my-calendar'),
|
103 |
+
'mc_edit_settings'=>__('Edit Settings','my-calendar'),
|
104 |
+
'mc_view_help'=>__('View Help','my-calendar')
|
105 |
+
);
|
106 |
+
foreach ( $perms as $key => $value ) {
|
107 |
+
$role = get_role( $key );
|
108 |
+
if ( is_object( $role ) ) {
|
109 |
+
foreach( $caps as $k=>$v ) {
|
110 |
+
if ( $value[$k] ) {
|
111 |
+
$role->add_cap( $k );
|
112 |
+
} else {
|
113 |
+
$role->remove_cap( $k );
|
114 |
+
}
|
115 |
+
}
|
116 |
+
}
|
117 |
+
}
|
118 |
+
echo "<div class='updated'><p><strong>".__('My Calendar Permissions Updated','my-calendar')."</strong></p></div>";
|
119 |
}
|
120 |
// output
|
121 |
if (isset($_POST['mc_show_months']) ) {
|
122 |
$mc_title_template = $_POST['mc_title_template'];
|
123 |
$mc_details_label = $_POST['mc_details_label'];
|
124 |
$mc_link_label = $_POST['mc_link_label'];
|
125 |
+
$mc_open_day_uri = ( !empty($_POST['mc_open_day_uri']) )?$_POST['mc_open_day_uri']:'';
|
126 |
$templates = get_option('mc_templates');
|
127 |
$templates['title'] = $mc_title_template;
|
128 |
$templates['label'] = $mc_details_label;
|
145 |
update_option('mc_time_format',stripslashes($_POST['mc_time_format']));
|
146 |
update_option('mc_show_map',( !empty($_POST['mc_show_map']) && $_POST['mc_show_map']=='on')?'true':'false');
|
147 |
update_option('mc_show_address',( !empty($_POST['mc_show_address']) && $_POST['mc_show_address']=='on')?'true':'false');
|
148 |
+
update_option('mc_hide_icons',( !empty($_POST['mc_hide_icons']) && $_POST['mc_hide_icons']=='on')?'false':'true');
|
149 |
update_option('mc_event_link_expires',( !empty($_POST['mc_event_link_expires']) && $_POST['mc_event_link_expires']=='on')?'true':'false');
|
150 |
update_option('mc_apply_color',$_POST['mc_apply_color']);
|
151 |
update_option('mc_event_registration',( !empty($_POST['mc_event_registration']) && $_POST['mc_event_registration']=='on')?'true':'false');
|
152 |
update_option('mc_short',( !empty($_POST['mc_short']) && $_POST['mc_short']=='on')?'true':'false');
|
153 |
update_option('mc_desc',( !empty($_POST['mc_desc']) && $_POST['mc_desc']=='on')?'true':'false');
|
154 |
+
update_option('mc_process_shortcodes',( !empty($_POST['mc_process_shortcodes']) && $_POST['mc_process_shortcodes']=='on')?'true':'false');
|
155 |
update_option('mc_details',( !empty($_POST['mc_details']) && $_POST['mc_details']=='on')?'true':'false');
|
156 |
+
update_option('mc_event_link',( !empty($_POST['mc_event_link']) && $_POST['mc_event_link']=='on')?'true':'false');
|
157 |
update_option('mc_show_weekends',( !empty($_POST['mc_show_weekends']) && $_POST['mc_show_weekends']=='on')?'true':'false');
|
158 |
+
update_option('mc_convert',( !empty($_POST['mc_convert']) && $_POST['mc_convert']=='on')?'true':'false');
|
159 |
update_option('mc_no_fifth_week',( !empty($_POST['mc_no_fifth_week']) && $_POST['mc_no_fifth_week']=='on')?'true':'false');
|
160 |
update_option('mc_show_rss',( !empty($_POST['mc_show_rss']) && $_POST['mc_show_rss']=='on')?'true':'false');
|
161 |
update_option('mc_show_ical',( !empty($_POST['mc_show_ical']) && $_POST['mc_show_ical']=='on')?'true':'false');
|
162 |
update_option('mc_show_print',( !empty($_POST['mc_show_print']) && $_POST['mc_show_print']=='on')?'true':'false');
|
|
|
|
|
163 |
// styles (output)
|
164 |
echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar').".</strong></p></div>";
|
165 |
}
|
257 |
$mc_uri = get_option('mc_uri');
|
258 |
$mc_day_uri = get_option('mc_day_uri');
|
259 |
$mc_mini_uri = get_option('mc_mini_uri');
|
260 |
+
?>
|
261 |
+
|
262 |
+
<div class="wrap jd-my-calendar" id="mc_settings">
|
263 |
+
<?php my_calendar_check_db();?>
|
|
|
|
|
264 |
<div id="icon-options-general" class="icon32"><br /></div>
|
265 |
<h2><?php _e('My Calendar Options','my-calendar'); ?></h2>
|
266 |
+
<div class="postbox-container" style="width: 70%">
|
267 |
+
<div class="metabox-holder">
|
268 |
+
|
269 |
+
<div class="ui-sortable meta-box-sortables">
|
270 |
<div class="postbox">
|
271 |
+
<h3><?php _e('My Calendar Settings','my-calendar'); ?></h3>
|
272 |
+
<div class="inside">
|
273 |
+
<ul class="mc-settings">
|
274 |
+
<li><a href="#my-calendar-manage"><?php _e('Management','my-calendar'); ?></a></li>
|
275 |
+
<li><a href="#my-calendar-text"><?php _e('Customizable Text','my-calendar'); ?></a></li>
|
276 |
+
<li><a href="#my-calendar-output"><?php _e('Output','my-calendar'); ?></a></li>
|
277 |
+
<li><a href="#my-calendar-input"><?php _e('Input','my-calendar'); ?></a></li>
|
278 |
+
<?php if ( current_user_can('manage_network') ) { ?>
|
279 |
+
<li><a href="#my-calendar-multisite"><?php _e('Multi-site','my-calendar'); ?></a></li>
|
280 |
+
<?php } ?>
|
281 |
+
<li><a href="#my-calendar-permissions"><?php _e('Permissions','my-calendar'); ?></a></li>
|
282 |
+
<li><a href="#my-calendar-email"><?php _e('Email Notifications','my-calendar'); ?></a></li>
|
283 |
+
<li><a href="#my-calendar-user"><?php _e('Individual Users','my-calendar'); ?></a></li>
|
284 |
+
</ul>
|
285 |
+
</div>
|
286 |
+
</div>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<div class="ui-sortable meta-box-sortables">
|
290 |
+
<div class="postbox" id="my-calendar-manage">
|
291 |
<h3><?php _e('Calendar Management Settings','my-calendar'); ?></h3>
|
292 |
+
<div class="inside">
|
293 |
+
<?php if ( current_user_can('administrator') ) { ?>
|
294 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
|
295 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
296 |
<fieldset>
|
297 |
<legend><?php _e('Calendar Options: Management','my-calendar'); ?></legend>
|
298 |
<ul>
|
299 |
+
<li><input type="checkbox" id="mc_remote" name="mc_remote" <?php jd_cal_checkCheckbox('mc_remote','true'); ?> /> <label for="mc_remote"><?php _e('Get data (events, categories and locations) from a remote database.','my-calendar'); ?></label></li>
|
300 |
+
<?php if ( get_option('mc_remote') == 'true' ) { ?>
|
301 |
+
<li><?php _e('Add this code to your theme\'s <code>functions.php</code> file:','my-calendar'); ?>
|
302 |
+
<pre>function mc_remote_db() {
|
303 |
+
$mcdb = new wpdb('DB_NAME','DB_PASSWORD','DB_USER','DB_ADDRESS');
|
304 |
+
return $mcdb;
|
305 |
+
}</pre>
|
306 |
+
<?php _e('You will need to allow remote connections from this site to the site hosting your My Calendar events. Replace the above placeholders with the host-site information. The two sites must have the same WP table prefix.','my-calendar'); ?>
|
307 |
+
</li>
|
308 |
+
<?php } ?>
|
309 |
+
<li><input type="checkbox" id="mc_event_approve" name="mc_event_approve" <?php jd_cal_checkCheckbox('mc_event_approve','true'); ?> /> <label for="mc_event_approve"><?php _e('Enable approval options.','my-calendar'); ?></label> </li>
|
310 |
+
<li><input type="checkbox" id="mc_caching_enabled" name="mc_caching_enabled"<?php echo ( get_option('mc_remote') == 'true' )?" disabled='disabled'":''; ?> <?php jd_cal_checkCheckbox('mc_caching_enabled','true'); ?> /> <label for="mc_caching_enabled"><?php _e('Enable caching.','my-calendar'); ?></label><?php echo ( get_option('mc_remote') == 'true' )?__('<em>Cannot use caching while accessing a remote database.</em>','my-calendar'):''; ?> </li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
<?php if ( get_option('mc_caching_enabled') == 'true' ) { ?>
|
312 |
<li><input type="checkbox" id="mc_clear_cache" name="mc_clear_cache" value="clear" /> <label for="mc_clear_cache"><?php _e('Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)','my-calendar'); ?></label>
|
313 |
</li>
|
314 |
<?php } ?>
|
315 |
+
<li>
|
316 |
+
<label for="mc_default_sort"><?php _e('Default Sort order for Admin Events List','my-calendar'); ?></label>
|
317 |
+
<select id="mc_default_sort" name="mc_default_sort">
|
318 |
+
<option value='1' <?php jd_cal_checkSelect( 'mc_default_sort','1'); ?>><?php _e('Event ID','my-calendar'); ?></option>
|
319 |
+
<option value='2' <?php jd_cal_checkSelect( 'mc_default_sort','2'); ?>><?php _e('Title','my-calendar'); ?></option>
|
320 |
+
<option value='3' <?php jd_cal_checkSelect( 'mc_default_sort','3'); ?>><?php _e('Description','my-calendar'); ?></option>
|
321 |
+
<option value='4' <?php jd_cal_checkSelect( 'mc_default_sort','4'); ?>><?php _e('Start Date','my-calendar'); ?></option>
|
322 |
+
<option value='5' <?php jd_cal_checkSelect( 'mc_default_sort','5'); ?>><?php _e('Author','my-calendar'); ?></option>
|
323 |
+
<option value='6' <?php jd_cal_checkSelect( 'mc_default_sort','6'); ?>><?php _e('Category','my-calendar'); ?></option>
|
324 |
+
<option value='7' <?php jd_cal_checkSelect( 'mc_default_sort','7'); ?>><?php _e('Location Name','my-calendar'); ?></option>
|
325 |
+
</select>
|
326 |
+
</li>
|
327 |
+
<?php if ( get_site_option('mc_multisite') == 2 && MY_CALENDAR_TABLE != MY_CALENDAR_GLOBAL_TABLE ) { ?>
|
328 |
<li>
|
329 |
<input type="radio" name="mc_current_table" id="mc0" value="0"<?php echo jd_option_selected(get_option('mc_current_table'),0); ?> /> <label for="mc0"><?php _e('Currently editing my local calendar','my-calendar'); ?></label>
|
330 |
</li>
|
332 |
<input type="radio" name="mc_current_table" id="mc1" value="1"<?php echo jd_option_selected(get_option('mc_current_table'),1); ?> /> <label for="mc1"><?php _e('Currently editing the network calendar','my-calendar'); ?></label>
|
333 |
</li>
|
334 |
<?php } else { ?>
|
335 |
+
<?php if ( get_option('mc_remote') != 'true' ) { ?>
|
336 |
<li><?php _e('You are currently working in the primary site for this network; your local calendar is also the global table.','my-calendar'); ?></li>
|
337 |
+
<?php } ?>
|
338 |
<?php } ?>
|
339 |
</ul>
|
340 |
</fieldset>
|
341 |
<p>
|
342 |
+
<input type="submit" name="mc_manage" class="button-primary" value="<?php _e('Save Management Settings','my-calendar'); ?>" />
|
343 |
</p>
|
344 |
</form>
|
345 |
+
<?php } else { ?>
|
346 |
+
<?php _e('My Calendar management settings are only available to administrators.','my-calendar'); ?>
|
347 |
+
<?php } ?>
|
348 |
</div>
|
349 |
</div>
|
350 |
+
</div>
|
351 |
+
|
352 |
+
<div class="ui-sortable meta-box-sortables">
|
353 |
+
<div class="postbox" id="my-calendar-text">
|
354 |
<h3><?php _e('Calendar Text Settings','my-calendar'); ?></h3>
|
355 |
<div class="inside">
|
356 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
|
357 |
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
358 |
<fieldset>
|
359 |
<legend><?php _e('Calendar Options: Customizable Text Fields','my-calendar'); ?></legend>
|
377 |
<label for="mc_week_caption"><?php _e('Week view caption:','my-calendar'); ?></label> <input type="text" id="mc_week_caption" name="mc_week_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_week_caption') ) ); ?>" />
|
378 |
</li>
|
379 |
<li>
|
380 |
+
<label for="my_calendar_caption"><?php _e('Extended caption:','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_caption') ) ); ?>" /><br /><small><?php _e('The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year.','my-calendar'); ?></small>
|
381 |
</li>
|
382 |
</ul>
|
383 |
</fieldset>
|
387 |
</form>
|
388 |
</div>
|
389 |
</div>
|
390 |
+
</div>
|
391 |
+
|
392 |
+
<div class="ui-sortable meta-box-sortables">
|
393 |
+
<div class="postbox" id="my-calendar-output">
|
394 |
<h3><?php _e('Calendar Output Settings','my-calendar'); ?></h3>
|
395 |
<div class="inside">
|
396 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-
|