Version Description
- Fixed major issue that prevented publishing new metaboxes (CFC)
- Added a footer message asking users to leave a review if they enjoyed WCK
Download this release
Release Info
Developer | reflectionmedia |
Plugin | Custom Post Types and Custom Fields creator – WCK |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.1.5
- js/wck-cfc.js +52 -52
- languages/wck-es_ES.po +1157 -1157
- languages/wck.pot +1123 -1123
- readme.txt +6 -2
- wck-cfc.php +637 -637
- wck.php +17 -3
- wordpress-creation-kit-api/wck-fep/wck-fep.js +159 -159
- wordpress-creation-kit-api/wordpress-creation-kit.php +1 -1
js/wck-cfc.js
CHANGED
@@ -1,53 +1,53 @@
|
|
1 |
-
jQuery(function(){
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
jQuery(document).on( 'change', '#wck_cfc_fields #field-type', function () {
|
6 |
-
value = jQuery(this).val();
|
7 |
-
|
8 |
-
if( value == 'select' || value == 'checkbox' || value == 'radio' ){
|
9 |
-
jQuery( '#wck_cfc_fields .row-options' ).show();
|
10 |
-
}
|
11 |
-
else{
|
12 |
-
jQuery( '#wck_cfc_fields .row-options' ).hide();
|
13 |
-
}
|
14 |
-
|
15 |
-
if( value == 'upload' ){
|
16 |
-
jQuery( '#wck_cfc_fields .row-attach-upload-to-post' ).show();
|
17 |
-
}
|
18 |
-
else{
|
19 |
-
jQuery( '#wck_cfc_fields .row-attach-upload-to-post' ).hide();
|
20 |
-
}
|
21 |
-
|
22 |
-
if( value == 'cpt select' ){
|
23 |
-
jQuery( '#wck_cfc_fields .row-cpt' ).show();
|
24 |
-
}
|
25 |
-
else{
|
26 |
-
jQuery( '#wck_cfc_fields .row-cpt' ).hide();
|
27 |
-
} });
|
28 |
-
|
29 |
-
jQuery(document).on( 'change', '#container_wck_cfc_fields #field-type', function () {
|
30 |
-
value = jQuery(this).val();
|
31 |
-
if( value == 'select' || value == 'checkbox' || value == 'radio' ){
|
32 |
-
jQuery(this).parent().parent().parent().children(".row-options").show();
|
33 |
-
}
|
34 |
-
else{
|
35 |
-
jQuery(this).parent().parent().parent().children(".row-options").hide();
|
36 |
-
}
|
37 |
-
|
38 |
-
if( value == 'upload' ){
|
39 |
-
jQuery(this).parent().parent().parent().children(".row-attach-upload-to-post").show();
|
40 |
-
}
|
41 |
-
else{
|
42 |
-
jQuery(this).parent().parent().parent().children(".row-attach-upload-to-post").hide();
|
43 |
-
}
|
44 |
-
|
45 |
-
if( value == 'cpt select' ){
|
46 |
-
jQuery(this).parent().parent().parent().children(".row-cpt").show();
|
47 |
-
}
|
48 |
-
else{
|
49 |
-
jQuery(this).parent().parent().parent().children(".row-cpt").hide();
|
50 |
-
}
|
51 |
-
|
52 |
-
});
|
53 |
});
|
1 |
+
jQuery(function(){
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
jQuery(document).on( 'change', '#wck_cfc_fields #field-type', function () {
|
6 |
+
value = jQuery(this).val();
|
7 |
+
|
8 |
+
if( value == 'select' || value == 'checkbox' || value == 'radio' ){
|
9 |
+
jQuery( '#wck_cfc_fields .row-options' ).show();
|
10 |
+
}
|
11 |
+
else{
|
12 |
+
jQuery( '#wck_cfc_fields .row-options' ).hide();
|
13 |
+
}
|
14 |
+
|
15 |
+
if( value == 'upload' ){
|
16 |
+
jQuery( '#wck_cfc_fields .row-attach-upload-to-post' ).show();
|
17 |
+
}
|
18 |
+
else{
|
19 |
+
jQuery( '#wck_cfc_fields .row-attach-upload-to-post' ).hide();
|
20 |
+
}
|
21 |
+
|
22 |
+
if( value == 'cpt select' ){
|
23 |
+
jQuery( '#wck_cfc_fields .row-cpt' ).show();
|
24 |
+
}
|
25 |
+
else{
|
26 |
+
jQuery( '#wck_cfc_fields .row-cpt' ).hide();
|
27 |
+
} });
|
28 |
+
|
29 |
+
jQuery(document).on( 'change', '#container_wck_cfc_fields #field-type', function () {
|
30 |
+
value = jQuery(this).val();
|
31 |
+
if( value == 'select' || value == 'checkbox' || value == 'radio' ){
|
32 |
+
jQuery(this).parent().parent().parent().children(".row-options").show();
|
33 |
+
}
|
34 |
+
else{
|
35 |
+
jQuery(this).parent().parent().parent().children(".row-options").hide();
|
36 |
+
}
|
37 |
+
|
38 |
+
if( value == 'upload' ){
|
39 |
+
jQuery(this).parent().parent().parent().children(".row-attach-upload-to-post").show();
|
40 |
+
}
|
41 |
+
else{
|
42 |
+
jQuery(this).parent().parent().parent().children(".row-attach-upload-to-post").hide();
|
43 |
+
}
|
44 |
+
|
45 |
+
if( value == 'cpt select' ){
|
46 |
+
jQuery(this).parent().parent().parent().children(".row-cpt").show();
|
47 |
+
}
|
48 |
+
else{
|
49 |
+
jQuery(this).parent().parent().parent().children(".row-cpt").hide();
|
50 |
+
}
|
51 |
+
|
52 |
+
});
|
53 |
});
|
languages/wck-es_ES.po
CHANGED
@@ -1,1157 +1,1157 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WCK\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-06-13 16:28+0200\n"
|
6 |
-
"PO-Revision-Date: 2014-01-24 11:10+0100\n"
|
7 |
-
"Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"X-Generator: Poedit 1.5.5\n"
|
15 |
-
"X-Poedit-SearchPath-0: d:\\!!!!!!!!!\\Free Version\\wck\n"
|
16 |
-
|
17 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:26
|
18 |
-
msgid "Add New Meta Box"
|
19 |
-
msgstr "Añadir nueva Meta Box"
|
20 |
-
|
21 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:27
|
22 |
-
msgid "Edit Meta Box"
|
23 |
-
msgstr "Editar Meta Box"
|
24 |
-
|
25 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:28
|
26 |
-
msgid "New Meta Box"
|
27 |
-
msgstr "Nueva Meta Box"
|
28 |
-
|
29 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:29 Version\wck/wck-sas.php:87
|
30 |
-
msgid "Custom Fields Creator"
|
31 |
-
msgstr "Creador de Campos Personalizados"
|
32 |
-
|
33 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:30
|
34 |
-
msgid "View Meta Box"
|
35 |
-
msgstr "Ver Meta Box"
|
36 |
-
|
37 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:31
|
38 |
-
msgid "Search Meta Boxes"
|
39 |
-
msgstr "Buscar Meta Boxes"
|
40 |
-
|
41 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:32
|
42 |
-
msgid "No Meta Boxes found"
|
43 |
-
msgstr "No se encontraron Meta Boxes"
|
44 |
-
|
45 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:33
|
46 |
-
msgid "No Meta Boxes found in Trash"
|
47 |
-
msgstr "No se encontraron Meta Boxes en la basura"
|
48 |
-
|
49 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:35
|
50 |
-
msgid "Custom Meta Boxes"
|
51 |
-
msgstr "Meta Boxes personalizados"
|
52 |
-
|
53 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:84
|
54 |
-
msgid "Meta name"
|
55 |
-
msgstr "Nombre Meta"
|
56 |
-
|
57 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:84
|
58 |
-
msgid ""
|
59 |
-
"The name of the meta field. It is the name by which you will query the data "
|
60 |
-
"in the frontend. Must be unique, only lowercase letters, no spaces and no "
|
61 |
-
"special characters."
|
62 |
-
msgstr ""
|
63 |
-
"El nombre del campo de metadatos. Es el nombre con el que podrás consultar "
|
64 |
-
"los datos en el frontend. Debe ser único, sólo letras minúsculas, sin "
|
65 |
-
"espacios ni caracteres especiales."
|
66 |
-
|
67 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:85 Version\wck/wck-cfc.php:442
|
68 |
-
msgid "Post Type"
|
69 |
-
msgstr "Tipo de Publicación"
|
70 |
-
|
71 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:85
|
72 |
-
msgid "What post type the meta box should be attached to"
|
73 |
-
msgstr "A qué tipo de publicación debe adjuntarse el Meta Box"
|
74 |
-
|
75 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:86
|
76 |
-
msgid "Repeater"
|
77 |
-
msgstr "Repetidor"
|
78 |
-
|
79 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:86
|
80 |
-
msgid ""
|
81 |
-
"Whether the box supports just one entry or if it is a repeater field. By "
|
82 |
-
"default it is a single field."
|
83 |
-
msgstr ""
|
84 |
-
"Si el cuadro es compatible con una sola entrada o si se trata de un campo "
|
85 |
-
"repetidor. Por defecto es un solo campo."
|
86 |
-
|
87 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:87
|
88 |
-
msgid "Sortable"
|
89 |
-
msgstr "Ordenable"
|
90 |
-
|
91 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:87
|
92 |
-
msgid ""
|
93 |
-
"Whether the entries are sortable or not. Thsi is valid for repeater fields."
|
94 |
-
msgstr ""
|
95 |
-
"Si las entradas se pueden ordenar o no. Esto es válido para los campos de "
|
96 |
-
"repetidores."
|
97 |
-
|
98 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:88
|
99 |
-
msgid "Post ID"
|
100 |
-
msgstr "Identificación de la publicación"
|
101 |
-
|
102 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:88
|
103 |
-
msgid "ID of a post on which the meta box should appear."
|
104 |
-
msgstr "Identificación de una publicación en la que debe aparecer el Meta Box."
|
105 |
-
|
106 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:92 Version\wck/wck-cfc.php:443
|
107 |
-
msgid "Page Template"
|
108 |
-
msgstr "Plantilla de Página"
|
109 |
-
|
110 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:92
|
111 |
-
msgid ""
|
112 |
-
"If post type is \"page\" you can further select a page templete. The meta "
|
113 |
-
"box will only appear on the page that has that selected page template."
|
114 |
-
msgstr ""
|
115 |
-
"Si el tipo de publicación es \"página\" se puede seleccionar además un "
|
116 |
-
"templete de página. El Meta Box solo se mostrará en la página que tiene esa "
|
117 |
-
"plantilla de página seleccionada."
|
118 |
-
|
119 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:97 Version\wck/wck-cfc.php:536
|
120 |
-
msgid "Meta Box Arguments"
|
121 |
-
msgstr "Argumentos Meta Box"
|
122 |
-
|
123 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:114
|
124 |
-
msgid "Field Title"
|
125 |
-
msgstr "Título Campo"
|
126 |
-
|
127 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:114
|
128 |
-
msgid "Title of the field. A slug will automatically be generated."
|
129 |
-
msgstr "Título del Campo. Automáticamente se genera un slug."
|
130 |
-
|
131 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:115
|
132 |
-
msgid "Field Type"
|
133 |
-
msgstr "Tipo de Campo"
|
134 |
-
|
135 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:115
|
136 |
-
msgid "The field type"
|
137 |
-
msgstr "El tipo de campo"
|
138 |
-
|
139 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:116 Version\wck/wck-cptc.php:48
|
140 |
-
msgid "Description"
|
141 |
-
msgstr "Descripción"
|
142 |
-
|
143 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:117
|
144 |
-
msgid "Required"
|
145 |
-
msgstr "Requerido"
|
146 |
-
|
147 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:117
|
148 |
-
msgid "Whether the field is required or not"
|
149 |
-
msgstr "Si el campo es obligatorio o no"
|
150 |
-
|
151 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:118
|
152 |
-
msgid "Default Value"
|
153 |
-
msgstr "Valor predeterminado"
|
154 |
-
|
155 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:118
|
156 |
-
msgid ""
|
157 |
-
"Default value of the field. For Checkboxes if there are multiple values "
|
158 |
-
"separete them with a \",\""
|
159 |
-
msgstr ""
|
160 |
-
"Valor predeterminado del campo. Para Casillas de verificación, si hay "
|
161 |
-
"múltiples valores separarlas con un \",\""
|
162 |
-
|
163 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:119
|
164 |
-
msgid "Options"
|
165 |
-
msgstr "Opciones"
|
166 |
-
|
167 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:119
|
168 |
-
msgid ""
|
169 |
-
"Options for field types \"select\", \"checkbox\" and \"radio\". For multiple "
|
170 |
-
"options separete them with a \",\". You can use the following structure if "
|
171 |
-
"you want the label to be different from the value: %LabelOne%valueone,"
|
172 |
-
"%LabelTwo%valuetwo,%LabelThree%valuethree"
|
173 |
-
msgstr ""
|
174 |
-
"Opciones de tipos de campo \"seleccionar\", \"casilla\" y \" radio\". Para "
|
175 |
-
"múltiples opciones de ellas separarlas con un \",\". Puede utilizar la "
|
176 |
-
"siguiente estructura, si desea que la etiqueta sea diferente del valor: "
|
177 |
-
"%LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree"
|
178 |
-
|
179 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:120
|
180 |
-
msgid "Attach upload to post"
|
181 |
-
msgstr "Adjuntar carga para publicación"
|
182 |
-
|
183 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:120
|
184 |
-
msgid "Whether or not the uploads should be attached to the post"
|
185 |
-
msgstr "Si los archivos a subir deben o no estar adjuntos a la publicación"
|
186 |
-
|
187 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:127 Version\wck/wck-cfc.php:542
|
188 |
-
msgid "Meta Box Fields"
|
189 |
-
msgstr "Campos Meta Box"
|
190 |
-
|
191 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:140
|
192 |
-
msgid "Enter below the arguments for the meta box."
|
193 |
-
msgstr "Escriba aquí los argumentos para la Meta Box"
|
194 |
-
|
195 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:220
|
196 |
-
msgid "Slug:"
|
197 |
-
msgstr "Slug:"
|
198 |
-
|
199 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:220
|
200 |
-
msgid ""
|
201 |
-
"(Note:changing the slug when you already have a lot of existing entries may "
|
202 |
-
"result in unexpected behavior.)"
|
203 |
-
msgstr ""
|
204 |
-
"(Nota: cambiar el slug cuando ya tiene una gran cantidad de entradas "
|
205 |
-
"existentes puede provocar un comportamiento inesperado)"
|
206 |
-
|
207 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:355
|
208 |
-
msgid "Choose a different Meta Name as this one contains spaces\n"
|
209 |
-
msgstr "Elija un nombre diferente Meta pues éste contiene espacios\n"
|
210 |
-
|
211 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:357
|
212 |
-
msgid "Choose a different Meta Name as this one already exists\n"
|
213 |
-
msgstr "Elija un nombre diferente Meta pues ya existe éste\n"
|
214 |
-
|
215 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:441
|
216 |
-
msgid "Id"
|
217 |
-
msgstr "Id"
|
218 |
-
|
219 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:506 Version\wck/wck-cptc.php:257
|
220 |
-
#: Version\wck/wck-ctc.php:215 Version\wck/wck.php:38
|
221 |
-
msgid "Wordpress Creation Kit"
|
222 |
-
msgstr "Wordpress Creación Kit"
|
223 |
-
|
224 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:530 Version\wck/wck-cptc.php:282
|
225 |
-
#: Version\wck/wck-ctc.php:239
|
226 |
-
msgid "Overview"
|
227 |
-
msgstr "Descripción general"
|
228 |
-
|
229 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:531
|
230 |
-
msgid ""
|
231 |
-
"WCK Custom Fields Creator allows you to easily create custom meta boxes for "
|
232 |
-
"Wordpress without any programming knowledge."
|
233 |
-
msgstr ""
|
234 |
-
"WCK Custom Fields Creator le permite crear fácilmente Meta Boxes para "
|
235 |
-
"Wordpress sin ningún conocimiento de programación."
|
236 |
-
|
237 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:537
|
238 |
-
msgid ""
|
239 |
-
"Define here the rules for the meta box. This rules are used to set up where "
|
240 |
-
"the meta box will appear, it's type and also the meta key name stored in the "
|
241 |
-
"database. The name of the entry (Enter title here) will be used as the meta "
|
242 |
-
"box title."
|
243 |
-
msgstr ""
|
244 |
-
"Defina aquí las reglas para la meta box. Estas reglas se usan para "
|
245 |
-
"establecer donde aparecerá el Meta Box, su tipo y también el nombre de clave "
|
246 |
-
"meta almacenada en la base de datos. El nombre de la entrada (Introduzca el "
|
247 |
-
"título aquí) será utilizado como el título del Meta Box."
|
248 |
-
|
249 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:543
|
250 |
-
msgid ""
|
251 |
-
"Define here the fields contained in the meta box. From \"Field Title\" a "
|
252 |
-
"slug will be automatically generated and you will use this slug to display "
|
253 |
-
"the data in the frontend."
|
254 |
-
msgstr ""
|
255 |
-
"Defina aquí los campos contenidos en la caja de meta. . Desde \"Título de "
|
256 |
-
"Campo\" un slug se generará automáticamente y usted usará este slug para "
|
257 |
-
"mostrar los datos en el frontend."
|
258 |
-
|
259 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:548
|
260 |
-
msgid "CFC Frontend Example"
|
261 |
-
msgstr "Ejemplo de Frontend CFC"
|
262 |
-
|
263 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
264 |
-
msgid ""
|
265 |
-
"Let's consider we have a meta box with the following arguments:<br /> - Meta "
|
266 |
-
"name: books <br /> - Post Type: post <br />And we also have two fields "
|
267 |
-
"deffined:<br /> - A text field with the Field Title: Book name <br /> - And "
|
268 |
-
"another text field with the Field Title: Author name "
|
269 |
-
msgstr ""
|
270 |
-
"Consideremos que tenemos una meta box con los siguientes argumentos: <br /> "
|
271 |
-
"- Nombre Meta: libros <br /> - Tipo de Publicación: publicación <br /> Y "
|
272 |
-
"también tenemos dos campos definidos: <br /> - Otro campo de texto con el "
|
273 |
-
"Título de Campo: Nombre del Libro <br /> - Y otro campo de texto con el "
|
274 |
-
"título del campo : Nombre del autor"
|
275 |
-
|
276 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
277 |
-
msgid ""
|
278 |
-
"You will notice that slugs will automatically be created for the two text "
|
279 |
-
"fields. For \"Book name\" the slug will be \"book-name\" and for \"Author "
|
280 |
-
"name\" the slug will be \"author-name\""
|
281 |
-
msgstr ""
|
282 |
-
"Usted se dará cuenta de que los slugs se crearán automáticamente para los "
|
283 |
-
"dos campos de texto. Para \"Book name\" el slug será \"book-name \" y para "
|
284 |
-
"\"Nombre de autor\" el slug será \"author-name\""
|
285 |
-
|
286 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
287 |
-
msgid ""
|
288 |
-
"Let's see what the code for displaying the meta box values in single.php of "
|
289 |
-
"your theme would be:"
|
290 |
-
msgstr ""
|
291 |
-
"Vamos a ver cuál es el código para mostrar los valores del Meta Box en una "
|
292 |
-
"sola . php de su tema:"
|
293 |
-
|
294 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
295 |
-
msgid ""
|
296 |
-
"So as you can see the Meta Name \"books\" is used as the $key parameter of "
|
297 |
-
"the funtion <a href=\"http://codex.wordpress.org/Function_Reference/"
|
298 |
-
"get_post_meta\" target=\"_blank\">get_post_meta()</a> and the slugs of the "
|
299 |
-
"text fields are used as keys for the resulting array. Basically CFC stores "
|
300 |
-
"the entries as post meta in a multidimensioanl array. In our case the array "
|
301 |
-
"would be: <br /><pre>array( array( \"book-name\" => \"The Hitchhiker's Guide "
|
302 |
-
"To The Galaxy\", \"author-name\" => \"Douglas Adams\" ), array( \"book-name"
|
303 |
-
"\" => \"Ender's Game\", \"author-name\" => \"Orson Scott Card\" ) );</pre> "
|
304 |
-
"This is true even for single entries."
|
305 |
-
msgstr ""
|
306 |
-
"Así como usted puede ver el Meta Nombre \"libros\" se utiliza como parámetro "
|
307 |
-
"$ clave de la función <a href=\"http://codex.wordpress.org/"
|
308 |
-
"Function_Reference/get_post_meta\" target=\"_blank\">get_post_meta()</a> y "
|
309 |
-
"los slugs de los campos de texto se utilizan como claves para la matriz "
|
310 |
-
"resultante. Básicamente CFC almacena las entradas como post meta en una "
|
311 |
-
"matriz multidimensional. En nuestro caso, la matriz sería: <br /><pre>array"
|
312 |
-
"( array( \"book-name\" => \"The Hitchhiker's Guide To The Galaxy\", \"author-"
|
313 |
-
"name\" => \"Douglas Adams\" ), array( \"book-name\" => \"Ender's Game\", "
|
314 |
-
"\"author-name\" => \"Orson Scott Card\" ) );</pre> Esto es cierto incluso "
|
315 |
-
"para entradas individuales"
|
316 |
-
|
317 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:577
|
318 |
-
msgid "Metabox updated."
|
319 |
-
msgstr "Metabox actualizada."
|
320 |
-
|
321 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:6
|
322 |
-
msgid "WCK Post Type Creator"
|
323 |
-
msgstr "WCK Post Type Creator"
|
324 |
-
|
325 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:7 Version\wck/wck-sas.php:91
|
326 |
-
msgid "Post Type Creator"
|
327 |
-
msgstr "Post Type Creator"
|
328 |
-
|
329 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:47
|
330 |
-
msgid "Post type"
|
331 |
-
msgstr "Post type"
|
332 |
-
|
333 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:47
|
334 |
-
msgid ""
|
335 |
-
"(max. 20 characters, can not contain capital letters, hyphens, or spaces)"
|
336 |
-
msgstr ""
|
337 |
-
"(máx. 20 caracteres, no puede contener letras mayúsculas, guiones, ni "
|
338 |
-
"espacios)"
|
339 |
-
|
340 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:48
|
341 |
-
msgid "A short descriptive summary of what the post type is."
|
342 |
-
msgstr "Un resumen descriptivo debajo de lo que el tipo de publicación es."
|
343 |
-
|
344 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:49 Version\wck/wck-ctc.php:36
|
345 |
-
msgid "Singular Label"
|
346 |
-
msgstr "Etiqueta Individual"
|
347 |
-
|
348 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:49
|
349 |
-
msgid "ex. Book"
|
350 |
-
msgstr "ej. Libro"
|
351 |
-
|
352 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:50 Version\wck/wck-ctc.php:37
|
353 |
-
msgid "Plural Label"
|
354 |
-
msgstr "Etiqueta Plural"
|
355 |
-
|
356 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:50
|
357 |
-
msgid "ex. Books"
|
358 |
-
msgstr "ej. Libros"
|
359 |
-
|
360 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:51 Version\wck/wck-ctc.php:39
|
361 |
-
msgid "Hierarchical"
|
362 |
-
msgstr "Jerárquica"
|
363 |
-
|
364 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:51
|
365 |
-
msgid "Whether the post type is hierarchical. Allows Parent to be specified."
|
366 |
-
msgstr ""
|
367 |
-
"Si el tipo de la publicación es jerárquico. Permite que los padres se "
|
368 |
-
"determinen."
|
369 |
-
|
370 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:52
|
371 |
-
msgid "Has Archive"
|
372 |
-
msgstr "Tiene archivo"
|
373 |
-
|
374 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:52
|
375 |
-
msgid ""
|
376 |
-
"Enables post type archives. Will use string as archive slug. Will generate "
|
377 |
-
"the proper rewrite rules if rewrite is enabled."
|
378 |
-
msgstr ""
|
379 |
-
"Permite archivos de tipo de publicación. Utilizará cadena como slug de "
|
380 |
-
"archivo. Generará las reglas de reescritura adecuadas si reescritura está "
|
381 |
-
"habilitada."
|
382 |
-
|
383 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:53
|
384 |
-
msgid "Supports"
|
385 |
-
msgstr "Soporta"
|
386 |
-
|
387 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:56
|
388 |
-
msgid "Add New"
|
389 |
-
msgstr "Añadir Nuevo"
|
390 |
-
|
391 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:56
|
392 |
-
msgid "ex. Add New"
|
393 |
-
msgstr "ej. Añadir Nuevo"
|
394 |
-
|
395 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:57 Version\wck/wck-ctc.php:48
|
396 |
-
msgid "Add New Item"
|
397 |
-
msgstr "Crear Nuevo Artículo."
|
398 |
-
|
399 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:57
|
400 |
-
msgid "ex. Add New Book"
|
401 |
-
msgstr "ej Crear Nuevo Libro"
|
402 |
-
|
403 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:58 Version\wck/wck-ctc.php:46
|
404 |
-
msgid "Edit Item"
|
405 |
-
msgstr "Editar Artículo"
|
406 |
-
|
407 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:58
|
408 |
-
msgid "ex. Edit Book"
|
409 |
-
msgstr "ej. Editar Libro"
|
410 |
-
|
411 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:59
|
412 |
-
msgid "New Item"
|
413 |
-
msgstr "Nuevo Artículo"
|
414 |
-
|
415 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:59
|
416 |
-
msgid "ex. New Book"
|
417 |
-
msgstr "ej. Nuevo Libro"
|
418 |
-
|
419 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:60 Version\wck/wck-ctc.php:43
|
420 |
-
msgid "All Items"
|
421 |
-
msgstr "Todos los Artículos"
|
422 |
-
|
423 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:60
|
424 |
-
msgid "ex. All Books"
|
425 |
-
msgstr "ej. Todos los Libros"
|
426 |
-
|
427 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:61
|
428 |
-
msgid "View Items"
|
429 |
-
msgstr "Ver Artículos"
|
430 |
-
|
431 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:61
|
432 |
-
msgid "ex. View Books"
|
433 |
-
msgstr "ej. Ver Libros"
|
434 |
-
|
435 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:62 Version\wck/wck-ctc.php:41
|
436 |
-
msgid "Search Items"
|
437 |
-
msgstr "Buscar Artículos"
|
438 |
-
|
439 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:62
|
440 |
-
msgid "ex. Search Books"
|
441 |
-
msgstr "ej. Buscar Libros"
|
442 |
-
|
443 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:63
|
444 |
-
msgid "Not Found"
|
445 |
-
msgstr "No Encontrado"
|
446 |
-
|
447 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:63
|
448 |
-
msgid "ex. No Books Found"
|
449 |
-
msgstr "Ej. No hay libros encontrados"
|
450 |
-
|
451 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:64
|
452 |
-
msgid "Not Found In Trash"
|
453 |
-
msgstr "No se encuentran en la papelera"
|
454 |
-
|
455 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:64
|
456 |
-
msgid "ex. No Books found in Trash"
|
457 |
-
msgstr "ej. No se han encontrado Libros en la basura."
|
458 |
-
|
459 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:65 Version\wck/wck-ctc.php:45
|
460 |
-
msgid "Parent Item Colon"
|
461 |
-
msgstr "Colon Artículo Padre"
|
462 |
-
|
463 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:65
|
464 |
-
msgid ""
|
465 |
-
"the parent text. This string isn't used on non-hierarchical types. In "
|
466 |
-
"hierarchical ones the default is Parent Page "
|
467 |
-
msgstr ""
|
468 |
-
"el texto padre Esta cadena no se utiliza en los tipos no jerárquicos. En "
|
469 |
-
"los jerárquicos el valor predeterminado es la Página Padre"
|
470 |
-
|
471 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:66 Version\wck/wck-ctc.php:53
|
472 |
-
msgid "Menu Name"
|
473 |
-
msgstr "Nombre Menú"
|
474 |
-
|
475 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:68 Version\wck/wck-ctc.php:55
|
476 |
-
msgid "Public"
|
477 |
-
msgstr "Público"
|
478 |
-
|
479 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:68 Version\wck/wck-ctc.php:55
|
480 |
-
msgid ""
|
481 |
-
"Meta argument used to define default values for publicly_queriable, show_ui, "
|
482 |
-
"show_in_nav_menus and exclude_from_search"
|
483 |
-
msgstr ""
|
484 |
-
"Meta argumento utilizado para definir valores predeterminados para "
|
485 |
-
"publicly_queriable, show_ui, show_in_nav_menus y exclude_from_search"
|
486 |
-
|
487 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:69 Version\wck/wck-ctc.php:56
|
488 |
-
msgid "Show UI"
|
489 |
-
msgstr "Mostrar la interfaz de usuario"
|
490 |
-
|
491 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:69 Version\wck/wck-ctc.php:56
|
492 |
-
msgid "Whether to generate a default UI for managing this post type."
|
493 |
-
msgstr ""
|
494 |
-
"Si se debe generar una interfaz de usuario predeterminada para gestionar "
|
495 |
-
"este tipo de publicaciones."
|
496 |
-
|
497 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:70
|
498 |
-
msgid "Show In Nav Menus"
|
499 |
-
msgstr "Mostrar En Menús Nav"
|
500 |
-
|
501 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:70
|
502 |
-
msgid "Whether post_type is available for selection in navigation menus."
|
503 |
-
msgstr ""
|
504 |
-
"Si post_type está disponible para la selección en los menús de navegación."
|
505 |
-
|
506 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:71
|
507 |
-
msgid "Show In Menu"
|
508 |
-
msgstr "Mostrar En Menú"
|
509 |
-
|
510 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:71
|
511 |
-
msgid ""
|
512 |
-
"Whether to show the post type in the admin menu. show_ui must be true. "
|
513 |
-
"\"false\" - do not display in the admin menu, \"true\" - display as a top "
|
514 |
-
"level menu, \"some string\" - If an existing top level page such as \"tools."
|
515 |
-
"php\" or \"edit.php?post_type=page\", the post type will be placed as a sub "
|
516 |
-
"menu of that."
|
517 |
-
msgstr ""
|
518 |
-
"Si debe mostrar el tipo de publicación en el menú de administración. show_ui "
|
519 |
-
"debe ser cierto. \"false\" - no se muestra en el menú de administración, "
|
520 |
-
"\"true\" - pantalla como un menú de nivel superior, \"alguna cadena\" - Si "
|
521 |
-
"una página de nivel superior existente, como \"tools.php\" o \"edit.php? "
|
522 |
-
"post_type = page\", el tipo de publicación será colocado como un submenú de "
|
523 |
-
"eso."
|
524 |
-
|
525 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:72
|
526 |
-
msgid "Menu Position"
|
527 |
-
msgstr "Posición Menú"
|
528 |
-
|
529 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:72
|
530 |
-
msgid "The position in the menu order the post type should appear."
|
531 |
-
msgstr ""
|
532 |
-
"La posición en el orden de los menús en que el tipo publicación debería "
|
533 |
-
"aparecer."
|
534 |
-
|
535 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:73
|
536 |
-
msgid "Menu Icon"
|
537 |
-
msgstr "Icono Menú"
|
538 |
-
|
539 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:73
|
540 |
-
msgid "The url to the icon to be used for this menu."
|
541 |
-
msgstr "La url para el icono que se utilizará para este menú."
|
542 |
-
|
543 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:74
|
544 |
-
msgid "Capability Type"
|
545 |
-
msgstr "Tipo de Capacidad"
|
546 |
-
|
547 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:74
|
548 |
-
msgid "The string to use to build the read, edit, and delete capabilities."
|
549 |
-
msgstr ""
|
550 |
-
"La cadena que se utiliza para construir la lectura, editar y eliminar "
|
551 |
-
"capacidades."
|
552 |
-
|
553 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:75
|
554 |
-
msgid "Taxonomies"
|
555 |
-
msgstr "Taxonomías"
|
556 |
-
|
557 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:76
|
558 |
-
msgid "Rewrite"
|
559 |
-
msgstr "Reescribir"
|
560 |
-
|
561 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:76
|
562 |
-
msgid "Rewrite permalinks."
|
563 |
-
msgstr "Reescribir permalinks."
|
564 |
-
|
565 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:77
|
566 |
-
msgid "Rewrite Slug"
|
567 |
-
msgstr "Reescribir Slug"
|
568 |
-
|
569 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:77
|
570 |
-
msgid "Defaults to post type name."
|
571 |
-
msgstr "Predeterminados para el nombre del tipo de publicación."
|
572 |
-
|
573 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:83
|
574 |
-
msgid "Custom Post Type Creation"
|
575 |
-
msgstr "Creación personalizada Post Type"
|
576 |
-
|
577 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:108 Version\wck/wck-ctc.php:91
|
578 |
-
msgid "Add New "
|
579 |
-
msgstr "Añadir Nuevo"
|
580 |
-
|
581 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:109 Version\wck/wck-ctc.php:89
|
582 |
-
msgid "Edit "
|
583 |
-
msgstr "Editar"
|
584 |
-
|
585 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:110 Version\wck/wck-ctc.php:92
|
586 |
-
msgid "New "
|
587 |
-
msgstr "Nuevo"
|
588 |
-
|
589 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:111 Version\wck/wck-ctc.php:86
|
590 |
-
msgid "All "
|
591 |
-
msgstr "Todos"
|
592 |
-
|
593 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:112
|
594 |
-
msgid "View "
|
595 |
-
msgstr "Ver"
|
596 |
-
|
597 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:113 Version\wck/wck-ctc.php:84
|
598 |
-
msgid "Search "
|
599 |
-
msgstr "Buscar"
|
600 |
-
|
601 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:114 Version\wck/wck-cptc.php:115
|
602 |
-
msgid "No "
|
603 |
-
msgstr "No"
|
604 |
-
|
605 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:116
|
606 |
-
msgid "Parent Page"
|
607 |
-
msgstr "Página Padre"
|
608 |
-
|
609 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:169 Version\wck/wck-cptc.php:193
|
610 |
-
#: Version\wck/wck-ctc.php:134 Version\wck/wck-ctc.php:158
|
611 |
-
msgid "Show Advanced Label Options"
|
612 |
-
msgstr "Mostrar Opciones Avanzadas de Etiqueta"
|
613 |
-
|
614 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:169 Version\wck/wck-cptc.php:193
|
615 |
-
#: Version\wck/wck-ctc.php:134 Version\wck/wck-ctc.php:158
|
616 |
-
msgid "Hide Advanced Label Options"
|
617 |
-
msgstr "Esconder Opciones Avanzadas de Etiqueta"
|
618 |
-
|
619 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:181 Version\wck/wck-cptc.php:207
|
620 |
-
#: Version\wck/wck-cptc.php:236 Version\wck/wck-ctc.php:146
|
621 |
-
#: Version\wck/wck-ctc.php:172 Version\wck/wck-ctc.php:201
|
622 |
-
msgid "Show Advanced Options"
|
623 |
-
msgstr "Mostrar opciones avanzadas"
|
624 |
-
|
625 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:181 Version\wck/wck-cptc.php:207
|
626 |
-
#: Version\wck/wck-cptc.php:236 Version\wck/wck-ctc.php:146
|
627 |
-
#: Version\wck/wck-ctc.php:172 Version\wck/wck-ctc.php:201
|
628 |
-
msgid "Hide Advanced Options"
|
629 |
-
msgstr "Ocultar Opciones Avanzadas"
|
630 |
-
|
631 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:222 Version\wck/wck-ctc.php:187
|
632 |
-
msgid "Show Advanced Labels"
|
633 |
-
msgstr "Mostrar Etiquetas Avanzadas"
|
634 |
-
|
635 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:222 Version\wck/wck-ctc.php:187
|
636 |
-
msgid "Hide Advanced Labels"
|
637 |
-
msgstr "Ocultar Etiquetas Avanzadas"
|
638 |
-
|
639 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:283
|
640 |
-
msgid ""
|
641 |
-
"WCK Custom Post Type Creator allows you to easily create custom post types "
|
642 |
-
"for Wordpress without any programming knowledge.<br />Most of the common "
|
643 |
-
"options for creating a post type are displayed by default while the advanced "
|
644 |
-
"options and label are just one click away."
|
645 |
-
msgstr ""
|
646 |
-
"WCK Custom Post Type Creator te permite crear fácilmente los tipos de "
|
647 |
-
"correos personalizados para Wordpress y sin ningún conocimiento de "
|
648 |
-
"programación. <br/> La mayoría de las opciones comunes para la creación de "
|
649 |
-
"un puesto tipo se muestran de forma predeterminada, mientras que las "
|
650 |
-
"opciones avanzadas y la etiqueta están a sólo un clic de distancia."
|
651 |
-
|
652 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:288 Version\wck/wck-ctc.php:245
|
653 |
-
msgid "Labels"
|
654 |
-
msgstr "Etiquetas"
|
655 |
-
|
656 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:289
|
657 |
-
msgid ""
|
658 |
-
"For simplicity you are required to introduce only the Singular Label and "
|
659 |
-
"Plural Label from wchich the rest of the labels will be formed.<br />For a "
|
660 |
-
"more detailed control of the labels you just have to click the \"Show "
|
661 |
-
"Advanced Label Options\" link and all the availabel labels will be displayed."
|
662 |
-
msgstr ""
|
663 |
-
"Para simplicidad se requiere introducir sólo la etiqueta Singular y Plural "
|
664 |
-
"desde donde se formará el resto de las etiquetas. <br/> ¡Para un control más "
|
665 |
-
"detallado de las etiquetas, solo tienes que hacer clic en el enlace "
|
666 |
-
"\"Mostrar opciones avanzadas etiqueta\" y todas las etiquetas disponibles "
|
667 |
-
"serán mostradas."
|
668 |
-
|
669 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:294 Version\wck/wck-ctc.php:251
|
670 |
-
msgid "Advanced Options"
|
671 |
-
msgstr "Opciones avanzadas"
|
672 |
-
|
673 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:295
|
674 |
-
msgid ""
|
675 |
-
"The Advanced Options are set to the most common defaults for custom post "
|
676 |
-
"types. To display them click the \"Show Advanced Options\" link."
|
677 |
-
msgstr ""
|
678 |
-
"Las opciones avanzadas se establecen en los valores predeterminados más "
|
679 |
-
"comunes para este tipo de publicación personalizado. Para visualizarlos, "
|
680 |
-
"haga clic en el enlace \"Mostrar opciones avanzadas\"."
|
681 |
-
|
682 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:6
|
683 |
-
msgid "WCK Taxonomy Creator"
|
684 |
-
msgstr "WCK Taxonomy Creador"
|
685 |
-
|
686 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:7 Version\wck/wck-sas.php:95
|
687 |
-
msgid "Taxonomy Creator"
|
688 |
-
msgstr "Creador deTaxonomía"
|
689 |
-
|
690 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:35
|
691 |
-
msgid "Taxonomy"
|
692 |
-
msgstr "Taxonomía"
|
693 |
-
|
694 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:35
|
695 |
-
msgid ""
|
696 |
-
"(The name of the taxonomy. Name must not contain capital letters or spaces.)"
|
697 |
-
msgstr ""
|
698 |
-
"(El nombre de la taxonomía. El nombre no debe contener letras mayúsculas o "
|
699 |
-
"espacios.)"
|
700 |
-
|
701 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:36
|
702 |
-
msgid "ex. Writer"
|
703 |
-
msgstr "ej Escritor"
|
704 |
-
|
705 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:37
|
706 |
-
msgid "ex. Writers"
|
707 |
-
msgstr "ej. Escritores"
|
708 |
-
|
709 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:38
|
710 |
-
msgid "Attach to"
|
711 |
-
msgstr "Adjuntar a"
|
712 |
-
|
713 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:39
|
714 |
-
msgid ""
|
715 |
-
"Is this taxonomy hierarchical (have descendants) like categories or not "
|
716 |
-
"hierarchical like tags."
|
717 |
-
msgstr ""
|
718 |
-
"¿Es esta taxonomía jerárquica (tiene descendientes) como categorías o no "
|
719 |
-
"jerárquica como las etiquetas?"
|
720 |
-
|
721 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:41
|
722 |
-
msgid "ex. Search Writers"
|
723 |
-
msgstr "Ej. Buscar Escritores"
|
724 |
-
|
725 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:42
|
726 |
-
msgid "Popular Items"
|
727 |
-
msgstr "Artículos populares"
|
728 |
-
|
729 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:42
|
730 |
-
msgid "ex. Popular Writers"
|
731 |
-
msgstr "ej. Escritores populares"
|
732 |
-
|
733 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:43
|
734 |
-
msgid "ex. All Writers"
|
735 |
-
msgstr "ej. Todos los Escritores"
|
736 |
-
|
737 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:44
|
738 |
-
msgid "Parent Item"
|
739 |
-
msgstr "Artículo Padre"
|
740 |
-
|
741 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:44
|
742 |
-
msgid "ex. Parent Genre"
|
743 |
-
msgstr "ej. Género Padre"
|
744 |
-
|
745 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:45
|
746 |
-
msgid "ex. Parent Genre:"
|
747 |
-
msgstr "ej. Género Padre"
|
748 |
-
|
749 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:46
|
750 |
-
msgid "ex. Edit Writer"
|
751 |
-
msgstr "ej. Editar Escritor"
|
752 |
-
|
753 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:47
|
754 |
-
msgid "Update Item"
|
755 |
-
msgstr "Actualizar Artículo"
|
756 |
-
|
757 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:47
|
758 |
-
msgid "ex. Update Writer"
|
759 |
-
msgstr "ej. Actualizar Escritor"
|
760 |
-
|
761 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:48
|
762 |
-
msgid "ex. Add New Writer"
|
763 |
-
msgstr "ej. Añadir Nuevo Escritor"
|
764 |
-
|
765 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:49
|
766 |
-
msgid "New Item Name"
|
767 |
-
msgstr "Nuevo Nombre del elemento"
|
768 |
-
|
769 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:49
|
770 |
-
msgid "ex. New Writer Name"
|
771 |
-
msgstr "ej. Nuevo Nombre Escritor"
|
772 |
-
|
773 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:50
|
774 |
-
msgid "Separate Items With Commas"
|
775 |
-
msgstr "Separe el Nombre con comas"
|
776 |
-
|
777 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:50
|
778 |
-
msgid "ex. Separate writers with commas"
|
779 |
-
msgstr "ej. Separe Escritores con comas"
|
780 |
-
|
781 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:51
|
782 |
-
msgid "Add Or Remove Items"
|
783 |
-
msgstr "Añadir o eliminar elementos"
|
784 |
-
|
785 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:51
|
786 |
-
msgid "ex. Add or remove writers"
|
787 |
-
msgstr "ej. Añadir o eliminar escritores"
|
788 |
-
|
789 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:52
|
790 |
-
msgid "Choose From Most Used"
|
791 |
-
msgstr "Elegir de los más usados."
|
792 |
-
|
793 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:52
|
794 |
-
msgid "ex. Choose from the most used writers"
|
795 |
-
msgstr "ej Elija uno de los escritores más utilizados"
|
796 |
-
|
797 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:57
|
798 |
-
msgid "Show Tagcloud"
|
799 |
-
msgstr "Muestre Tagcloud"
|
800 |
-
|
801 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:57
|
802 |
-
msgid "Whether to allow the Tag Cloud widget to use this taxonomy."
|
803 |
-
msgstr "Si permite que el Tag widget de nube utilice esta taxonomía."
|
804 |
-
|
805 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:62
|
806 |
-
msgid "Custom Taxonomy Creation"
|
807 |
-
msgstr "Creación de Taxonomía Personalizada"
|
808 |
-
|
809 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:85
|
810 |
-
msgid "Popular "
|
811 |
-
msgstr "Popular"
|
812 |
-
|
813 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:87 Version\wck/wck-ctc.php:88
|
814 |
-
msgid "Parent "
|
815 |
-
msgstr "Padre"
|
816 |
-
|
817 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:90
|
818 |
-
msgid "Update "
|
819 |
-
msgstr "Actualizar"
|
820 |
-
|
821 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:93
|
822 |
-
msgid "Separate "
|
823 |
-
msgstr "Separada"
|
824 |
-
|
825 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:94
|
826 |
-
msgid "Add or remove "
|
827 |
-
msgstr "Agregar o quitar"
|
828 |
-
|
829 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:95
|
830 |
-
msgid "Choose from the most used "
|
831 |
-
msgstr "Elija entre los más utilizados"
|
832 |
-
|
833 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:240
|
834 |
-
msgid ""
|
835 |
-
"WCK Custom Taxonomy Creator allows you to easily create custom taxonomy for "
|
836 |
-
"Wordpress without any programming knowledge.<br />Most of the common options "
|
837 |
-
"for creating a taxonomy are displayed by default while the advanced and "
|
838 |
-
"label options are just one click away."
|
839 |
-
msgstr ""
|
840 |
-
"WCK Custom Taxonomy Creador le permite crear fácilmente taxonomía "
|
841 |
-
"personalizada para Wordpress sin ningún conocimientos de programación. <br /"
|
842 |
-
"> La mayoría de las opciones comunes para la creación de una taxonomía se "
|
843 |
-
"muestran por defecto, mientras que las opciones avanzadas y etiquetas están "
|
844 |
-
"a sólo un clic de distancia."
|
845 |
-
|
846 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:246
|
847 |
-
msgid ""
|
848 |
-
"For simplicity you are required to introduce only the Singular Label and "
|
849 |
-
"Plural Label from wchich the rest of the labels will be formed.<br />For a "
|
850 |
-
"more detailed control of the labels you just have to click the \"Show "
|
851 |
-
"Advanced Label Options\" link and all the availabel labels will be displayed"
|
852 |
-
msgstr ""
|
853 |
-
"Por simplicidad, usted está obligado a introducir sólo la etiqueta Singular "
|
854 |
-
"y Plural desde donde el resto de las etiquetas se formará. <br /> ¡Para un "
|
855 |
-
"control más detallado de las etiquetas, solo tienes que hacer clic en el "
|
856 |
-
"enlace \"Mostrar opciones avanzadas de etiquetas\" y todas las etiquetas "
|
857 |
-
"disponibles se mostrarán"
|
858 |
-
|
859 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:252
|
860 |
-
msgid ""
|
861 |
-
"The Advanced Options are set to the most common defaults for taxonomies. To "
|
862 |
-
"display them click the \"Show Advanced Options\" link."
|
863 |
-
msgstr ""
|
864 |
-
"Las opciones avanzadas están ajustadas a los valores predeterminados comunes "
|
865 |
-
"para las taxonomías. Para visualizarlos, haga clic en el enlace \"Mostrar "
|
866 |
-
"opciones avanzadas\"."
|
867 |
-
|
868 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:15
|
869 |
-
msgid "Start Here & General Settings"
|
870 |
-
msgstr "Comience aquí y Ajustes generales"
|
871 |
-
|
872 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:16
|
873 |
-
msgid "Start and Settings"
|
874 |
-
msgstr "Inicio y Configuración"
|
875 |
-
|
876 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:34
|
877 |
-
msgid "Serial Number"
|
878 |
-
msgstr "Número de serie"
|
879 |
-
|
880 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:34
|
881 |
-
msgid ""
|
882 |
-
"Please enter your serial number. For example: (e.g. WCKPRO-11-"
|
883 |
-
"SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
884 |
-
msgstr ""
|
885 |
-
"Introduzca su número de serie. Por ejemplo: (por ejemplo WCKPRO-11-"
|
886 |
-
"SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
887 |
-
|
888 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:40
|
889 |
-
msgid "Register Your Version"
|
890 |
-
msgstr "Registre su Versión"
|
891 |
-
|
892 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:67
|
893 |
-
#, php-format
|
894 |
-
msgid "Welcome to %s"
|
895 |
-
msgstr "Bienvenido a %s"
|
896 |
-
|
897 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:68
|
898 |
-
msgid ""
|
899 |
-
"WCK helps you to improve the usability of the sites you build, making them "
|
900 |
-
"manageable by your clients. Your very own repeater custom fields and groups, "
|
901 |
-
"custom post type and taxonomy creator with front-end posting."
|
902 |
-
msgstr ""
|
903 |
-
"WCK le ayuda a mejorar la usabilidad de los sitios que usted construye, "
|
904 |
-
"haciéndolos manejables por sus clientes. . Sus propios campos y grupos "
|
905 |
-
"personalizados repetidor, el tipo de publicación personalizada y creador de "
|
906 |
-
"taxonomía con fijación frontal"
|
907 |
-
|
908 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:69
|
909 |
-
#, php-format
|
910 |
-
msgid "Version %s"
|
911 |
-
msgstr "Versión %s"
|
912 |
-
|
913 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:83
|
914 |
-
msgid "Quick Start-Up Guide"
|
915 |
-
msgstr "Quía Rápida de Inicio"
|
916 |
-
|
917 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:88
|
918 |
-
msgid ""
|
919 |
-
"WordPress Creation Kit Pro has support for a wide list of custom fields: "
|
920 |
-
"WYSIWYG Editor, Upload Field, Date, User, Country, Text Input, Textarea, "
|
921 |
-
"Drop-Down, Select, Checkboxes, Radio Buttons"
|
922 |
-
msgstr ""
|
923 |
-
"WordPress Creación Kit Pro tiene soporte para una amplia lista de campos "
|
924 |
-
"personalizados: Editor WYSIWYG, Subi campo, Fecha , Usuario, país, entrada "
|
925 |
-
"de texto, Área de texto, desplegable, Seleccionar, casillas de verificación, "
|
926 |
-
"botones de radio"
|
927 |
-
|
928 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:89
|
929 |
-
msgid ""
|
930 |
-
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
931 |
-
"kit/custom-fields-creator/\" target=\"_blank\">here</a> about how to display "
|
932 |
-
"them in your templates."
|
933 |
-
msgstr ""
|
934 |
-
"Documentación de Access <a href = \"http://www.cozmoslabs.com/wordpress-"
|
935 |
-
"creation-kit/custom-fields-creator/ \"target=\"_blank\"> aquí </a> sobre "
|
936 |
-
"cómo mostrarlos en sus plantillas."
|
937 |
-
|
938 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:92
|
939 |
-
msgid "Create & manage all your custom content types"
|
940 |
-
msgstr "Crear y gestionar todos los tipos de contenido personalizado"
|
941 |
-
|
942 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:93
|
943 |
-
msgid ""
|
944 |
-
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
945 |
-
"kit/custom-post-type-creator/\" target=\"_blank\">here</a> about how to "
|
946 |
-
"display them in your templates."
|
947 |
-
msgstr ""
|
948 |
-
"Documentación de acceso<a href=\"http://www.cozmoslabs.com/ wordpress-"
|
949 |
-
"creation-kit/custom-post-type-creator/\"target=\" _blank\"> aquí </a> sobre "
|
950 |
-
"cómo mostrarlos en sus plantillas."
|
951 |
-
|
952 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:96
|
953 |
-
msgid "Create new taxonomies for filtering your content"
|
954 |
-
msgstr "Crear nuevas taxonomías para el filtrado de su contenido"
|
955 |
-
|
956 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:97
|
957 |
-
msgid ""
|
958 |
-
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
959 |
-
"kit/custom-taxonomy-creator/\" target=\"_blank\">here</a> about how to "
|
960 |
-
"display them in your templates."
|
961 |
-
msgstr ""
|
962 |
-
"Documentación de acceso a<a href=\"http://www.cozmoslabs.com/wordpress-"
|
963 |
-
"creation-kit/custom-taxonomy-creator/\" target=\"_blank\"> aquí </a> sobre "
|
964 |
-
"cómo mostrarlos en sus plantillas"
|
965 |
-
|
966 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:99
|
967 |
-
msgid "Front-End Posting (available in the Pro version)"
|
968 |
-
msgstr "Publicación Front-End (disponible en la versión Pro)"
|
969 |
-
|
970 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:100
|
971 |
-
msgid ""
|
972 |
-
"Create and edit posts/pages or custom posts directly from the front-end."
|
973 |
-
msgstr ""
|
974 |
-
"Crear y editar publicaciones / páginas o publicaciones personalizadas "
|
975 |
-
"directamente desde el front-end."
|
976 |
-
|
977 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:101
|
978 |
-
msgid "Available shortcodes:"
|
979 |
-
msgstr "Códigos cortos disponibles:"
|
980 |
-
|
981 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:103
|
982 |
-
msgid ""
|
983 |
-
"[fep form_name=\"front-end-post-name\"] - displayes your form in the front-"
|
984 |
-
"end"
|
985 |
-
msgstr ""
|
986 |
-
"[fep form_name=\"front-end-post-name\"] - muestra su formulario en el front-"
|
987 |
-
"end"
|
988 |
-
|
989 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:104
|
990 |
-
msgid ""
|
991 |
-
"[fep-dashboard] - the quick-dashboard allows: simple profile updates, "
|
992 |
-
"editing/deletion of posts, pages and custom post types."
|
993 |
-
msgstr ""
|
994 |
-
"[fep-dashboard] - el tablero rápido permite: actualizaciones de perfiles "
|
995 |
-
"simples, edición / borrado de publicaciones, páginas y tipos de publicación "
|
996 |
-
"personalizados"
|
997 |
-
|
998 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:105
|
999 |
-
msgid ""
|
1000 |
-
"[fep-lilo] - login/logout/register widget with the simple usage of a "
|
1001 |
-
"shortcode. Can be added in a page or text widget."
|
1002 |
-
msgstr ""
|
1003 |
-
"[fep-lilo] – widget login/logout/register con el simple uso de un shortcode. "
|
1004 |
-
"Se puede añadir en una página o widget de texto."
|
1005 |
-
|
1006 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:107
|
1007 |
-
msgid ""
|
1008 |
-
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
1009 |
-
"kit/frontend-posting/\" target=\"_blank\">here</a> about how to display them "
|
1010 |
-
"in your templates."
|
1011 |
-
msgstr ""
|
1012 |
-
"Documentación de Acceso <a href=\"http://www.cozmoslabs.com/wordpress-"
|
1013 |
-
"creation-kit/frontend-posting/\" target=\"_blank\"> aquí </a> sobre cómo "
|
1014 |
-
"mostrarlos en sus plantillas."
|
1015 |
-
|
1016 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:109
|
1017 |
-
msgid "Option Pages (available in the Pro version)"
|
1018 |
-
msgstr "Páginas de opción (disponible en la versión Pro)"
|
1019 |
-
|
1020 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:110
|
1021 |
-
msgid ""
|
1022 |
-
"The Options Page Creator Allows you to create a new menu item called "
|
1023 |
-
"\"Options\"(for example) which can hold advanced custom field groups. "
|
1024 |
-
"Perfect for theme options or a simple UI for your custom plugin (like a "
|
1025 |
-
"simple testimonials section in the front-end)."
|
1026 |
-
msgstr ""
|
1027 |
-
"El Options Page Creator Permite crear un nuevo elemento del menú llamado "
|
1028 |
-
"\"Opciones\" (por ejemplo) que puede albergar grupos de campos "
|
1029 |
-
"personalizados avanzados. Perfecto para las opciones del tema o una interfaz "
|
1030 |
-
"de usuario simple para su complemento personalizado (como una sección de "
|
1031 |
-
"testimonios simple en el front-end)."
|
1032 |
-
|
1033 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:137
|
1034 |
-
msgid ""
|
1035 |
-
"Please enter your serial number to get access to automatic updates. If you "
|
1036 |
-
"do not have one, you can <a href=\"http://www.cozmoslabs.com/wordpress-"
|
1037 |
-
"creation-kit/\" target=\"_blank\">Get One Here</a>."
|
1038 |
-
msgstr ""
|
1039 |
-
"Introduzca, por favor su número de serie para tener acceso a las "
|
1040 |
-
"actualizaciones automáticas. Si usted no tiene uno, puede <a href=\"http://"
|
1041 |
-
"www.cozmoslabs.com/wordpress-creation-kit/\" target=\"_blank\"> conseguir "
|
1042 |
-
"uno aquí </a>."
|
1043 |
-
|
1044 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:139
|
1045 |
-
msgid "Oups! Our serial verification server is down. Please try again later."
|
1046 |
-
msgstr ""
|
1047 |
-
"¡Ups ! Nuestro servidor de verificación de serie se encuentra abajo. Por "
|
1048 |
-
"favor, inténtelo de nuevo más tarde."
|
1049 |
-
|
1050 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:141
|
1051 |
-
msgid ""
|
1052 |
-
"Oups! It seems the serial number you entered was not found in our database. "
|
1053 |
-
"To find out what's your serial number log-in to <a href=\"http://www."
|
1054 |
-
"cozmoslabs.com/account/\" target=\"_blank\">your account page</a> over at "
|
1055 |
-
"Cozmoslabs.com"
|
1056 |
-
msgstr ""
|
1057 |
-
"¡Ups! Al parecer, el número de serie que ha puesto no se encuentra en "
|
1058 |
-
"nuestra base de datos. Para saber cuál es el número de serie ingrese a <a "
|
1059 |
-
"href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"> página de su "
|
1060 |
-
"cuenta </a> sobre al Cozmoslabs.com"
|
1061 |
-
|
1062 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:143
|
1063 |
-
msgid ""
|
1064 |
-
"Wohoo! Your serial number is valid and you have access to automatic updates."
|
1065 |
-
msgstr ""
|
1066 |
-
"Wohoo! Su número de serie es válido y tiene acceso a las actualizaciones "
|
1067 |
-
"automáticas."
|
1068 |
-
|
1069 |
-
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:145
|
1070 |
-
msgid ""
|
1071 |
-
"It seems your serial number has <strong>expired</strong>. You'll continue to "
|
1072 |
-
"get automatic updates if update your serial number for another year from <a "
|
1073 |
-
"href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"><strong>your "
|
1074 |
-
"account page</strong></a>."
|
1075 |
-
msgstr ""
|
1076 |
-
"Parece que su número de serie <strong> ha expirado </ strong>. Tendrá que "
|
1077 |
-
"continuar para obtener actualizaciones automáticas si actualizar su número "
|
1078 |
-
"de serie para otro año de <a href=\"http://www.cozmoslabs.com/account/\" "
|
1079 |
-
"target=\"_blank\"> <strong> su página de cuenta </ strong> </a>."
|
1080 |
-
|
1081 |
-
#: d:\!!!!!!!!!\Free
|
1082 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:282
|
1083 |
-
msgid "Add Entry"
|
1084 |
-
msgstr "Añadir entrada"
|
1085 |
-
|
1086 |
-
#: d:\!!!!!!!!!\Free
|
1087 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:332
|
1088 |
-
msgid "Save Changes"
|
1089 |
-
msgstr "Guardar cambios"
|
1090 |
-
|
1091 |
-
#: d:\!!!!!!!!!\Free
|
1092 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:333
|
1093 |
-
msgid "Cancel"
|
1094 |
-
msgstr "Cancelar"
|
1095 |
-
|
1096 |
-
#: d:\!!!!!!!!!\Free
|
1097 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1098 |
-
msgid "Content"
|
1099 |
-
msgstr "Contenido"
|
1100 |
-
|
1101 |
-
#: d:\!!!!!!!!!\Free
|
1102 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1103 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1104 |
-
msgid "Edit"
|
1105 |
-
msgstr "Editar"
|
1106 |
-
|
1107 |
-
#: d:\!!!!!!!!!\Free
|
1108 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1109 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1110 |
-
msgid "Delete"
|
1111 |
-
msgstr "Borrar"
|
1112 |
-
|
1113 |
-
#: d:\!!!!!!!!!\Free
|
1114 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1115 |
-
msgid "Edit this item"
|
1116 |
-
msgstr "Editar este artículo"
|
1117 |
-
|
1118 |
-
#: d:\!!!!!!!!!\Free
|
1119 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1120 |
-
msgid "Delete this item"
|
1121 |
-
msgstr "Borrar este artículo"
|
1122 |
-
|
1123 |
-
#: d:\!!!!!!!!!\Free
|
1124 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:506
|
1125 |
-
msgid "Please enter a value for the required field "
|
1126 |
-
msgstr "Por favor, introduzca un valor para el campo requerido"
|
1127 |
-
|
1128 |
-
#: d:\!!!!!!!!!\Free
|
1129 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:788
|
1130 |
-
msgid "Select File"
|
1131 |
-
msgstr "Seleccione Archivo"
|
1132 |
-
|
1133 |
-
#: d:\!!!!!!!!!\Free
|
1134 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:828
|
1135 |
-
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:28
|
1136 |
-
msgid "Remove"
|
1137 |
-
msgstr "Eliminar"
|
1138 |
-
|
1139 |
-
#: d:\!!!!!!!!!\Free
|
1140 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:866
|
1141 |
-
msgid "Syncronize WCK"
|
1142 |
-
msgstr "Syncronizar WCK"
|
1143 |
-
|
1144 |
-
#: d:\!!!!!!!!!\Free
|
1145 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:878
|
1146 |
-
msgid "Syncronize WCK Translation"
|
1147 |
-
msgstr "Traducción Syncronizar WCK"
|
1148 |
-
|
1149 |
-
#: d:\!!!!!!!!!\Free
|
1150 |
-
#: Version\wck/wordpress-creation-kit-api/fields/select.php:11
|
1151 |
-
msgid "...Chose"
|
1152 |
-
msgstr "... Elija"
|
1153 |
-
|
1154 |
-
#: d:\!!!!!!!!!\Free
|
1155 |
-
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:40
|
1156 |
-
msgid "Upload "
|
1157 |
-
msgstr "Subir"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WCK\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-13 16:28+0200\n"
|
6 |
+
"PO-Revision-Date: 2014-01-24 11:10+0100\n"
|
7 |
+
"Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
+
"X-Poedit-SearchPath-0: d:\\!!!!!!!!!\\Free Version\\wck\n"
|
16 |
+
|
17 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:26
|
18 |
+
msgid "Add New Meta Box"
|
19 |
+
msgstr "Añadir nueva Meta Box"
|
20 |
+
|
21 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:27
|
22 |
+
msgid "Edit Meta Box"
|
23 |
+
msgstr "Editar Meta Box"
|
24 |
+
|
25 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:28
|
26 |
+
msgid "New Meta Box"
|
27 |
+
msgstr "Nueva Meta Box"
|
28 |
+
|
29 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:29 Version\wck/wck-sas.php:87
|
30 |
+
msgid "Custom Fields Creator"
|
31 |
+
msgstr "Creador de Campos Personalizados"
|
32 |
+
|
33 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:30
|
34 |
+
msgid "View Meta Box"
|
35 |
+
msgstr "Ver Meta Box"
|
36 |
+
|
37 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:31
|
38 |
+
msgid "Search Meta Boxes"
|
39 |
+
msgstr "Buscar Meta Boxes"
|
40 |
+
|
41 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:32
|
42 |
+
msgid "No Meta Boxes found"
|
43 |
+
msgstr "No se encontraron Meta Boxes"
|
44 |
+
|
45 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:33
|
46 |
+
msgid "No Meta Boxes found in Trash"
|
47 |
+
msgstr "No se encontraron Meta Boxes en la basura"
|
48 |
+
|
49 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:35
|
50 |
+
msgid "Custom Meta Boxes"
|
51 |
+
msgstr "Meta Boxes personalizados"
|
52 |
+
|
53 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:84
|
54 |
+
msgid "Meta name"
|
55 |
+
msgstr "Nombre Meta"
|
56 |
+
|
57 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:84
|
58 |
+
msgid ""
|
59 |
+
"The name of the meta field. It is the name by which you will query the data "
|
60 |
+
"in the frontend. Must be unique, only lowercase letters, no spaces and no "
|
61 |
+
"special characters."
|
62 |
+
msgstr ""
|
63 |
+
"El nombre del campo de metadatos. Es el nombre con el que podrás consultar "
|
64 |
+
"los datos en el frontend. Debe ser único, sólo letras minúsculas, sin "
|
65 |
+
"espacios ni caracteres especiales."
|
66 |
+
|
67 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:85 Version\wck/wck-cfc.php:442
|
68 |
+
msgid "Post Type"
|
69 |
+
msgstr "Tipo de Publicación"
|
70 |
+
|
71 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:85
|
72 |
+
msgid "What post type the meta box should be attached to"
|
73 |
+
msgstr "A qué tipo de publicación debe adjuntarse el Meta Box"
|
74 |
+
|
75 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:86
|
76 |
+
msgid "Repeater"
|
77 |
+
msgstr "Repetidor"
|
78 |
+
|
79 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:86
|
80 |
+
msgid ""
|
81 |
+
"Whether the box supports just one entry or if it is a repeater field. By "
|
82 |
+
"default it is a single field."
|
83 |
+
msgstr ""
|
84 |
+
"Si el cuadro es compatible con una sola entrada o si se trata de un campo "
|
85 |
+
"repetidor. Por defecto es un solo campo."
|
86 |
+
|
87 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:87
|
88 |
+
msgid "Sortable"
|
89 |
+
msgstr "Ordenable"
|
90 |
+
|
91 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:87
|
92 |
+
msgid ""
|
93 |
+
"Whether the entries are sortable or not. Thsi is valid for repeater fields."
|
94 |
+
msgstr ""
|
95 |
+
"Si las entradas se pueden ordenar o no. Esto es válido para los campos de "
|
96 |
+
"repetidores."
|
97 |
+
|
98 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:88
|
99 |
+
msgid "Post ID"
|
100 |
+
msgstr "Identificación de la publicación"
|
101 |
+
|
102 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:88
|
103 |
+
msgid "ID of a post on which the meta box should appear."
|
104 |
+
msgstr "Identificación de una publicación en la que debe aparecer el Meta Box."
|
105 |
+
|
106 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:92 Version\wck/wck-cfc.php:443
|
107 |
+
msgid "Page Template"
|
108 |
+
msgstr "Plantilla de Página"
|
109 |
+
|
110 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:92
|
111 |
+
msgid ""
|
112 |
+
"If post type is \"page\" you can further select a page templete. The meta "
|
113 |
+
"box will only appear on the page that has that selected page template."
|
114 |
+
msgstr ""
|
115 |
+
"Si el tipo de publicación es \"página\" se puede seleccionar además un "
|
116 |
+
"templete de página. El Meta Box solo se mostrará en la página que tiene esa "
|
117 |
+
"plantilla de página seleccionada."
|
118 |
+
|
119 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:97 Version\wck/wck-cfc.php:536
|
120 |
+
msgid "Meta Box Arguments"
|
121 |
+
msgstr "Argumentos Meta Box"
|
122 |
+
|
123 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:114
|
124 |
+
msgid "Field Title"
|
125 |
+
msgstr "Título Campo"
|
126 |
+
|
127 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:114
|
128 |
+
msgid "Title of the field. A slug will automatically be generated."
|
129 |
+
msgstr "Título del Campo. Automáticamente se genera un slug."
|
130 |
+
|
131 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:115
|
132 |
+
msgid "Field Type"
|
133 |
+
msgstr "Tipo de Campo"
|
134 |
+
|
135 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:115
|
136 |
+
msgid "The field type"
|
137 |
+
msgstr "El tipo de campo"
|
138 |
+
|
139 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:116 Version\wck/wck-cptc.php:48
|
140 |
+
msgid "Description"
|
141 |
+
msgstr "Descripción"
|
142 |
+
|
143 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:117
|
144 |
+
msgid "Required"
|
145 |
+
msgstr "Requerido"
|
146 |
+
|
147 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:117
|
148 |
+
msgid "Whether the field is required or not"
|
149 |
+
msgstr "Si el campo es obligatorio o no"
|
150 |
+
|
151 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:118
|
152 |
+
msgid "Default Value"
|
153 |
+
msgstr "Valor predeterminado"
|
154 |
+
|
155 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:118
|
156 |
+
msgid ""
|
157 |
+
"Default value of the field. For Checkboxes if there are multiple values "
|
158 |
+
"separete them with a \",\""
|
159 |
+
msgstr ""
|
160 |
+
"Valor predeterminado del campo. Para Casillas de verificación, si hay "
|
161 |
+
"múltiples valores separarlas con un \",\""
|
162 |
+
|
163 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:119
|
164 |
+
msgid "Options"
|
165 |
+
msgstr "Opciones"
|
166 |
+
|
167 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:119
|
168 |
+
msgid ""
|
169 |
+
"Options for field types \"select\", \"checkbox\" and \"radio\". For multiple "
|
170 |
+
"options separete them with a \",\". You can use the following structure if "
|
171 |
+
"you want the label to be different from the value: %LabelOne%valueone,"
|
172 |
+
"%LabelTwo%valuetwo,%LabelThree%valuethree"
|
173 |
+
msgstr ""
|
174 |
+
"Opciones de tipos de campo \"seleccionar\", \"casilla\" y \" radio\". Para "
|
175 |
+
"múltiples opciones de ellas separarlas con un \",\". Puede utilizar la "
|
176 |
+
"siguiente estructura, si desea que la etiqueta sea diferente del valor: "
|
177 |
+
"%LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree"
|
178 |
+
|
179 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:120
|
180 |
+
msgid "Attach upload to post"
|
181 |
+
msgstr "Adjuntar carga para publicación"
|
182 |
+
|
183 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:120
|
184 |
+
msgid "Whether or not the uploads should be attached to the post"
|
185 |
+
msgstr "Si los archivos a subir deben o no estar adjuntos a la publicación"
|
186 |
+
|
187 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:127 Version\wck/wck-cfc.php:542
|
188 |
+
msgid "Meta Box Fields"
|
189 |
+
msgstr "Campos Meta Box"
|
190 |
+
|
191 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:140
|
192 |
+
msgid "Enter below the arguments for the meta box."
|
193 |
+
msgstr "Escriba aquí los argumentos para la Meta Box"
|
194 |
+
|
195 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:220
|
196 |
+
msgid "Slug:"
|
197 |
+
msgstr "Slug:"
|
198 |
+
|
199 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:220
|
200 |
+
msgid ""
|
201 |
+
"(Note:changing the slug when you already have a lot of existing entries may "
|
202 |
+
"result in unexpected behavior.)"
|
203 |
+
msgstr ""
|
204 |
+
"(Nota: cambiar el slug cuando ya tiene una gran cantidad de entradas "
|
205 |
+
"existentes puede provocar un comportamiento inesperado)"
|
206 |
+
|
207 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:355
|
208 |
+
msgid "Choose a different Meta Name as this one contains spaces\n"
|
209 |
+
msgstr "Elija un nombre diferente Meta pues éste contiene espacios\n"
|
210 |
+
|
211 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:357
|
212 |
+
msgid "Choose a different Meta Name as this one already exists\n"
|
213 |
+
msgstr "Elija un nombre diferente Meta pues ya existe éste\n"
|
214 |
+
|
215 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:441
|
216 |
+
msgid "Id"
|
217 |
+
msgstr "Id"
|
218 |
+
|
219 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:506 Version\wck/wck-cptc.php:257
|
220 |
+
#: Version\wck/wck-ctc.php:215 Version\wck/wck.php:38
|
221 |
+
msgid "Wordpress Creation Kit"
|
222 |
+
msgstr "Wordpress Creación Kit"
|
223 |
+
|
224 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:530 Version\wck/wck-cptc.php:282
|
225 |
+
#: Version\wck/wck-ctc.php:239
|
226 |
+
msgid "Overview"
|
227 |
+
msgstr "Descripción general"
|
228 |
+
|
229 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:531
|
230 |
+
msgid ""
|
231 |
+
"WCK Custom Fields Creator allows you to easily create custom meta boxes for "
|
232 |
+
"Wordpress without any programming knowledge."
|
233 |
+
msgstr ""
|
234 |
+
"WCK Custom Fields Creator le permite crear fácilmente Meta Boxes para "
|
235 |
+
"Wordpress sin ningún conocimiento de programación."
|
236 |
+
|
237 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:537
|
238 |
+
msgid ""
|
239 |
+
"Define here the rules for the meta box. This rules are used to set up where "
|
240 |
+
"the meta box will appear, it's type and also the meta key name stored in the "
|
241 |
+
"database. The name of the entry (Enter title here) will be used as the meta "
|
242 |
+
"box title."
|
243 |
+
msgstr ""
|
244 |
+
"Defina aquí las reglas para la meta box. Estas reglas se usan para "
|
245 |
+
"establecer donde aparecerá el Meta Box, su tipo y también el nombre de clave "
|
246 |
+
"meta almacenada en la base de datos. El nombre de la entrada (Introduzca el "
|
247 |
+
"título aquí) será utilizado como el título del Meta Box."
|
248 |
+
|
249 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:543
|
250 |
+
msgid ""
|
251 |
+
"Define here the fields contained in the meta box. From \"Field Title\" a "
|
252 |
+
"slug will be automatically generated and you will use this slug to display "
|
253 |
+
"the data in the frontend."
|
254 |
+
msgstr ""
|
255 |
+
"Defina aquí los campos contenidos en la caja de meta. . Desde \"Título de "
|
256 |
+
"Campo\" un slug se generará automáticamente y usted usará este slug para "
|
257 |
+
"mostrar los datos en el frontend."
|
258 |
+
|
259 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:548
|
260 |
+
msgid "CFC Frontend Example"
|
261 |
+
msgstr "Ejemplo de Frontend CFC"
|
262 |
+
|
263 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
264 |
+
msgid ""
|
265 |
+
"Let's consider we have a meta box with the following arguments:<br /> - Meta "
|
266 |
+
"name: books <br /> - Post Type: post <br />And we also have two fields "
|
267 |
+
"deffined:<br /> - A text field with the Field Title: Book name <br /> - And "
|
268 |
+
"another text field with the Field Title: Author name "
|
269 |
+
msgstr ""
|
270 |
+
"Consideremos que tenemos una meta box con los siguientes argumentos: <br /> "
|
271 |
+
"- Nombre Meta: libros <br /> - Tipo de Publicación: publicación <br /> Y "
|
272 |
+
"también tenemos dos campos definidos: <br /> - Otro campo de texto con el "
|
273 |
+
"Título de Campo: Nombre del Libro <br /> - Y otro campo de texto con el "
|
274 |
+
"título del campo : Nombre del autor"
|
275 |
+
|
276 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
277 |
+
msgid ""
|
278 |
+
"You will notice that slugs will automatically be created for the two text "
|
279 |
+
"fields. For \"Book name\" the slug will be \"book-name\" and for \"Author "
|
280 |
+
"name\" the slug will be \"author-name\""
|
281 |
+
msgstr ""
|
282 |
+
"Usted se dará cuenta de que los slugs se crearán automáticamente para los "
|
283 |
+
"dos campos de texto. Para \"Book name\" el slug será \"book-name \" y para "
|
284 |
+
"\"Nombre de autor\" el slug será \"author-name\""
|
285 |
+
|
286 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
287 |
+
msgid ""
|
288 |
+
"Let's see what the code for displaying the meta box values in single.php of "
|
289 |
+
"your theme would be:"
|
290 |
+
msgstr ""
|
291 |
+
"Vamos a ver cuál es el código para mostrar los valores del Meta Box en una "
|
292 |
+
"sola . php de su tema:"
|
293 |
+
|
294 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:549
|
295 |
+
msgid ""
|
296 |
+
"So as you can see the Meta Name \"books\" is used as the $key parameter of "
|
297 |
+
"the funtion <a href=\"http://codex.wordpress.org/Function_Reference/"
|
298 |
+
"get_post_meta\" target=\"_blank\">get_post_meta()</a> and the slugs of the "
|
299 |
+
"text fields are used as keys for the resulting array. Basically CFC stores "
|
300 |
+
"the entries as post meta in a multidimensioanl array. In our case the array "
|
301 |
+
"would be: <br /><pre>array( array( \"book-name\" => \"The Hitchhiker's Guide "
|
302 |
+
"To The Galaxy\", \"author-name\" => \"Douglas Adams\" ), array( \"book-name"
|
303 |
+
"\" => \"Ender's Game\", \"author-name\" => \"Orson Scott Card\" ) );</pre> "
|
304 |
+
"This is true even for single entries."
|
305 |
+
msgstr ""
|
306 |
+
"Así como usted puede ver el Meta Nombre \"libros\" se utiliza como parámetro "
|
307 |
+
"$ clave de la función <a href=\"http://codex.wordpress.org/"
|
308 |
+
"Function_Reference/get_post_meta\" target=\"_blank\">get_post_meta()</a> y "
|
309 |
+
"los slugs de los campos de texto se utilizan como claves para la matriz "
|
310 |
+
"resultante. Básicamente CFC almacena las entradas como post meta en una "
|
311 |
+
"matriz multidimensional. En nuestro caso, la matriz sería: <br /><pre>array"
|
312 |
+
"( array( \"book-name\" => \"The Hitchhiker's Guide To The Galaxy\", \"author-"
|
313 |
+
"name\" => \"Douglas Adams\" ), array( \"book-name\" => \"Ender's Game\", "
|
314 |
+
"\"author-name\" => \"Orson Scott Card\" ) );</pre> Esto es cierto incluso "
|
315 |
+
"para entradas individuales"
|
316 |
+
|
317 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cfc.php:577
|
318 |
+
msgid "Metabox updated."
|
319 |
+
msgstr "Metabox actualizada."
|
320 |
+
|
321 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:6
|
322 |
+
msgid "WCK Post Type Creator"
|
323 |
+
msgstr "WCK Post Type Creator"
|
324 |
+
|
325 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:7 Version\wck/wck-sas.php:91
|
326 |
+
msgid "Post Type Creator"
|
327 |
+
msgstr "Post Type Creator"
|
328 |
+
|
329 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:47
|
330 |
+
msgid "Post type"
|
331 |
+
msgstr "Post type"
|
332 |
+
|
333 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:47
|
334 |
+
msgid ""
|
335 |
+
"(max. 20 characters, can not contain capital letters, hyphens, or spaces)"
|
336 |
+
msgstr ""
|
337 |
+
"(máx. 20 caracteres, no puede contener letras mayúsculas, guiones, ni "
|
338 |
+
"espacios)"
|
339 |
+
|
340 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:48
|
341 |
+
msgid "A short descriptive summary of what the post type is."
|
342 |
+
msgstr "Un resumen descriptivo debajo de lo que el tipo de publicación es."
|
343 |
+
|
344 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:49 Version\wck/wck-ctc.php:36
|
345 |
+
msgid "Singular Label"
|
346 |
+
msgstr "Etiqueta Individual"
|
347 |
+
|
348 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:49
|
349 |
+
msgid "ex. Book"
|
350 |
+
msgstr "ej. Libro"
|
351 |
+
|
352 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:50 Version\wck/wck-ctc.php:37
|
353 |
+
msgid "Plural Label"
|
354 |
+
msgstr "Etiqueta Plural"
|
355 |
+
|
356 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:50
|
357 |
+
msgid "ex. Books"
|
358 |
+
msgstr "ej. Libros"
|
359 |
+
|
360 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:51 Version\wck/wck-ctc.php:39
|
361 |
+
msgid "Hierarchical"
|
362 |
+
msgstr "Jerárquica"
|
363 |
+
|
364 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:51
|
365 |
+
msgid "Whether the post type is hierarchical. Allows Parent to be specified."
|
366 |
+
msgstr ""
|
367 |
+
"Si el tipo de la publicación es jerárquico. Permite que los padres se "
|
368 |
+
"determinen."
|
369 |
+
|
370 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:52
|
371 |
+
msgid "Has Archive"
|
372 |
+
msgstr "Tiene archivo"
|
373 |
+
|
374 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:52
|
375 |
+
msgid ""
|
376 |
+
"Enables post type archives. Will use string as archive slug. Will generate "
|
377 |
+
"the proper rewrite rules if rewrite is enabled."
|
378 |
+
msgstr ""
|
379 |
+
"Permite archivos de tipo de publicación. Utilizará cadena como slug de "
|
380 |
+
"archivo. Generará las reglas de reescritura adecuadas si reescritura está "
|
381 |
+
"habilitada."
|
382 |
+
|
383 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:53
|
384 |
+
msgid "Supports"
|
385 |
+
msgstr "Soporta"
|
386 |
+
|
387 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:56
|
388 |
+
msgid "Add New"
|
389 |
+
msgstr "Añadir Nuevo"
|
390 |
+
|
391 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:56
|
392 |
+
msgid "ex. Add New"
|
393 |
+
msgstr "ej. Añadir Nuevo"
|
394 |
+
|
395 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:57 Version\wck/wck-ctc.php:48
|
396 |
+
msgid "Add New Item"
|
397 |
+
msgstr "Crear Nuevo Artículo."
|
398 |
+
|
399 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:57
|
400 |
+
msgid "ex. Add New Book"
|
401 |
+
msgstr "ej Crear Nuevo Libro"
|
402 |
+
|
403 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:58 Version\wck/wck-ctc.php:46
|
404 |
+
msgid "Edit Item"
|
405 |
+
msgstr "Editar Artículo"
|
406 |
+
|
407 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:58
|
408 |
+
msgid "ex. Edit Book"
|
409 |
+
msgstr "ej. Editar Libro"
|
410 |
+
|
411 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:59
|
412 |
+
msgid "New Item"
|
413 |
+
msgstr "Nuevo Artículo"
|
414 |
+
|
415 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:59
|
416 |
+
msgid "ex. New Book"
|
417 |
+
msgstr "ej. Nuevo Libro"
|
418 |
+
|
419 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:60 Version\wck/wck-ctc.php:43
|
420 |
+
msgid "All Items"
|
421 |
+
msgstr "Todos los Artículos"
|
422 |
+
|
423 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:60
|
424 |
+
msgid "ex. All Books"
|
425 |
+
msgstr "ej. Todos los Libros"
|
426 |
+
|
427 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:61
|
428 |
+
msgid "View Items"
|
429 |
+
msgstr "Ver Artículos"
|
430 |
+
|
431 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:61
|
432 |
+
msgid "ex. View Books"
|
433 |
+
msgstr "ej. Ver Libros"
|
434 |
+
|
435 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:62 Version\wck/wck-ctc.php:41
|
436 |
+
msgid "Search Items"
|
437 |
+
msgstr "Buscar Artículos"
|
438 |
+
|
439 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:62
|
440 |
+
msgid "ex. Search Books"
|
441 |
+
msgstr "ej. Buscar Libros"
|
442 |
+
|
443 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:63
|
444 |
+
msgid "Not Found"
|
445 |
+
msgstr "No Encontrado"
|
446 |
+
|
447 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:63
|
448 |
+
msgid "ex. No Books Found"
|
449 |
+
msgstr "Ej. No hay libros encontrados"
|
450 |
+
|
451 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:64
|
452 |
+
msgid "Not Found In Trash"
|
453 |
+
msgstr "No se encuentran en la papelera"
|
454 |
+
|
455 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:64
|
456 |
+
msgid "ex. No Books found in Trash"
|
457 |
+
msgstr "ej. No se han encontrado Libros en la basura."
|
458 |
+
|
459 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:65 Version\wck/wck-ctc.php:45
|
460 |
+
msgid "Parent Item Colon"
|
461 |
+
msgstr "Colon Artículo Padre"
|
462 |
+
|
463 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:65
|
464 |
+
msgid ""
|
465 |
+
"the parent text. This string isn't used on non-hierarchical types. In "
|
466 |
+
"hierarchical ones the default is Parent Page "
|
467 |
+
msgstr ""
|
468 |
+
"el texto padre Esta cadena no se utiliza en los tipos no jerárquicos. En "
|
469 |
+
"los jerárquicos el valor predeterminado es la Página Padre"
|
470 |
+
|
471 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:66 Version\wck/wck-ctc.php:53
|
472 |
+
msgid "Menu Name"
|
473 |
+
msgstr "Nombre Menú"
|
474 |
+
|
475 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:68 Version\wck/wck-ctc.php:55
|
476 |
+
msgid "Public"
|
477 |
+
msgstr "Público"
|
478 |
+
|
479 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:68 Version\wck/wck-ctc.php:55
|
480 |
+
msgid ""
|
481 |
+
"Meta argument used to define default values for publicly_queriable, show_ui, "
|
482 |
+
"show_in_nav_menus and exclude_from_search"
|
483 |
+
msgstr ""
|
484 |
+
"Meta argumento utilizado para definir valores predeterminados para "
|
485 |
+
"publicly_queriable, show_ui, show_in_nav_menus y exclude_from_search"
|
486 |
+
|
487 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:69 Version\wck/wck-ctc.php:56
|
488 |
+
msgid "Show UI"
|
489 |
+
msgstr "Mostrar la interfaz de usuario"
|
490 |
+
|
491 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:69 Version\wck/wck-ctc.php:56
|
492 |
+
msgid "Whether to generate a default UI for managing this post type."
|
493 |
+
msgstr ""
|
494 |
+
"Si se debe generar una interfaz de usuario predeterminada para gestionar "
|
495 |
+
"este tipo de publicaciones."
|
496 |
+
|
497 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:70
|
498 |
+
msgid "Show In Nav Menus"
|
499 |
+
msgstr "Mostrar En Menús Nav"
|
500 |
+
|
501 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:70
|
502 |
+
msgid "Whether post_type is available for selection in navigation menus."
|
503 |
+
msgstr ""
|
504 |
+
"Si post_type está disponible para la selección en los menús de navegación."
|
505 |
+
|
506 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:71
|
507 |
+
msgid "Show In Menu"
|
508 |
+
msgstr "Mostrar En Menú"
|
509 |
+
|
510 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:71
|
511 |
+
msgid ""
|
512 |
+
"Whether to show the post type in the admin menu. show_ui must be true. "
|
513 |
+
"\"false\" - do not display in the admin menu, \"true\" - display as a top "
|
514 |
+
"level menu, \"some string\" - If an existing top level page such as \"tools."
|
515 |
+
"php\" or \"edit.php?post_type=page\", the post type will be placed as a sub "
|
516 |
+
"menu of that."
|
517 |
+
msgstr ""
|
518 |
+
"Si debe mostrar el tipo de publicación en el menú de administración. show_ui "
|
519 |
+
"debe ser cierto. \"false\" - no se muestra en el menú de administración, "
|
520 |
+
"\"true\" - pantalla como un menú de nivel superior, \"alguna cadena\" - Si "
|
521 |
+
"una página de nivel superior existente, como \"tools.php\" o \"edit.php? "
|
522 |
+
"post_type = page\", el tipo de publicación será colocado como un submenú de "
|
523 |
+
"eso."
|
524 |
+
|
525 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:72
|
526 |
+
msgid "Menu Position"
|
527 |
+
msgstr "Posición Menú"
|
528 |
+
|
529 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:72
|
530 |
+
msgid "The position in the menu order the post type should appear."
|
531 |
+
msgstr ""
|
532 |
+
"La posición en el orden de los menús en que el tipo publicación debería "
|
533 |
+
"aparecer."
|
534 |
+
|
535 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:73
|
536 |
+
msgid "Menu Icon"
|
537 |
+
msgstr "Icono Menú"
|
538 |
+
|
539 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:73
|
540 |
+
msgid "The url to the icon to be used for this menu."
|
541 |
+
msgstr "La url para el icono que se utilizará para este menú."
|
542 |
+
|
543 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:74
|
544 |
+
msgid "Capability Type"
|
545 |
+
msgstr "Tipo de Capacidad"
|
546 |
+
|
547 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:74
|
548 |
+
msgid "The string to use to build the read, edit, and delete capabilities."
|
549 |
+
msgstr ""
|
550 |
+
"La cadena que se utiliza para construir la lectura, editar y eliminar "
|
551 |
+
"capacidades."
|
552 |
+
|
553 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:75
|
554 |
+
msgid "Taxonomies"
|
555 |
+
msgstr "Taxonomías"
|
556 |
+
|
557 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:76
|
558 |
+
msgid "Rewrite"
|
559 |
+
msgstr "Reescribir"
|
560 |
+
|
561 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:76
|
562 |
+
msgid "Rewrite permalinks."
|
563 |
+
msgstr "Reescribir permalinks."
|
564 |
+
|
565 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:77
|
566 |
+
msgid "Rewrite Slug"
|
567 |
+
msgstr "Reescribir Slug"
|
568 |
+
|
569 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:77
|
570 |
+
msgid "Defaults to post type name."
|
571 |
+
msgstr "Predeterminados para el nombre del tipo de publicación."
|
572 |
+
|
573 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:83
|
574 |
+
msgid "Custom Post Type Creation"
|
575 |
+
msgstr "Creación personalizada Post Type"
|
576 |
+
|
577 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:108 Version\wck/wck-ctc.php:91
|
578 |
+
msgid "Add New "
|
579 |
+
msgstr "Añadir Nuevo"
|
580 |
+
|
581 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:109 Version\wck/wck-ctc.php:89
|
582 |
+
msgid "Edit "
|
583 |
+
msgstr "Editar"
|
584 |
+
|
585 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:110 Version\wck/wck-ctc.php:92
|
586 |
+
msgid "New "
|
587 |
+
msgstr "Nuevo"
|
588 |
+
|
589 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:111 Version\wck/wck-ctc.php:86
|
590 |
+
msgid "All "
|
591 |
+
msgstr "Todos"
|
592 |
+
|
593 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:112
|
594 |
+
msgid "View "
|
595 |
+
msgstr "Ver"
|
596 |
+
|
597 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:113 Version\wck/wck-ctc.php:84
|
598 |
+
msgid "Search "
|
599 |
+
msgstr "Buscar"
|
600 |
+
|
601 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:114 Version\wck/wck-cptc.php:115
|
602 |
+
msgid "No "
|
603 |
+
msgstr "No"
|
604 |
+
|
605 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:116
|
606 |
+
msgid "Parent Page"
|
607 |
+
msgstr "Página Padre"
|
608 |
+
|
609 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:169 Version\wck/wck-cptc.php:193
|
610 |
+
#: Version\wck/wck-ctc.php:134 Version\wck/wck-ctc.php:158
|
611 |
+
msgid "Show Advanced Label Options"
|
612 |
+
msgstr "Mostrar Opciones Avanzadas de Etiqueta"
|
613 |
+
|
614 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:169 Version\wck/wck-cptc.php:193
|
615 |
+
#: Version\wck/wck-ctc.php:134 Version\wck/wck-ctc.php:158
|
616 |
+
msgid "Hide Advanced Label Options"
|
617 |
+
msgstr "Esconder Opciones Avanzadas de Etiqueta"
|
618 |
+
|
619 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:181 Version\wck/wck-cptc.php:207
|
620 |
+
#: Version\wck/wck-cptc.php:236 Version\wck/wck-ctc.php:146
|
621 |
+
#: Version\wck/wck-ctc.php:172 Version\wck/wck-ctc.php:201
|
622 |
+
msgid "Show Advanced Options"
|
623 |
+
msgstr "Mostrar opciones avanzadas"
|
624 |
+
|
625 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:181 Version\wck/wck-cptc.php:207
|
626 |
+
#: Version\wck/wck-cptc.php:236 Version\wck/wck-ctc.php:146
|
627 |
+
#: Version\wck/wck-ctc.php:172 Version\wck/wck-ctc.php:201
|
628 |
+
msgid "Hide Advanced Options"
|
629 |
+
msgstr "Ocultar Opciones Avanzadas"
|
630 |
+
|
631 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:222 Version\wck/wck-ctc.php:187
|
632 |
+
msgid "Show Advanced Labels"
|
633 |
+
msgstr "Mostrar Etiquetas Avanzadas"
|
634 |
+
|
635 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:222 Version\wck/wck-ctc.php:187
|
636 |
+
msgid "Hide Advanced Labels"
|
637 |
+
msgstr "Ocultar Etiquetas Avanzadas"
|
638 |
+
|
639 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:283
|
640 |
+
msgid ""
|
641 |
+
"WCK Custom Post Type Creator allows you to easily create custom post types "
|
642 |
+
"for Wordpress without any programming knowledge.<br />Most of the common "
|
643 |
+
"options for creating a post type are displayed by default while the advanced "
|
644 |
+
"options and label are just one click away."
|
645 |
+
msgstr ""
|
646 |
+
"WCK Custom Post Type Creator te permite crear fácilmente los tipos de "
|
647 |
+
"correos personalizados para Wordpress y sin ningún conocimiento de "
|
648 |
+
"programación. <br/> La mayoría de las opciones comunes para la creación de "
|
649 |
+
"un puesto tipo se muestran de forma predeterminada, mientras que las "
|
650 |
+
"opciones avanzadas y la etiqueta están a sólo un clic de distancia."
|
651 |
+
|
652 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:288 Version\wck/wck-ctc.php:245
|
653 |
+
msgid "Labels"
|
654 |
+
msgstr "Etiquetas"
|
655 |
+
|
656 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:289
|
657 |
+
msgid ""
|
658 |
+
"For simplicity you are required to introduce only the Singular Label and "
|
659 |
+
"Plural Label from wchich the rest of the labels will be formed.<br />For a "
|
660 |
+
"more detailed control of the labels you just have to click the \"Show "
|
661 |
+
"Advanced Label Options\" link and all the availabel labels will be displayed."
|
662 |
+
msgstr ""
|
663 |
+
"Para simplicidad se requiere introducir sólo la etiqueta Singular y Plural "
|
664 |
+
"desde donde se formará el resto de las etiquetas. <br/> ¡Para un control más "
|
665 |
+
"detallado de las etiquetas, solo tienes que hacer clic en el enlace "
|
666 |
+
"\"Mostrar opciones avanzadas etiqueta\" y todas las etiquetas disponibles "
|
667 |
+
"serán mostradas."
|
668 |
+
|
669 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:294 Version\wck/wck-ctc.php:251
|
670 |
+
msgid "Advanced Options"
|
671 |
+
msgstr "Opciones avanzadas"
|
672 |
+
|
673 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-cptc.php:295
|
674 |
+
msgid ""
|
675 |
+
"The Advanced Options are set to the most common defaults for custom post "
|
676 |
+
"types. To display them click the \"Show Advanced Options\" link."
|
677 |
+
msgstr ""
|
678 |
+
"Las opciones avanzadas se establecen en los valores predeterminados más "
|
679 |
+
"comunes para este tipo de publicación personalizado. Para visualizarlos, "
|
680 |
+
"haga clic en el enlace \"Mostrar opciones avanzadas\"."
|
681 |
+
|
682 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:6
|
683 |
+
msgid "WCK Taxonomy Creator"
|
684 |
+
msgstr "WCK Taxonomy Creador"
|
685 |
+
|
686 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:7 Version\wck/wck-sas.php:95
|
687 |
+
msgid "Taxonomy Creator"
|
688 |
+
msgstr "Creador deTaxonomía"
|
689 |
+
|
690 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:35
|
691 |
+
msgid "Taxonomy"
|
692 |
+
msgstr "Taxonomía"
|
693 |
+
|
694 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:35
|
695 |
+
msgid ""
|
696 |
+
"(The name of the taxonomy. Name must not contain capital letters or spaces.)"
|
697 |
+
msgstr ""
|
698 |
+
"(El nombre de la taxonomía. El nombre no debe contener letras mayúsculas o "
|
699 |
+
"espacios.)"
|
700 |
+
|
701 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:36
|
702 |
+
msgid "ex. Writer"
|
703 |
+
msgstr "ej Escritor"
|
704 |
+
|
705 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:37
|
706 |
+
msgid "ex. Writers"
|
707 |
+
msgstr "ej. Escritores"
|
708 |
+
|
709 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:38
|
710 |
+
msgid "Attach to"
|
711 |
+
msgstr "Adjuntar a"
|
712 |
+
|
713 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:39
|
714 |
+
msgid ""
|
715 |
+
"Is this taxonomy hierarchical (have descendants) like categories or not "
|
716 |
+
"hierarchical like tags."
|
717 |
+
msgstr ""
|
718 |
+
"¿Es esta taxonomía jerárquica (tiene descendientes) como categorías o no "
|
719 |
+
"jerárquica como las etiquetas?"
|
720 |
+
|
721 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:41
|
722 |
+
msgid "ex. Search Writers"
|
723 |
+
msgstr "Ej. Buscar Escritores"
|
724 |
+
|
725 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:42
|
726 |
+
msgid "Popular Items"
|
727 |
+
msgstr "Artículos populares"
|
728 |
+
|
729 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:42
|
730 |
+
msgid "ex. Popular Writers"
|
731 |
+
msgstr "ej. Escritores populares"
|
732 |
+
|
733 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:43
|
734 |
+
msgid "ex. All Writers"
|
735 |
+
msgstr "ej. Todos los Escritores"
|
736 |
+
|
737 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:44
|
738 |
+
msgid "Parent Item"
|
739 |
+
msgstr "Artículo Padre"
|
740 |
+
|
741 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:44
|
742 |
+
msgid "ex. Parent Genre"
|
743 |
+
msgstr "ej. Género Padre"
|
744 |
+
|
745 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:45
|
746 |
+
msgid "ex. Parent Genre:"
|
747 |
+
msgstr "ej. Género Padre"
|
748 |
+
|
749 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:46
|
750 |
+
msgid "ex. Edit Writer"
|
751 |
+
msgstr "ej. Editar Escritor"
|
752 |
+
|
753 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:47
|
754 |
+
msgid "Update Item"
|
755 |
+
msgstr "Actualizar Artículo"
|
756 |
+
|
757 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:47
|
758 |
+
msgid "ex. Update Writer"
|
759 |
+
msgstr "ej. Actualizar Escritor"
|
760 |
+
|
761 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:48
|
762 |
+
msgid "ex. Add New Writer"
|
763 |
+
msgstr "ej. Añadir Nuevo Escritor"
|
764 |
+
|
765 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:49
|
766 |
+
msgid "New Item Name"
|
767 |
+
msgstr "Nuevo Nombre del elemento"
|
768 |
+
|
769 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:49
|
770 |
+
msgid "ex. New Writer Name"
|
771 |
+
msgstr "ej. Nuevo Nombre Escritor"
|
772 |
+
|
773 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:50
|
774 |
+
msgid "Separate Items With Commas"
|
775 |
+
msgstr "Separe el Nombre con comas"
|
776 |
+
|
777 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:50
|
778 |
+
msgid "ex. Separate writers with commas"
|
779 |
+
msgstr "ej. Separe Escritores con comas"
|
780 |
+
|
781 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:51
|
782 |
+
msgid "Add Or Remove Items"
|
783 |
+
msgstr "Añadir o eliminar elementos"
|
784 |
+
|
785 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:51
|
786 |
+
msgid "ex. Add or remove writers"
|
787 |
+
msgstr "ej. Añadir o eliminar escritores"
|
788 |
+
|
789 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:52
|
790 |
+
msgid "Choose From Most Used"
|
791 |
+
msgstr "Elegir de los más usados."
|
792 |
+
|
793 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:52
|
794 |
+
msgid "ex. Choose from the most used writers"
|
795 |
+
msgstr "ej Elija uno de los escritores más utilizados"
|
796 |
+
|
797 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:57
|
798 |
+
msgid "Show Tagcloud"
|
799 |
+
msgstr "Muestre Tagcloud"
|
800 |
+
|
801 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:57
|
802 |
+
msgid "Whether to allow the Tag Cloud widget to use this taxonomy."
|
803 |
+
msgstr "Si permite que el Tag widget de nube utilice esta taxonomía."
|
804 |
+
|
805 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:62
|
806 |
+
msgid "Custom Taxonomy Creation"
|
807 |
+
msgstr "Creación de Taxonomía Personalizada"
|
808 |
+
|
809 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:85
|
810 |
+
msgid "Popular "
|
811 |
+
msgstr "Popular"
|
812 |
+
|
813 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:87 Version\wck/wck-ctc.php:88
|
814 |
+
msgid "Parent "
|
815 |
+
msgstr "Padre"
|
816 |
+
|
817 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:90
|
818 |
+
msgid "Update "
|
819 |
+
msgstr "Actualizar"
|
820 |
+
|
821 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:93
|
822 |
+
msgid "Separate "
|
823 |
+
msgstr "Separada"
|
824 |
+
|
825 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:94
|
826 |
+
msgid "Add or remove "
|
827 |
+
msgstr "Agregar o quitar"
|
828 |
+
|
829 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:95
|
830 |
+
msgid "Choose from the most used "
|
831 |
+
msgstr "Elija entre los más utilizados"
|
832 |
+
|
833 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:240
|
834 |
+
msgid ""
|
835 |
+
"WCK Custom Taxonomy Creator allows you to easily create custom taxonomy for "
|
836 |
+
"Wordpress without any programming knowledge.<br />Most of the common options "
|
837 |
+
"for creating a taxonomy are displayed by default while the advanced and "
|
838 |
+
"label options are just one click away."
|
839 |
+
msgstr ""
|
840 |
+
"WCK Custom Taxonomy Creador le permite crear fácilmente taxonomía "
|
841 |
+
"personalizada para Wordpress sin ningún conocimientos de programación. <br /"
|
842 |
+
"> La mayoría de las opciones comunes para la creación de una taxonomía se "
|
843 |
+
"muestran por defecto, mientras que las opciones avanzadas y etiquetas están "
|
844 |
+
"a sólo un clic de distancia."
|
845 |
+
|
846 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:246
|
847 |
+
msgid ""
|
848 |
+
"For simplicity you are required to introduce only the Singular Label and "
|
849 |
+
"Plural Label from wchich the rest of the labels will be formed.<br />For a "
|
850 |
+
"more detailed control of the labels you just have to click the \"Show "
|
851 |
+
"Advanced Label Options\" link and all the availabel labels will be displayed"
|
852 |
+
msgstr ""
|
853 |
+
"Por simplicidad, usted está obligado a introducir sólo la etiqueta Singular "
|
854 |
+
"y Plural desde donde el resto de las etiquetas se formará. <br /> ¡Para un "
|
855 |
+
"control más detallado de las etiquetas, solo tienes que hacer clic en el "
|
856 |
+
"enlace \"Mostrar opciones avanzadas de etiquetas\" y todas las etiquetas "
|
857 |
+
"disponibles se mostrarán"
|
858 |
+
|
859 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-ctc.php:252
|
860 |
+
msgid ""
|
861 |
+
"The Advanced Options are set to the most common defaults for taxonomies. To "
|
862 |
+
"display them click the \"Show Advanced Options\" link."
|
863 |
+
msgstr ""
|
864 |
+
"Las opciones avanzadas están ajustadas a los valores predeterminados comunes "
|
865 |
+
"para las taxonomías. Para visualizarlos, haga clic en el enlace \"Mostrar "
|
866 |
+
"opciones avanzadas\"."
|
867 |
+
|
868 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:15
|
869 |
+
msgid "Start Here & General Settings"
|
870 |
+
msgstr "Comience aquí y Ajustes generales"
|
871 |
+
|
872 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:16
|
873 |
+
msgid "Start and Settings"
|
874 |
+
msgstr "Inicio y Configuración"
|
875 |
+
|
876 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:34
|
877 |
+
msgid "Serial Number"
|
878 |
+
msgstr "Número de serie"
|
879 |
+
|
880 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:34
|
881 |
+
msgid ""
|
882 |
+
"Please enter your serial number. For example: (e.g. WCKPRO-11-"
|
883 |
+
"SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
884 |
+
msgstr ""
|
885 |
+
"Introduzca su número de serie. Por ejemplo: (por ejemplo WCKPRO-11-"
|
886 |
+
"SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
887 |
+
|
888 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:40
|
889 |
+
msgid "Register Your Version"
|
890 |
+
msgstr "Registre su Versión"
|
891 |
+
|
892 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:67
|
893 |
+
#, php-format
|
894 |
+
msgid "Welcome to %s"
|
895 |
+
msgstr "Bienvenido a %s"
|
896 |
+
|
897 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:68
|
898 |
+
msgid ""
|
899 |
+
"WCK helps you to improve the usability of the sites you build, making them "
|
900 |
+
"manageable by your clients. Your very own repeater custom fields and groups, "
|
901 |
+
"custom post type and taxonomy creator with front-end posting."
|
902 |
+
msgstr ""
|
903 |
+
"WCK le ayuda a mejorar la usabilidad de los sitios que usted construye, "
|
904 |
+
"haciéndolos manejables por sus clientes. . Sus propios campos y grupos "
|
905 |
+
"personalizados repetidor, el tipo de publicación personalizada y creador de "
|
906 |
+
"taxonomía con fijación frontal"
|
907 |
+
|
908 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:69
|
909 |
+
#, php-format
|
910 |
+
msgid "Version %s"
|
911 |
+
msgstr "Versión %s"
|
912 |
+
|
913 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:83
|
914 |
+
msgid "Quick Start-Up Guide"
|
915 |
+
msgstr "Quía Rápida de Inicio"
|
916 |
+
|
917 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:88
|
918 |
+
msgid ""
|
919 |
+
"WordPress Creation Kit Pro has support for a wide list of custom fields: "
|
920 |
+
"WYSIWYG Editor, Upload Field, Date, User, Country, Text Input, Textarea, "
|
921 |
+
"Drop-Down, Select, Checkboxes, Radio Buttons"
|
922 |
+
msgstr ""
|
923 |
+
"WordPress Creación Kit Pro tiene soporte para una amplia lista de campos "
|
924 |
+
"personalizados: Editor WYSIWYG, Subi campo, Fecha , Usuario, país, entrada "
|
925 |
+
"de texto, Área de texto, desplegable, Seleccionar, casillas de verificación, "
|
926 |
+
"botones de radio"
|
927 |
+
|
928 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:89
|
929 |
+
msgid ""
|
930 |
+
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
931 |
+
"kit/custom-fields-creator/\" target=\"_blank\">here</a> about how to display "
|
932 |
+
"them in your templates."
|
933 |
+
msgstr ""
|
934 |
+
"Documentación de Access <a href = \"http://www.cozmoslabs.com/wordpress-"
|
935 |
+
"creation-kit/custom-fields-creator/ \"target=\"_blank\"> aquí </a> sobre "
|
936 |
+
"cómo mostrarlos en sus plantillas."
|
937 |
+
|
938 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:92
|
939 |
+
msgid "Create & manage all your custom content types"
|
940 |
+
msgstr "Crear y gestionar todos los tipos de contenido personalizado"
|
941 |
+
|
942 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:93
|
943 |
+
msgid ""
|
944 |
+
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
945 |
+
"kit/custom-post-type-creator/\" target=\"_blank\">here</a> about how to "
|
946 |
+
"display them in your templates."
|
947 |
+
msgstr ""
|
948 |
+
"Documentación de acceso<a href=\"http://www.cozmoslabs.com/ wordpress-"
|
949 |
+
"creation-kit/custom-post-type-creator/\"target=\" _blank\"> aquí </a> sobre "
|
950 |
+
"cómo mostrarlos en sus plantillas."
|
951 |
+
|
952 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:96
|
953 |
+
msgid "Create new taxonomies for filtering your content"
|
954 |
+
msgstr "Crear nuevas taxonomías para el filtrado de su contenido"
|
955 |
+
|
956 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:97
|
957 |
+
msgid ""
|
958 |
+
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
959 |
+
"kit/custom-taxonomy-creator/\" target=\"_blank\">here</a> about how to "
|
960 |
+
"display them in your templates."
|
961 |
+
msgstr ""
|
962 |
+
"Documentación de acceso a<a href=\"http://www.cozmoslabs.com/wordpress-"
|
963 |
+
"creation-kit/custom-taxonomy-creator/\" target=\"_blank\"> aquí </a> sobre "
|
964 |
+
"cómo mostrarlos en sus plantillas"
|
965 |
+
|
966 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:99
|
967 |
+
msgid "Front-End Posting (available in the Pro version)"
|
968 |
+
msgstr "Publicación Front-End (disponible en la versión Pro)"
|
969 |
+
|
970 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:100
|
971 |
+
msgid ""
|
972 |
+
"Create and edit posts/pages or custom posts directly from the front-end."
|
973 |
+
msgstr ""
|
974 |
+
"Crear y editar publicaciones / páginas o publicaciones personalizadas "
|
975 |
+
"directamente desde el front-end."
|
976 |
+
|
977 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:101
|
978 |
+
msgid "Available shortcodes:"
|
979 |
+
msgstr "Códigos cortos disponibles:"
|
980 |
+
|
981 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:103
|
982 |
+
msgid ""
|
983 |
+
"[fep form_name=\"front-end-post-name\"] - displayes your form in the front-"
|
984 |
+
"end"
|
985 |
+
msgstr ""
|
986 |
+
"[fep form_name=\"front-end-post-name\"] - muestra su formulario en el front-"
|
987 |
+
"end"
|
988 |
+
|
989 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:104
|
990 |
+
msgid ""
|
991 |
+
"[fep-dashboard] - the quick-dashboard allows: simple profile updates, "
|
992 |
+
"editing/deletion of posts, pages and custom post types."
|
993 |
+
msgstr ""
|
994 |
+
"[fep-dashboard] - el tablero rápido permite: actualizaciones de perfiles "
|
995 |
+
"simples, edición / borrado de publicaciones, páginas y tipos de publicación "
|
996 |
+
"personalizados"
|
997 |
+
|
998 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:105
|
999 |
+
msgid ""
|
1000 |
+
"[fep-lilo] - login/logout/register widget with the simple usage of a "
|
1001 |
+
"shortcode. Can be added in a page or text widget."
|
1002 |
+
msgstr ""
|
1003 |
+
"[fep-lilo] – widget login/logout/register con el simple uso de un shortcode. "
|
1004 |
+
"Se puede añadir en una página o widget de texto."
|
1005 |
+
|
1006 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:107
|
1007 |
+
msgid ""
|
1008 |
+
"Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-"
|
1009 |
+
"kit/frontend-posting/\" target=\"_blank\">here</a> about how to display them "
|
1010 |
+
"in your templates."
|
1011 |
+
msgstr ""
|
1012 |
+
"Documentación de Acceso <a href=\"http://www.cozmoslabs.com/wordpress-"
|
1013 |
+
"creation-kit/frontend-posting/\" target=\"_blank\"> aquí </a> sobre cómo "
|
1014 |
+
"mostrarlos en sus plantillas."
|
1015 |
+
|
1016 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:109
|
1017 |
+
msgid "Option Pages (available in the Pro version)"
|
1018 |
+
msgstr "Páginas de opción (disponible en la versión Pro)"
|
1019 |
+
|
1020 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:110
|
1021 |
+
msgid ""
|
1022 |
+
"The Options Page Creator Allows you to create a new menu item called "
|
1023 |
+
"\"Options\"(for example) which can hold advanced custom field groups. "
|
1024 |
+
"Perfect for theme options or a simple UI for your custom plugin (like a "
|
1025 |
+
"simple testimonials section in the front-end)."
|
1026 |
+
msgstr ""
|
1027 |
+
"El Options Page Creator Permite crear un nuevo elemento del menú llamado "
|
1028 |
+
"\"Opciones\" (por ejemplo) que puede albergar grupos de campos "
|
1029 |
+
"personalizados avanzados. Perfecto para las opciones del tema o una interfaz "
|
1030 |
+
"de usuario simple para su complemento personalizado (como una sección de "
|
1031 |
+
"testimonios simple en el front-end)."
|
1032 |
+
|
1033 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:137
|
1034 |
+
msgid ""
|
1035 |
+
"Please enter your serial number to get access to automatic updates. If you "
|
1036 |
+
"do not have one, you can <a href=\"http://www.cozmoslabs.com/wordpress-"
|
1037 |
+
"creation-kit/\" target=\"_blank\">Get One Here</a>."
|
1038 |
+
msgstr ""
|
1039 |
+
"Introduzca, por favor su número de serie para tener acceso a las "
|
1040 |
+
"actualizaciones automáticas. Si usted no tiene uno, puede <a href=\"http://"
|
1041 |
+
"www.cozmoslabs.com/wordpress-creation-kit/\" target=\"_blank\"> conseguir "
|
1042 |
+
"uno aquí </a>."
|
1043 |
+
|
1044 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:139
|
1045 |
+
msgid "Oups! Our serial verification server is down. Please try again later."
|
1046 |
+
msgstr ""
|
1047 |
+
"¡Ups ! Nuestro servidor de verificación de serie se encuentra abajo. Por "
|
1048 |
+
"favor, inténtelo de nuevo más tarde."
|
1049 |
+
|
1050 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:141
|
1051 |
+
msgid ""
|
1052 |
+
"Oups! It seems the serial number you entered was not found in our database. "
|
1053 |
+
"To find out what's your serial number log-in to <a href=\"http://www."
|
1054 |
+
"cozmoslabs.com/account/\" target=\"_blank\">your account page</a> over at "
|
1055 |
+
"Cozmoslabs.com"
|
1056 |
+
msgstr ""
|
1057 |
+
"¡Ups! Al parecer, el número de serie que ha puesto no se encuentra en "
|
1058 |
+
"nuestra base de datos. Para saber cuál es el número de serie ingrese a <a "
|
1059 |
+
"href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"> página de su "
|
1060 |
+
"cuenta </a> sobre al Cozmoslabs.com"
|
1061 |
+
|
1062 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:143
|
1063 |
+
msgid ""
|
1064 |
+
"Wohoo! Your serial number is valid and you have access to automatic updates."
|
1065 |
+
msgstr ""
|
1066 |
+
"Wohoo! Su número de serie es válido y tiene acceso a las actualizaciones "
|
1067 |
+
"automáticas."
|
1068 |
+
|
1069 |
+
#: d:\!!!!!!!!!\Free Version\wck/wck-sas.php:145
|
1070 |
+
msgid ""
|
1071 |
+
"It seems your serial number has <strong>expired</strong>. You'll continue to "
|
1072 |
+
"get automatic updates if update your serial number for another year from <a "
|
1073 |
+
"href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"><strong>your "
|
1074 |
+
"account page</strong></a>."
|
1075 |
+
msgstr ""
|
1076 |
+
"Parece que su número de serie <strong> ha expirado </ strong>. Tendrá que "
|
1077 |
+
"continuar para obtener actualizaciones automáticas si actualizar su número "
|
1078 |
+
"de serie para otro año de <a href=\"http://www.cozmoslabs.com/account/\" "
|
1079 |
+
"target=\"_blank\"> <strong> su página de cuenta </ strong> </a>."
|
1080 |
+
|
1081 |
+
#: d:\!!!!!!!!!\Free
|
1082 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:282
|
1083 |
+
msgid "Add Entry"
|
1084 |
+
msgstr "Añadir entrada"
|
1085 |
+
|
1086 |
+
#: d:\!!!!!!!!!\Free
|
1087 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:332
|
1088 |
+
msgid "Save Changes"
|
1089 |
+
msgstr "Guardar cambios"
|
1090 |
+
|
1091 |
+
#: d:\!!!!!!!!!\Free
|
1092 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:333
|
1093 |
+
msgid "Cancel"
|
1094 |
+
msgstr "Cancelar"
|
1095 |
+
|
1096 |
+
#: d:\!!!!!!!!!\Free
|
1097 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1098 |
+
msgid "Content"
|
1099 |
+
msgstr "Contenido"
|
1100 |
+
|
1101 |
+
#: d:\!!!!!!!!!\Free
|
1102 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1103 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1104 |
+
msgid "Edit"
|
1105 |
+
msgstr "Editar"
|
1106 |
+
|
1107 |
+
#: d:\!!!!!!!!!\Free
|
1108 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1109 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1110 |
+
msgid "Delete"
|
1111 |
+
msgstr "Borrar"
|
1112 |
+
|
1113 |
+
#: d:\!!!!!!!!!\Free
|
1114 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1115 |
+
msgid "Edit this item"
|
1116 |
+
msgstr "Editar este artículo"
|
1117 |
+
|
1118 |
+
#: d:\!!!!!!!!!\Free
|
1119 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1120 |
+
msgid "Delete this item"
|
1121 |
+
msgstr "Borrar este artículo"
|
1122 |
+
|
1123 |
+
#: d:\!!!!!!!!!\Free
|
1124 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:506
|
1125 |
+
msgid "Please enter a value for the required field "
|
1126 |
+
msgstr "Por favor, introduzca un valor para el campo requerido"
|
1127 |
+
|
1128 |
+
#: d:\!!!!!!!!!\Free
|
1129 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:788
|
1130 |
+
msgid "Select File"
|
1131 |
+
msgstr "Seleccione Archivo"
|
1132 |
+
|
1133 |
+
#: d:\!!!!!!!!!\Free
|
1134 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:828
|
1135 |
+
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:28
|
1136 |
+
msgid "Remove"
|
1137 |
+
msgstr "Eliminar"
|
1138 |
+
|
1139 |
+
#: d:\!!!!!!!!!\Free
|
1140 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:866
|
1141 |
+
msgid "Syncronize WCK"
|
1142 |
+
msgstr "Syncronizar WCK"
|
1143 |
+
|
1144 |
+
#: d:\!!!!!!!!!\Free
|
1145 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:878
|
1146 |
+
msgid "Syncronize WCK Translation"
|
1147 |
+
msgstr "Traducción Syncronizar WCK"
|
1148 |
+
|
1149 |
+
#: d:\!!!!!!!!!\Free
|
1150 |
+
#: Version\wck/wordpress-creation-kit-api/fields/select.php:11
|
1151 |
+
msgid "...Chose"
|
1152 |
+
msgstr "... Elija"
|
1153 |
+
|
1154 |
+
#: d:\!!!!!!!!!\Free
|
1155 |
+
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:40
|
1156 |
+
msgid "Upload "
|
1157 |
+
msgstr "Subir"
|
languages/wck.pot
CHANGED
@@ -1,1123 +1,1123 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: WCK\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-06-13 16:28+0200\n"
|
6 |
-
"PO-Revision-Date: 2013-06-13 16:28+0200\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"X-Poedit-SearchPath-0: d:\\!!!!!!!!!\\Free Version\\wck\n"
|
15 |
-
|
16 |
-
#: d:\!!!!!!!!!\Free
|
17 |
-
#: Version\wck/wck-cfc.php:26
|
18 |
-
msgid "Add New Meta Box"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: d:\!!!!!!!!!\Free
|
22 |
-
#: Version\wck/wck-cfc.php:27
|
23 |
-
msgid "Edit Meta Box"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#: d:\!!!!!!!!!\Free
|
27 |
-
#: Version\wck/wck-cfc.php:28
|
28 |
-
msgid "New Meta Box"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: d:\!!!!!!!!!\Free
|
32 |
-
#: Version\wck/wck-cfc.php:29
|
33 |
-
#: Version\wck/wck-sas.php:87
|
34 |
-
msgid "Custom Fields Creator"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: d:\!!!!!!!!!\Free
|
38 |
-
#: Version\wck/wck-cfc.php:30
|
39 |
-
msgid "View Meta Box"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: d:\!!!!!!!!!\Free
|
43 |
-
#: Version\wck/wck-cfc.php:31
|
44 |
-
msgid "Search Meta Boxes"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: d:\!!!!!!!!!\Free
|
48 |
-
#: Version\wck/wck-cfc.php:32
|
49 |
-
msgid "No Meta Boxes found"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: d:\!!!!!!!!!\Free
|
53 |
-
#: Version\wck/wck-cfc.php:33
|
54 |
-
msgid "No Meta Boxes found in Trash"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: d:\!!!!!!!!!\Free
|
58 |
-
#: Version\wck/wck-cfc.php:35
|
59 |
-
msgid "Custom Meta Boxes"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: d:\!!!!!!!!!\Free
|
63 |
-
#: Version\wck/wck-cfc.php:84
|
64 |
-
msgid "Meta name"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: d:\!!!!!!!!!\Free
|
68 |
-
#: Version\wck/wck-cfc.php:84
|
69 |
-
msgid "The name of the meta field. It is the name by which you will query the data in the frontend. Must be unique, only lowercase letters, no spaces and no special characters."
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: d:\!!!!!!!!!\Free
|
73 |
-
#: Version\wck/wck-cfc.php:85
|
74 |
-
#: Version\wck/wck-cfc.php:442
|
75 |
-
msgid "Post Type"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: d:\!!!!!!!!!\Free
|
79 |
-
#: Version\wck/wck-cfc.php:85
|
80 |
-
msgid "What post type the meta box should be attached to"
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
-
#: d:\!!!!!!!!!\Free
|
84 |
-
#: Version\wck/wck-cfc.php:86
|
85 |
-
msgid "Repeater"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: d:\!!!!!!!!!\Free
|
89 |
-
#: Version\wck/wck-cfc.php:86
|
90 |
-
msgid "Whether the box supports just one entry or if it is a repeater field. By default it is a single field."
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: d:\!!!!!!!!!\Free
|
94 |
-
#: Version\wck/wck-cfc.php:87
|
95 |
-
msgid "Sortable"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: d:\!!!!!!!!!\Free
|
99 |
-
#: Version\wck/wck-cfc.php:87
|
100 |
-
msgid "Whether the entries are sortable or not. Thsi is valid for repeater fields."
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: d:\!!!!!!!!!\Free
|
104 |
-
#: Version\wck/wck-cfc.php:88
|
105 |
-
msgid "Post ID"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: d:\!!!!!!!!!\Free
|
109 |
-
#: Version\wck/wck-cfc.php:88
|
110 |
-
msgid "ID of a post on which the meta box should appear."
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: d:\!!!!!!!!!\Free
|
114 |
-
#: Version\wck/wck-cfc.php:92
|
115 |
-
#: Version\wck/wck-cfc.php:443
|
116 |
-
msgid "Page Template"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: d:\!!!!!!!!!\Free
|
120 |
-
#: Version\wck/wck-cfc.php:92
|
121 |
-
msgid "If post type is \"page\" you can further select a page templete. The meta box will only appear on the page that has that selected page template."
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: d:\!!!!!!!!!\Free
|
125 |
-
#: Version\wck/wck-cfc.php:97
|
126 |
-
#: Version\wck/wck-cfc.php:536
|
127 |
-
msgid "Meta Box Arguments"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: d:\!!!!!!!!!\Free
|
131 |
-
#: Version\wck/wck-cfc.php:114
|
132 |
-
msgid "Field Title"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: d:\!!!!!!!!!\Free
|
136 |
-
#: Version\wck/wck-cfc.php:114
|
137 |
-
msgid "Title of the field. A slug will automatically be generated."
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: d:\!!!!!!!!!\Free
|
141 |
-
#: Version\wck/wck-cfc.php:115
|
142 |
-
msgid "Field Type"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: d:\!!!!!!!!!\Free
|
146 |
-
#: Version\wck/wck-cfc.php:115
|
147 |
-
msgid "The field type"
|
148 |
-
msgstr ""
|
149 |
-
|
150 |
-
#: d:\!!!!!!!!!\Free
|
151 |
-
#: Version\wck/wck-cfc.php:116
|
152 |
-
#: Version\wck/wck-cptc.php:48
|
153 |
-
msgid "Description"
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: d:\!!!!!!!!!\Free
|
157 |
-
#: Version\wck/wck-cfc.php:117
|
158 |
-
msgid "Required"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: d:\!!!!!!!!!\Free
|
162 |
-
#: Version\wck/wck-cfc.php:117
|
163 |
-
msgid "Whether the field is required or not"
|
164 |
-
msgstr ""
|
165 |
-
|
166 |
-
#: d:\!!!!!!!!!\Free
|
167 |
-
#: Version\wck/wck-cfc.php:118
|
168 |
-
msgid "Default Value"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: d:\!!!!!!!!!\Free
|
172 |
-
#: Version\wck/wck-cfc.php:118
|
173 |
-
msgid "Default value of the field. For Checkboxes if there are multiple values separete them with a \",\""
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: d:\!!!!!!!!!\Free
|
177 |
-
#: Version\wck/wck-cfc.php:119
|
178 |
-
msgid "Options"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: d:\!!!!!!!!!\Free
|
182 |
-
#: Version\wck/wck-cfc.php:119
|
183 |
-
msgid "Options for field types \"select\", \"checkbox\" and \"radio\". For multiple options separete them with a \",\". You can use the following structure if you want the label to be different from the value: %LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: d:\!!!!!!!!!\Free
|
187 |
-
#: Version\wck/wck-cfc.php:120
|
188 |
-
msgid "Attach upload to post"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: d:\!!!!!!!!!\Free
|
192 |
-
#: Version\wck/wck-cfc.php:120
|
193 |
-
msgid "Whether or not the uploads should be attached to the post"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: d:\!!!!!!!!!\Free
|
197 |
-
#: Version\wck/wck-cfc.php:127
|
198 |
-
#: Version\wck/wck-cfc.php:542
|
199 |
-
msgid "Meta Box Fields"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: d:\!!!!!!!!!\Free
|
203 |
-
#: Version\wck/wck-cfc.php:140
|
204 |
-
msgid "Enter below the arguments for the meta box."
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: d:\!!!!!!!!!\Free
|
208 |
-
#: Version\wck/wck-cfc.php:220
|
209 |
-
msgid "Slug:"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: d:\!!!!!!!!!\Free
|
213 |
-
#: Version\wck/wck-cfc.php:220
|
214 |
-
msgid "(Note:changing the slug when you already have a lot of existing entries may result in unexpected behavior.)"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: d:\!!!!!!!!!\Free
|
218 |
-
#: Version\wck/wck-cfc.php:355
|
219 |
-
msgid "Choose a different Meta Name as this one contains spaces\n"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: d:\!!!!!!!!!\Free
|
223 |
-
#: Version\wck/wck-cfc.php:357
|
224 |
-
msgid "Choose a different Meta Name as this one already exists\n"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: d:\!!!!!!!!!\Free
|
228 |
-
#: Version\wck/wck-cfc.php:441
|
229 |
-
msgid "Id"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: d:\!!!!!!!!!\Free
|
233 |
-
#: Version\wck/wck-cfc.php:506
|
234 |
-
#: Version\wck/wck-cptc.php:257
|
235 |
-
#: Version\wck/wck-ctc.php:215
|
236 |
-
#: Version\wck/wck.php:38
|
237 |
-
msgid "Wordpress Creation Kit"
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: d:\!!!!!!!!!\Free
|
241 |
-
#: Version\wck/wck-cfc.php:530
|
242 |
-
#: Version\wck/wck-cptc.php:282
|
243 |
-
#: Version\wck/wck-ctc.php:239
|
244 |
-
msgid "Overview"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: d:\!!!!!!!!!\Free
|
248 |
-
#: Version\wck/wck-cfc.php:531
|
249 |
-
msgid "WCK Custom Fields Creator allows you to easily create custom meta boxes for Wordpress without any programming knowledge."
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: d:\!!!!!!!!!\Free
|
253 |
-
#: Version\wck/wck-cfc.php:537
|
254 |
-
msgid "Define here the rules for the meta box. This rules are used to set up where the meta box will appear, it's type and also the meta key name stored in the database. The name of the entry (Enter title here) will be used as the meta box title."
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: d:\!!!!!!!!!\Free
|
258 |
-
#: Version\wck/wck-cfc.php:543
|
259 |
-
msgid "Define here the fields contained in the meta box. From \"Field Title\" a slug will be automatically generated and you will use this slug to display the data in the frontend."
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: d:\!!!!!!!!!\Free
|
263 |
-
#: Version\wck/wck-cfc.php:548
|
264 |
-
msgid "CFC Frontend Example"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: d:\!!!!!!!!!\Free
|
268 |
-
#: Version\wck/wck-cfc.php:549
|
269 |
-
msgid "Let's consider we have a meta box with the following arguments:<br /> - Meta name: books <br /> - Post Type: post <br />And we also have two fields deffined:<br /> - A text field with the Field Title: Book name <br /> - And another text field with the Field Title: Author name "
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: d:\!!!!!!!!!\Free
|
273 |
-
#: Version\wck/wck-cfc.php:549
|
274 |
-
msgid "You will notice that slugs will automatically be created for the two text fields. For \"Book name\" the slug will be \"book-name\" and for \"Author name\" the slug will be \"author-name\""
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: d:\!!!!!!!!!\Free
|
278 |
-
#: Version\wck/wck-cfc.php:549
|
279 |
-
msgid "Let's see what the code for displaying the meta box values in single.php of your theme would be:"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: d:\!!!!!!!!!\Free
|
283 |
-
#: Version\wck/wck-cfc.php:549
|
284 |
-
msgid "So as you can see the Meta Name \"books\" is used as the $key parameter of the funtion <a href=\"http://codex.wordpress.org/Function_Reference/get_post_meta\" target=\"_blank\">get_post_meta()</a> and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as post meta in a multidimensioanl array. In our case the array would be: <br /><pre>array( array( \"book-name\" => \"The Hitchhiker's Guide To The Galaxy\", \"author-name\" => \"Douglas Adams\" ), array( \"book-name\" => \"Ender's Game\", \"author-name\" => \"Orson Scott Card\" ) );</pre> This is true even for single entries."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: d:\!!!!!!!!!\Free
|
288 |
-
#: Version\wck/wck-cfc.php:577
|
289 |
-
msgid "Metabox updated."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: d:\!!!!!!!!!\Free
|
293 |
-
#: Version\wck/wck-cptc.php:6
|
294 |
-
msgid "WCK Post Type Creator"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: d:\!!!!!!!!!\Free
|
298 |
-
#: Version\wck/wck-cptc.php:7
|
299 |
-
#: Version\wck/wck-sas.php:91
|
300 |
-
msgid "Post Type Creator"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: d:\!!!!!!!!!\Free
|
304 |
-
#: Version\wck/wck-cptc.php:47
|
305 |
-
msgid "Post type"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: d:\!!!!!!!!!\Free
|
309 |
-
#: Version\wck/wck-cptc.php:47
|
310 |
-
msgid "(max. 20 characters, can not contain capital letters, hyphens, or spaces)"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: d:\!!!!!!!!!\Free
|
314 |
-
#: Version\wck/wck-cptc.php:48
|
315 |
-
msgid "A short descriptive summary of what the post type is."
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: d:\!!!!!!!!!\Free
|
319 |
-
#: Version\wck/wck-cptc.php:49
|
320 |
-
#: Version\wck/wck-ctc.php:36
|
321 |
-
msgid "Singular Label"
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: d:\!!!!!!!!!\Free
|
325 |
-
#: Version\wck/wck-cptc.php:49
|
326 |
-
msgid "ex. Book"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: d:\!!!!!!!!!\Free
|
330 |
-
#: Version\wck/wck-cptc.php:50
|
331 |
-
#: Version\wck/wck-ctc.php:37
|
332 |
-
msgid "Plural Label"
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: d:\!!!!!!!!!\Free
|
336 |
-
#: Version\wck/wck-cptc.php:50
|
337 |
-
msgid "ex. Books"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: d:\!!!!!!!!!\Free
|
341 |
-
#: Version\wck/wck-cptc.php:51
|
342 |
-
#: Version\wck/wck-ctc.php:39
|
343 |
-
msgid "Hierarchical"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: d:\!!!!!!!!!\Free
|
347 |
-
#: Version\wck/wck-cptc.php:51
|
348 |
-
msgid "Whether the post type is hierarchical. Allows Parent to be specified."
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: d:\!!!!!!!!!\Free
|
352 |
-
#: Version\wck/wck-cptc.php:52
|
353 |
-
msgid "Has Archive"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: d:\!!!!!!!!!\Free
|
357 |
-
#: Version\wck/wck-cptc.php:52
|
358 |
-
msgid "Enables post type archives. Will use string as archive slug. Will generate the proper rewrite rules if rewrite is enabled."
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: d:\!!!!!!!!!\Free
|
362 |
-
#: Version\wck/wck-cptc.php:53
|
363 |
-
msgid "Supports"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: d:\!!!!!!!!!\Free
|
367 |
-
#: Version\wck/wck-cptc.php:56
|
368 |
-
msgid "Add New"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: d:\!!!!!!!!!\Free
|
372 |
-
#: Version\wck/wck-cptc.php:56
|
373 |
-
msgid "ex. Add New"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: d:\!!!!!!!!!\Free
|
377 |
-
#: Version\wck/wck-cptc.php:57
|
378 |
-
#: Version\wck/wck-ctc.php:48
|
379 |
-
msgid "Add New Item"
|
380 |
-
msgstr ""
|
381 |
-
|
382 |
-
#: d:\!!!!!!!!!\Free
|
383 |
-
#: Version\wck/wck-cptc.php:57
|
384 |
-
msgid "ex. Add New Book"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: d:\!!!!!!!!!\Free
|
388 |
-
#: Version\wck/wck-cptc.php:58
|
389 |
-
#: Version\wck/wck-ctc.php:46
|
390 |
-
msgid "Edit Item"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: d:\!!!!!!!!!\Free
|
394 |
-
#: Version\wck/wck-cptc.php:58
|
395 |
-
msgid "ex. Edit Book"
|
396 |
-
msgstr ""
|
397 |
-
|
398 |
-
#: d:\!!!!!!!!!\Free
|
399 |
-
#: Version\wck/wck-cptc.php:59
|
400 |
-
msgid "New Item"
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
#: d:\!!!!!!!!!\Free
|
404 |
-
#: Version\wck/wck-cptc.php:59
|
405 |
-
msgid "ex. New Book"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: d:\!!!!!!!!!\Free
|
409 |
-
#: Version\wck/wck-cptc.php:60
|
410 |
-
#: Version\wck/wck-ctc.php:43
|
411 |
-
msgid "All Items"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: d:\!!!!!!!!!\Free
|
415 |
-
#: Version\wck/wck-cptc.php:60
|
416 |
-
msgid "ex. All Books"
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: d:\!!!!!!!!!\Free
|
420 |
-
#: Version\wck/wck-cptc.php:61
|
421 |
-
msgid "View Items"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#: d:\!!!!!!!!!\Free
|
425 |
-
#: Version\wck/wck-cptc.php:61
|
426 |
-
msgid "ex. View Books"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#: d:\!!!!!!!!!\Free
|
430 |
-
#: Version\wck/wck-cptc.php:62
|
431 |
-
#: Version\wck/wck-ctc.php:41
|
432 |
-
msgid "Search Items"
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: d:\!!!!!!!!!\Free
|
436 |
-
#: Version\wck/wck-cptc.php:62
|
437 |
-
msgid "ex. Search Books"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: d:\!!!!!!!!!\Free
|
441 |
-
#: Version\wck/wck-cptc.php:63
|
442 |
-
msgid "Not Found"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: d:\!!!!!!!!!\Free
|
446 |
-
#: Version\wck/wck-cptc.php:63
|
447 |
-
msgid "ex. No Books Found"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: d:\!!!!!!!!!\Free
|
451 |
-
#: Version\wck/wck-cptc.php:64
|
452 |
-
msgid "Not Found In Trash"
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: d:\!!!!!!!!!\Free
|
456 |
-
#: Version\wck/wck-cptc.php:64
|
457 |
-
msgid "ex. No Books found in Trash"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: d:\!!!!!!!!!\Free
|
461 |
-
#: Version\wck/wck-cptc.php:65
|
462 |
-
#: Version\wck/wck-ctc.php:45
|
463 |
-
msgid "Parent Item Colon"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: d:\!!!!!!!!!\Free
|
467 |
-
#: Version\wck/wck-cptc.php:65
|
468 |
-
msgid "the parent text. This string isn't used on non-hierarchical types. In hierarchical ones the default is Parent Page "
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: d:\!!!!!!!!!\Free
|
472 |
-
#: Version\wck/wck-cptc.php:66
|
473 |
-
#: Version\wck/wck-ctc.php:53
|
474 |
-
msgid "Menu Name"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: d:\!!!!!!!!!\Free
|
478 |
-
#: Version\wck/wck-cptc.php:68
|
479 |
-
#: Version\wck/wck-ctc.php:55
|
480 |
-
msgid "Public"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: d:\!!!!!!!!!\Free
|
484 |
-
#: Version\wck/wck-cptc.php:68
|
485 |
-
#: Version\wck/wck-ctc.php:55
|
486 |
-
msgid "Meta argument used to define default values for publicly_queriable, show_ui, show_in_nav_menus and exclude_from_search"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: d:\!!!!!!!!!\Free
|
490 |
-
#: Version\wck/wck-cptc.php:69
|
491 |
-
#: Version\wck/wck-ctc.php:56
|
492 |
-
msgid "Show UI"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
#: d:\!!!!!!!!!\Free
|
496 |
-
#: Version\wck/wck-cptc.php:69
|
497 |
-
#: Version\wck/wck-ctc.php:56
|
498 |
-
msgid "Whether to generate a default UI for managing this post type."
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: d:\!!!!!!!!!\Free
|
502 |
-
#: Version\wck/wck-cptc.php:70
|
503 |
-
msgid "Show In Nav Menus"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: d:\!!!!!!!!!\Free
|
507 |
-
#: Version\wck/wck-cptc.php:70
|
508 |
-
msgid "Whether post_type is available for selection in navigation menus."
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: d:\!!!!!!!!!\Free
|
512 |
-
#: Version\wck/wck-cptc.php:71
|
513 |
-
msgid "Show In Menu"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: d:\!!!!!!!!!\Free
|
517 |
-
#: Version\wck/wck-cptc.php:71
|
518 |
-
msgid "Whether to show the post type in the admin menu. show_ui must be true. \"false\" - do not display in the admin menu, \"true\" - display as a top level menu, \"some string\" - If an existing top level page such as \"tools.php\" or \"edit.php?post_type=page\", the post type will be placed as a sub menu of that."
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: d:\!!!!!!!!!\Free
|
522 |
-
#: Version\wck/wck-cptc.php:72
|
523 |
-
msgid "Menu Position"
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: d:\!!!!!!!!!\Free
|
527 |
-
#: Version\wck/wck-cptc.php:72
|
528 |
-
msgid "The position in the menu order the post type should appear."
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: d:\!!!!!!!!!\Free
|
532 |
-
#: Version\wck/wck-cptc.php:73
|
533 |
-
msgid "Menu Icon"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: d:\!!!!!!!!!\Free
|
537 |
-
#: Version\wck/wck-cptc.php:73
|
538 |
-
msgid "The url to the icon to be used for this menu."
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: d:\!!!!!!!!!\Free
|
542 |
-
#: Version\wck/wck-cptc.php:74
|
543 |
-
msgid "Capability Type"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: d:\!!!!!!!!!\Free
|
547 |
-
#: Version\wck/wck-cptc.php:74
|
548 |
-
msgid "The string to use to build the read, edit, and delete capabilities."
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: d:\!!!!!!!!!\Free
|
552 |
-
#: Version\wck/wck-cptc.php:75
|
553 |
-
msgid "Taxonomies"
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: d:\!!!!!!!!!\Free
|
557 |
-
#: Version\wck/wck-cptc.php:76
|
558 |
-
msgid "Rewrite"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: d:\!!!!!!!!!\Free
|
562 |
-
#: Version\wck/wck-cptc.php:76
|
563 |
-
msgid "Rewrite permalinks."
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: d:\!!!!!!!!!\Free
|
567 |
-
#: Version\wck/wck-cptc.php:77
|
568 |
-
msgid "Rewrite Slug"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: d:\!!!!!!!!!\Free
|
572 |
-
#: Version\wck/wck-cptc.php:77
|
573 |
-
msgid "Defaults to post type name."
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: d:\!!!!!!!!!\Free
|
577 |
-
#: Version\wck/wck-cptc.php:83
|
578 |
-
msgid "Custom Post Type Creation"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: d:\!!!!!!!!!\Free
|
582 |
-
#: Version\wck/wck-cptc.php:108
|
583 |
-
#: Version\wck/wck-ctc.php:91
|
584 |
-
msgid "Add New "
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: d:\!!!!!!!!!\Free
|
588 |
-
#: Version\wck/wck-cptc.php:109
|
589 |
-
#: Version\wck/wck-ctc.php:89
|
590 |
-
msgid "Edit "
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: d:\!!!!!!!!!\Free
|
594 |
-
#: Version\wck/wck-cptc.php:110
|
595 |
-
#: Version\wck/wck-ctc.php:92
|
596 |
-
msgid "New "
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: d:\!!!!!!!!!\Free
|
600 |
-
#: Version\wck/wck-cptc.php:111
|
601 |
-
#: Version\wck/wck-ctc.php:86
|
602 |
-
msgid "All "
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: d:\!!!!!!!!!\Free
|
606 |
-
#: Version\wck/wck-cptc.php:112
|
607 |
-
msgid "View "
|
608 |
-
msgstr ""
|
609 |
-
|
610 |
-
#: d:\!!!!!!!!!\Free
|
611 |
-
#: Version\wck/wck-cptc.php:113
|
612 |
-
#: Version\wck/wck-ctc.php:84
|
613 |
-
msgid "Search "
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: d:\!!!!!!!!!\Free
|
617 |
-
#: Version\wck/wck-cptc.php:114
|
618 |
-
#: Version\wck/wck-cptc.php:115
|
619 |
-
msgid "No "
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: d:\!!!!!!!!!\Free
|
623 |
-
#: Version\wck/wck-cptc.php:116
|
624 |
-
msgid "Parent Page"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: d:\!!!!!!!!!\Free
|
628 |
-
#: Version\wck/wck-cptc.php:169
|
629 |
-
#: Version\wck/wck-cptc.php:193
|
630 |
-
#: Version\wck/wck-ctc.php:134
|
631 |
-
#: Version\wck/wck-ctc.php:158
|
632 |
-
msgid "Show Advanced Label Options"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: d:\!!!!!!!!!\Free
|
636 |
-
#: Version\wck/wck-cptc.php:169
|
637 |
-
#: Version\wck/wck-cptc.php:193
|
638 |
-
#: Version\wck/wck-ctc.php:134
|
639 |
-
#: Version\wck/wck-ctc.php:158
|
640 |
-
msgid "Hide Advanced Label Options"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: d:\!!!!!!!!!\Free
|
644 |
-
#: Version\wck/wck-cptc.php:181
|
645 |
-
#: Version\wck/wck-cptc.php:207
|
646 |
-
#: Version\wck/wck-cptc.php:236
|
647 |
-
#: Version\wck/wck-ctc.php:146
|
648 |
-
#: Version\wck/wck-ctc.php:172
|
649 |
-
#: Version\wck/wck-ctc.php:201
|
650 |
-
msgid "Show Advanced Options"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: d:\!!!!!!!!!\Free
|
654 |
-
#: Version\wck/wck-cptc.php:181
|
655 |
-
#: Version\wck/wck-cptc.php:207
|
656 |
-
#: Version\wck/wck-cptc.php:236
|
657 |
-
#: Version\wck/wck-ctc.php:146
|
658 |
-
#: Version\wck/wck-ctc.php:172
|
659 |
-
#: Version\wck/wck-ctc.php:201
|
660 |
-
msgid "Hide Advanced Options"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: d:\!!!!!!!!!\Free
|
664 |
-
#: Version\wck/wck-cptc.php:222
|
665 |
-
#: Version\wck/wck-ctc.php:187
|
666 |
-
msgid "Show Advanced Labels"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: d:\!!!!!!!!!\Free
|
670 |
-
#: Version\wck/wck-cptc.php:222
|
671 |
-
#: Version\wck/wck-ctc.php:187
|
672 |
-
msgid "Hide Advanced Labels"
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: d:\!!!!!!!!!\Free
|
676 |
-
#: Version\wck/wck-cptc.php:283
|
677 |
-
msgid "WCK Custom Post Type Creator allows you to easily create custom post types for Wordpress without any programming knowledge.<br />Most of the common options for creating a post type are displayed by default while the advanced options and label are just one click away."
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: d:\!!!!!!!!!\Free
|
681 |
-
#: Version\wck/wck-cptc.php:288
|
682 |
-
#: Version\wck/wck-ctc.php:245
|
683 |
-
msgid "Labels"
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
#: d:\!!!!!!!!!\Free
|
687 |
-
#: Version\wck/wck-cptc.php:289
|
688 |
-
msgid "For simplicity you are required to introduce only the Singular Label and Plural Label from wchich the rest of the labels will be formed.<br />For a more detailed control of the labels you just have to click the \"Show Advanced Label Options\" link and all the availabel labels will be displayed."
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: d:\!!!!!!!!!\Free
|
692 |
-
#: Version\wck/wck-cptc.php:294
|
693 |
-
#: Version\wck/wck-ctc.php:251
|
694 |
-
msgid "Advanced Options"
|
695 |
-
msgstr ""
|
696 |
-
|
697 |
-
#: d:\!!!!!!!!!\Free
|
698 |
-
#: Version\wck/wck-cptc.php:295
|
699 |
-
msgid "The Advanced Options are set to the most common defaults for custom post types. To display them click the \"Show Advanced Options\" link."
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: d:\!!!!!!!!!\Free
|
703 |
-
#: Version\wck/wck-ctc.php:6
|
704 |
-
msgid "WCK Taxonomy Creator"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: d:\!!!!!!!!!\Free
|
708 |
-
#: Version\wck/wck-ctc.php:7
|
709 |
-
#: Version\wck/wck-sas.php:95
|
710 |
-
msgid "Taxonomy Creator"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: d:\!!!!!!!!!\Free
|
714 |
-
#: Version\wck/wck-ctc.php:35
|
715 |
-
msgid "Taxonomy"
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: d:\!!!!!!!!!\Free
|
719 |
-
#: Version\wck/wck-ctc.php:35
|
720 |
-
msgid "(The name of the taxonomy. Name must not contain capital letters or spaces.)"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: d:\!!!!!!!!!\Free
|
724 |
-
#: Version\wck/wck-ctc.php:36
|
725 |
-
msgid "ex. Writer"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: d:\!!!!!!!!!\Free
|
729 |
-
#: Version\wck/wck-ctc.php:37
|
730 |
-
msgid "ex. Writers"
|
731 |
-
msgstr ""
|
732 |
-
|
733 |
-
#: d:\!!!!!!!!!\Free
|
734 |
-
#: Version\wck/wck-ctc.php:38
|
735 |
-
msgid "Attach to"
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
-
#: d:\!!!!!!!!!\Free
|
739 |
-
#: Version\wck/wck-ctc.php:39
|
740 |
-
msgid "Is this taxonomy hierarchical (have descendants) like categories or not hierarchical like tags."
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: d:\!!!!!!!!!\Free
|
744 |
-
#: Version\wck/wck-ctc.php:41
|
745 |
-
msgid "ex. Search Writers"
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: d:\!!!!!!!!!\Free
|
749 |
-
#: Version\wck/wck-ctc.php:42
|
750 |
-
msgid "Popular Items"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: d:\!!!!!!!!!\Free
|
754 |
-
#: Version\wck/wck-ctc.php:42
|
755 |
-
msgid "ex. Popular Writers"
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: d:\!!!!!!!!!\Free
|
759 |
-
#: Version\wck/wck-ctc.php:43
|
760 |
-
msgid "ex. All Writers"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: d:\!!!!!!!!!\Free
|
764 |
-
#: Version\wck/wck-ctc.php:44
|
765 |
-
msgid "Parent Item"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: d:\!!!!!!!!!\Free
|
769 |
-
#: Version\wck/wck-ctc.php:44
|
770 |
-
msgid "ex. Parent Genre"
|
771 |
-
msgstr ""
|
772 |
-
|
773 |
-
#: d:\!!!!!!!!!\Free
|
774 |
-
#: Version\wck/wck-ctc.php:45
|
775 |
-
msgid "ex. Parent Genre:"
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: d:\!!!!!!!!!\Free
|
779 |
-
#: Version\wck/wck-ctc.php:46
|
780 |
-
msgid "ex. Edit Writer"
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: d:\!!!!!!!!!\Free
|
784 |
-
#: Version\wck/wck-ctc.php:47
|
785 |
-
msgid "Update Item"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: d:\!!!!!!!!!\Free
|
789 |
-
#: Version\wck/wck-ctc.php:47
|
790 |
-
msgid "ex. Update Writer"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#: d:\!!!!!!!!!\Free
|
794 |
-
#: Version\wck/wck-ctc.php:48
|
795 |
-
msgid "ex. Add New Writer"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: d:\!!!!!!!!!\Free
|
799 |
-
#: Version\wck/wck-ctc.php:49
|
800 |
-
msgid "New Item Name"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: d:\!!!!!!!!!\Free
|
804 |
-
#: Version\wck/wck-ctc.php:49
|
805 |
-
msgid "ex. New Writer Name"
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: d:\!!!!!!!!!\Free
|
809 |
-
#: Version\wck/wck-ctc.php:50
|
810 |
-
msgid "Separate Items With Commas"
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
#: d:\!!!!!!!!!\Free
|
814 |
-
#: Version\wck/wck-ctc.php:50
|
815 |
-
msgid "ex. Separate writers with commas"
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: d:\!!!!!!!!!\Free
|
819 |
-
#: Version\wck/wck-ctc.php:51
|
820 |
-
msgid "Add Or Remove Items"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: d:\!!!!!!!!!\Free
|
824 |
-
#: Version\wck/wck-ctc.php:51
|
825 |
-
msgid "ex. Add or remove writers"
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: d:\!!!!!!!!!\Free
|
829 |
-
#: Version\wck/wck-ctc.php:52
|
830 |
-
msgid "Choose From Most Used"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: d:\!!!!!!!!!\Free
|
834 |
-
#: Version\wck/wck-ctc.php:52
|
835 |
-
msgid "ex. Choose from the most used writers"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: d:\!!!!!!!!!\Free
|
839 |
-
#: Version\wck/wck-ctc.php:57
|
840 |
-
msgid "Show Tagcloud"
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: d:\!!!!!!!!!\Free
|
844 |
-
#: Version\wck/wck-ctc.php:57
|
845 |
-
msgid "Whether to allow the Tag Cloud widget to use this taxonomy."
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: d:\!!!!!!!!!\Free
|
849 |
-
#: Version\wck/wck-ctc.php:62
|
850 |
-
msgid "Custom Taxonomy Creation"
|
851 |
-
msgstr ""
|
852 |
-
|
853 |
-
#: d:\!!!!!!!!!\Free
|
854 |
-
#: Version\wck/wck-ctc.php:85
|
855 |
-
msgid "Popular "
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
#: d:\!!!!!!!!!\Free
|
859 |
-
#: Version\wck/wck-ctc.php:87
|
860 |
-
#: Version\wck/wck-ctc.php:88
|
861 |
-
msgid "Parent "
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: d:\!!!!!!!!!\Free
|
865 |
-
#: Version\wck/wck-ctc.php:90
|
866 |
-
msgid "Update "
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: d:\!!!!!!!!!\Free
|
870 |
-
#: Version\wck/wck-ctc.php:93
|
871 |
-
msgid "Separate "
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: d:\!!!!!!!!!\Free
|
875 |
-
#: Version\wck/wck-ctc.php:94
|
876 |
-
msgid "Add or remove "
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: d:\!!!!!!!!!\Free
|
880 |
-
#: Version\wck/wck-ctc.php:95
|
881 |
-
msgid "Choose from the most used "
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: d:\!!!!!!!!!\Free
|
885 |
-
#: Version\wck/wck-ctc.php:240
|
886 |
-
msgid "WCK Custom Taxonomy Creator allows you to easily create custom taxonomy for Wordpress without any programming knowledge.<br />Most of the common options for creating a taxonomy are displayed by default while the advanced and label options are just one click away."
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: d:\!!!!!!!!!\Free
|
890 |
-
#: Version\wck/wck-ctc.php:246
|
891 |
-
msgid "For simplicity you are required to introduce only the Singular Label and Plural Label from wchich the rest of the labels will be formed.<br />For a more detailed control of the labels you just have to click the \"Show Advanced Label Options\" link and all the availabel labels will be displayed"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: d:\!!!!!!!!!\Free
|
895 |
-
#: Version\wck/wck-ctc.php:252
|
896 |
-
msgid "The Advanced Options are set to the most common defaults for taxonomies. To display them click the \"Show Advanced Options\" link."
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: d:\!!!!!!!!!\Free
|
900 |
-
#: Version\wck/wck-sas.php:15
|
901 |
-
msgid "Start Here & General Settings"
|
902 |
-
msgstr ""
|
903 |
-
|
904 |
-
#: d:\!!!!!!!!!\Free
|
905 |
-
#: Version\wck/wck-sas.php:16
|
906 |
-
msgid "Start and Settings"
|
907 |
-
msgstr ""
|
908 |
-
|
909 |
-
#: d:\!!!!!!!!!\Free
|
910 |
-
#: Version\wck/wck-sas.php:34
|
911 |
-
msgid "Serial Number"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: d:\!!!!!!!!!\Free
|
915 |
-
#: Version\wck/wck-sas.php:34
|
916 |
-
msgid "Please enter your serial number. For example: (e.g. WCKPRO-11-SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: d:\!!!!!!!!!\Free
|
920 |
-
#: Version\wck/wck-sas.php:40
|
921 |
-
msgid "Register Your Version"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: d:\!!!!!!!!!\Free
|
925 |
-
#: Version\wck/wck-sas.php:67
|
926 |
-
#, php-format
|
927 |
-
msgid "Welcome to %s"
|
928 |
-
msgstr ""
|
929 |
-
|
930 |
-
#: d:\!!!!!!!!!\Free
|
931 |
-
#: Version\wck/wck-sas.php:68
|
932 |
-
msgid "WCK helps you to improve the usability of the sites you build, making them manageable by your clients. Your very own repeater custom fields and groups, custom post type and taxonomy creator with front-end posting."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: d:\!!!!!!!!!\Free
|
936 |
-
#: Version\wck/wck-sas.php:69
|
937 |
-
#, php-format
|
938 |
-
msgid "Version %s"
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: d:\!!!!!!!!!\Free
|
942 |
-
#: Version\wck/wck-sas.php:83
|
943 |
-
msgid "Quick Start-Up Guide"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: d:\!!!!!!!!!\Free
|
947 |
-
#: Version\wck/wck-sas.php:88
|
948 |
-
msgid "WordPress Creation Kit Pro has support for a wide list of custom fields: WYSIWYG Editor, Upload Field, Date, User, Country, Text Input, Textarea, Drop-Down, Select, Checkboxes, Radio Buttons"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: d:\!!!!!!!!!\Free
|
952 |
-
#: Version\wck/wck-sas.php:89
|
953 |
-
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-fields-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: d:\!!!!!!!!!\Free
|
957 |
-
#: Version\wck/wck-sas.php:92
|
958 |
-
msgid "Create & manage all your custom content types"
|
959 |
-
msgstr ""
|
960 |
-
|
961 |
-
#: d:\!!!!!!!!!\Free
|
962 |
-
#: Version\wck/wck-sas.php:93
|
963 |
-
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-post-type-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: d:\!!!!!!!!!\Free
|
967 |
-
#: Version\wck/wck-sas.php:96
|
968 |
-
msgid "Create new taxonomies for filtering your content"
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: d:\!!!!!!!!!\Free
|
972 |
-
#: Version\wck/wck-sas.php:97
|
973 |
-
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-taxonomy-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: d:\!!!!!!!!!\Free
|
977 |
-
#: Version\wck/wck-sas.php:99
|
978 |
-
msgid "Front-End Posting (available in the Pro version)"
|
979 |
-
msgstr ""
|
980 |
-
|
981 |
-
#: d:\!!!!!!!!!\Free
|
982 |
-
#: Version\wck/wck-sas.php:100
|
983 |
-
msgid "Create and edit posts/pages or custom posts directly from the front-end."
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: d:\!!!!!!!!!\Free
|
987 |
-
#: Version\wck/wck-sas.php:101
|
988 |
-
msgid "Available shortcodes:"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: d:\!!!!!!!!!\Free
|
992 |
-
#: Version\wck/wck-sas.php:103
|
993 |
-
msgid "[fep form_name=\"front-end-post-name\"] - displayes your form in the front-end"
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#: d:\!!!!!!!!!\Free
|
997 |
-
#: Version\wck/wck-sas.php:104
|
998 |
-
msgid "[fep-dashboard] - the quick-dashboard allows: simple profile updates, editing/deletion of posts, pages and custom post types."
|
999 |
-
msgstr ""
|
1000 |
-
|
1001 |
-
#: d:\!!!!!!!!!\Free
|
1002 |
-
#: Version\wck/wck-sas.php:105
|
1003 |
-
msgid "[fep-lilo] - login/logout/register widget with the simple usage of a shortcode. Can be added in a page or text widget."
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: d:\!!!!!!!!!\Free
|
1007 |
-
#: Version\wck/wck-sas.php:107
|
1008 |
-
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/frontend-posting/\" target=\"_blank\">here</a> about how to display them in your templates."
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: d:\!!!!!!!!!\Free
|
1012 |
-
#: Version\wck/wck-sas.php:109
|
1013 |
-
msgid "Option Pages (available in the Pro version)"
|
1014 |
-
msgstr ""
|
1015 |
-
|
1016 |
-
#: d:\!!!!!!!!!\Free
|
1017 |
-
#: Version\wck/wck-sas.php:110
|
1018 |
-
msgid "The Options Page Creator Allows you to create a new menu item called \"Options\"(for example) which can hold advanced custom field groups. Perfect for theme options or a simple UI for your custom plugin (like a simple testimonials section in the front-end)."
|
1019 |
-
msgstr ""
|
1020 |
-
|
1021 |
-
#: d:\!!!!!!!!!\Free
|
1022 |
-
#: Version\wck/wck-sas.php:137
|
1023 |
-
msgid "Please enter your serial number to get access to automatic updates. If you do not have one, you can <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/\" target=\"_blank\">Get One Here</a>."
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: d:\!!!!!!!!!\Free
|
1027 |
-
#: Version\wck/wck-sas.php:139
|
1028 |
-
msgid "Oups! Our serial verification server is down. Please try again later."
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: d:\!!!!!!!!!\Free
|
1032 |
-
#: Version\wck/wck-sas.php:141
|
1033 |
-
msgid "Oups! It seems the serial number you entered was not found in our database. To find out what's your serial number log-in to <a href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\">your account page</a> over at Cozmoslabs.com"
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: d:\!!!!!!!!!\Free
|
1037 |
-
#: Version\wck/wck-sas.php:143
|
1038 |
-
msgid "Wohoo! Your serial number is valid and you have access to automatic updates."
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#: d:\!!!!!!!!!\Free
|
1042 |
-
#: Version\wck/wck-sas.php:145
|
1043 |
-
msgid "It seems your serial number has <strong>expired</strong>. You'll continue to get automatic updates if update your serial number for another year from <a href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"><strong>your account page</strong></a>."
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: d:\!!!!!!!!!\Free
|
1047 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:282
|
1048 |
-
msgid "Add Entry"
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: d:\!!!!!!!!!\Free
|
1052 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:332
|
1053 |
-
msgid "Save Changes"
|
1054 |
-
msgstr ""
|
1055 |
-
|
1056 |
-
#: d:\!!!!!!!!!\Free
|
1057 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:333
|
1058 |
-
msgid "Cancel"
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#: d:\!!!!!!!!!\Free
|
1062 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1063 |
-
msgid "Content"
|
1064 |
-
msgstr ""
|
1065 |
-
|
1066 |
-
#: d:\!!!!!!!!!\Free
|
1067 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1068 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1069 |
-
msgid "Edit"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: d:\!!!!!!!!!\Free
|
1073 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1074 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1075 |
-
msgid "Delete"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: d:\!!!!!!!!!\Free
|
1079 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1080 |
-
msgid "Edit this item"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: d:\!!!!!!!!!\Free
|
1084 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1085 |
-
msgid "Delete this item"
|
1086 |
-
msgstr ""
|
1087 |
-
|
1088 |
-
#: d:\!!!!!!!!!\Free
|
1089 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:506
|
1090 |
-
msgid "Please enter a value for the required field "
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#: d:\!!!!!!!!!\Free
|
1094 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:788
|
1095 |
-
msgid "Select File"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: d:\!!!!!!!!!\Free
|
1099 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:828
|
1100 |
-
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:28
|
1101 |
-
msgid "Remove"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: d:\!!!!!!!!!\Free
|
1105 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:866
|
1106 |
-
msgid "Syncronize WCK"
|
1107 |
-
msgstr ""
|
1108 |
-
|
1109 |
-
#: d:\!!!!!!!!!\Free
|
1110 |
-
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:878
|
1111 |
-
msgid "Syncronize WCK Translation"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: d:\!!!!!!!!!\Free
|
1115 |
-
#: Version\wck/wordpress-creation-kit-api/fields/select.php:11
|
1116 |
-
msgid "...Chose"
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: d:\!!!!!!!!!\Free
|
1120 |
-
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:40
|
1121 |
-
msgid "Upload "
|
1122 |
-
msgstr ""
|
1123 |
-
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WCK\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-13 16:28+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-06-13 16:28+0200\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SearchPath-0: d:\\!!!!!!!!!\\Free Version\\wck\n"
|
15 |
+
|
16 |
+
#: d:\!!!!!!!!!\Free
|
17 |
+
#: Version\wck/wck-cfc.php:26
|
18 |
+
msgid "Add New Meta Box"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: d:\!!!!!!!!!\Free
|
22 |
+
#: Version\wck/wck-cfc.php:27
|
23 |
+
msgid "Edit Meta Box"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: d:\!!!!!!!!!\Free
|
27 |
+
#: Version\wck/wck-cfc.php:28
|
28 |
+
msgid "New Meta Box"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: d:\!!!!!!!!!\Free
|
32 |
+
#: Version\wck/wck-cfc.php:29
|
33 |
+
#: Version\wck/wck-sas.php:87
|
34 |
+
msgid "Custom Fields Creator"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: d:\!!!!!!!!!\Free
|
38 |
+
#: Version\wck/wck-cfc.php:30
|
39 |
+
msgid "View Meta Box"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: d:\!!!!!!!!!\Free
|
43 |
+
#: Version\wck/wck-cfc.php:31
|
44 |
+
msgid "Search Meta Boxes"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: d:\!!!!!!!!!\Free
|
48 |
+
#: Version\wck/wck-cfc.php:32
|
49 |
+
msgid "No Meta Boxes found"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: d:\!!!!!!!!!\Free
|
53 |
+
#: Version\wck/wck-cfc.php:33
|
54 |
+
msgid "No Meta Boxes found in Trash"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: d:\!!!!!!!!!\Free
|
58 |
+
#: Version\wck/wck-cfc.php:35
|
59 |
+
msgid "Custom Meta Boxes"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: d:\!!!!!!!!!\Free
|
63 |
+
#: Version\wck/wck-cfc.php:84
|
64 |
+
msgid "Meta name"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: d:\!!!!!!!!!\Free
|
68 |
+
#: Version\wck/wck-cfc.php:84
|
69 |
+
msgid "The name of the meta field. It is the name by which you will query the data in the frontend. Must be unique, only lowercase letters, no spaces and no special characters."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: d:\!!!!!!!!!\Free
|
73 |
+
#: Version\wck/wck-cfc.php:85
|
74 |
+
#: Version\wck/wck-cfc.php:442
|
75 |
+
msgid "Post Type"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: d:\!!!!!!!!!\Free
|
79 |
+
#: Version\wck/wck-cfc.php:85
|
80 |
+
msgid "What post type the meta box should be attached to"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: d:\!!!!!!!!!\Free
|
84 |
+
#: Version\wck/wck-cfc.php:86
|
85 |
+
msgid "Repeater"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: d:\!!!!!!!!!\Free
|
89 |
+
#: Version\wck/wck-cfc.php:86
|
90 |
+
msgid "Whether the box supports just one entry or if it is a repeater field. By default it is a single field."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: d:\!!!!!!!!!\Free
|
94 |
+
#: Version\wck/wck-cfc.php:87
|
95 |
+
msgid "Sortable"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: d:\!!!!!!!!!\Free
|
99 |
+
#: Version\wck/wck-cfc.php:87
|
100 |
+
msgid "Whether the entries are sortable or not. Thsi is valid for repeater fields."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: d:\!!!!!!!!!\Free
|
104 |
+
#: Version\wck/wck-cfc.php:88
|
105 |
+
msgid "Post ID"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: d:\!!!!!!!!!\Free
|
109 |
+
#: Version\wck/wck-cfc.php:88
|
110 |
+
msgid "ID of a post on which the meta box should appear."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: d:\!!!!!!!!!\Free
|
114 |
+
#: Version\wck/wck-cfc.php:92
|
115 |
+
#: Version\wck/wck-cfc.php:443
|
116 |
+
msgid "Page Template"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: d:\!!!!!!!!!\Free
|
120 |
+
#: Version\wck/wck-cfc.php:92
|
121 |
+
msgid "If post type is \"page\" you can further select a page templete. The meta box will only appear on the page that has that selected page template."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: d:\!!!!!!!!!\Free
|
125 |
+
#: Version\wck/wck-cfc.php:97
|
126 |
+
#: Version\wck/wck-cfc.php:536
|
127 |
+
msgid "Meta Box Arguments"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: d:\!!!!!!!!!\Free
|
131 |
+
#: Version\wck/wck-cfc.php:114
|
132 |
+
msgid "Field Title"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: d:\!!!!!!!!!\Free
|
136 |
+
#: Version\wck/wck-cfc.php:114
|
137 |
+
msgid "Title of the field. A slug will automatically be generated."
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: d:\!!!!!!!!!\Free
|
141 |
+
#: Version\wck/wck-cfc.php:115
|
142 |
+
msgid "Field Type"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: d:\!!!!!!!!!\Free
|
146 |
+
#: Version\wck/wck-cfc.php:115
|
147 |
+
msgid "The field type"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: d:\!!!!!!!!!\Free
|
151 |
+
#: Version\wck/wck-cfc.php:116
|
152 |
+
#: Version\wck/wck-cptc.php:48
|
153 |
+
msgid "Description"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: d:\!!!!!!!!!\Free
|
157 |
+
#: Version\wck/wck-cfc.php:117
|
158 |
+
msgid "Required"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: d:\!!!!!!!!!\Free
|
162 |
+
#: Version\wck/wck-cfc.php:117
|
163 |
+
msgid "Whether the field is required or not"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: d:\!!!!!!!!!\Free
|
167 |
+
#: Version\wck/wck-cfc.php:118
|
168 |
+
msgid "Default Value"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: d:\!!!!!!!!!\Free
|
172 |
+
#: Version\wck/wck-cfc.php:118
|
173 |
+
msgid "Default value of the field. For Checkboxes if there are multiple values separete them with a \",\""
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: d:\!!!!!!!!!\Free
|
177 |
+
#: Version\wck/wck-cfc.php:119
|
178 |
+
msgid "Options"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: d:\!!!!!!!!!\Free
|
182 |
+
#: Version\wck/wck-cfc.php:119
|
183 |
+
msgid "Options for field types \"select\", \"checkbox\" and \"radio\". For multiple options separete them with a \",\". You can use the following structure if you want the label to be different from the value: %LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: d:\!!!!!!!!!\Free
|
187 |
+
#: Version\wck/wck-cfc.php:120
|
188 |
+
msgid "Attach upload to post"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: d:\!!!!!!!!!\Free
|
192 |
+
#: Version\wck/wck-cfc.php:120
|
193 |
+
msgid "Whether or not the uploads should be attached to the post"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: d:\!!!!!!!!!\Free
|
197 |
+
#: Version\wck/wck-cfc.php:127
|
198 |
+
#: Version\wck/wck-cfc.php:542
|
199 |
+
msgid "Meta Box Fields"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: d:\!!!!!!!!!\Free
|
203 |
+
#: Version\wck/wck-cfc.php:140
|
204 |
+
msgid "Enter below the arguments for the meta box."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: d:\!!!!!!!!!\Free
|
208 |
+
#: Version\wck/wck-cfc.php:220
|
209 |
+
msgid "Slug:"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: d:\!!!!!!!!!\Free
|
213 |
+
#: Version\wck/wck-cfc.php:220
|
214 |
+
msgid "(Note:changing the slug when you already have a lot of existing entries may result in unexpected behavior.)"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: d:\!!!!!!!!!\Free
|
218 |
+
#: Version\wck/wck-cfc.php:355
|
219 |
+
msgid "Choose a different Meta Name as this one contains spaces\n"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: d:\!!!!!!!!!\Free
|
223 |
+
#: Version\wck/wck-cfc.php:357
|
224 |
+
msgid "Choose a different Meta Name as this one already exists\n"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: d:\!!!!!!!!!\Free
|
228 |
+
#: Version\wck/wck-cfc.php:441
|
229 |
+
msgid "Id"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: d:\!!!!!!!!!\Free
|
233 |
+
#: Version\wck/wck-cfc.php:506
|
234 |
+
#: Version\wck/wck-cptc.php:257
|
235 |
+
#: Version\wck/wck-ctc.php:215
|
236 |
+
#: Version\wck/wck.php:38
|
237 |
+
msgid "Wordpress Creation Kit"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: d:\!!!!!!!!!\Free
|
241 |
+
#: Version\wck/wck-cfc.php:530
|
242 |
+
#: Version\wck/wck-cptc.php:282
|
243 |
+
#: Version\wck/wck-ctc.php:239
|
244 |
+
msgid "Overview"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: d:\!!!!!!!!!\Free
|
248 |
+
#: Version\wck/wck-cfc.php:531
|
249 |
+
msgid "WCK Custom Fields Creator allows you to easily create custom meta boxes for Wordpress without any programming knowledge."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: d:\!!!!!!!!!\Free
|
253 |
+
#: Version\wck/wck-cfc.php:537
|
254 |
+
msgid "Define here the rules for the meta box. This rules are used to set up where the meta box will appear, it's type and also the meta key name stored in the database. The name of the entry (Enter title here) will be used as the meta box title."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: d:\!!!!!!!!!\Free
|
258 |
+
#: Version\wck/wck-cfc.php:543
|
259 |
+
msgid "Define here the fields contained in the meta box. From \"Field Title\" a slug will be automatically generated and you will use this slug to display the data in the frontend."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: d:\!!!!!!!!!\Free
|
263 |
+
#: Version\wck/wck-cfc.php:548
|
264 |
+
msgid "CFC Frontend Example"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: d:\!!!!!!!!!\Free
|
268 |
+
#: Version\wck/wck-cfc.php:549
|
269 |
+
msgid "Let's consider we have a meta box with the following arguments:<br /> - Meta name: books <br /> - Post Type: post <br />And we also have two fields deffined:<br /> - A text field with the Field Title: Book name <br /> - And another text field with the Field Title: Author name "
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: d:\!!!!!!!!!\Free
|
273 |
+
#: Version\wck/wck-cfc.php:549
|
274 |
+
msgid "You will notice that slugs will automatically be created for the two text fields. For \"Book name\" the slug will be \"book-name\" and for \"Author name\" the slug will be \"author-name\""
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: d:\!!!!!!!!!\Free
|
278 |
+
#: Version\wck/wck-cfc.php:549
|
279 |
+
msgid "Let's see what the code for displaying the meta box values in single.php of your theme would be:"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: d:\!!!!!!!!!\Free
|
283 |
+
#: Version\wck/wck-cfc.php:549
|
284 |
+
msgid "So as you can see the Meta Name \"books\" is used as the $key parameter of the funtion <a href=\"http://codex.wordpress.org/Function_Reference/get_post_meta\" target=\"_blank\">get_post_meta()</a> and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as post meta in a multidimensioanl array. In our case the array would be: <br /><pre>array( array( \"book-name\" => \"The Hitchhiker's Guide To The Galaxy\", \"author-name\" => \"Douglas Adams\" ), array( \"book-name\" => \"Ender's Game\", \"author-name\" => \"Orson Scott Card\" ) );</pre> This is true even for single entries."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: d:\!!!!!!!!!\Free
|
288 |
+
#: Version\wck/wck-cfc.php:577
|
289 |
+
msgid "Metabox updated."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: d:\!!!!!!!!!\Free
|
293 |
+
#: Version\wck/wck-cptc.php:6
|
294 |
+
msgid "WCK Post Type Creator"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: d:\!!!!!!!!!\Free
|
298 |
+
#: Version\wck/wck-cptc.php:7
|
299 |
+
#: Version\wck/wck-sas.php:91
|
300 |
+
msgid "Post Type Creator"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: d:\!!!!!!!!!\Free
|
304 |
+
#: Version\wck/wck-cptc.php:47
|
305 |
+
msgid "Post type"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: d:\!!!!!!!!!\Free
|
309 |
+
#: Version\wck/wck-cptc.php:47
|
310 |
+
msgid "(max. 20 characters, can not contain capital letters, hyphens, or spaces)"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: d:\!!!!!!!!!\Free
|
314 |
+
#: Version\wck/wck-cptc.php:48
|
315 |
+
msgid "A short descriptive summary of what the post type is."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: d:\!!!!!!!!!\Free
|
319 |
+
#: Version\wck/wck-cptc.php:49
|
320 |
+
#: Version\wck/wck-ctc.php:36
|
321 |
+
msgid "Singular Label"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: d:\!!!!!!!!!\Free
|
325 |
+
#: Version\wck/wck-cptc.php:49
|
326 |
+
msgid "ex. Book"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: d:\!!!!!!!!!\Free
|
330 |
+
#: Version\wck/wck-cptc.php:50
|
331 |
+
#: Version\wck/wck-ctc.php:37
|
332 |
+
msgid "Plural Label"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: d:\!!!!!!!!!\Free
|
336 |
+
#: Version\wck/wck-cptc.php:50
|
337 |
+
msgid "ex. Books"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: d:\!!!!!!!!!\Free
|
341 |
+
#: Version\wck/wck-cptc.php:51
|
342 |
+
#: Version\wck/wck-ctc.php:39
|
343 |
+
msgid "Hierarchical"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: d:\!!!!!!!!!\Free
|
347 |
+
#: Version\wck/wck-cptc.php:51
|
348 |
+
msgid "Whether the post type is hierarchical. Allows Parent to be specified."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: d:\!!!!!!!!!\Free
|
352 |
+
#: Version\wck/wck-cptc.php:52
|
353 |
+
msgid "Has Archive"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: d:\!!!!!!!!!\Free
|
357 |
+
#: Version\wck/wck-cptc.php:52
|
358 |
+
msgid "Enables post type archives. Will use string as archive slug. Will generate the proper rewrite rules if rewrite is enabled."
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: d:\!!!!!!!!!\Free
|
362 |
+
#: Version\wck/wck-cptc.php:53
|
363 |
+
msgid "Supports"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: d:\!!!!!!!!!\Free
|
367 |
+
#: Version\wck/wck-cptc.php:56
|
368 |
+
msgid "Add New"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: d:\!!!!!!!!!\Free
|
372 |
+
#: Version\wck/wck-cptc.php:56
|
373 |
+
msgid "ex. Add New"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: d:\!!!!!!!!!\Free
|
377 |
+
#: Version\wck/wck-cptc.php:57
|
378 |
+
#: Version\wck/wck-ctc.php:48
|
379 |
+
msgid "Add New Item"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: d:\!!!!!!!!!\Free
|
383 |
+
#: Version\wck/wck-cptc.php:57
|
384 |
+
msgid "ex. Add New Book"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: d:\!!!!!!!!!\Free
|
388 |
+
#: Version\wck/wck-cptc.php:58
|
389 |
+
#: Version\wck/wck-ctc.php:46
|
390 |
+
msgid "Edit Item"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: d:\!!!!!!!!!\Free
|
394 |
+
#: Version\wck/wck-cptc.php:58
|
395 |
+
msgid "ex. Edit Book"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: d:\!!!!!!!!!\Free
|
399 |
+
#: Version\wck/wck-cptc.php:59
|
400 |
+
msgid "New Item"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: d:\!!!!!!!!!\Free
|
404 |
+
#: Version\wck/wck-cptc.php:59
|
405 |
+
msgid "ex. New Book"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: d:\!!!!!!!!!\Free
|
409 |
+
#: Version\wck/wck-cptc.php:60
|
410 |
+
#: Version\wck/wck-ctc.php:43
|
411 |
+
msgid "All Items"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: d:\!!!!!!!!!\Free
|
415 |
+
#: Version\wck/wck-cptc.php:60
|
416 |
+
msgid "ex. All Books"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: d:\!!!!!!!!!\Free
|
420 |
+
#: Version\wck/wck-cptc.php:61
|
421 |
+
msgid "View Items"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: d:\!!!!!!!!!\Free
|
425 |
+
#: Version\wck/wck-cptc.php:61
|
426 |
+
msgid "ex. View Books"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: d:\!!!!!!!!!\Free
|
430 |
+
#: Version\wck/wck-cptc.php:62
|
431 |
+
#: Version\wck/wck-ctc.php:41
|
432 |
+
msgid "Search Items"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: d:\!!!!!!!!!\Free
|
436 |
+
#: Version\wck/wck-cptc.php:62
|
437 |
+
msgid "ex. Search Books"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: d:\!!!!!!!!!\Free
|
441 |
+
#: Version\wck/wck-cptc.php:63
|
442 |
+
msgid "Not Found"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: d:\!!!!!!!!!\Free
|
446 |
+
#: Version\wck/wck-cptc.php:63
|
447 |
+
msgid "ex. No Books Found"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: d:\!!!!!!!!!\Free
|
451 |
+
#: Version\wck/wck-cptc.php:64
|
452 |
+
msgid "Not Found In Trash"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: d:\!!!!!!!!!\Free
|
456 |
+
#: Version\wck/wck-cptc.php:64
|
457 |
+
msgid "ex. No Books found in Trash"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: d:\!!!!!!!!!\Free
|
461 |
+
#: Version\wck/wck-cptc.php:65
|
462 |
+
#: Version\wck/wck-ctc.php:45
|
463 |
+
msgid "Parent Item Colon"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: d:\!!!!!!!!!\Free
|
467 |
+
#: Version\wck/wck-cptc.php:65
|
468 |
+
msgid "the parent text. This string isn't used on non-hierarchical types. In hierarchical ones the default is Parent Page "
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: d:\!!!!!!!!!\Free
|
472 |
+
#: Version\wck/wck-cptc.php:66
|
473 |
+
#: Version\wck/wck-ctc.php:53
|
474 |
+
msgid "Menu Name"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: d:\!!!!!!!!!\Free
|
478 |
+
#: Version\wck/wck-cptc.php:68
|
479 |
+
#: Version\wck/wck-ctc.php:55
|
480 |
+
msgid "Public"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: d:\!!!!!!!!!\Free
|
484 |
+
#: Version\wck/wck-cptc.php:68
|
485 |
+
#: Version\wck/wck-ctc.php:55
|
486 |
+
msgid "Meta argument used to define default values for publicly_queriable, show_ui, show_in_nav_menus and exclude_from_search"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: d:\!!!!!!!!!\Free
|
490 |
+
#: Version\wck/wck-cptc.php:69
|
491 |
+
#: Version\wck/wck-ctc.php:56
|
492 |
+
msgid "Show UI"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: d:\!!!!!!!!!\Free
|
496 |
+
#: Version\wck/wck-cptc.php:69
|
497 |
+
#: Version\wck/wck-ctc.php:56
|
498 |
+
msgid "Whether to generate a default UI for managing this post type."
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: d:\!!!!!!!!!\Free
|
502 |
+
#: Version\wck/wck-cptc.php:70
|
503 |
+
msgid "Show In Nav Menus"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: d:\!!!!!!!!!\Free
|
507 |
+
#: Version\wck/wck-cptc.php:70
|
508 |
+
msgid "Whether post_type is available for selection in navigation menus."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: d:\!!!!!!!!!\Free
|
512 |
+
#: Version\wck/wck-cptc.php:71
|
513 |
+
msgid "Show In Menu"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: d:\!!!!!!!!!\Free
|
517 |
+
#: Version\wck/wck-cptc.php:71
|
518 |
+
msgid "Whether to show the post type in the admin menu. show_ui must be true. \"false\" - do not display in the admin menu, \"true\" - display as a top level menu, \"some string\" - If an existing top level page such as \"tools.php\" or \"edit.php?post_type=page\", the post type will be placed as a sub menu of that."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: d:\!!!!!!!!!\Free
|
522 |
+
#: Version\wck/wck-cptc.php:72
|
523 |
+
msgid "Menu Position"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: d:\!!!!!!!!!\Free
|
527 |
+
#: Version\wck/wck-cptc.php:72
|
528 |
+
msgid "The position in the menu order the post type should appear."
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: d:\!!!!!!!!!\Free
|
532 |
+
#: Version\wck/wck-cptc.php:73
|
533 |
+
msgid "Menu Icon"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: d:\!!!!!!!!!\Free
|
537 |
+
#: Version\wck/wck-cptc.php:73
|
538 |
+
msgid "The url to the icon to be used for this menu."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: d:\!!!!!!!!!\Free
|
542 |
+
#: Version\wck/wck-cptc.php:74
|
543 |
+
msgid "Capability Type"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: d:\!!!!!!!!!\Free
|
547 |
+
#: Version\wck/wck-cptc.php:74
|
548 |
+
msgid "The string to use to build the read, edit, and delete capabilities."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: d:\!!!!!!!!!\Free
|
552 |
+
#: Version\wck/wck-cptc.php:75
|
553 |
+
msgid "Taxonomies"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: d:\!!!!!!!!!\Free
|
557 |
+
#: Version\wck/wck-cptc.php:76
|
558 |
+
msgid "Rewrite"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: d:\!!!!!!!!!\Free
|
562 |
+
#: Version\wck/wck-cptc.php:76
|
563 |
+
msgid "Rewrite permalinks."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: d:\!!!!!!!!!\Free
|
567 |
+
#: Version\wck/wck-cptc.php:77
|
568 |
+
msgid "Rewrite Slug"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: d:\!!!!!!!!!\Free
|
572 |
+
#: Version\wck/wck-cptc.php:77
|
573 |
+
msgid "Defaults to post type name."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: d:\!!!!!!!!!\Free
|
577 |
+
#: Version\wck/wck-cptc.php:83
|
578 |
+
msgid "Custom Post Type Creation"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: d:\!!!!!!!!!\Free
|
582 |
+
#: Version\wck/wck-cptc.php:108
|
583 |
+
#: Version\wck/wck-ctc.php:91
|
584 |
+
msgid "Add New "
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: d:\!!!!!!!!!\Free
|
588 |
+
#: Version\wck/wck-cptc.php:109
|
589 |
+
#: Version\wck/wck-ctc.php:89
|
590 |
+
msgid "Edit "
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: d:\!!!!!!!!!\Free
|
594 |
+
#: Version\wck/wck-cptc.php:110
|
595 |
+
#: Version\wck/wck-ctc.php:92
|
596 |
+
msgid "New "
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: d:\!!!!!!!!!\Free
|
600 |
+
#: Version\wck/wck-cptc.php:111
|
601 |
+
#: Version\wck/wck-ctc.php:86
|
602 |
+
msgid "All "
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: d:\!!!!!!!!!\Free
|
606 |
+
#: Version\wck/wck-cptc.php:112
|
607 |
+
msgid "View "
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: d:\!!!!!!!!!\Free
|
611 |
+
#: Version\wck/wck-cptc.php:113
|
612 |
+
#: Version\wck/wck-ctc.php:84
|
613 |
+
msgid "Search "
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: d:\!!!!!!!!!\Free
|
617 |
+
#: Version\wck/wck-cptc.php:114
|
618 |
+
#: Version\wck/wck-cptc.php:115
|
619 |
+
msgid "No "
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: d:\!!!!!!!!!\Free
|
623 |
+
#: Version\wck/wck-cptc.php:116
|
624 |
+
msgid "Parent Page"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: d:\!!!!!!!!!\Free
|
628 |
+
#: Version\wck/wck-cptc.php:169
|
629 |
+
#: Version\wck/wck-cptc.php:193
|
630 |
+
#: Version\wck/wck-ctc.php:134
|
631 |
+
#: Version\wck/wck-ctc.php:158
|
632 |
+
msgid "Show Advanced Label Options"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: d:\!!!!!!!!!\Free
|
636 |
+
#: Version\wck/wck-cptc.php:169
|
637 |
+
#: Version\wck/wck-cptc.php:193
|
638 |
+
#: Version\wck/wck-ctc.php:134
|
639 |
+
#: Version\wck/wck-ctc.php:158
|
640 |
+
msgid "Hide Advanced Label Options"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: d:\!!!!!!!!!\Free
|
644 |
+
#: Version\wck/wck-cptc.php:181
|
645 |
+
#: Version\wck/wck-cptc.php:207
|
646 |
+
#: Version\wck/wck-cptc.php:236
|
647 |
+
#: Version\wck/wck-ctc.php:146
|
648 |
+
#: Version\wck/wck-ctc.php:172
|
649 |
+
#: Version\wck/wck-ctc.php:201
|
650 |
+
msgid "Show Advanced Options"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: d:\!!!!!!!!!\Free
|
654 |
+
#: Version\wck/wck-cptc.php:181
|
655 |
+
#: Version\wck/wck-cptc.php:207
|
656 |
+
#: Version\wck/wck-cptc.php:236
|
657 |
+
#: Version\wck/wck-ctc.php:146
|
658 |
+
#: Version\wck/wck-ctc.php:172
|
659 |
+
#: Version\wck/wck-ctc.php:201
|
660 |
+
msgid "Hide Advanced Options"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: d:\!!!!!!!!!\Free
|
664 |
+
#: Version\wck/wck-cptc.php:222
|
665 |
+
#: Version\wck/wck-ctc.php:187
|
666 |
+
msgid "Show Advanced Labels"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: d:\!!!!!!!!!\Free
|
670 |
+
#: Version\wck/wck-cptc.php:222
|
671 |
+
#: Version\wck/wck-ctc.php:187
|
672 |
+
msgid "Hide Advanced Labels"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: d:\!!!!!!!!!\Free
|
676 |
+
#: Version\wck/wck-cptc.php:283
|
677 |
+
msgid "WCK Custom Post Type Creator allows you to easily create custom post types for Wordpress without any programming knowledge.<br />Most of the common options for creating a post type are displayed by default while the advanced options and label are just one click away."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: d:\!!!!!!!!!\Free
|
681 |
+
#: Version\wck/wck-cptc.php:288
|
682 |
+
#: Version\wck/wck-ctc.php:245
|
683 |
+
msgid "Labels"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: d:\!!!!!!!!!\Free
|
687 |
+
#: Version\wck/wck-cptc.php:289
|
688 |
+
msgid "For simplicity you are required to introduce only the Singular Label and Plural Label from wchich the rest of the labels will be formed.<br />For a more detailed control of the labels you just have to click the \"Show Advanced Label Options\" link and all the availabel labels will be displayed."
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: d:\!!!!!!!!!\Free
|
692 |
+
#: Version\wck/wck-cptc.php:294
|
693 |
+
#: Version\wck/wck-ctc.php:251
|
694 |
+
msgid "Advanced Options"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: d:\!!!!!!!!!\Free
|
698 |
+
#: Version\wck/wck-cptc.php:295
|
699 |
+
msgid "The Advanced Options are set to the most common defaults for custom post types. To display them click the \"Show Advanced Options\" link."
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: d:\!!!!!!!!!\Free
|
703 |
+
#: Version\wck/wck-ctc.php:6
|
704 |
+
msgid "WCK Taxonomy Creator"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: d:\!!!!!!!!!\Free
|
708 |
+
#: Version\wck/wck-ctc.php:7
|
709 |
+
#: Version\wck/wck-sas.php:95
|
710 |
+
msgid "Taxonomy Creator"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: d:\!!!!!!!!!\Free
|
714 |
+
#: Version\wck/wck-ctc.php:35
|
715 |
+
msgid "Taxonomy"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: d:\!!!!!!!!!\Free
|
719 |
+
#: Version\wck/wck-ctc.php:35
|
720 |
+
msgid "(The name of the taxonomy. Name must not contain capital letters or spaces.)"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: d:\!!!!!!!!!\Free
|
724 |
+
#: Version\wck/wck-ctc.php:36
|
725 |
+
msgid "ex. Writer"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: d:\!!!!!!!!!\Free
|
729 |
+
#: Version\wck/wck-ctc.php:37
|
730 |
+
msgid "ex. Writers"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: d:\!!!!!!!!!\Free
|
734 |
+
#: Version\wck/wck-ctc.php:38
|
735 |
+
msgid "Attach to"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: d:\!!!!!!!!!\Free
|
739 |
+
#: Version\wck/wck-ctc.php:39
|
740 |
+
msgid "Is this taxonomy hierarchical (have descendants) like categories or not hierarchical like tags."
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: d:\!!!!!!!!!\Free
|
744 |
+
#: Version\wck/wck-ctc.php:41
|
745 |
+
msgid "ex. Search Writers"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: d:\!!!!!!!!!\Free
|
749 |
+
#: Version\wck/wck-ctc.php:42
|
750 |
+
msgid "Popular Items"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: d:\!!!!!!!!!\Free
|
754 |
+
#: Version\wck/wck-ctc.php:42
|
755 |
+
msgid "ex. Popular Writers"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: d:\!!!!!!!!!\Free
|
759 |
+
#: Version\wck/wck-ctc.php:43
|
760 |
+
msgid "ex. All Writers"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: d:\!!!!!!!!!\Free
|
764 |
+
#: Version\wck/wck-ctc.php:44
|
765 |
+
msgid "Parent Item"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: d:\!!!!!!!!!\Free
|
769 |
+
#: Version\wck/wck-ctc.php:44
|
770 |
+
msgid "ex. Parent Genre"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: d:\!!!!!!!!!\Free
|
774 |
+
#: Version\wck/wck-ctc.php:45
|
775 |
+
msgid "ex. Parent Genre:"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: d:\!!!!!!!!!\Free
|
779 |
+
#: Version\wck/wck-ctc.php:46
|
780 |
+
msgid "ex. Edit Writer"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: d:\!!!!!!!!!\Free
|
784 |
+
#: Version\wck/wck-ctc.php:47
|
785 |
+
msgid "Update Item"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: d:\!!!!!!!!!\Free
|
789 |
+
#: Version\wck/wck-ctc.php:47
|
790 |
+
msgid "ex. Update Writer"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: d:\!!!!!!!!!\Free
|
794 |
+
#: Version\wck/wck-ctc.php:48
|
795 |
+
msgid "ex. Add New Writer"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: d:\!!!!!!!!!\Free
|
799 |
+
#: Version\wck/wck-ctc.php:49
|
800 |
+
msgid "New Item Name"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: d:\!!!!!!!!!\Free
|
804 |
+
#: Version\wck/wck-ctc.php:49
|
805 |
+
msgid "ex. New Writer Name"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: d:\!!!!!!!!!\Free
|
809 |
+
#: Version\wck/wck-ctc.php:50
|
810 |
+
msgid "Separate Items With Commas"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: d:\!!!!!!!!!\Free
|
814 |
+
#: Version\wck/wck-ctc.php:50
|
815 |
+
msgid "ex. Separate writers with commas"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: d:\!!!!!!!!!\Free
|
819 |
+
#: Version\wck/wck-ctc.php:51
|
820 |
+
msgid "Add Or Remove Items"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: d:\!!!!!!!!!\Free
|
824 |
+
#: Version\wck/wck-ctc.php:51
|
825 |
+
msgid "ex. Add or remove writers"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: d:\!!!!!!!!!\Free
|
829 |
+
#: Version\wck/wck-ctc.php:52
|
830 |
+
msgid "Choose From Most Used"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: d:\!!!!!!!!!\Free
|
834 |
+
#: Version\wck/wck-ctc.php:52
|
835 |
+
msgid "ex. Choose from the most used writers"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: d:\!!!!!!!!!\Free
|
839 |
+
#: Version\wck/wck-ctc.php:57
|
840 |
+
msgid "Show Tagcloud"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: d:\!!!!!!!!!\Free
|
844 |
+
#: Version\wck/wck-ctc.php:57
|
845 |
+
msgid "Whether to allow the Tag Cloud widget to use this taxonomy."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: d:\!!!!!!!!!\Free
|
849 |
+
#: Version\wck/wck-ctc.php:62
|
850 |
+
msgid "Custom Taxonomy Creation"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: d:\!!!!!!!!!\Free
|
854 |
+
#: Version\wck/wck-ctc.php:85
|
855 |
+
msgid "Popular "
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: d:\!!!!!!!!!\Free
|
859 |
+
#: Version\wck/wck-ctc.php:87
|
860 |
+
#: Version\wck/wck-ctc.php:88
|
861 |
+
msgid "Parent "
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: d:\!!!!!!!!!\Free
|
865 |
+
#: Version\wck/wck-ctc.php:90
|
866 |
+
msgid "Update "
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: d:\!!!!!!!!!\Free
|
870 |
+
#: Version\wck/wck-ctc.php:93
|
871 |
+
msgid "Separate "
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: d:\!!!!!!!!!\Free
|
875 |
+
#: Version\wck/wck-ctc.php:94
|
876 |
+
msgid "Add or remove "
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: d:\!!!!!!!!!\Free
|
880 |
+
#: Version\wck/wck-ctc.php:95
|
881 |
+
msgid "Choose from the most used "
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: d:\!!!!!!!!!\Free
|
885 |
+
#: Version\wck/wck-ctc.php:240
|
886 |
+
msgid "WCK Custom Taxonomy Creator allows you to easily create custom taxonomy for Wordpress without any programming knowledge.<br />Most of the common options for creating a taxonomy are displayed by default while the advanced and label options are just one click away."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: d:\!!!!!!!!!\Free
|
890 |
+
#: Version\wck/wck-ctc.php:246
|
891 |
+
msgid "For simplicity you are required to introduce only the Singular Label and Plural Label from wchich the rest of the labels will be formed.<br />For a more detailed control of the labels you just have to click the \"Show Advanced Label Options\" link and all the availabel labels will be displayed"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: d:\!!!!!!!!!\Free
|
895 |
+
#: Version\wck/wck-ctc.php:252
|
896 |
+
msgid "The Advanced Options are set to the most common defaults for taxonomies. To display them click the \"Show Advanced Options\" link."
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: d:\!!!!!!!!!\Free
|
900 |
+
#: Version\wck/wck-sas.php:15
|
901 |
+
msgid "Start Here & General Settings"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: d:\!!!!!!!!!\Free
|
905 |
+
#: Version\wck/wck-sas.php:16
|
906 |
+
msgid "Start and Settings"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: d:\!!!!!!!!!\Free
|
910 |
+
#: Version\wck/wck-sas.php:34
|
911 |
+
msgid "Serial Number"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: d:\!!!!!!!!!\Free
|
915 |
+
#: Version\wck/wck-sas.php:34
|
916 |
+
msgid "Please enter your serial number. For example: (e.g. WCKPRO-11-SN-251r55baa4fbe7bf595b2aabb8d72985)"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: d:\!!!!!!!!!\Free
|
920 |
+
#: Version\wck/wck-sas.php:40
|
921 |
+
msgid "Register Your Version"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: d:\!!!!!!!!!\Free
|
925 |
+
#: Version\wck/wck-sas.php:67
|
926 |
+
#, php-format
|
927 |
+
msgid "Welcome to %s"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: d:\!!!!!!!!!\Free
|
931 |
+
#: Version\wck/wck-sas.php:68
|
932 |
+
msgid "WCK helps you to improve the usability of the sites you build, making them manageable by your clients. Your very own repeater custom fields and groups, custom post type and taxonomy creator with front-end posting."
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: d:\!!!!!!!!!\Free
|
936 |
+
#: Version\wck/wck-sas.php:69
|
937 |
+
#, php-format
|
938 |
+
msgid "Version %s"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: d:\!!!!!!!!!\Free
|
942 |
+
#: Version\wck/wck-sas.php:83
|
943 |
+
msgid "Quick Start-Up Guide"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: d:\!!!!!!!!!\Free
|
947 |
+
#: Version\wck/wck-sas.php:88
|
948 |
+
msgid "WordPress Creation Kit Pro has support for a wide list of custom fields: WYSIWYG Editor, Upload Field, Date, User, Country, Text Input, Textarea, Drop-Down, Select, Checkboxes, Radio Buttons"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: d:\!!!!!!!!!\Free
|
952 |
+
#: Version\wck/wck-sas.php:89
|
953 |
+
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-fields-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: d:\!!!!!!!!!\Free
|
957 |
+
#: Version\wck/wck-sas.php:92
|
958 |
+
msgid "Create & manage all your custom content types"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: d:\!!!!!!!!!\Free
|
962 |
+
#: Version\wck/wck-sas.php:93
|
963 |
+
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-post-type-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: d:\!!!!!!!!!\Free
|
967 |
+
#: Version\wck/wck-sas.php:96
|
968 |
+
msgid "Create new taxonomies for filtering your content"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: d:\!!!!!!!!!\Free
|
972 |
+
#: Version\wck/wck-sas.php:97
|
973 |
+
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/custom-taxonomy-creator/\" target=\"_blank\">here</a> about how to display them in your templates."
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: d:\!!!!!!!!!\Free
|
977 |
+
#: Version\wck/wck-sas.php:99
|
978 |
+
msgid "Front-End Posting (available in the Pro version)"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: d:\!!!!!!!!!\Free
|
982 |
+
#: Version\wck/wck-sas.php:100
|
983 |
+
msgid "Create and edit posts/pages or custom posts directly from the front-end."
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: d:\!!!!!!!!!\Free
|
987 |
+
#: Version\wck/wck-sas.php:101
|
988 |
+
msgid "Available shortcodes:"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: d:\!!!!!!!!!\Free
|
992 |
+
#: Version\wck/wck-sas.php:103
|
993 |
+
msgid "[fep form_name=\"front-end-post-name\"] - displayes your form in the front-end"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: d:\!!!!!!!!!\Free
|
997 |
+
#: Version\wck/wck-sas.php:104
|
998 |
+
msgid "[fep-dashboard] - the quick-dashboard allows: simple profile updates, editing/deletion of posts, pages and custom post types."
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: d:\!!!!!!!!!\Free
|
1002 |
+
#: Version\wck/wck-sas.php:105
|
1003 |
+
msgid "[fep-lilo] - login/logout/register widget with the simple usage of a shortcode. Can be added in a page or text widget."
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: d:\!!!!!!!!!\Free
|
1007 |
+
#: Version\wck/wck-sas.php:107
|
1008 |
+
msgid "Access documentation <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/frontend-posting/\" target=\"_blank\">here</a> about how to display them in your templates."
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: d:\!!!!!!!!!\Free
|
1012 |
+
#: Version\wck/wck-sas.php:109
|
1013 |
+
msgid "Option Pages (available in the Pro version)"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: d:\!!!!!!!!!\Free
|
1017 |
+
#: Version\wck/wck-sas.php:110
|
1018 |
+
msgid "The Options Page Creator Allows you to create a new menu item called \"Options\"(for example) which can hold advanced custom field groups. Perfect for theme options or a simple UI for your custom plugin (like a simple testimonials section in the front-end)."
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: d:\!!!!!!!!!\Free
|
1022 |
+
#: Version\wck/wck-sas.php:137
|
1023 |
+
msgid "Please enter your serial number to get access to automatic updates. If you do not have one, you can <a href=\"http://www.cozmoslabs.com/wordpress-creation-kit/\" target=\"_blank\">Get One Here</a>."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: d:\!!!!!!!!!\Free
|
1027 |
+
#: Version\wck/wck-sas.php:139
|
1028 |
+
msgid "Oups! Our serial verification server is down. Please try again later."
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: d:\!!!!!!!!!\Free
|
1032 |
+
#: Version\wck/wck-sas.php:141
|
1033 |
+
msgid "Oups! It seems the serial number you entered was not found in our database. To find out what's your serial number log-in to <a href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\">your account page</a> over at Cozmoslabs.com"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: d:\!!!!!!!!!\Free
|
1037 |
+
#: Version\wck/wck-sas.php:143
|
1038 |
+
msgid "Wohoo! Your serial number is valid and you have access to automatic updates."
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: d:\!!!!!!!!!\Free
|
1042 |
+
#: Version\wck/wck-sas.php:145
|
1043 |
+
msgid "It seems your serial number has <strong>expired</strong>. You'll continue to get automatic updates if update your serial number for another year from <a href=\"http://www.cozmoslabs.com/account/\" target=\"_blank\"><strong>your account page</strong></a>."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: d:\!!!!!!!!!\Free
|
1047 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:282
|
1048 |
+
msgid "Add Entry"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: d:\!!!!!!!!!\Free
|
1052 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:332
|
1053 |
+
msgid "Save Changes"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: d:\!!!!!!!!!\Free
|
1057 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:333
|
1058 |
+
msgid "Cancel"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: d:\!!!!!!!!!\Free
|
1062 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1063 |
+
msgid "Content"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: d:\!!!!!!!!!\Free
|
1067 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1068 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1069 |
+
msgid "Edit"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: d:\!!!!!!!!!\Free
|
1073 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:370
|
1074 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1075 |
+
msgid "Delete"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: d:\!!!!!!!!!\Free
|
1079 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:433
|
1080 |
+
msgid "Edit this item"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: d:\!!!!!!!!!\Free
|
1084 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:434
|
1085 |
+
msgid "Delete this item"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: d:\!!!!!!!!!\Free
|
1089 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:506
|
1090 |
+
msgid "Please enter a value for the required field "
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: d:\!!!!!!!!!\Free
|
1094 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:788
|
1095 |
+
msgid "Select File"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: d:\!!!!!!!!!\Free
|
1099 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:828
|
1100 |
+
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:28
|
1101 |
+
msgid "Remove"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: d:\!!!!!!!!!\Free
|
1105 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:866
|
1106 |
+
msgid "Syncronize WCK"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: d:\!!!!!!!!!\Free
|
1110 |
+
#: Version\wck/wordpress-creation-kit-api/wordpress-creation-kit.php:878
|
1111 |
+
msgid "Syncronize WCK Translation"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: d:\!!!!!!!!!\Free
|
1115 |
+
#: Version\wck/wordpress-creation-kit-api/fields/select.php:11
|
1116 |
+
msgid "...Chose"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: d:\!!!!!!!!!\Free
|
1120 |
+
#: Version\wck/wordpress-creation-kit-api/fields/upload.php:40
|
1121 |
+
msgid "Upload "
|
1122 |
+
msgstr ""
|
1123 |
+
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ Donate link: http://www.cozmoslabs.com/wordpress-creation-kit/
|
|
5 |
Tags: custom fields, custom field, wordpress custom fields, advanced custom fields, custom post type, custom post types, post types, cpt, post type, repeater fields, repeater, repeatable fields, meta box, metabox, taxonomy, taxonomies, custom taxonomy, custom taxonomies, custom, custom fields creator, post meta, meta, get_post_meta, post creator, cck, content types, types
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
-
Tested up to: 4.1
|
9 |
-
Stable tag: 1.1.
|
10 |
|
11 |
A must have tool for creating custom fields, custom post types and taxonomies, fast and without any programming knowledge.
|
12 |
|
@@ -141,6 +141,10 @@ Creating a taxonomy generally automatically creates a special query variable usi
|
|
141 |
10. Taxonomy listing
|
142 |
|
143 |
== Changelog ==
|
|
|
|
|
|
|
|
|
144 |
= 1.1.4 =
|
145 |
* Changed the way Single Forms are displayed and saved.
|
146 |
* Added 'slug' parameter to API and we use it so we can translate labels
|
5 |
Tags: custom fields, custom field, wordpress custom fields, advanced custom fields, custom post type, custom post types, post types, cpt, post type, repeater fields, repeater, repeatable fields, meta box, metabox, taxonomy, taxonomies, custom taxonomy, custom taxonomies, custom, custom fields creator, post meta, meta, get_post_meta, post creator, cck, content types, types
|
6 |
|
7 |
Requires at least: 3.1
|
8 |
+
Tested up to: 4.1.1
|
9 |
+
Stable tag: 1.1.5
|
10 |
|
11 |
A must have tool for creating custom fields, custom post types and taxonomies, fast and without any programming knowledge.
|
12 |
|
141 |
10. Taxonomy listing
|
142 |
|
143 |
== Changelog ==
|
144 |
+
= 1.1.5 =
|
145 |
+
* Fixed major issue that prevented publishing new metaboxes (CFC)
|
146 |
+
* Added a footer message asking users to leave a review if they enjoyed WCK
|
147 |
+
|
148 |
= 1.1.4 =
|
149 |
* Changed the way Single Forms are displayed and saved.
|
150 |
* Added 'slug' parameter to API and we use it so we can translate labels
|
wck-cfc.php
CHANGED
@@ -1,637 +1,637 @@
|
|
1 |
-
<?php
|
2 |
-
/* Creates Custom Meta Box Fields for WordPress. It supports repeater fields and uses AJAX to handle data. */
|
3 |
-
|
4 |
-
/* Add Scripts */
|
5 |
-
add_action('admin_enqueue_scripts', 'wck_cfc_print_scripts' );
|
6 |
-
function wck_cfc_print_scripts($hook){
|
7 |
-
if( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ){
|
8 |
-
if( isset( $_GET['post_type'] ) )
|
9 |
-
$post_type = $_GET['post_type'];
|
10 |
-
else if( isset( $_GET['post'] ) )
|
11 |
-
$post_type = get_post_type( $_GET['post'] );
|
12 |
-
|
13 |
-
if( 'wck-meta-box' == $post_type ){
|
14 |
-
wp_register_style('wck-cfc-css', plugins_url('/css/wck-cfc.css', __FILE__));
|
15 |
-
wp_enqueue_style('wck-cfc-css');
|
16 |
-
|
17 |
-
wp_register_script('wck-cfc-js', plugins_url('/js/wck-cfc.js', __FILE__), array( 'jquery' ), '1.0' );
|
18 |
-
wp_enqueue_script('wck-cfc-js');
|
19 |
-
}
|
20 |
-
}
|
21 |
-
}
|
22 |
-
|
23 |
-
/* hook to create custom post types */
|
24 |
-
add_action( 'init', 'wck_cfc_create_custom_fields_cpt' );
|
25 |
-
|
26 |
-
function wck_cfc_create_custom_fields_cpt(){
|
27 |
-
if( is_admin() && current_user_can( 'edit_theme_options' ) ){
|
28 |
-
$labels = array(
|
29 |
-
'name' => _x( 'WCK Custom Meta Boxes', 'post type general name'),
|
30 |
-
'singular_name' => _x( 'Custom Meta Box', 'post type singular name'),
|
31 |
-
'add_new' => _x( 'Add New', 'Custom Meta Box' ),
|
32 |
-
'add_new_item' => __( "Add New Meta Box", "wck" ),
|
33 |
-
'edit_item' => __( "Edit Meta Box", "wck" ) ,
|
34 |
-
'new_item' => __( "New Meta Box", "wck" ),
|
35 |
-
'all_items' => __( "Custom Fields Creator", "wck" ),
|
36 |
-
'view_item' => __( "View Meta Box", "wck" ),
|
37 |
-
'search_items' => __( "Search Meta Boxes", "wck" ),
|
38 |
-
'not_found' => __( "No Meta Boxes found", "wck" ),
|
39 |
-
'not_found_in_trash' => __( "No Meta Boxes found in Trash", "wck" ),
|
40 |
-
'parent_item_colon' => '',
|
41 |
-
'menu_name' => __( "Custom Meta Boxes", "wck" )
|
42 |
-
);
|
43 |
-
$args = array(
|
44 |
-
'labels' => $labels,
|
45 |
-
'public' => false,
|
46 |
-
'publicly_queryable' => false,
|
47 |
-
'show_ui' => true,
|
48 |
-
'show_in_menu' => 'wck-page',
|
49 |
-
'has_archive' => false,
|
50 |
-
'hierarchical' => false,
|
51 |
-
'capability_type' => 'post',
|
52 |
-
'supports' => array( 'title' )
|
53 |
-
);
|
54 |
-
|
55 |
-
register_post_type( 'wck-meta-box', $args );
|
56 |
-
}
|
57 |
-
}
|
58 |
-
|
59 |
-
/* add admin body class to cfc custom post type */
|
60 |
-
add_filter( 'admin_body_class', 'wck_cfc_admin_body_class' );
|
61 |
-
function wck_cfc_admin_body_class( $classes ){
|
62 |
-
if( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ){
|
63 |
-
if( isset( $_GET['post_type'] ) )
|
64 |
-
$post_type = $_GET['post_type'];
|
65 |
-
else if( isset( $_GET['post'] ) )
|
66 |
-
$post_type = get_post_type( $_GET['post'] );
|
67 |
-
|
68 |
-
if( 'wck-meta-box' == $post_type ){
|
69 |
-
$classes .= ' wck_page_cfc-page ';
|
70 |
-
}
|
71 |
-
}
|
72 |
-
return $classes;
|
73 |
-
}
|
74 |
-
|
75 |
-
/* Remove view action from post list view */
|
76 |
-
add_filter('post_row_actions','wck_cfc_remove_view_action');
|
77 |
-
function wck_cfc_remove_view_action($actions){
|
78 |
-
global $post;
|
79 |
-
if ($post->post_type =="wck-meta-box"){
|
80 |
-
unset( $actions['view'] );
|
81 |
-
}
|
82 |
-
return $actions;
|
83 |
-
}
|
84 |
-
|
85 |
-
|
86 |
-
/* create the meta box */
|
87 |
-
add_action( 'init', 'wck_cfc_create_box', 500 );
|
88 |
-
function wck_cfc_create_box(){
|
89 |
-
global $wpdb;
|
90 |
-
|
91 |
-
/* get post types */
|
92 |
-
$public_cpt_arg = apply_filters( 'wck_cfc_public_cpt_arg', true );
|
93 |
-
$args = array(
|
94 |
-
'public' => $public_cpt_arg
|
95 |
-
);
|
96 |
-
$output = 'objects'; // or objects
|
97 |
-
$post_types = get_post_types($args,$output);
|
98 |
-
$post_type_names = array();
|
99 |
-
if( !empty( $post_types ) ){
|
100 |
-
foreach ($post_types as $post_type ) {
|
101 |
-
if ( $post_type->name != 'attachment' && $post_type->name != 'wck-meta-box' && $post_type->name != 'wck-frontend-posting' && $post_type->name != 'wck-option-page' && $post_type->name != 'wck-option-field' && $post_type->name != 'wck-swift-template' )
|
102 |
-
$post_type_names[] = $post_type->name;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
/* add CPTC registered with WCK that are not public */
|
106 |
-
if( $public_cpt_arg ){
|
107 |
-
$cpts = get_option('wck_cptc');
|
108 |
-
if( !empty( $cpts ) ){
|
109 |
-
foreach( $cpts as $cpt ){
|
110 |
-
if( $cpt['public'] == 'false' )
|
111 |
-
$post_type_names[] = $cpt['post-type'];
|
112 |
-
}
|
113 |
-
}
|
114 |
-
}
|
115 |
-
|
116 |
-
/* get page templates */
|
117 |
-
$templates = wck_get_page_templates();
|
118 |
-
|
119 |
-
/* set up the fields array */
|
120 |
-
$cfc_box_args_fields = array(
|
121 |
-
array( 'type' => 'text', 'title' => __( 'Meta name', 'wck' ), 'description' => __( 'The name of the meta field. It is the name by which you will query the data in the frontend. Must be unique, only lowercase letters, no spaces and no special characters.', 'wck' ), 'required' => true ),
|
122 |
-
array( 'type' => 'select', 'title' => __( 'Post Type', 'wck' ), 'options' => $post_type_names, 'default-option' => true, 'description' => __( 'What post type the meta box should be attached to', 'wck' ), 'required' => true ),
|
123 |
-
array( 'type' => 'select', 'title' => __( 'Repeater', 'wck' ), 'options' => array( 'false', 'true' ), 'default' => 'false', 'description' => __( 'Whether the box supports just one entry or if it is a repeater field. By default it is a single field.', 'wck' ) ),
|
124 |
-
array( 'type' => 'select', 'title' => __( 'Sortable', 'wck' ), 'options' => array( 'true', 'false' ), 'default' => 'false', 'description' => __( 'Whether the entries are sortable or not. This is valid for repeater fields.', 'wck' ) ),
|
125 |
-
array( 'type' => 'text', 'title' => __( 'Post ID', 'wck' ), 'description' => __( 'ID of a post on which the meta box should appear. You can also input multiple IDs and separate them with ","', 'wck' ) )
|
126 |
-
);
|
127 |
-
|
128 |
-
/* only in pro version */
|
129 |
-
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
130 |
-
$nested_arg = array( array( 'type' => 'select', 'title' => __( 'Nested', 'wck' ), 'options' => array( 'true', 'false' ), 'default' => 'false', 'description' => __( 'Set to true if you want this metabox to be a nested repeater inside another repeater.', 'wck' ) ) );
|
131 |
-
array_splice( $cfc_box_args_fields, 1, 0, $nested_arg );
|
132 |
-
}
|
133 |
-
|
134 |
-
if( !empty( $templates ) )
|
135 |
-
$cfc_box_args_fields[] = array( 'type' => 'select', 'title' => __( 'Page Template', 'wck' ), 'options' => $templates, 'default-option' => true, 'description' => __( 'If post type is "page" you can further select a page templete. The meta box will only appear on the page that has that selected page template.', 'wck' ) );
|
136 |
-
|
137 |
-
/* set up the box arguments */
|
138 |
-
$args = array(
|
139 |
-
'metabox_id' => 'wck-cfc-args',
|
140 |
-
'metabox_title' => __( 'Meta Box Arguments', 'wck' ),
|
141 |
-
'post_type' => 'wck-meta-box',
|
142 |
-
'meta_name' => 'wck_cfc_args',
|
143 |
-
'meta_array' => $cfc_box_args_fields,
|
144 |
-
'sortable' => false,
|
145 |
-
'single' => true
|
146 |
-
);
|
147 |
-
|
148 |
-
/* create the box */
|
149 |
-
new Wordpress_Creation_Kit( $args );
|
150 |
-
|
151 |
-
/* set up field types */
|
152 |
-
$field_types = array( 'text', 'textarea', 'select', 'checkbox', 'radio', 'upload', 'wysiwyg editor', 'datepicker', 'country select', 'user select', 'cpt select' );
|
153 |
-
$field_types = apply_filters( 'wck_field_types', $field_types );
|
154 |
-
|
155 |
-
/* setup post types */
|
156 |
-
$post_types = get_post_types( array( 'public' => true ), 'names' );
|
157 |
-
|
158 |
-
/* set up the fields array */
|
159 |
-
$cfc_box_fields_fields = apply_filters( 'wck_cfc_box_fields_fields', array(
|
160 |
-
array( 'type' => 'text', 'title' => __( 'Field Title', 'wck' ), 'description' => __( 'Title of the field. A slug will automatically be generated.', 'wck' ), 'required' => true ),
|
161 |
-
array( 'type' => 'select', 'title' => __( 'Field Type', 'wck' ), 'options' => $field_types, 'default-option' => true, 'description' => __( 'The field type', 'wck' ), 'required' => true ),
|
162 |
-
array( 'type' => 'textarea', 'title' => __( 'Description', 'wck' ), 'description' => 'The description of the field.' ),
|
163 |
-
array( 'type' => 'select', 'title' => __( 'Required', 'wck' ), 'options' => array( 'false', 'true' ), 'default' => 'false', 'description' => __( 'Whether the field is required or not', 'wck' ) ),
|
164 |
-
array( 'type' => 'select', 'title' => __( 'CPT', 'wck' ), 'options' => $post_types, 'default' => 'post', 'description' => __( 'Select what custom post type should be used in the CPT Select.', 'wck' ) ),
|
165 |
-
array( 'type' => 'text', 'title' => __( 'Default Value', 'wck' ), 'description' => __( 'Default value of the field. For Checkboxes if there are multiple values separate them with a ",". For an Upload field input an attachment id.', 'wck' ) ),
|
166 |
-
array( 'type' => 'text', 'title' => __( 'Options', 'wck' ), 'description' => __( 'Options for field types "select", "checkbox" and "radio". For multiple options separate them with a ",". You can use the following structure if you want the label to be different from the value: %LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree', 'wck' ) ),
|
167 |
-
array( 'type' => 'checkbox', 'title' => __( 'Attach upload to post', 'wck' ), 'description' => __( 'Uploads will be attached to the post if this is checked', 'wck' ), 'options' => array( 'yes' ), 'default' => 'yes' )
|
168 |
-
) );
|
169 |
-
|
170 |
-
|
171 |
-
/* set up the box arguments */
|
172 |
-
$args = array(
|
173 |
-
'metabox_id' => 'wck-cfc-fields',
|
174 |
-
'metabox_title' => __( 'Meta Box Fields', 'wck' ),
|
175 |
-
'post_type' => 'wck-meta-box',
|
176 |
-
'meta_name' => 'wck_cfc_fields',
|
177 |
-
'meta_array' => $cfc_box_fields_fields
|
178 |
-
);
|
179 |
-
|
180 |
-
/* create the box */
|
181 |
-
new Wordpress_Creation_Kit( $args );
|
182 |
-
}
|
183 |
-
|
184 |
-
/* advanced label options container for update form */
|
185 |
-
add_action( "wck_before_add_form_wck_cfc_args_element_0", 'wck_cfc_description_for_args_box' );
|
186 |
-
function wck_cfc_description_for_args_box(){
|
187 |
-
echo '<div class="cfc-message"><p>'. __( 'Enter below the arguments for the meta box.', 'wck' ) .'</p></div>';
|
188 |
-
}
|
189 |
-
|
190 |
-
/* add css classes on update form. Allows us to show/hide elements based on field type select value */
|
191 |
-
add_filter( 'wck_update_container_class_wck_cfc_fields', 'wck_cfc_update_container_class', 10, 4 );
|
192 |
-
function wck_cfc_update_container_class($wck_update_container_css_class, $meta, $results, $element_id) {
|
193 |
-
$wck_element_type = Wordpress_Creation_Kit::wck_generate_slug( $results[$element_id]["field-type"] );
|
194 |
-
return "class='update_container_$meta update_container_$wck_element_type element_type_$wck_element_type'";
|
195 |
-
}
|
196 |
-
|
197 |
-
add_filter( 'wck_element_class_wck_cfc_fields', 'wck_cfc_element_class', 10, 4 );
|
198 |
-
function wck_cfc_element_class($wck_element_class, $meta, $results, $element_id){
|
199 |
-
$wck_element_type = Wordpress_Creation_Kit::wck_generate_slug( $results[$element_id]["field-type"] );
|
200 |
-
$wck_element_class = "class='element_type_$wck_element_type'";
|
201 |
-
return $wck_element_class;
|
202 |
-
}
|
203 |
-
|
204 |
-
/* Show the slug for field title */
|
205 |
-
add_filter( "wck_after_listed_wck_cfc_fields_element_0", 'wck_cfc_display_field_title_slug', 10, 3 );
|
206 |
-
function wck_cfc_display_field_title_slug( $form, $i, $value ){
|
207 |
-
$form .= '<li class="slug-title"><em>'. __( 'Slug:', 'wck' ) .'</em><span>'. Wordpress_Creation_Kit::wck_generate_slug( $value ) .'</span> '. __( '(Note:changing the slug when you already have a lot of existing entries may result in unexpected behavior.)', 'wck' ) .' </li>';
|
208 |
-
return $form;
|
209 |
-
}
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
);
|
227 |
-
|
228 |
-
$
|
229 |
-
|
230 |
-
$
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
$
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
if( !empty( $wck_cfc_field['
|
248 |
-
$fields_inner_array['
|
249 |
-
if( !empty( $wck_cfc_field['
|
250 |
-
$fields_inner_array['
|
251 |
-
if
|
252 |
-
$fields_inner_array['
|
253 |
-
if(
|
254 |
-
$fields_inner_array['
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
'
|
282 |
-
'
|
283 |
-
'
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
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 |
-
$contains_spaces =
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
$restricted_name =
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
if(
|
358 |
-
return
|
359 |
-
else if(
|
360 |
-
return __( "Choose a different Meta Name as this one
|
361 |
-
else
|
362 |
-
return __( "Choose a different Meta Name as this one
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
$restricted_name =
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
if(
|
382 |
-
return
|
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 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
}
|
467 |
-
}
|
468 |
-
|
469 |
-
/* Add Custom columns to listing */
|
470 |
-
add_filter("manage_wck-meta-box_posts_columns", "wck_cfc_edit_columns" );
|
471 |
-
function wck_cfc_edit_columns($columns){
|
472 |
-
$columns['cfc-id'] = __( "Id", "wck" );
|
473 |
-
$columns['cfc-post-type'] = __( "Post Type", "wck" );
|
474 |
-
$columns['cfc-page-template'] = __( "Page Template", "wck" );
|
475 |
-
|
476 |
-
/* only in pro version */
|
477 |
-
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
478 |
-
$columns['cfc-nested-repeater'] = __( "Nested Repeater", "wck" );
|
479 |
-
}
|
480 |
-
|
481 |
-
return $columns;
|
482 |
-
}
|
483 |
-
|
484 |
-
/* Register the column as sortable */
|
485 |
-
add_filter( 'manage_edit-wck-meta-box_sortable_columns', 'wck_cfc_register_sortable_columns' );
|
486 |
-
function wck_cfc_register_sortable_columns( $columns ) {
|
487 |
-
$columns['cfc-id'] = 'cfc-id';
|
488 |
-
$columns['cfc-post-type'] = 'cfc-post-type';
|
489 |
-
$columns['cfc-page-template'] = 'cfc-page-template';
|
490 |
-
|
491 |
-
return $columns;
|
492 |
-
}
|
493 |
-
|
494 |
-
/* Tell WordPress how to handle the sorting */
|
495 |
-
add_filter( 'request', 'wck_cfc_column_orderby' );
|
496 |
-
function wck_cfc_column_orderby( $vars ) {
|
497 |
-
if ( isset( $vars['orderby'] ) && 'cfc-id' == $vars['orderby'] ) {
|
498 |
-
$vars = array_merge( $vars, array(
|
499 |
-
'meta_key' => 'wck_cfc_post_id_arg',
|
500 |
-
'orderby' => 'meta_value_num'
|
501 |
-
) );
|
502 |
-
}
|
503 |
-
|
504 |
-
if ( isset( $vars['orderby'] ) && 'cfc-post-type' == $vars['orderby'] ) {
|
505 |
-
$vars = array_merge( $vars, array(
|
506 |
-
'meta_key' => 'wck_cfc_post_type_arg',
|
507 |
-
'orderby' => 'meta_value'
|
508 |
-
) );
|
509 |
-
}
|
510 |
-
|
511 |
-
if ( isset( $vars['orderby'] ) && 'cfc-page-template' == $vars['orderby'] ) {
|
512 |
-
$vars = array_merge( $vars, array(
|
513 |
-
'meta_key' => 'wck_cfc_page_template_arg',
|
514 |
-
'orderby' => 'meta_value'
|
515 |
-
) );
|
516 |
-
}
|
517 |
-
|
518 |
-
return $vars;
|
519 |
-
}
|
520 |
-
|
521 |
-
/* Let's set up what to display in the columns */
|
522 |
-
add_action("manage_wck-meta-box_posts_custom_column", "wck_cfc_custom_columns", 10, 2);
|
523 |
-
function wck_cfc_custom_columns( $column_name, $post_id ){
|
524 |
-
if( $column_name == 'cfc-id' ){
|
525 |
-
$post_id_arg = get_post_meta( $post_id, 'wck_cfc_post_id_arg', true );
|
526 |
-
echo $post_id_arg;
|
527 |
-
}
|
528 |
-
|
529 |
-
if( $column_name == 'cfc-post-type' ){
|
530 |
-
$post_type_arg = get_post_meta( $post_id, 'wck_cfc_post_type_arg', true );
|
531 |
-
echo $post_type_arg;
|
532 |
-
}
|
533 |
-
|
534 |
-
if( $column_name == 'cfc-page-template' ){
|
535 |
-
$page_template_arg = get_post_meta( $post_id, 'wck_cfc_page_template_arg', true );
|
536 |
-
echo $page_template_arg;
|
537 |
-
}
|
538 |
-
|
539 |
-
/* only in pro version */
|
540 |
-
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
541 |
-
if( $column_name == 'cfc-nested-repeater' ){
|
542 |
-
$box_args = get_post_meta( $post_id, 'wck_cfc_args', true );
|
543 |
-
if( !empty( $box_args[0]['nested'] ) )
|
544 |
-
echo $box_args[0]['nested'];
|
545 |
-
}
|
546 |
-
}
|
547 |
-
}
|
548 |
-
|
549 |
-
/* Add side metaboxes */
|
550 |
-
add_action('add_meta_boxes', 'wck_cfc_add_side_boxes' );
|
551 |
-
function wck_cfc_add_side_boxes(){
|
552 |
-
add_meta_box( 'wck-cfc-side', __( 'Wordpress Creation Kit', 'wck' ), 'wck_cfc_side_box_one', 'wck-meta-box', 'side', 'low' );
|
553 |
-
}
|
554 |
-
function wck_cfc_side_box_one(){
|
555 |
-
?>
|
556 |
-
<a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wpbackend&utm_medium=clientsite&utm_campaign=WCKFree"><img src="<?php echo plugins_url('/images/banner_pro.png', __FILE__) ?>?v=1" width="260" height="385" alt="WCK-PRO"/></a>
|
557 |
-
<?php
|
558 |
-
}
|
559 |
-
|
560 |
-
|
561 |
-
/* Contextual Help */
|
562 |
-
add_action('current_screen', 'wck_cfc_help');
|
563 |
-
|
564 |
-
function wck_cfc_help () {
|
565 |
-
$screen = get_current_screen();
|
566 |
-
/*
|
567 |
-
* Check if current screen is wck_page_cptc-page
|
568 |
-
* Don't add help tab if it's not
|
569 |
-
*/
|
570 |
-
if ( $screen->id != 'wck-meta-box' )
|
571 |
-
return;
|
572 |
-
|
573 |
-
// Add help tabs
|
574 |
-
$screen->add_help_tab( array(
|
575 |
-
'id' => 'wck_cfc_overview',
|
576 |
-
'title' => __( 'Overview', 'wck' ),
|
577 |
-
'content' => '<p>' . __( 'WCK Custom Fields Creator allows you to easily create custom meta boxes for Wordpress without any programming knowledge.', 'wck' ) . '</p>',
|
578 |
-
) );
|
579 |
-
|
580 |
-
$screen->add_help_tab( array(
|
581 |
-
'id' => 'wck_cfc_arguments',
|
582 |
-
'title' => __( 'Meta Box Arguments', 'wck' ),
|
583 |
-
'content' => '<p>' . __( 'Define here the rules for the meta box. This rules are used to set up where the meta box will appear, it\'s type and also the meta key name stored in the database. The name of the entry (Enter title here) will be used as the meta box title.', 'wck' ) . '</p>',
|
584 |
-
) );
|
585 |
-
|
586 |
-
$screen->add_help_tab( array(
|
587 |
-
'id' => 'wck_cfc_fields',
|
588 |
-
'title' => __( 'Meta Box Fields', 'wck' ),
|
589 |
-
'content' => '<p>' . __( 'Define here the fields contained in the meta box. From "Field Title" a slug will be automatically generated and you will use this slug to display the data in the frontend.', 'wck' ) . '</p>',
|
590 |
-
) );
|
591 |
-
|
592 |
-
$screen->add_help_tab( array(
|
593 |
-
'id' => 'wck_cfc_example',
|
594 |
-
'title' => __( 'CFC Frontend Example', 'wck' ),
|
595 |
-
'content' => '<p>' . __( 'Let\'s consider we have a meta box with the following arguments:<br /> - Meta name: books <br /> - Post Type: post <br />And we also have two fields deffined:<br /> - A text field with the Field Title: Book name <br /> - And another text field with the Field Title: Author name ', 'wck' ) . '</p>' . '<p>' . __( 'You will notice that slugs will automatically be created for the two text fields. For "Book name" the slug will be "book-name" and for "Author name" the slug will be "author-name"', 'wck' ) . '</p>' . '<p>' . __( 'Let\'s see what the code for displaying the meta box values in single.php of your theme would be:', 'wck' ) . '</p>' . '<pre>' . '$books = get_post_meta( $post->ID, \'books\', true ); <br />foreach( $books as $book){<br /> echo $book[\'book-name\'];<br / > echo $book[\'author-name\'];<br />}' . '</pre>' . '<p>' . __( 'So as you can see the Meta Name "books" is used as the $key parameter of the funtion <a href="http://codex.wordpress.org/Function_Reference/get_post_meta" target="_blank">get_post_meta()</a> and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as post meta in a multidimensioanl array. In our case the array would be: <br /><pre>array( array( "book-name" => "The Hitchhiker\'s Guide To The Galaxy", "author-name" => "Douglas Adams" ), array( "book-name" => "Ender\'s Game", "author-name" => "Orson Scott Card" ) );</pre> This is true even for single entries.', 'wck' ) . '</p>'
|
596 |
-
) );
|
597 |
-
}
|
598 |
-
|
599 |
-
/**
|
600 |
-
* Get the Page Templates available in the current theme
|
601 |
-
*
|
602 |
-
* Based on wordpress get_page_templates()
|
603 |
-
*
|
604 |
-
* @return array Key is the template name, value is the %Template Name%filename string format of the template
|
605 |
-
*/
|
606 |
-
function wck_get_page_templates() {
|
607 |
-
|
608 |
-
$page_templates = array();
|
609 |
-
$theme_templates = array_flip(wp_get_theme()->get_page_templates());
|
610 |
-
if( !empty( $theme_templates ) ){
|
611 |
-
foreach( $theme_templates as $key => $value){
|
612 |
-
$page_templates[$key] = "%$key%$value";
|
613 |
-
}
|
614 |
-
}
|
615 |
-
return $page_templates;
|
616 |
-
}
|
617 |
-
|
618 |
-
/* Filter post update message */
|
619 |
-
add_filter( 'post_updated_messages', 'wck_cfc_filter_post_update_message' );
|
620 |
-
function wck_cfc_filter_post_update_message($messages){
|
621 |
-
$messages['wck-meta-box'] = array(
|
622 |
-
0 => '', // Unused. Messages start at index 1.
|
623 |
-
1 => __('Metabox updated.', 'wck')
|
624 |
-
);
|
625 |
-
return $messages;
|
626 |
-
}
|
627 |
-
|
628 |
-
/* Filter Field Types for free version */
|
629 |
-
add_filter( 'wck_field_types', 'wck_cfc_filter_field_types' );
|
630 |
-
function wck_cfc_filter_field_types( $field_types ){
|
631 |
-
$wck_premium_update = WCK_PLUGIN_DIR.'/update/';
|
632 |
-
if ( !file_exists ($wck_premium_update . 'update-checker.php'))
|
633 |
-
$field_types = array( 'text', 'textarea', 'select', 'checkbox', 'radio', 'upload', 'wysiwyg editor' );
|
634 |
-
|
635 |
-
return $field_types;
|
636 |
-
}
|
637 |
-
?>
|
1 |
+
<?php
|
2 |
+
/* Creates Custom Meta Box Fields for WordPress. It supports repeater fields and uses AJAX to handle data. */
|
3 |
+
|
4 |
+
/* Add Scripts */
|
5 |
+
add_action('admin_enqueue_scripts', 'wck_cfc_print_scripts' );
|
6 |
+
function wck_cfc_print_scripts($hook){
|
7 |
+
if( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ){
|
8 |
+
if( isset( $_GET['post_type'] ) )
|
9 |
+
$post_type = $_GET['post_type'];
|
10 |
+
else if( isset( $_GET['post'] ) )
|
11 |
+
$post_type = get_post_type( $_GET['post'] );
|
12 |
+
|
13 |
+
if( 'wck-meta-box' == $post_type ){
|
14 |
+
wp_register_style('wck-cfc-css', plugins_url('/css/wck-cfc.css', __FILE__));
|
15 |
+
wp_enqueue_style('wck-cfc-css');
|
16 |
+
|
17 |
+
wp_register_script('wck-cfc-js', plugins_url('/js/wck-cfc.js', __FILE__), array( 'jquery' ), '1.0' );
|
18 |
+
wp_enqueue_script('wck-cfc-js');
|
19 |
+
}
|
20 |
+
}
|
21 |
+
}
|
22 |
+
|
23 |
+
/* hook to create custom post types */
|
24 |
+
add_action( 'init', 'wck_cfc_create_custom_fields_cpt' );
|
25 |
+
|
26 |
+
function wck_cfc_create_custom_fields_cpt(){
|
27 |
+
if( is_admin() && current_user_can( 'edit_theme_options' ) ){
|
28 |
+
$labels = array(
|
29 |
+
'name' => _x( 'WCK Custom Meta Boxes', 'post type general name'),
|
30 |
+
'singular_name' => _x( 'Custom Meta Box', 'post type singular name'),
|
31 |
+
'add_new' => _x( 'Add New', 'Custom Meta Box' ),
|
32 |
+
'add_new_item' => __( "Add New Meta Box", "wck" ),
|
33 |
+
'edit_item' => __( "Edit Meta Box", "wck" ) ,
|
34 |
+
'new_item' => __( "New Meta Box", "wck" ),
|
35 |
+
'all_items' => __( "Custom Fields Creator", "wck" ),
|
36 |
+
'view_item' => __( "View Meta Box", "wck" ),
|
37 |
+
'search_items' => __( "Search Meta Boxes", "wck" ),
|
38 |
+
'not_found' => __( "No Meta Boxes found", "wck" ),
|
39 |
+
'not_found_in_trash' => __( "No Meta Boxes found in Trash", "wck" ),
|
40 |
+
'parent_item_colon' => '',
|
41 |
+
'menu_name' => __( "Custom Meta Boxes", "wck" )
|
42 |
+
);
|
43 |
+
$args = array(
|
44 |
+
'labels' => $labels,
|
45 |
+
'public' => false,
|
46 |
+
'publicly_queryable' => false,
|
47 |
+
'show_ui' => true,
|
48 |
+
'show_in_menu' => 'wck-page',
|
49 |
+
'has_archive' => false,
|
50 |
+
'hierarchical' => false,
|
51 |
+
'capability_type' => 'post',
|
52 |
+
'supports' => array( 'title' )
|
53 |
+
);
|
54 |
+
|
55 |
+
register_post_type( 'wck-meta-box', $args );
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
/* add admin body class to cfc custom post type */
|
60 |
+
add_filter( 'admin_body_class', 'wck_cfc_admin_body_class' );
|
61 |
+
function wck_cfc_admin_body_class( $classes ){
|
62 |
+
if( isset( $_GET['post_type'] ) || isset( $_GET['post'] ) ){
|
63 |
+
if( isset( $_GET['post_type'] ) )
|
64 |
+
$post_type = $_GET['post_type'];
|
65 |
+
else if( isset( $_GET['post'] ) )
|
66 |
+
$post_type = get_post_type( $_GET['post'] );
|
67 |
+
|
68 |
+
if( 'wck-meta-box' == $post_type ){
|
69 |
+
$classes .= ' wck_page_cfc-page ';
|
70 |
+
}
|
71 |
+
}
|
72 |
+
return $classes;
|
73 |
+
}
|
74 |
+
|
75 |
+
/* Remove view action from post list view */
|
76 |
+
add_filter('post_row_actions','wck_cfc_remove_view_action');
|
77 |
+
function wck_cfc_remove_view_action($actions){
|
78 |
+
global $post;
|
79 |
+
if ($post->post_type =="wck-meta-box"){
|
80 |
+
unset( $actions['view'] );
|
81 |
+
}
|
82 |
+
return $actions;
|
83 |
+
}
|
84 |
+
|
85 |
+
|
86 |
+
/* create the meta box */
|
87 |
+
add_action( 'init', 'wck_cfc_create_box', 500 );
|
88 |
+
function wck_cfc_create_box(){
|
89 |
+
global $wpdb;
|
90 |
+
|
91 |
+
/* get post types */
|
92 |
+
$public_cpt_arg = apply_filters( 'wck_cfc_public_cpt_arg', true );
|
93 |
+
$args = array(
|
94 |
+
'public' => $public_cpt_arg
|
95 |
+
);
|
96 |
+
$output = 'objects'; // or objects
|
97 |
+
$post_types = get_post_types($args,$output);
|
98 |
+
$post_type_names = array();
|
99 |
+
if( !empty( $post_types ) ){
|
100 |
+
foreach ($post_types as $post_type ) {
|
101 |
+
if ( $post_type->name != 'attachment' && $post_type->name != 'wck-meta-box' && $post_type->name != 'wck-frontend-posting' && $post_type->name != 'wck-option-page' && $post_type->name != 'wck-option-field' && $post_type->name != 'wck-swift-template' )
|
102 |
+
$post_type_names[] = $post_type->name;
|
103 |
+
}
|
104 |
+
}
|
105 |
+
/* add CPTC registered with WCK that are not public */
|
106 |
+
if( $public_cpt_arg ){
|
107 |
+
$cpts = get_option('wck_cptc');
|
108 |
+
if( !empty( $cpts ) ){
|
109 |
+
foreach( $cpts as $cpt ){
|
110 |
+
if( $cpt['public'] == 'false' )
|
111 |
+
$post_type_names[] = $cpt['post-type'];
|
112 |
+
}
|
113 |
+
}
|
114 |
+
}
|
115 |
+
|
116 |
+
/* get page templates */
|
117 |
+
$templates = wck_get_page_templates();
|
118 |
+
|
119 |
+
/* set up the fields array */
|
120 |
+
$cfc_box_args_fields = array(
|
121 |
+
array( 'type' => 'text', 'title' => __( 'Meta name', 'wck' ), 'description' => __( 'The name of the meta field. It is the name by which you will query the data in the frontend. Must be unique, only lowercase letters, no spaces and no special characters.', 'wck' ), 'required' => true ),
|
122 |
+
array( 'type' => 'select', 'title' => __( 'Post Type', 'wck' ), 'options' => $post_type_names, 'default-option' => true, 'description' => __( 'What post type the meta box should be attached to', 'wck' ), 'required' => true ),
|
123 |
+
array( 'type' => 'select', 'title' => __( 'Repeater', 'wck' ), 'options' => array( 'false', 'true' ), 'default' => 'false', 'description' => __( 'Whether the box supports just one entry or if it is a repeater field. By default it is a single field.', 'wck' ) ),
|
124 |
+
array( 'type' => 'select', 'title' => __( 'Sortable', 'wck' ), 'options' => array( 'true', 'false' ), 'default' => 'false', 'description' => __( 'Whether the entries are sortable or not. This is valid for repeater fields.', 'wck' ) ),
|
125 |
+
array( 'type' => 'text', 'title' => __( 'Post ID', 'wck' ), 'description' => __( 'ID of a post on which the meta box should appear. You can also input multiple IDs and separate them with ","', 'wck' ) )
|
126 |
+
);
|
127 |
+
|
128 |
+
/* only in pro version */
|
129 |
+
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
130 |
+
$nested_arg = array( array( 'type' => 'select', 'title' => __( 'Nested', 'wck' ), 'options' => array( 'true', 'false' ), 'default' => 'false', 'description' => __( 'Set to true if you want this metabox to be a nested repeater inside another repeater.', 'wck' ) ) );
|
131 |
+
array_splice( $cfc_box_args_fields, 1, 0, $nested_arg );
|
132 |
+
}
|
133 |
+
|
134 |
+
if( !empty( $templates ) )
|
135 |
+
$cfc_box_args_fields[] = array( 'type' => 'select', 'title' => __( 'Page Template', 'wck' ), 'options' => $templates, 'default-option' => true, 'description' => __( 'If post type is "page" you can further select a page templete. The meta box will only appear on the page that has that selected page template.', 'wck' ) );
|
136 |
+
|
137 |
+
/* set up the box arguments */
|
138 |
+
$args = array(
|
139 |
+
'metabox_id' => 'wck-cfc-args',
|
140 |
+
'metabox_title' => __( 'Meta Box Arguments', 'wck' ),
|
141 |
+
'post_type' => 'wck-meta-box',
|
142 |
+
'meta_name' => 'wck_cfc_args',
|
143 |
+
'meta_array' => $cfc_box_args_fields,
|
144 |
+
'sortable' => false,
|
145 |
+
'single' => true
|
146 |
+
);
|
147 |
+
|
148 |
+
/* create the box */
|
149 |
+
new Wordpress_Creation_Kit( $args );
|
150 |
+
|
151 |
+
/* set up field types */
|
152 |
+
$field_types = array( 'text', 'textarea', 'select', 'checkbox', 'radio', 'upload', 'wysiwyg editor', 'datepicker', 'country select', 'user select', 'cpt select' );
|
153 |
+
$field_types = apply_filters( 'wck_field_types', $field_types );
|
154 |
+
|
155 |
+
/* setup post types */
|
156 |
+
$post_types = get_post_types( array( 'public' => true ), 'names' );
|
157 |
+
|
158 |
+
/* set up the fields array */
|
159 |
+
$cfc_box_fields_fields = apply_filters( 'wck_cfc_box_fields_fields', array(
|
160 |
+
array( 'type' => 'text', 'title' => __( 'Field Title', 'wck' ), 'description' => __( 'Title of the field. A slug will automatically be generated.', 'wck' ), 'required' => true ),
|
161 |
+
array( 'type' => 'select', 'title' => __( 'Field Type', 'wck' ), 'options' => $field_types, 'default-option' => true, 'description' => __( 'The field type', 'wck' ), 'required' => true ),
|
162 |
+
array( 'type' => 'textarea', 'title' => __( 'Description', 'wck' ), 'description' => 'The description of the field.' ),
|
163 |
+
array( 'type' => 'select', 'title' => __( 'Required', 'wck' ), 'options' => array( 'false', 'true' ), 'default' => 'false', 'description' => __( 'Whether the field is required or not', 'wck' ) ),
|
164 |
+
array( 'type' => 'select', 'title' => __( 'CPT', 'wck' ), 'options' => $post_types, 'default' => 'post', 'description' => __( 'Select what custom post type should be used in the CPT Select.', 'wck' ) ),
|
165 |
+
array( 'type' => 'text', 'title' => __( 'Default Value', 'wck' ), 'description' => __( 'Default value of the field. For Checkboxes if there are multiple values separate them with a ",". For an Upload field input an attachment id.', 'wck' ) ),
|
166 |
+
array( 'type' => 'text', 'title' => __( 'Options', 'wck' ), 'description' => __( 'Options for field types "select", "checkbox" and "radio". For multiple options separate them with a ",". You can use the following structure if you want the label to be different from the value: %LabelOne%valueone,%LabelTwo%valuetwo,%LabelThree%valuethree', 'wck' ) ),
|
167 |
+
array( 'type' => 'checkbox', 'title' => __( 'Attach upload to post', 'wck' ), 'description' => __( 'Uploads will be attached to the post if this is checked', 'wck' ), 'options' => array( 'yes' ), 'default' => 'yes' )
|
168 |
+
) );
|
169 |
+
|
170 |
+
|
171 |
+
/* set up the box arguments */
|
172 |
+
$args = array(
|
173 |
+
'metabox_id' => 'wck-cfc-fields',
|
174 |
+
'metabox_title' => __( 'Meta Box Fields', 'wck' ),
|
175 |
+
'post_type' => 'wck-meta-box',
|
176 |
+
'meta_name' => 'wck_cfc_fields',
|
177 |
+
'meta_array' => $cfc_box_fields_fields
|
178 |
+
);
|
179 |
+
|
180 |
+
/* create the box */
|
181 |
+
new Wordpress_Creation_Kit( $args );
|
182 |
+
}
|
183 |
+
|
184 |
+
/* advanced label options container for update form */
|
185 |
+
add_action( "wck_before_add_form_wck_cfc_args_element_0", 'wck_cfc_description_for_args_box' );
|
186 |
+
function wck_cfc_description_for_args_box(){
|
187 |
+
echo '<div class="cfc-message"><p>'. __( 'Enter below the arguments for the meta box.', 'wck' ) .'</p></div>';
|
188 |
+
}
|
189 |
+
|
190 |
+
/* add css classes on update form. Allows us to show/hide elements based on field type select value */
|
191 |
+
add_filter( 'wck_update_container_class_wck_cfc_fields', 'wck_cfc_update_container_class', 10, 4 );
|
192 |
+
function wck_cfc_update_container_class($wck_update_container_css_class, $meta, $results, $element_id) {
|
193 |
+
$wck_element_type = Wordpress_Creation_Kit::wck_generate_slug( $results[$element_id]["field-type"] );
|
194 |
+
return "class='update_container_$meta update_container_$wck_element_type element_type_$wck_element_type'";
|
195 |
+
}
|
196 |
+
|
197 |
+
add_filter( 'wck_element_class_wck_cfc_fields', 'wck_cfc_element_class', 10, 4 );
|
198 |
+
function wck_cfc_element_class($wck_element_class, $meta, $results, $element_id){
|
199 |
+
$wck_element_type = Wordpress_Creation_Kit::wck_generate_slug( $results[$element_id]["field-type"] );
|
200 |
+
$wck_element_class = "class='element_type_$wck_element_type'";
|
201 |
+
return $wck_element_class;
|
202 |
+
}
|
203 |
+
|
204 |
+
/* Show the slug for field title */
|
205 |
+
add_filter( "wck_after_listed_wck_cfc_fields_element_0", 'wck_cfc_display_field_title_slug', 10, 3 );
|
206 |
+
function wck_cfc_display_field_title_slug( $form, $i, $value ){
|
207 |
+
$form .= '<li class="slug-title"><em>'. __( 'Slug:', 'wck' ) .'</em><span>'. Wordpress_Creation_Kit::wck_generate_slug( $value ) .'</span> '. __( '(Note:changing the slug when you already have a lot of existing entries may result in unexpected behavior.)', 'wck' ) .' </li>';
|
208 |
+
return $form;
|
209 |
+
}
|
210 |
+
|
211 |
+
/* add refresh to page */
|
212 |
+
add_action("wck_refresh_list_wck_cfc", "wck_cfc_after_refresh_list");
|
213 |
+
function wck_cfc_after_refresh_list(){
|
214 |
+
echo '<script type="text/javascript">window.location="'. get_admin_url() . 'admin.php?page=cfc-page&updated=true' .'";</script>';
|
215 |
+
}
|
216 |
+
|
217 |
+
/* hook to create custom meta boxes */
|
218 |
+
add_action( 'admin_init', 'wck_cfc_create_boxes' );
|
219 |
+
|
220 |
+
function wck_cfc_create_boxes_args(){
|
221 |
+
$args = array(
|
222 |
+
'post_type' => 'wck-meta-box',
|
223 |
+
'numberposts' => -1
|
224 |
+
);
|
225 |
+
|
226 |
+
$all_meta_boxes = get_posts( $args );
|
227 |
+
|
228 |
+
$all_box_args = array();
|
229 |
+
|
230 |
+
if( !empty( $all_meta_boxes ) ){
|
231 |
+
foreach( $all_meta_boxes as $meta_box ){
|
232 |
+
$wck_cfc_args = get_post_meta( $meta_box->ID, 'wck_cfc_args', true );
|
233 |
+
$wck_cfc_fields = get_post_meta( $meta_box->ID, 'wck_cfc_fields', true );
|
234 |
+
|
235 |
+
$box_title = get_the_title( $meta_box->ID );
|
236 |
+
/* treat case where the post has no title */
|
237 |
+
if( empty( $box_title ) )
|
238 |
+
$box_title = '(no title)';
|
239 |
+
|
240 |
+
$fields_array = array();
|
241 |
+
if( !empty( $wck_cfc_fields ) ){
|
242 |
+
foreach( $wck_cfc_fields as $wck_cfc_field ){
|
243 |
+
$fields_inner_array = array( 'type' => $wck_cfc_field['field-type'], 'title' => $wck_cfc_field['field-title'] );
|
244 |
+
|
245 |
+
if( !empty( $wck_cfc_field['description'] ) )
|
246 |
+
$fields_inner_array['description'] = $wck_cfc_field['description'];
|
247 |
+
if( !empty( $wck_cfc_field['required'] ) )
|
248 |
+
$fields_inner_array['required'] = $wck_cfc_field['required'] == 'false' ? false : true;
|
249 |
+
if ( !empty( $wck_cfc_field['cpt'] ) )
|
250 |
+
$fields_inner_array['cpt'] = $wck_cfc_field['cpt'];
|
251 |
+
if( isset( $wck_cfc_field['default-value'] ) )
|
252 |
+
$fields_inner_array['default'] = $wck_cfc_field['default-value'];
|
253 |
+
if( !empty( $wck_cfc_field['options'] ) ){
|
254 |
+
$fields_inner_array['options'] = explode( ',', $wck_cfc_field['options'] );
|
255 |
+
|
256 |
+
if( !empty( $fields_inner_array['options'] ) ){
|
257 |
+
foreach( $fields_inner_array['options'] as $key => $value ){
|
258 |
+
$fields_inner_array['options'][$key] = trim( $value );
|
259 |
+
}
|
260 |
+
}
|
261 |
+
|
262 |
+
}
|
263 |
+
if( !empty( $wck_cfc_field['attach-upload-to-post'] ) )
|
264 |
+
$fields_inner_array['attach_to_post'] = $wck_cfc_field['attach-upload-to-post'] == 'yes' ? true : false;
|
265 |
+
|
266 |
+
$fields_array[] = $fields_inner_array;
|
267 |
+
}
|
268 |
+
}
|
269 |
+
|
270 |
+
if( !empty( $wck_cfc_args ) ){
|
271 |
+
foreach( $wck_cfc_args as $wck_cfc_arg ){
|
272 |
+
|
273 |
+
/* metabox_id must be different from meta_name */
|
274 |
+
$metabox_id = Wordpress_Creation_Kit::wck_generate_slug( $box_title );
|
275 |
+
if( $wck_cfc_arg['meta-name'] == $metabox_id || 'content' == $metabox_id )
|
276 |
+
$metabox_id = 'wck-'. $metabox_id;
|
277 |
+
|
278 |
+
$box_args = array(
|
279 |
+
'metabox_id' => $metabox_id,
|
280 |
+
'metabox_title' => $box_title,
|
281 |
+
'post_type' => $wck_cfc_arg['post-type'],
|
282 |
+
'meta_name' => $wck_cfc_arg['meta-name'],
|
283 |
+
'meta_array' => $fields_array
|
284 |
+
);
|
285 |
+
if( !empty( $wck_cfc_arg['sortable'] ) )
|
286 |
+
$box_args['sortable'] = $wck_cfc_arg['sortable'] == 'false' ? false : true;
|
287 |
+
|
288 |
+
if( !empty( $wck_cfc_arg['repeater'] ) )
|
289 |
+
$box_args['single'] = $wck_cfc_arg['repeater'] == 'false' ? true : false;
|
290 |
+
|
291 |
+
if( !empty( $wck_cfc_arg['post-id'] ) )
|
292 |
+
$box_args['post_id'] = $wck_cfc_arg['post-id'];
|
293 |
+
|
294 |
+
if( !empty( $wck_cfc_arg['page-template'] ) )
|
295 |
+
$box_args['page_template'] = $wck_cfc_arg['page-template'];
|
296 |
+
|
297 |
+
$box_args['unserialize_fields'] = apply_filters( 'wck_cfc_unserialize_fields_'.$wck_cfc_arg['meta-name'], false );
|
298 |
+
|
299 |
+
/* nested repeater arg for pro version only */
|
300 |
+
if( !empty( $wck_cfc_arg['nested'] ) )
|
301 |
+
$box_args['nested'] = $wck_cfc_arg['nested'] == 'false' ? false : true;
|
302 |
+
|
303 |
+
$all_box_args[] = apply_filters( "wck_cfc_box_args_".$wck_cfc_arg['meta-name'], $box_args );
|
304 |
+
}
|
305 |
+
}
|
306 |
+
}
|
307 |
+
}
|
308 |
+
return $all_box_args;
|
309 |
+
}
|
310 |
+
|
311 |
+
function wck_cfc_create_boxes(){
|
312 |
+
$all_box_args = wck_cfc_create_boxes_args();
|
313 |
+
if( !empty( $all_box_args ) ){
|
314 |
+
foreach( $all_box_args as $box_args ){
|
315 |
+
new Wordpress_Creation_Kit( $box_args );
|
316 |
+
}
|
317 |
+
}
|
318 |
+
}
|
319 |
+
|
320 |
+
/* Meta Name Verification */
|
321 |
+
add_filter( 'wck_required_test_wck_cfc_args_meta-name', 'wck_cfc_ceck_meta_name', 10, 3 );
|
322 |
+
function wck_cfc_ceck_meta_name( $bool, $value, $post_id ){
|
323 |
+
global $wpdb;
|
324 |
+
|
325 |
+
$wck_cfc_args = get_post_meta( $post_id, 'wck_cfc_args', true );
|
326 |
+
|
327 |
+
if( empty( $wck_cfc_args ) ){
|
328 |
+
//this is the add case
|
329 |
+
$check_meta_existance = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(meta_key) FROM $wpdb->postmeta WHERE meta_key = %s", $value ) );
|
330 |
+
}
|
331 |
+
else{
|
332 |
+
//this is the update case
|
333 |
+
if( $wck_cfc_args[0]['meta-name'] != $value ){
|
334 |
+
$check_meta_existance = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(meta_key) FROM $wpdb->postmeta WHERE meta_key = %s", $value ) );
|
335 |
+
}
|
336 |
+
else
|
337 |
+
$check_meta_existance = false;
|
338 |
+
}
|
339 |
+
|
340 |
+
if( strpos( $value, ' ' ) === false )
|
341 |
+
$contains_spaces = false;
|
342 |
+
else
|
343 |
+
$contains_spaces = true;
|
344 |
+
|
345 |
+
if( trim( strtolower( $value ) ) !== 'content' && trim( strtolower( $value ) ) !== 'action' )
|
346 |
+
$restricted_name = false;
|
347 |
+
else
|
348 |
+
$restricted_name = true;
|
349 |
+
|
350 |
+
return ( $check_meta_existance || empty($value) || $contains_spaces || $restricted_name );
|
351 |
+
}
|
352 |
+
|
353 |
+
add_filter( 'wck_required_message_wck_cfc_args_meta-name', 'wck_cfc_change_meta_message', 10, 2 );
|
354 |
+
function wck_cfc_change_meta_message( $message, $value ){
|
355 |
+
if( empty( $value ) )
|
356 |
+
return $message;
|
357 |
+
else if( strpos( $value, ' ' ) !== false )
|
358 |
+
return __( "Choose a different Meta Name as this one contains spaces\n", "wck" );
|
359 |
+
else if( trim( strtolower( $value ) ) === 'content' || trim( strtolower( $value ) ) === 'action' )
|
360 |
+
return __( "Choose a different Meta Name as this one is reserved\n", "wck" );
|
361 |
+
else
|
362 |
+
return __( "Choose a different Meta Name as this one already exists\n", "wck" );
|
363 |
+
}
|
364 |
+
|
365 |
+
/* Field Name Verification */
|
366 |
+
add_filter( 'wck_required_test_wck_cfc_fields_field-title', 'wck_cfc_ceck_field_title', 10, 3 );
|
367 |
+
function wck_cfc_ceck_field_title( $bool, $value, $post_id ){
|
368 |
+
|
369 |
+
if( trim( strtolower( $value ) ) !== 'content' && trim( strtolower( $value ) ) !== 'action' )
|
370 |
+
$restricted_name = false;
|
371 |
+
else
|
372 |
+
$restricted_name = true;
|
373 |
+
|
374 |
+
return ( empty($value) || $restricted_name );
|
375 |
+
}
|
376 |
+
|
377 |
+
add_filter( 'wck_required_message_wck_cfc_fields_field-title', 'wck_cfc_change_field_title_message', 10, 2 );
|
378 |
+
function wck_cfc_change_field_title_message( $message, $value ){
|
379 |
+
if( empty( $value ) )
|
380 |
+
return $message;
|
381 |
+
else if( trim( strtolower( $value ) ) === 'content' || trim( strtolower( $value ) ) === 'action' )
|
382 |
+
return __( "Choose a different Field Title as this one is reserved\n", "wck" );
|
383 |
+
}
|
384 |
+
|
385 |
+
/* Add the separate meta for post type, post id and page template */
|
386 |
+
add_action( 'wck_before_add_meta', 'wck_cfc_add_separate_meta', 10, 3 );
|
387 |
+
function wck_cfc_add_separate_meta( $meta, $id, $values ){
|
388 |
+
if( $meta == 'wck_cfc_args' ){
|
389 |
+
// Post Type
|
390 |
+
if( !empty( $values['post-type'] ) ){
|
391 |
+
update_post_meta( $id, 'wck_cfc_post_type_arg', $values['post-type'] );
|
392 |
+
}
|
393 |
+
|
394 |
+
// Post Id
|
395 |
+
if( !empty( $values['post-id'] ) ){
|
396 |
+
update_post_meta( $id, 'wck_cfc_post_id_arg', $values['post-id'] );
|
397 |
+
}
|
398 |
+
|
399 |
+
// Page Template
|
400 |
+
if( !empty( $values['page-template'] ) ){
|
401 |
+
update_post_meta( $id, 'wck_cfc_page_template_arg', $values['page-template'] );
|
402 |
+
}
|
403 |
+
}
|
404 |
+
}
|
405 |
+
|
406 |
+
/* Change meta_key in db if field changed and also update the separate meta for post type, post id and page template */
|
407 |
+
add_action( 'wck_before_update_meta', 'wck_cfc_change_meta_key', 10, 4 );
|
408 |
+
function wck_cfc_change_meta_key( $meta, $id, $values, $element_id ){
|
409 |
+
global $wpdb;
|
410 |
+
if( $meta == 'wck_cfc_args' ){
|
411 |
+
$wck_cfc_args = get_post_meta( $id, 'wck_cfc_args', true );
|
412 |
+
if( !empty( $wck_cfc_args ) ) {
|
413 |
+
if ($wck_cfc_args[0]['meta-name'] != $values['meta-name']) {
|
414 |
+
$wpdb->update(
|
415 |
+
$wpdb->postmeta,
|
416 |
+
array('meta_key' => $values['meta-name']),
|
417 |
+
array('meta_key' => $wck_cfc_args[0]['meta-name'])
|
418 |
+
);
|
419 |
+
}
|
420 |
+
|
421 |
+
// Post Type
|
422 |
+
if ($wck_cfc_args[0]['post-type'] != $values['post-type']) {
|
423 |
+
update_post_meta($id, 'wck_cfc_post_type_arg', $values['post-type']);
|
424 |
+
}
|
425 |
+
|
426 |
+
// Post Id
|
427 |
+
if ($wck_cfc_args[0]['post-id'] != $values['post-id']) {
|
428 |
+
update_post_meta($id, 'wck_cfc_post_id_arg', $values['post-id']);
|
429 |
+
}
|
430 |
+
|
431 |
+
// Page Template
|
432 |
+
if ($wck_cfc_args[0]['page-template'] != $values['page-template']) {
|
433 |
+
update_post_meta($id, 'wck_cfc_page_template_arg', $values['page-template']);
|
434 |
+
}
|
435 |
+
}
|
436 |
+
}
|
437 |
+
}
|
438 |
+
|
439 |
+
/* Change Field Title in db if field changed */
|
440 |
+
add_action( 'wck_before_update_meta', 'wck_cfc_change_field_title', 10, 4 );
|
441 |
+
function wck_cfc_change_field_title( $meta, $id, $values, $element_id ){
|
442 |
+
global $wpdb;
|
443 |
+
if( $meta == 'wck_cfc_fields' ){
|
444 |
+
$wck_cfc_fields = get_post_meta( $id, 'wck_cfc_fields', true );
|
445 |
+
if( !empty( $wck_cfc_fields ) ) {
|
446 |
+
if ($wck_cfc_fields[$element_id]['field-title'] != $values['field-title']) {
|
447 |
+
|
448 |
+
$wck_cfc_args = get_post_meta($id, 'wck_cfc_args', true);
|
449 |
+
$meta_name = $wck_cfc_args[0]['meta-name'];
|
450 |
+
$post_id_with_this_meta = $wpdb->get_results($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = %s", $meta_name));
|
451 |
+
|
452 |
+
if (!empty($post_id_with_this_meta)) {
|
453 |
+
foreach ($post_id_with_this_meta as $post) {
|
454 |
+
$results = get_post_meta($post->post_id, $meta_name, true);
|
455 |
+
if (!empty($results)) {
|
456 |
+
foreach ($results as $key => $result) {
|
457 |
+
$results[$key][Wordpress_Creation_Kit::wck_generate_slug($values['field-title'])] = $results[$key][Wordpress_Creation_Kit::wck_generate_slug($wck_cfc_fields[$element_id]['field-title'])];
|
458 |
+
unset($results[$key][Wordpress_Creation_Kit::wck_generate_slug($wck_cfc_fields[$element_id]['field-title'])]);
|
459 |
+
}
|
460 |
+
}
|
461 |
+
update_post_meta($post->post_id, $meta_name, $results);
|
462 |
+
}
|
463 |
+
}
|
464 |
+
}
|
465 |
+
}
|
466 |
+
}
|
467 |
+
}
|
468 |
+
|
469 |
+
/* Add Custom columns to listing */
|
470 |
+
add_filter("manage_wck-meta-box_posts_columns", "wck_cfc_edit_columns" );
|
471 |
+
function wck_cfc_edit_columns($columns){
|
472 |
+
$columns['cfc-id'] = __( "Id", "wck" );
|
473 |
+
$columns['cfc-post-type'] = __( "Post Type", "wck" );
|
474 |
+
$columns['cfc-page-template'] = __( "Page Template", "wck" );
|
475 |
+
|
476 |
+
/* only in pro version */
|
477 |
+
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
478 |
+
$columns['cfc-nested-repeater'] = __( "Nested Repeater", "wck" );
|
479 |
+
}
|
480 |
+
|
481 |
+
return $columns;
|
482 |
+
}
|
483 |
+
|
484 |
+
/* Register the column as sortable */
|
485 |
+
add_filter( 'manage_edit-wck-meta-box_sortable_columns', 'wck_cfc_register_sortable_columns' );
|
486 |
+
function wck_cfc_register_sortable_columns( $columns ) {
|
487 |
+
$columns['cfc-id'] = 'cfc-id';
|
488 |
+
$columns['cfc-post-type'] = 'cfc-post-type';
|
489 |
+
$columns['cfc-page-template'] = 'cfc-page-template';
|
490 |
+
|
491 |
+
return $columns;
|
492 |
+
}
|
493 |
+
|
494 |
+
/* Tell WordPress how to handle the sorting */
|
495 |
+
add_filter( 'request', 'wck_cfc_column_orderby' );
|
496 |
+
function wck_cfc_column_orderby( $vars ) {
|
497 |
+
if ( isset( $vars['orderby'] ) && 'cfc-id' == $vars['orderby'] ) {
|
498 |
+
$vars = array_merge( $vars, array(
|
499 |
+
'meta_key' => 'wck_cfc_post_id_arg',
|
500 |
+
'orderby' => 'meta_value_num'
|
501 |
+
) );
|
502 |
+
}
|
503 |
+
|
504 |
+
if ( isset( $vars['orderby'] ) && 'cfc-post-type' == $vars['orderby'] ) {
|
505 |
+
$vars = array_merge( $vars, array(
|
506 |
+
'meta_key' => 'wck_cfc_post_type_arg',
|
507 |
+
'orderby' => 'meta_value'
|
508 |
+
) );
|
509 |
+
}
|
510 |
+
|
511 |
+
if ( isset( $vars['orderby'] ) && 'cfc-page-template' == $vars['orderby'] ) {
|
512 |
+
$vars = array_merge( $vars, array(
|
513 |
+
'meta_key' => 'wck_cfc_page_template_arg',
|
514 |
+
'orderby' => 'meta_value'
|
515 |
+
) );
|
516 |
+
}
|
517 |
+
|
518 |
+
return $vars;
|
519 |
+
}
|
520 |
+
|
521 |
+
/* Let's set up what to display in the columns */
|
522 |
+
add_action("manage_wck-meta-box_posts_custom_column", "wck_cfc_custom_columns", 10, 2);
|
523 |
+
function wck_cfc_custom_columns( $column_name, $post_id ){
|
524 |
+
if( $column_name == 'cfc-id' ){
|
525 |
+
$post_id_arg = get_post_meta( $post_id, 'wck_cfc_post_id_arg', true );
|
526 |
+
echo $post_id_arg;
|
527 |
+
}
|
528 |
+
|
529 |
+
if( $column_name == 'cfc-post-type' ){
|
530 |
+
$post_type_arg = get_post_meta( $post_id, 'wck_cfc_post_type_arg', true );
|
531 |
+
echo $post_type_arg;
|
532 |
+
}
|
533 |
+
|
534 |
+
if( $column_name == 'cfc-page-template' ){
|
535 |
+
$page_template_arg = get_post_meta( $post_id, 'wck_cfc_page_template_arg', true );
|
536 |
+
echo $page_template_arg;
|
537 |
+
}
|
538 |
+
|
539 |
+
/* only in pro version */
|
540 |
+
if( function_exists( 'wck_nr_add_repeater_boxes' ) ){
|
541 |
+
if( $column_name == 'cfc-nested-repeater' ){
|
542 |
+
$box_args = get_post_meta( $post_id, 'wck_cfc_args', true );
|
543 |
+
if( !empty( $box_args[0]['nested'] ) )
|
544 |
+
echo $box_args[0]['nested'];
|
545 |
+
}
|
546 |
+
}
|
547 |
+
}
|
548 |
+
|
549 |
+
/* Add side metaboxes */
|
550 |
+
add_action('add_meta_boxes', 'wck_cfc_add_side_boxes' );
|
551 |
+
function wck_cfc_add_side_boxes(){
|
552 |
+
add_meta_box( 'wck-cfc-side', __( 'Wordpress Creation Kit', 'wck' ), 'wck_cfc_side_box_one', 'wck-meta-box', 'side', 'low' );
|
553 |
+
}
|
554 |
+
function wck_cfc_side_box_one(){
|
555 |
+
?>
|
556 |
+
<a href="http://www.cozmoslabs.com/wck-custom-fields-custom-post-types-plugin/?utm_source=wpbackend&utm_medium=clientsite&utm_campaign=WCKFree"><img src="<?php echo plugins_url('/images/banner_pro.png', __FILE__) ?>?v=1" width="260" height="385" alt="WCK-PRO"/></a>
|
557 |
+
<?php
|
558 |
+
}
|
559 |
+
|
560 |
+
|
561 |
+
/* Contextual Help */
|
562 |
+
add_action('current_screen', 'wck_cfc_help');
|
563 |
+
|
564 |
+
function wck_cfc_help () {
|
565 |
+
$screen = get_current_screen();
|
566 |
+
/*
|
567 |
+
* Check if current screen is wck_page_cptc-page
|
568 |
+
* Don't add help tab if it's not
|
569 |
+
*/
|
570 |
+
if ( $screen->id != 'wck-meta-box' )
|
571 |
+
return;
|
572 |
+
|
573 |
+
// Add help tabs
|
574 |
+
$screen->add_help_tab( array(
|
575 |
+
'id' => 'wck_cfc_overview',
|
576 |
+
'title' => __( 'Overview', 'wck' ),
|
577 |
+
'content' => '<p>' . __( 'WCK Custom Fields Creator allows you to easily create custom meta boxes for Wordpress without any programming knowledge.', 'wck' ) . '</p>',
|
578 |
+
) );
|
579 |
+
|
580 |
+
$screen->add_help_tab( array(
|
581 |
+
'id' => 'wck_cfc_arguments',
|
582 |
+
'title' => __( 'Meta Box Arguments', 'wck' ),
|
583 |
+
'content' => '<p>' . __( 'Define here the rules for the meta box. This rules are used to set up where the meta box will appear, it\'s type and also the meta key name stored in the database. The name of the entry (Enter title here) will be used as the meta box title.', 'wck' ) . '</p>',
|
584 |
+
) );
|
585 |
+
|
586 |
+
$screen->add_help_tab( array(
|
587 |
+
'id' => 'wck_cfc_fields',
|
588 |
+
'title' => __( 'Meta Box Fields', 'wck' ),
|
589 |
+
'content' => '<p>' . __( 'Define here the fields contained in the meta box. From "Field Title" a slug will be automatically generated and you will use this slug to display the data in the frontend.', 'wck' ) . '</p>',
|
590 |
+
) );
|
591 |
+
|
592 |
+
$screen->add_help_tab( array(
|
593 |
+
'id' => 'wck_cfc_example',
|
594 |
+
'title' => __( 'CFC Frontend Example', 'wck' ),
|
595 |
+
'content' => '<p>' . __( 'Let\'s consider we have a meta box with the following arguments:<br /> - Meta name: books <br /> - Post Type: post <br />And we also have two fields deffined:<br /> - A text field with the Field Title: Book name <br /> - And another text field with the Field Title: Author name ', 'wck' ) . '</p>' . '<p>' . __( 'You will notice that slugs will automatically be created for the two text fields. For "Book name" the slug will be "book-name" and for "Author name" the slug will be "author-name"', 'wck' ) . '</p>' . '<p>' . __( 'Let\'s see what the code for displaying the meta box values in single.php of your theme would be:', 'wck' ) . '</p>' . '<pre>' . '$books = get_post_meta( $post->ID, \'books\', true ); <br />foreach( $books as $book){<br /> echo $book[\'book-name\'];<br / > echo $book[\'author-name\'];<br />}' . '</pre>' . '<p>' . __( 'So as you can see the Meta Name "books" is used as the $key parameter of the funtion <a href="http://codex.wordpress.org/Function_Reference/get_post_meta" target="_blank">get_post_meta()</a> and the slugs of the text fields are used as keys for the resulting array. Basically CFC stores the entries as post meta in a multidimensioanl array. In our case the array would be: <br /><pre>array( array( "book-name" => "The Hitchhiker\'s Guide To The Galaxy", "author-name" => "Douglas Adams" ), array( "book-name" => "Ender\'s Game", "author-name" => "Orson Scott Card" ) );</pre> This is true even for single entries.', 'wck' ) . '</p>'
|
596 |
+
) );
|
597 |
+
}
|
598 |
+
|
599 |
+
/**
|
600 |
+
* Get the Page Templates available in the current theme
|
601 |
+
*
|
602 |
+
* Based on wordpress get_page_templates()
|
603 |
+
*
|
604 |
+
* @return array Key is the template name, value is the %Template Name%filename string format of the template
|
605 |
+
*/
|
606 |
+
function wck_get_page_templates() {
|
607 |
+
|
608 |
+
$page_templates = array();
|
609 |
+
$theme_templates = array_flip(wp_get_theme()->get_page_templates());
|
610 |
+
if( !empty( $theme_templates ) ){
|
611 |
+
foreach( $theme_templates as $key => $value){
|
612 |
+
$page_templates[$key] = "%$key%$value";
|
613 |
+
}
|
614 |
+
}
|
615 |
+
return $page_templates;
|
616 |
+
}
|
617 |
+
|
618 |
+
/* Filter post update message */
|
619 |
+
add_filter( 'post_updated_messages', 'wck_cfc_filter_post_update_message' );
|
620 |
+
function wck_cfc_filter_post_update_message($messages){
|
621 |
+
$messages['wck-meta-box'] = array(
|
622 |
+
0 => '', // Unused. Messages start at index 1.
|
623 |
+
1 => __('Metabox updated.', 'wck')
|
624 |
+
);
|
625 |
+
return $messages;
|
626 |
+
}
|
627 |
+
|
628 |
+
/* Filter Field Types for free version */
|
629 |
+
add_filter( 'wck_field_types', 'wck_cfc_filter_field_types' );
|
630 |
+
function wck_cfc_filter_field_types( $field_types ){
|
631 |
+
$wck_premium_update = WCK_PLUGIN_DIR.'/update/';
|
632 |
+
if ( !file_exists ($wck_premium_update . 'update-checker.php'))
|
633 |
+
$field_types = array( 'text', 'textarea', 'select', 'checkbox', 'radio', 'upload', 'wysiwyg editor' );
|
634 |
+
|
635 |
+
return $field_types;
|
636 |
+
}
|
637 |
+
?>
|
wck.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WCK - Custom Fields and Custom Post Types Creator
|
4 |
Description: WordPress Creation Kit consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's.
|
5 |
Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe
|
6 |
-
Version: 1.1.
|
7 |
Author URI: http://www.cozmoslabs.com
|
8 |
|
9 |
License: GPL2
|
@@ -142,8 +142,22 @@ if (file_exists ($wck_premium_update . 'update-checker.php')){
|
|
142 |
}
|
143 |
}
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
/* include nested repeaters */
|
146 |
/* if( file_exists( dirname(__FILE__).'/wordpress-creation-kit-api/wck-nested-repeaters/wck-nested-repeaters.php' ) )
|
147 |
require_once('wordpress-creation-kit-api/wck-nested-repeaters/wck-nested-repeaters.php'); */
|
148 |
-
|
149 |
-
?>
|
3 |
Plugin Name: WCK - Custom Fields and Custom Post Types Creator
|
4 |
Description: WordPress Creation Kit consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's.
|
5 |
Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe
|
6 |
+
Version: 1.1.5
|
7 |
Author URI: http://www.cozmoslabs.com
|
8 |
|
9 |
License: GPL2
|
142 |
}
|
143 |
}
|
144 |
|
145 |
+
/* Add admin footer text for encouraging users to leave a review of the plugin on wordpress.org */
|
146 |
+
function wck_admin_rate_us( $footer_text ) {
|
147 |
+
global $current_screen;
|
148 |
+
|
149 |
+
if ($current_screen->parent_base == 'wck-page'){
|
150 |
+
$rate_text = sprintf( __( 'If you enjoy using <strong> WordPress Creation Kit </strong> please <a href="%1$s" target="_blank">rate us on WordPress.org</a> to help us reach more people. More happy users means more features, less bugs and better support for everyone. ', 'profilebuilder' ),
|
151 |
+
'https://wordpress.org/support/view/plugin-reviews/wck-custom-fields-and-custom-post-types-creator?filter=5#postform'
|
152 |
+
);
|
153 |
+
return '<span id="footer-thankyou">' .$rate_text . '</span>';
|
154 |
+
} else {
|
155 |
+
return $footer_text;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
add_filter('admin_footer_text','wck_admin_rate_us');
|
159 |
+
|
160 |
/* include nested repeaters */
|
161 |
/* if( file_exists( dirname(__FILE__).'/wordpress-creation-kit-api/wck-nested-repeaters/wck-nested-repeaters.php' ) )
|
162 |
require_once('wordpress-creation-kit-api/wck-nested-repeaters/wck-nested-repeaters.php'); */
|
163 |
+
?>
|
|
wordpress-creation-kit-api/wck-fep/wck-fep.js
CHANGED
@@ -1,160 +1,160 @@
|
|
1 |
-
/* add new post */
|
2 |
-
function wckFepAddPost(value, postId, action, nonce){
|
3 |
-
|
4 |
-
/* add ajax loading */
|
5 |
-
jQuery( '.fep-container' ).append( "<div id='fep-ajax-loading'></div>" );
|
6 |
-
|
7 |
-
/* if CKEDITOR then trigger save. save puts the content in the hidden textarea */
|
8 |
-
if( CKEDITOR !== undefined ){
|
9 |
-
for ( instance in CKEDITOR.instances )
|
10 |
-
CKEDITOR.instances[instance].updateElement();
|
11 |
-
}
|
12 |
-
|
13 |
-
var values = wckGetTargetedValues( '#'+value+' .fep-element-wrap > .mb-right-column .mb-field' );
|
14 |
-
|
15 |
-
/* check for single cfcs */
|
16 |
-
if( jQuery('.single-cfc').length != 0 ){
|
17 |
-
|
18 |
-
/*object to hold the singleCFCs */
|
19 |
-
var singleCFCs = {};
|
20 |
-
|
21 |
-
jQuery('.single-cfc').each(function(){
|
22 |
-
key = jQuery(this).attr('id');
|
23 |
-
|
24 |
-
singleValues = wckGetTargetedValues( '#'+key+' > .fep-single-element-wrap > .mb-right-column .mb-field' );
|
25 |
-
singleCFCs[key] = singleValues;
|
26 |
-
});
|
27 |
-
}
|
28 |
-
|
29 |
-
jQuery.post( wckAjaxurl, { action:"wck_fep_add_post"+value, meta:value, postid:postId, values:values, single_cfcs:singleCFCs, action_type:action, _ajax_nonce:nonce}, function(response) {
|
30 |
-
jQuery( '#fep-ajax-loading' ).remove();
|
31 |
-
jQuery( '#'+value+' .fep-element-wrap > .mb-right-column .field-label').removeClass('error');
|
32 |
-
|
33 |
-
if( response.error ){
|
34 |
-
jQuery('#'+value).parent().css('opacity','1');
|
35 |
-
jQuery('#mb-ajax-loading').remove();
|
36 |
-
|
37 |
-
|
38 |
-
jQuery.each( response.errorfields, function (index, value) {
|
39 |
-
jQuery( '#'+value+' .fep-element-wrap > .field-label[for="' + value + '"]' ).addClass('error');
|
40 |
-
});
|
41 |
-
|
42 |
-
alert( response.error );
|
43 |
-
}
|
44 |
-
else{
|
45 |
-
jQuery('.fep-container').replaceWith( response );
|
46 |
-
}
|
47 |
-
|
48 |
-
});
|
49 |
-
}
|
50 |
-
|
51 |
-
/* helper function to store values of targets in an array */
|
52 |
-
function wckGetTargetedValues( target ){
|
53 |
-
|
54 |
-
/*object to hold the values */
|
55 |
-
var values = {};
|
56 |
-
|
57 |
-
jQuery( target ).each(function(){
|
58 |
-
|
59 |
-
var key = jQuery(this).attr('name');
|
60 |
-
|
61 |
-
if(jQuery(this).attr('type') == 'checkbox' || jQuery(this).attr('type') == 'radio' ) {
|
62 |
-
|
63 |
-
if( typeof values[key.toString()] === "undefined" )
|
64 |
-
values[key.toString()] = '';
|
65 |
-
|
66 |
-
if(jQuery(this).is(':checked')){
|
67 |
-
if( values[key.toString()] == '' )
|
68 |
-
values[key.toString()] += jQuery(this).val().toString();
|
69 |
-
else
|
70 |
-
values[key.toString()] += ', ' + jQuery(this).val().toString();
|
71 |
-
}
|
72 |
-
}
|
73 |
-
|
74 |
-
else
|
75 |
-
values[key.toString()] = jQuery(this).val().toString();
|
76 |
-
|
77 |
-
});
|
78 |
-
return values;
|
79 |
-
}
|
80 |
-
|
81 |
-
/* delete post */
|
82 |
-
function wckFepDeletePost( id, nonce){
|
83 |
-
var response = confirm( "Delete this entry ?" );
|
84 |
-
|
85 |
-
if( response == true ){
|
86 |
-
elementParent = jQuery('#'+id).parent();
|
87 |
-
elementParent.css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
|
88 |
-
jQuery.post( wckAjaxurl , { action:"wck_fep_delete_entry", id:id, _ajax_nonce:nonce}, function(response) {
|
89 |
-
if( response == 'Deleted' ){
|
90 |
-
jQuery('#'+id).remove();
|
91 |
-
jQuery('#mb-ajax-loading').remove();
|
92 |
-
elementParent.css( {'opacity':'1'} );
|
93 |
-
}
|
94 |
-
});
|
95 |
-
}
|
96 |
-
}
|
97 |
-
|
98 |
-
jQuery( function(){
|
99 |
-
/* show register form */
|
100 |
-
jQuery(document).on( 'click', '#wck-fep-show-register-form', function(){
|
101 |
-
jQuery( '#wck-fep-login-form' ).hide();
|
102 |
-
jQuery( '#wck-fep-register-form' ).show();
|
103 |
-
});
|
104 |
-
|
105 |
-
/* show login form */
|
106 |
-
jQuery(document).on( 'click', '#wck-fep-back-to-login', function(){
|
107 |
-
jQuery( '#wck-fep-login-form' ).show();
|
108 |
-
jQuery( '#wck-fep-register-form' ).hide();
|
109 |
-
});
|
110 |
-
});
|
111 |
-
|
112 |
-
|
113 |
-
/* register user function */
|
114 |
-
function wckFepRegisterUser( nonce ){
|
115 |
-
username = jQuery( '#wck-fep-register-form #user-name' ).val();
|
116 |
-
email = jQuery( '#wck-fep-register-form #email' ).val();
|
117 |
-
password = jQuery( '#wck-fep-register-form #password' ).val();
|
118 |
-
confirmPassword = jQuery( '#wck-fep-register-form #confirm-password' ).val();
|
119 |
-
|
120 |
-
|
121 |
-
jQuery.post( wckAjaxurl, { action:"wck_fep_register_user", action_type:'register', username:username, email:email, password:password, confirm_password:confirmPassword, _ajax_nonce:nonce }, function(response) {
|
122 |
-
|
123 |
-
if( response == 'User added successfully!' ){
|
124 |
-
jQuery( '#wck-fep-login-messages' ).html( '<span class="wck-fep-message">' + response + '</span>' );
|
125 |
-
jQuery( '#wck-fep-login-form' ).show();
|
126 |
-
jQuery( '#wck-fep-register-form' ).hide();
|
127 |
-
}
|
128 |
-
else{
|
129 |
-
jQuery('#wck-fep-registration-errors').html( response );
|
130 |
-
}
|
131 |
-
|
132 |
-
|
133 |
-
});
|
134 |
-
}
|
135 |
-
|
136 |
-
/* update user function */
|
137 |
-
function wckFepUpdateUser( nonce ){
|
138 |
-
email = jQuery( '#wck-fep-update-form #email' ).val();
|
139 |
-
password = jQuery( '#wck-fep-update-form #password' ).val();
|
140 |
-
confirmPassword = jQuery( '#wck-fep-update-form #confirm-password' ).val();
|
141 |
-
description = jQuery( '#wck-fep-update-form #description' ).val();
|
142 |
-
|
143 |
-
|
144 |
-
jQuery.post( wckAjaxurl, { action:"wck_fep_update_user", action_type:'update', email:email, password:password, confirm_password:confirmPassword, description:description, _ajax_nonce:nonce }, function(response) {
|
145 |
-
|
146 |
-
if( response == 'User added successfully!' ){
|
147 |
-
jQuery( '#wck-fep-update-messages' ).html( '<span class="wck-fep-message">Update Succesfull!</span>' );
|
148 |
-
}
|
149 |
-
else{
|
150 |
-
jQuery('#wck-fep-update-errors').html( response );
|
151 |
-
}
|
152 |
-
|
153 |
-
});
|
154 |
-
}
|
155 |
-
|
156 |
-
/* fep dashboard init tabs */
|
157 |
-
jQuery(function(){
|
158 |
-
if( jQuery( '#fep-dashboard' ).length != 0 )
|
159 |
-
jQuery('#fep-dashboard').tabs();
|
160 |
});
|
1 |
+
/* add new post */
|
2 |
+
function wckFepAddPost(value, postId, action, nonce){
|
3 |
+
|
4 |
+
/* add ajax loading */
|
5 |
+
jQuery( '.fep-container' ).append( "<div id='fep-ajax-loading'></div>" );
|
6 |
+
|
7 |
+
/* if CKEDITOR then trigger save. save puts the content in the hidden textarea */
|
8 |
+
if( CKEDITOR !== undefined ){
|
9 |
+
for ( instance in CKEDITOR.instances )
|
10 |
+
CKEDITOR.instances[instance].updateElement();
|
11 |
+
}
|
12 |
+
|
13 |
+
var values = wckGetTargetedValues( '#'+value+' .fep-element-wrap > .mb-right-column .mb-field' );
|
14 |
+
|
15 |
+
/* check for single cfcs */
|
16 |
+
if( jQuery('.single-cfc').length != 0 ){
|
17 |
+
|
18 |
+
/*object to hold the singleCFCs */
|
19 |
+
var singleCFCs = {};
|
20 |
+
|
21 |
+
jQuery('.single-cfc').each(function(){
|
22 |
+
key = jQuery(this).attr('id');
|
23 |
+
|
24 |
+
singleValues = wckGetTargetedValues( '#'+key+' > .fep-single-element-wrap > .mb-right-column .mb-field' );
|
25 |
+
singleCFCs[key] = singleValues;
|
26 |
+
});
|
27 |
+
}
|
28 |
+
|
29 |
+
jQuery.post( wckAjaxurl, { action:"wck_fep_add_post"+value, meta:value, postid:postId, values:values, single_cfcs:singleCFCs, action_type:action, _ajax_nonce:nonce}, function(response) {
|
30 |
+
jQuery( '#fep-ajax-loading' ).remove();
|
31 |
+
jQuery( '#'+value+' .fep-element-wrap > .mb-right-column .field-label').removeClass('error');
|
32 |
+
|
33 |
+
if( response.error ){
|
34 |
+
jQuery('#'+value).parent().css('opacity','1');
|
35 |
+
jQuery('#mb-ajax-loading').remove();
|
36 |
+
|
37 |
+
|
38 |
+
jQuery.each( response.errorfields, function (index, value) {
|
39 |
+
jQuery( '#'+value+' .fep-element-wrap > .field-label[for="' + value + '"]' ).addClass('error');
|
40 |
+
});
|
41 |
+
|
42 |
+
alert( response.error );
|
43 |
+
}
|
44 |
+
else{
|
45 |
+
jQuery('.fep-container').replaceWith( response );
|
46 |
+
}
|
47 |
+
|
48 |
+
});
|
49 |
+
}
|
50 |
+
|
51 |
+
/* helper function to store values of targets in an array */
|
52 |
+
function wckGetTargetedValues( target ){
|
53 |
+
|
54 |
+
/*object to hold the values */
|
55 |
+
var values = {};
|
56 |
+
|
57 |
+
jQuery( target ).each(function(){
|
58 |
+
|
59 |
+
var key = jQuery(this).attr('name');
|
60 |
+
|
61 |
+
if(jQuery(this).attr('type') == 'checkbox' || jQuery(this).attr('type') == 'radio' ) {
|
62 |
+
|
63 |
+
if( typeof values[key.toString()] === "undefined" )
|
64 |
+
values[key.toString()] = '';
|
65 |
+
|
66 |
+
if(jQuery(this).is(':checked')){
|
67 |
+
if( values[key.toString()] == '' )
|
68 |
+
values[key.toString()] += jQuery(this).val().toString();
|
69 |
+
else
|
70 |
+
values[key.toString()] += ', ' + jQuery(this).val().toString();
|
71 |
+
}
|
72 |
+
}
|
73 |
+
|
74 |
+
else
|
75 |
+
values[key.toString()] = jQuery(this).val().toString();
|
76 |
+
|
77 |
+
});
|
78 |
+
return values;
|
79 |
+
}
|
80 |
+
|
81 |
+
/* delete post */
|
82 |
+
function wckFepDeletePost( id, nonce){
|
83 |
+
var response = confirm( "Delete this entry ?" );
|
84 |
+
|
85 |
+
if( response == true ){
|
86 |
+
elementParent = jQuery('#'+id).parent();
|
87 |
+
elementParent.css({'opacity':'0.4', 'position':'relative'}).append('<div id="mb-ajax-loading"></div>');
|
88 |
+
jQuery.post( wckAjaxurl , { action:"wck_fep_delete_entry", id:id, _ajax_nonce:nonce}, function(response) {
|
89 |
+
if( response == 'Deleted' ){
|
90 |
+
jQuery('#'+id).remove();
|
91 |
+
jQuery('#mb-ajax-loading').remove();
|
92 |
+
elementParent.css( {'opacity':'1'} );
|
93 |
+
}
|
94 |
+
});
|
95 |
+
}
|
96 |
+
}
|
97 |
+
|
98 |
+
jQuery( function(){
|
99 |
+
/* show register form */
|
100 |
+
jQuery(document).on( 'click', '#wck-fep-show-register-form', function(){
|
101 |
+
jQuery( '#wck-fep-login-form' ).hide();
|
102 |
+
jQuery( '#wck-fep-register-form' ).show();
|
103 |
+
});
|
104 |
+
|
105 |
+
/* show login form */
|
106 |
+
jQuery(document).on( 'click', '#wck-fep-back-to-login', function(){
|
107 |
+
jQuery( '#wck-fep-login-form' ).show();
|
108 |
+
jQuery( '#wck-fep-register-form' ).hide();
|
109 |
+
});
|
110 |
+
});
|
111 |
+
|
112 |
+
|
113 |
+
/* register user function */
|
114 |
+
function wckFepRegisterUser( nonce ){
|
115 |
+
username = jQuery( '#wck-fep-register-form #user-name' ).val();
|
116 |
+
email = jQuery( '#wck-fep-register-form #email' ).val();
|
117 |
+
password = jQuery( '#wck-fep-register-form #password' ).val();
|
118 |
+
confirmPassword = jQuery( '#wck-fep-register-form #confirm-password' ).val();
|
119 |
+
|
120 |
+
|
121 |
+
jQuery.post( wckAjaxurl, { action:"wck_fep_register_user", action_type:'register', username:username, email:email, password:password, confirm_password:confirmPassword, _ajax_nonce:nonce }, function(response) {
|
122 |
+
|
123 |
+
if( response == 'User added successfully!' ){
|
124 |
+
jQuery( '#wck-fep-login-messages' ).html( '<span class="wck-fep-message">' + response + '</span>' );
|
125 |
+
jQuery( '#wck-fep-login-form' ).show();
|
126 |
+
jQuery( '#wck-fep-register-form' ).hide();
|
127 |
+
}
|
128 |
+
else{
|
129 |
+
jQuery('#wck-fep-registration-errors').html( response );
|
130 |
+
}
|
131 |
+
|
132 |
+
|
133 |
+
});
|
134 |
+
}
|
135 |
+
|
136 |
+
/* update user function */
|
137 |
+
function wckFepUpdateUser( nonce ){
|
138 |
+
email = jQuery( '#wck-fep-update-form #email' ).val();
|
139 |
+
password = jQuery( '#wck-fep-update-form #password' ).val();
|
140 |
+
confirmPassword = jQuery( '#wck-fep-update-form #confirm-password' ).val();
|
141 |
+
description = jQuery( '#wck-fep-update-form #description' ).val();
|
142 |
+
|
143 |
+
|
144 |
+
jQuery.post( wckAjaxurl, { action:"wck_fep_update_user", action_type:'update', email:email, password:password, confirm_password:confirmPassword, description:description, _ajax_nonce:nonce }, function(response) {
|
145 |
+
|
146 |
+
if( response == 'User added successfully!' ){
|
147 |
+
jQuery( '#wck-fep-update-messages' ).html( '<span class="wck-fep-message">Update Succesfull!</span>' );
|
148 |
+
}
|
149 |
+
else{
|
150 |
+
jQuery('#wck-fep-update-errors').html( response );
|
151 |
+
}
|
152 |
+
|
153 |
+
});
|
154 |
+
}
|
155 |
+
|
156 |
+
/* fep dashboard init tabs */
|
157 |
+
jQuery(function(){
|
158 |
+
if( jQuery( '#fep-dashboard' ).length != 0 )
|
159 |
+
jQuery('#fep-dashboard').tabs();
|
160 |
});
|
wordpress-creation-kit-api/wordpress-creation-kit.php
CHANGED
@@ -357,7 +357,7 @@ class Wordpress_Creation_Kit{
|
|
357 |
$value = '';
|
358 |
if( $this->args['single'] == true ) {
|
359 |
$value = null;
|
360 |
-
if (
|
361 |
$value = $results[0][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )];
|
362 |
}
|
363 |
|
357 |
$value = '';
|
358 |
if( $this->args['single'] == true ) {
|
359 |
$value = null;
|
360 |
+
if( !empty( $results[0] ) && !empty( $results[0][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )] ) )
|
361 |
$value = $results[0][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )];
|
362 |
}
|
363 |
|