Version Description
- Changed the way Single Forms are displayed and saved.
- Added 'slug' parameter to API and we use it so we can translate labels
- Added filter for taxonomy term name
- Added support for search in media library for the upload field
- Add support for the link in the listed upload fields
- Add support for link on image/icon that points to attachement page in backend
- Changed the order of the CKEDITOR.config.allowedContent
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | Custom Post Types and Custom Fields creator – WCK |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- js/wck-cfc.js +52 -52
- languages/wck-es_ES.po +1157 -1157
- languages/wck.pot +1123 -1123
- readme.txt +12 -2
- wck-sas.php +11 -18
- wck.php +1 -1
- wordpress-creation-kit-api/fields/checkbox.php +13 -2
- wordpress-creation-kit-api/fields/radio.php +10 -3
- wordpress-creation-kit-api/fields/select.php +2 -2
- wordpress-creation-kit-api/fields/text.php +2 -2
- wordpress-creation-kit-api/fields/textarea.php +2 -2
- wordpress-creation-kit-api/fields/upload.js +1 -1
- wordpress-creation-kit-api/fields/upload.php +13 -6
- wordpress-creation-kit-api/fields/wysiwyg editor.php +2 -2
- wordpress-creation-kit-api/wck-fep/wck-fep.js +159 -159
- wordpress-creation-kit-api/wordpress-creation-kit.js +9 -6
- wordpress-creation-kit-api/wordpress-creation-kit.php +232 -63
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.
|
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,16 @@ Creating a taxonomy generally automatically creates a special query variable usi
|
|
141 |
10. Taxonomy listing
|
142 |
|
143 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
= 1.1.3 =
|
145 |
* Wysiwyg editor fields no longer strips html tags
|
146 |
* Changes to WCK deactivate function so it doesn't throw notices
|
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.4
|
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.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
|
147 |
+
* Added filter for taxonomy term name
|
148 |
+
* Added support for search in media library for the upload field
|
149 |
+
* Add support for the link in the listed upload fields
|
150 |
+
* Add support for link on image/icon that points to attachement page in backend
|
151 |
+
* Changed the order of the CKEDITOR.config.allowedContent = true to be above the call to initialized the textarea
|
152 |
+
* Now metaboxes or pages don't appear for users that shouldn't
|
153 |
+
|
154 |
= 1.1.3 =
|
155 |
* Wysiwyg editor fields no longer strips html tags
|
156 |
* Changes to WCK deactivate function so it doesn't throw notices
|
wck-sas.php
CHANGED
@@ -149,21 +149,11 @@ function wck_sas_quickintro($hook){
|
|
149 |
}
|
150 |
}
|
151 |
|
152 |
-
/* add refresh to page. Needed to display the serial notification. Need to refactor in the future so it works via ajax. */
|
153 |
-
add_action("wck_refresh_list_wck_serial", "wck_serial_after_refresh_list");
|
154 |
-
add_action("wck_refresh_entry_wck_serial", "wck_serial_after_refresh_list");
|
155 |
-
add_action("wck_refresh_list_wck_tools", "wck_serial_after_refresh_list");
|
156 |
-
add_action("wck_refresh_entry_wck_tools", "wck_serial_after_refresh_list");
|
157 |
-
function wck_serial_after_refresh_list(){
|
158 |
-
echo '<script type="text/javascript">window.location="'. get_admin_url() . 'admin.php?page=sas-page&updated=true' .'";</script>';
|
159 |
-
}
|
160 |
-
|
161 |
/* Notify user of when he enters his serial number.
|
162 |
* Also Check if serial is valid on meta_name creation and update
|
163 |
*/
|
164 |
-
|
165 |
-
|
166 |
-
function wck_sas_serial_notification($list){
|
167 |
|
168 |
wck_sas_check_serial_number();
|
169 |
$status = get_option('wck_serial_status');
|
@@ -177,8 +167,11 @@ function wck_sas_serial_notification($list){
|
|
177 |
if ( $status == 'found') $notif = '<p class="serial-notification green">' . __( 'Wohoo! Your serial number is valid and you have access to automatic updates.', 'wck' ) . ' </p>';
|
178 |
|
179 |
if ( $status == 'expired') $notif = '<p class="serial-notification red">' . __( 'It seems your serial number has <strong>expired</strong>. To continue receiving access to product downloads, automatic updates and support please update your serial number for another year from <a href="http://www.cozmoslabs.com/account/?utm_source=WCK-sas&utm_medium=dashboard&utm_campaign=WCK-Renewal" target="_blank"><strong>your account page</strong></a>.', 'wck' ) . ' </p>';
|
180 |
-
|
181 |
-
|
|
|
|
|
|
|
182 |
}
|
183 |
|
184 |
/* Check if serial is valid on Start and Settings page load.
|
@@ -204,11 +197,11 @@ function wck_sas_check_serial_number(){
|
|
204 |
update_option( 'wck_serial_status', 'noserial' ); //server down
|
205 |
} else {
|
206 |
$response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial );
|
207 |
-
|
208 |
if (is_wp_error($response)){
|
209 |
update_option( 'wck_serial_status', 'serverDown' ); //server down
|
210 |
-
|
211 |
-
}elseif((trim($response['body']) != 'notFound') && (trim($response['body']) != 'found') && (trim($response['body']) != 'expired')){
|
212 |
update_option( 'wck_serial_status', 'serverDown' ); //unknown response parameter
|
213 |
}else{
|
214 |
update_option( 'wck_serial_status', trim($response['body']) ); //either found, notFound or expired
|
@@ -295,7 +288,7 @@ if (file_exists ($wck_premium_update . 'update-checker.php')) {
|
|
295 |
} elseif ($wck_serial_status == 'expired') {
|
296 |
new wck_add_serial_notices('wck_expired', sprintf(__('<p style="position:relative;">Your <strong>WordPress Creation Kit</strong> licence has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>', 'wck'), "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank' class='button-primary'>", "</a>", "<a href='" . add_query_arg('wck_expired_dismiss_notification', '0') . "' class='wck-dismiss-notification' style='position:absolute; right:0px; top:50%; margin-top:-7px;'>", "</a>"), 'wck_serial_status');
|
297 |
} elseif (strpos($wck_serial_status, 'aboutToExpire') === 0) {
|
298 |
-
$serial_status_parts = explode('#', $
|
299 |
$date = $serial_status_parts[1];
|
300 |
new wck_add_serial_notices('wck_about_to_expire', sprintf(__('<p style="position:relative;">Your <strong>WordPress Creation Kit</strong> serial number is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>', 'wck'), "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank' class='button-primary'>", "</a>", $date, "<a href='" . add_query_arg('wck_about_to_expire_dismiss_notification', '0') . "' class='wck-dismiss-notification' style='position:absolute; right:0px; top:50%; margin-top:-7px;'>", "</a>"), 'wck_serial_status');
|
301 |
}
|
149 |
}
|
150 |
}
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
/* Notify user of when he enters his serial number.
|
153 |
* Also Check if serial is valid on meta_name creation and update
|
154 |
*/
|
155 |
+
add_action( "wck_after_add_form_wck_serial_element_0", 'wck_sas_serial_notification' );
|
156 |
+
function wck_sas_serial_notification(){
|
|
|
157 |
|
158 |
wck_sas_check_serial_number();
|
159 |
$status = get_option('wck_serial_status');
|
167 |
if ( $status == 'found') $notif = '<p class="serial-notification green">' . __( 'Wohoo! Your serial number is valid and you have access to automatic updates.', 'wck' ) . ' </p>';
|
168 |
|
169 |
if ( $status == 'expired') $notif = '<p class="serial-notification red">' . __( 'It seems your serial number has <strong>expired</strong>. To continue receiving access to product downloads, automatic updates and support please update your serial number for another year from <a href="http://www.cozmoslabs.com/account/?utm_source=WCK-sas&utm_medium=dashboard&utm_campaign=WCK-Renewal" target="_blank"><strong>your account page</strong></a>.', 'wck' ) . ' </p>';
|
170 |
+
|
171 |
+
if ( strpos( $status, 'about' ) === 0 ) $notif = '<p class="serial-notification yellow">' . __( 'Your WordPress Creation Kit serial number is about to expire. To continue receiving access to product downloads, automatic updates and support please update your serial number for another year from <a href="http://www.cozmoslabs.com/account/?utm_source=WCK-sas&utm_medium=dashboard&utm_campaign=WCK-Renewal" target="_blank"><strong>your account page</strong></a>.', 'wck' ) . ' </p>';
|
172 |
+
|
173 |
+
if( !empty( $notif ) )
|
174 |
+
echo $notif;
|
175 |
}
|
176 |
|
177 |
/* Check if serial is valid on Start and Settings page load.
|
197 |
update_option( 'wck_serial_status', 'noserial' ); //server down
|
198 |
} else {
|
199 |
$response = wp_remote_get( 'http://updatemetadata.cozmoslabs.com/checkserial/?serialNumberSent='.$serial );
|
200 |
+
|
201 |
if (is_wp_error($response)){
|
202 |
update_option( 'wck_serial_status', 'serverDown' ); //server down
|
203 |
+
|
204 |
+
}elseif( (trim($response['body']) != 'notFound') && (trim($response['body']) != 'found') && (trim($response['body']) != 'expired') && strpos( trim($response['body']), 'aboutToExpire') === false ){
|
205 |
update_option( 'wck_serial_status', 'serverDown' ); //unknown response parameter
|
206 |
}else{
|
207 |
update_option( 'wck_serial_status', trim($response['body']) ); //either found, notFound or expired
|
288 |
} elseif ($wck_serial_status == 'expired') {
|
289 |
new wck_add_serial_notices('wck_expired', sprintf(__('<p style="position:relative;">Your <strong>WordPress Creation Kit</strong> licence has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %5$sDismiss%6$s</p>', 'wck'), "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank' class='button-primary'>", "</a>", "<a href='" . add_query_arg('wck_expired_dismiss_notification', '0') . "' class='wck-dismiss-notification' style='position:absolute; right:0px; top:50%; margin-top:-7px;'>", "</a>"), 'wck_serial_status');
|
290 |
} elseif (strpos($wck_serial_status, 'aboutToExpire') === 0) {
|
291 |
+
$serial_status_parts = explode( '#', $wck_serial_status );
|
292 |
$date = $serial_status_parts[1];
|
293 |
new wck_add_serial_notices('wck_about_to_expire', sprintf(__('<p style="position:relative;">Your <strong>WordPress Creation Kit</strong> serial number is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 50% off %4$s %6$sDismiss%7$s</p>', 'wck'), "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal'>", "</a>", "<a href='http://www.cozmoslabs.com/downloads/wordpress-creation-kit-".$wck_version."-yearly-renewal/?utm_source=WCK&utm_medium=dashboard&utm_campaign=WCK-Renewal' target='_blank' class='button-primary'>", "</a>", $date, "<a href='" . add_query_arg('wck_about_to_expire_dismiss_notification', '0') . "' class='wck-dismiss-notification' style='position:absolute; right:0px; top:50%; margin-top:-7px;'>", "</a>"), 'wck_serial_status');
|
294 |
}
|
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
|
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.4
|
7 |
Author URI: http://www.cozmoslabs.com
|
8 |
|
9 |
License: GPL2
|
wordpress-creation-kit-api/fields/checkbox.php
CHANGED
@@ -33,10 +33,21 @@ if( !empty( $details['options'] ) ){
|
|
33 |
}
|
34 |
}
|
35 |
|
36 |
-
$element .= '<div><label><input type="checkbox" name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) )
|
|
|
|
|
|
|
|
|
37 |
if( !empty( $frontend_prefix ) )
|
38 |
$element .= $frontend_prefix;
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
}
|
41 |
$element .= '</div>';
|
42 |
}
|
33 |
}
|
34 |
}
|
35 |
|
36 |
+
$element .= '<div><label><input type="checkbox" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) );
|
37 |
+
if( $this->args['single'] ) {
|
38 |
+
$element .= '[]';
|
39 |
+
}
|
40 |
+
$element .= '" id="';
|
41 |
if( !empty( $frontend_prefix ) )
|
42 |
$element .= $frontend_prefix;
|
43 |
+
|
44 |
+
/* since the slug below is generated from the value as well we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
45 |
+
if( !empty( $details['slug'] ) )
|
46 |
+
$slug_from = $details['slug'];
|
47 |
+
else
|
48 |
+
$slug_from = $details['title'];
|
49 |
+
|
50 |
+
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $slug_from . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-checkbox mb-field" />'. esc_html( $label ) .'</label></div>' ;
|
51 |
}
|
52 |
$element .= '</div>';
|
53 |
}
|
wordpress-creation-kit-api/fields/radio.php
CHANGED
@@ -29,10 +29,17 @@ if( !empty( $details['options'] ) ){
|
|
29 |
}
|
30 |
}
|
31 |
|
32 |
-
$element .= '<div><label><input type="radio" name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" id="';
|
33 |
if( !empty( $frontend_prefix ) )
|
34 |
-
$element .= $frontend_prefix;
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
$element .= '</div>';
|
38 |
}
|
29 |
}
|
30 |
}
|
31 |
|
32 |
+
$element .= '<div><label><input type="radio" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
33 |
if( !empty( $frontend_prefix ) )
|
34 |
+
$element .= $frontend_prefix;
|
35 |
+
|
36 |
+
/* since the slug below is generated from the value as well we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
37 |
+
if( !empty( $details['slug'] ) )
|
38 |
+
$slug_from = $details['slug'];
|
39 |
+
else
|
40 |
+
$slug_from = $details['title'];
|
41 |
+
|
42 |
+
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $slug_from . '_' . $value_attr ) ) .'" value="'. esc_attr( $value_attr ) .'" '. checked( $found, true, false ) .'class="mb-radio mb-field" />'. esc_html( $label ) .'</label></div>';
|
43 |
}
|
44 |
$element .= '</div>';
|
45 |
}
|
wordpress-creation-kit-api/fields/select.php
CHANGED
@@ -5,10 +5,10 @@
|
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
-
$element .= '<select name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" id="';
|
9 |
if( !empty( $frontend_prefix ) )
|
10 |
$element .= $frontend_prefix;
|
11 |
-
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" class="mb-select mb-field" >';
|
12 |
|
13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
14 |
$element .= '<option value="">'. __('...Chose', 'wck') .'</option>';
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
+
$element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
9 |
if( !empty( $frontend_prefix ) )
|
10 |
$element .= $frontend_prefix;
|
11 |
+
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
|
12 |
|
13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
14 |
$element .= '<option value="">'. __('...Chose', 'wck') .'</option>';
|
wordpress-creation-kit-api/fields/text.php
CHANGED
@@ -6,10 +6,10 @@
|
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
|
9 |
-
$element .= '<input type="text" name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" id="';
|
10 |
if( !empty( $frontend_prefix ) )
|
11 |
$element .= $frontend_prefix;
|
12 |
-
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'"';
|
13 |
if( !empty( $details['readonly'] ) && $details['readonly'] )
|
14 |
$element .= 'readonly="readonly"';
|
15 |
$element .= ' value="'. esc_attr( $value ) .'" class="mb-text-input mb-field"/>';
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
|
9 |
+
$element .= '<input type="text" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
10 |
if( !empty( $frontend_prefix ) )
|
11 |
$element .= $frontend_prefix;
|
12 |
+
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'"';
|
13 |
if( !empty( $details['readonly'] ) && $details['readonly'] )
|
14 |
$element .= 'readonly="readonly"';
|
15 |
$element .= ' value="'. esc_attr( $value ) .'" class="mb-text-input mb-field"/>';
|
wordpress-creation-kit-api/fields/textarea.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
-
$element .= '<textarea name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" id="';
|
9 |
if( !empty( $frontend_prefix ) )
|
10 |
$element .= $frontend_prefix;
|
11 |
-
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" style="vertical-align:top;" class="mb-textarea mb-field">'. esc_html( $value ) .'</textarea>';
|
12 |
?>
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
+
$element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
9 |
if( !empty( $frontend_prefix ) )
|
10 |
$element .= $frontend_prefix;
|
11 |
+
$element .= esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" style="vertical-align:top;" class="mb-textarea mb-field">'. esc_html( $value ) .'</textarea>';
|
12 |
?>
|
wordpress-creation-kit-api/fields/upload.js
CHANGED
@@ -27,7 +27,7 @@ jQuery(document).ready(function(){
|
|
27 |
wp.media.controller.Library.prototype.defaults.contentUserSetting = false;
|
28 |
if( uploadInFront != true )
|
29 |
wp.media.controller.Library.prototype.defaults.router = false;
|
30 |
-
wp.media.controller.Library.prototype.defaults.searchable =
|
31 |
wp.media.controller.Library.prototype.defaults.sortable = false;
|
32 |
|
33 |
// If the media frame already exists, reopen it.
|
27 |
wp.media.controller.Library.prototype.defaults.contentUserSetting = false;
|
28 |
if( uploadInFront != true )
|
29 |
wp.media.controller.Library.prototype.defaults.router = false;
|
30 |
+
wp.media.controller.Library.prototype.defaults.searchable = true;
|
31 |
wp.media.controller.Library.prototype.defaults.sortable = false;
|
32 |
|
33 |
// If the media frame already exists, reopen it.
|
wordpress-creation-kit-api/fields/upload.php
CHANGED
@@ -5,12 +5,18 @@
|
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
/* define id's for input and info div */
|
9 |
-
$upload_input_id = str_replace( '-', '_', Wordpress_Creation_Kit::wck_generate_slug( $meta . $
|
10 |
-
$upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit::wck_generate_slug( $meta .'_info_container_'. $
|
11 |
|
12 |
/* hidden input that will hold the attachment id */
|
13 |
-
$element.= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
|
14 |
|
15 |
/* container for the image preview (or file ico) and name and file type */
|
16 |
if( !empty ( $value ) ){
|
@@ -21,10 +27,11 @@ if( !empty ( $value ) ){
|
|
21 |
$thumbnail = wp_get_attachment_image( $value, array( 80, 80 ), true );
|
22 |
$file_name = get_the_title( $value );
|
23 |
$file_type = get_post_mime_type( $value );
|
24 |
-
|
|
|
25 |
$element.= '<div id="'.esc_attr( $upload_info_div_id ).'_info_container" class="upload-field-details" data-attachment_id="'. $value .'">';
|
26 |
$element.= '<div class="file-thumb">';
|
27 |
-
$element.= $thumbnail;
|
28 |
$element.= '</div>';
|
29 |
|
30 |
$element.= '<p><span class="file-name">';
|
@@ -38,7 +45,7 @@ if( !empty ( $value ) ){
|
|
38 |
}
|
39 |
}
|
40 |
|
41 |
-
$element.= '<a href="#" class="button wck_upload_button" id="upload_'. esc_attr(Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'_button" data-uploader_title="'. $details['title'] .'" data-uploader_button_text="Select Files" data-upload_input="'.esc_attr( $upload_input_id ).'" ';
|
42 |
if( is_user_logged_in() )
|
43 |
$element.= 'data-uploader_logged_in="true"';
|
44 |
|
5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
+
/* since the slug below is generated dinamically from other elements we need to determine here if we have a slug or not and not let the wck_generate_slug() function do that */
|
9 |
+
if( !empty( $details['slug'] ) )
|
10 |
+
$slug_from = $details['slug'];
|
11 |
+
else
|
12 |
+
$slug_from = $details['title'];
|
13 |
+
|
14 |
/* define id's for input and info div */
|
15 |
+
$upload_input_id = str_replace( '-', '_', Wordpress_Creation_Kit::wck_generate_slug( $meta . $slug_from ) );
|
16 |
+
$upload_info_div_id = str_replace( '-', '_', Wordpress_Creation_Kit::wck_generate_slug( $meta .'_info_container_'. $slug_from ) );
|
17 |
|
18 |
/* hidden input that will hold the attachment id */
|
19 |
+
$element.= '<input id="'. esc_attr( $upload_input_id ) .'" type="hidden" size="36" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" value="'. $value .'" class="mb-text-input mb-field"/>';
|
20 |
|
21 |
/* container for the image preview (or file ico) and name and file type */
|
22 |
if( !empty ( $value ) ){
|
27 |
$thumbnail = wp_get_attachment_image( $value, array( 80, 80 ), true );
|
28 |
$file_name = get_the_title( $value );
|
29 |
$file_type = get_post_mime_type( $value );
|
30 |
+
$attachment_url = admin_url( "post.php?post={$value}&action=edit" );
|
31 |
+
|
32 |
$element.= '<div id="'.esc_attr( $upload_info_div_id ).'_info_container" class="upload-field-details" data-attachment_id="'. $value .'">';
|
33 |
$element.= '<div class="file-thumb">';
|
34 |
+
$element.= "<a href='{$attachment_url}' target='_blank' class='wck-attachment-link'>" . $thumbnail . "</a>";
|
35 |
$element.= '</div>';
|
36 |
|
37 |
$element.= '<p><span class="file-name">';
|
45 |
}
|
46 |
}
|
47 |
|
48 |
+
$element.= '<a href="#" class="button wck_upload_button" id="upload_'. esc_attr(Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'_button" data-uploader_title="'. $details['title'] .'" data-uploader_button_text="Select Files" data-upload_input="'.esc_attr( $upload_input_id ).'" ';
|
49 |
if( is_user_logged_in() )
|
50 |
$element.= 'data-uploader_logged_in="true"';
|
51 |
|
wordpress-creation-kit-api/fields/wysiwyg editor.php
CHANGED
@@ -6,10 +6,10 @@
|
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
$random_id = "wck_wisi_editor_". time() . '-' . rand();
|
9 |
-
$element .= '<textarea name="'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" id="'. $random_id .'">'. esc_html( $value ) .'</textarea>';
|
10 |
$element .= '<script type="text/javascript">jQuery( function(){
|
11 |
-
CKEDITOR.replace("'. $random_id .'");
|
12 |
CKEDITOR.config.allowedContent = true;
|
|
|
13 |
});</script>';
|
14 |
?>
|
15 |
|
6 |
* @return string $element input element html string. */
|
7 |
|
8 |
$random_id = "wck_wisi_editor_". time() . '-' . rand();
|
9 |
+
$element .= '<textarea name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-textarea mb-field '. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" id="'. $random_id .'">'. esc_html( $value ) .'</textarea>';
|
10 |
$element .= '<script type="text/javascript">jQuery( function(){
|
|
|
11 |
CKEDITOR.config.allowedContent = true;
|
12 |
+
CKEDITOR.replace("'. $random_id .'");
|
13 |
});</script>';
|
14 |
?>
|
15 |
|
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.js
CHANGED
@@ -106,12 +106,7 @@ function addMeta(value, id, nonce){
|
|
106 |
jQuery(this).html('<p><span class="file-name"></span><span class="file-type"></span></p>');
|
107 |
}); */
|
108 |
|
109 |
-
jQuery('#'+value).parent().css('opacity','1');
|
110 |
-
|
111 |
-
/* Remove form if is single */
|
112 |
-
if( jQuery( '#'+value ).hasClass('single') )
|
113 |
-
jQuery( '#'+value ).remove();
|
114 |
-
|
115 |
|
116 |
jQuery('body').trigger('wck-added-element');
|
117 |
|
@@ -430,3 +425,11 @@ jQuery(function(){
|
|
430 |
});
|
431 |
});
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
jQuery(this).html('<p><span class="file-name"></span><span class="file-type"></span></p>');
|
107 |
}); */
|
108 |
|
109 |
+
jQuery('#'+value).parent().css('opacity','1');
|
|
|
|
|
|
|
|
|
|
|
110 |
|
111 |
jQuery('body').trigger('wck-added-element');
|
112 |
|
425 |
});
|
426 |
});
|
427 |
|
428 |
+
/* refresh sas-page when changing serial */
|
429 |
+
jQuery(function(){
|
430 |
+
if( jQuery('.wck_page_sas-page').length != 0 ) {
|
431 |
+
jQuery('.wck_page_sas-page').on('wck-added-element', function () {
|
432 |
+
location.reload();
|
433 |
+
});
|
434 |
+
}
|
435 |
+
});
|
wordpress-creation-kit-api/wordpress-creation-kit.php
CHANGED
@@ -110,8 +110,18 @@ class Wordpress_Creation_Kit{
|
|
110 |
add_action("wp_ajax_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
|
111 |
add_action("wp_ajax_nopriv_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
|
112 |
|
113 |
-
add_action('add_meta_boxes', array( &$this, 'wck_add_metabox') );
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
/* hook to add a side metabox with the Syncronize translation button */
|
116 |
add_action('add_meta_boxes', array( &$this, 'wck_add_sync_translation_metabox' ) );
|
117 |
|
@@ -122,9 +132,6 @@ class Wordpress_Creation_Kit{
|
|
122 |
$wck_did_actions = true;
|
123 |
}
|
124 |
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
//add metabox using wordpress api
|
129 |
|
130 |
function wck_add_metabox() {
|
@@ -204,10 +211,12 @@ class Wordpress_Creation_Kit{
|
|
204 |
|
205 |
}
|
206 |
}
|
207 |
-
else if( $this->args['context'] == 'option' ){
|
208 |
-
|
209 |
-
|
210 |
-
|
|
|
|
|
211 |
}
|
212 |
}
|
213 |
|
@@ -224,25 +233,11 @@ class Wordpress_Creation_Kit{
|
|
224 |
$post_id = '';
|
225 |
|
226 |
//output the add form
|
227 |
-
|
228 |
-
|
229 |
-
if( $this->args['context'] == 'post_meta' )
|
230 |
-
$meta_val = get_post_meta( $post_id, $metabox['args']['meta_name'], true );
|
231 |
-
else if ( $this->args['context'] == 'option' )
|
232 |
-
$meta_val = get_option( $metabox['args']['meta_name'] );
|
233 |
-
|
234 |
-
if( empty( $meta_val ) )
|
235 |
-
self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
|
236 |
-
}
|
237 |
-
else
|
238 |
-
self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
|
239 |
-
|
240 |
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
//output the entries
|
245 |
-
echo self::wck_output_meta_content($metabox['args']['meta_name'], $post_id, $metabox['args']['meta_array']);
|
246 |
}
|
247 |
|
248 |
/**
|
@@ -270,11 +265,19 @@ class Wordpress_Creation_Kit{
|
|
270 |
$frontend_prefix = 'fep-';
|
271 |
}
|
272 |
else{
|
273 |
-
if( isset( $details['default'] ) )
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
if( !empty( $details['required'] ) && $details['required'] )
|
279 |
$element .= '<span class="required">*</span>';
|
280 |
$element .= '</label>';
|
@@ -304,7 +307,7 @@ class Wordpress_Creation_Kit{
|
|
304 |
|
305 |
$element .= '</div><!-- .mb-right-column -->';
|
306 |
|
307 |
-
$element = apply_filters( "wck_output_form_field_{$meta}_" . Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ), $element );
|
308 |
|
309 |
return $element;
|
310 |
|
@@ -329,9 +332,19 @@ class Wordpress_Creation_Kit{
|
|
329 |
$post_id = $post->ID;
|
330 |
else
|
331 |
$post_id = '';
|
332 |
-
|
333 |
-
|
334 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
<ul class="mb-list-entry-fields">
|
336 |
<?php
|
337 |
$element_id = 0;
|
@@ -339,10 +352,18 @@ class Wordpress_Creation_Kit{
|
|
339 |
foreach( $fields as $details ){
|
340 |
|
341 |
do_action( "wck_before_add_form_{$meta}_element_{$element_id}" );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
?>
|
344 |
-
<li class="row-<?php echo esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) ?>">
|
345 |
-
<?php echo self::wck_output_form_field( $meta, $details,
|
346 |
</li>
|
347 |
<?php
|
348 |
|
@@ -352,9 +373,13 @@ class Wordpress_Creation_Kit{
|
|
352 |
}
|
353 |
}
|
354 |
?>
|
355 |
-
|
356 |
-
|
357 |
-
|
|
|
|
|
|
|
|
|
358 |
</ul>
|
359 |
</div>
|
360 |
<?php
|
@@ -393,14 +418,14 @@ class Wordpress_Creation_Kit{
|
|
393 |
if( !empty( $fields ) ){
|
394 |
foreach( $fields as $field ){
|
395 |
$details = $field;
|
396 |
-
if( isset( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )] ) )
|
397 |
-
$value = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )];
|
398 |
else
|
399 |
$value = '';
|
400 |
|
401 |
$form = apply_filters( "wck_before_update_form_{$meta}_element_{$i}", $form, $element_id, $value );
|
402 |
|
403 |
-
$form .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'">';
|
404 |
|
405 |
$form .= self::wck_output_form_field( $meta, $details, $value, 'edit_form', $id );
|
406 |
|
@@ -488,16 +513,16 @@ class Wordpress_Creation_Kit{
|
|
488 |
foreach( $fields as $field ){
|
489 |
$details = $field;
|
490 |
|
491 |
-
if( isset( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )] ) )
|
492 |
-
$value = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )];
|
493 |
else
|
494 |
$value = '';
|
495 |
|
496 |
/* filter display value */
|
497 |
/* keep this one for backwards compatibility */
|
498 |
$value = apply_filters( "wck_displayed_value_{$meta}_element_{$j}", $value );
|
499 |
-
$value = apply_filters( "wck_displayed_value_{$meta}_".Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ), $value );
|
500 |
-
|
501 |
/* display it differently based on field type*/
|
502 |
if( $details['type'] == 'upload' ){
|
503 |
$display_value = self::wck_get_entry_field_upload($value);
|
@@ -505,7 +530,9 @@ class Wordpress_Creation_Kit{
|
|
505 |
$display_value = self::wck_get_entry_field_user_select( $value ) . '</pre>';
|
506 |
} elseif ( $details['type'] == 'cpt select' ){
|
507 |
$display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
|
508 |
-
}
|
|
|
|
|
509 |
$display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
|
510 |
}
|
511 |
|
@@ -515,7 +542,7 @@ class Wordpress_Creation_Kit{
|
|
515 |
if( strpos( $details['type'], 'CFC-') === 0 )
|
516 |
$details['type'] = 'nested-repeater';
|
517 |
|
518 |
-
$list .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'] ) ) .'" data-type="'.$details['type'].'"><strong>'.$details['title'].': </strong>'.$display_value.' </li>';
|
519 |
|
520 |
$list = apply_filters( "wck_after_listed_{$meta}_element_{$j}", $list, $element_id, $value );
|
521 |
|
@@ -523,8 +550,8 @@ class Wordpress_Creation_Kit{
|
|
523 |
|
524 |
/* In CFC/OPC we need the field title. Find it out and output it if found */
|
525 |
if ($meta == 'wck_cfc_fields') {
|
526 |
-
if( !empty( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )] ) ){
|
527 |
-
$field_title = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'] )];
|
528 |
if ($field_title == "Field Type")
|
529 |
$cfc_field_type = $value;
|
530 |
}
|
@@ -552,17 +579,18 @@ class Wordpress_Creation_Kit{
|
|
552 |
|
553 |
/* function to generate output for upload field */
|
554 |
function wck_get_entry_field_upload($id){
|
555 |
-
if( !empty ( $id ) && is_numeric( $id ) ){
|
556 |
$file_src = wp_get_attachment_url($id);
|
557 |
$thumbnail = wp_get_attachment_image( $id, array( 80, 60 ), true );
|
558 |
$file_name = get_the_title( $id );
|
559 |
-
|
|
|
560 |
if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $id ), $matches ) )
|
561 |
$file_type = esc_html( strtoupper( $matches[1] ) );
|
562 |
else
|
563 |
$file_type = strtoupper( str_replace( 'image/', '', get_post_mime_type( $id ) ) );
|
564 |
-
|
565 |
-
return $display_value = '<div class="upload-field-details">'. $thumbnail .'
|
566 |
} else {
|
567 |
return '';
|
568 |
}
|
@@ -611,7 +639,7 @@ class Wordpress_Creation_Kit{
|
|
611 |
}
|
612 |
}
|
613 |
elseif( $this->args['context'] == 'option' ){
|
614 |
-
if( $wck_pages_hooknames[$this->args['post_type']] == $hook ){
|
615 |
self::wck_enqueue();
|
616 |
}
|
617 |
}
|
@@ -673,7 +701,7 @@ class Wordpress_Creation_Kit{
|
|
673 |
if( !empty( $fields ) ){
|
674 |
foreach( $fields as $field ){
|
675 |
if( !empty( $field['required'] ) && $field['required'] )
|
676 |
-
$required_fields[Wordpress_Creation_Kit::wck_generate_slug( $field['title'] )] = $field['title'];
|
677 |
}
|
678 |
}
|
679 |
|
@@ -730,8 +758,12 @@ class Wordpress_Creation_Kit{
|
|
730 |
$results = get_post_meta($id, $meta, true);
|
731 |
else if ( $this->args['context'] == 'option' )
|
732 |
$results = get_option( $meta );
|
733 |
-
|
734 |
-
|
|
|
|
|
|
|
|
|
735 |
|
736 |
do_action( 'wck_before_add_meta', $meta, $id, $values );
|
737 |
|
@@ -1008,6 +1040,133 @@ class Wordpress_Creation_Kit{
|
|
1008 |
|
1009 |
exit;
|
1010 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
|
1012 |
/* WPML Compatibility */
|
1013 |
|
@@ -1182,9 +1341,13 @@ class Wordpress_Creation_Kit{
|
|
1182 |
* @param string $string The input string from which we generate the slug
|
1183 |
* @return string $slug The henerated slug
|
1184 |
*/
|
1185 |
-
static function wck_generate_slug( $string ){
|
1186 |
-
|
1187 |
-
|
|
|
|
|
|
|
|
|
1188 |
}
|
1189 |
}
|
1190 |
|
@@ -1282,6 +1445,12 @@ class WCK_Page_Creator{
|
|
1282 |
*/
|
1283 |
function wck_page_init(){
|
1284 |
global $wck_pages_hooknames;
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
|
1286 |
/* Create the page using either add_menu_page or add_submenu_page functions depending on the 'page_type' parameter. */
|
1287 |
if( $this->args['page_type'] == 'menu_page' ){
|
110 |
add_action("wp_ajax_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
|
111 |
add_action("wp_ajax_nopriv_wck_reorder_meta".$this->args['meta_name'], array( &$this, 'wck_reorder_meta') );
|
112 |
|
113 |
+
add_action('add_meta_boxes', array( &$this, 'wck_add_metabox') );
|
114 |
+
|
115 |
+
/* For single forms we save them the old fashion way */
|
116 |
+
if( $this->args['single'] ){
|
117 |
+
add_action('save_post', array($this, 'wck_save_single_metabox'), 10, 2);
|
118 |
+
/* wp_insert_post executes after save_post so at this point if we have the error global we can redirect the page
|
119 |
+
and add the error message and error fields urlencoded as $_GET */
|
120 |
+
add_action('wp_insert_post', array($this, 'wck_single_metabox_redirect_if_errors'), 10, 2);
|
121 |
+
/* if we have any $_GET errors alert them with js so we have consistency */
|
122 |
+
add_action('admin_print_footer_scripts', array($this, 'wck_single_metabox_errors_display') );
|
123 |
+
}
|
124 |
+
|
125 |
/* hook to add a side metabox with the Syncronize translation button */
|
126 |
add_action('add_meta_boxes', array( &$this, 'wck_add_sync_translation_metabox' ) );
|
127 |
|
132 |
$wck_did_actions = true;
|
133 |
}
|
134 |
|
|
|
|
|
|
|
135 |
//add metabox using wordpress api
|
136 |
|
137 |
function wck_add_metabox() {
|
211 |
|
212 |
}
|
213 |
}
|
214 |
+
else if( $this->args['context'] == 'option' ){
|
215 |
+
if( !empty( $wck_pages_hooknames[$this->args['post_type']] ) ) {
|
216 |
+
add_meta_box($this->args['metabox_id'], $this->args['metabox_title'], array(&$this, 'wck_content'), $wck_pages_hooknames[$this->args['post_type']], $metabox_context, $metabox_priority, array('meta_name' => $this->args['meta_name'], 'meta_array' => $this->args['meta_array']));
|
217 |
+
/* add class to meta box */
|
218 |
+
add_filter("postbox_classes_" . $wck_pages_hooknames[$this->args['post_type']] . "_" . $this->args['metabox_id'], array(&$this, 'wck_add_metabox_classes'));
|
219 |
+
}
|
220 |
}
|
221 |
}
|
222 |
|
233 |
$post_id = '';
|
234 |
|
235 |
//output the add form
|
236 |
+
self::create_add_form($metabox['args']['meta_array'], $metabox['args']['meta_name'], $post);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
|
238 |
+
//output the entries only for repeater fields
|
239 |
+
if( !$this->args['single'] )
|
240 |
+
echo self::wck_output_meta_content($metabox['args']['meta_name'], $post_id, $metabox['args']['meta_array']);
|
|
|
|
|
241 |
}
|
242 |
|
243 |
/**
|
265 |
$frontend_prefix = 'fep-';
|
266 |
}
|
267 |
else{
|
268 |
+
if( isset( $details['default'] ) && !( $this->args['single'] == true && !is_null( $value ) ) ) {
|
269 |
+
$value = apply_filters("wck_default_value_{$meta}_" . Wordpress_Creation_Kit::wck_generate_slug($details['title'], $details ), $details['default']);
|
270 |
+
}
|
271 |
+
}
|
272 |
+
|
273 |
+
/* for single post meta metaboxes we need a prefix in the name attr of the input because in the case we have multiple single metaboxes on the same
|
274 |
+
post we need to prevent the fields from having the same name attr */
|
275 |
+
if( $this->args['context'] == 'post_meta' && $this->args['single'] && $context != 'fep' )
|
276 |
+
$single_prefix = $this->args['meta_name'].'_';
|
277 |
+
else
|
278 |
+
$single_prefix = '';
|
279 |
+
|
280 |
+
$element .= '<label for="'. $single_prefix . esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" class="field-label">'. apply_filters( "wck_label_{$meta}_". Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ), ucfirst($details['title']) ) .':';
|
281 |
if( !empty( $details['required'] ) && $details['required'] )
|
282 |
$element .= '<span class="required">*</span>';
|
283 |
$element .= '</label>';
|
307 |
|
308 |
$element .= '</div><!-- .mb-right-column -->';
|
309 |
|
310 |
+
$element = apply_filters( "wck_output_form_field_{$meta}_" . Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ), $element );
|
311 |
|
312 |
return $element;
|
313 |
|
332 |
$post_id = $post->ID;
|
333 |
else
|
334 |
$post_id = '';
|
335 |
+
|
336 |
+
/* for single forms we need the values that are stored in the meta */
|
337 |
+
if( $this->args['single'] == true ) {
|
338 |
+
if ($this->args['context'] == 'post_meta')
|
339 |
+
$results = get_post_meta($post_id, $meta, true);
|
340 |
+
else if ($this->args['context'] == 'option')
|
341 |
+
$results = get_option($meta);
|
342 |
+
|
343 |
+
/* Filter primary used for CFC/OPC fields in order to show/hide fields based on type */
|
344 |
+
$wck_update_container_css_class = apply_filters("wck_add_form_class_{$meta}", '', $meta, $results );
|
345 |
+
}
|
346 |
+
?>
|
347 |
+
<div id="<?php echo $meta ?>" style="padding:10px 0;" class="wck-add-form<?php if( $this->args['single'] ) echo ' single' ?> <?php if( !empty( $wck_update_container_css_class ) ) echo $wck_update_container_css_class; ?>">
|
348 |
<ul class="mb-list-entry-fields">
|
349 |
<?php
|
350 |
$element_id = 0;
|
352 |
foreach( $fields as $details ){
|
353 |
|
354 |
do_action( "wck_before_add_form_{$meta}_element_{$element_id}" );
|
355 |
+
|
356 |
+
/* set values in the case of single forms */
|
357 |
+
$value = '';
|
358 |
+
if( $this->args['single'] == true ) {
|
359 |
+
$value = null;
|
360 |
+
if (isset($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 |
|
364 |
?>
|
365 |
+
<li class="row-<?php echo esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) ?>">
|
366 |
+
<?php echo self::wck_output_form_field( $meta, $details, $value, $context, $post_id ); ?>
|
367 |
</li>
|
368 |
<?php
|
369 |
|
373 |
}
|
374 |
}
|
375 |
?>
|
376 |
+
<?php if( ! $this->args['single'] || $this->args['context'] == 'option' ){ ?>
|
377 |
+
<li style="overflow:visible;" class="add-entry-button">
|
378 |
+
<a href="javascript:void(0)" class="button-primary" onclick="addMeta('<?php echo esc_js($meta); ?>', '<?php echo esc_js( $post_id ); ?>', '<?php echo esc_js($nonce); ?>')"><span><?php if( $this->args['single'] ) echo apply_filters( 'wck_add_entry_button', __( 'Save', 'wck' ), $meta, $post ); else echo apply_filters( 'wck_add_entry_button', __( 'Add Entry', 'wck' ), $meta, $post ); ?></span></a>
|
379 |
+
</li>
|
380 |
+
<?php }elseif($this->args['single'] && $this->args['context'] == 'post_meta' ){ ?>
|
381 |
+
<input type="hidden" name="_wckmetaname_<?php echo $meta ?>#wck" value="true">
|
382 |
+
<?php } ?>
|
383 |
</ul>
|
384 |
</div>
|
385 |
<?php
|
418 |
if( !empty( $fields ) ){
|
419 |
foreach( $fields as $field ){
|
420 |
$details = $field;
|
421 |
+
if( isset( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )] ) )
|
422 |
+
$value = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )];
|
423 |
else
|
424 |
$value = '';
|
425 |
|
426 |
$form = apply_filters( "wck_before_update_form_{$meta}_element_{$i}", $form, $element_id, $value );
|
427 |
|
428 |
+
$form .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'">';
|
429 |
|
430 |
$form .= self::wck_output_form_field( $meta, $details, $value, 'edit_form', $id );
|
431 |
|
513 |
foreach( $fields as $field ){
|
514 |
$details = $field;
|
515 |
|
516 |
+
if( isset( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )] ) )
|
517 |
+
$value = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )];
|
518 |
else
|
519 |
$value = '';
|
520 |
|
521 |
/* filter display value */
|
522 |
/* keep this one for backwards compatibility */
|
523 |
$value = apply_filters( "wck_displayed_value_{$meta}_element_{$j}", $value );
|
524 |
+
$value = apply_filters( "wck_displayed_value_{$meta}_".Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ), $value );
|
525 |
+
|
526 |
/* display it differently based on field type*/
|
527 |
if( $details['type'] == 'upload' ){
|
528 |
$display_value = self::wck_get_entry_field_upload($value);
|
530 |
$display_value = self::wck_get_entry_field_user_select( $value ) . '</pre>';
|
531 |
} elseif ( $details['type'] == 'cpt select' ){
|
532 |
$display_value = self::wck_get_entry_field_cpt_select( $value ) . '</pre>';
|
533 |
+
} elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
|
534 |
+
$display_value = implode( ', ', $value );
|
535 |
+
} else {
|
536 |
$display_value = '<pre>'.htmlspecialchars( $value ) . '</pre>';
|
537 |
}
|
538 |
|
542 |
if( strpos( $details['type'], 'CFC-') === 0 )
|
543 |
$details['type'] = 'nested-repeater';
|
544 |
|
545 |
+
$list .= '<li class="row-'. esc_attr( Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details ) ) .'" data-type="'.$details['type'].'"><strong>'.$details['title'].': </strong>'.$display_value.' </li>';
|
546 |
|
547 |
$list = apply_filters( "wck_after_listed_{$meta}_element_{$j}", $list, $element_id, $value );
|
548 |
|
550 |
|
551 |
/* In CFC/OPC we need the field title. Find it out and output it if found */
|
552 |
if ($meta == 'wck_cfc_fields') {
|
553 |
+
if( !empty( $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )] ) ){
|
554 |
+
$field_title = $results[$element_id][Wordpress_Creation_Kit::wck_generate_slug( $details['title'], $details )];
|
555 |
if ($field_title == "Field Type")
|
556 |
$cfc_field_type = $value;
|
557 |
}
|
579 |
|
580 |
/* function to generate output for upload field */
|
581 |
function wck_get_entry_field_upload($id){
|
582 |
+
if( !empty ( $id ) && is_numeric( $id ) ){
|
583 |
$file_src = wp_get_attachment_url($id);
|
584 |
$thumbnail = wp_get_attachment_image( $id, array( 80, 60 ), true );
|
585 |
$file_name = get_the_title( $id );
|
586 |
+
$attachment_url = admin_url( "post.php?post={$id}&action=edit" );
|
587 |
+
|
588 |
if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $id ), $matches ) )
|
589 |
$file_type = esc_html( strtoupper( $matches[1] ) );
|
590 |
else
|
591 |
$file_type = strtoupper( str_replace( 'image/', '', get_post_mime_type( $id ) ) );
|
592 |
+
|
593 |
+
return $display_value = '<div class="upload-field-details"><a href="'. $attachment_url. '" target="_blank" class="wck-attachment-link">' . $thumbnail .'</a><p><span class="file-name">'. $file_name .'</span><span class="file-type">'. $file_type . '</span></p></div>';
|
594 |
} else {
|
595 |
return '';
|
596 |
}
|
639 |
}
|
640 |
}
|
641 |
elseif( $this->args['context'] == 'option' ){
|
642 |
+
if( !empty( $wck_pages_hooknames[$this->args['post_type']] ) && $wck_pages_hooknames[$this->args['post_type']] == $hook ){
|
643 |
self::wck_enqueue();
|
644 |
}
|
645 |
}
|
701 |
if( !empty( $fields ) ){
|
702 |
foreach( $fields as $field ){
|
703 |
if( !empty( $field['required'] ) && $field['required'] )
|
704 |
+
$required_fields[Wordpress_Creation_Kit::wck_generate_slug( $field['title'], $field )] = $field['title'];
|
705 |
}
|
706 |
}
|
707 |
|
758 |
$results = get_post_meta($id, $meta, true);
|
759 |
else if ( $this->args['context'] == 'option' )
|
760 |
$results = get_option( $meta );
|
761 |
+
|
762 |
+
/* for single metaboxes overwrite entries each time so we have a maximum of one */
|
763 |
+
if( $this->args['single'] )
|
764 |
+
$results = array( $values );
|
765 |
+
else
|
766 |
+
$results[] = $values;
|
767 |
|
768 |
do_action( 'wck_before_add_meta', $meta, $id, $values );
|
769 |
|
1040 |
|
1041 |
exit;
|
1042 |
}
|
1043 |
+
|
1044 |
+
/**
|
1045 |
+
* Function that saves the entries for single forms on posts(no options). It is hooke on the 'save_post' hook
|
1046 |
+
* It is executed on each WCK object instance so we need to restrict it on only the ones that are present for that post
|
1047 |
+
*/
|
1048 |
+
function wck_save_single_metabox( $post_id, $post ){
|
1049 |
+
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
|
1050 |
+
return $post_id;
|
1051 |
+
// check permissions
|
1052 |
+
if ( !current_user_can( 'edit_page', $post_id ) )
|
1053 |
+
return $post_id;
|
1054 |
+
/* only go through for metaboxes defined for this post type */
|
1055 |
+
if( get_post_type( $post_id ) != $this->args['post_type'] )
|
1056 |
+
return $post_id;
|
1057 |
+
|
1058 |
+
if( !empty( $_POST ) ){
|
1059 |
+
/* for single metaboxes we save a hidden input that contains the meta_name attr as a key so we need to search for it */
|
1060 |
+
foreach( $_POST as $request_key => $request_value ){
|
1061 |
+
if( strpos( $request_key, '_wckmetaname_' ) !== false && strpos( $request_key, '#wck' ) !== false ){
|
1062 |
+
/* found it so now retrieve the meta_name from the key formatted _wckmetaname_actuaname#wck */
|
1063 |
+
$request_key = str_replace( '_wckmetaname_', '', $request_key );
|
1064 |
+
$meta_name = str_replace( '#wck', '', $request_key );
|
1065 |
+
/* we have it so go through only on the WCK object instance that has this meta_name */
|
1066 |
+
if( $this->args['meta_name'] == $meta_name ){
|
1067 |
+
|
1068 |
+
/* get the meta values from the $_POST and store them in an array */
|
1069 |
+
$meta_values = array();
|
1070 |
+
if( !empty( $this->args['meta_array'] ) ){
|
1071 |
+
foreach ($this->args['meta_array'] as $meta_field){
|
1072 |
+
/* in the $_POST the names for the fields are prefixed with the meta_name for the single metaboxes in case there are multiple metaboxes that contain fields wit hthe same name */
|
1073 |
+
$single_field_name = $this->args['meta_name'] .'_'. Wordpress_Creation_Kit::wck_generate_slug( $meta_field['title'], $meta_field );
|
1074 |
+
if (!empty($_POST[$single_field_name])) {
|
1075 |
+
/* checkbox needs to be stored as string not array */
|
1076 |
+
if( $meta_field['type'] == 'checkbox' )
|
1077 |
+
$_POST[$single_field_name] = implode( ', ', $_POST[$single_field_name] );
|
1078 |
+
|
1079 |
+
$meta_values[Wordpress_Creation_Kit::wck_generate_slug($meta_field['title'], $meta_field )] = $_POST[$single_field_name];
|
1080 |
+
}
|
1081 |
+
else
|
1082 |
+
$meta_values[Wordpress_Creation_Kit::wck_generate_slug( $meta_field['title'], $meta_field )] = '';
|
1083 |
+
}
|
1084 |
+
}
|
1085 |
+
|
1086 |
+
/* test if we have errors for the required fields */
|
1087 |
+
$errors = self::wck_test_required( $this->args['meta_array'], $meta_name, $meta_values, $post_id );
|
1088 |
+
if( !empty( $errors ) ){
|
1089 |
+
/* if we have errors then add them in the global. We do this so we get all errors from all single metaboxes that might be on that page */
|
1090 |
+
global $wck_single_forms_errors;
|
1091 |
+
if( !empty( $errors['errorfields'] ) ){
|
1092 |
+
foreach( $errors['errorfields'] as $key => $field_name ){
|
1093 |
+
$errors['errorfields'][$key] = $this->args['meta_name']. '_' .$field_name;
|
1094 |
+
}
|
1095 |
+
}
|
1096 |
+
$wck_single_forms_errors[] = $errors;
|
1097 |
+
}
|
1098 |
+
else {
|
1099 |
+
|
1100 |
+
do_action( 'wck_before_add_meta', $meta_name, $post_id, $meta_values );
|
1101 |
+
do_action( 'wck_before_update_meta', $meta_name, $post_id, $meta_values, '0' );
|
1102 |
+
|
1103 |
+
/* no errors so we can save */
|
1104 |
+
update_post_meta($post_id, $meta_name, array($meta_values));
|
1105 |
+
/* handle unserialized fields */
|
1106 |
+
if ($this->args['unserialize_fields']) {
|
1107 |
+
if (!empty($this->args['meta_array'])) {
|
1108 |
+
foreach ($this->args['meta_array'] as $meta_field) {
|
1109 |
+
update_post_meta($post_id, $meta_name . '_' . Wordpress_Creation_Kit::wck_generate_slug( $meta_field['title'], $meta_field ) . '_1', $_POST[$this->args['meta_name'] . '_' . Wordpress_Creation_Kit::wck_generate_slug( $meta_field['title'], $meta_field )]);
|
1110 |
+
}
|
1111 |
+
}
|
1112 |
+
}
|
1113 |
+
}
|
1114 |
+
break;
|
1115 |
+
}
|
1116 |
+
}
|
1117 |
+
}
|
1118 |
+
}
|
1119 |
+
}
|
1120 |
+
|
1121 |
+
/**
|
1122 |
+
* Function that checks if we have any errors in the required fields from the single metaboxes. It is executed on 'wp_insert_post' hook
|
1123 |
+
* that comes after 'save_post' so we should have the global errors by now. If we have errors perform a redirect and add the error messages and error fields
|
1124 |
+
* in the url
|
1125 |
+
*/
|
1126 |
+
function wck_single_metabox_redirect_if_errors( $post_id, $post ){
|
1127 |
+
global $wck_single_forms_errors;
|
1128 |
+
if( !empty( $wck_single_forms_errors ) ) {
|
1129 |
+
$error_messages = '';
|
1130 |
+
$error_fields = '';
|
1131 |
+
foreach( $wck_single_forms_errors as $wck_single_forms_error ){
|
1132 |
+
$error_messages .= $wck_single_forms_error['error'];
|
1133 |
+
$error_fields .= implode( ',', $wck_single_forms_error['errorfields'] ).',';
|
1134 |
+
}
|
1135 |
+
wp_redirect( add_query_arg( array( 'wckerrormessages' => base64_encode( urlencode( $error_messages ) ), 'wckerrorfields' => base64_encode( urlencode( $error_fields ) ) ), $_SERVER["HTTP_REFERER"] ) );
|
1136 |
+
exit;
|
1137 |
+
}
|
1138 |
+
}
|
1139 |
+
|
1140 |
+
/** Function that displays the error messages, if we have any, as js alerts and marks the fields with red
|
1141 |
+
*/
|
1142 |
+
function wck_single_metabox_errors_display(){
|
1143 |
+
/* only execute for the WCK objects defined for the current post type */
|
1144 |
+
global $post;
|
1145 |
+
if( get_post_type( $post ) != $this->args['post_type'] )
|
1146 |
+
return;
|
1147 |
+
|
1148 |
+
/* and only do it once */
|
1149 |
+
global $allready_saved;
|
1150 |
+
if( isset( $allready_saved ) && $allready_saved == true )
|
1151 |
+
return;
|
1152 |
+
$allready_saved = true;
|
1153 |
+
|
1154 |
+
/* mark the fields */
|
1155 |
+
if( isset( $_GET['wckerrorfields'] ) && !empty( $_GET['wckerrorfields'] ) ){
|
1156 |
+
echo '<script type="text/javascript">';
|
1157 |
+
$field_names = explode( ',', urldecode( base64_decode( $_GET['wckerrorfields'] ) ) );
|
1158 |
+
foreach( $field_names as $field_name ){
|
1159 |
+
echo "jQuery( '.field-label[for=\"". $field_name ."\"]' ).addClass('error');";
|
1160 |
+
|
1161 |
+
}
|
1162 |
+
echo '</script>';
|
1163 |
+
}
|
1164 |
+
|
1165 |
+
/* alert the error messages */
|
1166 |
+
if( isset( $_GET['wckerrormessages'] ) ){
|
1167 |
+
echo '<script type="text/javascript">alert("'. urldecode( str_replace( '%0A', '\n', base64_decode( $_GET['wckerrormessages'] ) ) ) .'")</script>';
|
1168 |
+
}
|
1169 |
+
}
|
1170 |
|
1171 |
/* WPML Compatibility */
|
1172 |
|
1341 |
* @param string $string The input string from which we generate the slug
|
1342 |
* @return string $slug The henerated slug
|
1343 |
*/
|
1344 |
+
static function wck_generate_slug( $string, $details = array() ){
|
1345 |
+
if( !empty( $details['slug'] ) )
|
1346 |
+
$slug = $details['slug'];
|
1347 |
+
else
|
1348 |
+
$slug = rawurldecode( sanitize_title_with_dashes( remove_accents( $string ) ) );
|
1349 |
+
|
1350 |
+
return $slug;
|
1351 |
}
|
1352 |
}
|
1353 |
|
1445 |
*/
|
1446 |
function wck_page_init(){
|
1447 |
global $wck_pages_hooknames;
|
1448 |
+
|
1449 |
+
/* don't add the page at all if the user doesn't meet the capabilities */
|
1450 |
+
if( !empty( $this->args['capability'] ) ){
|
1451 |
+
if( !current_user_can( $this->args['capability'] ) )
|
1452 |
+
return;
|
1453 |
+
}
|
1454 |
|
1455 |
/* Create the page using either add_menu_page or add_submenu_page functions depending on the 'page_type' parameter. */
|
1456 |
if( $this->args['page_type'] == 'menu_page' ){
|