Kadence Themes Toolkit - Version 2.2

Version Description

  • Big update, move theme metaboxes to plugin.
  • Add Contact form template to plugin.
  • Add translation files
Download this release

Release Info

Developer britner
Plugin Icon wp plugin Kadence Themes Toolkit
Version 2.2
Comparing to
See all releases

Code changes from version 2.1 to 2.2

Files changed (45) hide show
  1. cmb/helpers/cmb_Meta_Box_Sanitize.php +346 -0
  2. cmb/helpers/cmb_Meta_Box_Show_Filters.php +105 -0
  3. cmb/helpers/cmb_Meta_Box_ajax.php +203 -0
  4. cmb/helpers/cmb_Meta_Box_field.php +497 -0
  5. cmb/helpers/cmb_Meta_Box_types.php +794 -0
  6. cmb/images/ico-delete.png +0 -0
  7. cmb/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  8. cmb/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  9. cmb/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  10. cmb/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  11. cmb/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  12. cmb/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  13. cmb/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  14. cmb/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  15. cmb/images/ui-icons_222222_256x240.png +0 -0
  16. cmb/images/ui-icons_2e83ff_256x240.png +0 -0
  17. cmb/images/ui-icons_454545_256x240.png +0 -0
  18. cmb/images/ui-icons_888888_256x240.png +0 -0
  19. cmb/images/ui-icons_cd0a0a_256x240.png +0 -0
  20. cmb/init.php +1186 -0
  21. cmb/js/cmb.js +797 -0
  22. cmb/js/cmb.min.js +1 -0
  23. cmb/js/jquery.datePicker.min.js +2038 -0
  24. cmb/js/jquery.timePicker.min.js +13 -0
  25. cmb/style.css +621 -0
  26. cmb/style.min.css +1 -0
  27. gallery.php +8 -3
  28. languages/de_DE.mo +0 -0
  29. languages/de_DE.po +4333 -0
  30. languages/es_ES.mo +0 -0
  31. languages/es_ES.po +3843 -0
  32. languages/fr_FR.mo +0 -0
  33. languages/fr_FR.po +3439 -0
  34. languages/it_IT.mo +0 -0
  35. languages/it_IT.po +4098 -0
  36. languages/kadence_toolkit.po +1228 -0
  37. languages/kadence_toolkit.pot +1228 -0
  38. languages/pt_BR.mo +0 -0
  39. languages/pt_BR.po +5223 -0
  40. languages/ru_RU.mo +0 -0
  41. languages/ru_RU.po +3672 -0
  42. metaboxes.php +1122 -0
  43. page-contact.php +230 -0
  44. pagetemplater.php +174 -0
  45. post-types.php +1 -1
cmb/helpers/cmb_Meta_Box_Sanitize.php ADDED
@@ -0,0 +1,346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * CMB field validation
5
+ * @since 0.0.4
6
+ */
7
+ class cmb_Meta_Box_Sanitize {
8
+
9
+ /**
10
+ * A CMB field object
11
+ * @var cmb_Meta_Box_field object
12
+ */
13
+ public $field;
14
+
15
+ /**
16
+ * Field's $_POST value
17
+ * @var mixed
18
+ */
19
+ public $value;
20
+
21
+ /**
22
+ * Setup our class vars
23
+ * @since 1.1.0
24
+ * @param object $field A CMB field object
25
+ * @param mixed $value Field value
26
+ */
27
+ public function __construct( $field, $value ) {
28
+ $this->field = $field;
29
+ $this->value = $value;
30
+ $this->object_id = cmb_Meta_Box::get_object_id();
31
+ $this->object_type = cmb_Meta_Box::get_object_type();
32
+ }
33
+
34
+ /**
35
+ * Catchall method if field's 'sanitization_cb' is NOT defined, or field type does not have a corresponding validation method
36
+ * @since 1.0.0
37
+ * @param string $name Non-existent method name
38
+ * @param array $arguments All arguments passed to the method
39
+ */
40
+ public function __call( $name, $arguments ) {
41
+ list( $value ) = $arguments;
42
+ return $this->default_sanitization( $value );
43
+ }
44
+
45
+ /**
46
+ * Default fallback sanitization method. Applies filters.
47
+ * @since 1.0.2
48
+ * @param mixed $value Meta value
49
+ */
50
+ public function default_sanitization( $value ) {
51
+
52
+ // Allow field type validation via filter
53
+ $updated = apply_filters( 'cmb_validate_'. $this->field->type(), null, $value, $this->object_id, $this->field->args(), $this );
54
+
55
+ if ( null !== $updated )
56
+ return $updated;
57
+
58
+ switch ( $this->field->type() ) {
59
+ case 'wysiwyg':
60
+ // $value = wp_kses( $value );
61
+ // break;
62
+ case 'textarea_small':
63
+ return $this->textarea( $value );
64
+ case 'taxonomy_select':
65
+ case 'taxonomy_radio':
66
+ case 'taxonomy_multicheck':
67
+ if ( $this->field->args( 'taxonomy' ) ) {
68
+ return wp_set_object_terms( $this->object_id, $value, $this->field->args( 'taxonomy' ) );
69
+ }
70
+ case 'multicheck':
71
+ case 'file_list':
72
+ case 'oembed':
73
+ // no filtering
74
+ return $value;
75
+ default:
76
+ // Handle repeatable fields array
77
+ // We'll fallback to 'sanitize_text_field'
78
+ return is_array( $value ) ? array_map( 'sanitize_text_field', $value ) : call_user_func( 'sanitize_text_field', $value );
79
+ }
80
+ }
81
+
82
+ /**
83
+ * Simple checkbox validation
84
+ * @since 1.0.1
85
+ * @param mixed $val 'on' or false
86
+ * @return mixed 'on' or false
87
+ */
88
+ public function checkbox( $value ) {
89
+ return $value === 'on' ? 'on' : false;
90
+ }
91
+
92
+ /**
93
+ * Validate url in a meta value
94
+ * @since 1.0.1
95
+ * @param string $value Meta value
96
+ * @return string Empty string or escaped url
97
+ */
98
+ public function text_url( $value ) {
99
+ $protocols = $this->field->args( 'protocols' );
100
+ // for repeatable
101
+ if ( is_array( $value ) ) {
102
+ foreach ( $value as $key => $val ) {
103
+ $value[ $key ] = $val ? esc_url_raw( $val, $protocols ) : $this->field->args( 'default' );
104
+ }
105
+ } else {
106
+ $value = $value ? esc_url_raw( $value, $protocols ) : $this->field->args( 'default' );
107
+ }
108
+
109
+ return $value;
110
+ }
111
+
112
+ public function colorpicker( $value ) {
113
+ // for repeatable
114
+ if ( is_array( $value ) ) {
115
+ $check = $value;
116
+ $value = array();
117
+ foreach ( $check as $key => $val ) {
118
+ if ( $val && '#' != $val ) {
119
+ $value[ $key ] = esc_attr( $val );
120
+ }
121
+ }
122
+ } else {
123
+ $value = ! $value || '#' == $value ? '' : esc_attr( $value );
124
+ }
125
+ return $value;
126
+ }
127
+
128
+ /**
129
+ * Validate email in a meta value
130
+ * @since 1.0.1
131
+ * @param string $value Meta value
132
+ * @return string Empty string or validated email
133
+ */
134
+ public function text_email( $value ) {
135
+ // for repeatable
136
+ if ( is_array( $value ) ) {
137
+ foreach ( $value as $key => $val ) {
138
+ $val = trim( $val );
139
+ $value[ $key ] = is_email( $val ) ? $val : '';
140
+ }
141
+ } else {
142
+ $value = trim( $value );
143
+ $value = is_email( $value ) ? $value : '';
144
+ }
145
+
146
+ return $value;
147
+ }
148
+
149
+ /**
150
+ * Validate money in a meta value
151
+ * @since 1.0.1
152
+ * @param string $value Meta value
153
+ * @return string Empty string or validated money value
154
+ */
155
+ public function text_money( $value ) {
156
+
157
+ global $wp_locale;
158
+
159
+ $search = array( $wp_locale->number_format['thousands_sep'], $wp_locale->number_format['decimal_point'] );
160
+ $replace = array( '', '.' );
161
+
162
+ // for repeatable
163
+ if ( is_array( $value ) ) {
164
+ foreach ( $value as $key => $val ) {
165
+ $value[ $key ] = number_format_i18n( (float) str_ireplace( $search, $replace, $val ), 2 );
166
+ }
167
+ } else {
168
+ $value = number_format_i18n( (float) str_ireplace( $search, $replace, $value ), 2 );
169
+ }
170
+
171
+ return $value;
172
+ }
173
+
174
+ /**
175
+ * Converts text date to timestamp
176
+ * @since 1.0.2
177
+ * @param string $value Meta value
178
+ * @return string Timestring
179
+ */
180
+ public function text_date_timestamp( $value ) {
181
+ return is_array( $value ) ? array_map( 'strtotime', $value ) : strtotime( $value );
182
+ }
183
+
184
+ /**
185
+ * Datetime to timestamp
186
+ * @since 1.0.1
187
+ * @param string $value Meta value
188
+ * @return string Timestring
189
+ */
190
+ public function text_datetime_timestamp( $value, $repeat = false ) {
191
+
192
+ $test = is_array( $value ) ? array_filter( $value ) : '';
193
+ if ( empty( $test ) )
194
+ return '';
195
+
196
+ if ( $repeat_value = $this->_check_repeat( $value, __FUNCTION__, $repeat ) )
197
+ return $repeat_value;
198
+
199
+ $value = strtotime( $value['date'] .' '. $value['time'] );
200
+
201
+ if ( $tz_offset = $this->field->field_timezone_offset() )
202
+ $value += $tz_offset;
203
+
204
+ return $value;
205
+ }
206
+
207
+ /**
208
+ * Datetime to imestamp with timezone
209
+ * @since 1.0.1
210
+ * @param string $value Meta value
211
+ * @return string Timestring
212
+ */
213
+ public function text_datetime_timestamp_timezone( $value, $repeat = false ) {
214
+
215
+ $test = is_array( $value ) ? array_filter( $value ) : '';
216
+ if ( empty( $test ) )
217
+ return '';
218
+
219
+ if ( $repeat_value = $this->_check_repeat( $value, __FUNCTION__, $repeat ) )
220
+ return $repeat_value;
221
+
222
+ $tzstring = null;
223
+
224
+ if ( is_array( $value ) && array_key_exists( 'timezone', $value ) )
225
+ $tzstring = $value['timezone'];
226
+
227
+ if ( empty( $tzstring ) )
228
+ $tzstring = cmb_Meta_Box::timezone_string();
229
+
230
+ $offset = cmb_Meta_Box::timezone_offset( $tzstring, true );
231
+
232
+ if ( substr( $tzstring, 0, 3 ) === 'UTC' )
233
+ $tzstring = timezone_name_from_abbr( '', $offset, 0 );
234
+
235
+ $value = new DateTime( $value['date'] .' '. $value['time'], new DateTimeZone( $tzstring ) );
236
+ $value = serialize( $value );
237
+
238
+ return $value;
239
+ }
240
+
241
+ /**
242
+ * Sanitize textareas and wysiwyg fields
243
+ * @since 1.0.1
244
+ * @param string $value Meta value
245
+ * @return string Sanitized data
246
+ */
247
+ public function textarea( $value ) {
248
+ return is_array( $value ) ? array_map( 'wp_kses_post', $value ) : wp_kses_post( $value );
249
+ }
250
+
251
+ /**
252
+ * Sanitize code textareas
253
+ * @since 1.0.2
254
+ * @param string $value Meta value
255
+ * @return string Sanitized data
256
+ */
257
+ public function textarea_code( $value, $repeat = false ) {
258
+ if ( $repeat_value = $this->_check_repeat( $value, __FUNCTION__, $repeat ) )
259
+ return $repeat_value;
260
+
261
+ return htmlspecialchars_decode( stripslashes( $value ) );
262
+ }
263
+
264
+ /**
265
+ * Peforms saving of `file` attachement's ID
266
+ * @since 1.1.0
267
+ * @param string $value File url
268
+ */
269
+ public function _save_file_id( $value ) {
270
+ $group = $this->field->group;
271
+ $args = $this->field->args();
272
+ $args['id'] = $args['_id'] . '_id';
273
+
274
+ unset( $args['_id'], $args['_name'] );
275
+ // And get new field object
276
+ $field = new cmb_Meta_Box_field( $args, $group );
277
+ $id_key = $field->_id();
278
+ $id_val_old = $field->escaped_value( 'absint' );
279
+
280
+ if ( $group ) {
281
+ // Check group $_POST data
282
+ $i = $group->index;
283
+ $base_id = $group->_id();
284
+ $id_val = isset( $_POST[ $base_id ][ $i ][ $id_key ] ) ? absint( $_POST[ $base_id ][ $i ][ $id_key ] ) : 0;
285
+
286
+ } else {
287
+ // Check standard $_POST data
288
+ $id_val = isset( $_POST[ $field->id() ] ) ? $_POST[ $field->id() ] : null;
289
+
290
+ }
291
+
292
+ // If there is no ID saved yet, try to get it from the url
293
+ if ( $value && ! $id_val ) {
294
+ $id_val = cmb_Meta_Box::image_id_from_url( $value );
295
+ }
296
+
297
+ if ( $group ) {
298
+ return array(
299
+ 'attach_id' => $id_val,
300
+ 'field_id' => $id_key
301
+ );
302
+ }
303
+
304
+ if ( $id_val && $id_val != $id_val_old ) {
305
+ return $field->update_data( $id_val );
306
+ } elseif ( empty( $id_val ) && $id_val_old ) {
307
+ return $field->remove_data( $old );
308
+ }
309
+ }
310
+
311
+ /**
312
+ * Handles saving of attachment post ID and sanitizing file url
313
+ * @since 1.1.0
314
+ * @param string $value File url
315
+ * @return string Sanitized url
316
+ */
317
+ public function file( $value ) {
318
+ // If NOT specified to NOT save the file ID
319
+ if ( $this->field->args( 'save_id' ) ) {
320
+ $id_value = $this->_save_file_id( $value );
321
+ }
322
+ $clean = $this->text_url( $value );
323
+
324
+ // Return an array with url/id if saving a group field
325
+ return $this->field->group ? array_merge( array( 'url' => $clean), $id_value ) : $clean;
326
+ }
327
+
328
+ /**
329
+ * If repeating, loop through and re-apply sanitization method
330
+ * @since 1.1.0
331
+ * @param mixed $value Meta value
332
+ * @param string $method Class method
333
+ * @param bool $repeat Whether repeating or not
334
+ * @return mixed Sanitized value
335
+ */
336
+ public function _check_repeat( $value, $method, $repeat ) {
337
+ if ( $repeat || ! $this->field->args( 'repeatable' ) )
338
+ return;
339
+ $new_value = array();
340
+ foreach ( $value as $iterator => $val ) {
341
+ $new_value[] = $this->$method( $val, true );
342
+ }
343
+ return $new_value;
344
+ }
345
+
346
+ }
cmb/helpers/cmb_Meta_Box_Show_Filters.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Show On Filters
5
+ * Use the 'cmb_show_on' filter to further refine the conditions under which a metabox is displayed.
6
+ * Below you can limit it by ID and page template
7
+ *
8
+ * All methods in this class are automatically filtered
9
+ *
10
+ * @since 1.0.0
11
+ */
12
+ class cmb_Meta_Box_Show_Filters {
13
+
14
+ /**
15
+ * Add metaboxes for an specific ID
16
+ * @since 1.0.0
17
+ * @param bool $display To display or not
18
+ * @param array $meta_box Metabox config array
19
+ * @return bool Whether to display this metabox on the current page.
20
+ */
21
+ public static function check_id( $display, $meta_box ) {
22
+
23
+ if ( ! isset( $meta_box['show_on']['key'] ) || 'id' !== $meta_box['show_on']['key'] )
24
+ return $display;
25
+
26
+ $object_id = is_admin() ? cmb_Meta_Box::get_object_id() : @get_the_id();
27
+
28
+ if ( ! $object_id )
29
+ return false;
30
+
31
+ // If current page id is in the included array, display the metabox
32
+ return in_array( $object_id, (array) $meta_box['show_on']['value'] );
33
+ }
34
+
35
+ /**
36
+ * Add metaboxes for an specific Page Template
37
+ * @since 1.0.0
38
+ * @param bool $display To display or not
39
+ * @param array $meta_box Metabox config array
40
+ * @return bool Whether to display this metabox on the current page.
41
+ */
42
+ public static function check_page_template( $display, $meta_box ) {
43
+
44
+ if ( ! isset( $meta_box['show_on']['key'] ) || 'page-template' !== $meta_box['show_on']['key'] )
45
+ return $display;
46
+
47
+ $object_id = cmb_Meta_Box::get_object_id();
48
+
49
+ if ( ! $object_id || cmb_Meta_Box::get_object_type() !== 'post' )
50
+ return false;
51
+
52
+ // Get current template
53
+ $current_template = get_post_meta( $object_id, '_wp_page_template', true );
54
+
55
+ // See if there's a match
56
+ if ( $current_template && in_array( $current_template, (array) $meta_box['show_on']['value'] ) )
57
+ return true;
58
+
59
+ return false;
60
+ }
61
+
62
+ /**
63
+ * Only show options-page metaboxes on their options page (but only enforce on the admin side)
64
+ * @since 1.0.0
65
+ * @param bool $display To display or not
66
+ * @param array $meta_box Metabox config array
67
+ * @return bool Whether to display this metabox on the current page.
68
+ */
69
+ public static function check_admin_page( $display, $meta_box ) {
70
+
71
+ // check if this is a 'options-page' metabox
72
+ if ( ! isset( $meta_box['show_on']['key'] ) || 'options-page' !== $meta_box['show_on']['key'] )
73
+ return $display;
74
+
75
+ // Enforce 'show_on' filter in the admin
76
+ if ( is_admin() ) {
77
+
78
+ // If there is no 'page' query var, our filter isn't applicable
79
+ if ( ! isset( $_GET['page'] ) )
80
+ return $display;
81
+
82
+ if ( ! isset( $meta_box['show_on']['value'] ) )
83
+ return false;
84
+
85
+ $pages = $meta_box['show_on']['value'];
86
+
87
+ if ( is_array( $pages ) ) {
88
+ foreach ( $pages as $page ) {
89
+ if ( $_GET['page'] == $page )
90
+ return true;
91
+ }
92
+ } else {
93
+ if ( $_GET['page'] == $pages )
94
+ return true;
95
+ }
96
+
97
+ return false;
98
+
99
+ }
100
+
101
+ // Allow options-page metaboxes to be displayed anywhere on the front-end
102
+ return true;
103
+ }
104
+
105
+ }
cmb/helpers/cmb_Meta_Box_ajax.php ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * CMB ajax methods
5
+ * (i.e. a lot of work to get oEmbeds to work with non-post objects)
6
+ *
7
+ * @since 0.9.5
8
+ */
9
+ class cmb_Meta_Box_ajax {
10
+
11
+ // A single instance of this class.
12
+ public static $instance = null;
13
+ // Whether to hijack the oembed cache system
14
+ public static $hijack = false;
15
+ public static $object_id = 0;
16
+ public static $embed_args = array();
17
+ public static $object_type = 'post';
18
+
19
+ /**
20
+ * Creates or returns an instance of this class.
21
+ * @since 0.1.0
22
+ * @return cmb_Meta_Box_ajax A single instance of this class.
23
+ */
24
+ public static function get() {
25
+ if ( self::$instance === null )
26
+ self::$instance = new self();
27
+
28
+ return self::$instance;
29
+ }
30
+
31
+ /**
32
+ * Handles our oEmbed ajax request
33
+ * @since 0.9.5
34
+ * @return object oEmbed embed code | fallback | error message
35
+ */
36
+ public function oembed_handler() {
37
+
38
+ // verify our nonce
39
+ if ( ! ( isset( $_REQUEST['cmb_ajax_nonce'], $_REQUEST['oembed_url'] ) && wp_verify_nonce( $_REQUEST['cmb_ajax_nonce'], 'ajax_nonce' ) ) )
40
+ die();
41
+
42
+ // sanitize our search string
43
+ $oembed_string = sanitize_text_field( $_REQUEST['oembed_url'] );
44
+
45
+ // send back error if empty
46
+ if ( empty( $oembed_string ) )
47
+ self::send_result( '<p class="ui-state-error-text">'. __( 'Please Try Again', 'cmb' ) .'</p>', false );
48
+
49
+ // Set width of embed
50
+ $embed_width = isset( $_REQUEST['oembed_width'] ) && intval( $_REQUEST['oembed_width'] ) < 640 ? intval( $_REQUEST['oembed_width'] ) : '640';
51
+
52
+ // set url
53
+ $oembed_url = esc_url( $oembed_string );
54
+ // set args
55
+ $embed_args = array( 'width' => $embed_width );
56
+
57
+ // Get embed code (or fallback link)
58
+ $html = self::get_oembed( $oembed_url, $_REQUEST['object_id'], array(
59
+ 'object_type' => isset( $_REQUEST['object_type'] ) ? $_REQUEST['object_type'] : 'post',
60
+ 'oembed_args' => $embed_args,
61
+ 'field_id' => $_REQUEST['field_id'],
62
+ ) );
63
+
64
+ self::send_result( $html );
65
+
66
+ }
67
+
68
+ /**
69
+ * Retrieves oEmbed from url/object ID
70
+ * @since 0.9.5
71
+ * @param string $url URL to retrieve oEmbed
72
+ * @param int $object_id Object ID
73
+ * @param array $args Arguments for method
74
+ * @return string html markup with embed or fallback
75
+ */
76
+ public static function get_oembed( $url, $object_id, $args = array() ) {
77
+ global $wp_embed;
78
+
79
+ $oembed_url = esc_url( $url );
80
+
81
+ // Sanitize object_id
82
+ self::$object_id = is_numeric( $object_id ) ? absint( $object_id ) : sanitize_text_field( $object_id );
83
+
84
+ $args = wp_parse_args( $args, array(
85
+ 'object_type' => 'post',
86
+ 'oembed_args' => self::$embed_args,
87
+ 'field_id' => false,
88
+ 'cache_key' => false,
89
+ ) );
90
+
91
+ self::$embed_args =& $args;
92
+
93
+ // set the post_ID so oEmbed won't fail
94
+ // wp-includes/class-wp-embed.php, WP_Embed::shortcode(), line 162
95
+ $wp_embed->post_ID = self::$object_id;
96
+
97
+ // Special scenario if NOT a post object
98
+ if ( isset( $args['object_type'] ) && $args['object_type'] != 'post' ) {
99
+
100
+ if ( 'options-page' == $args['object_type'] ) {
101
+ // bogus id to pass some numeric checks
102
+ // Issue with a VERY large WP install?
103
+ $wp_embed->post_ID = 1987645321;
104
+ // Use our own cache key to correspond to this field (vs one cache key per url)
105
+ $args['cache_key'] = $args['field_id'] .'_cache';
106
+ }
107
+ // Ok, we need to hijack the oembed cache system
108
+ self::$hijack = true;
109
+ self::$object_type = $args['object_type'];
110
+
111
+ // Gets ombed cache from our object's meta (vs postmeta)
112
+ add_filter( 'get_post_metadata', array( 'cmb_Meta_Box_ajax', 'hijack_oembed_cache_get' ), 10, 3 );
113
+ // Sets ombed cache in our object's meta (vs postmeta)
114
+ add_filter( 'update_post_metadata', array( 'cmb_Meta_Box_ajax', 'hijack_oembed_cache_set' ), 10, 4 );
115
+
116
+ }
117
+
118
+ $embed_args = '';
119
+ foreach ( $args['oembed_args'] as $key => $val ) {
120
+ $embed_args .= " $key=\"$val\"";
121
+ }
122
+
123
+ // ping WordPress for an embed
124
+ $check_embed = $wp_embed->run_shortcode( '[embed'. $embed_args .']'. $oembed_url .'[/embed]' );
125
+
126
+ // fallback that WordPress creates when no oEmbed was found
127
+ $fallback = $wp_embed->maybe_make_link( $oembed_url );
128
+
129
+ // Send back our embed
130
+ if ( $check_embed && $check_embed != $fallback )
131
+ return '<div class="embed_status">'. $check_embed .'<p class="cmb_remove_wrapper"><a href="#" class="cmb_remove_file_button" rel="'. $args['field_id'] .'">'. __( 'Remove Embed', 'cmb' ) .'</a></p></div>';
132
+
133
+ // Otherwise, send back error info that no oEmbeds were found
134
+ return '<p class="ui-state-error-text">'. sprintf( __( 'No oEmbed Results Found for %s. View more info at', 'cmb' ), $fallback ) .' <a href="http://codex.wordpress.org/Embeds" target="_blank">codex.wordpress.org/Embeds</a>.</p>';
135
+
136
+ }
137
+
138
+ /**
139
+ * Hijacks retrieving of cached oEmbed.
140
+ * Returns cached data from relevant object metadata (vs postmeta)
141
+ *
142
+ * @since 0.9.5
143
+ * @param boolean $check Whether to retrieve postmeta or override
144
+ * @param int $object_id Object ID
145
+ * @param string $meta_key Object metakey
146
+ * @return mixed Object's oEmbed cached data
147
+ */
148
+ public static function hijack_oembed_cache_get( $check, $object_id, $meta_key ) {
149
+
150
+ if ( ! self::$hijack || ( self::$object_id != $object_id && 1987645321 !== $object_id ) )
151
+ return $check;
152
+
153
+ // get cached data
154
+ $data = 'options-page' === self::$object_type
155
+ ? cmb_Meta_Box::get_option( self::$object_id, self::$embed_args['cache_key'] )
156
+ : get_metadata( self::$object_type, self::$object_id, $meta_key, true );
157
+
158
+ return $data;
159
+ }
160
+
161
+ /**
162
+ * Hijacks saving of cached oEmbed.
163
+ * Saves cached data to relevant object metadata (vs postmeta)
164
+ *
165
+ * @since 0.9.5
166
+ * @param boolean $check Whether to continue setting postmeta
167
+ * @param int $object_id Object ID to get postmeta from
168
+ * @param string $meta_key Postmeta's key
169
+ * @param mixed $meta_value Value of the postmeta to be saved
170
+ * @return boolean Whether to continue setting
171
+ */
172
+ public static function hijack_oembed_cache_set( $check, $object_id, $meta_key, $meta_value ) {
173
+ if ( ! self::$hijack || ( self::$object_id != $object_id && 1987645321 !== $object_id ) )
174
+ return $check;
175
+
176
+ // Cache the result to our metadata
177
+ if ( 'options-page' === self::$object_type ) {
178
+ // Set the option
179
+ cmb_Meta_Box::update_option( self::$object_id, self::$embed_args['cache_key'], $meta_value, array( 'type' => 'oembed' ) );
180
+ // Save the option
181
+ cmb_Meta_Box::save_option( self::$object_id );
182
+ } else {
183
+ update_metadata( self::$object_type, self::$object_id, $meta_key, $meta_value );
184
+ }
185
+
186
+ // Anything other than `null` to cancel saving to postmeta
187
+ return true;
188
+ }
189
+
190
+ /**
191
+ * Helper to send json encoded response to ajax
192
+ * @since 0.9.5
193
+ * @param string $data Data to be shown via ajax
194
+ * @param boolean $success Success or fail
195
+ */
196
+ public static function send_result( $data, $success = true ) {
197
+ $found = $success ? 'found' : 'not found';
198
+ // send back our encoded data
199
+ echo json_encode( array( 'result' => $data, 'id' => $found ) );
200
+ die();
201
+ }
202
+
203
+ }
cmb/helpers/cmb_Meta_Box_field.php ADDED
@@ -0,0 +1,497 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * CMB field class
5
+ * @since 1.1.0
6
+ */
7
+ class cmb_Meta_Box_field {
8
+
9
+ /**
10
+ * Metabox object id
11
+ * @var mixed
12
+ * @since 1.1.0
13
+ */
14
+ public $object_id;
15
+
16
+ /**
17
+ * Metabox object type
18
+ * @var mixed
19
+ * @since 1.1.0
20
+ */
21
+ public $object_type;
22
+
23
+ /**
24
+ * Field arguments
25
+ * @var mixed
26
+ * @since 1.1.0
27
+ */
28
+ public $args;
29
+
30
+ /**
31
+ * Field group object
32
+ * @var mixed
33
+ * @since 1.1.0
34
+ */
35
+ public $group;
36
+
37
+ /**
38
+ * Field meta value
39
+ * @var mixed
40
+ * @since 1.1.0
41
+ */
42
+ public $value;
43
+
44
+ /**
45
+ * Constructs our field object
46
+ * @since 1.1.0
47
+ * @param array $field_args Field arguments
48
+ * @param array $group_field (optional) Group field object
49
+ */
50
+ public function __construct( $field_args, $group_field = null ) {
51
+ $this->object_id = cmb_Meta_Box::get_object_id();
52
+ $this->object_type = cmb_Meta_Box::get_object_type();
53
+ $this->group = ! empty( $group_field ) ? $group_field : false;
54
+ $this->args = $this->_set_field_defaults( $field_args );
55
+
56
+ // Allow an override for the field's value
57
+ // (assuming no one would want to save 'cmb_no_override_val' as a value)
58
+ $this->value = apply_filters( 'cmb_override_meta_value', 'cmb_no_override_val', $this->object_id, $this->args(), $this->object_type, $this );
59
+
60
+ // If no override, get our meta
61
+ $this->value = 'cmb_no_override_val' === $this->value
62
+ ? $this->get_data()
63
+ : $this->value;
64
+ }
65
+
66
+ /**
67
+ * Non-existent methods fallback to checking for field arguments of the same name
68
+ * @since 1.1.0
69
+ * @param string $name Method name
70
+ * @param array $arguments Array of passed-in arguments
71
+ * @return mixed Value of field argument
72
+ */
73
+ public function __call( $name, $arguments ) {
74
+ $key = isset( $arguments[0] ) ? $arguments[0] : false;
75
+ return $this->args( $name, $key );
76
+ }
77
+
78
+ /**
79
+ * Retrieves the field id
80
+ * @since 1.1.0
81
+ * @param boolean $raw Whether to retrieve pre-modidifed id
82
+ * @return string Field id
83
+ */
84
+ public function id( $raw = false ) {
85
+ $id = $raw ? '_id' : 'id';
86
+ return $this->args( $id );
87
+ }
88
+
89
+ /**
90
+ * Get a field argument
91
+ * @since 1.1.0
92
+ * @param string $key Argument to check
93
+ * @param string $key Sub argument to check
94
+ * @return mixed Argument value or false if non-existent
95
+ */
96
+ public function args( $key = '', $_key = '' ) {
97
+ $vars = $this->_data( 'args', $key );
98
+ if ( $_key ) {
99
+ return isset( $vars[ $_key ] ) ? $vars[ $_key ] : false;
100
+ }
101
+ return $vars;
102
+ }
103
+
104
+ /**
105
+ * Get Field's value
106
+ * @since 1.1.0
107
+ * @param string $key If value is an array, is used to get array key->value
108
+ * @return mixed Field value or false if non-existent
109
+ */
110
+ public function value( $key = '' ) {
111
+ return $this->_data( 'value', $key );
112
+ }
113
+
114
+ /**
115
+ * Retrieve a portion of a field property
116
+ * @since 1.1.0
117
+ * @param string $var Field property to check
118
+ * @param string $key Field property array key to check
119
+ * @return mixed Queried property value or false
120
+ */
121
+ public function _data( $var, $key = '' ) {
122
+ $vars = $this->$var;
123
+ if ( $key ) {
124
+ return isset( $vars[ $key ] ) ? $vars[ $key ] : false;
125
+ }
126
+ return $vars;
127
+ }
128
+
129
+ /**
130
+ * Retrieves metadata/option data
131
+ * @since 1.0.1
132
+ * @param string $field_id Meta key/Option array key
133
+ * @return mixed Meta/Option value
134
+ */
135
+ public function get_data( $field_id = '', $args = array() ) {
136
+ if ( $field_id ) {
137
+ $args['field_id'] = $field_id;
138
+ } else if ( $this->group ) {
139
+ $args['field_id'] = $this->group->id();
140
+ }
141
+ extract( $this->data_args( $args ) );
142
+
143
+ $data = 'options-page' === $type
144
+ ? cmb_Meta_Box::get_option( $id, $field_id )
145
+ : get_metadata( $type, $id, $field_id, ( $single || $repeat ) /* If multicheck this can be multiple values */ );
146
+
147
+ if ( $this->group && $data ) {
148
+ $data = isset( $data[ $this->group->args( 'count' ) ][ $this->args( '_id' ) ] )
149
+ ? $data[ $this->group->args( 'count' ) ][ $this->args( '_id' ) ]
150
+ : false;
151
+ }
152
+ return $data;
153
+ }
154
+
155
+ /**
156
+ * Updates metadata/option data
157
+ * @since 1.0.1
158
+ * @param mixed $value Value to update data with
159
+ * @param bool $single Whether data is an array (add_metadata)
160
+ */
161
+ public function update_data( $new_value, $single = true ) {
162
+ extract( $this->data_args( array( 'new_value' => $new_value, 'single' => $single ) ) );
163
+
164
+ $new_value = $repeat ? array_values( $new_value ) : $new_value;
165
+
166
+ if ( 'options-page' === $type )
167
+ return cmb_Meta_Box::update_option( $id, $field_id, $new_value, $single );
168
+
169
+ if ( ! $single )
170
+ return add_metadata( $type, $id, $field_id, $new_value, false );
171
+
172
+ return update_metadata( $type, $id, $field_id, $new_value );
173
+ }
174
+
175
+ /**
176
+ * Removes/updates metadata/option data
177
+ * @since 1.0.1
178
+ * @param string $old Old value
179
+ */
180
+ public function remove_data( $old = '' ) {
181
+ extract( $this->data_args() );
182
+
183
+ return 'options-page' === $type
184
+ ? cmb_Meta_Box::remove_option( $id, $field_id )
185
+ : delete_metadata( $type, $id, $field_id, $old );
186
+ }
187
+
188
+ /**
189
+ * data variables for get/set data methods
190
+ * @since 1.1.0
191
+ * @param array $args Override arguments
192
+ * @return array Updated arguments
193
+ */
194
+ public function data_args( $args = array() ) {
195
+ $args = wp_parse_args( $args, array(
196
+ 'type' => $this->object_type,
197
+ 'id' => $this->object_id,
198
+ 'field_id' => $this->id( true ),
199
+ 'repeat' => $this->args( 'repeatable' ),
200
+ 'single' => ! $this->args( 'multiple' ),
201
+ ) );
202
+ return $args;
203
+ }
204
+
205
+ /**
206
+ * Checks if field has a registered validation callback
207
+ * @since 1.0.1
208
+ * @param mixed $meta_value Meta value
209
+ * @return mixed Possibly validated meta value
210
+ */
211
+ public function sanitization_cb( $meta_value ) {
212
+ if ( empty( $meta_value ) )
213
+ return $meta_value;
214
+
215
+ // Check if the field has a registered validation callback
216
+ $cb = $this->maybe_callback( 'sanitization_cb' );
217
+ if ( false === $cb ) {
218
+ // If requestion NO validation, return meta value
219
+ return $meta_value;
220
+ } elseif ( $cb ) {
221
+ // Ok, callback is good, let's run it.
222
+ return call_user_func( $cb, $meta_value, $this->args(), $this );
223
+ }
224
+
225
+ $clean = new cmb_Meta_Box_Sanitize( $this, $meta_value );
226
+ // Validation via 'cmb_Meta_Box_Sanitize' (with fallback filter)
227
+ return $clean->{$this->type()}( $meta_value );
228
+ }
229
+
230
+ /**
231
+ * Checks if field has a callback value
232
+ * @since 1.0.1
233
+ * @param string $cb Callback string
234
+ * @return mixed NULL, false for NO validation, or $cb string if it exists.
235
+ */
236
+ public function maybe_callback( $cb ) {
237
+ $field_args = $this->args();
238
+ if ( ! isset( $field_args[ $cb ] ) )
239
+ return;
240
+
241
+ // Check if metabox is requesting NO validation
242
+ $cb = false !== $field_args[ $cb ] && 'false' !== $field_args[ $cb ] ? $field_args[ $cb ] : false;
243
+
244
+ // If requestion NO validation, return false
245
+ if ( ! $cb )
246
+ return false;
247
+
248
+ if ( is_callable( $cb ) )
249
+ return $cb;
250
+ }
251
+
252
+ /**
253
+ * Determine if current type is excempt from escaping
254
+ * @since 1.1.0
255
+ * @return bool True if exempt
256
+ */
257
+ public function escaping_exception() {
258
+ // These types cannot be escaped
259
+ return in_array( $this->type(), array(
260
+ 'file_list',
261
+ 'multicheck',
262
+ 'text_datetime_timestamp_timezone',
263
+ ) );
264
+ }
265
+
266
+ /**
267
+ * Determine if current type cannot be repeatable
268
+ * @since 1.1.0
269
+ * @param string $type Field type to check
270
+ * @return bool True if type cannot be repeatable
271
+ */
272
+ public function repeatable_exception( $type ) {
273
+ // These types cannot be escaped
274
+ return in_array( $type, array(
275
+ 'file', // Use file_list
276
+ 'radio',
277
+ 'title',
278
+ 'group',
279
+ // @todo Ajax load wp_editor: http://wordpress.stackexchange.com/questions/51776/how-to-load-wp-editor-through-ajax-jquery
280
+ 'wysiwyg',
281
+ 'checkbox',
282
+ 'radio_inline',
283
+ 'taxonomy_radio',
284
+ 'taxonomy_select',
285
+ 'taxonomy_multicheck',
286
+ ) );
287
+ }
288
+
289
+ /**
290
+ * Escape the value before output. Defaults to 'esc_attr()'
291
+ * @since 1.0.1
292
+ * @param mixed $meta_value Meta value
293
+ * @param mixed $func Escaping function (if not esc_attr())
294
+ * @return mixed Final value
295
+ */
296
+ public function escaped_value( $func = 'esc_attr', $meta_value = '' ) {
297
+
298
+ if ( isset( $this->escaped_value ) )
299
+ return $this->escaped_value;
300
+
301
+ $meta_value = $meta_value ? $meta_value : $this->value();
302
+ // Check if the field has a registered escaping callback
303
+ $cb = $this->maybe_callback( 'escape_cb' );
304
+ if ( false === $cb || $this->escaping_exception() ) {
305
+ // If requesting NO escaping, return meta value
306
+ return ! empty( $meta_value ) ? $meta_value : $this->args( 'default' );
307
+ } elseif ( $cb ) {
308
+ // Ok, callback is good, let's run it.
309
+ return call_user_func( $cb, $meta_value, $this->args(), $this );
310
+ }
311
+
312
+ // Or custom escaping filter can be used
313
+ $esc = apply_filters( 'cmb_types_esc_'. $this->type(), null, $meta_value, $this->args(), $this );
314
+ if ( null !== $esc ) {
315
+ return $esc;
316
+ }
317
+
318
+ // escaping function passed in?
319
+ $func = $func ? $func : 'esc_attr';
320
+ $meta_value = ! empty( $meta_value ) ? $meta_value : $this->args( 'default' );
321
+
322
+ if ( is_array( $meta_value ) ) {
323
+ foreach ( $meta_value as $key => $value ) {
324
+ $meta_value[ $key ] = call_user_func( $func, $value );
325
+ }
326
+ } else {
327
+ $meta_value = call_user_func( $func, $meta_value );
328
+ }
329
+
330
+ $this->escaped_value = $meta_value;
331
+ return $this->escaped_value;
332
+ }
333
+
334
+ /**
335
+ * Offset a time value based on timezone
336
+ * @since 1.0.0
337
+ * @return string Offset time string
338
+ */
339
+ public function field_timezone_offset() {
340
+ return cmb_Meta_Box::timezone_offset( $this->field_timezone() );
341
+ }
342
+
343
+ /**
344
+ * Return timezone string
345
+ * @since 1.0.0
346
+ * @return string Timezone string
347
+ */
348
+ public function field_timezone() {
349
+
350
+ // Is timezone arg set?
351
+ if ( $this->args( 'timezone' ) ) {
352
+ return $this->args( 'timezone' ) ;
353
+ }
354
+ // Is there another meta key with a timezone stored as its value we should use?
355
+ else if ( $this->args( 'timezone_meta_key' ) ) {
356
+ return $this->get_data( $this->args( 'timezone_meta_key' ) );
357
+ }
358
+
359
+ return false;
360
+ }
361
+
362
+ /**
363
+ * Render a field row
364
+ * @since 1.0.0
365
+ */
366
+ public function render_field() {
367
+
368
+ // If field is requesting to not be shown on the front-end
369
+ if ( ! is_admin() && ! $this->args( 'on_front' ) )
370
+ return;
371
+
372
+ // If field is requesting to be conditionally shown
373
+ if ( is_callable( $this->args( 'show_on_cb' ) ) && ! call_user_func( $this->args( 'show_on_cb' ), $this ) )
374
+ return;
375
+
376
+ $classes = 'cmb-type-'. sanitize_html_class( $this->type() );
377
+ $classes .= ' cmb_id_'. sanitize_html_class( $this->id() );
378
+ $classes .= $this->args( 'repeatable' ) ? ' cmb-repeat' : '';
379
+ // 'inline' flag, or _inline in the field type, set to true
380
+ $classes .= $this->args( 'inline' ) ? ' cmb-inline' : '';
381
+ $is_side = 'side' === $this->args( 'context' );
382
+
383
+ printf( "<tr class=\"%s\">\n", $classes );
384
+
385
+ if ( 'title' == $this->type() || ! $this->args( 'show_names' ) || $is_side ) {
386
+ echo "\t<td colspan=\"2\">\n";
387
+
388
+ if ( ! $this->args( 'show_names' ) || $is_side ) {
389
+ $style = ! $is_side || 'title' == $this->type() ? ' style="display:none;"' : '';
390
+ printf( "\n<label%s for=\"%s\">%s</label>\n", $style, $this->id(), $this->args( 'name' ) );
391
+ }
392
+ } else {
393
+
394
+ $style = 'post' == $this->object_type ? ' style="width:18%"' : '';
395
+ // $tag = 'side' !== $this->args( 'context' ) ? 'th' : 'p';
396
+ $tag = 'th';
397
+ printf( '<%1$s%2$s><label for="%3$s">%4$s</label></%1$s>', $tag, $style, $this->id(), $this->args( 'name' ) );
398
+
399
+ echo "\n\t<td>\n";
400
+ }
401
+
402
+ echo $this->args( 'before' );
403
+
404
+ $this_type = new cmb_Meta_Box_types( $this );
405
+ $this_type->render();
406
+
407
+ echo $this->args( 'after' );
408
+
409
+ echo "\n\t</td>\n</tr>";
410
+ }
411
+
412
+ /**
413
+ * Replaces a hash key - {#} - with the repeatable count
414
+ * @since 1.2.0
415
+ * @param string $value Value to update
416
+ * @return string Updated value
417
+ */
418
+ public function replace_hash( $value ) {
419
+ // Replace hash with 1 based count
420
+ return str_ireplace( '{#}', ( $this->count() + 1 ), $value );
421
+ }
422
+
423
+ /**
424
+ * Fills in empty field parameters with defaults
425
+ * @since 1.1.0
426
+ * @param array $args Metabox field config array
427
+ */
428
+ public function _set_field_defaults( $args ) {
429
+
430
+ // Set up blank or default values for empty ones
431
+ if ( ! isset( $args['name'] ) ) $args['name'] = '';
432
+ if ( ! isset( $args['desc'] ) ) $args['desc'] = '';
433
+ if ( ! isset( $args['before'] ) ) $args['before'] = '';
434
+ if ( ! isset( $args['after'] ) ) $args['after'] = '';
435
+ if ( ! isset( $args['protocols'] ) ) $args['protocols'] = null;
436
+ if ( ! isset( $args['description'] ) ) {
437
+ $args['description'] = isset( $args['desc'] ) ? $args['desc'] : '';
438
+ }
439
+ if ( ! isset( $args['default'] ) ) {
440
+ // Phase out 'std', and use 'default' instead
441
+ $args['default'] = isset( $args['std'] ) ? $args['std'] : '';
442
+ }
443
+ if ( ! isset( $args['preview_size'] ) ) $args['preview_size'] = array( 50, 50 );
444
+ if ( ! isset( $args['date_format'] ) ) $args['date_format'] = 'm\/d\/Y';
445
+ if ( ! isset( $args['time_format'] ) ) $args['time_format'] = 'h:i A';
446
+ // Allow a filter override of the default value
447
+ $args['default'] = apply_filters( 'cmb_default_filter', $args['default'], $args, $this->object_type, $this->object_type );
448
+ $args['allow'] = 'file' == $args['type'] && ! isset( $args['allow'] ) ? array( 'url', 'attachment' ) : array();
449
+ $args['save_id'] = 'file' == $args['type'] && ! ( isset( $args['save_id'] ) && ! $args['save_id'] );
450
+ // $args['multiple'] = isset( $args['multiple'] ) ? $args['multiple'] : ( 'multicheck' == $args['type'] ? true : false );
451
+ $args['multiple'] = isset( $args['multiple'] ) ? $args['multiple'] : false;
452
+ $args['repeatable'] = isset( $args['repeatable'] ) && $args['repeatable'] && ! $this->repeatable_exception( $args['type'] );
453
+ $args['inline'] = isset( $args['inline'] ) && $args['inline'] || false !== stripos( $args['type'], '_inline' );
454
+ $args['on_front'] = ! ( isset( $args['on_front'] ) && ! $args['on_front'] );
455
+ $args['attributes'] = isset( $args['attributes'] ) && is_array( $args['attributes'] ) ? $args['attributes'] : array();
456
+ $args['options'] = isset( $args['options'] ) && is_array( $args['options'] ) ? $args['options'] : array();
457
+
458
+ $args['options'] = 'group' == $args['type'] ? wp_parse_args( $args['options'], array(
459
+ 'add_button' => __( 'Add Group', 'cmb' ),
460
+ 'remove_button' => __( 'Remove Group', 'cmb' ),
461
+ ) ) : $args['options'];
462
+
463
+ $args['_id'] = $args['id'];
464
+ $args['_name'] = $args['id'];
465
+
466
+ if ( $this->group ) {
467
+ $args['id'] = $this->group->args( 'id' ) .'_'. $this->group->args( 'count' ) .'_'. $args['id'];
468
+ $args['_name'] = $this->group->args( 'id' ) .'['. $this->group->args( 'count' ) .']['. $args['_name'] .']';
469
+ }
470
+
471
+ if ( 'wysiwyg' == $args['type'] ) {
472
+ $args['id'] = strtolower( str_ireplace( '-', '_', $args['id'] ) );
473
+ $args['options']['textarea_name'] = $args['_name'];
474
+ }
475
+
476
+ $option_types = array( 'taxonomy_select', 'taxonomy_radio', 'taxonomy_radio_inline' );
477
+ if ( in_array( $args['type'], $option_types, true ) ) {
478
+
479
+ // @todo implemention
480
+ $args['show_option_all'] = isset( $args['show_option_all'] ) && ! $args['show_option_all'] ? false : true;
481
+ $args['show_option_none'] = isset( $args['show_option_none'] ) && ! $args['show_option_none'] ? false : true;
482
+
483
+ }
484
+
485
+ return $args;
486
+ }
487
+
488
+ /**
489
+ * Updates attributes array values unless they exist from the field config array
490
+ * @since 1.1.0
491
+ * @param array $attrs Array of attributes to update
492
+ */
493
+ public function maybe_set_attributes( $attrs = array() ) {
494
+ return wp_parse_args( $this->args['attributes'], $attrs );
495
+ }
496
+
497
+ }
cmb/helpers/cmb_Meta_Box_types.php ADDED
@@ -0,0 +1,794 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * CMB field types
5
+ *
6
+ * @todo test taxonomy methods with non-post objects
7
+ * @todo test all methods with non-post objects
8
+ * @todo Date/Time fields should store date format as data attribute for JS
9
+ *
10
+ * @since 1.0.0
11
+ */
12
+ class cmb_Meta_Box_types {
13
+
14
+ /**
15
+ * An iterator value for repeatable fields
16
+ * @var integer
17
+ * @since 1.0.0
18
+ */
19
+ public $iterator = 0;
20
+
21
+ /**
22
+ * Current field
23
+ * @var array
24
+ * @since 1.0.0
25
+ */
26
+ public $field;
27
+
28
+ public function __construct( $field ) {
29
+ $this->field = $field;
30
+ }
31
+
32
+ /**
33
+ * Default fallback. Allows rendering fields via "cmb_render_$name" hook
34
+ * @since 1.0.0
35
+ * @param string $name Non-existent method name
36
+ * @param array $arguments All arguments passed to the method
37
+ */
38
+ public function __call( $name, $arguments ) {
39
+ // When a non-registered field is called, send it through an action.
40
+ do_action( "cmb_render_$name", $this->field->args(), $this->field->escaped_value(), $this->field->object_id, $this->field->object_type, $this );
41
+ }
42
+
43
+ /**
44
+ * Render a field (and handle repeatable)
45
+ * @since 1.1.0
46
+ */
47
+ public function render() {
48
+ if ( $this->field->args( 'repeatable' ) ) {
49
+ $this->render_repeatable_field();
50
+ } else {
51
+ $this->_render();
52
+ }
53
+ }
54
+
55
+ /**
56
+ * Render a field type
57
+ * @since 1.1.0
58
+ */
59
+ protected function _render() {
60
+ echo $this->{$this->field->type()}();
61
+ }
62
+
63
+ /**
64
+ * Checks if we can get a post object, and if so, uses `get_the_terms` which utilizes caching
65
+ * @since 1.0.2
66
+ * @return mixed Array of terms on success
67
+ */
68
+ public function get_object_terms() {
69
+ $object_id = $this->field->object_id;
70
+ $taxonomy = $this->field->args( 'taxonomy' );
71
+
72
+ if ( ! $post = get_post( $object_id ) ) {
73
+
74
+ $cache_key = 'cmb-cache-'. $taxonomy .'-'. $object_id;
75
+
76
+ // Check cache
77
+ $cached = $test = get_transient( $cache_key );
78
+ if ( $cached )
79
+ return $cached;
80
+
81
+ $cached = wp_get_object_terms( $object_id, $taxonomy );
82
+ // Do our own (minimal) caching. Long enough for a page-load.
83
+ $set = set_transient( $cache_key, $cached, 60 );
84
+ return $cached;
85
+ }
86
+
87
+ // WP caches internally so it's better to use
88
+ return get_the_terms( $post, $taxonomy );
89
+
90
+ }
91
+
92
+ /**
93
+ * Determine a file's extension
94
+ * @since 1.0.0
95
+ * @param string $file File url
96
+ * @return string|false File extension or false
97
+ */
98
+ public function get_file_ext( $file ) {
99
+ $parsed = @parse_url( $file, PHP_URL_PATH );
100
+ return $parsed ? strtolower( pathinfo( $parsed, PATHINFO_EXTENSION ) ) : false;
101
+ }
102
+
103
+ /**
104
+ * Determines if a file has a valid image extension
105
+ * @since 1.0.0
106
+ * @param string $file File url
107
+ * @return bool Whether file has a valid image extension
108
+ */
109
+ public function is_valid_img_ext( $file ) {
110
+ $file_ext = $this->get_file_ext( $file );
111
+
112
+ $this->valid = empty( $this->valid )
113
+ ? (array) apply_filters( 'cmb_valid_img_types', array( 'jpg', 'jpeg', 'png', 'gif', 'ico', 'icon' ) )
114
+ : $this->valid;
115
+
116
+ return ( $file_ext && in_array( $file_ext, $this->valid ) );
117
+ }
118
+
119
+ /**
120
+ * Handles parsing and filtering attributes while preserving any passed in via field config.
121
+ * @since 1.1.0
122
+ * @param array $args Override arguments
123
+ * @param string $element Element for filter
124
+ * @param array $defaults Default arguments
125
+ * @return array Parsed and filtered arguments
126
+ */
127
+ public function parse_args( $args, $element, $defaults ) {
128
+ return wp_parse_args( apply_filters( "cmb_{$element}_attributes", $this->field->maybe_set_attributes( $args ), $this->field, $this ), $defaults );
129
+ }
130
+
131
+ /**
132
+ * Combines attributes into a string for a form element
133
+ * @since 1.1.0
134
+ * @param array $attrs Attributes to concatenate
135
+ * @param array $attr_exclude Attributes that should NOT be concatenated
136
+ * @return string String of attributes for form element
137
+ */
138
+ public function concat_attrs( $attrs, $attr_exclude = array() ) {
139
+ $attributes = '';
140
+ foreach ( $attrs as $attr => $val ) {
141
+ if ( ! in_array( $attr, (array) $attr_exclude, true ) )
142
+ $attributes .= sprintf( ' %s="%s"', $attr, $val );
143
+ }
144
+ return $attributes;
145
+ }
146
+
147
+ /**
148
+ * Generates html for an option element
149
+ * @since 1.1.0
150
+ * @param string $opt_label Option label
151
+ * @param string $opt_value Option value
152
+ * @param mixed $selected Selected attribute if option is selected
153
+ * @return string Generated option element html
154
+ */
155
+ public function option( $opt_label, $opt_value, $selected ) {
156
+ return sprintf( "\t".'<option value="%s" %s>%s</option>', $opt_value, selected( $selected, true, false ), $opt_label )."\n";
157
+ }
158
+
159
+ /**
160
+ * Generates options html
161
+ * @since 1.1.0
162
+ * @param array $args Optional arguments
163
+ * @param string $method Method to generate individual option item
164
+ * @return string Concatenated html options
165
+ */
166
+ public function concat_options( $args = array(), $method = 'list_input' ) {
167
+
168
+ $options = (array) $this->field->args( 'options' );
169
+ $saved_value = $this->field->escaped_value();
170
+ $value = $saved_value ? $saved_value : $this->field->args( 'default' );
171
+
172
+ $_options = ''; $i = 1;
173
+ foreach ( $options as $option_key => $option ) {
174
+
175
+ // Check for the "old" way
176
+ $opt_label = is_array( $option ) && array_key_exists( 'name', $option ) ? $option['name'] : $option;
177
+ $opt_value = is_array( $option ) && array_key_exists( 'value', $option ) ? $option['value'] : $option_key;
178
+ // Check if this option is the value of the input
179
+ $is_current = $value == $opt_value;
180
+
181
+ if ( ! empty( $args ) ) {
182
+ // Clone args & modify for just this item
183
+ $this_args = $args;
184
+ $this_args['value'] = $opt_value;
185
+ $this_args['label'] = $opt_label;
186
+ if ( $is_current )
187
+ $this_args['checked'] = 'checked';
188
+
189
+ $_options .= $this->$method( $this_args, $i );
190
+ } else {
191
+ $_options .= $this->option( $opt_label, $opt_value, $is_current );
192
+ }
193
+ $i++;
194
+ }
195
+ return $_options;
196
+ }
197
+
198
+ /**
199
+ * Generates html for list item with input
200
+ * @since 1.1.0
201
+ * @param array $args Override arguments
202
+ * @param int $i Iterator value
203
+ * @return string Gnerated list item html
204
+ */
205
+ public function list_input( $args = array(), $i ) {
206
+ $args = $this->parse_args( $args, 'list_input', array(
207
+ 'type' => 'radio',
208
+ 'class' => 'cmb_option',
209
+ 'name' => $this->_name(),
210
+ 'id' => $this->_id( $i ),
211
+ 'value' => $this->field->escaped_value(),
212
+ 'label' => '',
213
+ ) );
214
+
215
+ return sprintf( "\t".'<li><input%s/> <label for="%s">%s</label></li>'."\n", $this->concat_attrs( $args, 'label' ), $args['id'], $args['label'] );
216
+ }
217
+
218
+ /**
219
+ * Generates html for list item with checkbox input
220
+ * @since 1.1.0
221
+ * @param array $args Override arguments
222
+ * @param int $i Iterator value
223
+ * @return string Gnerated list item html
224
+ */
225
+ public function list_input_checkbox( $args, $i ) {
226
+ unset( $args['selected'] );
227
+ $saved_value = $this->field->escaped_value();
228
+ if ( is_array( $saved_value ) && in_array( $args['value'], $saved_value ) ) {
229
+ $args['checked'] = 'checked';
230
+ }
231
+ return $this->list_input( $args, $i );
232
+ }
233
+
234
+ /**
235
+ * Generates repeatable field table markup
236
+ * @since 1.0.0
237
+ */
238
+ public function render_repeatable_field() {
239
+ $table_id = $this->field->id() .'_repeat';
240
+
241
+ $this->_desc( true, true );
242
+ ?>
243
+
244
+ <table id="<?php echo $table_id; ?>" class="cmb-repeat-table">
245
+ <tbody>
246
+ <?php $this->repeatable_rows(); ?>
247
+ </tbody>
248
+ </table>
249
+ <p class="add-row">
250
+ <a data-selector="<?php echo $table_id; ?>" class="add-row-button button" href="#"><?php _e( 'Add Row', 'cmb' ); ?></a>
251
+ </p>
252
+
253
+ <?php
254
+ // reset iterator
255
+ $this->iterator = 0;
256
+ }
257
+
258
+ /**
259
+ * Generates repeatable field rows
260
+ * @since 1.1.0
261
+ */
262
+ public function repeatable_rows() {
263
+ $meta_value = $this->field->escaped_value();
264
+ // check for default content
265
+ $default = $this->field->args( 'default' );
266
+
267
+ // check for saved data
268
+ if ( ! empty( $meta_value ) ) {
269
+ $meta_value = is_array( $meta_value ) ? array_filter( $meta_value ) : $meta_value;
270
+ $meta_value = ! empty( $meta_value ) ? $meta_value : $default;
271
+ } else {
272
+ $meta_value = $default;
273
+ }
274
+
275
+ // Loop value array and add a row
276
+ if ( ! empty( $meta_value ) ) {
277
+ foreach ( (array) $meta_value as $val ) {
278
+ $this->field->escaped_value = $val;
279
+ $this->repeat_row();
280
+ $this->iterator++;
281
+ }
282
+ } else {
283
+ // Otherwise add one row
284
+ $this->repeat_row();
285
+ }
286
+
287
+ // Then add an empty row
288
+ $this->field->escaped_value = '';
289
+ $this->iterator = $this->iterator ? $this->iterator : 1;
290
+ $this->repeat_row( 'empty-row' );
291
+ }
292
+
293
+ /**
294
+ * Generates a repeatable row's markup
295
+ * @since 1.1.0
296
+ * @param string $class Repeatable table row's class
297
+ */
298
+ protected function repeat_row( $class = 'repeat-row' ) {
299
+ ?>
300
+
301
+ <tr class="<?php echo $class; ?>">
302
+ <td>
303
+ <?php $this->_render(); ?>
304
+ </td>
305
+ <td class="remove-row">
306
+ <a class="button remove-row-button" href="#"><?php _e( 'Remove', 'cmb' ); ?></a>
307
+ </td>
308
+ </tr>
309
+
310
+ <?php
311
+ }
312
+
313
+ /**
314
+ * Generates description markup
315
+ * @since 1.0.0
316
+ * @param boolean $paragraph Paragraph tag or span
317
+ * @param boolean $echo Whether to echo description or only return it
318
+ * @return string Field's description markup
319
+ */
320
+ public function _desc( $paragraph = false, $echo = false ) {
321
+ // Prevent description from printing multiple times for repeatable fields
322
+ if ( $this->field->args( 'repeatable' ) || $this->iterator > 0 ) {
323
+ return '';
324
+ }
325
+ $tag = $paragraph ? 'p' : 'span';
326
+ $desc = "\n<$tag class=\"cmb_metabox_description\">{$this->field->args( 'description' )}</$tag>\n";
327
+ if ( $echo )
328
+ echo $desc;
329
+ return $desc;
330
+ }
331
+
332
+ /**
333
+ * Generate field name attribute
334
+ * @since 1.1.0
335
+ * @param string $suffix For multi-part fields
336
+ * @return string Name attribute
337
+ */
338
+ public function _name( $suffix = '' ) {
339
+ return $this->field->args( '_name' ) . ( $this->field->args( 'repeatable' ) ? '['. $this->iterator .']' : '' ) . $suffix;
340
+ }
341
+
342
+ /**
343
+ * Generate field id attribute
344
+ * @since 1.1.0
345
+ * @param string $suffix For multi-part fields
346
+ * @return string Id attribute
347
+ */
348
+ public function _id( $suffix = '' ) {
349
+ return $this->field->id() . $suffix . ( $this->field->args( 'repeatable' ) ? '_'. $this->iterator .'" data-iterator="'. $this->iterator : '' );
350
+ }
351
+
352
+ /**
353
+ * Handles outputting an 'input' element
354
+ * @since 1.1.0
355
+ * @param array $args Override arguments
356
+ * @return string Form input element
357
+ */
358
+ public function input( $args = array() ) {
359
+ $args = $this->parse_args( $args, 'input', array(
360
+ 'type' => 'text',
361
+ 'class' => 'regular-text',
362
+ 'name' => $this->_name(),
363
+ 'id' => $this->_id(),
364
+ 'value' => $this->field->escaped_value(),
365
+ 'desc' => $this->_desc( true ),
366
+ ) );
367
+
368
+ return sprintf( '<input%s/>%s', $this->concat_attrs( $args, 'desc' ), $args['desc'] );
369
+ }
370
+
371
+ /**
372
+ * Handles outputting an 'textarea' element
373
+ * @since 1.1.0
374
+ * @param array $args Override arguments
375
+ * @return string Form textarea element
376
+ */
377
+ public function textarea( $args = array() ) {
378
+ $args = $this->parse_args( $args, 'textarea', array(
379
+ 'class' => 'cmb_textarea',
380
+ 'name' => $this->_name(),
381
+ 'id' => $this->_id(),
382
+ 'cols' => 60,
383
+ 'rows' => 10,
384
+ 'value' => $this->field->escaped_value( 'esc_textarea' ),
385
+ 'desc' => $this->_desc( true ),
386
+ ) );
387
+ return sprintf( '<textarea%s>%s</textarea>%s', $this->concat_attrs( $args, array( 'desc', 'value' ) ), $args['value'], $args['desc'] );
388
+ }
389
+
390
+ /**
391
+ * Begin Field Types
392
+ */
393
+
394
+ public function text() {
395
+ return $this->input();
396
+ }
397
+
398
+ public function text_small() {
399
+ return $this->input( array( 'class' => 'cmb_text_small', 'desc' => $this->_desc() ) );
400
+ }
401
+
402
+ public function text_medium() {
403
+ return $this->input( array( 'class' => 'cmb_text_medium', 'desc' => $this->_desc() ) );
404
+ }
405
+
406
+ public function text_email() {
407
+ return $this->input( array( 'class' => 'cmb_text_email cmb_text_medium', 'type' => 'email' ) );
408
+ }
409
+
410
+ public function text_url() {
411
+ return $this->input( array( 'class' => 'cmb_text_url cmb_text_medium regular-text', 'value' => $this->field->escaped_value( 'esc_url' ) ) );
412
+ }
413
+
414
+ public function text_date() {
415
+ return $this->input( array( 'class' => 'cmb_text_small cmb_datepicker', 'desc' => $this->_desc() ) );
416
+ }
417
+
418
+ public function text_time() {
419
+ return $this->input( array( 'class' => 'cmb_timepicker text_time', 'desc' => $this->_desc() ) );
420
+ }
421
+
422
+ public function text_money() {
423
+ return ( ! $this->field->args( 'before' ) ? '$ ' : ' ' ) . $this->input( array( 'class' => 'cmb_text_money', 'desc' => $this->_desc() ) );
424
+ }
425
+
426
+ public function textarea_small() {
427
+ return $this->textarea( array( 'class' => 'cmb_textarea_small', 'rows' => 4 ) );
428
+ }
429
+
430
+ public function textarea_code() {
431
+ return sprintf( '<pre>%s</pre>', $this->textarea( array( 'class' => 'cmb_textarea_code' ) ) );
432
+ }
433
+
434
+ public function wysiwyg( $args = array() ) {
435
+ extract( $this->parse_args( $args, 'input', array(
436
+ 'id' => $this->_id(),
437
+ 'value' => $this->field->escaped_value( 'stripslashes' ),
438
+ 'desc' => $this->_desc( true ),
439
+ 'options' => $this->field->args( 'options' ),
440
+ ) ) );
441
+
442
+ wp_editor( $value, $id, $options );
443
+ echo $desc;
444
+ }
445
+
446
+ public function text_date_timestamp() {
447
+ $meta_value = $this->field->escaped_value();
448
+ $value = ! empty( $meta_value ) ? date( $this->field->args( 'date_format' ), $meta_value ) : '';
449
+ return $this->input( array( 'class' => 'cmb_text_small cmb_datepicker', 'value' => $value ) );
450
+ }
451
+
452
+ public function text_datetime_timestamp( $meta_value = '' ) {
453
+ $desc = '';
454
+ if ( ! $meta_value ) {
455
+ $meta_value = $this->field->escaped_value();
456
+ // This will be used if there is a select_timezone set for this field
457
+ $tz_offset = $this->field->field_timezone_offset();
458
+ if ( ! empty( $tz_offset ) ) {
459
+ $meta_value -= $tz_offset;
460
+ }
461
+ $desc = $this->_desc();
462
+ }
463
+
464
+ $inputs = array(
465
+ $this->input( array(
466
+ 'class' => 'cmb_text_small cmb_datepicker',
467
+ 'name' => $this->_name( '[date]' ),
468
+ 'id' => $this->_id( '_date' ),
469
+ 'value' => ! empty( $meta_value ) ? date( $this->field->args( 'date_format' ), $meta_value ) : '',
470
+ 'desc' => '',
471
+ ) ),
472
+ $this->input( array(
473
+ 'class' => 'cmb_timepicker text_time',
474
+ 'name' => $this->_name( '[time]' ),
475
+ 'id' => $this->_id( '_time' ),
476
+ 'value' => ! empty( $meta_value ) ? date( $this->field->args( 'time_format' ), $meta_value ) : '',
477
+ 'desc' => $desc,
478
+ ) )
479
+ );
480
+
481
+ return implode( "\n", $inputs );
482
+ }
483
+
484
+ public function text_datetime_timestamp_timezone() {
485
+ $meta_value = $this->field->escaped_value();
486
+ $datetime = unserialize( $meta_value );
487
+ $meta_value = $tzstring = false;
488
+
489
+ if ( $datetime && $datetime instanceof DateTime ) {
490
+ $tz = $datetime->getTimezone();
491
+ $tzstring = $tz->getName();
492
+ $meta_value = $datetime->getTimestamp() + $tz->getOffset( new DateTime( 'NOW' ) );
493
+ }
494
+
495
+ $inputs = $this->text_datetime_timestamp( $meta_value );
496
+ $inputs .= '<select name="'. $this->_name( '[timezone]' ) .'" id="'. $this->_id( '_timezone' ) .'">';
497
+ $inputs .= wp_timezone_choice( $tzstring );
498
+ $inputs .= '</select>'. $this->_desc();
499
+
500
+ return $inputs;
501
+ }
502
+
503
+ public function select_timezone() {
504
+ $this->field->args['default'] = $this->field->args( 'default' )
505
+ ? $this->field->args( 'default' )
506
+ : cmb_Meta_Box::timezone_string();
507
+
508
+ $meta_value = $this->field->escaped_value();
509
+
510
+ return '<select name="'. $this->_name() .'" id="'. $this->_id() .'">'. wp_timezone_choice( $meta_value ) .'</select>';
511
+ }
512
+
513
+ public function colorpicker() {
514
+ $meta_value = $this->field->escaped_value();
515
+ $hex_color = '(([a-fA-F0-9]){3}){1,2}$';
516
+ if ( preg_match( '/^' . $hex_color . '/i', $meta_value ) ) // Value is just 123abc, so prepend #.
517
+ $meta_value = '#' . $meta_value;
518
+ elseif ( ! preg_match( '/^#' . $hex_color . '/i', $meta_value ) ) // Value doesn't match #123abc, so sanitize to just #.
519
+ $meta_value = "#";
520
+
521
+ return $this->input( array( 'class' => 'cmb_colorpicker cmb_text_small', 'value' => $meta_value ) );
522
+ }
523
+
524
+ public function title() {
525
+ extract( $this->parse_args( array(), 'title', array(
526
+ 'tag' => $this->field->object_type == 'post' ? 'h5' : 'h3',
527
+ 'class' => 'cmb_metabox_title',
528
+ 'name' => $this->field->args( 'name' ),
529
+ 'desc' => $this->_desc( true ),
530
+ ) ) );
531
+
532
+ return sprintf( '<%1$s class="%2$s">%3$s</%1$s>%4$s', $tag, $class, $name, $desc );
533
+ }
534
+
535
+ public function select( $args = array() ) {
536
+ $args = $this->parse_args( $args, 'select', array(
537
+ 'class' => 'cmb_select',
538
+ 'name' => $this->_name(),
539
+ 'id' => $this->_id(),
540
+ 'desc' => $this->_desc( true ),
541
+ 'options' => $this->concat_options(),
542
+ ) );
543
+
544
+ $attrs = $this->concat_attrs( $args, array( 'desc', 'options' ) );
545
+ return sprintf( '<select%s>%s</select>%s', $attrs, $args['options'], $args['desc'] );
546
+ }
547
+
548
+ public function taxonomy_select() {
549
+
550
+ $names = $this->get_object_terms();
551
+ $saved_term = is_wp_error( $names ) || empty( $names ) ? $this->field->args( 'default' ) : $names[0]->slug;
552
+ $terms = get_terms( $this->field->args( 'taxonomy' ), 'hide_empty=0' );
553
+ $options = '';
554
+
555
+ foreach ( $terms as $term ) {
556
+ $selected = $saved_term == $term->slug;
557
+ $options .= $this->option( $term->name, $term->slug, $selected );
558
+ }
559
+
560
+ return $this->select( array( 'options' => $options ) );
561
+ }
562
+
563
+ public function radio( $args = array(), $type = 'radio' ) {
564
+ extract( $this->parse_args( $args, $type, array(
565
+ 'class' => 'cmb_radio_list cmb_list',
566
+ 'options' => $this->concat_options( array( 'label' => 'test' ) ),
567
+ 'desc' => $this->_desc( true ),
568
+ ) ) );
569
+
570
+ return sprintf( '<ul class="%s">%s</ul>%s', $class, $options, $desc );
571
+ }
572
+
573
+ public function radio_inline() {
574
+ return $this->radio( array(), 'radio_inline' );
575
+ }
576
+
577
+ public function multicheck( $type = 'checkbox' ) {
578
+ return $this->radio( array( 'class' => 'cmb_checkbox_list cmb_list', 'options' => $this->concat_options( array( 'type' => 'checkbox', 'name' => $this->_name() .'[]' ), 'list_input_checkbox' ) ), $type );
579
+ }
580
+
581
+ public function multicheck_inline() {
582
+ $this->multicheck( 'multicheck_inline' );
583
+ }
584
+
585
+ public function checkbox() {
586
+ $meta_value = $this->field->escaped_value();
587
+ $args = array( 'type' => 'checkbox', 'class' => 'cmb_option cmb_list', 'value' => 'on', 'desc' => '' );
588
+ if ( ! empty( $meta_value ) ) {
589
+ $args['checked'] = 'checked';
590
+ }
591
+ return sprintf( '%s <label for="%s">%s</label>', $this->input( $args ), $this->_id(), $this->_desc() );
592
+ }
593
+
594
+ public function taxonomy_radio() {
595
+ $names = $this->get_object_terms();
596
+ $saved_term = is_wp_error( $names ) || empty( $names ) ? $this->field->args( 'default' ) : $names[0]->slug;
597
+ $terms = get_terms( $this->field->args( 'taxonomy' ), 'hide_empty=0' );
598
+ $options = ''; $i = 1;
599
+
600
+ if ( ! $terms ) {
601
+ $options .= '<li><label>'. __( 'No terms', 'cmb' ) .'</label></li>';
602
+ } else {
603
+ foreach ( $terms as $term ) {
604
+ $args = array(
605
+ 'value' => $term->slug,
606
+ 'label' => $term->name,
607
+ );
608
+
609
+ if ( $saved_term == $term->slug ) {
610
+ $args['checked'] = 'checked';
611
+ }
612
+ $options .= $this->list_input( $args, $i );
613
+ $i++;
614
+ }
615
+ }
616
+
617
+ return $this->radio( array( 'options' => $options ), 'taxonomy_radio' );
618
+ }
619
+
620
+ public function taxonomy_radio_inline() {
621
+ $this->taxonomy_radio();
622
+ }
623
+
624
+ public function taxonomy_multicheck() {
625
+
626
+ $names = $this->get_object_terms();
627
+ $saved_terms = is_wp_error( $names ) || empty( $names )
628
+ ? $this->field->args( 'default' )
629
+ : wp_list_pluck( $names, 'slug' );
630
+ $terms = get_terms( $this->field->args( 'taxonomy' ), 'hide_empty=0' );
631
+ $name = $this->_name() .'[]';
632
+ $options = ''; $i = 1;
633
+
634
+ if ( ! $terms ) {
635
+ $options .= '<li><label>'. __( 'No terms', 'cmb' ) .'</label></li>';
636
+ } else {
637
+
638
+ foreach ( $terms as $term ) {
639
+ $args = array(
640
+ 'value' => $term->slug,
641
+ 'label' => $term->name,
642
+ 'type' => 'checkbox',
643
+ 'name' => $name,
644
+ );
645
+
646
+ if ( is_array( $saved_terms ) && in_array( $term->slug, $saved_terms ) ) {
647
+ $args['checked'] = 'checked';
648
+ }
649
+ $options .= $this->list_input( $args, $i );
650
+ $i++;
651
+ }
652
+ }
653
+
654
+ return $this->radio( array( 'class' => 'cmb_checkbox_list cmb_list', 'options' => $options ), 'taxonomy_multicheck' );
655
+ }
656
+
657
+ public function taxonomy_multicheck_inline() {
658
+ $this->taxonomy_multicheck();
659
+ }
660
+
661
+ public function file_list() {
662
+ $meta_value = $this->field->escaped_value();
663
+
664
+ $name = $this->_name();
665
+
666
+ echo $this->input( array(
667
+ 'type' => 'hidden',
668
+ 'class' => 'cmb_upload_file cmb_upload_list',
669
+ 'size' => 45, 'desc' => '', 'value' => '',
670
+ ) ),
671
+ $this->input( array(
672
+ 'type' => 'button',
673
+ 'class' => 'cmb_upload_button button cmb_upload_list',
674
+ 'value' => __( 'Add or Upload File', 'cmb' ),
675
+ 'name' => '', 'id' => '',
676
+ ) );
677
+
678
+ echo '<ul id="', $this->_id( '_status' ) ,'" class="cmb_media_status attach_list">';
679
+
680
+ if ( $meta_value && is_array( $meta_value ) ) {
681
+
682
+ foreach ( $meta_value as $id => $fullurl ) {
683
+ $id_input = $this->input( array(
684
+ 'type' => 'hidden',
685
+ 'value' => $fullurl,
686
+ 'name' => $name .'['. $id .']',
687
+ 'id' => 'filelist-'. $id,
688
+ 'desc' => '', 'class' => '',
689
+ ) );
690
+
691
+ if ( $this->is_valid_img_ext( $fullurl ) ) {
692
+ echo
693
+ '<li class="img_status">',
694
+ wp_get_attachment_image( $id, $this->field->args( 'preview_size' ) ),
695
+ '<p class="cmb_remove_wrapper"><a href="#" class="cmb_remove_file_button">'. __( 'Remove Image', 'cmb' ) .'</a></p>
696
+ '. $id_input .'
697
+ </li>';
698
+
699
+ } else {
700
+ $parts = explode( '/', $fullurl );
701
+ for ( $i = 0; $i < count( $parts ); ++$i ) {
702
+ $title = $parts[$i];
703
+ }
704
+ echo
705
+ '<li>',
706
+ __( 'File:', 'cmb' ), ' <strong>', $title, '</strong>&nbsp;&nbsp;&nbsp; (<a href="', $fullurl, '" target="_blank" rel="external">'. __( 'Download', 'cmb' ) .'</a> / <a href="#" class="cmb_remove_file_button">'. __( 'Remove', 'cmb' ) .'</a>)
707
+ '. $id_input .'
708
+ </li>';
709
+ }
710
+ }
711
+ }
712
+
713
+ echo '</ul>';
714
+ }
715
+
716
+ public function file() {
717
+ $meta_value = $this->field->escaped_value();
718
+ $allow = $this->field->args( 'allow' );
719
+ $input_type = ( 'url' == $allow || ( is_array( $allow ) && in_array( 'url', $allow ) ) )
720
+ ? 'text' : 'hidden';
721
+
722
+ echo $this->input( array(
723
+ 'type' => $input_type,
724
+ 'class' => 'cmb_upload_file',
725
+ 'size' => 45,
726
+ 'desc' => '',
727
+ ) ),
728
+ '<input class="cmb_upload_button button" type="button" value="'. __( 'Add or Upload File', 'cmb' ) .'" />',
729
+ $this->_desc( true );
730
+
731
+ $cached_id = $this->_id();
732
+ // Reset field args for attachment ID
733
+ $args = $this->field->args();
734
+ $args['id'] = $args['_id'] . '_id';
735
+ unset( $args['_id'], $args['_name'] );
736
+
737
+ // And get new field object
738
+ $this->field = new cmb_Meta_Box_field( $args, $this->field->group );
739
+
740
+ // Get ID value
741
+ $_id_value = $this->field->escaped_value( 'absint' );
742
+
743
+ // If there is no ID saved yet, try to get it from the url
744
+ if ( $meta_value && ! $_id_value ) {
745
+ $_id_value = cmb_Meta_Box::image_id_from_url( esc_url_raw( $meta_value ) );
746
+ }
747
+
748
+ echo $this->input( array(
749
+ 'type' => 'hidden',
750
+ 'class' => 'cmb_upload_file_id',
751
+ 'value' => $_id_value,
752
+ 'desc' => '',
753
+ ) ),
754
+ '<div id="', $this->_id( '_status' ) ,'" class="cmb_media_status">';
755
+ if ( ! empty( $meta_value ) ) {
756
+
757
+ if ( $this->is_valid_img_ext( $meta_value ) ) {
758
+ echo '<div class="img_status">';
759
+ echo '<img style="max-width: 350px; width: 100%; height: auto;" src="', $meta_value, '" alt="" />';
760
+ echo '<p class="cmb_remove_wrapper"><a href="#" class="cmb_remove_file_button" rel="', $cached_id, '">'. __( 'Remove Image', 'cmb' ) .'</a></p>';
761
+ echo '</div>';
762
+ } else {
763
+ // $file_ext = $this->get_file_ext( $meta_value );
764
+ $parts = explode( '/', $meta_value );
765
+ for ( $i = 0; $i < count( $parts ); ++$i ) {
766
+ $title = $parts[$i];
767
+ }
768
+ echo __( 'File:', 'cmb' ), ' <strong>', $title, '</strong>&nbsp;&nbsp;&nbsp; (<a href="', $meta_value, '" target="_blank" rel="external">'. __( 'Download', 'cmb' ) .'</a> / <a href="#" class="cmb_remove_file_button" rel="', $cached_id, '">'. __( 'Remove', 'cmb' ) .'</a>)';
769
+ }
770
+ }
771
+ echo '</div>';
772
+ }
773
+
774
+ public function oembed() {
775
+ echo $this->input( array(
776
+ 'class' => 'cmb_oembed regular-text',
777
+ 'data-objectid' => $this->field->object_id,
778
+ 'data-objecttype' => $this->field->object_type
779
+ ) ),
780
+ '<p class="cmb-spinner spinner" style="display:none;"><img src="'. admin_url( '/images/wpspin_light.gif' ) .'" alt="spinner"/></p>',
781
+ '<div id="',$this->_id( '_status' ) ,'" class="cmb_media_status ui-helper-clearfix embed_wrap">';
782
+
783
+ if ( $meta_value = $this->field->escaped_value() ) {
784
+ echo cmb_Meta_Box_ajax::get_oembed( $meta_value, $this->field->object_id, array(
785
+ 'object_type' => $this->field->object_type,
786
+ 'oembed_args' => array( 'width' => '640' ),
787
+ 'field_id' => $this->_id(),
788
+ ) );
789
+ }
790
+
791
+ echo '</div>';
792
+ }
793
+
794
+ }
cmb/images/ico-delete.png ADDED
Binary file
cmb/images/ui-bg_flat_0_aaaaaa_40x100.png ADDED
Binary file
cmb/images/ui-bg_flat_75_ffffff_40x100.png ADDED
Binary file
cmb/images/ui-bg_glass_55_fbf9ee_1x400.png ADDED
Binary file
cmb/images/ui-bg_glass_65_ffffff_1x400.png ADDED
Binary file
cmb/images/ui-bg_glass_75_dadada_1x400.png ADDED
Binary file
cmb/images/ui-bg_glass_75_e6e6e6_1x400.png ADDED
Binary file
cmb/images/ui-bg_glass_95_fef1ec_1x400.png ADDED
Binary file
cmb/images/ui-bg_highlight-soft_75_cccccc_1x100.png ADDED
Binary file
cmb/images/ui-icons_222222_256x240.png ADDED
Binary file
cmb/images/ui-icons_2e83ff_256x240.png ADDED
Binary file
cmb/images/ui-icons_454545_256x240.png ADDED
Binary file
cmb/images/ui-icons_888888_256x240.png ADDED
Binary file
cmb/images/ui-icons_cd0a0a_256x240.png ADDED
Binary file
cmb/init.php ADDED
@@ -0,0 +1,1186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Script Name: Custom Metaboxes and Fields
4
+ Contributors: WebDevStudios (@webdevstudios / webdevstudios.com)
5
+ Justin Sternberg (@jtsternberg / dsgnwrks.pro)
6
+ Jared Atchison (@jaredatch / jaredatchison.com)
7
+ Bill Erickson (@billerickson / billerickson.net)
8
+ Andrew Norcross (@norcross / andrewnorcross.com)
9
+ Description: This will create metaboxes with custom fields that will blow your mind.
10
+ Version: 1.2.0
11
+ */
12
+
13
+ /**
14
+ * Released under the GPL license
15
+ * http://www.opensource.org/licenses/gpl-license.php
16
+ *
17
+ * This is an add-on for WordPress
18
+ * http://wordpress.org/
19
+ *
20
+ * **********************************************************************
21
+ * This program is free software; you can redistribute it and/or modify
22
+ * it under the terms of the GNU General Public License as published by
23
+ * the Free Software Foundation; either version 2 of the License, or
24
+ * (at your option) any later version.
25
+ *
26
+ * This program is distributed in the hope that it will be useful,
27
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
28
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29
+ * GNU General Public License for more details.
30
+ * **********************************************************************
31
+ */
32
+
33
+ /************************************************************************
34
+ You should not edit the code below or things might explode!
35
+ *************************************************************************/
36
+
37
+ // Autoload helper classes
38
+ spl_autoload_register('cmb_Meta_Box::autoload_helpers');
39
+
40
+ $meta_boxes = array();
41
+ $meta_boxes = apply_filters( 'cmb_meta_boxes', $meta_boxes );
42
+ foreach ( $meta_boxes as $meta_box ) {
43
+ $my_box = new cmb_Meta_Box( $meta_box );
44
+ }
45
+
46
+ define( 'CMB_META_BOX_URL', cmb_Meta_Box::get_meta_box_url() );
47
+
48
+ /**
49
+ * Create meta boxes
50
+ */
51
+ class cmb_Meta_Box {
52
+
53
+ /**
54
+ * Current version number
55
+ * @var string
56
+ * @since 1.0.0
57
+ */
58
+ const CMB_VERSION = '1.2.0';
59
+
60
+ /**
61
+ * Metabox Config array
62
+ * @var array
63
+ * @since 0.9.0
64
+ */
65
+ protected $_meta_box;
66
+
67
+ /**
68
+ * Metabox Defaults
69
+ * @var array
70
+ * @since 1.0.1
71
+ */
72
+ protected static $mb_defaults = array(
73
+ 'id' => '',
74
+ 'title' => '',
75
+ 'type' => '',
76
+ 'pages' => array(), // Post type
77
+ 'context' => 'normal',
78
+ 'priority' => 'high',
79
+ 'show_names' => true, // Show field names on the left
80
+ 'show_on' => array( 'key' => false, 'value' => false ), // Specific post IDs or page templates to display this metabox
81
+ 'cmb_styles' => true, // Include cmb bundled stylesheet
82
+ 'fields' => array(),
83
+ );
84
+
85
+ /**
86
+ * Metabox Form ID
87
+ * @var string
88
+ * @since 0.9.4
89
+ */
90
+ protected $form_id = 'post';
91
+
92
+ /**
93
+ * Current field config array
94
+ * @var array
95
+ * @since 1.0.0
96
+ */
97
+ public static $field = array();
98
+
99
+ /**
100
+ * Object ID for metabox meta retrieving/saving
101
+ * @var int
102
+ * @since 1.0.0
103
+ */
104
+ protected static $object_id = 0;
105
+
106
+ /**
107
+ * Type of object being saved. (e.g., post, user, or comment)
108
+ * @var string
109
+ * @since 1.0.0
110
+ */
111
+ protected static $object_type = '';
112
+
113
+ /**
114
+ * Whether scripts/styles have been enqueued yet
115
+ * @var bool
116
+ * @since 1.0.0
117
+ */
118
+ protected static $is_enqueued = false;
119
+
120
+ /**
121
+ * Whether CMB nonce has been added to the page. (oly add once)
122
+ * @var bool
123
+ * @since 1.2.0
124
+ */
125
+ protected static $nonce_added = false;
126
+
127
+ /**
128
+ * Type of object specified by the metabox Config
129
+ * @var string
130
+ * @since 1.0.0
131
+ */
132
+ protected static $mb_object_type = 'post';
133
+
134
+ /**
135
+ * Array of all options from manage-options metaboxes
136
+ * @var array
137
+ * @since 1.0.0
138
+ */
139
+ protected static $options = array();
140
+
141
+ /**
142
+ * List of fields that are changed/updated on save
143
+ * @var array
144
+ * @since 1.1.0
145
+ */
146
+ protected static $updated = array();
147
+
148
+ /**
149
+ * Get started
150
+ */
151
+ function __construct( $meta_box ) {
152
+
153
+ $meta_box = self::set_mb_defaults( $meta_box );
154
+
155
+ $allow_frontend = apply_filters( 'cmb_allow_frontend', true, $meta_box );
156
+
157
+ if ( ! is_admin() && ! $allow_frontend )
158
+ return;
159
+
160
+ $this->_meta_box = $meta_box;
161
+
162
+ self::set_mb_type( $meta_box );
163
+
164
+ $types = wp_list_pluck( $meta_box['fields'], 'type' );
165
+ $upload = in_array( 'file', $types ) || in_array( 'file_list', $types );
166
+
167
+ global $pagenow;
168
+
169
+ $show_filters = 'cmb_Meta_Box_Show_Filters';
170
+ foreach ( get_class_methods( $show_filters ) as $filter ) {
171
+ add_filter( 'cmb_show_on', array( $show_filters, $filter ), 10, 2 );
172
+ }
173
+
174
+ // register our scripts and styles for cmb
175
+ add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ), 8 );
176
+
177
+ if ( self::get_object_type() == 'post' ) {
178
+ add_action( 'admin_menu', array( $this, 'add_metaboxes' ) );
179
+ add_action( 'add_attachment', array( $this, 'save_post' ) );
180
+ add_action( 'edit_attachment', array( $this, 'save_post' ) );
181
+ add_action( 'save_post', array( $this, 'save_post' ), 10, 2 );
182
+ add_action( 'admin_enqueue_scripts', array( $this, 'do_scripts' ) );
183
+
184
+ if ( $upload && in_array( $pagenow, array( 'page.php', 'page-new.php', 'post.php', 'post-new.php' ) ) ) {
185
+ add_action( 'admin_head', array( $this, 'add_post_enctype' ) );
186
+ }
187
+
188
+ }
189
+ if ( self::get_object_type() == 'user' ) {
190
+
191
+ $priority = 10;
192
+ if ( isset( $meta_box['priority'] ) ) {
193
+ if ( is_numeric( $meta_box['priority'] ) )
194
+ $priority = $meta_box['priority'];
195
+ elseif ( $meta_box['priority'] == 'high' )
196
+ $priority = 5;
197
+ elseif ( $meta_box['priority'] == 'low' )
198
+ $priority = 20;
199
+ }
200
+ add_action( 'show_user_profile', array( $this, 'user_metabox' ), $priority );
201
+ add_action( 'edit_user_profile', array( $this, 'user_metabox' ), $priority );
202
+
203
+ add_action( 'personal_options_update', array( $this, 'save_user' ) );
204
+ add_action( 'edit_user_profile_update', array( $this, 'save_user' ) );
205
+ if ( $upload && in_array( $pagenow, array( 'profile.php', 'user-edit.php' ) ) ) {
206
+ $this->form_id = 'your-profile';
207
+ add_action( 'admin_head', array( $this, 'add_post_enctype' ) );
208
+ }
209
+ }
210
+
211
+ }
212
+
213
+ /**
214
+ * Autoloads files with classes when needed
215
+ * @since 1.0.0
216
+ * @param string $class_name Name of the class being requested
217
+ */
218
+ public static function autoload_helpers( $class_name ) {
219
+ if ( class_exists( $class_name, false ) )
220
+ return;
221
+
222
+ // for PHP versions < 5.3
223
+ $dir = dirname( __FILE__ );
224
+
225
+ $file = "$dir/helpers/$class_name.php";
226
+ if ( file_exists( $file ) )
227
+ @include( $file );
228
+ }
229
+
230
+ /**
231
+ * Registers scripts and styles for CMB
232
+ * @since 1.0.0
233
+ */
234
+ public function register_scripts() {
235
+
236
+ // Should only be run once
237
+ if ( self::$is_enqueued )
238
+ return;
239
+
240
+ global $wp_version;
241
+ // Only use minified files if SCRIPT_DEBUG is off
242
+ $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
243
+
244
+ // scripts required for cmb
245
+ $scripts = array( 'jquery', 'jquery-ui-core', 'cmb-datepicker', /*'media-upload', */'cmb-timepicker' );
246
+ // styles required for cmb
247
+ $styles = array();
248
+
249
+ // if we're 3.5 or later, user wp-color-picker
250
+ if ( 3.5 <= $wp_version ) {
251
+ $scripts[] = 'wp-color-picker';
252
+ $styles[] = 'wp-color-picker';
253
+ if ( ! is_admin() ) {
254
+ // we need to register colorpicker on the front-end
255
+ wp_register_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), self::CMB_VERSION );
256
+ wp_register_script( 'wp-color-picker', admin_url( 'js/color-picker.min.js' ), array( 'iris' ), self::CMB_VERSION );
257
+ wp_localize_script( 'wp-color-picker', 'wpColorPickerL10n', array(
258
+ 'clear' => __( 'Clear' ),
259
+ 'defaultString' => __( 'Default' ),
260
+ 'pick' => __( 'Select Color' ),
261
+ 'current' => __( 'Current Color' ),
262
+ ) );
263
+ }
264
+ } else {
265
+ // otherwise use the older 'farbtastic'
266
+ $scripts[] = 'farbtastic';
267
+ $styles[] = 'farbtastic';
268
+ }
269
+ wp_register_script( 'cmb-datepicker', CMB_META_BOX_URL . 'js/jquery.datePicker.min.js' );
270
+ wp_register_script( 'cmb-timepicker', CMB_META_BOX_URL . 'js/jquery.timePicker.min.js' );
271
+ wp_register_script( 'cmb-scripts', CMB_META_BOX_URL .'js/cmb'. $min .'.js', $scripts, self::CMB_VERSION );
272
+
273
+ wp_enqueue_media();
274
+
275
+ wp_localize_script( 'cmb-scripts', 'cmb_l10', apply_filters( 'cmb_localized_data', array(
276
+ 'ajax_nonce' => wp_create_nonce( 'ajax_nonce' ),
277
+ 'script_debug' => defined('SCRIPT_DEBUG') && SCRIPT_DEBUG,
278
+ 'new_admin_style' => version_compare( $wp_version, '3.7', '>' ),
279
+ 'object_type' => self::get_object_type(),
280
+ 'upload_file' => 'Use this file',
281
+ 'remove_image' => 'Remove Image',
282
+ 'remove_file' => 'Remove',
283
+ 'file' => 'File:',
284
+ 'download' => 'Download',
285
+ 'ajaxurl' => admin_url( '/admin-ajax.php' ),
286
+ 'up_arrow' => '[ ↑ ]&nbsp;',
287
+ 'down_arrow' => '&nbsp;[ ↓ ]',
288
+ 'check_toggle' => __( 'Select / Deselect All', 'cmb' ),
289
+ ) ) );
290
+
291
+ wp_register_style( 'cmb-styles', CMB_META_BOX_URL . 'style'. $min .'.css', $styles );
292
+
293
+ // Ok, we've enqueued our scripts/styles
294
+ self::$is_enqueued = true;
295
+ }
296
+
297
+ /**
298
+ * Enqueues scripts and styles for CMB
299
+ * @since 1.0.0
300
+ */
301
+ public function do_scripts( $hook ) {
302
+ // only enqueue our scripts/styles on the proper pages
303
+ if ( $hook == 'post.php' || $hook == 'post-new.php' || $hook == 'page-new.php' || $hook == 'page.php' ) {
304
+ wp_enqueue_script( 'cmb-scripts' );
305
+
306
+ // default is to show cmb styles on post pages
307
+ if ( $this->_meta_box['cmb_styles'] )
308
+ wp_enqueue_style( 'cmb-styles' );
309
+ }
310
+ }
311
+
312
+ /**
313
+ * Add encoding attribute
314
+ */
315
+ public function add_post_enctype() {
316
+ echo '
317
+ <script type="text/javascript">
318
+ jQuery(document).ready(function(){
319
+ jQuery("#'. $this->form_id .'").attr("enctype", "multipart/form-data");
320
+ jQuery("#'. $this->form_id .'").attr("encoding", "multipart/form-data");
321
+ });
322
+ </script>';
323
+ }
324
+
325
+ /**
326
+ * Add metaboxes (to 'post' object type)
327
+ */
328
+ public function add_metaboxes() {
329
+
330
+ foreach ( $this->_meta_box['pages'] as $page ) {
331
+ if ( apply_filters( 'cmb_show_on', true, $this->_meta_box ) )
332
+ add_meta_box( $this->_meta_box['id'], $this->_meta_box['title'], array( $this, 'post_metabox' ), $page, $this->_meta_box['context'], $this->_meta_box['priority']) ;
333
+ }
334
+ }
335
+
336
+ /**
337
+ * Display metaboxes for a post object
338
+ * @since 1.0.0
339
+ */
340
+ public function post_metabox() {
341
+ if ( ! $this->_meta_box )
342
+ return;
343
+
344
+ self::show_form( $this->_meta_box, get_the_ID(), 'post' );
345
+
346
+ }
347
+
348
+ /**
349
+ * Display metaboxes for a user object
350
+ * @since 1.0.0
351
+ */
352
+ public function user_metabox() {
353
+ if ( ! $this->_meta_box )
354
+ return;
355
+
356
+ if ( 'user' != self::set_mb_type( $this->_meta_box ) )
357
+ return;
358
+
359
+ if ( ! apply_filters( 'cmb_show_on', true, $this->_meta_box ) )
360
+ return;
361
+
362
+ wp_enqueue_script( 'cmb-scripts' );
363
+
364
+ // default is to NOT show cmb styles on user profile page
365
+ if ( $this->_meta_box['cmb_styles'] != false )
366
+ wp_enqueue_style( 'cmb-styles' );
367
+
368
+ self::show_form( $this->_meta_box );
369
+
370
+ }
371
+
372
+ /**
373
+ * Loops through and displays fields
374
+ * @since 1.0.0
375
+ * @param array $meta_box Metabox config array
376
+ * @param int $object_id Object ID
377
+ * @param string $object_type Type of object being saved. (e.g., post, user, or comment)
378
+ */
379
+ public static function show_form( $meta_box, $object_id = 0, $object_type = '' ) {
380
+ $meta_box = self::set_mb_defaults( $meta_box );
381
+ // Set/get type
382
+ $object_type = self::set_object_type( $object_type ? $object_type : self::set_mb_type( $meta_box ) );
383
+ // Set/get ID
384
+ $object_id = self::set_object_id( $object_id ? $object_id : self::get_object_id() );
385
+
386
+ // Add nonce only once per page.
387
+ if ( ! self::$nonce_added ) {
388
+ wp_nonce_field( self::nonce(), 'wp_meta_box_nonce', false, true );
389
+ self::$nonce_added = true;
390
+ }
391
+
392
+ // Use nonce for verification
393
+ echo "\n<!-- Begin CMB Fields -->\n";
394
+ do_action( 'cmb_before_table', $meta_box, $object_id, $object_type );
395
+ echo '<table class="form-table cmb_metabox">';
396
+
397
+ foreach ( $meta_box['fields'] as $field_args ) {
398
+
399
+ $field_args['context'] = $meta_box['context'];
400
+
401
+ if ( 'group' == $field_args['type'] ) {
402
+
403
+ if ( ! isset( $field_args['show_names'] ) ) {
404
+ $field_args['show_names'] = $meta_box['show_names'];
405
+ }
406
+ self::render_group( $field_args );
407
+ } else {
408
+
409
+ $field_args['show_names'] = $meta_box['show_names'];
410
+ // Render default fields
411
+ $field = new cmb_Meta_Box_field( $field_args );
412
+ $field->render_field();
413
+ }
414
+ }
415
+ echo '</table>';
416
+ do_action( 'cmb_after_table', $meta_box, $object_id, $object_type );
417
+ echo "\n<!-- End CMB Fields -->\n";
418
+
419
+ }
420
+
421
+ /**
422
+ * Render a repeatable group
423
+ */
424
+ public static function render_group( $args ) {
425
+ if ( ! isset( $args['id'], $args['fields'] ) || ! is_array( $args['fields'] ) )
426
+ return;
427
+
428
+ $args['count'] = 0;
429
+ $field_group = new cmb_Meta_Box_field( $args );
430
+ $desc = $field_group->args( 'description' );
431
+ $label = $field_group->args( 'name' );
432
+ $sortable = $field_group->options( 'sortable' ) ? ' sortable' : '';
433
+ $group_val = (array) $field_group->value();
434
+ $nrows = count( $group_val );
435
+ $remove_disabled = $nrows <= 1 ? 'disabled="disabled" ' : '';
436
+
437
+ echo '<tr><td colspan="2"><table id="', $field_group->id(), '_repeat" class="repeatable-group'. $sortable .'" style="width:100%;">';
438
+ if ( $desc || $label ) {
439
+ echo '<tr><th>';
440
+ if ( $label )
441
+ echo '<h2 class="cmb-group-name">'. $label .'</h2>';
442
+ if ( $desc )
443
+ echo '<p class="cmb_metabox_description">'. $desc .'</p>';
444
+ echo '</th></tr>';
445
+ }
446
+
447
+ if ( ! empty( $group_val ) ) {
448
+
449
+ foreach ( $group_val as $iterator => $field_id ) {
450
+ self::render_group_row( $field_group, $remove_disabled );
451
+ }
452
+ } else {
453
+ self::render_group_row( $field_group, $remove_disabled );
454
+ }
455
+
456
+ echo '<tr><td><p class="add-row"><button data-selector="', $field_group->id() ,'_repeat" data-grouptitle="', $field_group->options( 'group_title' ) ,'" class="add-group-row button">'. $field_group->options( 'add_button' ) .'</button></p></td></tr>';
457
+
458
+ echo '</table></td></tr>';
459
+
460
+ }
461
+
462
+ public static function render_group_row( $field_group, $remove_disabled ) {
463
+
464
+ echo '
465
+ <tr class="repeatable-grouping" data-iterator="'. $field_group->count() .'">
466
+ <td>
467
+ <table class="cmb-nested-table" style="width: 100%;">';
468
+ if ( $field_group->options( 'group_title' ) ) {
469
+ echo '
470
+ <tr class="cmb-group-title">
471
+ <th colspan="2">
472
+ ', sprintf( '<h4>%1$s</h4>', $field_group->replace_hash( $field_group->options( 'group_title' ) ) ), '
473
+ <th>
474
+ </tr>
475
+ ';
476
+ }
477
+ // Render repeatable group fields
478
+ foreach ( array_values( $field_group->args( 'fields' ) ) as $field_args ) {
479
+ $field_args['show_names'] = $field_group->args( 'show_names' );
480
+ $field_args['context'] = $field_group->args( 'context' );
481
+ $field = new cmb_Meta_Box_field( $field_args, $field_group );
482
+ $field->render_field();
483
+ }
484
+ echo '
485
+ <tr>
486
+ <td class="remove-row" colspan="2">
487
+ <button '. $remove_disabled .'data-selector="'. $field_group->id() .'_repeat" class="button remove-group-row alignright">'. $field_group->options( 'remove_button' ) .'</button>
488
+ </td>
489
+ </tr>
490
+ </table>
491
+ </td>
492
+ </tr>
493
+ ';
494
+
495
+ $field_group->args['count']++;
496
+ }
497
+
498
+ /**
499
+ * Save data from metabox
500
+ */
501
+ public function save_post( $post_id, $post = false ) {
502
+
503
+ $post_type = $post ? $post->post_type : get_post_type( $post_id );
504
+
505
+ // check permissions
506
+ if (
507
+ // check nonce
508
+ ! isset( $_POST['wp_meta_box_nonce'] )
509
+ || ! wp_verify_nonce( $_POST['wp_meta_box_nonce'], self::nonce() )
510
+ // check if autosave
511
+ || defined('DOING_AUTOSAVE' ) && DOING_AUTOSAVE
512
+ // check user editing permissions
513
+ || ( 'page' == $_POST['post_type'] && ! current_user_can( 'edit_page', $post_id ) )
514
+ || ! current_user_can( 'edit_post', $post_id )
515
+ // get the metabox post_types & compare it to this post_type
516
+ || ! in_array( $post_type, $this->_meta_box['pages'] )
517
+ )
518
+ return $post_id;
519
+
520
+ self::save_fields( $this->_meta_box, $post_id, 'post' );
521
+ }
522
+
523
+ /**
524
+ * Save data from metabox
525
+ */
526
+ public function save_user( $user_id ) {
527
+
528
+ // check permissions
529
+ // @todo more hardening?
530
+ if (
531
+ // check nonce
532
+ ! isset( $_POST['wp_meta_box_nonce'] )
533
+ || ! wp_verify_nonce( $_POST['wp_meta_box_nonce'], self::nonce() )
534
+ )
535
+ return $user_id;
536
+
537
+ self::save_fields( $this->_meta_box, $user_id, 'user' );
538
+ }
539
+
540
+ /**
541
+ * Loops through and saves field data
542
+ * @since 1.0.0
543
+ * @param array $meta_box Metabox config array
544
+ * @param int $object_id Object ID
545
+ * @param string $object_type Type of object being saved. (e.g., post, user, or comment)
546
+ */
547
+ public static function save_fields( $meta_box, $object_id, $object_type = '' ) {
548
+ $meta_box = self::set_mb_defaults( $meta_box );
549
+
550
+ $meta_box['show_on'] = empty( $meta_box['show_on'] ) ? array( 'key' => false, 'value' => false ) : $meta_box['show_on'];
551
+
552
+ self::set_object_id( $object_id );
553
+ // Set/get type
554
+ $object_type = self::set_object_type( $object_type ? $object_type : self::set_mb_type( $meta_box ) );
555
+
556
+ if ( ! apply_filters( 'cmb_show_on', true, $meta_box ) )
557
+ return;
558
+
559
+ // save field ids of those that are updated
560
+ self::$updated = array();
561
+
562
+ foreach ( $meta_box['fields'] as $field_args ) {
563
+
564
+ if ( 'group' == $field_args['type'] ) {
565
+ self::save_group( $field_args );
566
+ } else {
567
+ // Save default fields
568
+ $field = new cmb_Meta_Box_field( $field_args );
569
+ self::save_field( self::sanitize_field( $field ), $field );
570
+ }
571
+
572
+ }
573
+
574
+ // If options page, save the updated options
575
+ if ( $object_type == 'options-page' )
576
+ self::save_option( $object_id );
577
+
578
+ do_action( "cmb_save_{$object_type}_fields", $object_id, $meta_box['id'], self::$updated, $meta_box );
579
+
580
+ }
581
+
582
+ /**
583
+ * Save a repeatable group
584
+ */
585
+ public static function save_group( $args ) {
586
+ if ( ! isset( $args['id'], $args['fields'], $_POST[ $args['id'] ] ) || ! is_array( $args['fields'] ) )
587
+ return;
588
+
589
+ $field_group = new cmb_Meta_Box_field( $args );
590
+ $base_id = $field_group->id();
591
+ $old = $field_group->get_data();
592
+ $group_vals = $_POST[ $base_id ];
593
+ $saved = array();
594
+ $is_updated = false;
595
+ $field_group->index = 0;
596
+
597
+ // $group_vals[0]['color'] = '333';
598
+ foreach ( array_values( $field_group->fields() ) as $field_args ) {
599
+ $field = new cmb_Meta_Box_field( $field_args, $field_group );
600
+ $sub_id = $field->id( true );
601
+
602
+ foreach ( (array) $group_vals as $field_group->index => $post_vals ) {
603
+
604
+ // Get value
605
+ $new_val = isset( $group_vals[ $field_group->index ][ $sub_id ] )
606
+ ? $group_vals[ $field_group->index ][ $sub_id ]
607
+ : false;
608
+
609
+ // Sanitize
610
+ $new_val = self::sanitize_field( $field, $new_val, $field_group->index );
611
+
612
+ if ( 'file' == $field->type() && is_array( $new_val ) ) {
613
+ // Add image ID to the array stack
614
+ $saved[ $field_group->index ][ $new_val['field_id'] ] = $new_val['attach_id'];
615
+ // Reset var to url string
616
+ $new_val = $new_val['url'];
617
+ }
618
+
619
+ // Get old value
620
+ $old_val = is_array( $old ) && isset( $old[ $field_group->index ][ $sub_id ] )
621
+ ? $old[ $field_group->index ][ $sub_id ]
622
+ : false;
623
+
624
+ $is_updated = ( ! empty( $new_val ) && $new_val != $old_val );
625
+ $is_removed = ( empty( $new_val ) && ! empty( $old_val ) );
626
+ // Compare values and add to `$updated` array
627
+ if ( $is_updated || $is_removed )
628
+ self::$updated[] = $base_id .'::'. $field_group->index .'::'. $sub_id;
629
+
630
+ // Add to `$saved` array
631
+ $saved[ $field_group->index ][ $sub_id ] = $new_val;
632
+
633
+ }
634
+ $saved[ $field_group->index ] = array_filter( $saved[ $field_group->index ] );
635
+ }
636
+ $saved = array_filter( $saved );
637
+
638
+ $field_group->update_data( $saved, true );
639
+ }
640
+
641
+ public static function sanitize_field( $field, $new_value = null ) {
642
+
643
+ $new_value = null !== $new_value
644
+ ? $new_value
645
+ : ( isset( $_POST[ $field->id( true ) ] ) ? $_POST[ $field->id( true ) ] : null );
646
+
647
+ if ( $field->args( 'repeatable' ) && is_array( $new_value ) ) {
648
+ // Remove empties
649
+ $new_value = array_filter( $new_value );
650
+ }
651
+
652
+ // Check if this metabox field has a registered validation callback, or perform default sanitization
653
+ return $field->sanitization_cb( $new_value );
654
+ }
655
+
656
+ public static function save_field( $new_value, $field ) {
657
+ $name = $field->id();
658
+ $old = $field->get_data();
659
+
660
+ // if ( $field->args( 'multiple' ) && ! $field->args( 'repeatable' ) && ! $field->group ) {
661
+ // $field->remove_data();
662
+ // if ( ! empty( $new_value ) ) {
663
+ // foreach ( $new_value as $add_new ) {
664
+ // self::$updated[] = $name;
665
+ // $field->update_data( $add_new, $name, false );
666
+ // }
667
+ // }
668
+ // } else
669
+ if ( ! empty( $new_value ) && $new_value != $old ) {
670
+ self::$updated[] = $name;
671
+ return $field->update_data( $new_value );
672
+ } elseif ( empty( $new_value ) ) {
673
+ if ( ! empty( $old ) )
674
+ self::$updated[] = $name;
675
+ return $field->remove_data();
676
+ }
677
+ }
678
+
679
+ /**
680
+ * Get object id from global space if no id is provided
681
+ * @since 1.0.0
682
+ * @param integer $object_id Object ID
683
+ * @return integer $object_id Object ID
684
+ */
685
+ public static function get_object_id( $object_id = 0 ) {
686
+
687
+ if ( $object_id )
688
+ return $object_id;
689
+
690
+ if ( self::$object_id )
691
+ return self::$object_id;
692
+
693
+ // Try to get our object ID from the global space
694
+ switch ( self::get_object_type() ) {
695
+ case 'user':
696
+ $object_id = isset( $GLOBALS['user_ID'] ) ? $GLOBALS['user_ID'] : $object_id;
697
+ $object_id = isset( $_REQUEST['user_id'] ) ? $_REQUEST['user_id'] : $object_id;
698
+ break;
699
+
700
+ default:
701
+ $object_id = isset( $GLOBALS['post']->ID ) ? $GLOBALS['post']->ID : $object_id;
702
+ $object_id = isset( $_REQUEST['post'] ) ? $_REQUEST['post'] : $object_id;
703
+ break;
704
+ }
705
+
706
+ // reset to id or 0
707
+ self::set_object_id( $object_id ? $object_id : 0 );
708
+
709
+ return self::$object_id;
710
+ }
711
+
712
+ /**
713
+ * Explicitly Set object id
714
+ * @since 1.0.0
715
+ * @param integer $object_id Object ID
716
+ * @return integer $object_id Object ID
717
+ */
718
+ public static function set_object_id( $object_id ) {
719
+ return self::$object_id = $object_id;
720
+ }
721
+
722
+ /**
723
+ * Sets the $object_type based on metabox settings
724
+ * @since 1.0.0
725
+ * @param array|string $meta_box Metabox config array or explicit setting
726
+ * @return string Object type
727
+ */
728
+ public static function set_mb_type( $meta_box ) {
729
+
730
+ if ( is_string( $meta_box ) ) {
731
+ self::$mb_object_type = $meta_box;
732
+ return self::get_mb_type();
733
+ }
734
+
735
+ if ( ! isset( $meta_box['pages'] ) )
736
+ return self::get_mb_type();
737
+
738
+ $type = false;
739
+ // check if 'pages' is a string
740
+ if ( self::is_options_page_mb( $meta_box ) )
741
+ $type = 'options-page';
742
+ // check if 'pages' is a string
743
+ elseif ( is_string( $meta_box['pages'] ) )
744
+ $type = $meta_box['pages'];
745
+ // if it's an array of one, extract it
746
+ elseif ( is_array( $meta_box['pages'] ) && count( $meta_box['pages'] === 1 ) )
747
+ $type = is_string( end( $meta_box['pages'] ) ) ? end( $meta_box['pages'] ) : false;
748
+
749
+ if ( !$type )
750
+ return self::get_mb_type();
751
+
752
+ // Get our object type
753
+ if ( 'user' == $type )
754
+ self::$mb_object_type = 'user';
755
+ elseif ( 'comment' == $type )
756
+ self::$mb_object_type = 'comment';
757
+ elseif ( 'options-page' == $type )
758
+ self::$mb_object_type = 'options-page';
759
+ else
760
+ self::$mb_object_type = 'post';
761
+
762
+ return self::get_mb_type();
763
+ }
764
+
765
+ /**
766
+ * Determines if metabox is for an options page
767
+ * @since 1.0.1
768
+ * @param array $meta_box Metabox config array
769
+ * @return boolean True/False
770
+ */
771
+ public static function is_options_page_mb( $meta_box ) {
772
+ return ( isset( $meta_box['show_on']['key'] ) && 'options-page' === $meta_box['show_on']['key'] );
773
+ }
774
+
775
+ /**
776
+ * Returns the object type
777
+ * @since 1.0.0
778
+ * @return string Object type
779
+ */
780
+ public static function get_object_type() {
781
+ if ( self::$object_type )
782
+ return self::$object_type;
783
+
784
+ global $pagenow;
785
+
786
+ if (
787
+ $pagenow == 'user-edit.php'
788
+ || $pagenow == 'profile.php'
789
+ )
790
+ self::set_object_type( 'user' );
791
+
792
+ elseif (
793
+ $pagenow == 'edit-comments.php'
794
+ || $pagenow == 'comment.php'
795
+ )
796
+ self::set_object_type( 'comment' );
797
+ else
798
+ self::set_object_type( 'post' );
799
+
800
+ return self::$object_type;
801
+ }
802
+
803
+ /**
804
+ * Sets the object type
805
+ * @since 1.0.0
806
+ * @return string Object type
807
+ */
808
+ public static function set_object_type( $object_type ) {
809
+ return self::$object_type = $object_type;
810
+ }
811
+
812
+ /**
813
+ * Returns the object type
814
+ * @since 1.0.0
815
+ * @return string Object type
816
+ */
817
+ public static function get_mb_type() {
818
+ return self::$mb_object_type;
819
+ }
820
+
821
+ /**
822
+ * Returns the nonce value for wp_meta_box_nonce
823
+ * @since 1.0.0
824
+ * @return string Nonce value
825
+ */
826
+ public static function nonce() {
827
+ return basename( __FILE__ );
828
+ }
829
+
830
+ /**
831
+ * Defines the url which is used to load local resources.
832
+ * This may need to be filtered for local Window installations.
833
+ * If resources do not load, please check the wiki for details.
834
+ * @since 1.0.1
835
+ * @return string URL to CMB resources
836
+ */
837
+ public static function get_meta_box_url() {
838
+
839
+ if ( strtoupper( substr( PHP_OS, 0, 3 ) ) === 'WIN' ) {
840
+ // Windows
841
+ $content_dir = str_replace( '/', DIRECTORY_SEPARATOR, WP_CONTENT_DIR );
842
+ $content_url = str_replace( $content_dir, WP_CONTENT_URL, dirname(__FILE__) );
843
+ $cmb_url = str_replace( DIRECTORY_SEPARATOR, '/', $content_url );
844
+
845
+ } else {
846
+ $cmb_url = str_replace(
847
+ array(WP_CONTENT_DIR, WP_PLUGIN_DIR),
848
+ array(WP_CONTENT_URL, WP_PLUGIN_URL),
849
+ dirname( __FILE__ )
850
+ );
851
+ }
852
+ $cmb_url = set_url_scheme( $cmb_url );
853
+
854
+ return trailingslashit( apply_filters('cmb_meta_box_url', $cmb_url ) );
855
+ }
856
+
857
+ /**
858
+ * Fills in empty metabox parameters with defaults
859
+ * @since 1.0.1
860
+ * @param array $meta_box Metabox config array
861
+ * @return array Modified Metabox config array
862
+ */
863
+ public static function set_mb_defaults( $meta_box ) {
864
+ return wp_parse_args( $meta_box, self::$mb_defaults );
865
+ }
866
+
867
+ /**
868
+ * Removes an option from an option array
869
+ * @since 1.0.1
870
+ * @param string $option_key Option key
871
+ * @param string $field_id Option array field key
872
+ * @return array Modified options
873
+ */
874
+ public static function remove_option( $option_key, $field_id ) {
875
+
876
+ self::$options[ $option_key ] = ! isset( self::$options[ $option_key ] ) || empty( self::$options[ $option_key ] ) ? self::_get_option( $option_key ) : self::$options[ $option_key ];
877
+
878
+ if ( isset( self::$options[ $option_key ][ $field_id ] ) )
879
+ unset( self::$options[ $option_key ][ $field_id ] );
880
+
881
+ return self::$options[ $option_key ];
882
+ }
883
+
884
+ /**
885
+ * Retrieves an option from an option array
886
+ * @since 1.0.1
887
+ * @param string $option_key Option key
888
+ * @param string $field_id Option array field key
889
+ * @return array Options array or specific field
890
+ */
891
+ public static function get_option( $option_key, $field_id = '' ) {
892
+
893
+ self::$options[ $option_key ] = ! isset( self::$options[ $option_key ] ) || empty( self::$options[ $option_key ] ) ? self::_get_option( $option_key ) : self::$options[ $option_key ];
894
+
895
+ if ( $field_id ) {
896
+ return isset( self::$options[ $option_key ][ $field_id ] ) ? self::$options[ $option_key ][ $field_id ] : false;
897
+ }
898
+
899
+ return self::$options[ $option_key ];
900
+ }
901
+
902
+ /**
903
+ * Updates Option data
904
+ * @since 1.0.1
905
+ * @param string $option_key Option key
906
+ * @param string $field_id Option array field key
907
+ * @param mixed $value Value to update data with
908
+ * @param bool $single Whether data should be an array
909
+ * @return array Modified options
910
+ */
911
+ public static function update_option( $option_key, $field_id, $value, $single = true ) {
912
+
913
+ if ( ! $single ) {
914
+ // If multiple, add to array
915
+ self::$options[ $option_key ][ $field_id ][] = $value;
916
+ } else {
917
+ self::$options[ $option_key ][ $field_id ] = $value;
918
+ }
919
+
920
+ return self::$options[ $option_key ];
921
+ }
922
+
923
+ /**
924
+ * Retrieve option value based on name of option.
925
+ * @uses apply_filters() Calls 'cmb_override_option_get_$option_key' hook to allow
926
+ * overwriting the option value to be retrieved.
927
+ *
928
+ * @since 1.0.1
929
+ * @param string $option Name of option to retrieve. Expected to not be SQL-escaped.
930
+ * @param mixed $default Optional. Default value to return if the option does not exist.
931
+ * @return mixed Value set for the option.
932
+ */
933
+ public static function _get_option( $option_key, $default = false ) {
934
+
935
+ $test_get = apply_filters( "cmb_override_option_get_$option_key", 'cmb_no_override_option_get', $default );
936
+
937
+ if ( $test_get !== 'cmb_no_override_option_get' )
938
+ return $test_get;
939
+
940
+ // If no override, get the option
941
+ return get_option( $option_key, $default );
942
+ }
943
+
944
+ /**
945
+ * Saves the option array
946
+ * Needs to be run after finished using remove/update_option
947
+ * @uses apply_filters() Calls 'cmb_override_option_save_$option_key' hook to allow
948
+ * overwriting the option value to be stored.
949
+ *
950
+ * @since 1.0.1
951
+ * @param string $option_key Option key
952
+ * @return boolean Success/Failure
953
+ */
954
+ public static function save_option( $option_key ) {
955
+
956
+ $to_save = self::get_option( $option_key );
957
+
958
+ $test_save = apply_filters( "cmb_override_option_save_$option_key", 'cmb_no_override_option_save', $to_save );
959
+
960
+ if ( $test_save !== 'cmb_no_override_option_save' )
961
+ return $test_save;
962
+
963
+ // If no override, update the option
964
+ return update_option( $option_key, $to_save );
965
+ }
966
+
967
+ /**
968
+ * Utility method that returns a timezone string representing the default timezone for the site.
969
+ *
970
+ * Roughly copied from WordPress, as get_option('timezone_string') will return
971
+ * and empty string if no value has beens set on the options page.
972
+ * A timezone string is required by the wp_timezone_choice() used by the
973
+ * select_timezone field.
974
+ *
975
+ * @since 1.0.0
976
+ * @return string Timezone string
977
+ */
978
+ public static function timezone_string() {
979
+ $current_offset = get_option( 'gmt_offset' );
980
+ $tzstring = get_option( 'timezone_string' );
981
+
982
+ if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists
983
+ if ( 0 == $current_offset )
984
+ $tzstring = 'UTC+0';
985
+ elseif ( $current_offset < 0 )
986
+ $tzstring = 'UTC' . $current_offset;
987
+ else
988
+ $tzstring = 'UTC+' . $current_offset;
989
+ }
990
+
991
+ return $tzstring;
992
+ }
993
+
994
+ /**
995
+ * Utility method that returns time string offset by timezone
996
+ * @since 1.0.0
997
+ * @param string $tzstring Time string
998
+ * @return string Offset time string
999
+ */
1000
+ public static function timezone_offset( $tzstring ) {
1001
+ if ( ! empty( $tzstring ) && is_string( $tzstring ) ) {
1002
+ if ( substr( $tzstring, 0, 3 ) === 'UTC' ) {
1003
+ $tzstring = str_replace( array( ':15',':30',':45' ), array( '.25','.5','.75' ), $tzstring );
1004
+ return intval( floatval( substr( $tzstring, 3 ) ) * HOUR_IN_SECONDS );
1005
+ }
1006
+
1007
+ $date_time_zone_selected = new DateTimeZone( $tzstring );
1008
+ $tz_offset = timezone_offset_get( $date_time_zone_selected, date_create() );
1009
+
1010
+ return $tz_offset;
1011
+ }
1012
+
1013
+ return 0;
1014
+ }
1015
+
1016
+ /**
1017
+ * Utility method that attempts to get an attachment's ID by it's url
1018
+ * @since 1.0.0
1019
+ * @param string $img_url Attachment url
1020
+ * @return mixed Attachment ID or false
1021
+ */
1022
+ public static function image_id_from_url( $img_url ) {
1023
+ global $wpdb;
1024
+
1025
+ $img_url = esc_url_raw( $img_url );
1026
+ // Get just the file name
1027
+ if ( false !== strpos( $img_url, '/' ) ) {
1028
+ $explode = explode( '/', $img_url );
1029
+ $img_url = end( $explode );
1030
+ }
1031
+
1032
+ // And search for a fuzzy match of the file name
1033
+ $attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE guid LIKE '%%%s%%' LIMIT 1;", $img_url ) );
1034
+
1035
+ // If we found an attachement ID, return it
1036
+ if ( !empty( $attachment ) && is_array( $attachment ) )
1037
+ return $attachment[0];
1038
+
1039
+ // No luck
1040
+ return false;
1041
+ }
1042
+
1043
+ }
1044
+
1045
+ // Handle oembed Ajax
1046
+ add_action( 'wp_ajax_cmb_oembed_handler', array( 'cmb_Meta_Box_ajax', 'oembed_handler' ) );
1047
+ add_action( 'wp_ajax_nopriv_cmb_oembed_handler', array( 'cmb_Meta_Box_ajax', 'oembed_handler' ) );
1048
+
1049
+ /**
1050
+ * A helper function to get an option from a CMB options array
1051
+ * @since 1.0.1
1052
+ * @param string $option_key Option key
1053
+ * @param string $field_id Option array field key
1054
+ * @return array Options array or specific field
1055
+ */
1056
+ function cmb_get_option( $option_key, $field_id = '' ) {
1057
+ return cmb_Meta_Box::get_option( $option_key, $field_id );
1058
+ }
1059
+
1060
+ /**
1061
+ * Get a CMB field object.
1062
+ * @since 1.1.0
1063
+ * @param array $field_args Field arguments
1064
+ * @param int $object_id Object ID
1065
+ * @param string $object_type Type of object being saved. (e.g., post, user, or comment)
1066
+ * @return object cmb_Meta_Box_field object
1067
+ */
1068
+ function cmb_get_field( $field_args, $object_id = 0, $object_type = 'post' ) {
1069
+ // Default to the loop post ID
1070
+ $object_id = $object_id ? $object_id : get_the_ID();
1071
+ cmb_Meta_Box::set_object_id( $object_id );
1072
+ cmb_Meta_Box::set_object_type( $object_type );
1073
+ // Send back field object
1074
+ return new cmb_Meta_Box_field( $field_args );
1075
+ }
1076
+
1077
+ /**
1078
+ * Get a field's value.
1079
+ * @since 1.1.0
1080
+ * @param array $field_args Field arguments
1081
+ * @param int $object_id Object ID
1082
+ * @param string $object_type Type of object being saved. (e.g., post, user, comment, or options-page)
1083
+ * @return mixed Maybe escaped value
1084
+ */
1085
+ function cmb_get_field_value( $field_args, $object_id = 0, $object_type = 'post' ) {
1086
+ $field = cmb_get_field( $field_args, $object_id, $object_type );
1087
+ return $field->escaped_value();
1088
+ }
1089
+
1090
+ /**
1091
+ * Loop and output multiple metaboxes
1092
+ * @since 1.0.0
1093
+ * @param array $meta_boxes Metaboxes config array
1094
+ * @param int $object_id Object ID
1095
+ */
1096
+ function cmb_print_metaboxes( $meta_boxes, $object_id ) {
1097
+ foreach ( (array) $meta_boxes as $meta_box ) {
1098
+ cmb_print_metabox( $meta_box, $object_id );
1099
+ }
1100
+ }
1101
+
1102
+ /**
1103
+ * Output a metabox
1104
+ * @since 1.0.0
1105
+ * @param array $meta_box Metabox config array
1106
+ * @param int $object_id Object ID
1107
+ */
1108
+ function cmb_print_metabox( $meta_box, $object_id ) {
1109
+ $cmb = new cmb_Meta_Box( $meta_box );
1110
+ if ( $cmb ) {
1111
+
1112
+ cmb_Meta_Box::set_object_id( $object_id );
1113
+
1114
+ if ( ! wp_script_is( 'cmb-scripts', 'registered' ) )
1115
+ $cmb->register_scripts();
1116
+
1117
+ wp_enqueue_script( 'cmb-scripts' );
1118
+
1119
+ // default is to show cmb styles
1120
+ if ( $meta_box['cmb_styles'] != false )
1121
+ wp_enqueue_style( 'cmb-styles' );
1122
+
1123
+ cmb_Meta_Box::show_form( $meta_box );
1124
+ }
1125
+
1126
+ }
1127
+
1128
+ /**
1129
+ * Saves a particular metabox's fields
1130
+ * @since 1.0.0
1131
+ * @param array $meta_box Metabox config array
1132
+ * @param int $object_id Object ID
1133
+ */
1134
+ function cmb_save_metabox_fields( $meta_box, $object_id ) {
1135
+ cmb_Meta_Box::save_fields( $meta_box, $object_id );
1136
+ }
1137
+
1138
+ /**
1139
+ * Display a metabox form & save it on submission
1140
+ * @since 1.0.0
1141
+ * @param array $meta_box Metabox config array
1142
+ * @param int $object_id Object ID
1143
+ * @param boolean $return Whether to return or echo form
1144
+ * @return string CMB html form markup
1145
+ */
1146
+ function cmb_metabox_form( $meta_box, $object_id, $echo = true ) {
1147
+
1148
+ $meta_box = cmb_Meta_Box::set_mb_defaults( $meta_box );
1149
+
1150
+ // Make sure form should be shown
1151
+ if ( ! apply_filters( 'cmb_show_on', true, $meta_box ) )
1152
+ return '';
1153
+
1154
+ // Make sure that our object type is explicitly set by the metabox config
1155
+ cmb_Meta_Box::set_object_type( cmb_Meta_Box::set_mb_type( $meta_box ) );
1156
+
1157
+ // Save the metabox if it's been submitted
1158
+ // check permissions
1159
+ // @todo more hardening?
1160
+ if (
1161
+ // check nonce
1162
+ isset( $_POST['submit-cmb'], $_POST['object_id'], $_POST['wp_meta_box_nonce'] )
1163
+ && wp_verify_nonce( $_POST['wp_meta_box_nonce'], cmb_Meta_Box::nonce() )
1164
+ && $_POST['object_id'] == $object_id
1165
+ )
1166
+ cmb_save_metabox_fields( $meta_box, $object_id );
1167
+
1168
+ // Show specific metabox form
1169
+
1170
+ // Get cmb form
1171
+ ob_start();
1172
+ cmb_print_metabox( $meta_box, $object_id );
1173
+ $form = ob_get_contents();
1174
+ ob_end_clean();
1175
+
1176
+ $form_format = apply_filters( 'cmb_frontend_form_format', '<form class="cmb-form" method="post" id="%s" enctype="multipart/form-data" encoding="multipart/form-data"><input type="hidden" name="object_id" value="%s">%s<input type="submit" name="submit-cmb" value="%s" class="button-primary"></form>', $object_id, $meta_box, $form );
1177
+
1178
+ $form = sprintf( $form_format, $meta_box['id'], $object_id, $form, __( 'Save' ) );
1179
+
1180
+ if ( $echo )
1181
+ echo $form;
1182
+
1183
+ return $form;
1184
+ }
1185
+
1186
+ // End. That's it, folks! //
cmb/js/cmb.js ADDED
@@ -0,0 +1,797 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Controls the behaviours of custom metabox fields.
3
+ *
4
+ * @author Andrew Norcross
5
+ * @author Jared Atchison
6
+ * @author Bill Erickson
7
+ * @author Justin Sternberg
8
+ * @see https://github.com/webdevstudios/Custom-Metaboxes-and-Fields-for-WordPress
9
+ */
10
+
11
+ /**
12
+ * Custom jQuery for Custom Metaboxes and Fields
13
+ */
14
+ window.CMB = (function(window, document, $, undefined){
15
+ 'use strict';
16
+
17
+ // localization strings
18
+ var l10n = window.cmb_l10;
19
+ var setTimeout = window.setTimeout;
20
+
21
+ // CMB functionality object
22
+ var cmb = {
23
+ formfield : '',
24
+ idNumber : false,
25
+ file_frames : {},
26
+ repeatEls : 'input:not([type="button"]),select,textarea,.cmb_media_status'
27
+ };
28
+
29
+ cmb.metabox = function() {
30
+ if ( cmb.$metabox ) {
31
+ return cmb.$metabox;
32
+ }
33
+ cmb.$metabox = $('table.cmb_metabox');
34
+ return cmb.$metabox;
35
+ };
36
+
37
+ cmb.init = function() {
38
+
39
+ var $metabox = cmb.metabox();
40
+ var $repeatGroup = $metabox.find('.repeatable-group');
41
+
42
+ // hide our spinner gif if we're on a MP6 dashboard
43
+ if ( l10n.new_admin_style ) {
44
+ $metabox.find('.cmb-spinner img').hide();
45
+ }
46
+
47
+ /**
48
+ * Initialize time/date/color pickers
49
+ */
50
+ cmb.initPickers( $metabox.find('input:text.cmb_timepicker'), $metabox.find('input:text.cmb_datepicker'), $metabox.find('input:text.cmb_colorpicker') );
51
+
52
+ // Wrap date picker in class to narrow the scope of jQuery UI CSS and prevent conflicts
53
+ $("#ui-datepicker-div").wrap('<div class="cmb_element" />');
54
+
55
+ // Insert toggle button into DOM wherever there is multicheck. credit: Genesis Framework
56
+ $( '<p><span class="button cmb-multicheck-toggle">' + l10n.check_toggle + '</span></p>' ).insertBefore( 'ul.cmb_checkbox_list' );
57
+
58
+ $metabox
59
+ .on( 'change', '.cmb_upload_file', function() {
60
+ cmb.formfield = $(this).attr('id');
61
+ $('#' + cmb.formfield + '_id').val('');
62
+ })
63
+ // Media/file management
64
+ .on( 'click', '.cmb-multicheck-toggle', cmb.toggleCheckBoxes )
65
+ .on( 'click', '.cmb_upload_button', cmb.handleMedia )
66
+ .on( 'click', '.cmb_remove_file_button', cmb.handleRemoveMedia )
67
+ // Repeatable content
68
+ .on( 'click', '.add-group-row', cmb.addGroupRow )
69
+ .on( 'click', '.add-row-button', cmb.addAjaxRow )
70
+ .on( 'click', '.remove-group-row', cmb.removeGroupRow )
71
+ .on( 'click', '.remove-row-button', cmb.removeAjaxRow )
72
+ // Ajax oEmbed display
73
+ .on( 'keyup paste focusout', '.cmb_oembed', cmb.maybeOembed )
74
+ // Reset titles when removing a row
75
+ .on( 'cmb_remove_row', '.repeatable-group', cmb.resetTitlesAndIterator );
76
+
77
+ if ( $repeatGroup.length ) {
78
+ $repeatGroup
79
+ .filter('.sortable').each( function() {
80
+ // Add sorting arrows
81
+ $(this).find( '.remove-group-row' ).before( '<a class="shift-rows move-up alignleft" href="#">'+ l10n.up_arrow +'</a> <a class="shift-rows move-down alignleft" href="#">'+ l10n.down_arrow +'</a>' );
82
+ })
83
+ .on( 'click', '.shift-rows', cmb.shiftRows )
84
+ .on( 'cmb_add_row', cmb.emptyValue );
85
+ }
86
+
87
+ // on pageload
88
+ setTimeout( cmb.resizeoEmbeds, 500);
89
+ // and on window resize
90
+ $(window).on( 'resize', cmb.resizeoEmbeds );
91
+
92
+ };
93
+
94
+ cmb.resetTitlesAndIterator = function() {
95
+ // Loop repeatable group tables
96
+ $( '.repeatable-group' ).each( function() {
97
+ var $table = $(this);
98
+ // Loop repeatable group table rows
99
+ $table.find( '.repeatable-grouping' ).each( function( rowindex ) {
100
+ var $row = $(this);
101
+ // Reset rows iterator
102
+ $row.data( 'iterator', rowindex );
103
+ // Reset rows title
104
+ $row.find( '.cmb-group-title h4' ).text( $table.find( '.add-group-row' ).data( 'grouptitle' ).replace( '{#}', ( rowindex + 1 ) ) );
105
+ });
106
+ });
107
+ };
108
+
109
+ cmb.toggleCheckBoxes = function( event ) {
110
+ event.preventDefault();
111
+ var $self = $(this);
112
+ var $multicheck = $self.parents( 'td' ).find( 'input[type=checkbox]' );
113
+
114
+ // If the button has already been clicked once...
115
+ if ( $self.data( 'checked' ) ) {
116
+ // clear the checkboxes and remove the flag
117
+ $multicheck.prop( 'checked', false );
118
+ $self.data( 'checked', false );
119
+ }
120
+ // Otherwise mark the checkboxes and add a flag
121
+ else {
122
+ $multicheck.prop( 'checked', true );
123
+ $self.data( 'checked', true );
124
+ }
125
+ };
126
+
127
+ cmb.handleMedia = function(event) {
128
+
129
+ if ( ! wp ) {
130
+ return;
131
+ }
132
+
133
+ event.preventDefault();
134
+
135
+ var $metabox = cmb.metabox();
136
+ var $self = $(this);
137
+ cmb.formfield = $self.prev('input').attr('id');
138
+ var $formfield = $('#'+cmb.formfield);
139
+ var formName = $formfield.attr('name');
140
+ var uploadStatus = true;
141
+ var attachment = true;
142
+ var isList = $self.hasClass( 'cmb_upload_list' );
143
+
144
+ // If this field's media frame already exists, reopen it.
145
+ if ( cmb.formfield in cmb.file_frames ) {
146
+ cmb.file_frames[cmb.formfield].open();
147
+ return;
148
+ }
149
+
150
+ // Create the media frame.
151
+ cmb.file_frames[cmb.formfield] = wp.media.frames.file_frame = wp.media({
152
+ title: $metabox.find('label[for=' + cmb.formfield + ']').text(),
153
+ button: {
154
+ text: l10n.upload_file
155
+ },
156
+ multiple: isList ? true : false
157
+ });
158
+
159
+ var handlers = {
160
+ list : function( selection ) {
161
+ // Get all of our selected files
162
+ attachment = selection.toJSON();
163
+
164
+ $formfield.val(attachment.url);
165
+ $('#'+ cmb.formfield +'_id').val(attachment.id);
166
+
167
+ // Setup our fileGroup array
168
+ var fileGroup = [];
169
+
170
+ // Loop through each attachment
171
+ $( attachment ).each( function() {
172
+ if ( this.type && this.type === 'image' ) {
173
+ // image preview
174
+ uploadStatus = '<li class="img_status">'+
175
+ '<img width="50" height="50" src="' + this.url + '" class="attachment-50x50" alt="'+ this.filename +'">'+
176
+ '<p><a href="#" class="cmb_remove_file_button" rel="'+ cmb.formfield +'['+ this.id +']">'+ l10n.remove_image +'</a></p>'+
177
+ '<input type="hidden" id="filelist-'+ this.id +'" name="'+ formName +'['+ this.id +']" value="' + this.url + '">'+
178
+ '</li>';
179
+
180
+ } else {
181
+ // Standard generic output if it's not an image.
182
+ uploadStatus = '<li>'+ l10n.file +' <strong>'+ this.filename +'</strong>&nbsp;&nbsp;&nbsp; (<a href="' + this.url + '" target="_blank" rel="external">'+ l10n.download +'</a> / <a href="#" class="cmb_remove_file_button" rel="'+ cmb.formfield +'['+ this.id +']">'+ l10n.remove_file +'</a>)'+
183
+ '<input type="hidden" id="filelist-'+ this.id +'" name="'+ formName +'['+ this.id +']" value="' + this.url + '">'+
184
+ '</li>';
185
+
186
+ }
187
+
188
+ // Add our file to our fileGroup array
189
+ fileGroup.push( uploadStatus );
190
+ });
191
+
192
+ // Append each item from our fileGroup array to .cmb_media_status
193
+ $( fileGroup ).each( function() {
194
+ $formfield.siblings('.cmb_media_status').slideDown().append(this);
195
+ });
196
+ },
197
+ single : function( selection ) {
198
+ // Only get one file from the uploader
199
+ attachment = selection.first().toJSON();
200
+
201
+ $formfield.val(attachment.url);
202
+ $('#'+ cmb.formfield +'_id').val(attachment.id);
203
+
204
+ if ( attachment.type && attachment.type === 'image' ) {
205
+ // image preview
206
+ uploadStatus = '<div class="img_status"><img style="max-width: 350px; width: 100%; height: auto;" src="' + attachment.url + '" alt="'+ attachment.filename +'" title="'+ attachment.filename +'" /><p><a href="#" class="cmb_remove_file_button" rel="' + cmb.formfield + '">'+ l10n.remove_image +'</a></p></div>';
207
+ } else {
208
+ // Standard generic output if it's not an image.
209
+ uploadStatus = l10n.file +' <strong>'+ attachment.filename +'</strong>&nbsp;&nbsp;&nbsp; (<a href="'+ attachment.url +'" target="_blank" rel="external">'+ l10n.download +'</a> / <a href="#" class="cmb_remove_file_button" rel="'+ cmb.formfield +'">'+ l10n.remove_file +'</a>)';
210
+ }
211
+
212
+ // add/display our output
213
+ $formfield.siblings('.cmb_media_status').slideDown().html(uploadStatus);
214
+ }
215
+ };
216
+
217
+ // When an file is selected, run a callback.
218
+ cmb.file_frames[cmb.formfield].on( 'select', function() {
219
+ var selection = cmb.file_frames[cmb.formfield].state().get('selection');
220
+ var type = isList ? 'list' : 'single';
221
+ handlers[type]( selection );
222
+ });
223
+
224
+ // Finally, open the modal
225
+ cmb.file_frames[cmb.formfield].open();
226
+ };
227
+
228
+ cmb.handleRemoveMedia = function( event ) {
229
+ event.preventDefault();
230
+ var $self = $(this);
231
+ if ( $self.is( '.attach_list .cmb_remove_file_button' ) ){
232
+ $self.parents('li').remove();
233
+ return false;
234
+ }
235
+ cmb.formfield = $self.attr('rel');
236
+ var $container = $self.parents('.img_status');
237
+
238
+ cmb.metabox().find('input#' + cmb.formfield).val('');
239
+ cmb.metabox().find('input#' + cmb.formfield + '_id').val('');
240
+ if ( ! $container.length ) {
241
+ $self.parents('.cmb_media_status').html('');
242
+ } else {
243
+ $container.html('');
244
+ }
245
+ return false;
246
+ };
247
+
248
+ // src: http://www.benalman.com/projects/jquery-replacetext-plugin/
249
+ $.fn.replaceText = function(b, a, c) {
250
+ return this.each(function() {
251
+ var f = this.firstChild, g, e, d = [];
252
+ if (f) {
253
+ do {
254
+ if (f.nodeType === 3) {
255
+ g = f.nodeValue;
256
+ e = g.replace(b, a);
257
+ if (e !== g) {
258
+ if (!c && /</.test(e)) {
259
+ $(f).before(e);
260
+ d.push(f);
261
+ } else {
262
+ f.nodeValue = e;
263
+ }
264
+ }
265
+ }
266
+ } while (f = f.nextSibling);
267
+ }
268
+ if ( d.length ) { $(d).remove(); }
269
+ });
270
+ };
271
+
272
+ $.fn.cleanRow = function( prevNum, group ) {
273
+ var $self = $(this);
274
+ var $inputs = $self.find('input:not([type="button"]), select, textarea, label');
275
+ if ( group ) {
276
+ // Remove extra ajaxed rows
277
+ $self.find('.cmb-repeat-table .repeat-row:not(:first-child)').remove();
278
+ }
279
+ cmb.$focus = false;
280
+ cmb.neweditor_id = [];
281
+
282
+ $inputs.filter(':checked').removeAttr( 'checked' );
283
+ $inputs.filter(':selected').removeAttr( 'selected' );
284
+
285
+ if ( $self.find('.cmb-group-title') ) {
286
+ $self.find( '.cmb-group-title h4' ).text( $self.data( 'title' ).replace( '{#}', ( cmb.idNumber + 1 ) ) );
287
+ }
288
+
289
+ $inputs.each( function(){
290
+ var $newInput = $(this);
291
+ var isEditor = $newInput.hasClass( 'wp-editor-area' );
292
+ var oldFor = $newInput.attr( 'for' );
293
+ // var $next = $newInput.next();
294
+ var attrs = {};
295
+ var newID, oldID;
296
+ if ( oldFor ) {
297
+ attrs = { 'for' : oldFor.replace( '_'+ prevNum, '_'+ cmb.idNumber ) };
298
+ } else {
299
+ var oldName = $newInput.attr( 'name' );
300
+ // Replace 'name' attribute key
301
+ var newName = oldName ? oldName.replace( '['+ prevNum +']', '['+ cmb.idNumber +']' ) : '';
302
+ oldID = $newInput.attr( 'id' );
303
+ newID = oldID ? oldID.replace( '_'+ prevNum, '_'+ cmb.idNumber ) : '';
304
+ attrs = {
305
+ id: newID,
306
+ name: newName,
307
+ // value: '',
308
+ 'data-iterator': cmb.idNumber,
309
+ };
310
+ }
311
+
312
+ $newInput
313
+ .removeClass( 'hasDatepicker' )
314
+ .attr( attrs ).val('');
315
+
316
+ // wysiwyg field
317
+ if ( isEditor ) {
318
+ // Get new wysiwyg ID
319
+ newID = newID ? oldID.replace( 'zx'+ prevNum, 'zx'+ cmb.idNumber ) : '';
320
+ // Empty the contents
321
+ $newInput.html('');
322
+ // Get wysiwyg field
323
+ var $wysiwyg = $newInput.parents( '.cmb-type-wysiwyg' );
324
+ // Remove extra mce divs
325
+ $wysiwyg.find('.mce-tinymce:not(:first-child)').remove();
326
+ // Replace id instances
327
+ var html = $wysiwyg.html().replace( new RegExp( oldID, 'g' ), newID );
328
+ // Update field html
329
+ $wysiwyg.html( html );
330
+ // Save ids for later to re-init tinymce
331
+ cmb.neweditor_id.push( { 'id': newID, 'old': oldID } );
332
+ }
333
+
334
+ cmb.$focus = cmb.$focus ? cmb.$focus : $newInput;
335
+ });
336
+
337
+ return this;
338
+ };
339
+
340
+ $.fn.newRowHousekeeping = function() {
341
+ var $row = $(this);
342
+ var $colorPicker = $row.find( '.wp-picker-container' );
343
+ var $list = $row.find( '.cmb_media_status' );
344
+
345
+ if ( $colorPicker.length ) {
346
+ // Need to clean-up colorpicker before appending
347
+ $colorPicker.each( function() {
348
+ var $td = $(this).parent();
349
+ $td.html( $td.find( 'input:text.cmb_colorpicker' ).attr('style', '') );
350
+ });
351
+ }
352
+
353
+ // Need to clean-up colorpicker before appending
354
+ if ( $list.length ) {
355
+ $list.empty();
356
+ }
357
+
358
+ return this;
359
+ };
360
+
361
+ cmb.afterRowInsert = function( $row ) {
362
+ if ( cmb.$focus ) {
363
+ cmb.$focus.focus();
364
+ }
365
+
366
+ var _prop;
367
+
368
+ // Need to re-init wp_editor instances
369
+ if ( cmb.neweditor_id.length ) {
370
+ var i;
371
+ for ( i = cmb.neweditor_id.length - 1; i >= 0; i-- ) {
372
+ var id = cmb.neweditor_id[i].id;
373
+ var old = cmb.neweditor_id[i].old;
374
+
375
+ if ( typeof( tinyMCEPreInit.mceInit[ id ] ) === 'undefined' ) {
376
+ var newSettings = jQuery.extend( {}, tinyMCEPreInit.mceInit[ old ] );
377
+
378
+ for ( _prop in newSettings ) {
379
+ if ( 'string' === typeof( newSettings[_prop] ) ) {
380
+ newSettings[_prop] = newSettings[_prop].replace( new RegExp( old, 'g' ), id );
381
+ }
382
+ }
383
+ tinyMCEPreInit.mceInit[ id ] = newSettings;
384
+ }
385
+ if ( typeof( tinyMCEPreInit.qtInit[ id ] ) === 'undefined' ) {
386
+ var newQTS = jQuery.extend( {}, tinyMCEPreInit.qtInit[ old ] );
387
+ for ( _prop in newQTS ) {
388
+ if ( 'string' === typeof( newQTS[_prop] ) ) {
389
+ newQTS[_prop] = newQTS[_prop].replace( new RegExp( old, 'g' ), id );
390
+ }
391
+ }
392
+ tinyMCEPreInit.qtInit[ id ] = newQTS;
393
+ }
394
+ tinyMCE.init({
395
+ id : tinyMCEPreInit.mceInit[ id ],
396
+ });
397
+
398
+ }
399
+ }
400
+
401
+ // Init pickers from new row
402
+ cmb.initPickers( $row.find('input:text.cmb_timepicker'), $row.find('input:text.cmb_datepicker'), $row.find('input:text.cmb_colorpicker') );
403
+ };
404
+
405
+ cmb.updateNameAttr = function () {
406
+
407
+ var $this = $(this);
408
+ var name = $this.attr( 'name' ); // get current name
409
+
410
+ // No name? bail
411
+ if ( typeof name === 'undefined' ) {
412
+ return false;
413
+ }
414
+
415
+ var prevNum = parseInt( $this.parents( '.repeatable-grouping' ).data( 'iterator' ) );
416
+ var newNum = prevNum - 1; // Subtract 1 to get new iterator number
417
+
418
+ // Update field name attributes so data is not orphaned when a row is removed and post is saved
419
+ var $newName = name.replace( '[' + prevNum + ']', '[' + newNum + ']' );
420
+
421
+ // New name with replaced iterator
422
+ $this.attr( 'name', $newName );
423
+
424
+ };
425
+
426
+ cmb.emptyValue = function( event, row ) {
427
+ $('input:not([type="button"]), textarea', row).val('');
428
+ };
429
+
430
+ cmb.addGroupRow = function( event ) {
431
+
432
+ event.preventDefault();
433
+
434
+ var $self = $(this);
435
+ var $table = $('#'+ $self.data('selector'));
436
+ var $oldRow = $table.find('.repeatable-grouping').last();
437
+ var prevNum = parseInt( $oldRow.data('iterator') );
438
+ cmb.idNumber = prevNum + 1;
439
+ var $row = $oldRow.clone();
440
+
441
+ $row.data( 'title', $self.data( 'grouptitle' ) ).newRowHousekeeping().cleanRow( prevNum, true );
442
+
443
+ // console.log( '$row.html()', $row.html() );
444
+ var $newRow = $( '<tr class="repeatable-grouping" data-iterator="'+ cmb.idNumber +'">'+ $row.html() +'</tr>' );
445
+ $oldRow.after( $newRow );
446
+ // console.log( '$newRow.html()', $row.html() );
447
+
448
+ cmb.afterRowInsert( $newRow );
449
+
450
+ if ( $table.find('.repeatable-grouping').length <= 1 ) {
451
+ $table.find('.remove-group-row').prop('disabled', true);
452
+ } else {
453
+ $table.find('.remove-group-row').removeAttr( 'disabled' );
454
+ }
455
+
456
+ $table.trigger( 'cmb_add_row', $newRow );
457
+ };
458
+
459
+ cmb.addAjaxRow = function( event ) {
460
+
461
+ event.preventDefault();
462
+
463
+ var $self = $(this);
464
+ var tableselector = '#'+ $self.data('selector');
465
+ var $table = $(tableselector);
466
+ var $emptyrow = $table.find('.empty-row');
467
+ var prevNum = parseInt( $emptyrow.find('[data-iterator]').data('iterator') );
468
+ cmb.idNumber = prevNum + 1;
469
+ var $row = $emptyrow.clone();
470
+
471
+ $row.newRowHousekeeping().cleanRow( prevNum );
472
+
473
+ $emptyrow.removeClass('empty-row').addClass('repeat-row');
474
+ $emptyrow.after( $row );
475
+
476
+ cmb.afterRowInsert( $row );
477
+ $table.trigger( 'cmb_add_row', $row );
478
+ };
479
+
480
+ cmb.removeGroupRow = function( event ) {
481
+ event.preventDefault();
482
+ var $self = $(this);
483
+ var $table = $('#'+ $self.data('selector'));
484
+ var $parent = $self.parents('.repeatable-grouping');
485
+ var noRows = $table.find('.repeatable-grouping').length;
486
+
487
+ // when a group is removed loop through all next groups and update fields names
488
+ $parent.nextAll( '.repeatable-grouping' ).find( cmb.repeatEls ).each( cmb.updateNameAttr );
489
+
490
+ if ( noRows > 1 ) {
491
+ $parent.remove();
492
+ if ( noRows < 3 ) {
493
+ $table.find('.remove-group-row').prop('disabled', true);
494
+ } else {
495
+ $table.find('.remove-group-row').prop('disabled', false);
496
+ }
497
+ $table.trigger( 'cmb_remove_row' );
498
+ }
499
+ };
500
+
501
+ cmb.removeAjaxRow = function( event ) {
502
+ event.preventDefault();
503
+ var $self = $(this);
504
+ var $parent = $self.parents('tr');
505
+ var $table = $self.parents('.cmb-repeat-table');
506
+
507
+ // cmb.log( 'number of tbodys', $table.length );
508
+ // cmb.log( 'number of trs', $('tr', $table).length );
509
+ if ( $table.find('tr').length > 1 ) {
510
+ if ( $parent.hasClass('empty-row') ) {
511
+ $parent.prev().addClass( 'empty-row' ).removeClass('repeat-row');
512
+ }
513
+ $self.parents('.cmb-repeat-table tr').remove();
514
+ $table.trigger( 'cmb_remove_row' );
515
+ }
516
+ };
517
+
518
+ cmb.shiftRows = function( event ) {
519
+
520
+ event.preventDefault();
521
+
522
+ var $self = $(this);
523
+ var $parent = $self.parents( '.repeatable-grouping' );
524
+ var $goto = $self.hasClass( 'move-up' ) ? $parent.prev( '.repeatable-grouping' ) : $parent.next( '.repeatable-grouping' );
525
+
526
+ if ( ! $goto.length ) {
527
+ return;
528
+ }
529
+
530
+ var inputVals = [];
531
+ // Loop this items fields
532
+ $parent.find( cmb.repeatEls ).each( function() {
533
+ var $element = $(this);
534
+ var val;
535
+ if ( $element.hasClass('cmb_media_status') ) {
536
+ // special case for image previews
537
+ val = $element.html();
538
+ } else if ( 'checkbox' === $element.attr('type') ) {
539
+ val = $element.is(':checked');
540
+ cmb.log( 'checked', val );
541
+ } else if ( 'select' === $element.prop('tagName') ) {
542
+ val = $element.is(':selected');
543
+ cmb.log( 'checked', val );
544
+ } else {
545
+ val = $element.val();
546
+ }
547
+ // Get all the current values per element
548
+ inputVals.push( { val: val, $: $element } );
549
+ });
550
+ // And swap them all
551
+ $goto.find( cmb.repeatEls ).each( function( index ) {
552
+ var $element = $(this);
553
+ var val;
554
+
555
+ if ( $element.hasClass('cmb_media_status') ) {
556
+ // special case for image previews
557
+ val = $element.html();
558
+ $element.html( inputVals[ index ]['val'] );
559
+ inputVals[ index ]['$'].html( val );
560
+
561
+ }
562
+ // handle checkbox swapping
563
+ else if ( 'checkbox' === $element.attr('type') ) {
564
+ inputVals[ index ]['$'].prop( 'checked', $element.is(':checked') );
565
+ $element.prop( 'checked', inputVals[ index ]['val'] );
566
+ }
567
+ // handle select swapping
568
+ else if ( 'select' === $element.prop('tagName') ) {
569
+ inputVals[ index ]['$'].prop( 'selected', $element.is(':selected') );
570
+ $element.prop( 'selected', inputVals[ index ]['val'] );
571
+ }
572
+ // handle normal input swapping
573
+ else {
574
+ inputVals[ index ]['$'].val( $element.val() );
575
+ $element.val( inputVals[ index ]['val'] );
576
+ }
577
+ });
578
+ };
579
+
580
+ /**
581
+ * @todo make work, always
582
+ */
583
+ cmb.initPickers = function( $timePickers, $datePickers, $colorPickers ) {
584
+ // Initialize timepicker
585
+ cmb.initTimePickers( $timePickers );
586
+
587
+ // Initialize jQuery UI datepicker
588
+ cmb.initDatePickers( $datePickers );
589
+
590
+ // Initialize color picker
591
+ cmb.initColorPickers( $colorPickers );
592
+ };
593
+
594
+ cmb.initTimePickers = function( $selector ) {
595
+ if ( ! $selector.length ) {
596
+ return;
597
+ }
598
+
599
+ $selector.timePicker({
600
+ startTime: "00:00",
601
+ endTime: "23:59",
602
+ show24Hours: false,
603
+ separator: ':',
604
+ step: 30
605
+ });
606
+ };
607
+
608
+ cmb.initDatePickers = function( $selector ) {
609
+ if ( ! $selector.length ) {
610
+ return;
611
+ }
612
+
613
+ $selector.datepicker( "destroy" );
614
+ $selector.datepicker();
615
+ };
616
+
617
+ cmb.initColorPickers = function( $selector ) {
618
+ if ( ! $selector.length ) {
619
+ return;
620
+ }
621
+ if (typeof jQuery.wp === 'object' && typeof jQuery.wp.wpColorPicker === 'function') {
622
+
623
+ $selector.wpColorPicker();
624
+
625
+ } else {
626
+ $selector.each( function(i) {
627
+ $(this).after('<div id="picker-' + i + '" style="z-index: 1000; background: #EEE; border: 1px solid #CCC; position: absolute; display: block;"></div>');
628
+ $('#picker-' + i).hide().farbtastic($(this));
629
+ })
630
+ .focus( function() {
631
+ $(this).next().show();
632
+ })
633
+ .blur( function() {
634
+ $(this).next().hide();
635
+ });
636
+ }
637
+ };
638
+
639
+ cmb.maybeOembed = function( evt ) {
640
+ var $self = $(this);
641
+ var type = evt.type;
642
+
643
+ var m = {
644
+ focusout : function() {
645
+ setTimeout( function() {
646
+ // if it's been 2 seconds, hide our spinner
647
+ cmb.spinner( '.postbox table.cmb_metabox', true );
648
+ }, 2000);
649
+ },
650
+ keyup : function() {
651
+ var betw = function( min, max ) {
652
+ return ( evt.which <= max && evt.which >= min );
653
+ };
654
+ // Only Ajax on normal keystrokes
655
+ if ( betw( 48, 90 ) || betw( 96, 111 ) || betw( 8, 9 ) || evt.which === 187 || evt.which === 190 ) {
656
+ // fire our ajax function
657
+ cmb.doAjax( $self, evt);
658
+ }
659
+ },
660
+ paste : function() {
661
+ // paste event is fired before the value is filled, so wait a bit
662
+ setTimeout( function() { cmb.doAjax( $self ); }, 100);
663
+ }
664
+ };
665
+ m[type]();
666
+
667
+ };
668
+
669
+ /**
670
+ * Resize oEmbed videos to fit in their respective metaboxes
671
+ */
672
+ cmb.resizeoEmbeds = function() {
673
+ cmb.metabox().each( function() {
674
+ var $self = $(this);
675
+ var $tableWrap = $self.parents('.inside');
676
+ if ( ! $tableWrap.length ) {
677
+ return true; // continue
678
+ }
679
+
680
+ // Calculate new width
681
+ var newWidth = Math.round(($tableWrap.width() * 0.82)*0.97) - 30;
682
+ if ( newWidth > 639 ) {
683
+ return true; // continue
684
+ }
685
+
686
+ var $embeds = $self.find('.cmb-type-oembed .embed_status');
687
+ var $children = $embeds.children().not('.cmb_remove_wrapper');
688
+ if ( ! $children.length ) {
689
+ return true; // continue
690
+ }
691
+
692
+ $children.each( function() {
693
+ var $self = $(this);
694
+ var iwidth = $self.width();
695
+ var iheight = $self.height();
696
+ var _newWidth = newWidth;
697
+ if ( $self.parents( '.repeat-row' ).length ) {
698
+ // Make room for our repeatable "remove" button column
699
+ _newWidth = newWidth - 91;
700
+ }
701
+ // Calc new height
702
+ var newHeight = Math.round((_newWidth * iheight)/iwidth);
703
+ $self.width(_newWidth).height(newHeight);
704
+ });
705
+
706
+ });
707
+ };
708
+
709
+ /**
710
+ * Safely log things if query var is set
711
+ * @since 1.0.0
712
+ */
713
+ cmb.log = function() {
714
+ if ( l10n.script_debug && console && typeof console.log === 'function' ) {
715
+ console.log.apply(console, arguments);
716
+ }
717
+ };
718
+
719
+ cmb.spinner = function( $context, hide ) {
720
+ if ( hide ) {
721
+ $('.cmb-spinner', $context ).hide();
722
+ }
723
+ else {
724
+ $('.cmb-spinner', $context ).show();
725
+ }
726
+ };
727
+
728
+ // function for running our ajax
729
+ cmb.doAjax = function($obj) {
730
+ // get typed value
731
+ var oembed_url = $obj.val();
732
+ // only proceed if the field contains more than 6 characters
733
+ if ( oembed_url.length < 6 ) {
734
+ return;
735
+ }
736
+
737
+ // only proceed if the user has pasted, pressed a number, letter, or whitelisted characters
738
+
739
+ // get field id
740
+ var field_id = $obj.attr('id');
741
+ // get our inputs $context for pinpointing
742
+ var $context = $obj.parents('.cmb-repeat-table tr td');
743
+ $context = $context.length ? $context : $obj.parents('.cmb_metabox tr td');
744
+
745
+ var embed_container = $('.embed_status', $context);
746
+ var oembed_width = $obj.width();
747
+ var child_el = $(':first-child', embed_container);
748
+
749
+ // http://www.youtube.com/watch?v=dGG7aru2S6U
750
+ cmb.log( 'oembed_url', oembed_url, field_id );
751
+ oembed_width = ( embed_container.length && child_el.length ) ? child_el.width() : $obj.width();
752
+
753
+ // show our spinner
754
+ cmb.spinner( $context );
755
+ // clear out previous results
756
+ $('.embed_wrap', $context).html('');
757
+ // and run our ajax function
758
+ setTimeout( function() {
759
+ // if they haven't typed in 500 ms
760
+ if ( $('.cmb_oembed:focus').val() !== oembed_url ) {
761
+ return;
762
+ }
763
+ $.ajax({
764
+ type : 'post',
765
+ dataType : 'json',
766
+ url : l10n.ajaxurl,
767
+ data : {
768
+ 'action': 'cmb_oembed_handler',
769
+ 'oembed_url': oembed_url,
770
+ 'oembed_width': oembed_width > 300 ? oembed_width : 300,
771
+ 'field_id': field_id,
772
+ 'object_id': $obj.data('objectid'),
773
+ 'object_type': $obj.data('objecttype'),
774
+ 'cmb_ajax_nonce': l10n.ajax_nonce
775
+ },
776
+ success: function(response) {
777
+ cmb.log( response );
778
+ // Make sure we have a response id
779
+ if ( typeof response.id === 'undefined' ) {
780
+ return;
781
+ }
782
+
783
+ // hide our spinner
784
+ cmb.spinner( $context, true );
785
+ // and populate our results from ajax response
786
+ $('.embed_wrap', $context).html(response.result);
787
+ }
788
+ });
789
+
790
+ }, 500);
791
+ };
792
+
793
+ $(document).ready(cmb.init);
794
+
795
+ return cmb;
796
+
797
+ })(window, document, jQuery);
cmb/js/cmb.min.js ADDED
@@ -0,0 +1 @@
 
1
+ window.CMB=function(window,document,$){"use strict";var l10n=window.cmb_l10,setTimeout=window.setTimeout,cmb={formfield:"",idNumber:!1,file_frames:{},repeatEls:'input:not([type="button"]),select,textarea,.cmb_media_status'};return cmb.metabox=function(){return cmb.$metabox?cmb.$metabox:(cmb.$metabox=$("table.cmb_metabox"),cmb.$metabox)},cmb.init=function(){var $metabox=cmb.metabox(),$repeatGroup=$metabox.find(".repeatable-group");l10n.new_admin_style&&$metabox.find(".cmb-spinner img").hide(),cmb.initPickers($metabox.find("input:text.cmb_timepicker"),$metabox.find("input:text.cmb_datepicker"),$metabox.find("input:text.cmb_colorpicker")),$("#ui-datepicker-div").wrap('<div class="cmb_element" />'),$('<p><span class="button cmb-multicheck-toggle">'+l10n.check_toggle+"</span></p>").insertBefore("ul.cmb_checkbox_list"),$metabox.on("change",".cmb_upload_file",function(){cmb.formfield=$(this).attr("id"),$("#"+cmb.formfield+"_id").val("")}).on("click",".cmb-multicheck-toggle",cmb.toggleCheckBoxes).on("click",".cmb_upload_button",cmb.handleMedia).on("click",".cmb_remove_file_button",cmb.handleRemoveMedia).on("click",".add-group-row",cmb.addGroupRow).on("click",".add-row-button",cmb.addAjaxRow).on("click",".remove-group-row",cmb.removeGroupRow).on("click",".remove-row-button",cmb.removeAjaxRow).on("keyup paste focusout",".cmb_oembed",cmb.maybeOembed).on("cmb_remove_row",".repeatable-group",cmb.resetTitlesAndIterator),$repeatGroup.length&&$repeatGroup.filter(".sortable").each(function(){$(this).find(".remove-group-row").before('<a class="shift-rows move-up alignleft" href="#">'+l10n.up_arrow+'</a> <a class="shift-rows move-down alignleft" href="#">'+l10n.down_arrow+"</a>")}).on("click",".shift-rows",cmb.shiftRows).on("cmb_add_row",cmb.emptyValue),setTimeout(cmb.resizeoEmbeds,500),$(window).on("resize",cmb.resizeoEmbeds)},cmb.resetTitlesAndIterator=function(){$(".repeatable-group").each(function(){var $table=$(this);$table.find(".repeatable-grouping").each(function(rowindex){var $row=$(this);$row.data("iterator",rowindex),$row.find(".cmb-group-title h4").text($table.find(".add-group-row").data("grouptitle").replace("{#}",rowindex+1))})})},cmb.toggleCheckBoxes=function(event){event.preventDefault();var $self=$(this),$multicheck=$self.parents("td").find("input[type=checkbox]");$self.data("checked")?($multicheck.prop("checked",!1),$self.data("checked",!1)):($multicheck.prop("checked",!0),$self.data("checked",!0))},cmb.handleMedia=function(event){if(wp){event.preventDefault();var $metabox=cmb.metabox(),$self=$(this);cmb.formfield=$self.prev("input").attr("id");var $formfield=$("#"+cmb.formfield),formName=$formfield.attr("name"),uploadStatus=!0,attachment=!0,isList=$self.hasClass("cmb_upload_list");if(cmb.formfield in cmb.file_frames)return void cmb.file_frames[cmb.formfield].open();cmb.file_frames[cmb.formfield]=wp.media.frames.file_frame=wp.media({title:$metabox.find("label[for="+cmb.formfield+"]").text(),button:{text:l10n.upload_file},multiple:isList?!0:!1});var handlers={list:function(selection){attachment=selection.toJSON(),$formfield.val(attachment.url),$("#"+cmb.formfield+"_id").val(attachment.id);var fileGroup=[];$(attachment).each(function(){uploadStatus=this.type&&"image"===this.type?'<li class="img_status"><img width="50" height="50" src="'+this.url+'" class="attachment-50x50" alt="'+this.filename+'"><p><a href="#" class="cmb_remove_file_button" rel="'+cmb.formfield+"["+this.id+']">'+l10n.remove_image+'</a></p><input type="hidden" id="filelist-'+this.id+'" name="'+formName+"["+this.id+']" value="'+this.url+'"></li>':"<li>"+l10n.file+" <strong>"+this.filename+'</strong>&nbsp;&nbsp;&nbsp; (<a href="'+this.url+'" target="_blank" rel="external">'+l10n.download+'</a> / <a href="#" class="cmb_remove_file_button" rel="'+cmb.formfield+"["+this.id+']">'+l10n.remove_file+'</a>)<input type="hidden" id="filelist-'+this.id+'" name="'+formName+"["+this.id+']" value="'+this.url+'"></li>',fileGroup.push(uploadStatus)}),$(fileGroup).each(function(){$formfield.siblings(".cmb_media_status").slideDown().append(this)})},single:function(selection){attachment=selection.first().toJSON(),$formfield.val(attachment.url),$("#"+cmb.formfield+"_id").val(attachment.id),uploadStatus=attachment.type&&"image"===attachment.type?'<div class="img_status"><img style="max-width: 350px; width: 100%; height: auto;" src="'+attachment.url+'" alt="'+attachment.filename+'" title="'+attachment.filename+'" /><p><a href="#" class="cmb_remove_file_button" rel="'+cmb.formfield+'">'+l10n.remove_image+"</a></p></div>":l10n.file+" <strong>"+attachment.filename+'</strong>&nbsp;&nbsp;&nbsp; (<a href="'+attachment.url+'" target="_blank" rel="external">'+l10n.download+'</a> / <a href="#" class="cmb_remove_file_button" rel="'+cmb.formfield+'">'+l10n.remove_file+"</a>)",$formfield.siblings(".cmb_media_status").slideDown().html(uploadStatus)}};cmb.file_frames[cmb.formfield].on("select",function(){var selection=cmb.file_frames[cmb.formfield].state().get("selection"),type=isList?"list":"single";handlers[type](selection)}),cmb.file_frames[cmb.formfield].open()}},cmb.handleRemoveMedia=function(event){event.preventDefault();var $self=$(this);if($self.is(".attach_list .cmb_remove_file_button"))return $self.parents("li").remove(),!1;cmb.formfield=$self.attr("rel");var $container=$self.parents(".img_status");return cmb.metabox().find("input#"+cmb.formfield).val(""),cmb.metabox().find("input#"+cmb.formfield+"_id").val(""),$container.length?$container.html(""):$self.parents(".cmb_media_status").html(""),!1},$.fn.replaceText=function(b,a,c){return this.each(function(){var g,e,f=this.firstChild,d=[];if(f)do 3===f.nodeType&&(g=f.nodeValue,e=g.replace(b,a),e!==g&&(!c&&/</.test(e)?($(f).before(e),d.push(f)):f.nodeValue=e));while(f=f.nextSibling);d.length&&$(d).remove()})},$.fn.cleanRow=function(prevNum,group){var $self=$(this),$inputs=$self.find('input:not([type="button"]), select, textarea, label');return group&&$self.find(".cmb-repeat-table .repeat-row:not(:first-child)").remove(),cmb.$focus=!1,cmb.neweditor_id=[],$inputs.filter(":checked").removeAttr("checked"),$inputs.filter(":selected").removeAttr("selected"),$self.find(".cmb-group-title")&&$self.find(".cmb-group-title h4").text($self.data("title").replace("{#}",cmb.idNumber+1)),$inputs.each(function(){var newID,oldID,$newInput=$(this),isEditor=$newInput.hasClass("wp-editor-area"),oldFor=$newInput.attr("for"),attrs={};if(oldFor)attrs={"for":oldFor.replace("_"+prevNum,"_"+cmb.idNumber)};else{var oldName=$newInput.attr("name"),newName=oldName?oldName.replace("["+prevNum+"]","["+cmb.idNumber+"]"):"";oldID=$newInput.attr("id"),newID=oldID?oldID.replace("_"+prevNum,"_"+cmb.idNumber):"",attrs={id:newID,name:newName,"data-iterator":cmb.idNumber}}if($newInput.removeClass("hasDatepicker").attr(attrs).val(""),isEditor){newID=newID?oldID.replace("zx"+prevNum,"zx"+cmb.idNumber):"",$newInput.html("");var $wysiwyg=$newInput.parents(".cmb-type-wysiwyg");$wysiwyg.find(".mce-tinymce:not(:first-child)").remove();var html=$wysiwyg.html().replace(new RegExp(oldID,"g"),newID);$wysiwyg.html(html),cmb.neweditor_id.push({id:newID,old:oldID})}cmb.$focus=cmb.$focus?cmb.$focus:$newInput}),this},$.fn.newRowHousekeeping=function(){var $row=$(this),$colorPicker=$row.find(".wp-picker-container"),$list=$row.find(".cmb_media_status");return $colorPicker.length&&$colorPicker.each(function(){var $td=$(this).parent();$td.html($td.find("input:text.cmb_colorpicker").attr("style",""))}),$list.length&&$list.empty(),this},cmb.afterRowInsert=function($row){cmb.$focus&&cmb.$focus.focus();var _prop;if(cmb.neweditor_id.length){var i;for(i=cmb.neweditor_id.length-1;i>=0;i--){var id=cmb.neweditor_id[i].id,old=cmb.neweditor_id[i].old;if("undefined"==typeof tinyMCEPreInit.mceInit[id]){var newSettings=jQuery.extend({},tinyMCEPreInit.mceInit[old]);for(_prop in newSettings)"string"==typeof newSettings[_prop]&&(newSettings[_prop]=newSettings[_prop].replace(new RegExp(old,"g"),id));tinyMCEPreInit.mceInit[id]=newSettings}if("undefined"==typeof tinyMCEPreInit.qtInit[id]){var newQTS=jQuery.extend({},tinyMCEPreInit.qtInit[old]);for(_prop in newQTS)"string"==typeof newQTS[_prop]&&(newQTS[_prop]=newQTS[_prop].replace(new RegExp(old,"g"),id));tinyMCEPreInit.qtInit[id]=newQTS}tinyMCE.init({id:tinyMCEPreInit.mceInit[id]})}}cmb.initPickers($row.find("input:text.cmb_timepicker"),$row.find("input:text.cmb_datepicker"),$row.find("input:text.cmb_colorpicker"))},cmb.updateNameAttr=function(){var $this=$(this),name=$this.attr("name");if("undefined"==typeof name)return!1;var prevNum=parseInt($this.parents(".repeatable-grouping").data("iterator")),newNum=prevNum-1,$newName=name.replace("["+prevNum+"]","["+newNum+"]");$this.attr("name",$newName)},cmb.emptyValue=function(event,row){$('input:not([type="button"]), textarea',row).val("")},cmb.addGroupRow=function(event){event.preventDefault();var $self=$(this),$table=$("#"+$self.data("selector")),$oldRow=$table.find(".repeatable-grouping").last(),prevNum=parseInt($oldRow.data("iterator"));cmb.idNumber=prevNum+1;var $row=$oldRow.clone();$row.data("title",$self.data("grouptitle")).newRowHousekeeping().cleanRow(prevNum,!0);var $newRow=$('<tr class="repeatable-grouping" data-iterator="'+cmb.idNumber+'">'+$row.html()+"</tr>");$oldRow.after($newRow),cmb.afterRowInsert($newRow),$table.find(".repeatable-grouping").length<=1?$table.find(".remove-group-row").prop("disabled",!0):$table.find(".remove-group-row").removeAttr("disabled"),$table.trigger("cmb_add_row",$newRow)},cmb.addAjaxRow=function(event){event.preventDefault();var $self=$(this),tableselector="#"+$self.data("selector"),$table=$(tableselector),$emptyrow=$table.find(".empty-row"),prevNum=parseInt($emptyrow.find("[data-iterator]").data("iterator"));cmb.idNumber=prevNum+1;var $row=$emptyrow.clone();$row.newRowHousekeeping().cleanRow(prevNum),$emptyrow.removeClass("empty-row").addClass("repeat-row"),$emptyrow.after($row),cmb.afterRowInsert($row),$table.trigger("cmb_add_row",$row)},cmb.removeGroupRow=function(event){event.preventDefault();var $self=$(this),$table=$("#"+$self.data("selector")),$parent=$self.parents(".repeatable-grouping"),noRows=$table.find(".repeatable-grouping").length;$parent.nextAll(".repeatable-grouping").find(cmb.repeatEls).each(cmb.updateNameAttr),noRows>1&&($parent.remove(),3>noRows?$table.find(".remove-group-row").prop("disabled",!0):$table.find(".remove-group-row").prop("disabled",!1),$table.trigger("cmb_remove_row"))},cmb.removeAjaxRow=function(event){event.preventDefault();var $self=$(this),$parent=$self.parents("tr"),$table=$self.parents(".cmb-repeat-table");$table.find("tr").length>1&&($parent.hasClass("empty-row")&&$parent.prev().addClass("empty-row").removeClass("repeat-row"),$self.parents(".cmb-repeat-table tr").remove(),$table.trigger("cmb_remove_row"))},cmb.shiftRows=function(event){event.preventDefault();var $self=$(this),$parent=$self.parents(".repeatable-grouping"),$goto=$self.hasClass("move-up")?$parent.prev(".repeatable-grouping"):$parent.next(".repeatable-grouping");if($goto.length){var inputVals=[];$parent.find(cmb.repeatEls).each(function(){var val,$element=$(this);$element.hasClass("cmb_media_status")?val=$element.html():"checkbox"===$element.attr("type")?(val=$element.is(":checked"),cmb.log("checked",val)):"select"===$element.prop("tagName")?(val=$element.is(":selected"),cmb.log("checked",val)):val=$element.val(),inputVals.push({val:val,$:$element})}),$goto.find(cmb.repeatEls).each(function(index){var val,$element=$(this);$element.hasClass("cmb_media_status")?(val=$element.html(),$element.html(inputVals[index].val),inputVals[index].$.html(val)):"checkbox"===$element.attr("type")?(inputVals[index].$.prop("checked",$element.is(":checked")),$element.prop("checked",inputVals[index].val)):"select"===$element.prop("tagName")?(inputVals[index].$.prop("selected",$element.is(":selected")),$element.prop("selected",inputVals[index].val)):(inputVals[index].$.val($element.val()),$element.val(inputVals[index].val))})}},cmb.initPickers=function($timePickers,$datePickers,$colorPickers){cmb.initTimePickers($timePickers),cmb.initDatePickers($datePickers),cmb.initColorPickers($colorPickers)},cmb.initTimePickers=function($selector){$selector.length&&$selector.timePicker({startTime:"00:00",endTime:"23:59",show24Hours:!1,separator:":",step:30})},cmb.initDatePickers=function($selector){$selector.length&&($selector.datepicker("destroy"),$selector.datepicker())},cmb.initColorPickers=function($selector){$selector.length&&("object"==typeof jQuery.wp&&"function"==typeof jQuery.wp.wpColorPicker?$selector.wpColorPicker():$selector.each(function(i){$(this).after('<div id="picker-'+i+'" style="z-index: 1000; background: #EEE; border: 1px solid #CCC; position: absolute; display: block;"></div>'),$("#picker-"+i).hide().farbtastic($(this))}).focus(function(){$(this).next().show()}).blur(function(){$(this).next().hide()}))},cmb.maybeOembed=function(evt){var $self=$(this),type=evt.type,m={focusout:function(){setTimeout(function(){cmb.spinner(".postbox table.cmb_metabox",!0)},2e3)},keyup:function(){var betw=function(min,max){return evt.which<=max&&evt.which>=min};(betw(48,90)||betw(96,111)||betw(8,9)||187===evt.which||190===evt.which)&&cmb.doAjax($self,evt)},paste:function(){setTimeout(function(){cmb.doAjax($self)},100)}};m[type]()},cmb.resizeoEmbeds=function(){cmb.metabox().each(function(){var $self=$(this),$tableWrap=$self.parents(".inside");if(!$tableWrap.length)return!0;var newWidth=Math.round(.82*$tableWrap.width()*.97)-30;if(newWidth>639)return!0;var $embeds=$self.find(".cmb-type-oembed .embed_status"),$children=$embeds.children().not(".cmb_remove_wrapper");return $children.length?void $children.each(function(){var $self=$(this),iwidth=$self.width(),iheight=$self.height(),_newWidth=newWidth;$self.parents(".repeat-row").length&&(_newWidth=newWidth-91);var newHeight=Math.round(_newWidth*iheight/iwidth);$self.width(_newWidth).height(newHeight)}):!0})},cmb.log=function(){l10n.script_debug&&console&&"function"==typeof console.log&&console.log.apply(console,arguments)},cmb.spinner=function($context,hide){hide?$(".cmb-spinner",$context).hide():$(".cmb-spinner",$context).show()},cmb.doAjax=function($obj){var oembed_url=$obj.val();if(!(oembed_url.length<6)){var field_id=$obj.attr("id"),$context=$obj.parents(".cmb-repeat-table tr td");$context=$context.length?$context:$obj.parents(".cmb_metabox tr td");var embed_container=$(".embed_status",$context),oembed_width=$obj.width(),child_el=$(":first-child",embed_container);cmb.log("oembed_url",oembed_url,field_id),oembed_width=embed_container.length&&child_el.length?child_el.width():$obj.width(),cmb.spinner($context),$(".embed_wrap",$context).html(""),setTimeout(function(){$(".cmb_oembed:focus").val()===oembed_url&&$.ajax({type:"post",dataType:"json",url:l10n.ajaxurl,data:{action:"cmb_oembed_handler",oembed_url:oembed_url,oembed_width:oembed_width>300?oembed_width:300,field_id:field_id,object_id:$obj.data("objectid"),object_type:$obj.data("objecttype"),cmb_ajax_nonce:l10n.ajax_nonce},success:function(response){cmb.log(response),"undefined"!=typeof response.id&&(cmb.spinner($context,!0),$(".embed_wrap",$context).html(response.result))}})},500)}},$(document).ready(cmb.init),cmb}(window,document,jQuery);
cmb/js/jquery.datePicker.min.js ADDED
@@ -0,0 +1,2038 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * jQuery UI Datepicker 1.10.4
3
+ * http://jqueryui.com
4
+ *
5
+ * Copyright 2014 jQuery Foundation and other contributors
6
+ * Released under the MIT license.
7
+ * http://jquery.org/license
8
+ *
9
+ * http://api.jqueryui.com/datepicker/
10
+ *
11
+ * Depends:
12
+ * jquery.ui.core.js
13
+ */
14
+ (function( $, undefined ) {
15
+
16
+ $.extend($.ui, { datepicker: { version: "1.10.4" } });
17
+
18
+ var PROP_NAME = "datepicker",
19
+ instActive;
20
+
21
+ /* Date picker manager.
22
+ Use the singleton instance of this class, $.datepicker, to interact with the date picker.
23
+ Settings for (groups of) date pickers are maintained in an instance object,
24
+ allowing multiple different settings on the same page. */
25
+
26
+ function Datepicker() {
27
+ this._curInst = null; // The current instance in use
28
+ this._keyEvent = false; // If the last event was a key event
29
+ this._disabledInputs = []; // List of date picker inputs that have been disabled
30
+ this._datepickerShowing = false; // True if the popup picker is showing , false if not
31
+ this._inDialog = false; // True if showing within a "dialog", false if not
32
+ this._mainDivId = "ui-datepicker-div"; // The ID of the main datepicker division
33
+ this._inlineClass = "ui-datepicker-inline"; // The name of the inline marker class
34
+ this._appendClass = "ui-datepicker-append"; // The name of the append marker class
35
+ this._triggerClass = "ui-datepicker-trigger"; // The name of the trigger marker class
36
+ this._dialogClass = "ui-datepicker-dialog"; // The name of the dialog marker class
37
+ this._disableClass = "ui-datepicker-disabled"; // The name of the disabled covering marker class
38
+ this._unselectableClass = "ui-datepicker-unselectable"; // The name of the unselectable cell marker class
39
+ this._currentClass = "ui-datepicker-current-day"; // The name of the current day marker class
40
+ this._dayOverClass = "ui-datepicker-days-cell-over"; // The name of the day hover marker class
41
+ this.regional = []; // Available regional settings, indexed by language code
42
+ this.regional[""] = { // Default regional settings
43
+ closeText: "Done", // Display text for close link
44
+ prevText: "Prev", // Display text for previous month link
45
+ nextText: "Next", // Display text for next month link
46
+ currentText: "Today", // Display text for current month link
47
+ monthNames: ["January","February","March","April","May","June",
48
+ "July","August","September","October","November","December"], // Names of months for drop-down and formatting
49
+ monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], // For formatting
50
+ dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], // For formatting
51
+ dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], // For formatting
52
+ dayNamesMin: ["Su","Mo","Tu","We","Th","Fr","Sa"], // Column headings for days starting at Sunday
53
+ weekHeader: "Wk", // Column header for week of the year
54
+ dateFormat: "mm/dd/yy", // See format options on parseDate
55
+ firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ...
56
+ isRTL: false, // True if right-to-left language, false if left-to-right
57
+ showMonthAfterYear: false, // True if the year select precedes month, false for month then year
58
+ yearSuffix: "" // Additional text to append to the year in the month headers
59
+ };
60
+ this._defaults = { // Global defaults for all the date picker instances
61
+ showOn: "focus", // "focus" for popup on focus,
62
+ // "button" for trigger button, or "both" for either
63
+ showAnim: "fadeIn", // Name of jQuery animation for popup
64
+ showOptions: {}, // Options for enhanced animations
65
+ defaultDate: null, // Used when field is blank: actual date,
66
+ // +/-number for offset from today, null for today
67
+ appendText: "", // Display text following the input box, e.g. showing the format
68
+ buttonText: "...", // Text for trigger button
69
+ buttonImage: "", // URL for trigger button image
70
+ buttonImageOnly: false, // True if the image appears alone, false if it appears on a button
71
+ hideIfNoPrevNext: false, // True to hide next/previous month links
72
+ // if not applicable, false to just disable them
73
+ navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links
74
+ gotoCurrent: false, // True if today link goes back to current selection instead
75
+ changeMonth: false, // True if month can be selected directly, false if only prev/next
76
+ changeYear: false, // True if year can be selected directly, false if only prev/next
77
+ yearRange: "c-10:c+10", // Range of years to display in drop-down,
78
+ // either relative to today's year (-nn:+nn), relative to currently displayed year
79
+ // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n)
80
+ showOtherMonths: false, // True to show dates in other months, false to leave blank
81
+ selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable
82
+ showWeek: false, // True to show week of the year, false to not show it
83
+ calculateWeek: this.iso8601Week, // How to calculate the week of the year,
84
+ // takes a Date and returns the number of the week for it
85
+ shortYearCutoff: "+10", // Short year values < this are in the current century,
86
+ // > this are in the previous century,
87
+ // string value starting with "+" for current year + value
88
+ minDate: null, // The earliest selectable date, or null for no limit
89
+ maxDate: null, // The latest selectable date, or null for no limit
90
+ duration: "fast", // Duration of display/closure
91
+ beforeShowDay: null, // Function that takes a date and returns an array with
92
+ // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or "",
93
+ // [2] = cell title (optional), e.g. $.datepicker.noWeekends
94
+ beforeShow: null, // Function that takes an input field and
95
+ // returns a set of custom settings for the date picker
96
+ onSelect: null, // Define a callback function when a date is selected
97
+ onChangeMonthYear: null, // Define a callback function when the month or year is changed
98
+ onClose: null, // Define a callback function when the datepicker is closed
99
+ numberOfMonths: 1, // Number of months to show at a time
100
+ showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0)
101
+ stepMonths: 1, // Number of months to step back/forward
102
+ stepBigMonths: 12, // Number of months to step back/forward for the big links
103
+ altField: "", // Selector for an alternate field to store selected dates into
104
+ altFormat: "", // The date format to use for the alternate field
105
+ constrainInput: true, // The input is constrained by the current date format
106
+ showButtonPanel: false, // True to show button panel, false to not show it
107
+ autoSize: false, // True to size the input for the date format, false to leave as is
108
+ disabled: false // The initial disabled state
109
+ };
110
+ $.extend(this._defaults, this.regional[""]);
111
+ this.dpDiv = bindHover($("<div id='" + this._mainDivId + "' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>"));
112
+ }
113
+
114
+ $.extend(Datepicker.prototype, {
115
+ /* Class name added to elements to indicate already configured with a date picker. */
116
+ markerClassName: "hasDatepicker",
117
+
118
+ //Keep track of the maximum number of rows displayed (see #7043)
119
+ maxRows: 4,
120
+
121
+ // TODO rename to "widget" when switching to widget factory
122
+ _widgetDatepicker: function() {
123
+ return this.dpDiv;
124
+ },
125
+
126
+ /* Override the default settings for all instances of the date picker.
127
+ * @param settings object - the new settings to use as defaults (anonymous object)
128
+ * @return the manager object
129
+ */
130
+ setDefaults: function(settings) {
131
+ extendRemove(this._defaults, settings || {});
132
+ return this;
133
+ },
134
+
135
+ /* Attach the date picker to a jQuery selection.
136
+ * @param target element - the target input field or division or span
137
+ * @param settings object - the new settings to use for this date picker instance (anonymous)
138
+ */
139
+ _attachDatepicker: function(target, settings) {
140
+ var nodeName, inline, inst;
141
+ nodeName = target.nodeName.toLowerCase();
142
+ inline = (nodeName === "div" || nodeName === "span");
143
+ if (!target.id) {
144
+ this.uuid += 1;
145
+ target.id = "dp" + this.uuid;
146
+ }
147
+ inst = this._newInst($(target), inline);
148
+ inst.settings = $.extend({}, settings || {});
149
+ if (nodeName === "input") {
150
+ this._connectDatepicker(target, inst);
151
+ } else if (inline) {
152
+ this._inlineDatepicker(target, inst);
153
+ }
154
+ },
155
+
156
+ /* Create a new instance object. */
157
+ _newInst: function(target, inline) {
158
+ var id = target[0].id.replace(/([^A-Za-z0-9_\-])/g, "\\\\$1"); // escape jQuery meta chars
159
+ return {id: id, input: target, // associated target
160
+ selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection
161
+ drawMonth: 0, drawYear: 0, // month being drawn
162
+ inline: inline, // is datepicker inline or not
163
+ dpDiv: (!inline ? this.dpDiv : // presentation div
164
+ bindHover($("<div class='" + this._inlineClass + " ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")))};
165
+ },
166
+
167
+ /* Attach the date picker to an input field. */
168
+ _connectDatepicker: function(target, inst) {
169
+ var input = $(target);
170
+ inst.append = $([]);
171
+ inst.trigger = $([]);
172
+ if (input.hasClass(this.markerClassName)) {
173
+ return;
174
+ }
175
+ this._attachments(input, inst);
176
+ input.addClass(this.markerClassName).keydown(this._doKeyDown).
177
+ keypress(this._doKeyPress).keyup(this._doKeyUp);
178
+ this._autoSize(inst);
179
+ $.data(target, PROP_NAME, inst);
180
+ //If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665)
181
+ if( inst.settings.disabled ) {
182
+ this._disableDatepicker( target );
183
+ }
184
+ },
185
+
186
+ /* Make attachments based on settings. */
187
+ _attachments: function(input, inst) {
188
+ var showOn, buttonText, buttonImage,
189
+ appendText = this._get(inst, "appendText"),
190
+ isRTL = this._get(inst, "isRTL");
191
+
192
+ if (inst.append) {
193
+ inst.append.remove();
194
+ }
195
+ if (appendText) {
196
+ inst.append = $("<span class='" + this._appendClass + "'>" + appendText + "</span>");
197
+ input[isRTL ? "before" : "after"](inst.append);
198
+ }
199
+
200
+ input.unbind("focus", this._showDatepicker);
201
+
202
+ if (inst.trigger) {
203
+ inst.trigger.remove();
204
+ }
205
+
206
+ showOn = this._get(inst, "showOn");
207
+ if (showOn === "focus" || showOn === "both") { // pop-up date picker when in the marked field
208
+ input.focus(this._showDatepicker);
209
+ }
210
+ if (showOn === "button" || showOn === "both") { // pop-up date picker when button clicked
211
+ buttonText = this._get(inst, "buttonText");
212
+ buttonImage = this._get(inst, "buttonImage");
213
+ inst.trigger = $(this._get(inst, "buttonImageOnly") ?
214
+ $("<img/>").addClass(this._triggerClass).
215
+ attr({ src: buttonImage, alt: buttonText, title: buttonText }) :
216
+ $("<button type='button'></button>").addClass(this._triggerClass).
217
+ html(!buttonImage ? buttonText : $("<img/>").attr(
218
+ { src:buttonImage, alt:buttonText, title:buttonText })));
219
+ input[isRTL ? "before" : "after"](inst.trigger);
220
+ inst.trigger.click(function() {
221
+ if ($.datepicker._datepickerShowing && $.datepicker._lastInput === input[0]) {
222
+ $.datepicker._hideDatepicker();
223
+ } else if ($.datepicker._datepickerShowing && $.datepicker._lastInput !== input[0]) {
224
+ $.datepicker._hideDatepicker();
225
+ $.datepicker._showDatepicker(input[0]);
226
+ } else {
227
+ $.datepicker._showDatepicker(input[0]);
228
+ }
229
+ return false;
230
+ });
231
+ }
232
+ },
233
+
234
+ /* Apply the maximum length for the date format. */
235
+ _autoSize: function(inst) {
236
+ if (this._get(inst, "autoSize") && !inst.inline) {
237
+ var findMax, max, maxI, i,
238
+ date = new Date(2009, 12 - 1, 20), // Ensure double digits
239
+ dateFormat = this._get(inst, "dateFormat");
240
+
241
+ if (dateFormat.match(/[DM]/)) {
242
+ findMax = function(names) {
243
+ max = 0;
244
+ maxI = 0;
245
+ for (i = 0; i < names.length; i++) {
246
+ if (names[i].length > max) {
247
+ max = names[i].length;
248
+ maxI = i;
249
+ }
250
+ }
251
+ return maxI;
252
+ };
253
+ date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ?
254
+ "monthNames" : "monthNamesShort"))));
255
+ date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ?
256
+ "dayNames" : "dayNamesShort"))) + 20 - date.getDay());
257
+ }
258
+ inst.input.attr("size", this._formatDate(inst, date).length);
259
+ }
260
+ },
261
+
262
+ /* Attach an inline date picker to a div. */
263
+ _inlineDatepicker: function(target, inst) {
264
+ var divSpan = $(target);
265
+ if (divSpan.hasClass(this.markerClassName)) {
266
+ return;
267
+ }
268
+ divSpan.addClass(this.markerClassName).append(inst.dpDiv);
269
+ $.data(target, PROP_NAME, inst);
270
+ this._setDate(inst, this._getDefaultDate(inst), true);
271
+ this._updateDatepicker(inst);
272
+ this._updateAlternate(inst);
273
+ //If disabled option is true, disable the datepicker before showing it (see ticket #5665)
274
+ if( inst.settings.disabled ) {
275
+ this._disableDatepicker( target );
276
+ }
277
+ // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements
278
+ // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height
279
+ inst.dpDiv.css( "display", "block" );
280
+ },
281
+
282
+ /* Pop-up the date picker in a "dialog" box.
283
+ * @param input element - ignored
284
+ * @param date string or Date - the initial date to display
285
+ * @param onSelect function - the function to call when a date is selected
286
+ * @param settings object - update the dialog date picker instance's settings (anonymous object)
287
+ * @param pos int[2] - coordinates for the dialog's position within the screen or
288
+ * event - with x/y coordinates or
289
+ * leave empty for default (screen centre)
290
+ * @return the manager object
291
+ */
292
+ _dialogDatepicker: function(input, date, onSelect, settings, pos) {
293
+ var id, browserWidth, browserHeight, scrollX, scrollY,
294
+ inst = this._dialogInst; // internal instance
295
+
296
+ if (!inst) {
297
+ this.uuid += 1;
298
+ id = "dp" + this.uuid;
299
+ this._dialogInput = $("<input type='text' id='" + id +
300
+ "' style='position: absolute; top: -100px; width: 0px;'/>");
301
+ this._dialogInput.keydown(this._doKeyDown);
302
+ $("body").append(this._dialogInput);
303
+ inst = this._dialogInst = this._newInst(this._dialogInput, false);
304
+ inst.settings = {};
305
+ $.data(this._dialogInput[0], PROP_NAME, inst);
306
+ }
307
+ extendRemove(inst.settings, settings || {});
308
+ date = (date && date.constructor === Date ? this._formatDate(inst, date) : date);
309
+ this._dialogInput.val(date);
310
+
311
+ this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null);
312
+ if (!this._pos) {
313
+ browserWidth = document.documentElement.clientWidth;
314
+ browserHeight = document.documentElement.clientHeight;
315
+ scrollX = document.documentElement.scrollLeft || document.body.scrollLeft;
316
+ scrollY = document.documentElement.scrollTop || document.body.scrollTop;
317
+ this._pos = // should use actual width/height below
318
+ [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY];
319
+ }
320
+
321
+ // move input on screen for focus, but hidden behind dialog
322
+ this._dialogInput.css("left", (this._pos[0] + 20) + "px").css("top", this._pos[1] + "px");
323
+ inst.settings.onSelect = onSelect;
324
+ this._inDialog = true;
325
+ this.dpDiv.addClass(this._dialogClass);
326
+ this._showDatepicker(this._dialogInput[0]);
327
+ if ($.blockUI) {
328
+ $.blockUI(this.dpDiv);
329
+ }
330
+ $.data(this._dialogInput[0], PROP_NAME, inst);
331
+ return this;
332
+ },
333
+
334
+ /* Detach a datepicker from its control.
335
+ * @param target element - the target input field or division or span
336
+ */
337
+ _destroyDatepicker: function(target) {
338
+ var nodeName,
339
+ $target = $(target),
340
+ inst = $.data(target, PROP_NAME);
341
+
342
+ if (!$target.hasClass(this.markerClassName)) {
343
+ return;
344
+ }
345
+
346
+ nodeName = target.nodeName.toLowerCase();
347
+ $.removeData(target, PROP_NAME);
348
+ if (nodeName === "input") {
349
+ inst.append.remove();
350
+ inst.trigger.remove();
351
+ $target.removeClass(this.markerClassName).
352
+ unbind("focus", this._showDatepicker).
353
+ unbind("keydown", this._doKeyDown).
354
+ unbind("keypress", this._doKeyPress).
355
+ unbind("keyup", this._doKeyUp);
356
+ } else if (nodeName === "div" || nodeName === "span") {
357
+ $target.removeClass(this.markerClassName).empty();
358
+ }
359
+ },
360
+
361
+ /* Enable the date picker to a jQuery selection.
362
+ * @param target element - the target input field or division or span
363
+ */
364
+ _enableDatepicker: function(target) {
365
+ var nodeName, inline,
366
+ $target = $(target),
367
+ inst = $.data(target, PROP_NAME);
368
+
369
+ if (!$target.hasClass(this.markerClassName)) {
370
+ return;
371
+ }
372
+
373
+ nodeName = target.nodeName.toLowerCase();
374
+ if (nodeName === "input") {
375
+ target.disabled = false;
376
+ inst.trigger.filter("button").
377
+ each(function() { this.disabled = false; }).end().
378
+ filter("img").css({opacity: "1.0", cursor: ""});
379
+ } else if (nodeName === "div" || nodeName === "span") {
380
+ inline = $target.children("." + this._inlineClass);
381
+ inline.children().removeClass("ui-state-disabled");
382
+ inline.find("select.ui-datepicker-month, select.ui-datepicker-year").
383
+ prop("disabled", false);
384
+ }
385
+ this._disabledInputs = $.map(this._disabledInputs,
386
+ function(value) { return (value === target ? null : value); }); // delete entry
387
+ },
388
+
389
+ /* Disable the date picker to a jQuery selection.
390
+ * @param target element - the target input field or division or span
391
+ */
392
+ _disableDatepicker: function(target) {
393
+ var nodeName, inline,
394
+ $target = $(target),
395
+ inst = $.data(target, PROP_NAME);
396
+
397
+ if (!$target.hasClass(this.markerClassName)) {
398
+ return;
399
+ }
400
+
401
+ nodeName = target.nodeName.toLowerCase();
402
+ if (nodeName === "input") {
403
+ target.disabled = true;
404
+ inst.trigger.filter("button").
405
+ each(function() { this.disabled = true; }).end().
406
+ filter("img").css({opacity: "0.5", cursor: "default"});
407
+ } else if (nodeName === "div" || nodeName === "span") {
408
+ inline = $target.children("." + this._inlineClass);
409
+ inline.children().addClass("ui-state-disabled");
410
+ inline.find("select.ui-datepicker-month, select.ui-datepicker-year").
411
+ prop("disabled", true);
412
+ }
413
+ this._disabledInputs = $.map(this._disabledInputs,
414
+ function(value) { return (value === target ? null : value); }); // delete entry
415
+ this._disabledInputs[this._disabledInputs.length] = target;
416
+ },
417
+
418
+ /* Is the first field in a jQuery collection disabled as a datepicker?
419
+ * @param target element - the target input field or division or span
420
+ * @return boolean - true if disabled, false if enabled
421
+ */
422
+ _isDisabledDatepicker: function(target) {
423
+ if (!target) {
424
+ return false;
425
+ }
426
+ for (var i = 0; i < this._disabledInputs.length; i++) {
427
+ if (this._disabledInputs[i] === target) {
428
+ return true;
429
+ }
430
+ }
431
+ return false;
432
+ },
433
+
434
+ /* Retrieve the instance data for the target control.
435
+ * @param target element - the target input field or division or span
436
+ * @return object - the associated instance data
437
+ * @throws error if a jQuery problem getting data
438
+ */
439
+ _getInst: function(target) {
440
+ try {
441
+ return $.data(target, PROP_NAME);
442
+ }
443
+ catch (err) {
444
+ throw "Missing instance data for this datepicker";
445
+ }
446
+ },
447
+
448
+ /* Update or retrieve the settings for a date picker attached to an input field or division.
449
+ * @param target element - the target input field or division or span
450
+ * @param name object - the new settings to update or
451
+ * string - the name of the setting to change or retrieve,
452
+ * when retrieving also "all" for all instance settings or
453
+ * "defaults" for all global defaults
454
+ * @param value any - the new value for the setting
455
+ * (omit if above is an object or to retrieve a value)
456
+ */
457
+ _optionDatepicker: function(target, name, value) {
458
+ var settings, date, minDate, maxDate,
459
+ inst = this._getInst(target);
460
+
461
+ if (arguments.length === 2 && typeof name === "string") {
462
+ return (name === "defaults" ? $.extend({}, $.datepicker._defaults) :
463
+ (inst ? (name === "all" ? $.extend({}, inst.settings) :
464
+ this._get(inst, name)) : null));
465
+ }
466
+
467
+ settings = name || {};
468
+ if (typeof name === "string") {
469
+ settings = {};
470
+ settings[name] = value;
471
+ }
472
+
473
+ if (inst) {
474
+ if (this._curInst === inst) {
475
+ this._hideDatepicker();
476
+ }
477
+
478
+ date = this._getDateDatepicker(target, true);
479
+ minDate = this._getMinMaxDate(inst, "min");
480
+ maxDate = this._getMinMaxDate(inst, "max");
481
+ extendRemove(inst.settings, settings);
482
+ // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided
483
+ if (minDate !== null && settings.dateFormat !== undefined && settings.minDate === undefined) {
484
+ inst.settings.minDate = this._formatDate(inst, minDate);
485
+ }
486
+ if (maxDate !== null && settings.dateFormat !== undefined && settings.maxDate === undefined) {
487
+ inst.settings.maxDate = this._formatDate(inst, maxDate);
488
+ }
489
+ if ( "disabled" in settings ) {
490
+ if ( settings.disabled ) {
491
+ this._disableDatepicker(target);
492
+ } else {
493
+ this._enableDatepicker(target);
494
+ }
495
+ }
496
+ this._attachments($(target), inst);
497
+ this._autoSize(inst);
498
+ this._setDate(inst, date);
499
+ this._updateAlternate(inst);
500
+ this._updateDatepicker(inst);
501
+ }
502
+ },
503
+
504
+ // change method deprecated
505
+ _changeDatepicker: function(target, name, value) {
506
+ this._optionDatepicker(target, name, value);
507
+ },
508
+
509
+ /* Redraw the date picker attached to an input field or division.
510
+ * @param target element - the target input field or division or span
511
+ */
512
+ _refreshDatepicker: function(target) {
513
+ var inst = this._getInst(target);
514
+ if (inst) {
515
+ this._updateDatepicker(inst);
516
+ }
517
+ },
518
+
519
+ /* Set the dates for a jQuery selection.
520
+ * @param target element - the target input field or division or span
521
+ * @param date Date - the new date
522
+ */
523
+ _setDateDatepicker: function(target, date) {
524
+ var inst = this._getInst(target);
525
+ if (inst) {
526
+ this._setDate(inst, date);
527
+ this._updateDatepicker(inst);
528
+ this._updateAlternate(inst);
529
+ }
530
+ },
531
+
532
+ /* Get the date(s) for the first entry in a jQuery selection.
533
+ * @param target element - the target input field or division or span
534
+ * @param noDefault boolean - true if no default date is to be used
535
+ * @return Date - the current date
536
+ */
537
+ _getDateDatepicker: function(target, noDefault) {
538
+ var inst = this._getInst(target);
539
+ if (inst && !inst.inline) {
540
+ this._setDateFromField(inst, noDefault);
541
+ }
542
+ return (inst ? this._getDate(inst) : null);
543
+ },
544
+
545
+ /* Handle keystrokes. */
546
+ _doKeyDown: function(event) {
547
+ var onSelect, dateStr, sel,
548
+ inst = $.datepicker._getInst(event.target),
549
+ handled = true,
550
+ isRTL = inst.dpDiv.is(".ui-datepicker-rtl");
551
+
552
+ inst._keyEvent = true;
553
+ if ($.datepicker._datepickerShowing) {
554
+ switch (event.keyCode) {
555
+ case 9: $.datepicker._hideDatepicker();
556
+ handled = false;
557
+ break; // hide on tab out
558
+ case 13: sel = $("td." + $.datepicker._dayOverClass + ":not(." +
559
+ $.datepicker._currentClass + ")", inst.dpDiv);
560
+ if (sel[0]) {
561
+ $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]);
562
+ }
563
+
564
+ onSelect = $.datepicker._get(inst, "onSelect");
565
+ if (onSelect) {
566
+ dateStr = $.datepicker._formatDate(inst);
567
+
568
+ // trigger custom callback
569
+ onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]);
570
+ } else {
571
+ $.datepicker._hideDatepicker();
572
+ }
573
+
574
+ return false; // don't submit the form
575
+ case 27: $.datepicker._hideDatepicker();
576
+ break; // hide on escape
577
+ case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
578
+ -$.datepicker._get(inst, "stepBigMonths") :
579
+ -$.datepicker._get(inst, "stepMonths")), "M");
580
+ break; // previous month/year on page up/+ ctrl
581
+ case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
582
+ +$.datepicker._get(inst, "stepBigMonths") :
583
+ +$.datepicker._get(inst, "stepMonths")), "M");
584
+ break; // next month/year on page down/+ ctrl
585
+ case 35: if (event.ctrlKey || event.metaKey) {
586
+ $.datepicker._clearDate(event.target);
587
+ }
588
+ handled = event.ctrlKey || event.metaKey;
589
+ break; // clear on ctrl or command +end
590
+ case 36: if (event.ctrlKey || event.metaKey) {
591
+ $.datepicker._gotoToday(event.target);
592
+ }
593
+ handled = event.ctrlKey || event.metaKey;
594
+ break; // current on ctrl or command +home
595
+ case 37: if (event.ctrlKey || event.metaKey) {
596
+ $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), "D");
597
+ }
598
+ handled = event.ctrlKey || event.metaKey;
599
+ // -1 day on ctrl or command +left
600
+ if (event.originalEvent.altKey) {
601
+ $.datepicker._adjustDate(event.target, (event.ctrlKey ?
602
+ -$.datepicker._get(inst, "stepBigMonths") :
603
+ -$.datepicker._get(inst, "stepMonths")), "M");
604
+ }
605
+ // next month/year on alt +left on Mac
606
+ break;
607
+ case 38: if (event.ctrlKey || event.metaKey) {
608
+ $.datepicker._adjustDate(event.target, -7, "D");
609
+ }
610
+ handled = event.ctrlKey || event.metaKey;
611
+ break; // -1 week on ctrl or command +up
612
+ case 39: if (event.ctrlKey || event.metaKey) {
613
+ $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), "D");
614
+ }
615
+ handled = event.ctrlKey || event.metaKey;
616
+ // +1 day on ctrl or command +right
617
+ if (event.originalEvent.altKey) {
618
+ $.datepicker._adjustDate(event.target, (event.ctrlKey ?
619
+ +$.datepicker._get(inst, "stepBigMonths") :
620
+ +$.datepicker._get(inst, "stepMonths")), "M");
621
+ }
622
+ // next month/year on alt +right
623
+ break;
624
+ case 40: if (event.ctrlKey || event.metaKey) {
625
+ $.datepicker._adjustDate(event.target, +7, "D");
626
+ }
627
+ handled = event.ctrlKey || event.metaKey;
628
+ break; // +1 week on ctrl or command +down
629
+ default: handled = false;
630
+ }
631
+ } else if (event.keyCode === 36 && event.ctrlKey) { // display the date picker on ctrl+home
632
+ $.datepicker._showDatepicker(this);
633
+ } else {
634
+ handled = false;
635
+ }
636
+
637
+ if (handled) {
638
+ event.preventDefault();
639
+ event.stopPropagation();
640
+ }
641
+ },
642
+
643
+ /* Filter entered characters - based on date format. */
644
+ _doKeyPress: function(event) {
645
+ var chars, chr,
646
+ inst = $.datepicker._getInst(event.target);
647
+
648
+ if ($.datepicker._get(inst, "constrainInput")) {
649
+ chars = $.datepicker._possibleChars($.datepicker._get(inst, "dateFormat"));
650
+ chr = String.fromCharCode(event.charCode == null ? event.keyCode : event.charCode);
651
+ return event.ctrlKey || event.metaKey || (chr < " " || !chars || chars.indexOf(chr) > -1);
652
+ }
653
+ },
654
+
655
+ /* Synchronise manual entry and field/alternate field. */
656
+ _doKeyUp: function(event) {
657
+ var date,
658
+ inst = $.datepicker._getInst(event.target);
659
+
660
+ if (inst.input.val() !== inst.lastVal) {
661
+ try {
662
+ date = $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"),
663
+ (inst.input ? inst.input.val() : null),
664
+ $.datepicker._getFormatConfig(inst));
665
+
666
+ if (date) { // only if valid
667
+ $.datepicker._setDateFromField(inst);
668
+ $.datepicker._updateAlternate(inst);
669
+ $.datepicker._updateDatepicker(inst);
670
+ }
671
+ }
672
+ catch (err) {
673
+ }
674
+ }
675
+ return true;
676
+ },
677
+
678
+ /* Pop-up the date picker for a given input field.
679
+ * If false returned from beforeShow event handler do not show.
680
+ * @param input element - the input field attached to the date picker or
681
+ * event - if triggered by focus
682
+ */
683
+ _showDatepicker: function(input) {
684
+ input = input.target || input;
685
+ if (input.nodeName.toLowerCase() !== "input") { // find from button/image trigger
686
+ input = $("input", input.parentNode)[0];
687
+ }
688
+
689
+ if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput === input) { // already here
690
+ return;
691
+ }
692
+
693
+ var inst, beforeShow, beforeShowSettings, isFixed,
694
+ offset, showAnim, duration;
695
+
696
+ inst = $.datepicker._getInst(input);
697
+ if ($.datepicker._curInst && $.datepicker._curInst !== inst) {
698
+ $.datepicker._curInst.dpDiv.stop(true, true);
699
+ if ( inst && $.datepicker._datepickerShowing ) {
700
+ $.datepicker._hideDatepicker( $.datepicker._curInst.input[0] );
701
+ }
702
+ }
703
+
704
+ beforeShow = $.datepicker._get(inst, "beforeShow");
705
+ beforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {};
706
+ if(beforeShowSettings === false){
707
+ return;
708
+ }
709
+ extendRemove(inst.settings, beforeShowSettings);
710
+
711
+ inst.lastVal = null;
712
+ $.datepicker._lastInput = input;
713
+ $.datepicker._setDateFromField(inst);
714
+
715
+ if ($.datepicker._inDialog) { // hide cursor
716
+ input.value = "";
717
+ }
718
+ if (!$.datepicker._pos) { // position below input
719
+ $.datepicker._pos = $.datepicker._findPos(input);
720
+ $.datepicker._pos[1] += input.offsetHeight; // add the height
721
+ }
722
+
723
+ isFixed = false;
724
+ $(input).parents().each(function() {
725
+ isFixed |= $(this).css("position") === "fixed";
726
+ return !isFixed;
727
+ });
728
+
729
+ offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]};
730
+ $.datepicker._pos = null;
731
+ //to avoid flashes on Firefox
732
+ inst.dpDiv.empty();
733
+ // determine sizing offscreen
734
+ inst.dpDiv.css({position: "absolute", display: "block", top: "-1000px"});
735
+ $.datepicker._updateDatepicker(inst);
736
+ // fix width for dynamic number of date pickers
737
+ // and adjust position before showing
738
+ offset = $.datepicker._checkOffset(inst, offset, isFixed);
739
+ inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ?
740
+ "static" : (isFixed ? "fixed" : "absolute")), display: "none",
741
+ left: offset.left + "px", top: offset.top + "px"});
742
+
743
+ if (!inst.inline) {
744
+ showAnim = $.datepicker._get(inst, "showAnim");
745
+ duration = $.datepicker._get(inst, "duration");
746
+ inst.dpDiv.zIndex($(input).zIndex()+1);
747
+ $.datepicker._datepickerShowing = true;
748
+
749
+ if ( $.effects && $.effects.effect[ showAnim ] ) {
750
+ inst.dpDiv.show(showAnim, $.datepicker._get(inst, "showOptions"), duration);
751
+ } else {
752
+ inst.dpDiv[showAnim || "show"](showAnim ? duration : null);
753
+ }
754
+
755
+ if ( $.datepicker._shouldFocusInput( inst ) ) {
756
+ inst.input.focus();
757
+ }
758
+
759
+ $.datepicker._curInst = inst;
760
+ }
761
+ },
762
+
763
+ /* Generate the date picker content. */
764
+ _updateDatepicker: function(inst) {
765
+ this.maxRows = 4; //Reset the max number of rows being displayed (see #7043)
766
+ instActive = inst; // for delegate hover events
767
+ inst.dpDiv.empty().append(this._generateHTML(inst));
768
+ this._attachHandlers(inst);
769
+ inst.dpDiv.find("." + this._dayOverClass + " a").mouseover();
770
+
771
+ var origyearshtml,
772
+ numMonths = this._getNumberOfMonths(inst),
773
+ cols = numMonths[1],
774
+ width = 17;
775
+
776
+ inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");
777
+ if (cols > 1) {
778
+ inst.dpDiv.addClass("ui-datepicker-multi-" + cols).css("width", (width * cols) + "em");
779
+ }
780
+ inst.dpDiv[(numMonths[0] !== 1 || numMonths[1] !== 1 ? "add" : "remove") +
781
+ "Class"]("ui-datepicker-multi");
782
+ inst.dpDiv[(this._get(inst, "isRTL") ? "add" : "remove") +
783
+ "Class"]("ui-datepicker-rtl");
784
+
785
+ if (inst === $.datepicker._curInst && $.datepicker._datepickerShowing && $.datepicker._shouldFocusInput( inst ) ) {
786
+ inst.input.focus();
787
+ }
788
+
789
+ // deffered render of the years select (to avoid flashes on Firefox)
790
+ if( inst.yearshtml ){
791
+ origyearshtml = inst.yearshtml;
792
+ setTimeout(function(){
793
+ //assure that inst.yearshtml didn't change.
794
+ if( origyearshtml === inst.yearshtml && inst.yearshtml ){
795
+ inst.dpDiv.find("select.ui-datepicker-year:first").replaceWith(inst.yearshtml);
796
+ }
797
+ origyearshtml = inst.yearshtml = null;
798
+ }, 0);
799
+ }
800
+ },
801
+
802
+ // #6694 - don't focus the input if it's already focused
803
+ // this breaks the change event in IE
804
+ // Support: IE and jQuery <1.9
805
+ _shouldFocusInput: function( inst ) {
806
+ return inst.input && inst.input.is( ":visible" ) && !inst.input.is( ":disabled" ) && !inst.input.is( ":focus" );
807
+ },
808
+
809
+ /* Check positioning to remain on screen. */
810
+ _checkOffset: function(inst, offset, isFixed) {
811
+ var dpWidth = inst.dpDiv.outerWidth(),
812
+ dpHeight = inst.dpDiv.outerHeight(),
813
+ inputWidth = inst.input ? inst.input.outerWidth() : 0,
814
+ inputHeight = inst.input ? inst.input.outerHeight() : 0,
815
+ viewWidth = document.documentElement.clientWidth + (isFixed ? 0 : $(document).scrollLeft()),
816
+ viewHeight = document.documentElement.clientHeight + (isFixed ? 0 : $(document).scrollTop());
817
+
818
+ offset.left -= (this._get(inst, "isRTL") ? (dpWidth - inputWidth) : 0);
819
+ offset.left -= (isFixed && offset.left === inst.input.offset().left) ? $(document).scrollLeft() : 0;
820
+ offset.top -= (isFixed && offset.top === (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0;
821
+
822
+ // now check if datepicker is showing outside window viewport - move to a better place if so.
823
+ offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ?
824
+ Math.abs(offset.left + dpWidth - viewWidth) : 0);
825
+ offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ?
826
+ Math.abs(dpHeight + inputHeight) : 0);
827
+
828
+ return offset;
829
+ },
830
+
831
+ /* Find an object's position on the screen. */
832
+ _findPos: function(obj) {
833
+ var position,
834
+ inst = this._getInst(obj),
835
+ isRTL = this._get(inst, "isRTL");
836
+
837
+ while (obj && (obj.type === "hidden" || obj.nodeType !== 1 || $.expr.filters.hidden(obj))) {
838
+ obj = obj[isRTL ? "previousSibling" : "nextSibling"];
839
+ }
840
+
841
+ position = $(obj).offset();
842
+ return [position.left, position.top];
843
+ },
844
+
845
+ /* Hide the date picker from view.
846
+ * @param input element - the input field attached to the date picker
847
+ */
848
+ _hideDatepicker: function(input) {
849
+ var showAnim, duration, postProcess, onClose,
850
+ inst = this._curInst;
851
+
852
+ if (!inst || (input && inst !== $.data(input, PROP_NAME))) {
853
+ return;
854
+ }
855
+
856
+ if (this._datepickerShowing) {
857
+ showAnim = this._get(inst, "showAnim");
858
+ duration = this._get(inst, "duration");
859
+ postProcess = function() {
860
+ $.datepicker._tidyDialog(inst);
861
+ };
862
+
863
+ // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed
864
+ if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) {
865
+ inst.dpDiv.hide(showAnim, $.datepicker._get(inst, "showOptions"), duration, postProcess);
866
+ } else {
867
+ inst.dpDiv[(showAnim === "slideDown" ? "slideUp" :
868
+ (showAnim === "fadeIn" ? "fadeOut" : "hide"))]((showAnim ? duration : null), postProcess);
869
+ }
870
+
871
+ if (!showAnim) {
872
+ postProcess();
873
+ }
874
+ this._datepickerShowing = false;
875
+
876
+ onClose = this._get(inst, "onClose");
877
+ if (onClose) {
878
+ onClose.apply((inst.input ? inst.input[0] : null), [(inst.input ? inst.input.val() : ""), inst]);
879
+ }
880
+
881
+ this._lastInput = null;
882
+ if (this._inDialog) {
883
+ this._dialogInput.css({ position: "absolute", left: "0", top: "-100px" });
884
+ if ($.blockUI) {
885
+ $.unblockUI();
886
+ $("body").append(this.dpDiv);
887
+ }
888
+ }
889
+ this._inDialog = false;
890
+ }
891
+ },
892
+
893
+ /* Tidy up after a dialog display. */
894
+ _tidyDialog: function(inst) {
895
+ inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar");
896
+ },
897
+
898
+ /* Close date picker if clicked elsewhere. */
899
+ _checkExternalClick: function(event) {
900
+ if (!$.datepicker._curInst) {
901
+ return;
902
+ }
903
+
904
+ var $target = $(event.target),
905
+ inst = $.datepicker._getInst($target[0]);
906
+
907
+ if ( ( ( $target[0].id !== $.datepicker._mainDivId &&
908
+ $target.parents("#" + $.datepicker._mainDivId).length === 0 &&
909
+ !$target.hasClass($.datepicker.markerClassName) &&
910
+ !$target.closest("." + $.datepicker._triggerClass).length &&
911
+ $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI) ) ) ||
912
+ ( $target.hasClass($.datepicker.markerClassName) && $.datepicker._curInst !== inst ) ) {
913
+ $.datepicker._hideDatepicker();
914
+ }
915
+ },
916
+
917
+ /* Adjust one of the date sub-fields. */
918
+ _adjustDate: function(id, offset, period) {
919
+ var target = $(id),
920
+ inst = this._getInst(target[0]);
921
+
922
+ if (this._isDisabledDatepicker(target[0])) {
923
+ return;
924
+ }
925
+ this._adjustInstDate(inst, offset +
926
+ (period === "M" ? this._get(inst, "showCurrentAtPos") : 0), // undo positioning
927
+ period);
928
+ this._updateDatepicker(inst);
929
+ },
930
+
931
+ /* Action for current link. */
932
+ _gotoToday: function(id) {
933
+ var date,
934
+ target = $(id),
935
+ inst = this._getInst(target[0]);
936
+
937
+ if (this._get(inst, "gotoCurrent") && inst.currentDay) {
938
+ inst.selectedDay = inst.currentDay;
939
+ inst.drawMonth = inst.selectedMonth = inst.currentMonth;
940
+ inst.drawYear = inst.selectedYear = inst.currentYear;
941
+ } else {
942
+ date = new Date();
943
+ inst.selectedDay = date.getDate();
944
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
945
+ inst.drawYear = inst.selectedYear = date.getFullYear();
946
+ }
947
+ this._notifyChange(inst);
948
+ this._adjustDate(target);
949
+ },
950
+
951
+ /* Action for selecting a new month/year. */
952
+ _selectMonthYear: function(id, select, period) {
953
+ var target = $(id),
954
+ inst = this._getInst(target[0]);
955
+
956
+ inst["selected" + (period === "M" ? "Month" : "Year")] =
957
+ inst["draw" + (period === "M" ? "Month" : "Year")] =
958
+ parseInt(select.options[select.selectedIndex].value,10);
959
+
960
+ this._notifyChange(inst);
961
+ this._adjustDate(target);
962
+ },
963
+
964
+ /* Action for selecting a day. */
965
+ _selectDay: function(id, month, year, td) {
966
+ var inst,
967
+ target = $(id);
968
+
969
+ if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) {
970
+ return;
971
+ }
972
+
973
+ inst = this._getInst(target[0]);
974
+ inst.selectedDay = inst.currentDay = $("a", td).html();
975
+ inst.selectedMonth = inst.currentMonth = month;
976
+ inst.selectedYear = inst.currentYear = year;
977
+ this._selectDate(id, this._formatDate(inst,
978
+ inst.currentDay, inst.currentMonth, inst.currentYear));
979
+ },
980
+
981
+ /* Erase the input field and hide the date picker. */
982
+ _clearDate: function(id) {
983
+ var target = $(id);
984
+ this._selectDate(target, "");
985
+ },
986
+
987
+ /* Update the input field with the selected date. */
988
+ _selectDate: function(id, dateStr) {
989
+ var onSelect,
990
+ target = $(id),
991
+ inst = this._getInst(target[0]);
992
+
993
+ dateStr = (dateStr != null ? dateStr : this._formatDate(inst));
994
+ if (inst.input) {
995
+ inst.input.val(dateStr);
996
+ }
997
+ this._updateAlternate(inst);
998
+
999
+ onSelect = this._get(inst, "onSelect");
1000
+ if (onSelect) {
1001
+ onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback
1002
+ } else if (inst.input) {
1003
+ inst.input.trigger("change"); // fire the change event
1004
+ }
1005
+
1006
+ if (inst.inline){
1007
+ this._updateDatepicker(inst);
1008
+ } else {
1009
+ this._hideDatepicker();
1010
+ this._lastInput = inst.input[0];
1011
+ if (typeof(inst.input[0]) !== "object") {
1012
+ inst.input.focus(); // restore focus
1013
+ }
1014
+ this._lastInput = null;
1015
+ }
1016
+ },
1017
+
1018
+ /* Update any alternate field to synchronise with the main field. */
1019
+ _updateAlternate: function(inst) {
1020
+ var altFormat, date, dateStr,
1021
+ altField = this._get(inst, "altField");
1022
+
1023
+ if (altField) { // update alternate field too
1024
+ altFormat = this._get(inst, "altFormat") || this._get(inst, "dateFormat");
1025
+ date = this._getDate(inst);
1026
+ dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst));
1027
+ $(altField).each(function() { $(this).val(dateStr); });
1028
+ }
1029
+ },
1030
+
1031
+ /* Set as beforeShowDay function to prevent selection of weekends.
1032
+ * @param date Date - the date to customise
1033
+ * @return [boolean, string] - is this date selectable?, what is its CSS class?
1034
+ */
1035
+ noWeekends: function(date) {
1036
+ var day = date.getDay();
1037
+ return [(day > 0 && day < 6), ""];
1038
+ },
1039
+
1040
+ /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition.
1041
+ * @param date Date - the date to get the week for
1042
+ * @return number - the number of the week within the year that contains this date
1043
+ */
1044
+ iso8601Week: function(date) {
1045
+ var time,
1046
+ checkDate = new Date(date.getTime());
1047
+
1048
+ // Find Thursday of this week starting on Monday
1049
+ checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));
1050
+
1051
+ time = checkDate.getTime();
1052
+ checkDate.setMonth(0); // Compare with Jan 1
1053
+ checkDate.setDate(1);
1054
+ return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1;
1055
+ },
1056
+
1057
+ /* Parse a string value into a date object.
1058
+ * See formatDate below for the possible formats.
1059
+ *
1060
+ * @param format string - the expected format of the date
1061
+ * @param value string - the date in the above format
1062
+ * @param settings Object - attributes include:
1063
+ * shortYearCutoff number - the cutoff year for determining the century (optional)
1064
+ * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
1065
+ * dayNames string[7] - names of the days from Sunday (optional)
1066
+ * monthNamesShort string[12] - abbreviated names of the months (optional)
1067
+ * monthNames string[12] - names of the months (optional)
1068
+ * @return Date - the extracted date value or null if value is blank
1069
+ */
1070
+ parseDate: function (format, value, settings) {
1071
+ if (format == null || value == null) {
1072
+ throw "Invalid arguments";
1073
+ }
1074
+
1075
+ value = (typeof value === "object" ? value.toString() : value + "");
1076
+ if (value === "") {
1077
+ return null;
1078
+ }
1079
+
1080
+ var iFormat, dim, extra,
1081
+ iValue = 0,
1082
+ shortYearCutoffTemp = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff,
1083
+ shortYearCutoff = (typeof shortYearCutoffTemp !== "string" ? shortYearCutoffTemp :
1084
+ new Date().getFullYear() % 100 + parseInt(shortYearCutoffTemp, 10)),
1085
+ dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,
1086
+ dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,
1087
+ monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,
1088
+ monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,
1089
+ year = -1,
1090
+ month = -1,
1091
+ day = -1,
1092
+ doy = -1,
1093
+ literal = false,
1094
+ date,
1095
+ // Check whether a format character is doubled
1096
+ lookAhead = function(match) {
1097
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
1098
+ if (matches) {
1099
+ iFormat++;
1100
+ }
1101
+ return matches;
1102
+ },
1103
+ // Extract a number from the string value
1104
+ getNumber = function(match) {
1105
+ var isDoubled = lookAhead(match),
1106
+ size = (match === "@" ? 14 : (match === "!" ? 20 :
1107
+ (match === "y" && isDoubled ? 4 : (match === "o" ? 3 : 2)))),
1108
+ digits = new RegExp("^\\d{1," + size + "}"),
1109
+ num = value.substring(iValue).match(digits);
1110
+ if (!num) {
1111
+ throw "Missing number at position " + iValue;
1112
+ }
1113
+ iValue += num[0].length;
1114
+ return parseInt(num[0], 10);
1115
+ },
1116
+ // Extract a name from the string value and convert to an index
1117
+ getName = function(match, shortNames, longNames) {
1118
+ var index = -1,
1119
+ names = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) {
1120
+ return [ [k, v] ];
1121
+ }).sort(function (a, b) {
1122
+ return -(a[1].length - b[1].length);
1123
+ });
1124
+
1125
+ $.each(names, function (i, pair) {
1126
+ var name = pair[1];
1127
+ if (value.substr(iValue, name.length).toLowerCase() === name.toLowerCase()) {
1128
+ index = pair[0];
1129
+ iValue += name.length;
1130
+ return false;
1131
+ }
1132
+ });
1133
+ if (index !== -1) {
1134
+ return index + 1;
1135
+ } else {
1136
+ throw "Unknown name at position " + iValue;
1137
+ }
1138
+ },
1139
+ // Confirm that a literal character matches the string value
1140
+ checkLiteral = function() {
1141
+ if (value.charAt(iValue) !== format.charAt(iFormat)) {
1142
+ throw "Unexpected literal at position " + iValue;
1143
+ }
1144
+ iValue++;
1145
+ };
1146
+
1147
+ for (iFormat = 0; iFormat < format.length; iFormat++) {
1148
+ if (literal) {
1149
+ if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
1150
+ literal = false;
1151
+ } else {
1152
+ checkLiteral();
1153
+ }
1154
+ } else {
1155
+ switch (format.charAt(iFormat)) {
1156
+ case "d":
1157
+ day = getNumber("d");
1158
+ break;
1159
+ case "D":
1160
+ getName("D", dayNamesShort, dayNames);
1161
+ break;
1162
+ case "o":
1163
+ doy = getNumber("o");
1164
+ break;
1165
+ case "m":
1166
+ month = getNumber("m");
1167
+ break;
1168
+ case "M":
1169
+ month = getName("M", monthNamesShort, monthNames);
1170
+ break;
1171
+ case "y":
1172
+ year = getNumber("y");
1173
+ break;
1174
+ case "@":
1175
+ date = new Date(getNumber("@"));
1176
+ year = date.getFullYear();
1177
+ month = date.getMonth() + 1;
1178
+ day = date.getDate();
1179
+ break;
1180
+ case "!":
1181
+ date = new Date((getNumber("!") - this._ticksTo1970) / 10000);
1182
+ year = date.getFullYear();
1183
+ month = date.getMonth() + 1;
1184
+ day = date.getDate();
1185
+ break;
1186
+ case "'":
1187
+ if (lookAhead("'")){
1188
+ checkLiteral();
1189
+ } else {
1190
+ literal = true;
1191
+ }
1192
+ break;
1193
+ default:
1194
+ checkLiteral();
1195
+ }
1196
+ }
1197
+ }
1198
+
1199
+ if (iValue < value.length){
1200
+ extra = value.substr(iValue);
1201
+ if (!/^\s+/.test(extra)) {
1202
+ throw "Extra/unparsed characters found in date: " + extra;
1203
+ }
1204
+ }
1205
+
1206
+ if (year === -1) {
1207
+ year = new Date().getFullYear();
1208
+ } else if (year < 100) {
1209
+ year += new Date().getFullYear() - new Date().getFullYear() % 100 +
1210
+ (year <= shortYearCutoff ? 0 : -100);
1211
+ }
1212
+
1213
+ if (doy > -1) {
1214
+ month = 1;
1215
+ day = doy;
1216
+ do {
1217
+ dim = this._getDaysInMonth(year, month - 1);
1218
+ if (day <= dim) {
1219
+ break;
1220
+ }
1221
+ month++;
1222
+ day -= dim;
1223
+ } while (true);
1224
+ }
1225
+
1226
+ date = this._daylightSavingAdjust(new Date(year, month - 1, day));
1227
+ if (date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day) {
1228
+ throw "Invalid date"; // E.g. 31/02/00
1229
+ }
1230
+ return date;
1231
+ },
1232
+
1233
+ /* Standard date formats. */
1234
+ ATOM: "yy-mm-dd", // RFC 3339 (ISO 8601)
1235
+ COOKIE: "D, dd M yy",
1236
+ ISO_8601: "yy-mm-dd",
1237
+ RFC_822: "D, d M y",
1238
+ RFC_850: "DD, dd-M-y",
1239
+ RFC_1036: "D, d M y",
1240
+ RFC_1123: "D, d M yy",
1241
+ RFC_2822: "D, d M yy",
1242
+ RSS: "D, d M y", // RFC 822
1243
+ TICKS: "!",
1244
+ TIMESTAMP: "@",
1245
+ W3C: "yy-mm-dd", // ISO 8601
1246
+
1247
+ _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) +
1248
+ Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000),
1249
+
1250
+ /* Format a date object into a string value.
1251
+ * The format can be combinations of the following:
1252
+ * d - day of month (no leading zero)
1253
+ * dd - day of month (two digit)
1254
+ * o - day of year (no leading zeros)
1255
+ * oo - day of year (three digit)
1256
+ * D - day name short
1257
+ * DD - day name long
1258
+ * m - month of year (no leading zero)
1259
+ * mm - month of year (two digit)
1260
+ * M - month name short
1261
+ * MM - month name long
1262
+ * y - year (two digit)
1263
+ * yy - year (four digit)
1264
+ * @ - Unix timestamp (ms since 01/01/1970)
1265
+ * ! - Windows ticks (100ns since 01/01/0001)
1266
+ * "..." - literal text
1267
+ * '' - single quote
1268
+ *
1269
+ * @param format string - the desired format of the date
1270
+ * @param date Date - the date value to format
1271
+ * @param settings Object - attributes include:
1272
+ * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
1273
+ * dayNames string[7] - names of the days from Sunday (optional)
1274
+ * monthNamesShort string[12] - abbreviated names of the months (optional)
1275
+ * monthNames string[12] - names of the months (optional)
1276
+ * @return string - the date in the above format
1277
+ */
1278
+ formatDate: function (format, date, settings) {
1279
+ if (!date) {
1280
+ return "";
1281
+ }
1282
+
1283
+ var iFormat,
1284
+ dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,
1285
+ dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,
1286
+ monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,
1287
+ monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,
1288
+ // Check whether a format character is doubled
1289
+ lookAhead = function(match) {
1290
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
1291
+ if (matches) {
1292
+ iFormat++;
1293
+ }
1294
+ return matches;
1295
+ },
1296
+ // Format a number, with leading zero if necessary
1297
+ formatNumber = function(match, value, len) {
1298
+ var num = "" + value;
1299
+ if (lookAhead(match)) {
1300
+ while (num.length < len) {
1301
+ num = "0" + num;
1302
+ }
1303
+ }
1304
+ return num;
1305
+ },
1306
+ // Format a name, short or long as requested
1307
+ formatName = function(match, value, shortNames, longNames) {
1308
+ return (lookAhead(match) ? longNames[value] : shortNames[value]);
1309
+ },
1310
+ output = "",
1311
+ literal = false;
1312
+
1313
+ if (date) {
1314
+ for (iFormat = 0; iFormat < format.length; iFormat++) {
1315
+ if (literal) {
1316
+ if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
1317
+ literal = false;
1318
+ } else {
1319
+ output += format.charAt(iFormat);
1320
+ }
1321
+ } else {
1322
+ switch (format.charAt(iFormat)) {
1323
+ case "d":
1324
+ output += formatNumber("d", date.getDate(), 2);
1325
+ break;
1326
+ case "D":
1327
+ output += formatName("D", date.getDay(), dayNamesShort, dayNames);
1328
+ break;
1329
+ case "o":
1330
+ output += formatNumber("o",
1331
+ Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);
1332
+ break;
1333
+ case "m":
1334
+ output += formatNumber("m", date.getMonth() + 1, 2);
1335
+ break;
1336
+ case "M":
1337
+ output += formatName("M", date.getMonth(), monthNamesShort, monthNames);
1338
+ break;
1339
+ case "y":
1340
+ output += (lookAhead("y") ? date.getFullYear() :
1341
+ (date.getYear() % 100 < 10 ? "0" : "") + date.getYear() % 100);
1342
+ break;
1343
+ case "@":
1344
+ output += date.getTime();
1345
+ break;
1346
+ case "!":
1347
+ output += date.getTime() * 10000 + this._ticksTo1970;
1348
+ break;
1349
+ case "'":
1350
+ if (lookAhead("'")) {
1351
+ output += "'";
1352
+ } else {
1353
+ literal = true;
1354
+ }
1355
+ break;
1356
+ default:
1357
+ output += format.charAt(iFormat);
1358
+ }
1359
+ }
1360
+ }
1361
+ }
1362
+ return output;
1363
+ },
1364
+
1365
+ /* Extract all possible characters from the date format. */
1366
+ _possibleChars: function (format) {
1367
+ var iFormat,
1368
+ chars = "",
1369
+ literal = false,
1370
+ // Check whether a format character is doubled
1371
+ lookAhead = function(match) {
1372
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);
1373
+ if (matches) {
1374
+ iFormat++;
1375
+ }
1376
+ return matches;
1377
+ };
1378
+
1379
+ for (iFormat = 0; iFormat < format.length; iFormat++) {
1380
+ if (literal) {
1381
+ if (format.charAt(iFormat) === "'" && !lookAhead("'")) {
1382
+ literal = false;
1383
+ } else {
1384
+ chars += format.charAt(iFormat);
1385
+ }
1386
+ } else {
1387
+ switch (format.charAt(iFormat)) {
1388
+ case "d": case "m": case "y": case "@":
1389
+ chars += "0123456789";
1390
+ break;
1391
+ case "D": case "M":
1392
+ return null; // Accept anything
1393
+ case "'":
1394
+ if (lookAhead("'")) {
1395
+ chars += "'";
1396
+ } else {
1397
+ literal = true;
1398
+ }
1399
+ break;
1400
+ default:
1401
+ chars += format.charAt(iFormat);
1402
+ }
1403
+ }
1404
+ }
1405
+ return chars;
1406
+ },
1407
+
1408
+ /* Get a setting value, defaulting if necessary. */
1409
+ _get: function(inst, name) {
1410
+ return inst.settings[name] !== undefined ?
1411
+ inst.settings[name] : this._defaults[name];
1412
+ },
1413
+
1414
+ /* Parse existing date and initialise date picker. */
1415
+ _setDateFromField: function(inst, noDefault) {
1416
+ if (inst.input.val() === inst.lastVal) {
1417
+ return;
1418
+ }
1419
+
1420
+ var dateFormat = this._get(inst, "dateFormat"),
1421
+ dates = inst.lastVal = inst.input ? inst.input.val() : null,
1422
+ defaultDate = this._getDefaultDate(inst),
1423
+ date = defaultDate,
1424
+ settings = this._getFormatConfig(inst);
1425
+
1426
+ try {
1427
+ date = this.parseDate(dateFormat, dates, settings) || defaultDate;
1428
+ } catch (event) {
1429
+ dates = (noDefault ? "" : dates);
1430
+ }
1431
+ inst.selectedDay = date.getDate();
1432
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
1433
+ inst.drawYear = inst.selectedYear = date.getFullYear();
1434
+ inst.currentDay = (dates ? date.getDate() : 0);
1435
+ inst.currentMonth = (dates ? date.getMonth() : 0);
1436
+ inst.currentYear = (dates ? date.getFullYear() : 0);
1437
+ this._adjustInstDate(inst);
1438
+ },
1439
+
1440
+ /* Retrieve the default date shown on opening. */
1441
+ _getDefaultDate: function(inst) {
1442
+ return this._restrictMinMax(inst,
1443
+ this._determineDate(inst, this._get(inst, "defaultDate"), new Date()));
1444
+ },
1445
+
1446
+ /* A date may be specified as an exact value or a relative one. */
1447
+ _determineDate: function(inst, date, defaultDate) {
1448
+ var offsetNumeric = function(offset) {
1449
+ var date = new Date();
1450
+ date.setDate(date.getDate() + offset);
1451
+ return date;
1452
+ },
1453
+ offsetString = function(offset) {
1454
+ try {
1455
+ return $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"),
1456
+ offset, $.datepicker._getFormatConfig(inst));
1457
+ }
1458
+ catch (e) {
1459
+ // Ignore
1460
+ }
1461
+
1462
+ var date = (offset.toLowerCase().match(/^c/) ?
1463
+ $.datepicker._getDate(inst) : null) || new Date(),
1464
+ year = date.getFullYear(),
1465
+ month = date.getMonth(),
1466
+ day = date.getDate(),
1467
+ pattern = /([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,
1468
+ matches = pattern.exec(offset);
1469
+
1470
+ while (matches) {
1471
+ switch (matches[2] || "d") {
1472
+ case "d" : case "D" :
1473
+ day += parseInt(matches[1],10); break;
1474
+ case "w" : case "W" :
1475
+ day += parseInt(matches[1],10) * 7; break;
1476
+ case "m" : case "M" :
1477
+ month += parseInt(matches[1],10);
1478
+ day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
1479
+ break;
1480
+ case "y": case "Y" :
1481
+ year += parseInt(matches[1],10);
1482
+ day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
1483
+ break;
1484
+ }
1485
+ matches = pattern.exec(offset);
1486
+ }
1487
+ return new Date(year, month, day);
1488
+ },
1489
+ newDate = (date == null || date === "" ? defaultDate : (typeof date === "string" ? offsetString(date) :
1490
+ (typeof date === "number" ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime()))));
1491
+
1492
+ newDate = (newDate && newDate.toString() === "Invalid Date" ? defaultDate : newDate);
1493
+ if (newDate) {
1494
+ newDate.setHours(0);
1495
+ newDate.setMinutes(0);
1496
+ newDate.setSeconds(0);
1497
+ newDate.setMilliseconds(0);
1498
+ }
1499
+ return this._daylightSavingAdjust(newDate);
1500
+ },
1501
+
1502
+ /* Handle switch to/from daylight saving.
1503
+ * Hours may be non-zero on daylight saving cut-over:
1504
+ * > 12 when midnight changeover, but then cannot generate
1505
+ * midnight datetime, so jump to 1AM, otherwise reset.
1506
+ * @param date (Date) the date to check
1507
+ * @return (Date) the corrected date
1508
+ */
1509
+ _daylightSavingAdjust: function(date) {
1510
+ if (!date) {
1511
+ return null;
1512
+ }
1513
+ date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);
1514
+ return date;
1515
+ },
1516
+
1517
+ /* Set the date(s) directly. */
1518
+ _setDate: function(inst, date, noChange) {
1519
+ var clear = !date,
1520
+ origMonth = inst.selectedMonth,
1521
+ origYear = inst.selectedYear,
1522
+ newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date()));
1523
+
1524
+ inst.selectedDay = inst.currentDay = newDate.getDate();
1525
+ inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth();
1526
+ inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear();
1527
+ if ((origMonth !== inst.selectedMonth || origYear !== inst.selectedYear) && !noChange) {
1528
+ this._notifyChange(inst);
1529
+ }
1530
+ this._adjustInstDate(inst);
1531
+ if (inst.input) {
1532
+ inst.input.val(clear ? "" : this._formatDate(inst));
1533
+ }
1534
+ },
1535
+
1536
+ /* Retrieve the date(s) directly. */
1537
+ _getDate: function(inst) {
1538
+ var startDate = (!inst.currentYear || (inst.input && inst.input.val() === "") ? null :
1539
+ this._daylightSavingAdjust(new Date(
1540
+ inst.currentYear, inst.currentMonth, inst.currentDay)));
1541
+ return startDate;
1542
+ },
1543
+
1544
+ /* Attach the onxxx handlers. These are declared statically so
1545
+ * they work with static code transformers like Caja.
1546
+ */
1547
+ _attachHandlers: function(inst) {
1548
+ var stepMonths = this._get(inst, "stepMonths"),
1549
+ id = "#" + inst.id.replace( /\\\\/g, "\\" );
1550
+ inst.dpDiv.find("[data-handler]").map(function () {
1551
+ var handler = {
1552
+ prev: function () {
1553
+ $.datepicker._adjustDate(id, -stepMonths, "M");
1554
+ },
1555
+ next: function () {
1556
+ $.datepicker._adjustDate(id, +stepMonths, "M");
1557
+ },
1558
+ hide: function () {
1559
+ $.datepicker._hideDatepicker();
1560
+ },
1561
+ today: function () {
1562
+ $.datepicker._gotoToday(id);
1563
+ },
1564
+ selectDay: function () {
1565
+ $.datepicker._selectDay(id, +this.getAttribute("data-month"), +this.getAttribute("data-year"), this);
1566
+ return false;
1567
+ },
1568
+ selectMonth: function () {
1569
+ $.datepicker._selectMonthYear(id, this, "M");
1570
+ return false;
1571
+ },
1572
+ selectYear: function () {
1573
+ $.datepicker._selectMonthYear(id, this, "Y");
1574
+ return false;
1575
+ }
1576
+ };
1577
+ $(this).bind(this.getAttribute("data-event"), handler[this.getAttribute("data-handler")]);
1578
+ });
1579
+ },
1580
+
1581
+ /* Generate the HTML for the current state of the date picker. */
1582
+ _generateHTML: function(inst) {
1583
+ var maxDraw, prevText, prev, nextText, next, currentText, gotoDate,
1584
+ controls, buttonPanel, firstDay, showWeek, dayNames, dayNamesMin,
1585
+ monthNames, monthNamesShort, beforeShowDay, showOtherMonths,
1586
+ selectOtherMonths, defaultDate, html, dow, row, group, col, selectedDate,
1587
+ cornerClass, calender, thead, day, daysInMonth, leadDays, curRows, numRows,
1588
+ printDate, dRow, tbody, daySettings, otherMonth, unselectable,
1589
+ tempDate = new Date(),
1590
+ today = this._daylightSavingAdjust(
1591
+ new Date(tempDate.getFullYear(), tempDate.getMonth(), tempDate.getDate())), // clear time
1592
+ isRTL = this._get(inst, "isRTL"),
1593
+ showButtonPanel = this._get(inst, "showButtonPanel"),
1594
+ hideIfNoPrevNext = this._get(inst, "hideIfNoPrevNext"),
1595
+ navigationAsDateFormat = this._get(inst, "navigationAsDateFormat"),
1596
+ numMonths = this._getNumberOfMonths(inst),
1597
+ showCurrentAtPos = this._get(inst, "showCurrentAtPos"),
1598
+ stepMonths = this._get(inst, "stepMonths"),
1599
+ isMultiMonth = (numMonths[0] !== 1 || numMonths[1] !== 1),
1600
+ currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) :
1601
+ new Date(inst.currentYear, inst.currentMonth, inst.currentDay))),
1602
+ minDate = this._getMinMaxDate(inst, "min"),
1603
+ maxDate = this._getMinMaxDate(inst, "max"),
1604
+ drawMonth = inst.drawMonth - showCurrentAtPos,
1605
+ drawYear = inst.drawYear;
1606
+
1607
+ if (drawMonth < 0) {
1608
+ drawMonth += 12;
1609
+ drawYear--;
1610
+ }
1611
+ if (maxDate) {
1612
+ maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(),
1613
+ maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate()));
1614
+ maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw);
1615
+ while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) {
1616
+ drawMonth--;
1617
+ if (drawMonth < 0) {
1618
+ drawMonth = 11;
1619
+ drawYear--;
1620
+ }
1621
+ }
1622
+ }
1623
+ inst.drawMonth = drawMonth;
1624
+ inst.drawYear = drawYear;
1625
+
1626
+ prevText = this._get(inst, "prevText");
1627
+ prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText,
1628
+ this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)),
1629
+ this._getFormatConfig(inst)));
1630
+
1631
+ prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ?
1632
+ "<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'" +
1633
+ " title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>" :
1634
+ (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='"+ prevText +"'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>"));
1635
+
1636
+ nextText = this._get(inst, "nextText");
1637
+ nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText,
1638
+ this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)),
1639
+ this._getFormatConfig(inst)));
1640
+
1641
+ next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ?
1642
+ "<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'" +
1643
+ " title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>" :
1644
+ (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='"+ nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>"));
1645
+
1646
+ currentText = this._get(inst, "currentText");
1647
+ gotoDate = (this._get(inst, "gotoCurrent") && inst.currentDay ? currentDate : today);
1648
+ currentText = (!navigationAsDateFormat ? currentText :
1649
+ this.formatDate(currentText, gotoDate, this._getFormatConfig(inst)));
1650
+
1651
+ controls = (!inst.inline ? "<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>" +
1652
+ this._get(inst, "closeText") + "</button>" : "");
1653
+
1654
+ buttonPanel = (showButtonPanel) ? "<div class='ui-datepicker-buttonpane ui-widget-content'>" + (isRTL ? controls : "") +
1655
+ (this._isInRange(inst, gotoDate) ? "<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'" +
1656
+ ">" + currentText + "</button>" : "") + (isRTL ? "" : controls) + "</div>" : "";
1657
+
1658
+ firstDay = parseInt(this._get(inst, "firstDay"),10);
1659
+ firstDay = (isNaN(firstDay) ? 0 : firstDay);
1660
+
1661
+ showWeek = this._get(inst, "showWeek");
1662
+ dayNames = this._get(inst, "dayNames");
1663
+ dayNamesMin = this._get(inst, "dayNamesMin");
1664
+ monthNames = this._get(inst, "monthNames");
1665
+ monthNamesShort = this._get(inst, "monthNamesShort");
1666
+ beforeShowDay = this._get(inst, "beforeShowDay");
1667
+ showOtherMonths = this._get(inst, "showOtherMonths");
1668
+ selectOtherMonths = this._get(inst, "selectOtherMonths");
1669
+ defaultDate = this._getDefaultDate(inst);
1670
+ html = "";
1671
+ dow;
1672
+ for (row = 0; row < numMonths[0]; row++) {
1673
+ group = "";
1674
+ this.maxRows = 4;
1675
+ for (col = 0; col < numMonths[1]; col++) {
1676
+ selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay));
1677
+ cornerClass = " ui-corner-all";
1678
+ calender = "";
1679
+ if (isMultiMonth) {
1680
+ calender += "<div class='ui-datepicker-group";
1681
+ if (numMonths[1] > 1) {
1682
+ switch (col) {
1683
+ case 0: calender += " ui-datepicker-group-first";
1684
+ cornerClass = " ui-corner-" + (isRTL ? "right" : "left"); break;
1685
+ case numMonths[1]-1: calender += " ui-datepicker-group-last";
1686
+ cornerClass = " ui-corner-" + (isRTL ? "left" : "right"); break;
1687
+ default: calender += " ui-datepicker-group-middle"; cornerClass = ""; break;
1688
+ }
1689
+ }
1690
+ calender += "'>";
1691
+ }
1692
+ calender += "<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix" + cornerClass + "'>" +
1693
+ (/all|left/.test(cornerClass) && row === 0 ? (isRTL ? next : prev) : "") +
1694
+ (/all|right/.test(cornerClass) && row === 0 ? (isRTL ? prev : next) : "") +
1695
+ this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate,
1696
+ row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers
1697
+ "</div><table class='ui-datepicker-calendar'><thead>" +
1698
+ "<tr>";
1699
+ thead = (showWeek ? "<th class='ui-datepicker-week-col'>" + this._get(inst, "weekHeader") + "</th>" : "");
1700
+ for (dow = 0; dow < 7; dow++) { // days of the week
1701
+ day = (dow + firstDay) % 7;
1702
+ thead += "<th" + ((dow + firstDay + 6) % 7 >= 5 ? " class='ui-datepicker-week-end'" : "") + ">" +
1703
+ "<span title='" + dayNames[day] + "'>" + dayNamesMin[day] + "</span></th>";
1704
+ }
1705
+ calender += thead + "</tr></thead><tbody>";
1706
+ daysInMonth = this._getDaysInMonth(drawYear, drawMonth);
1707
+ if (drawYear === inst.selectedYear && drawMonth === inst.selectedMonth) {
1708
+ inst.selectedDay = Math.min(inst.selectedDay, daysInMonth);
1709
+ }
1710
+ leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7;
1711
+ curRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate
1712
+ numRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043)
1713
+ this.maxRows = numRows;
1714
+ printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays));
1715
+ for (dRow = 0; dRow < numRows; dRow++) { // create date picker rows
1716
+ calender += "<tr>";
1717
+ tbody = (!showWeek ? "" : "<td class='ui-datepicker-week-col'>" +
1718
+ this._get(inst, "calculateWeek")(printDate) + "</td>");
1719
+ for (dow = 0; dow < 7; dow++) { // create date picker days
1720
+ daySettings = (beforeShowDay ?
1721
+ beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, ""]);
1722
+ otherMonth = (printDate.getMonth() !== drawMonth);
1723
+ unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] ||
1724
+ (minDate && printDate < minDate) || (maxDate && printDate > maxDate);
1725
+ tbody += "<td class='" +
1726
+ ((dow + firstDay + 6) % 7 >= 5 ? " ui-datepicker-week-end" : "") + // highlight weekends
1727
+ (otherMonth ? " ui-datepicker-other-month" : "") + // highlight days from other months
1728
+ ((printDate.getTime() === selectedDate.getTime() && drawMonth === inst.selectedMonth && inst._keyEvent) || // user pressed key
1729
+ (defaultDate.getTime() === printDate.getTime() && defaultDate.getTime() === selectedDate.getTime()) ?
1730
+ // or defaultDate is current printedDate and defaultDate is selectedDate
1731
+ " " + this._dayOverClass : "") + // highlight selected day
1732
+ (unselectable ? " " + this._unselectableClass + " ui-state-disabled": "") + // highlight unselectable days
1733
+ (otherMonth && !showOtherMonths ? "" : " " + daySettings[1] + // highlight custom dates
1734
+ (printDate.getTime() === currentDate.getTime() ? " " + this._currentClass : "") + // highlight selected day
1735
+ (printDate.getTime() === today.getTime() ? " ui-datepicker-today" : "")) + "'" + // highlight today (if different)
1736
+ ((!otherMonth || showOtherMonths) && daySettings[2] ? " title='" + daySettings[2].replace(/'/g, "&#39;") + "'" : "") + // cell title
1737
+ (unselectable ? "" : " data-handler='selectDay' data-event='click' data-month='" + printDate.getMonth() + "' data-year='" + printDate.getFullYear() + "'") + ">" + // actions
1738
+ (otherMonth && !showOtherMonths ? "&#xa0;" : // display for other months
1739
+ (unselectable ? "<span class='ui-state-default'>" + printDate.getDate() + "</span>" : "<a class='ui-state-default" +
1740
+ (printDate.getTime() === today.getTime() ? " ui-state-highlight" : "") +
1741
+ (printDate.getTime() === currentDate.getTime() ? " ui-state-active" : "") + // highlight selected day
1742
+ (otherMonth ? " ui-priority-secondary" : "") + // distinguish dates from other months
1743
+ "' href='#'>" + printDate.getDate() + "</a>")) + "</td>"; // display selectable date
1744
+ printDate.setDate(printDate.getDate() + 1);
1745
+ printDate = this._daylightSavingAdjust(printDate);
1746
+ }
1747
+ calender += tbody + "</tr>";
1748
+ }
1749
+ drawMonth++;
1750
+ if (drawMonth > 11) {
1751
+ drawMonth = 0;
1752
+ drawYear++;
1753
+ }
1754
+ calender += "</tbody></table>" + (isMultiMonth ? "</div>" +
1755
+ ((numMonths[0] > 0 && col === numMonths[1]-1) ? "<div class='ui-datepicker-row-break'></div>" : "") : "");
1756
+ group += calender;
1757
+ }
1758
+ html += group;
1759
+ }
1760
+ html += buttonPanel;
1761
+ inst._keyEvent = false;
1762
+ return html;
1763
+ },
1764
+
1765
+ /* Generate the month and year header. */
1766
+ _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate,
1767
+ secondary, monthNames, monthNamesShort) {
1768
+
1769
+ var inMinYear, inMaxYear, month, years, thisYear, determineYear, year, endYear,
1770
+ changeMonth = this._get(inst, "changeMonth"),
1771
+ changeYear = this._get(inst, "changeYear"),
1772
+ showMonthAfterYear = this._get(inst, "showMonthAfterYear"),
1773
+ html = "<div class='ui-datepicker-title'>",
1774
+ monthHtml = "";
1775
+
1776
+ // month selection
1777
+ if (secondary || !changeMonth) {
1778
+ monthHtml += "<span class='ui-datepicker-month'>" + monthNames[drawMonth] + "</span>";
1779
+ } else {
1780
+ inMinYear = (minDate && minDate.getFullYear() === drawYear);
1781
+ inMaxYear = (maxDate && maxDate.getFullYear() === drawYear);
1782
+ monthHtml += "<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>";
1783
+ for ( month = 0; month < 12; month++) {
1784
+ if ((!inMinYear || month >= minDate.getMonth()) && (!inMaxYear || month <= maxDate.getMonth())) {
1785
+ monthHtml += "<option value='" + month + "'" +
1786
+ (month === drawMonth ? " selected='selected'" : "") +
1787
+ ">" + monthNamesShort[month] + "</option>";
1788
+ }
1789
+ }
1790
+ monthHtml += "</select>";
1791
+ }
1792
+
1793
+ if (!showMonthAfterYear) {
1794
+ html += monthHtml + (secondary || !(changeMonth && changeYear) ? "&#xa0;" : "");
1795
+ }
1796
+
1797
+ // year selection
1798
+ if ( !inst.yearshtml ) {
1799
+ inst.yearshtml = "";
1800
+ if (secondary || !changeYear) {
1801
+ html += "<span class='ui-datepicker-year'>" + drawYear + "</span>";
1802
+ } else {
1803
+ // determine range of years to display
1804
+ years = this._get(inst, "yearRange").split(":");
1805
+ thisYear = new Date().getFullYear();
1806
+ determineYear = function(value) {
1807
+ var year = (value.match(/c[+\-].*/) ? drawYear + parseInt(value.substring(1), 10) :
1808
+ (value.match(/[+\-].*/) ? thisYear + parseInt(value, 10) :
1809
+ parseInt(value, 10)));
1810
+ return (isNaN(year) ? thisYear : year);
1811
+ };
1812
+ year = determineYear(years[0]);
1813
+ endYear = Math.max(year, determineYear(years[1] || ""));
1814
+ year = (minDate ? Math.max(year, minDate.getFullYear()) : year);
1815
+ endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear);
1816
+ inst.yearshtml += "<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>";
1817
+ for (; year <= endYear; year++) {
1818
+ inst.yearshtml += "<option value='" + year + "'" +
1819
+ (year === drawYear ? " selected='selected'" : "") +
1820
+ ">" + year + "</option>";
1821
+ }
1822
+ inst.yearshtml += "</select>";
1823
+
1824
+ html += inst.yearshtml;
1825
+ inst.yearshtml = null;
1826
+ }
1827
+ }
1828
+
1829
+ html += this._get(inst, "yearSuffix");
1830
+ if (showMonthAfterYear) {
1831
+ html += (secondary || !(changeMonth && changeYear) ? "&#xa0;" : "") + monthHtml;
1832
+ }
1833
+ html += "</div>"; // Close datepicker_header
1834
+ return html;
1835
+ },
1836
+
1837
+ /* Adjust one of the date sub-fields. */
1838
+ _adjustInstDate: function(inst, offset, period) {
1839
+ var year = inst.drawYear + (period === "Y" ? offset : 0),
1840
+ month = inst.drawMonth + (period === "M" ? offset : 0),
1841
+ day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + (period === "D" ? offset : 0),
1842
+ date = this._restrictMinMax(inst, this._daylightSavingAdjust(new Date(year, month, day)));
1843
+
1844
+ inst.selectedDay = date.getDate();
1845
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
1846
+ inst.drawYear = inst.selectedYear = date.getFullYear();
1847
+ if (period === "M" || period === "Y") {
1848
+ this._notifyChange(inst);
1849
+ }
1850
+ },
1851
+
1852
+ /* Ensure a date is within any min/max bounds. */
1853
+ _restrictMinMax: function(inst, date) {
1854
+ var minDate = this._getMinMaxDate(inst, "min"),
1855
+ maxDate = this._getMinMaxDate(inst, "max"),
1856
+ newDate = (minDate && date < minDate ? minDate : date);
1857
+ return (maxDate && newDate > maxDate ? maxDate : newDate);
1858
+ },
1859
+
1860
+ /* Notify change of month/year. */
1861
+ _notifyChange: function(inst) {
1862
+ var onChange = this._get(inst, "onChangeMonthYear");
1863
+ if (onChange) {
1864
+ onChange.apply((inst.input ? inst.input[0] : null),
1865
+ [inst.selectedYear, inst.selectedMonth + 1, inst]);
1866
+ }
1867
+ },
1868
+
1869
+ /* Determine the number of months to show. */
1870
+ _getNumberOfMonths: function(inst) {
1871
+ var numMonths = this._get(inst, "numberOfMonths");
1872
+ return (numMonths == null ? [1, 1] : (typeof numMonths === "number" ? [1, numMonths] : numMonths));
1873
+ },
1874
+
1875
+ /* Determine the current maximum date - ensure no time components are set. */
1876
+ _getMinMaxDate: function(inst, minMax) {
1877
+ return this._determineDate(inst, this._get(inst, minMax + "Date"), null);
1878
+ },
1879
+
1880
+ /* Find the number of days in a given month. */
1881
+ _getDaysInMonth: function(year, month) {
1882
+ return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate();
1883
+ },
1884
+
1885
+ /* Find the day of the week of the first of a month. */
1886
+ _getFirstDayOfMonth: function(year, month) {
1887
+ return new Date(year, month, 1).getDay();
1888
+ },
1889
+
1890
+ /* Determines if we should allow a "next/prev" month display change. */
1891
+ _canAdjustMonth: function(inst, offset, curYear, curMonth) {
1892
+ var numMonths = this._getNumberOfMonths(inst),
1893
+ date = this._daylightSavingAdjust(new Date(curYear,
1894
+ curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1));
1895
+
1896
+ if (offset < 0) {
1897
+ date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth()));
1898
+ }
1899
+ return this._isInRange(inst, date);
1900
+ },
1901
+
1902
+ /* Is the given date in the accepted range? */
1903
+ _isInRange: function(inst, date) {
1904
+ var yearSplit, currentYear,
1905
+ minDate = this._getMinMaxDate(inst, "min"),
1906
+ maxDate = this._getMinMaxDate(inst, "max"),
1907
+ minYear = null,
1908
+ maxYear = null,
1909
+ years = this._get(inst, "yearRange");
1910
+ if (years){
1911
+ yearSplit = years.split(":");
1912
+ currentYear = new Date().getFullYear();
1913
+ minYear = parseInt(yearSplit[0], 10);
1914
+ maxYear = parseInt(yearSplit[1], 10);
1915
+ if ( yearSplit[0].match(/[+\-].*/) ) {
1916
+ minYear += currentYear;
1917
+ }
1918
+ if ( yearSplit[1].match(/[+\-].*/) ) {
1919
+ maxYear += currentYear;
1920
+ }
1921
+ }
1922
+
1923
+ return ((!minDate || date.getTime() >= minDate.getTime()) &&
1924
+ (!maxDate || date.getTime() <= maxDate.getTime()) &&
1925
+ (!minYear || date.getFullYear() >= minYear) &&
1926
+ (!maxYear || date.getFullYear() <= maxYear));
1927
+ },
1928
+
1929
+ /* Provide the configuration settings for formatting/parsing. */
1930
+ _getFormatConfig: function(inst) {
1931
+ var shortYearCutoff = this._get(inst, "shortYearCutoff");
1932
+ shortYearCutoff = (typeof shortYearCutoff !== "string" ? shortYearCutoff :
1933
+ new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10));
1934
+ return {shortYearCutoff: shortYearCutoff,
1935
+ dayNamesShort: this._get(inst, "dayNamesShort"), dayNames: this._get(inst, "dayNames"),
1936
+ monthNamesShort: this._get(inst, "monthNamesShort"), monthNames: this._get(inst, "monthNames")};
1937
+ },
1938
+
1939
+ /* Format the given date for display. */
1940
+ _formatDate: function(inst, day, month, year) {
1941
+ if (!day) {
1942
+ inst.currentDay = inst.selectedDay;
1943
+ inst.currentMonth = inst.selectedMonth;
1944
+ inst.currentYear = inst.selectedYear;
1945
+ }
1946
+ var date = (day ? (typeof day === "object" ? day :
1947
+ this._daylightSavingAdjust(new Date(year, month, day))) :
1948
+ this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay)));
1949
+ return this.formatDate(this._get(inst, "dateFormat"), date, this._getFormatConfig(inst));
1950
+ }
1951
+ });
1952
+
1953
+ /*
1954
+ * Bind hover events for datepicker elements.
1955
+ * Done via delegate so the binding only occurs once in the lifetime of the parent div.
1956
+ * Global instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker.
1957
+ */
1958
+ function bindHover(dpDiv) {
1959
+ var selector = "button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";
1960
+ return dpDiv.delegate(selector, "mouseout", function() {
1961
+ $(this).removeClass("ui-state-hover");
1962
+ if (this.className.indexOf("ui-datepicker-prev") !== -1) {
1963
+ $(this).removeClass("ui-datepicker-prev-hover");
1964
+ }
1965
+ if (this.className.indexOf("ui-datepicker-next") !== -1) {
1966
+ $(this).removeClass("ui-datepicker-next-hover");
1967
+ }
1968
+ })
1969
+ .delegate(selector, "mouseover", function(){
1970
+ if (!$.datepicker._isDisabledDatepicker( instActive.inline ? dpDiv.parent()[0] : instActive.input[0])) {
1971
+ $(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");
1972
+ $(this).addClass("ui-state-hover");
1973
+ if (this.className.indexOf("ui-datepicker-prev") !== -1) {
1974
+ $(this).addClass("ui-datepicker-prev-hover");
1975
+ }
1976
+ if (this.className.indexOf("ui-datepicker-next") !== -1) {
1977
+ $(this).addClass("ui-datepicker-next-hover");
1978
+ }
1979
+ }
1980
+ });
1981
+ }
1982
+
1983
+ /* jQuery extend now ignores nulls! */
1984
+ function extendRemove(target, props) {
1985
+ $.extend(target, props);
1986
+ for (var name in props) {
1987
+ if (props[name] == null) {
1988
+ target[name] = props[name];
1989
+ }
1990
+ }
1991
+ return target;
1992
+ }
1993
+
1994
+ /* Invoke the datepicker functionality.
1995
+ @param options string - a command, optionally followed by additional parameters or
1996
+ Object - settings for attaching new datepicker functionality
1997
+ @return jQuery object */
1998
+ $.fn.datepicker = function(options){
1999
+
2000
+ /* Verify an empty collection wasn't passed - Fixes #6976 */
2001
+ if ( !this.length ) {
2002
+ return this;
2003
+ }
2004
+
2005
+ /* Initialise the date picker. */
2006
+ if (!$.datepicker.initialized) {
2007
+ $(document).mousedown($.datepicker._checkExternalClick);
2008
+ $.datepicker.initialized = true;
2009
+ }
2010
+
2011
+ /* Append datepicker main container to body if not exist. */
2012
+ if ($("#"+$.datepicker._mainDivId).length === 0) {
2013
+ $("body").append($.datepicker.dpDiv);
2014
+ }
2015
+
2016
+ var otherArgs = Array.prototype.slice.call(arguments, 1);
2017
+ if (typeof options === "string" && (options === "isDisabled" || options === "getDate" || options === "widget")) {
2018
+ return $.datepicker["_" + options + "Datepicker"].
2019
+ apply($.datepicker, [this[0]].concat(otherArgs));
2020
+ }
2021
+ if (options === "option" && arguments.length === 2 && typeof arguments[1] === "string") {
2022
+ return $.datepicker["_" + options + "Datepicker"].
2023
+ apply($.datepicker, [this[0]].concat(otherArgs));
2024
+ }
2025
+ return this.each(function() {
2026
+ typeof options === "string" ?
2027
+ $.datepicker["_" + options + "Datepicker"].
2028
+ apply($.datepicker, [this].concat(otherArgs)) :
2029
+ $.datepicker._attachDatepicker(this, options);
2030
+ });
2031
+ };
2032
+
2033
+ $.datepicker = new Datepicker(); // singleton instance
2034
+ $.datepicker.initialized = false;
2035
+ $.datepicker.uuid = new Date().getTime();
2036
+ $.datepicker.version = "1.10.4";
2037
+
2038
+ })(jQuery);
cmb/js/jquery.timePicker.min.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * A time picker for jQuery.
3
+ *
4
+ * Dual licensed under the MIT and GPL licenses.
5
+ * Copyright (c) 2009 Anders Fajerson
6
+ *
7
+ * @name timePicker
8
+ * @author Anders Fajerson (http://perifer.se)
9
+ * @see http://github.com/perifer/timePicker
10
+ * @example $("#mytime").timePicker();
11
+ * @example $("#mytime").timePicker({step:30, startTime:"15:00", endTime:"18:00"});
12
+ */
13
+ (function(a){function g(a){a.setFullYear(2001),a.setMonth(0),a.setDate(0);return a}function f(a,b){if(a){var c=a.split(b.separator),d=parseFloat(c[0]),e=parseFloat(c[1]);b.show24Hours||(d===12&&a.indexOf("AM")!==-1?d=0:d!==12&&a.indexOf("PM")!==-1&&(d+=12));var f=new Date(0,0,0,d,e,0);return g(f)}return null}function e(a,b){return typeof a=="object"?g(a):f(a,b)}function d(a){return(a<10?"0":"")+a}function c(a,b){var c=a.getHours(),e=b.show24Hours?c:(c+11)%12+1,f=a.getMinutes();return d(e)+b.separator+d(f)+(b.show24Hours?"":c<12?" AM":" PM")}function b(b,c,d,e){b.value=a(c).text(),a(b).change(),a.browser.msie||b.focus(),d.hide()}a.fn.timePicker=function(b){var c=a.extend({},a.fn.timePicker.defaults,b);return this.each(function(){a.timePicker(this,c)})},a.timePicker=function(b,c){var d=a(b)[0];return d.timePicker||(d.timePicker=new jQuery._timePicker(d,c))},a.timePicker.version="0.3",a._timePicker=function(d,h){var i=!1,j=!1,k=e(h.startTime,h),l=e(h.endTime,h),m="selected",n="li."+m;a(d).attr("autocomplete","OFF");var o=[],p=new Date(k);while(p<=l)o[o.length]=c(p,h),p=new Date(p.setMinutes(p.getMinutes()+h.step));var q=a('<div class="time-picker'+(h.show24Hours?"":" time-picker-12hours")+'"></div>'),r=a("<ul></ul>");for(var s=0;s<o.length;s++)r.append("<li>"+o[s]+"</li>");q.append(r),q.appendTo("body").hide(),q.mouseover(function(){i=!0}).mouseout(function(){i=!1}),a("li",r).mouseover(function(){j||(a(n,q).removeClass(m),a(this).addClass(m))}).mousedown(function(){i=!0}).click(function(){b(d,this,q,h),i=!1});var t=function(){if(q.is(":visible"))return!1;a("li",q).removeClass(m);var b=a(d).offset();q.css({top:b.top+d.offsetHeight,left:b.left}),q.show();var e=d.value?f(d.value,h):k,i=k.getHours()*60+k.getMinutes(),j=e.getHours()*60+e.getMinutes()-i,n=Math.round(j/h.step),o=g(new Date(0,0,0,0,n*h.step+i,0));o=k<o&&o<=l?o:k;var p=a("li:contains("+c(o,h)+")",q);p.length&&(p.addClass(m),q[0].scrollTop=p[0].offsetTop);return!0};a(d).focus(t).click(t),a(d).blur(function(){i||q.hide()});var u=a.browser.opera||a.browser.mozilla?"keypress":"keydown";a(d)[u](function(c){var e;j=!0;var f=q[0].scrollTop;switch(c.keyCode){case 38:if(t())return!1;e=a(n,r);var g=e.prev().addClass(m)[0];g?(e.removeClass(m),g.offsetTop<f&&(q[0].scrollTop=f-g.offsetHeight)):(e.removeClass(m),g=a("li:last",r).addClass(m)[0],q[0].scrollTop=g.offsetTop-g.offsetHeight);return!1;case 40:if(t())return!1;e=a(n,r);var i=e.next().addClass(m)[0];i?(e.removeClass(m),i.offsetTop+i.offsetHeight>f+q[0].offsetHeight&&(q[0].scrollTop=f+i.offsetHeight)):(e.removeClass(m),i=a("li:first",r).addClass(m)[0],q[0].scrollTop=0);return!1;case 13:if(q.is(":visible")){var k=a(n,r)[0];b(d,k,q,h)}return!1;case 27:q.hide();return!1}return!0}),a(d).keyup(function(a){j=!1}),this.getTime=function(){return f(d.value,h)},this.setTime=function(b){d.value=c(e(b,h),h),a(d).change()}},a.fn.timePicker.defaults={step:30,startTime:new Date(0,0,0,0,0,0),endTime:new Date(0,0,0,23,30,0),separator:":",show24Hours:!0}})(jQuery)
cmb/style.css ADDED
@@ -0,0 +1,621 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * CMB Styling
3
+ */
4
+
5
+ table.cmb_metabox {
6
+ clear: both;
7
+ }
8
+
9
+ table.cmb_metabox > tr:first-of-type > td,
10
+ table.cmb_metabox > tr:first-of-type > th,
11
+ table.cmb_metabox tbody > tr:first-of-type > td,
12
+ table.cmb_metabox tbody > tr:first-of-type > th,
13
+ .post-php table.cmb_metabox .cmb-nested-table td,
14
+ .post-new-php table.cmb_metabox .cmb-nested-table td,
15
+ .post-php table.cmb_metabox .repeatable-group th,
16
+ .post-new-php table.cmb_metabox .repeatable-group th,
17
+ .post-php table.cmb_metabox .repeatable-group:first-of-type,
18
+ .post-new-php table.cmb_metabox .repeatable-group:first-of-type {
19
+ border: 0;
20
+ }
21
+
22
+ .post-php table.cmb_metabox td,
23
+ .post-new-php table.cmb_metabox td,
24
+ .post-php table.cmb_metabox th,
25
+ .post-new-php table.cmb_metabox th,
26
+ .post-php table.cmb_metabox .repeatable-group,
27
+ .post-new-php table.cmb_metabox .repeatable-group,
28
+ .post-php table.cmb_metabox .repeatable-group,
29
+ .post-new-php table.cmb_metabox .repeatable-group {
30
+ border-top: 1px solid #E9E9E9;
31
+ }
32
+
33
+ .repeatable-group th {
34
+ padding: 5px;
35
+ }
36
+
37
+ .repeatable-group .shift-rows {
38
+ text-decoration: none;
39
+ margin-right: 5px;
40
+ font-size: 1.2em;
41
+ }
42
+
43
+ .repeatable-group .cmb_upload_button {
44
+ float: right;
45
+ }
46
+
47
+ #poststuff .repeatable-group h2 {
48
+ margin: 0;
49
+ }
50
+
51
+ .cmb-group-title h4 {
52
+ font-size: 1.2em;
53
+ font-weight: 500;
54
+ border-bottom: 1px solid #ddd;
55
+ }
56
+
57
+ .post-php table.cmb_metabox th, .post-new-php table.cmb_metabox th {
58
+ text-align: right;
59
+ font-weight:bold;
60
+ }
61
+
62
+ .post-php table.cmb_metabox table th, .post-new-php table.cmb_metabox table th {
63
+ text-align: left;
64
+ }
65
+
66
+ table.cmb_metabox th label {
67
+ margin-top:5px;
68
+ display:block
69
+ }
70
+
71
+ p.cmb_metabox_description {
72
+ color: #AAA;
73
+ font-style: italic;
74
+ margin: 2px 0 !important
75
+ }
76
+
77
+ span.cmb_metabox_description {
78
+ color: #AAA;
79
+ font-style: italic
80
+ }
81
+
82
+ table.cmb_metabox input, table.cmb_metabox textarea {
83
+ font-size:14px;
84
+ padding: 5px;
85
+ }
86
+
87
+ table.cmb_metabox input[type=text], table.cmb_metabox textarea {
88
+ width: 97%;
89
+ }
90
+
91
+ table.cmb_metabox textarea.cmb_textarea_code {
92
+ font-family: Consolas,Monaco,monospace;
93
+ line-height: 16px;
94
+ }
95
+
96
+ table.cmb_metabox input.cmb_text_small {
97
+ width: 100px;
98
+ margin-right: 15px
99
+ }
100
+
101
+ table.cmb_metabox input.cmb_timepicker {
102
+ width: 100px;
103
+ margin-right: 15px
104
+ }
105
+
106
+ table.cmb_metabox input.cmb_text_money {
107
+ width: 90px;
108
+ margin-right: 15px
109
+ }
110
+
111
+ table.cmb_metabox input.cmb_text_medium {
112
+ width: 230px;
113
+ margin-right: 15px
114
+ }
115
+
116
+ table.cmb_metabox input.cmb_upload_file {
117
+ width: 65%;
118
+ }
119
+
120
+ table.cmb_metabox input.ed_button{
121
+ padding:2px 4px
122
+ }
123
+
124
+ table.cmb_metabox li {
125
+ font-size:14px;
126
+ margin: 1px 0 5px 0;
127
+ line-height: 16px;
128
+ }
129
+
130
+ table.cmb_metabox ul {
131
+ padding-top:5px;
132
+ margin: 0;
133
+ }
134
+
135
+ table.cmb_metabox select {
136
+ font-size:14px;
137
+ margin-top: 3px
138
+ }
139
+
140
+ table.cmb_metabox input:focus, table.cmb_metabox textarea:focus {
141
+ background: #fffff8
142
+ }
143
+
144
+ .cmb_metabox_title {
145
+ margin: 0 0 5px 0;
146
+ padding: 5px 0 0 0;
147
+ }
148
+
149
+ .edit-tags-php .cmb_metabox_title, .profile-php .cmb_metabox_title, .user-edit-php .cmb_metabox_title {
150
+ margin-left: -10px;
151
+ }
152
+
153
+ .cmb-inline ul {
154
+ padding: 4px 0 0 0
155
+ }
156
+
157
+ .cmb-inline li {display: inline-block;
158
+ padding-right: 18px
159
+ }
160
+
161
+ table.cmb_metabox input[type="radio"] {
162
+ margin: 0 5px 0 0;
163
+ padding: 0
164
+ }
165
+
166
+ table.cmb_metabox input[type="checkbox"] {
167
+ margin: 0 5px 0 0;
168
+ padding: 0
169
+ }
170
+
171
+ table.cmb_metabox .mceLayout {
172
+ border:1px solid #DFDFDF !important
173
+ }
174
+
175
+ table.cmb_metabox .mceIframeContainer {
176
+ background:#FFF
177
+ }
178
+
179
+ table.cmb_metabox .meta_mce {
180
+ width:97%
181
+ }
182
+
183
+ table.cmb_metabox .meta_mce textarea {
184
+ width:100%
185
+ }
186
+
187
+ table.cmb_metabox .cmb_media_status {
188
+ margin: 10px 0 0 0
189
+ }
190
+
191
+ table.cmb_metabox .cmb_media_status .img_status {
192
+ clear: none;
193
+ float: left;
194
+ display: inline-block;
195
+ margin-right: 10px;
196
+ width: auto;
197
+ }
198
+
199
+ table.cmb_metabox .cmb-type-file_list .cmb_media_status .img_status {
200
+ clear: none;
201
+ float: left;
202
+ margin-right: 10px;
203
+ width: auto;
204
+ }
205
+
206
+ table.cmb_metabox .cmb_media_status .img_status, table.cmb_metabox .cmb_media_status .embed_status {
207
+ position: relative;
208
+ }
209
+
210
+ table.cmb_metabox .cmb_media_status .img_status img, table.cmb_metabox .cmb_media_status .embed_status {
211
+ border:1px solid #DFDFDF;
212
+ background: #FAFAFA;
213
+ max-width:350px;
214
+ padding: 5px;
215
+ -moz-border-radius: 2px;
216
+ border-radius: 2px
217
+ }
218
+
219
+ table.cmb_metabox .cmb_media_status .embed_status {
220
+ float: left;
221
+ max-width:800px
222
+ }
223
+
224
+ table.cmb_metabox .cmb_media_status .img_status .cmb_remove_file_button, table.cmb_metabox .cmb_media_status .embed_status .cmb_remove_file_button {
225
+ text-indent: -9999px;
226
+ background: url(images/ico-delete.png);
227
+ width: 16px;
228
+ height: 16px;
229
+ position: absolute;
230
+ top: -5px;
231
+ left: -5px
232
+ }
233
+
234
+ table.cmb_metabox .attach_list li {
235
+ clear: both;
236
+ display: inline-block;
237
+ margin-bottom: 25px;
238
+ width: 100%;
239
+ }
240
+
241
+ table.cmb_metabox .attach_list li img {
242
+ float: left;
243
+ margin-right: 10px;
244
+ }
245
+
246
+ /**
247
+ * Sidebar placement adjustments
248
+ */
249
+ .inner-sidebar table.cmb_metabox input[type=text],
250
+ #side-sortables table.cmb_metabox input[type=text],
251
+ table.cmb_metabox textarea {
252
+ width: 95%;
253
+ }
254
+
255
+ .inner-sidebar table.cmb_metabox .cmb_media_status .img_status img,
256
+ #side-sortables table.cmb_metabox .cmb_media_status .img_status img,
257
+ .inner-sidebar table.cmb_metabox .cmb_media_status .embed_status img,
258
+ #side-sortables table.cmb_metabox .cmb_media_status .embed_status img {
259
+ width: 90%;
260
+ }
261
+
262
+ .inner-sidebar table.cmb_metabox label,
263
+ #side-sortables table.cmb_metabox label {
264
+ display: block;
265
+ font-weight: bold;
266
+ padding: 0 0 5px;
267
+ }
268
+
269
+ .inner-sidebar table.cmb_metabox .cmb_list label,
270
+ #side-sortables table.cmb_metabox .cmb_list label {
271
+ display: inline;
272
+ font-weight: normal;
273
+ }
274
+
275
+ .inner-sidebar table.cmb_metabox .cmb_metabox_description,
276
+ #side-sortables table.cmb_metabox .cmb_metabox_description {
277
+ display: block;
278
+ padding: 7px 0 0;
279
+ }
280
+
281
+ .inner-sidebar table.cmb_metabox .cmb_metabox_title,
282
+ #side-sortables table.cmb_metabox .cmb_metabox_title {
283
+ font-size: 1.2em;
284
+ font-style: italic;
285
+ }
286
+
287
+ .postbox table.cmb_metabox .cmb-spinner {
288
+ float: left;
289
+ }
290
+
291
+ /**
292
+ * Color picker
293
+ */
294
+ table.cmb_metabox .wp-color-result, table.cmb_metabox .wp-picker-input-wrap {
295
+ vertical-align: middle;
296
+ }
297
+
298
+ table.cmb_metabox .wp-color-result, table.cmb_metabox .wp-picker-container {
299
+ margin: 0 10px 0 0;
300
+ }
301
+
302
+
303
+ /**
304
+ * Timepicker
305
+ */
306
+ div.time-picker {
307
+ position: absolute;
308
+ height: 191px;
309
+ width:6em;
310
+ /* needed for IE */overflow: auto;
311
+ background: #fff;
312
+ border: 1px solid #aaa;
313
+ z-index: 99;
314
+ margin: 0
315
+ }
316
+
317
+ div.time-picker-12hours {
318
+ width:8em; /* needed for IE */
319
+ }
320
+
321
+ div.time-picker ul {
322
+ list-style-type: none;
323
+ margin: 0;
324
+ padding: 0;
325
+ }
326
+
327
+ div.time-picker li {
328
+ cursor: pointer;
329
+ height: 10px;
330
+ font: 14px/1 Helvetica, Arial, sans-serif;
331
+ padding: 4px 3px;
332
+ }
333
+
334
+ div.time-picker li.selected {
335
+ background: #0063CE;
336
+ color: #fff;
337
+ }
338
+
339
+ /**
340
+ * jQuery UI CSS Framework 1.8.16
341
+ *
342
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
343
+ * Dual licensed under the MIT or GPL Version 2 licenses.
344
+ * http://jquery.org/license
345
+ *
346
+ * http://docs.jquery.com/UI/Theming/API
347
+ */
348
+ .cmb_element .ui-helper-hidden { display: none; }
349
+ .cmb_element .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
350
+ .cmb_element .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
351
+ .cmb_element .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
352
+ .cmb_element .ui-helper-clearfix { display: inline-block; }
353
+ * html .ui-helper-clearfix { height:1%; }
354
+ .cmb_element .ui-helper-clearfix { display:block; }
355
+ .cmb_element .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
356
+ .cmb_element .ui-state-disabled { cursor: default !important; }
357
+ .cmb_element .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
358
+ .cmb_element .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
359
+ .cmb_element .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
360
+ .cmb_element .ui-widget .ui-widget { font-size: 1em; }
361
+ .cmb_element .ui-widget input, .cmb_element .ui-widget select, .cmb_element .ui-widget textarea, .cmb_element .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
362
+ .cmb_element .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
363
+ .cmb_element .ui-widget-content a { color: #222222; }
364
+ .cmb_element .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
365
+ .cmb_element .ui-widget-header a { color: #222222; }
366
+ .cmb_element .ui-state-default, .cmb_element .ui-widget-content .ui-state-default, .cmb_element .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
367
+ .cmb_element .ui-state-default a, .cmb_element .ui-state-default a:link, .cmb_element .ui-state-default a:visited { color: #555555; text-decoration: none; }
368
+ .cmb_element .ui-state-hover, .cmb_element .ui-widget-content .ui-state-hover, .cmb_element .ui-widget-header .ui-state-hover, .cmb_element .ui-state-focus, .cmb_element .ui-widget-content .ui-state-focus, .cmb_element .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
369
+ .cmb_element .ui-state-hover a, .cmb_element .ui-state-hover a:hover { color: #212121; text-decoration: none; }
370
+ .cmb_element .ui-state-active, .cmb_element .ui-widget-content .ui-state-active, .cmb_element .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
371
+ .cmb_element .ui-state-active a, .cmb_element .ui-state-active a:link, .cmb_element .ui-state-active a:visited { color: #212121; text-decoration: none; }
372
+ .cmb_element .ui-widget :active { outline: none; }
373
+ .cmb_element .ui-state-highlight, .cmb_element .ui-widget-content .ui-state-highlight, .cmb_element .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
374
+ .cmb_element .ui-state-highlight a, .cmb_element .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
375
+ .cmb_element .ui-state-error, .cmb_element .ui-widget-content .ui-state-error, .cmb_element .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
376
+ .cmb_element .ui-state-error a, .cmb_element .ui-widget-content .ui-state-error a, .cmb_element .ui-widget-header .ui-state-error a { color: #cd0a0a; }
377
+ .cmb_element .ui-state-error-text, .cmb_element .ui-widget-content .ui-state-error-text, .cmb_element .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
378
+ .cmb_element .ui-priority-primary, .cmb_element .ui-widget-content .ui-priority-primary, .cmb_element .ui-widget-header .ui-priority-primary { font-weight: bold; }
379
+ .cmb_element .ui-priority-secondary, .cmb_element .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
380
+ .cmb_element .ui-state-disabled, .cmb_element .ui-widget-content .ui-state-disabled, .cmb_element .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
381
+ .cmb_element .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
382
+ .cmb_element .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
383
+ .cmb_element .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
384
+ .cmb_element .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
385
+ .cmb_element .ui-state-hover .ui-icon, .cmb_element .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
386
+ .cmb_element .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
387
+ .cmb_element .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
388
+ .cmb_element .ui-state-error .ui-icon, .cmb_element .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
389
+ .cmb_element .ui-icon-carat-1-n { background-position: 0 0; }
390
+ .cmb_element .ui-icon-carat-1-ne { background-position: -16px 0; }
391
+ .cmb_element .ui-icon-carat-1-e { background-position: -32px 0; }
392
+ .cmb_element .ui-icon-carat-1-se { background-position: -48px 0; }
393
+ .cmb_element .ui-icon-carat-1-s { background-position: -64px 0; }
394
+ .cmb_element .ui-icon-carat-1-sw { background-position: -80px 0; }
395
+ .cmb_element .ui-icon-carat-1-w { background-position: -96px 0; }
396
+ .cmb_element .ui-icon-carat-1-nw { background-position: -112px 0; }
397
+ .cmb_element .ui-icon-carat-2-n-s { background-position: -128px 0; }
398
+ .cmb_element .ui-icon-carat-2-e-w { background-position: -144px 0; }
399
+ .cmb_element .ui-icon-triangle-1-n { background-position: 0 -16px; }
400
+ .cmb_element .ui-icon-triangle-1-ne { background-position: -16px -16px; }
401
+ .cmb_element .ui-icon-triangle-1-e { background-position: -32px -16px; }
402
+ .cmb_element .ui-icon-triangle-1-se { background-position: -48px -16px; }
403
+ .cmb_element .ui-icon-triangle-1-s { background-position: -64px -16px; }
404
+ .cmb_element .ui-icon-triangle-1-sw { background-position: -80px -16px; }
405
+ .cmb_element .ui-icon-triangle-1-w { background-position: -96px -16px; }
406
+ .cmb_element .ui-icon-triangle-1-nw { background-position: -112px -16px; }
407
+ .cmb_element .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
408
+ .cmb_element .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
409
+ .cmb_element .ui-icon-arrow-1-n { background-position: 0 -32px; }
410
+ .cmb_element .ui-icon-arrow-1-ne { background-position: -16px -32px; }
411
+ .cmb_element .ui-icon-arrow-1-e { background-position: -32px -32px; }
412
+ .cmb_element .ui-icon-arrow-1-se { background-position: -48px -32px; }
413
+ .cmb_element .ui-icon-arrow-1-s { background-position: -64px -32px; }
414
+ .cmb_element .ui-icon-arrow-1-sw { background-position: -80px -32px; }
415
+ .cmb_element .ui-icon-arrow-1-w { background-position: -96px -32px; }
416
+ .cmb_element .ui-icon-arrow-1-nw { background-position: -112px -32px; }
417
+ .cmb_element .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
418
+ .cmb_element .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
419
+ .cmb_element .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
420
+ .cmb_element .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
421
+ .cmb_element .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
422
+ .cmb_element .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
423
+ .cmb_element .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
424
+ .cmb_element .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
425
+ .cmb_element .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
426
+ .cmb_element .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
427
+ .cmb_element .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
428
+ .cmb_element .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
429
+ .cmb_element .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
430
+ .cmb_element .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
431
+ .cmb_element .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
432
+ .cmb_element .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
433
+ .cmb_element .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
434
+ .cmb_element .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
435
+ .cmb_element .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
436
+ .cmb_element .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
437
+ .cmb_element .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
438
+ .cmb_element .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
439
+ .cmb_element .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
440
+ .cmb_element .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
441
+ .cmb_element .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
442
+ .cmb_element .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
443
+ .cmb_element .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
444
+ .cmb_element .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
445
+ .cmb_element .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
446
+ .cmb_element .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
447
+ .cmb_element .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
448
+ .cmb_element .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
449
+ .cmb_element .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
450
+ .cmb_element .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
451
+ .cmb_element .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
452
+ .cmb_element .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
453
+ .cmb_element .ui-icon-arrow-4 { background-position: 0 -80px; }
454
+ .cmb_element .ui-icon-arrow-4-diag { background-position: -16px -80px; }
455
+ .cmb_element .ui-icon-extlink { background-position: -32px -80px; }
456
+ .cmb_element .ui-icon-newwin { background-position: -48px -80px; }
457
+ .cmb_element .ui-icon-refresh { background-position: -64px -80px; }
458
+ .cmb_element .ui-icon-shuffle { background-position: -80px -80px; }
459
+ .cmb_element .ui-icon-transfer-e-w { background-position: -96px -80px; }
460
+ .cmb_element .ui-icon-transferthick-e-w { background-position: -112px -80px; }
461
+ .cmb_element .ui-icon-folder-collapsed { background-position: 0 -96px; }
462
+ .cmb_element .ui-icon-folder-open { background-position: -16px -96px; }
463
+ .cmb_element .ui-icon-document { background-position: -32px -96px; }
464
+ .cmb_element .ui-icon-document-b { background-position: -48px -96px; }
465
+ .cmb_element .ui-icon-note { background-position: -64px -96px; }
466
+ .cmb_element .ui-icon-mail-closed { background-position: -80px -96px; }
467
+ .cmb_element .ui-icon-mail-open { background-position: -96px -96px; }
468
+ .cmb_element .ui-icon-suitcase { background-position: -112px -96px; }
469
+ .cmb_element .ui-icon-comment { background-position: -128px -96px; }
470
+ .cmb_element .ui-icon-person { background-position: -144px -96px; }
471
+ .cmb_element .ui-icon-print { background-position: -160px -96px; }
472
+ .cmb_element .ui-icon-trash { background-position: -176px -96px; }
473
+ .cmb_element .ui-icon-locked { background-position: -192px -96px; }
474
+ .cmb_element .ui-icon-unlocked { background-position: -208px -96px; }
475
+ .cmb_element .ui-icon-bookmark { background-position: -224px -96px; }
476
+ .cmb_element .ui-icon-tag { background-position: -240px -96px; }
477
+ .cmb_element .ui-icon-home { background-position: 0 -112px; }
478
+ .cmb_element .ui-icon-flag { background-position: -16px -112px; }
479
+ .cmb_element .ui-icon-calendar { background-position: -32px -112px; }
480
+ .cmb_element .ui-icon-cart { background-position: -48px -112px; }
481
+ .cmb_element .ui-icon-pencil { background-position: -64px -112px; }
482
+ .cmb_element .ui-icon-clock { background-position: -80px -112px; }
483
+ .cmb_element .ui-icon-disk { background-position: -96px -112px; }
484
+ .cmb_element .ui-icon-calculator { background-position: -112px -112px; }
485
+ .cmb_element .ui-icon-zoomin { background-position: -128px -112px; }
486
+ .cmb_element .ui-icon-zoomout { background-position: -144px -112px; }
487
+ .cmb_element .ui-icon-search { background-position: -160px -112px; }
488
+ .cmb_element .ui-icon-wrench { background-position: -176px -112px; }
489
+ .cmb_element .ui-icon-gear { background-position: -192px -112px; }
490
+ .cmb_element .ui-icon-heart { background-position: -208px -112px; }
491
+ .cmb_element .ui-icon-star { background-position: -224px -112px; }
492
+ .cmb_element .ui-icon-link { background-position: -240px -112px; }
493
+ .cmb_element .ui-icon-cancel { background-position: 0 -128px; }
494
+ .cmb_element .ui-icon-plus { background-position: -16px -128px; }
495
+ .cmb_element .ui-icon-plusthick { background-position: -32px -128px; }
496
+ .cmb_element .ui-icon-minus { background-position: -48px -128px; }
497
+ .cmb_element .ui-icon-minusthick { background-position: -64px -128px; }
498
+ .cmb_element .ui-icon-close { background-position: -80px -128px; }
499
+ .cmb_element .ui-icon-closethick { background-position: -96px -128px; }
500
+ .cmb_element .ui-icon-key { background-position: -112px -128px; }
501
+ .cmb_element .ui-icon-lightbulb { background-position: -128px -128px; }
502
+ .cmb_element .ui-icon-scissors { background-position: -144px -128px; }
503
+ .cmb_element .ui-icon-clipboard { background-position: -160px -128px; }
504
+ .cmb_element .ui-icon-copy { background-position: -176px -128px; }
505
+ .cmb_element .ui-icon-contact { background-position: -192px -128px; }
506
+ .cmb_element .ui-icon-image { background-position: -208px -128px; }
507
+ .cmb_element .ui-icon-video { background-position: -224px -128px; }
508
+ .cmb_element .ui-icon-script { background-position: -240px -128px; }
509
+ .cmb_element .ui-icon-alert { background-position: 0 -144px; }
510
+ .cmb_element .ui-icon-info { background-position: -16px -144px; }
511
+ .cmb_element .ui-icon-notice { background-position: -32px -144px; }
512
+ .cmb_element .ui-icon-help { background-position: -48px -144px; }
513
+ .cmb_element .ui-icon-check { background-position: -64px -144px; }
514
+ .cmb_element .ui-icon-bullet { background-position: -80px -144px; }
515
+ .cmb_element .ui-icon-radio-off { background-position: -96px -144px; }
516
+ .cmb_element .ui-icon-radio-on { background-position: -112px -144px; }
517
+ .cmb_element .ui-icon-pin-w { background-position: -128px -144px; }
518
+ .cmb_element .ui-icon-pin-s { background-position: -144px -144px; }
519
+ .cmb_element .ui-icon-play { background-position: 0 -160px; }
520
+ .cmb_element .ui-icon-pause { background-position: -16px -160px; }
521
+ .cmb_element .ui-icon-seek-next { background-position: -32px -160px; }
522
+ .cmb_element .ui-icon-seek-prev { background-position: -48px -160px; }
523
+ .cmb_element .ui-icon-seek-end { background-position: -64px -160px; }
524
+ .cmb_element .ui-icon-seek-start { background-position: -80px -160px; }
525
+ .cmb_element .ui-icon-seek-first { background-position: -80px -160px; }
526
+ .cmb_element .ui-icon-stop { background-position: -96px -160px; }
527
+ .cmb_element .ui-icon-eject { background-position: -112px -160px; }
528
+ .cmb_element .ui-icon-volume-off { background-position: -128px -160px; }
529
+ .cmb_element .ui-icon-volume-on { background-position: -144px -160px; }
530
+ .cmb_element .ui-icon-power { background-position: 0 -176px; }
531
+ .cmb_element .ui-icon-signal-diag { background-position: -16px -176px; }
532
+ .cmb_element .ui-icon-signal { background-position: -32px -176px; }
533
+ .cmb_element .ui-icon-battery-0 { background-position: -48px -176px; }
534
+ .cmb_element .ui-icon-battery-1 { background-position: -64px -176px; }
535
+ .cmb_element .ui-icon-battery-2 { background-position: -80px -176px; }
536
+ .cmb_element .ui-icon-battery-3 { background-position: -96px -176px; }
537
+ .cmb_element .ui-icon-circle-plus { background-position: 0 -192px; }
538
+ .cmb_element .ui-icon-circle-minus { background-position: -16px -192px; }
539
+ .cmb_element .ui-icon-circle-close { background-position: -32px -192px; }
540
+ .cmb_element .ui-icon-circle-triangle-e { background-position: -48px -192px; }
541
+ .cmb_element .ui-icon-circle-triangle-s { background-position: -64px -192px; }
542
+ .cmb_element .ui-icon-circle-triangle-w { background-position: -80px -192px; }
543
+ .cmb_element .ui-icon-circle-triangle-n { background-position: -96px -192px; }
544
+ .cmb_element .ui-icon-circle-arrow-e { background-position: -112px -192px; }
545
+ .cmb_element .ui-icon-circle-arrow-s { background-position: -128px -192px; }
546
+ .cmb_element .ui-icon-circle-arrow-w { background-position: -144px -192px; }
547
+ .cmb_element .ui-icon-circle-arrow-n { background-position: -160px -192px; }
548
+ .cmb_element .ui-icon-circle-zoomin { background-position: -176px -192px; }
549
+ .cmb_element .ui-icon-circle-zoomout { background-position: -192px -192px; }
550
+ .cmb_element .ui-icon-circle-check { background-position: -208px -192px; }
551
+ .cmb_element .ui-icon-circlesmall-plus { background-position: 0 -208px; }
552
+ .cmb_element .ui-icon-circlesmall-minus { background-position: -16px -208px; }
553
+ .cmb_element .ui-icon-circlesmall-close { background-position: -32px -208px; }
554
+ .cmb_element .ui-icon-squaresmall-plus { background-position: -48px -208px; }
555
+ .cmb_element .ui-icon-squaresmall-minus { background-position: -64px -208px; }
556
+ .cmb_element .ui-icon-squaresmall-close { background-position: -80px -208px; }
557
+ .cmb_element .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
558
+ .cmb_element .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
559
+ .cmb_element .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
560
+ .cmb_element .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
561
+ .cmb_element .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
562
+ .cmb_element .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
563
+ .cmb_element .ui-corner-all, .cmb_element .ui-corner-top, .cmb_element .ui-corner-left, .cmb_element .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
564
+ .cmb_element .ui-corner-all, .cmb_element .ui-corner-top, .cmb_element .ui-corner-right, .cmb_element .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
565
+ .cmb_element .ui-corner-all, .cmb_element .ui-corner-bottom, .cmb_element .ui-corner-left, .cmb_element .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
566
+ .cmb_element .ui-corner-all, .cmb_element .ui-corner-bottom, .cmb_element .ui-corner-right, .cmb_element .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
567
+ .cmb_element .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
568
+ .cmb_element .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }
569
+ .cmb_element .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
570
+ .cmb_element .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
571
+ .cmb_element .ui-datepicker .ui-datepicker-prev, .cmb_element .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
572
+ .cmb_element .ui-datepicker .ui-datepicker-prev-hover, .cmb_element .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
573
+ .cmb_element .ui-datepicker .ui-datepicker-prev { left:2px; }
574
+ .cmb_element .ui-datepicker .ui-datepicker-next { right:2px; }
575
+ .cmb_element .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
576
+ .cmb_element .ui-datepicker .ui-datepicker-next-hover { right:1px; }
577
+ .cmb_element .ui-datepicker .ui-datepicker-prev span, .cmb_element .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
578
+ .cmb_element .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
579
+ .cmb_element .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
580
+ .cmb_element .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
581
+ .cmb_element .ui-datepicker select.ui-datepicker-month,
582
+ .cmb_element .ui-datepicker select.ui-datepicker-year { width: 49%;}
583
+ .cmb_element .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
584
+ .cmb_element .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
585
+ .cmb_element .ui-datepicker td { border: 0; padding: 1px; }
586
+ .cmb_element .ui-datepicker td span, .cmb_element .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
587
+ .cmb_element .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
588
+ .cmb_element .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
589
+ .cmb_element .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
590
+ .cmb_element .ui-datepicker.ui-datepicker-multi { width:auto; }
591
+ .cmb_element .ui-datepicker-multi .ui-datepicker-group { float:left; }
592
+ .cmb_element .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
593
+ .cmb_element .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
594
+ .cmb_element .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
595
+ .cmb_element .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
596
+ .cmb_element .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
597
+ .cmb_element .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
598
+ .cmb_element .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
599
+ .cmb_element .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
600
+ .cmb_element .ui-datepicker-rtl { direction: rtl; }
601
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
602
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
603
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
604
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
605
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
606
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
607
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
608
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-group { float:right; }
609
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
610
+ .cmb_element .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
611
+ .cmb_element .ui-datepicker-cover {
612
+ display: none; /*sorry for IE5*/
613
+ display/**/: block; /*sorry for IE5*/
614
+ position: absolute; /*must have*/
615
+ z-index: -1; /*must have*/
616
+ filter: mask(); /*must have*/
617
+ top: -4px; /*must have*/
618
+ left: -4px; /*must have*/
619
+ width: 200px; /*must have*/
620
+ height: 200px; /*must have*/
621
+ }
cmb/style.min.css ADDED
@@ -0,0 +1 @@
 
1
+ table.cmb_metabox{clear:both}.post-new-php table.cmb_metabox .cmb-nested-table td,.post-new-php table.cmb_metabox .repeatable-group th,.post-new-php table.cmb_metabox .repeatable-group:first-of-type,.post-php table.cmb_metabox .cmb-nested-table td,.post-php table.cmb_metabox .repeatable-group th,.post-php table.cmb_metabox .repeatable-group:first-of-type,table.cmb_metabox tbody>tr:first-of-type>td,table.cmb_metabox tbody>tr:first-of-type>th,table.cmb_metabox>tr:first-of-type>td,table.cmb_metabox>tr:first-of-type>th{border:0}.post-new-php table.cmb_metabox .repeatable-group,.post-new-php table.cmb_metabox td,.post-new-php table.cmb_metabox th,.post-php table.cmb_metabox .repeatable-group,.post-php table.cmb_metabox td,.post-php table.cmb_metabox th{border-top:1px solid #E9E9E9}.repeatable-group th{padding:5px}.repeatable-group .shift-rows{text-decoration:none;margin-right:5px;font-size:1.2em}.repeatable-group .cmb_upload_button{float:right}#poststuff .repeatable-group h2{margin:0}.cmb-group-title h4{font-size:1.2em;font-weight:500;border-bottom:1px solid #ddd}.post-new-php table.cmb_metabox th,.post-php table.cmb_metabox th{text-align:right;font-weight:700}.post-new-php table.cmb_metabox table th,.post-php table.cmb_metabox table th{text-align:left}table.cmb_metabox th label{margin-top:5px;display:block}p.cmb_metabox_description{color:#AAA;font-style:italic;margin:2px 0!important}span.cmb_metabox_description{color:#AAA;font-style:italic}table.cmb_metabox input,table.cmb_metabox textarea{font-size:14px;padding:5px}table.cmb_metabox input[type=text],table.cmb_metabox textarea{width:97%}table.cmb_metabox textarea.cmb_textarea_code{font-family:Consolas,Monaco,monospace;line-height:16px}table.cmb_metabox input.cmb_text_small,table.cmb_metabox input.cmb_timepicker{width:100px;margin-right:15px}table.cmb_metabox input.cmb_text_money{width:90px;margin-right:15px}table.cmb_metabox input.cmb_text_medium{width:230px;margin-right:15px}table.cmb_metabox input.cmb_upload_file{width:65%}table.cmb_metabox input.ed_button{padding:2px 4px}table.cmb_metabox li{font-size:14px;margin:1px 0 5px;line-height:16px}table.cmb_metabox ul{padding-top:5px;margin:0}table.cmb_metabox select{font-size:14px;margin-top:3px}table.cmb_metabox input:focus,table.cmb_metabox textarea:focus{background:#fffff8}.cmb_metabox_title{margin:0 0 5px;padding:5px 0 0}.edit-tags-php .cmb_metabox_title,.profile-php .cmb_metabox_title,.user-edit-php .cmb_metabox_title{margin-left:-10px}.cmb-inline ul{padding:4px 0 0}.cmb-inline li{display:inline-block;padding-right:18px}table.cmb_metabox input[type=checkbox],table.cmb_metabox input[type=radio]{margin:0 5px 0 0;padding:0}table.cmb_metabox .mceLayout{border:1px solid #DFDFDF!important}table.cmb_metabox .mceIframeContainer{background:#FFF}table.cmb_metabox .meta_mce{width:97%}table.cmb_metabox .meta_mce textarea{width:100%}table.cmb_metabox .cmb_media_status{margin:10px 0 0}table.cmb_metabox .cmb_media_status .img_status{clear:none;float:left;display:inline-block;margin-right:10px;width:auto}table.cmb_metabox .cmb-type-file_list .cmb_media_status .img_status{clear:none;float:left;margin-right:10px;width:auto}table.cmb_metabox .cmb_media_status .embed_status,table.cmb_metabox .cmb_media_status .img_status{position:relative}table.cmb_metabox .cmb_media_status .embed_status,table.cmb_metabox .cmb_media_status .img_status img{border:1px solid #DFDFDF;background:#FAFAFA;max-width:350px;padding:5px;-moz-border-radius:2px;border-radius:2px}table.cmb_metabox .cmb_media_status .embed_status{float:left;max-width:800px}table.cmb_metabox .cmb_media_status .embed_status .cmb_remove_file_button,table.cmb_metabox .cmb_media_status .img_status .cmb_remove_file_button{text-indent:-9999px;background:url(images/ico-delete.png);width:16px;height:16px;position:absolute;top:-5px;left:-5px}table.cmb_metabox .attach_list li{clear:both;display:inline-block;margin-bottom:25px;width:100%}table.cmb_metabox .attach_list li img{float:left;margin-right:10px}#side-sortables table.cmb_metabox input[type=text],.inner-sidebar table.cmb_metabox input[type=text],table.cmb_metabox textarea{width:95%}#side-sortables table.cmb_metabox .cmb_media_status .embed_status img,#side-sortables table.cmb_metabox .cmb_media_status .img_status img,.inner-sidebar table.cmb_metabox .cmb_media_status .embed_status img,.inner-sidebar table.cmb_metabox .cmb_media_status .img_status img{width:90%}#side-sortables table.cmb_metabox label,.inner-sidebar table.cmb_metabox label{display:block;font-weight:700;padding:0 0 5px}#side-sortables table.cmb_metabox .cmb_list label,.inner-sidebar table.cmb_metabox .cmb_list label{display:inline;font-weight:400}#side-sortables table.cmb_metabox .cmb_metabox_description,.inner-sidebar table.cmb_metabox .cmb_metabox_description{display:block;padding:7px 0 0}#side-sortables table.cmb_metabox .cmb_metabox_title,.inner-sidebar table.cmb_metabox .cmb_metabox_title{font-size:1.2em;font-style:italic}.postbox table.cmb_metabox .cmb-spinner{float:left}table.cmb_metabox .wp-color-result,table.cmb_metabox .wp-picker-input-wrap{vertical-align:middle}table.cmb_metabox .wp-color-result,table.cmb_metabox .wp-picker-container{margin:0 10px 0 0}div.time-picker{position:absolute;height:191px;width:6em;overflow:auto;background:#fff;border:1px solid #aaa;z-index:99;margin:0}div.time-picker-12hours{width:8em}div.time-picker ul{list-style-type:none;margin:0;padding:0}div.time-picker li{cursor:pointer;height:10px;font:14px/1 Helvetica,Arial,sans-serif;padding:4px 3px}div.time-picker li.selected{background:#0063CE;color:#fff}.cmb_element .ui-helper-hidden{display:none}.cmb_element .ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}.cmb_element .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.cmb_element .ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}* html .ui-helper-clearfix{height:1%}.cmb_element .ui-helper-clearfix{display:block}.cmb_element .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.cmb_element .ui-state-disabled{cursor:default!important}.cmb_element .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.cmb_element .ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.cmb_element .ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.cmb_element .ui-widget .ui-widget{font-size:1em}.cmb_element .ui-widget button,.cmb_element .ui-widget input,.cmb_element .ui-widget select,.cmb_element .ui-widget textarea{font-family:Verdana,Arial,sans-serif;font-size:1em}.cmb_element .ui-widget-content{border:1px solid #aaa;background:#fff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;color:#222}.cmb_element .ui-widget-content a{color:#222}.cmb_element .ui-widget-header{border:1px solid #aaa;background:#ccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222;font-weight:700}.cmb_element .ui-widget-header a{color:#222}.cmb_element .ui-state-default,.cmb_element .ui-widget-content .ui-state-default,.cmb_element .ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:400;color:#555}.cmb_element .ui-state-default a,.cmb_element .ui-state-default a:link,.cmb_element .ui-state-default a:visited{color:#555;text-decoration:none}.cmb_element .ui-state-focus,.cmb_element .ui-state-hover,.cmb_element .ui-widget-content .ui-state-focus,.cmb_element .ui-widget-content .ui-state-hover,.cmb_element .ui-widget-header .ui-state-focus,.cmb_element .ui-widget-header .ui-state-hover{border:1px solid #999;background:#dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.cmb_element .ui-state-hover a,.cmb_element .ui-state-hover a:hover{color:#212121;text-decoration:none}.cmb_element .ui-state-active,.cmb_element .ui-widget-content .ui-state-active,.cmb_element .ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.cmb_element .ui-state-active a,.cmb_element .ui-state-active a:link,.cmb_element .ui-state-active a:visited{color:#212121;text-decoration:none}.cmb_element .ui-widget :active{outline:0}.cmb_element .ui-state-highlight,.cmb_element .ui-widget-content .ui-state-highlight,.cmb_element .ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.cmb_element .ui-state-highlight a,.cmb_element .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.cmb_element .ui-state-error,.cmb_element .ui-widget-content .ui-state-error,.cmb_element .ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.cmb_element .ui-state-error a,.cmb_element .ui-state-error-text,.cmb_element .ui-widget-content .ui-state-error a,.cmb_element .ui-widget-content .ui-state-error-text,.cmb_element .ui-widget-header .ui-state-error a,.cmb_element .ui-widget-header .ui-state-error-text{color:#cd0a0a}.cmb_element .ui-priority-primary,.cmb_element .ui-widget-content .ui-priority-primary,.cmb_element .ui-widget-header .ui-priority-primary{font-weight:700}.cmb_element .ui-priority-secondary,.cmb_element .ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.cmb_element .ui-state-disabled,.cmb_element .ui-widget-content .ui-state-disabled,.cmb_element .ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.cmb_element .ui-icon{width:16px;height:16px;background-image:url(images/ui-icons_222222_256x240.png)}.cmb_element .ui-widget-content .ui-icon,.cmb_element .ui-widget-header .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.cmb_element .ui-state-default .ui-icon{background-image:url(images/ui-icons_888888_256x240.png)}.cmb_element .ui-state-active .ui-icon,.cmb_element .ui-state-focus .ui-icon,.cmb_element .ui-state-hover .ui-icon{background-image:url(images/ui-icons_454545_256x240.png)}.cmb_element .ui-state-highlight .ui-icon{background-image:url(images/ui-icons_2e83ff_256x240.png)}.cmb_element .ui-state-error .ui-icon,.cmb_element .ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cd0a0a_256x240.png)}.cmb_element .ui-icon-carat-1-n{background-position:0 0}.cmb_element .ui-icon-carat-1-ne{background-position:-16px 0}.cmb_element .ui-icon-carat-1-e{background-position:-32px 0}.cmb_element .ui-icon-carat-1-se{background-position:-48px 0}.cmb_element .ui-icon-carat-1-s{background-position:-64px 0}.cmb_element .ui-icon-carat-1-sw{background-position:-80px 0}.cmb_element .ui-icon-carat-1-w{background-position:-96px 0}.cmb_element .ui-icon-carat-1-nw{background-position:-112px 0}.cmb_element .ui-icon-carat-2-n-s{background-position:-128px 0}.cmb_element .ui-icon-carat-2-e-w{background-position:-144px 0}.cmb_element .ui-icon-triangle-1-n{background-position:0 -16px}.cmb_element .ui-icon-triangle-1-ne{background-position:-16px -16px}.cmb_element .ui-icon-triangle-1-e{background-position:-32px -16px}.cmb_element .ui-icon-triangle-1-se{background-position:-48px -16px}.cmb_element .ui-icon-triangle-1-s{background-position:-64px -16px}.cmb_element .ui-icon-triangle-1-sw{background-position:-80px -16px}.cmb_element .ui-icon-triangle-1-w{background-position:-96px -16px}.cmb_element .ui-icon-triangle-1-nw{background-position:-112px -16px}.cmb_element .ui-icon-triangle-2-n-s{background-position:-128px -16px}.cmb_element .ui-icon-triangle-2-e-w{background-position:-144px -16px}.cmb_element .ui-icon-arrow-1-n{background-position:0 -32px}.cmb_element .ui-icon-arrow-1-ne{background-position:-16px -32px}.cmb_element .ui-icon-arrow-1-e{background-position:-32px -32px}.cmb_element .ui-icon-arrow-1-se{background-position:-48px -32px}.cmb_element .ui-icon-arrow-1-s{background-position:-64px -32px}.cmb_element .ui-icon-arrow-1-sw{background-position:-80px -32px}.cmb_element .ui-icon-arrow-1-w{background-position:-96px -32px}.cmb_element .ui-icon-arrow-1-nw{background-position:-112px -32px}.cmb_element .ui-icon-arrow-2-n-s{background-position:-128px -32px}.cmb_element .ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.cmb_element .ui-icon-arrow-2-e-w{background-position:-160px -32px}.cmb_element .ui-icon-arrow-2-se-nw{background-position:-176px -32px}.cmb_element .ui-icon-arrowstop-1-n{background-position:-192px -32px}.cmb_element .ui-icon-arrowstop-1-e{background-position:-208px -32px}.cmb_element .ui-icon-arrowstop-1-s{background-position:-224px -32px}.cmb_element .ui-icon-arrowstop-1-w{background-position:-240px -32px}.cmb_element .ui-icon-arrowthick-1-n{background-position:0 -48px}.cmb_element .ui-icon-arrowthick-1-ne{background-position:-16px -48px}.cmb_element .ui-icon-arrowthick-1-e{background-position:-32px -48px}.cmb_element .ui-icon-arrowthick-1-se{background-position:-48px -48px}.cmb_element .ui-icon-arrowthick-1-s{background-position:-64px -48px}.cmb_element .ui-icon-arrowthick-1-sw{background-position:-80px -48px}.cmb_element .ui-icon-arrowthick-1-w{background-position:-96px -48px}.cmb_element .ui-icon-arrowthick-1-nw{background-position:-112px -48px}.cmb_element .ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.cmb_element .ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.cmb_element .ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.cmb_element .ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.cmb_element .ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.cmb_element .ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.cmb_element .ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.cmb_element .ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.cmb_element .ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.cmb_element .ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.cmb_element .ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.cmb_element .ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.cmb_element .ui-icon-arrowreturn-1-w{background-position:-64px -64px}.cmb_element .ui-icon-arrowreturn-1-n{background-position:-80px -64px}.cmb_element .ui-icon-arrowreturn-1-e{background-position:-96px -64px}.cmb_element .ui-icon-arrowreturn-1-s{background-position:-112px -64px}.cmb_element .ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.cmb_element .ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.cmb_element .ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.cmb_element .ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.cmb_element .ui-icon-arrow-4{background-position:0 -80px}.cmb_element .ui-icon-arrow-4-diag{background-position:-16px -80px}.cmb_element .ui-icon-extlink{background-position:-32px -80px}.cmb_element .ui-icon-newwin{background-position:-48px -80px}.cmb_element .ui-icon-refresh{background-position:-64px -80px}.cmb_element .ui-icon-shuffle{background-position:-80px -80px}.cmb_element .ui-icon-transfer-e-w{background-position:-96px -80px}.cmb_element .ui-icon-transferthick-e-w{background-position:-112px -80px}.cmb_element .ui-icon-folder-collapsed{background-position:0 -96px}.cmb_element .ui-icon-folder-open{background-position:-16px -96px}.cmb_element .ui-icon-document{background-position:-32px -96px}.cmb_element .ui-icon-document-b{background-position:-48px -96px}.cmb_element .ui-icon-note{background-position:-64px -96px}.cmb_element .ui-icon-mail-closed{background-position:-80px -96px}.cmb_element .ui-icon-mail-open{background-position:-96px -96px}.cmb_element .ui-icon-suitcase{background-position:-112px -96px}.cmb_element .ui-icon-comment{background-position:-128px -96px}.cmb_element .ui-icon-person{background-position:-144px -96px}.cmb_element .ui-icon-print{background-position:-160px -96px}.cmb_element .ui-icon-trash{background-position:-176px -96px}.cmb_element .ui-icon-locked{background-position:-192px -96px}.cmb_element .ui-icon-unlocked{background-position:-208px -96px}.cmb_element .ui-icon-bookmark{background-position:-224px -96px}.cmb_element .ui-icon-tag{background-position:-240px -96px}.cmb_element .ui-icon-home{background-position:0 -112px}.cmb_element .ui-icon-flag{background-position:-16px -112px}.cmb_element .ui-icon-calendar{background-position:-32px -112px}.cmb_element .ui-icon-cart{background-position:-48px -112px}.cmb_element .ui-icon-pencil{background-position:-64px -112px}.cmb_element .ui-icon-clock{background-position:-80px -112px}.cmb_element .ui-icon-disk{background-position:-96px -112px}.cmb_element .ui-icon-calculator{background-position:-112px -112px}.cmb_element .ui-icon-zoomin{background-position:-128px -112px}.cmb_element .ui-icon-zoomout{background-position:-144px -112px}.cmb_element .ui-icon-search{background-position:-160px -112px}.cmb_element .ui-icon-wrench{background-position:-176px -112px}.cmb_element .ui-icon-gear{background-position:-192px -112px}.cmb_element .ui-icon-heart{background-position:-208px -112px}.cmb_element .ui-icon-star{background-position:-224px -112px}.cmb_element .ui-icon-link{background-position:-240px -112px}.cmb_element .ui-icon-cancel{background-position:0 -128px}.cmb_element .ui-icon-plus{background-position:-16px -128px}.cmb_element .ui-icon-plusthick{background-position:-32px -128px}.cmb_element .ui-icon-minus{background-position:-48px -128px}.cmb_element .ui-icon-minusthick{background-position:-64px -128px}.cmb_element .ui-icon-close{background-position:-80px -128px}.cmb_element .ui-icon-closethick{background-position:-96px -128px}.cmb_element .ui-icon-key{background-position:-112px -128px}.cmb_element .ui-icon-lightbulb{background-position:-128px -128px}.cmb_element .ui-icon-scissors{background-position:-144px -128px}.cmb_element .ui-icon-clipboard{background-position:-160px -128px}.cmb_element .ui-icon-copy{background-position:-176px -128px}.cmb_element .ui-icon-contact{background-position:-192px -128px}.cmb_element .ui-icon-image{background-position:-208px -128px}.cmb_element .ui-icon-video{background-position:-224px -128px}.cmb_element .ui-icon-script{background-position:-240px -128px}.cmb_element .ui-icon-alert{background-position:0 -144px}.cmb_element .ui-icon-info{background-position:-16px -144px}.cmb_element .ui-icon-notice{background-position:-32px -144px}.cmb_element .ui-icon-help{background-position:-48px -144px}.cmb_element .ui-icon-check{background-position:-64px -144px}.cmb_element .ui-icon-bullet{background-position:-80px -144px}.cmb_element .ui-icon-radio-off{background-position:-96px -144px}.cmb_element .ui-icon-radio-on{background-position:-112px -144px}.cmb_element .ui-icon-pin-w{background-position:-128px -144px}.cmb_element .ui-icon-pin-s{background-position:-144px -144px}.cmb_element .ui-icon-play{background-position:0 -160px}.cmb_element .ui-icon-pause{background-position:-16px -160px}.cmb_element .ui-icon-seek-next{background-position:-32px -160px}.cmb_element .ui-icon-seek-prev{background-position:-48px -160px}.cmb_element .ui-icon-seek-end{background-position:-64px -160px}.cmb_element .ui-icon-seek-first,.cmb_element .ui-icon-seek-start{background-position:-80px -160px}.cmb_element .ui-icon-stop{background-position:-96px -160px}.cmb_element .ui-icon-eject{background-position:-112px -160px}.cmb_element .ui-icon-volume-off{background-position:-128px -160px}.cmb_element .ui-icon-volume-on{background-position:-144px -160px}.cmb_element .ui-icon-power{background-position:0 -176px}.cmb_element .ui-icon-signal-diag{background-position:-16px -176px}.cmb_element .ui-icon-signal{background-position:-32px -176px}.cmb_element .ui-icon-battery-0{background-position:-48px -176px}.cmb_element .ui-icon-battery-1{background-position:-64px -176px}.cmb_element .ui-icon-battery-2{background-position:-80px -176px}.cmb_element .ui-icon-battery-3{background-position:-96px -176px}.cmb_element .ui-icon-circle-plus{background-position:0 -192px}.cmb_element .ui-icon-circle-minus{background-position:-16px -192px}.cmb_element .ui-icon-circle-close{background-position:-32px -192px}.cmb_element .ui-icon-circle-triangle-e{background-position:-48px -192px}.cmb_element .ui-icon-circle-triangle-s{background-position:-64px -192px}.cmb_element .ui-icon-circle-triangle-w{background-position:-80px -192px}.cmb_element .ui-icon-circle-triangle-n{background-position:-96px -192px}.cmb_element .ui-icon-circle-arrow-e{background-position:-112px -192px}.cmb_element .ui-icon-circle-arrow-s{background-position:-128px -192px}.cmb_element .ui-icon-circle-arrow-w{background-position:-144px -192px}.cmb_element .ui-icon-circle-arrow-n{background-position:-160px -192px}.cmb_element .ui-icon-circle-zoomin{background-position:-176px -192px}.cmb_element .ui-icon-circle-zoomout{background-position:-192px -192px}.cmb_element .ui-icon-circle-check{background-position:-208px -192px}.cmb_element .ui-icon-circlesmall-plus{background-position:0 -208px}.cmb_element .ui-icon-circlesmall-minus{background-position:-16px -208px}.cmb_element .ui-icon-circlesmall-close{background-position:-32px -208px}.cmb_element .ui-icon-squaresmall-plus{background-position:-48px -208px}.cmb_element .ui-icon-squaresmall-minus{background-position:-64px -208px}.cmb_element .ui-icon-squaresmall-close{background-position:-80px -208px}.cmb_element .ui-icon-grip-dotted-vertical{background-position:0 -224px}.cmb_element .ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.cmb_element .ui-icon-grip-solid-vertical{background-position:-32px -224px}.cmb_element .ui-icon-grip-solid-horizontal{background-position:-48px -224px}.cmb_element .ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.cmb_element .ui-icon-grip-diagonal-se{background-position:-80px -224px}.cmb_element .ui-corner-all,.cmb_element .ui-corner-left,.cmb_element .ui-corner-tl,.cmb_element .ui-corner-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;-khtml-border-top-left-radius:4px;border-top-left-radius:4px}.cmb_element .ui-corner-all,.cmb_element .ui-corner-right,.cmb_element .ui-corner-top,.cmb_element .ui-corner-tr{-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;-khtml-border-top-right-radius:4px;border-top-right-radius:4px}.cmb_element .ui-corner-all,.cmb_element .ui-corner-bl,.cmb_element .ui-corner-bottom,.cmb_element .ui-corner-left{-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px}.cmb_element .ui-corner-all,.cmb_element .ui-corner-bottom,.cmb_element .ui-corner-br,.cmb_element .ui-corner-right{-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;-khtml-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.cmb_element .ui-widget-overlay{background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.cmb_element .ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}.cmb_element .ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.cmb_element .ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.cmb_element .ui-datepicker .ui-datepicker-next,.cmb_element .ui-datepicker .ui-datepicker-prev{position:absolute;top:2px;width:1.8em;height:1.8em}.cmb_element .ui-datepicker .ui-datepicker-next-hover,.cmb_element .ui-datepicker .ui-datepicker-prev-hover{top:1px}.cmb_element .ui-datepicker .ui-datepicker-prev{left:2px}.cmb_element .ui-datepicker .ui-datepicker-next{right:2px}.cmb_element .ui-datepicker .ui-datepicker-prev-hover{left:1px}.cmb_element .ui-datepicker .ui-datepicker-next-hover{right:1px}.cmb_element .ui-datepicker .ui-datepicker-next span,.cmb_element .ui-datepicker .ui-datepicker-prev span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.cmb_element .ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.cmb_element .ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.cmb_element .ui-datepicker select.ui-datepicker-month-year{width:100%}.cmb_element .ui-datepicker select.ui-datepicker-month,.cmb_element .ui-datepicker select.ui-datepicker-year{width:49%}.cmb_element .ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.cmb_element .ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0}.cmb_element .ui-datepicker td{border:0;padding:1px}.cmb_element .ui-datepicker td a,.cmb_element .ui-datepicker td span{display:block;padding:.2em;text-align:right;text-decoration:none}.cmb_element .ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.cmb_element .ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible}.cmb_element .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.cmb_element .ui-datepicker.ui-datepicker-multi{width:auto}.cmb_element .ui-datepicker-multi .ui-datepicker-group{float:left}.cmb_element .ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.cmb_element .ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.cmb_element .ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.cmb_element .ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.cmb_element .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.cmb_element .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.cmb_element .ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.cmb_element .ui-datepicker-row-break{clear:both;width:100%;font-size:0}.cmb_element .ui-datepicker-rtl{direction:rtl}.cmb_element .ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.cmb_element .ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.cmb_element .ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.cmb_element .ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.cmb_element .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.cmb_element .ui-datepicker-rtl .ui-datepicker-group{float:right}.cmb_element .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.cmb_element .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.cmb_element .ui-datepicker-cover{display:none;display:block;position:absolute;z-index:-1;filter:mask();top:-4px;left:-4px;width:200px;height:200px}
gallery.php CHANGED
@@ -39,6 +39,7 @@ function kadence_shortcode_gallery($attr) {
39
  'columns' => 3,
40
  'size' => 'full',
41
  'include' => '',
 
42
  'exclude' => ''
43
  ), $attr));
44
 
@@ -75,7 +76,7 @@ function kadence_shortcode_gallery($attr) {
75
  return $output;
76
  }
77
  // NORMAL
78
- $output .= '<div id="kad-wp-gallery'.$gallery_rn.'" class="kad-wp-gallery kad-light-wp-gallery clearfix rowtight">';
79
  if ($columns == '2') {$itemsize = 'tcol-lg-6 tcol-md-6 tcol-sm-6 tcol-xs-12 tcol-ss-12'; $imgsize = 600;}
80
  else if ($columns == '1') {$itemsize = 'tcol-lg-12 tcol-md-12 tcol-sm-12 tcol-xs-12 tcol-ss-12'; $imgsize = 1200;}
81
  else if ($columns == '3'){ $itemsize = 'tcol-lg-4 tcol-md-4 tcol-sm-4 tcol-xs-6 tcol-ss-12'; $imgsize = 400;}
@@ -89,10 +90,14 @@ function kadence_shortcode_gallery($attr) {
89
  $attachment_url = wp_get_attachment_url($id);
90
  $image = aq_resize($attachment_url, $imgsize, $imgsize, true);
91
  if(empty($image)) {$image = $attachment_url;}
 
 
 
 
92
  $link = isset($attr['link']) && 'post' == $attr['link'] ? wp_get_attachment_link($id, $size, true, false) : wp_get_attachment_link($id, $size, false, false);
93
 
94
- $output .= '<div class="'.$itemsize.' g_item"><div class="grid_item kad_gallery_fade_in gallery_item"><a href="'.$attachment_url.'" rel="lightbox[pp_gal]" class="lightboxhover">
95
- <img src="'.$image.'" alt="'.esc_attr($attachment->post_excerpt).'" class="light-dropshaddow"/>';
96
  $output .= '</a>';
97
  $output .= '</div></div>';
98
  }
39
  'columns' => 3,
40
  'size' => 'full',
41
  'include' => '',
42
+ 'lightboxsize' => 'full',
43
  'exclude' => ''
44
  ), $attr));
45
 
76
  return $output;
77
  }
78
  // NORMAL
79
+ $output .= '<div id="kad-wp-gallery'.esc_attr($gallery_rn).'" class="kad-wp-gallery kad-light-wp-gallery clearfix rowtight">';
80
  if ($columns == '2') {$itemsize = 'tcol-lg-6 tcol-md-6 tcol-sm-6 tcol-xs-12 tcol-ss-12'; $imgsize = 600;}
81
  else if ($columns == '1') {$itemsize = 'tcol-lg-12 tcol-md-12 tcol-sm-12 tcol-xs-12 tcol-ss-12'; $imgsize = 1200;}
82
  else if ($columns == '3'){ $itemsize = 'tcol-lg-4 tcol-md-4 tcol-sm-4 tcol-xs-6 tcol-ss-12'; $imgsize = 400;}
90
  $attachment_url = wp_get_attachment_url($id);
91
  $image = aq_resize($attachment_url, $imgsize, $imgsize, true);
92
  if(empty($image)) {$image = $attachment_url;}
93
+ if($lightboxsize != 'full') {
94
+ $attachment_url = wp_get_attachment_image_src( $id, $lightboxsize);
95
+ $attachment_url = $attachment_url[0];
96
+ }
97
  $link = isset($attr['link']) && 'post' == $attr['link'] ? wp_get_attachment_link($id, $size, true, false) : wp_get_attachment_link($id, $size, false, false);
98
 
99
+ $output .= '<div class="'.esc_attr($itemsize).' g_item"><div class="grid_item kad_gallery_fade_in gallery_item"><a href="'.esc_url($attachment_url).'" rel="lightbox[pp_gal]" class="lightboxhover">
100
+ <img src="'.esc_url($image).'" alt="'.esc_attr($attachment->post_excerpt).'" class="light-dropshaddow"/>';
101
  $output .= '</a>';
102
  $output .= '</div></div>';
103
  }
languages/de_DE.mo ADDED
Binary file
languages/de_DE.po ADDED
@@ -0,0 +1,4333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-10 00:32-0700\n"
6
+ "PO-Revision-Date: 2015-01-10 00:32-0700\n"
7
+ "Last-Translator: Georg Trixl <schick_post@gmx.net>\n"
8
+ "Language-Team: \n"
9
+ "Language: de_DE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 1.6.10\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
+ "esc_attr__;esc_attr_e\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+
23
+ # @ cmb
24
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
25
+ msgid "Please Try Again"
26
+ msgstr "Bitte nochmals versuchen"
27
+
28
+ # @ cmb
29
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
30
+ msgid "Remove Embed"
31
+ msgstr "Entferne Einbettung"
32
+
33
+ # @ cmb
34
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
35
+ #, php-format
36
+ msgid "No oEmbed Results Found for %s. View more info at"
37
+ msgstr "Keine eingebetteten Ergebnisse gefunden für %s. Mehr Infos unter"
38
+
39
+ # @ virtue
40
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
41
+ #, fuzzy
42
+ msgid "Add Group"
43
+ msgstr "Symbol hinzufügen"
44
+
45
+ # @ virtue
46
+ # @ redux-framework
47
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
48
+ #, fuzzy
49
+ msgid "Remove Group"
50
+ msgstr "Entfernen"
51
+
52
+ # @ virtue
53
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
54
+ #, fuzzy
55
+ msgid "Add Row"
56
+ msgstr "Symbol hinzufügen"
57
+
58
+ # @ virtue
59
+ # @ redux-framework
60
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
61
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
62
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
63
+ msgid "Remove"
64
+ msgstr "Entfernen"
65
+
66
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
67
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
68
+ msgid "No terms"
69
+ msgstr ""
70
+
71
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
72
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
73
+ msgid "Add or Upload File"
74
+ msgstr ""
75
+
76
+ # @ virtue
77
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
78
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
79
+ #, fuzzy
80
+ msgid "Remove Image"
81
+ msgstr "Entferne Bild"
82
+
83
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
84
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
85
+ msgid "File:"
86
+ msgstr ""
87
+
88
+ # @ redux-framework
89
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
90
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
91
+ msgid "Download"
92
+ msgstr "Herunterladen"
93
+
94
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
95
+ msgid "Clear"
96
+ msgstr ""
97
+
98
+ # @ virtue
99
+ # @ redux-framework
100
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
101
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
102
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
103
+ #: ../metaboxes.php:489
104
+ msgid "Default"
105
+ msgstr "Standard"
106
+
107
+ # @ virtue
108
+ #: ../cmb/init.php:260
109
+ #, fuzzy
110
+ msgid "Select Color"
111
+ msgstr "Wähle ein Symbol"
112
+
113
+ # @ virtue
114
+ #: ../cmb/init.php:261
115
+ #, fuzzy
116
+ msgid "Current Color"
117
+ msgstr "Hauptfarbe"
118
+
119
+ # @ woocommerce
120
+ #: ../cmb/init.php:288
121
+ #, fuzzy
122
+ msgid "Select / Deselect All"
123
+ msgstr "Wählen Sie ein Bundeslandt&hellip;"
124
+
125
+ #: ../cmb/init.php:1178
126
+ msgid "Save"
127
+ msgstr ""
128
+
129
+ # @ redux-framework
130
+ #: ../metaboxes.php:17
131
+ msgid "Add/Edit Gallery"
132
+ msgstr "Hinzufügen/Editieren Galerie"
133
+
134
+ # @ redux-framework
135
+ #: ../metaboxes.php:18
136
+ msgid "Clear Gallery"
137
+ msgstr "Galerie leeren"
138
+
139
+ # @ virtue
140
+ #: ../metaboxes.php:44
141
+ msgid "Page Title and Subtitle"
142
+ msgstr "Seitentitel und Untertitel"
143
+
144
+ # @ virtue
145
+ #: ../metaboxes.php:51 ../metaboxes.php:95
146
+ msgid "Subtitle"
147
+ msgstr "Untertitel"
148
+
149
+ # @ virtue
150
+ #: ../metaboxes.php:52
151
+ msgid "Subtitle will go below page title"
152
+ msgstr "Untertitel steht unter dem Seitentitel"
153
+
154
+ # @ virtue
155
+ #: ../metaboxes.php:57 ../metaboxes.php:101
156
+ #, fuzzy
157
+ msgid "Hide Page Title"
158
+ msgstr "Seitentitel"
159
+
160
+ #: ../metaboxes.php:63 ../metaboxes.php:107
161
+ msgid "Show"
162
+ msgstr ""
163
+
164
+ #: ../metaboxes.php:64 ../metaboxes.php:108
165
+ msgid "Hide"
166
+ msgstr ""
167
+
168
+ # @ virtue
169
+ #: ../metaboxes.php:68 ../metaboxes.php:112
170
+ #, fuzzy
171
+ msgid "Page Title background behind Header"
172
+ msgstr "Seitentitel und Untertitel"
173
+
174
+ #: ../metaboxes.php:74 ../metaboxes.php:118
175
+ msgid "Place behind Header"
176
+ msgstr ""
177
+
178
+ #: ../metaboxes.php:75 ../metaboxes.php:119
179
+ msgid "Don't place behind Header"
180
+ msgstr ""
181
+
182
+ # @ virtue
183
+ #: ../metaboxes.php:82
184
+ #, fuzzy
185
+ msgid "Post Title and Subtitle"
186
+ msgstr "Seitentitel und Untertitel"
187
+
188
+ # @ virtue
189
+ #: ../metaboxes.php:89 ../metaboxes.php:90
190
+ #, fuzzy
191
+ msgid "Post Header Title"
192
+ msgstr "Seitentitel"
193
+
194
+ # @ virtue
195
+ #: ../metaboxes.php:96
196
+ #, fuzzy
197
+ msgid "Subtitle will go below post title"
198
+ msgstr "Untertitel steht unter dem Seitentitel"
199
+
200
+ # @ virtue
201
+ #: ../metaboxes.php:126
202
+ #, fuzzy
203
+ msgid "Gallery Post Options"
204
+ msgstr "Beitragsoptionen"
205
+
206
+ # @ virtue
207
+ #: ../metaboxes.php:135 ../metaboxes.php:190
208
+ #, fuzzy
209
+ msgid "Post Head Content"
210
+ msgstr "Kopfzeile Inhalt"
211
+
212
+ # @ virtue
213
+ #: ../metaboxes.php:140 ../metaboxes.php:170
214
+ #, fuzzy
215
+ msgid "Gallery Post Default"
216
+ msgstr "Blogbeitrag Standards"
217
+
218
+ # @ virtue
219
+ #: ../metaboxes.php:141
220
+ #, fuzzy
221
+ msgid "Image Slider - (Flex Slider)"
222
+ msgstr "Bilderslider"
223
+
224
+ #: ../metaboxes.php:142
225
+ msgid "Carousel Slider - (Caroufedsel Slider)"
226
+ msgstr ""
227
+
228
+ # @ virtue
229
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
230
+ #: ../metaboxes.php:738
231
+ msgid "None"
232
+ msgstr "Kein"
233
+
234
+ # @ virtue
235
+ #: ../metaboxes.php:147
236
+ #, fuzzy
237
+ msgid "Post Slider Gallery"
238
+ msgstr "Beitrags Galerie"
239
+
240
+ # @ virtue
241
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
242
+ #, fuzzy
243
+ msgid "Add images for gallery here"
244
+ msgstr "Bilder zur Galerie hinzufügen"
245
+
246
+ # @ virtue
247
+ #: ../metaboxes.php:153
248
+ #, fuzzy
249
+ msgid "Max Slider Height"
250
+ msgstr "Max Bild/Slider Höhe"
251
+
252
+ # @ virtue
253
+ #: ../metaboxes.php:154 ../metaboxes.php:553
254
+ #, fuzzy
255
+ msgid "Default is: 400 (Note: just input number, example: 350)"
256
+ msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
257
+
258
+ # @ virtue
259
+ #: ../metaboxes.php:159
260
+ #, fuzzy
261
+ msgid "Max Slider Width"
262
+ msgstr "Max Bild/Slider Breite"
263
+
264
+ # @ virtue
265
+ #: ../metaboxes.php:160
266
+ #, fuzzy
267
+ msgid ""
268
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
269
+ "example: 650, only applys to Image Slider)"
270
+ msgstr ""
271
+ "Standardwert ist: 770 oder 1140 bei Einträgen voller Breite<b>(Hinweis: nur "
272
+ "Zahlen eingeben; Beispiel: 650, gilt nicht für Karussellslider)</b>"
273
+
274
+ # @ virtue
275
+ #: ../metaboxes.php:165 ../metaboxes.php:213
276
+ msgid "Post Summary"
277
+ msgstr "Beitragszusammenfassung"
278
+
279
+ # @ virtue
280
+ #: ../metaboxes.php:171 ../metaboxes.php:220
281
+ #, fuzzy
282
+ msgid "Portrait Image (feature image)"
283
+ msgstr "Portraitbild-Slider"
284
+
285
+ # @ virtue
286
+ #: ../metaboxes.php:172 ../metaboxes.php:221
287
+ #, fuzzy
288
+ msgid "Landscape Image (feature image)"
289
+ msgstr "Querformatbild-Slider"
290
+
291
+ # @ virtue
292
+ #: ../metaboxes.php:173
293
+ msgid "Portrait Image Slider"
294
+ msgstr "Portraitbild-Slider"
295
+
296
+ # @ virtue
297
+ #: ../metaboxes.php:174
298
+ msgid "Landscape Image Slider"
299
+ msgstr "Querformatbild-Slider"
300
+
301
+ # @ virtue
302
+ #: ../metaboxes.php:181
303
+ #, fuzzy
304
+ msgid "Video Post Options"
305
+ msgstr "Beitragsoptionen"
306
+
307
+ # @ virtue
308
+ #: ../metaboxes.php:195 ../metaboxes.php:218
309
+ #, fuzzy
310
+ msgid "Video Post Default"
311
+ msgstr "Blogbeitrag Standards"
312
+
313
+ # @ virtue
314
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
315
+ #: ../metaboxes.php:737 ../metaboxes.php:960
316
+ msgid "Video"
317
+ msgstr "Video"
318
+
319
+ # @ virtue
320
+ #: ../metaboxes.php:201
321
+ #, fuzzy
322
+ msgid "Video Post embed code"
323
+ msgstr "Video Einbettungscode"
324
+
325
+ # @ virtue
326
+ #: ../metaboxes.php:202
327
+ #, fuzzy
328
+ msgid ""
329
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
330
+ "for screen shot)"
331
+ msgstr "Hier eingebetteten Code eingeben, funktioniert mit youtube, vimeo..."
332
+
333
+ # @ virtue
334
+ #: ../metaboxes.php:207
335
+ #, fuzzy
336
+ msgid "Max Video Width"
337
+ msgstr "Max Bild/Slider Breite"
338
+
339
+ # @ virtue
340
+ #: ../metaboxes.php:208
341
+ #, fuzzy
342
+ msgid ""
343
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
344
+ "example: 650, does not apply to carousel slider)"
345
+ msgstr ""
346
+ "Standardwert ist: 770 oder 1140 bei Einträgen voller Breite<b>(Hinweis: nur "
347
+ "Zahlen eingeben; Beispiel: 650, gilt nicht für Karussellslider)</b>"
348
+
349
+ #: ../metaboxes.php:219
350
+ msgid "Video - (when possible)"
351
+ msgstr ""
352
+
353
+ # @ virtue
354
+ #: ../metaboxes.php:228 ../metaboxes.php:710
355
+ msgid "Portfolio Post Options"
356
+ msgstr "Portfolio Beitragsoptionen"
357
+
358
+ # @ virtue
359
+ #: ../metaboxes.php:236 ../metaboxes.php:718
360
+ msgid "Project Layout"
361
+ msgstr "Projektlayout"
362
+
363
+ # @ virtue
364
+ #: ../metaboxes.php:241
365
+ #, fuzzy
366
+ msgid "Beside 40%"
367
+ msgstr "Neben"
368
+
369
+ # @ virtue
370
+ #: ../metaboxes.php:242
371
+ #, fuzzy
372
+ msgid "Beside 33%"
373
+ msgstr "Neben"
374
+
375
+ # @ virtue
376
+ #: ../metaboxes.php:243 ../metaboxes.php:724
377
+ msgid "Above"
378
+ msgstr "Über"
379
+
380
+ # @ virtue
381
+ #: ../metaboxes.php:244 ../metaboxes.php:725
382
+ msgid "Three Rows"
383
+ msgstr "Drei Reihen"
384
+
385
+ # @ virtue
386
+ #: ../metaboxes.php:248 ../metaboxes.php:729
387
+ msgid "Project Options"
388
+ msgstr "Projektoptionen"
389
+
390
+ # @ virtue
391
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
392
+ msgid "Image"
393
+ msgstr "Bild"
394
+
395
+ # @ virtue
396
+ #: ../metaboxes.php:254 ../metaboxes.php:534
397
+ #, fuzzy
398
+ msgid "Image Slider (Flex Slider)"
399
+ msgstr "Bilderslider"
400
+
401
+ # @ virtue
402
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
403
+ msgid "Carousel Slider"
404
+ msgstr "Sliderkarussell"
405
+
406
+ # @ virtue
407
+ #: ../metaboxes.php:261
408
+ #, fuzzy
409
+ msgid "Portfolio Slider/Images"
410
+ msgstr "Portolio Slider Bilder"
411
+
412
+ # @ virtue
413
+ #: ../metaboxes.php:262
414
+ #, fuzzy
415
+ msgid "Add images for post here"
416
+ msgstr "Bilder zur Galerie hinzufügen"
417
+
418
+ # @ virtue
419
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
420
+ #: ../metaboxes.php:965
421
+ msgid "Max Image/Slider Height"
422
+ msgstr "Max Bild/Slider Höhe"
423
+
424
+ # @ virtue
425
+ #: ../metaboxes.php:268
426
+ #, fuzzy
427
+ msgid "Default is: 450 (Note: just input number, example: 350)"
428
+ msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
429
+
430
+ # @ virtue
431
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
432
+ #: ../metaboxes.php:971
433
+ msgid "Max Image/Slider Width"
434
+ msgstr "Max Bild/Slider Breite"
435
+
436
+ # @ virtue
437
+ #: ../metaboxes.php:274
438
+ #, fuzzy
439
+ msgid ""
440
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
441
+ "number, example: 650)"
442
+ msgstr ""
443
+ "Standard ist: 670 oder 1140 bei <b>über</b> oder <b>Drei Reihen</b> Layouts "
444
+ "(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
445
+
446
+ # @ virtue
447
+ #: ../metaboxes.php:279 ../metaboxes.php:764
448
+ msgid "Value 01 Title"
449
+ msgstr "Wert 01 Titel"
450
+
451
+ # @ virtue
452
+ #: ../metaboxes.php:280 ../metaboxes.php:765
453
+ msgid "ex. Project Type:"
454
+ msgstr "zB. Projekttyp:"
455
+
456
+ # @ virtue
457
+ #: ../metaboxes.php:285 ../metaboxes.php:770
458
+ msgid "Value 01 Description"
459
+ msgstr "Wert 01 Beschreibung"
460
+
461
+ # @ virtue
462
+ #: ../metaboxes.php:286 ../metaboxes.php:771
463
+ msgid "ex. Character Illustration"
464
+ msgstr "zB. Zeichen-Illustration"
465
+
466
+ # @ virtue
467
+ #: ../metaboxes.php:291 ../metaboxes.php:776
468
+ msgid "Value 02 Title"
469
+ msgstr "Wert 02 Titel"
470
+
471
+ # @ virtue
472
+ #: ../metaboxes.php:292 ../metaboxes.php:777
473
+ msgid "ex. Skills Needed:"
474
+ msgstr "zB. benötigte Fähigkeiten:"
475
+
476
+ # @ virtue
477
+ #: ../metaboxes.php:297 ../metaboxes.php:782
478
+ msgid "Value 02 Description"
479
+ msgstr "Wert 02 Beschreibung"
480
+
481
+ # @ virtue
482
+ #: ../metaboxes.php:298 ../metaboxes.php:783
483
+ msgid "ex. Photoshop, Illustrator"
484
+ msgstr "zB.: Photoshop, Illustrator"
485
+
486
+ # @ virtue
487
+ #: ../metaboxes.php:303 ../metaboxes.php:788
488
+ msgid "Value 03 Title"
489
+ msgstr "Wert 03 Titel"
490
+
491
+ # @ virtue
492
+ #: ../metaboxes.php:304 ../metaboxes.php:789
493
+ msgid "ex. Customer:"
494
+ msgstr "zB. Kunde:"
495
+
496
+ # @ virtue
497
+ #: ../metaboxes.php:309 ../metaboxes.php:794
498
+ msgid "Value 03 Description"
499
+ msgstr "Wert 03 Beschreibung"
500
+
501
+ # @ virtue
502
+ #: ../metaboxes.php:310 ../metaboxes.php:795
503
+ msgid "ex. Example Inc"
504
+ msgstr "zB. Muster GmbH"
505
+
506
+ # @ virtue
507
+ #: ../metaboxes.php:315 ../metaboxes.php:800
508
+ msgid "Value 04 Title"
509
+ msgstr "Wert 04 Titel"
510
+
511
+ # @ virtue
512
+ #: ../metaboxes.php:316 ../metaboxes.php:801
513
+ msgid "ex. Project Year:"
514
+ msgstr "zB. Projektjahr:"
515
+
516
+ # @ virtue
517
+ #: ../metaboxes.php:321 ../metaboxes.php:806
518
+ msgid "Value 04 Description"
519
+ msgstr "Wert 04 Beschreibung"
520
+
521
+ # @ virtue
522
+ #: ../metaboxes.php:322 ../metaboxes.php:807
523
+ msgid "ex. 2013"
524
+ msgstr "zB. 2013"
525
+
526
+ # @ virtue
527
+ #: ../metaboxes.php:327 ../metaboxes.php:812
528
+ msgid "External Website"
529
+ msgstr "Externe Webseite"
530
+
531
+ # @ virtue
532
+ #: ../metaboxes.php:328 ../metaboxes.php:813
533
+ msgid "ex. Website:"
534
+ msgstr "zB. Webseite:"
535
+
536
+ # @ virtue
537
+ #: ../metaboxes.php:333 ../metaboxes.php:818
538
+ msgid "Website Address"
539
+ msgstr "Webseiten-Adresse"
540
+
541
+ # @ virtue
542
+ #: ../metaboxes.php:334 ../metaboxes.php:819
543
+ msgid "ex. http://www.example.com"
544
+ msgstr "zB. http://www.example.com"
545
+
546
+ # @ virtue
547
+ #: ../metaboxes.php:339 ../metaboxes.php:824
548
+ msgid "If Video Project"
549
+ msgstr "Wenn Video-Projekt"
550
+
551
+ # @ virtue
552
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
553
+ #: ../metaboxes.php:825 ../metaboxes.php:988
554
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
555
+ msgstr "Hier eingebetteten Code eingeben, funktioniert mit youtube, vimeo..."
556
+
557
+ # @ virtue
558
+ #: ../metaboxes.php:349
559
+ #, fuzzy
560
+ msgid "Bottom Carousel Options"
561
+ msgstr "Kontaktseiten Optionen"
562
+
563
+ # @ virtue
564
+ #: ../metaboxes.php:356 ../metaboxes.php:840
565
+ msgid "Carousel Title"
566
+ msgstr "Karusselltitel"
567
+
568
+ # @ virtue
569
+ #: ../metaboxes.php:357 ../metaboxes.php:841
570
+ msgid "ex. Similar Projects"
571
+ msgstr "zB. ähnliche Projekte"
572
+
573
+ # @ virtue
574
+ #: ../metaboxes.php:362
575
+ #, fuzzy
576
+ msgid "Bottom Portfolio Carousel"
577
+ msgstr "Portofolio-Karussell"
578
+
579
+ # @ virtue
580
+ #: ../metaboxes.php:363
581
+ #, fuzzy
582
+ msgid "Display a carousel with portfolio items below project?"
583
+ msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
584
+
585
+ # @ virtue
586
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
587
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
588
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
589
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
590
+ msgid "No"
591
+ msgstr "Nein"
592
+
593
+ # @ virtue
594
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
595
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
596
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
597
+ #: ../metaboxes.php:1037
598
+ msgid "Yes"
599
+ msgstr "Ja"
600
+
601
+ # @ virtue
602
+ #: ../metaboxes.php:373
603
+ #, fuzzy
604
+ msgid "Carousel Items"
605
+ msgstr "Karusselltitel"
606
+
607
+ # @ virtue
608
+ #: ../metaboxes.php:379
609
+ #, fuzzy
610
+ msgid "All Portfolio Posts"
611
+ msgstr "Portfolio Beitragsoptionen"
612
+
613
+ #: ../metaboxes.php:380
614
+ msgid "Only of same Portfolio Type"
615
+ msgstr ""
616
+
617
+ # @ virtue
618
+ #: ../metaboxes.php:384
619
+ #, fuzzy
620
+ msgid "Carousel Order"
621
+ msgstr "Sliderkarussell"
622
+
623
+ # @ virtue
624
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
625
+ msgid "Menu Order"
626
+ msgstr "Menü Anordnung"
627
+
628
+ # @ virtue
629
+ # @ redux-framework
630
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
631
+ msgid "Title"
632
+ msgstr "Titel"
633
+
634
+ # @ virtue
635
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
636
+ msgid "Date"
637
+ msgstr "Datum"
638
+
639
+ # @ virtue
640
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
641
+ msgid "Random"
642
+ msgstr "Zufall"
643
+
644
+ # @ virtue
645
+ #: ../metaboxes.php:400 ../metaboxes.php:850
646
+ msgid "Portfolio Page Options"
647
+ msgstr "Portfolio Seitenoptionen"
648
+
649
+ # @ redux-framework
650
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
651
+ msgid "Style"
652
+ msgstr "Stil"
653
+
654
+ # @ virtue
655
+ #: ../metaboxes.php:414
656
+ #, fuzzy
657
+ msgid "Post Boxes"
658
+ msgstr "Videobox eintragen"
659
+
660
+ #: ../metaboxes.php:415
661
+ msgid "Flat with Margin"
662
+ msgstr ""
663
+
664
+ # @ redux-framework
665
+ #: ../metaboxes.php:419
666
+ #, fuzzy
667
+ msgid "Hover Style"
668
+ msgstr "Randstil"
669
+
670
+ # @ redux-framework
671
+ #: ../metaboxes.php:425
672
+ #, fuzzy
673
+ msgid "Light"
674
+ msgstr "Rechts"
675
+
676
+ #: ../metaboxes.php:426
677
+ msgid "Dark"
678
+ msgstr ""
679
+
680
+ # @ virtue
681
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
682
+ msgid "Primary Color"
683
+ msgstr "Hauptfarbe"
684
+
685
+ # @ virtue
686
+ #: ../metaboxes.php:431 ../metaboxes.php:859
687
+ msgid "Columns"
688
+ msgstr "Spalten"
689
+
690
+ # @ virtue
691
+ #: ../metaboxes.php:436 ../metaboxes.php:864
692
+ msgid "Four Column"
693
+ msgstr "Vier Spalten"
694
+
695
+ # @ virtue
696
+ #: ../metaboxes.php:437 ../metaboxes.php:865
697
+ msgid "Three Column"
698
+ msgstr "Drei Spalten"
699
+
700
+ # @ virtue
701
+ #: ../metaboxes.php:438 ../metaboxes.php:866
702
+ msgid "Two Column"
703
+ msgstr "Zwei Spalten"
704
+
705
+ # @ virtue
706
+ #: ../metaboxes.php:439
707
+ #, fuzzy
708
+ msgid "Five Column"
709
+ msgstr "Vier Spalten"
710
+
711
+ # @ virtue
712
+ #: ../metaboxes.php:443 ../metaboxes.php:870
713
+ msgid "Portfolio Work Types"
714
+ msgstr "Portfolio Arbeitstypen"
715
+
716
+ # @ virtue
717
+ #: ../metaboxes.php:449 ../metaboxes.php:877
718
+ msgid "Order Items By"
719
+ msgstr "Sortiere Einträge nach"
720
+
721
+ # @ virtue
722
+ #: ../metaboxes.php:461 ../metaboxes.php:889
723
+ msgid "Items per Page"
724
+ msgstr "Einträge pro Seite"
725
+
726
+ # @ virtue
727
+ #: ../metaboxes.php:462 ../metaboxes.php:890
728
+ msgid "How many portfolio items per page"
729
+ msgstr "Wie viele Portfolio-Einträge pro Seite"
730
+
731
+ # @ virtue
732
+ # @ redux-framework
733
+ #: ../metaboxes.php:466 ../metaboxes.php:894
734
+ msgid "All"
735
+ msgstr "Alles"
736
+
737
+ # @ virtue
738
+ #: ../metaboxes.php:484
739
+ #, fuzzy
740
+ msgid "Image Ratio?"
741
+ msgstr "Bild"
742
+
743
+ #: ../metaboxes.php:490
744
+ msgid "Square 1:1"
745
+ msgstr ""
746
+
747
+ # @ virtue
748
+ #: ../metaboxes.php:491
749
+ #, fuzzy
750
+ msgid "Portrait 3:4"
751
+ msgstr "Portraitbild"
752
+
753
+ # @ virtue
754
+ #: ../metaboxes.php:492
755
+ #, fuzzy
756
+ msgid "Landscape 4:3"
757
+ msgstr "Querformatbild"
758
+
759
+ # @ virtue
760
+ #: ../metaboxes.php:493
761
+ #, fuzzy
762
+ msgid "Wide Landscape 4:2"
763
+ msgstr "Querformatbild"
764
+
765
+ # @ virtue
766
+ #: ../metaboxes.php:497 ../metaboxes.php:918
767
+ msgid "Display Item Work Types"
768
+ msgstr "Zeige Eintrag-Arbeitstypen"
769
+
770
+ # @ virtue
771
+ #: ../metaboxes.php:503 ../metaboxes.php:925
772
+ msgid "Display Item Excerpt"
773
+ msgstr "Zeige Eintragsauszug"
774
+
775
+ # @ virtue
776
+ #: ../metaboxes.php:509
777
+ #, fuzzy
778
+ msgid "Add Lightbox link in each item"
779
+ msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
780
+
781
+ # @ virtue
782
+ #: ../metaboxes.php:518 ../metaboxes.php:945
783
+ msgid "Feature Page Options"
784
+ msgstr "Feature Seiten-Optionen"
785
+
786
+ # @ virtue
787
+ #: ../metaboxes.php:527
788
+ #, fuzzy
789
+ msgid "Header Options"
790
+ msgstr "Überschrift Optionen"
791
+
792
+ # @ virtue
793
+ #: ../metaboxes.php:528
794
+ #, fuzzy
795
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
796
+ msgstr ""
797
+ "Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
798
+
799
+ # @ virtue
800
+ #: ../metaboxes.php:533
801
+ msgid "Page Title"
802
+ msgstr "Seitentitel"
803
+
804
+ # @ virtue
805
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
806
+ msgid "Slider Images"
807
+ msgstr "Slider Bilder"
808
+
809
+ #: ../metaboxes.php:541
810
+ msgid "Add for flex, carousel, and image carousel."
811
+ msgstr ""
812
+
813
+ # @ virtue
814
+ #: ../metaboxes.php:546
815
+ #, fuzzy
816
+ msgid "If Cyclone Slider"
817
+ msgstr "Sliderkarussell"
818
+
819
+ #: ../metaboxes.php:547
820
+ msgid ""
821
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
822
+ msgstr ""
823
+
824
+ # @ virtue
825
+ #: ../metaboxes.php:559
826
+ #, fuzzy
827
+ msgid ""
828
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
829
+ "does not apply to Carousel slider)"
830
+ msgstr ""
831
+ "Standardwert ist: 770 oder 1140 bei Einträgen voller Breite<b>(Hinweis: nur "
832
+ "Zahlen eingeben; Beispiel: 650, gilt nicht für Karussellslider)</b>"
833
+
834
+ # @ virtue
835
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
836
+ msgid "If Video Post"
837
+ msgstr "Wenn Videobeitrag"
838
+
839
+ # @ virtue
840
+ #: ../metaboxes.php:573 ../metaboxes.php:996
841
+ msgid "Contact Page Options"
842
+ msgstr "Kontaktseiten Optionen"
843
+
844
+ # @ virtue
845
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
846
+ msgid "Use Contact Form"
847
+ msgstr "Benutze Kontaktformular"
848
+
849
+ # @ virtue
850
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
851
+ msgid "Contact Form Title"
852
+ msgstr "Kontakt von Titel"
853
+
854
+ # @ virtue
855
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
856
+ msgid "ex. Send us an Email"
857
+ msgstr "zB. Sende uns eine Email"
858
+
859
+ # @ virtue
860
+ #: ../metaboxes.php:598
861
+ #, fuzzy
862
+ msgid "Contact Form Email Recipient"
863
+ msgstr "Kontakformular Email"
864
+
865
+ #: ../metaboxes.php:599
866
+ msgid "ex. joe@gmail.com"
867
+ msgstr ""
868
+
869
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
870
+ msgid "Use Simple Math Question"
871
+ msgstr ""
872
+
873
+ # @ virtue
874
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
875
+ msgid "Use Map"
876
+ msgstr "Benutze Karte"
877
+
878
+ # @ virtue
879
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
880
+ msgid "Address"
881
+ msgstr "Adresse"
882
+
883
+ # @ virtue
884
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
885
+ msgid "Enter your Location"
886
+ msgstr "Ort eingeben"
887
+
888
+ # @ virtue
889
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
890
+ msgid "Map Type"
891
+ msgstr "Kartentyp"
892
+
893
+ # @ virtue
894
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
895
+ msgid "ROADMAP"
896
+ msgstr "STRASSENKARTE"
897
+
898
+ # @ virtue
899
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
900
+ msgid "HYBRID"
901
+ msgstr "HYBRID"
902
+
903
+ # @ virtue
904
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
905
+ msgid "TERRAIN"
906
+ msgstr "TERRAIN"
907
+
908
+ # @ virtue
909
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
910
+ msgid "SATELLITE"
911
+ msgstr "SATELLIT"
912
+
913
+ # @ virtue
914
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
915
+ msgid "Map Zoom Level"
916
+ msgstr "Karten Zoomstufe"
917
+
918
+ # @ virtue
919
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
920
+ msgid "A good place to start is 15"
921
+ msgstr "Ein guter Ort für den Start ist 15"
922
+
923
+ # @ virtue
924
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
925
+ msgid "1 (World View)"
926
+ msgstr "1 (Weltansicht)"
927
+
928
+ # @ virtue
929
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
930
+ msgid "21 (Street View)"
931
+ msgstr "21 (Strassenansicht)"
932
+
933
+ # @ virtue
934
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
935
+ msgid "Map Height"
936
+ msgstr "Kartenhöhe"
937
+
938
+ # @ virtue
939
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
940
+ msgid "Default is 300"
941
+ msgstr "Standard ist 300"
942
+
943
+ # @ virtue
944
+ #: ../metaboxes.php:693
945
+ msgid "Post Video Box"
946
+ msgstr "Videobox eintragen"
947
+
948
+ # @ virtue
949
+ #: ../metaboxes.php:723
950
+ msgid "Beside"
951
+ msgstr "Neben"
952
+
953
+ # @ virtue
954
+ #: ../metaboxes.php:735 ../metaboxes.php:959
955
+ msgid "Image Slider"
956
+ msgstr "Bilderslider"
957
+
958
+ # @ virtue
959
+ #: ../metaboxes.php:743
960
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
961
+ msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
962
+
963
+ # @ virtue
964
+ #: ../metaboxes.php:749
965
+ msgid ""
966
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
967
+ "just input number, example: 650)</b>"
968
+ msgstr ""
969
+ "Standard ist: 670 oder 1140 bei <b>über</b> oder <b>Drei Reihen</b> Layouts "
970
+ "(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
971
+
972
+ # @ virtue
973
+ #: ../metaboxes.php:754
974
+ #, fuzzy
975
+ msgid "Auto Play Slider?"
976
+ msgstr "Automatisch abspielen?"
977
+
978
+ # @ virtue
979
+ #: ../metaboxes.php:830
980
+ msgid "Similar Portfolio Item Carousel"
981
+ msgstr "Ähnliche Portfolio-Einträge Karussell"
982
+
983
+ # @ virtue
984
+ #: ../metaboxes.php:831
985
+ msgid "Display a carousel with similar portfolio items below project?"
986
+ msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
987
+
988
+ # @ virtue
989
+ #: ../metaboxes.php:836
990
+ msgid "Yes - Display Recent Projects"
991
+ msgstr "Ja - Zeige rezente Projekte"
992
+
993
+ # @ virtue
994
+ #: ../metaboxes.php:912
995
+ msgid "Set image height"
996
+ msgstr "Setze Bildhöhe"
997
+
998
+ # @ virtue
999
+ #: ../metaboxes.php:913
1000
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
1001
+ msgstr ""
1002
+ "Standard ist 1:1 Verhältnis <b>(Hinweis: nur Zahlen eingeben, Bespiel: "
1003
+ "350)</b>"
1004
+
1005
+ # @ virtue
1006
+ #: ../metaboxes.php:932
1007
+ msgid "Add Lightbox link in the top right of each item"
1008
+ msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
1009
+
1010
+ # @ virtue
1011
+ #: ../metaboxes.php:954
1012
+ msgid "Feature Options"
1013
+ msgstr "Feature Optionen"
1014
+
1015
+ # @ virtue
1016
+ #: ../metaboxes.php:955
1017
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
1018
+ msgstr ""
1019
+ "Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
1020
+
1021
+ # @ virtue
1022
+ #: ../metaboxes.php:966
1023
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
1024
+ msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
1025
+
1026
+ # @ virtue
1027
+ #: ../metaboxes.php:972
1028
+ msgid ""
1029
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
1030
+ "to Carousel slider)</b>"
1031
+ msgstr ""
1032
+ "Standard ist: 1140 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 650, bezieht "
1033
+ "sich nicht auf Karussellslider)</b>"
1034
+
1035
+ # @ virtue
1036
+ #: ../metaboxes.php:977
1037
+ msgid "Use Lightbox for Feature Image"
1038
+ msgstr "Verwende Lightbox für Feature-Bild"
1039
+
1040
+ # @ virtue
1041
+ #: ../metaboxes.php:978
1042
+ msgid ""
1043
+ "If feature option is set to image, choose to use lightbox link with image."
1044
+ msgstr ""
1045
+ "Wenn Feature-Option auf Bild gestellt ist, nutze Lightbox Link mit Bild."
1046
+
1047
+ # @ redux-framework
1048
+ #: ../metaboxes.php:1105
1049
+ #, fuzzy
1050
+ msgid "Slider Gallery"
1051
+ msgstr "Galerie leeren"
1052
+
1053
+ # @ redux-framework
1054
+ #: ../page-contact.php:12 ../template-contact.php:7
1055
+ #, fuzzy
1056
+ msgid "This field is required."
1057
+ msgstr "Dieses Feld muß ein gültiges Datum haben."
1058
+
1059
+ # @ virtue
1060
+ #: ../page-contact.php:13 ../template-contact.php:8
1061
+ #, fuzzy
1062
+ msgid "Please enter a valid email address."
1063
+ msgstr "Bitte Email-Adresse eingeben."
1064
+
1065
+ #: ../page-contact.php:96 ../template-contact.php:95
1066
+ msgid "Check your math."
1067
+ msgstr ""
1068
+
1069
+ # @ virtue
1070
+ #: ../page-contact.php:101 ../template-contact.php:100
1071
+ msgid "Please enter your name."
1072
+ msgstr "Bitte Namen eingeben."
1073
+
1074
+ # @ virtue
1075
+ #: ../page-contact.php:108 ../template-contact.php:107
1076
+ msgid "Please enter your email address."
1077
+ msgstr "Bitte Email-Adresse eingeben."
1078
+
1079
+ # @ virtue
1080
+ #: ../page-contact.php:111 ../template-contact.php:110
1081
+ msgid "You entered an invalid email address."
1082
+ msgstr "Sie haben eine ungültige Email-Adresse eingegeben."
1083
+
1084
+ # @ virtue
1085
+ #: ../page-contact.php:118 ../template-contact.php:117
1086
+ msgid "Please enter a message."
1087
+ msgstr "Bitte Nachricht eingeben."
1088
+
1089
+ # @ virtue
1090
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
1091
+ #: ../template-contact.php:134
1092
+ #, fuzzy
1093
+ msgid "Contact"
1094
+ msgstr " Kontakt"
1095
+
1096
+ # @ virtue
1097
+ #: ../page-contact.php:135 ../template-contact.php:134
1098
+ msgid "From"
1099
+ msgstr "Von"
1100
+
1101
+ # @ virtue
1102
+ # @ woocommerce
1103
+ #: ../page-contact.php:136 ../template-contact.php:135
1104
+ msgid "Name"
1105
+ msgstr "Name"
1106
+
1107
+ # @ woocommerce
1108
+ #: ../page-contact.php:137 ../template-contact.php:136
1109
+ msgid "Email"
1110
+ msgstr "Email"
1111
+
1112
+ # @ virtue
1113
+ #: ../page-contact.php:138 ../template-contact.php:137
1114
+ #, fuzzy
1115
+ msgid "Comments"
1116
+ msgstr "Kommentar"
1117
+
1118
+ # @ virtue
1119
+ #: ../page-contact.php:176 ../template-contact.php:173
1120
+ msgid "Thanks, your email was sent successfully."
1121
+ msgstr "Danke, Ihre Email wurde erfolgreich gesendet."
1122
+
1123
+ # @ virtue
1124
+ #: ../page-contact.php:181 ../template-contact.php:177
1125
+ #, fuzzy
1126
+ msgid "Sorry, an error occured."
1127
+ msgstr "Leider ist ein Fehler aufgetreten."
1128
+
1129
+ # @ virtue
1130
+ #: ../page-contact.php:187 ../template-contact.php:183
1131
+ msgid "Name:"
1132
+ msgstr "Name:"
1133
+
1134
+ # @ virtue
1135
+ #: ../page-contact.php:195
1136
+ msgid "Email: "
1137
+ msgstr "Email: "
1138
+
1139
+ # @ virtue
1140
+ #: ../page-contact.php:203
1141
+ msgid "Message: "
1142
+ msgstr "Nachricht: "
1143
+
1144
+ # @ virtue
1145
+ #: ../page-contact.php:223 ../template-contact.php:218
1146
+ msgid "Send Email"
1147
+ msgstr "Sende Email"
1148
+
1149
+ # @ virtue
1150
+ #: ../post-types.php:5 ../post-types.php:17
1151
+ msgid "Portfolio"
1152
+ msgstr "Portfolio"
1153
+
1154
+ # @ virtue
1155
+ #: ../post-types.php:6
1156
+ #, fuzzy
1157
+ msgid "Portfolio Item"
1158
+ msgstr "Portfolio"
1159
+
1160
+ # @ virtue
1161
+ #: ../post-types.php:7
1162
+ #, fuzzy
1163
+ msgid "Add New"
1164
+ msgstr "Symbol hinzufügen"
1165
+
1166
+ # @ virtue
1167
+ #: ../post-types.php:8
1168
+ #, fuzzy
1169
+ msgid "Add New Portfolio Item"
1170
+ msgstr "Portfolio-Seite für alle Projekte"
1171
+
1172
+ # @ virtue
1173
+ #: ../post-types.php:9
1174
+ #, fuzzy
1175
+ msgid "Edit Portfolio Item"
1176
+ msgstr "Portfolio"
1177
+
1178
+ # @ virtue
1179
+ #: ../post-types.php:10
1180
+ #, fuzzy
1181
+ msgid "New Portfolio Item"
1182
+ msgstr "Portfolio"
1183
+
1184
+ # @ virtue
1185
+ #: ../post-types.php:11
1186
+ #, fuzzy
1187
+ msgid "All Portfolio"
1188
+ msgstr "Portfolio"
1189
+
1190
+ # @ virtue
1191
+ #: ../post-types.php:12
1192
+ #, fuzzy
1193
+ msgid "View Portfolio Item"
1194
+ msgstr "Portfolio"
1195
+
1196
+ # @ virtue
1197
+ #: ../post-types.php:13
1198
+ #, fuzzy
1199
+ msgid "Search Portfolio"
1200
+ msgstr "Portfolio"
1201
+
1202
+ # @ virtue
1203
+ #: ../post-types.php:14
1204
+ #, fuzzy
1205
+ msgid "No Portfolio Item found"
1206
+ msgstr "Ähnliche Portfolio-Einträge Karussell"
1207
+
1208
+ #: ../post-types.php:15
1209
+ msgid "No Portfolio Items found in Trash"
1210
+ msgstr ""
1211
+
1212
+ # @ virtue
1213
+ #: ../post-types.php:37
1214
+ #, fuzzy
1215
+ msgid "Portfolio Type"
1216
+ msgstr "Portfolio Arbeitstypen"
1217
+
1218
+ # @ tgmpa
1219
+ #: ../post-types.php:38
1220
+ msgid "Type"
1221
+ msgstr "Typ"
1222
+
1223
+ # @ virtue
1224
+ #: ../post-types.php:39
1225
+ #, fuzzy
1226
+ msgid "Search Type"
1227
+ msgstr "Suche"
1228
+
1229
+ # @ tgmpa
1230
+ #: ../post-types.php:40
1231
+ #, fuzzy
1232
+ msgid "All Type"
1233
+ msgstr "Typ"
1234
+
1235
+ # @ virtue
1236
+ #: ../post-types.php:41
1237
+ #, fuzzy
1238
+ msgid "Parent Type"
1239
+ msgstr "zB. Projekttyp:"
1240
+
1241
+ # @ virtue
1242
+ #: ../post-types.php:42
1243
+ #, fuzzy
1244
+ msgid "Parent Type:"
1245
+ msgstr "zB. Projekttyp:"
1246
+
1247
+ # @ tgmpa
1248
+ #: ../post-types.php:43
1249
+ #, fuzzy
1250
+ msgid "Edit Type"
1251
+ msgstr "Typ"
1252
+
1253
+ # @ woocommerce
1254
+ #: ../post-types.php:44
1255
+ #, fuzzy
1256
+ msgid "Update Type"
1257
+ msgstr "Endsumme aktualisieren"
1258
+
1259
+ #: ../post-types.php:45
1260
+ msgid "Add New Type"
1261
+ msgstr ""
1262
+
1263
+ #: ../post-types.php:46
1264
+ msgid "New Type Name"
1265
+ msgstr ""
1266
+
1267
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
1268
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
1269
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
1270
+ msgid "You are not allowed to be here"
1271
+ msgstr ""
1272
+
1273
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
1274
+ #: ../shortcodes.php:178
1275
+ msgid "please specify correct url"
1276
+ msgstr ""
1277
+
1278
+ #: ../shortcodes/accordion/accordion_popup.php:10
1279
+ msgid "Insert Accordion or Tabs"
1280
+ msgstr ""
1281
+
1282
+ #: ../shortcodes/accordion/accordion_popup.php:59
1283
+ msgid "Accordion or Tabs"
1284
+ msgstr ""
1285
+
1286
+ #: ../shortcodes/accordion/accordion_popup.php:61
1287
+ msgid "Accordion"
1288
+ msgstr ""
1289
+
1290
+ #: ../shortcodes/accordion/accordion_popup.php:62
1291
+ msgid "Tabs"
1292
+ msgstr ""
1293
+
1294
+ #: ../shortcodes/accordion/accordion_popup.php:66
1295
+ #: ../shortcodes/btns/btns_popup.php:230
1296
+ #: ../shortcodes/divider/divider_popup.php:80
1297
+ #: ../shortcodes/pullquote/quote_popup.php:77
1298
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
1299
+ #: ../shortcodes/youtube/youtube_popup.php:85
1300
+ msgid "Insert"
1301
+ msgstr ""
1302
+
1303
+ #: ../shortcodes/btns/btns_popup.php:10
1304
+ msgid "Insert Button"
1305
+ msgstr ""
1306
+
1307
+ #: ../shortcodes/btns/btns_popup.php:99
1308
+ msgid "Button Text"
1309
+ msgstr ""
1310
+
1311
+ # @ virtue
1312
+ #: ../shortcodes/btns/btns_popup.php:105
1313
+ #, fuzzy
1314
+ msgid "Text Color"
1315
+ msgstr "Wähle ein Symbol"
1316
+
1317
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1318
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1319
+ msgid "White"
1320
+ msgstr ""
1321
+
1322
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1323
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1324
+ msgid "Off-White"
1325
+ msgstr ""
1326
+
1327
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1328
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1329
+ msgid "Black"
1330
+ msgstr ""
1331
+
1332
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1333
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1334
+ msgid "Light-Gray"
1335
+ msgstr ""
1336
+
1337
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1338
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1339
+ msgid "Gray"
1340
+ msgstr ""
1341
+
1342
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1343
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1344
+ msgid "Dark-Gray"
1345
+ msgstr ""
1346
+
1347
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1348
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1349
+ msgid "Silver"
1350
+ msgstr ""
1351
+
1352
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1353
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1354
+ msgid "Red"
1355
+ msgstr ""
1356
+
1357
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1358
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1359
+ msgid "Blue"
1360
+ msgstr ""
1361
+
1362
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1363
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1364
+ msgid "Green"
1365
+ msgstr ""
1366
+
1367
+ # @ virtue
1368
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1369
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1370
+ #, fuzzy
1371
+ msgid "Yellow"
1372
+ msgstr "Verfolgen"
1373
+
1374
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1375
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1376
+ msgid "Orange"
1377
+ msgstr ""
1378
+
1379
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1380
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1381
+ msgid "Pink"
1382
+ msgstr ""
1383
+
1384
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1385
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1386
+ msgid "Purple"
1387
+ msgstr ""
1388
+
1389
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1390
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1391
+ msgid "Brown"
1392
+ msgstr ""
1393
+
1394
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1395
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1396
+ msgid "Maroon"
1397
+ msgstr ""
1398
+
1399
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1400
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1401
+ msgid "Or Type Hex Color"
1402
+ msgstr ""
1403
+
1404
+ # @ virtue
1405
+ #: ../shortcodes/btns/btns_popup.php:132
1406
+ #, fuzzy
1407
+ msgid "Button Color"
1408
+ msgstr "Hintergrund Farbe"
1409
+
1410
+ #: ../shortcodes/btns/btns_popup.php:161
1411
+ msgid "Text Hover Color"
1412
+ msgstr ""
1413
+
1414
+ # @ virtue
1415
+ #: ../shortcodes/btns/btns_popup.php:188
1416
+ #, fuzzy
1417
+ msgid "Button Background Hover Color"
1418
+ msgstr "Hintergrund Farbe"
1419
+
1420
+ # @ virtue
1421
+ #: ../shortcodes/btns/btns_popup.php:190
1422
+ #, fuzzy
1423
+ msgid "30% Primary Color"
1424
+ msgstr "Hauptfarbe"
1425
+
1426
+ # @ virtue
1427
+ #: ../shortcodes/btns/btns_popup.php:216
1428
+ #, fuzzy
1429
+ msgid "Button Link"
1430
+ msgstr "Symbol Link"
1431
+
1432
+ #: ../shortcodes/btns/btns_popup.php:222
1433
+ msgid "Button Link Target"
1434
+ msgstr ""
1435
+
1436
+ #: ../shortcodes/btns/btns_popup.php:224
1437
+ msgid "Same Window"
1438
+ msgstr ""
1439
+
1440
+ #: ../shortcodes/btns/btns_popup.php:225
1441
+ msgid "New Window/Tab"
1442
+ msgstr ""
1443
+
1444
+ # @ virtue
1445
+ #: ../shortcodes/columns/columns_popup.php:10
1446
+ #, fuzzy
1447
+ msgid "Insert Columns"
1448
+ msgstr "Spalten"
1449
+
1450
+ #: ../shortcodes/divider/divider_popup.php:10
1451
+ msgid "Insert Divider"
1452
+ msgstr ""
1453
+
1454
+ # @ virtue
1455
+ #: ../shortcodes/divider/divider_popup.php:70
1456
+ #, fuzzy
1457
+ msgid "Choose a Divider"
1458
+ msgstr "Wähle Sidebar"
1459
+
1460
+ #: ../shortcodes/divider/divider_popup.php:72
1461
+ msgid "Line"
1462
+ msgstr ""
1463
+
1464
+ #: ../shortcodes/divider/divider_popup.php:73
1465
+ msgid "Padding Small"
1466
+ msgstr ""
1467
+
1468
+ #: ../shortcodes/divider/divider_popup.php:74
1469
+ msgid "Padding Medium"
1470
+ msgstr ""
1471
+
1472
+ #: ../shortcodes/divider/divider_popup.php:75
1473
+ msgid "Padding Large"
1474
+ msgstr ""
1475
+
1476
+ # @ virtue
1477
+ #: ../shortcodes/icons/icon_popup.php:10
1478
+ #, fuzzy
1479
+ msgid "Insert Icon"
1480
+ msgstr "Lösche Symbol"
1481
+
1482
+ #: ../shortcodes/pullquote/quote_popup.php:10
1483
+ msgid "Insert Styled Quote"
1484
+ msgstr ""
1485
+
1486
+ #: ../shortcodes/pullquote/quote_popup.php:61
1487
+ msgid "Pull-Quote"
1488
+ msgstr ""
1489
+
1490
+ #: ../shortcodes/pullquote/quote_popup.php:62
1491
+ msgid "Block-Quote"
1492
+ msgstr ""
1493
+
1494
+ #: ../shortcodes/pullquote/quote_popup.php:68
1495
+ msgid "Align"
1496
+ msgstr ""
1497
+
1498
+ #: ../shortcodes/pullquote/quote_popup.php:70
1499
+ msgid "Center"
1500
+ msgstr ""
1501
+
1502
+ # @ redux-framework
1503
+ #: ../shortcodes/pullquote/quote_popup.php:71
1504
+ msgid "Left"
1505
+ msgstr "Links"
1506
+
1507
+ # @ redux-framework
1508
+ #: ../shortcodes/pullquote/quote_popup.php:72
1509
+ #, fuzzy
1510
+ msgid "Right"
1511
+ msgstr "Höhe"
1512
+
1513
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1514
+ msgid "Insert Vimeo Video"
1515
+ msgstr ""
1516
+
1517
+ # @ virtue
1518
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1519
+ #, fuzzy
1520
+ msgid "Vimeo Link"
1521
+ msgstr "Symbol Link"
1522
+
1523
+ # @ redux-framework
1524
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1525
+ #: ../shortcodes/youtube/youtube_popup.php:70
1526
+ msgid "Width"
1527
+ msgstr "Breite"
1528
+
1529
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1530
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1531
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1532
+ #: ../shortcodes/youtube/youtube_popup.php:72
1533
+ #: ../shortcodes/youtube/youtube_popup.php:77
1534
+ #: ../shortcodes/youtube/youtube_popup.php:82
1535
+ msgid "note just use number"
1536
+ msgstr ""
1537
+
1538
+ # @ redux-framework
1539
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1540
+ #: ../shortcodes/youtube/youtube_popup.php:75
1541
+ msgid "Height"
1542
+ msgstr "Höhe"
1543
+
1544
+ # @ virtue
1545
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1546
+ #: ../shortcodes/youtube/youtube_popup.php:80
1547
+ #, fuzzy
1548
+ msgid "(Optional) Max Width"
1549
+ msgstr "Slider maximale Breite"
1550
+
1551
+ #: ../shortcodes/youtube/youtube_popup.php:10
1552
+ msgid "Insert YouTube Video"
1553
+ msgstr ""
1554
+
1555
+ # @ virtue
1556
+ #: ../shortcodes/youtube/youtube_popup.php:66
1557
+ #, fuzzy
1558
+ msgid "YouTube Link"
1559
+ msgstr "Symbol Link"
1560
+
1561
+ # @ virtue
1562
+ # @ woocommerce
1563
+ #: ../template-contact.php:193
1564
+ msgid "Email:"
1565
+ msgstr "Email:"
1566
+
1567
+ # @ virtue
1568
+ #: ../template-contact.php:200
1569
+ #, fuzzy
1570
+ msgid "Message:"
1571
+ msgstr "Nachricht: "
1572
+
1573
+ # @ virtue
1574
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
1575
+ #~ msgstr "Tut mir leid, aber die gesuchte Seite existiert nicht."
1576
+
1577
+ # @ virtue
1578
+ #~ msgid "It looks like this was the result of either:"
1579
+ #~ msgstr "Sieht so aus, als wäre dies das Ergebnis von entweder:"
1580
+
1581
+ # @ virtue
1582
+ #~ msgid "a mistyped address"
1583
+ #~ msgstr "eine falsche Adresse"
1584
+
1585
+ # @ virtue
1586
+ #~ msgid "an out-of-date link"
1587
+ #~ msgstr "ein veralteter Link"
1588
+
1589
+ # @ virtue
1590
+ #~ msgid "Sorry, no results were found."
1591
+ #~ msgstr "Leider wurden keine Ergebnisse gefunden."
1592
+
1593
+ # @ virtue
1594
+ #~ msgid "Sorry, no blog entries found."
1595
+ #~ msgstr "Leider keine Blog-Einträge gefunden."
1596
+
1597
+ # @ virtue
1598
+ # @ redux-framework
1599
+ #~ msgid "From "
1600
+ #~ msgstr "Von "
1601
+
1602
+ # @ virtue
1603
+ #~ msgid "Sorry, no portfolio entries found."
1604
+ #~ msgstr "Leider keine Portfolio-Einträge gefunden."
1605
+
1606
+ # @ virtue
1607
+ #~ msgid "Search for:"
1608
+ #~ msgstr "Suche nach:"
1609
+
1610
+ # @ virtue
1611
+ #~ msgid "&larr; Older posts"
1612
+ #~ msgstr "&larr; ältere Einträge"
1613
+
1614
+ # @ virtue
1615
+ #~ msgid "Newer posts &rarr;"
1616
+ #~ msgstr "neuere Einträge &rarr;"
1617
+
1618
+ # @ virtue
1619
+ #~ msgid "About Author"
1620
+ #~ msgstr "Über Autor"
1621
+
1622
+ # @ virtue
1623
+ #~ msgid "Latest Posts"
1624
+ #~ msgstr "Aktuelle Beiträge"
1625
+
1626
+ # @ virtue
1627
+ #~ msgid "on Facebook"
1628
+ #~ msgstr "auf Facebook"
1629
+
1630
+ # @ virtue
1631
+ #~ msgid "on Twitter"
1632
+ #~ msgstr "auf Twitter"
1633
+
1634
+ # @ virtue
1635
+ #~ msgid "on Google Plus"
1636
+ #~ msgstr "auf Google Plus"
1637
+
1638
+ # @ virtue
1639
+ #~ msgid "on Flickr"
1640
+ #~ msgstr "auf Flickr"
1641
+
1642
+ # @ virtue
1643
+ #~ msgid "on Vimeo"
1644
+ #~ msgstr "auf Vimeo"
1645
+
1646
+ # @ virtue
1647
+ #~ msgid "on linkedin"
1648
+ #~ msgstr "auf linkedin"
1649
+
1650
+ # @ virtue
1651
+ #~ msgid "on Dribbble"
1652
+ #~ msgstr "auf Dribbble"
1653
+
1654
+ # @ virtue
1655
+ #~ msgid "on Pinterest"
1656
+ #~ msgstr "auf Pinterest"
1657
+
1658
+ # @ virtue
1659
+ #~ msgid "on Instagram"
1660
+ #~ msgstr "auf Instagram"
1661
+
1662
+ # @ virtue
1663
+ #~ msgid "Latest posts from"
1664
+ #~ msgstr "Letzte Einträge von"
1665
+
1666
+ # @ tgmpa
1667
+ # @ virtue
1668
+ #~ msgid "Install Required Plugins"
1669
+ #~ msgstr "Installiere benötigte Plugins"
1670
+
1671
+ # @ tgmpa
1672
+ # @ virtue
1673
+ #~ msgid "Install Plugins"
1674
+ #~ msgstr "Installiere Plugins"
1675
+
1676
+ # @ tgmpa
1677
+ # @ virtue
1678
+ #~ msgid "Installing Plugin: %s"
1679
+ #~ msgstr "Installiere Plugin: %s"
1680
+
1681
+ # @ tgmpa
1682
+ #~ msgid "Something went wrong."
1683
+ #~ msgstr "Etwas ist schiefgegangen."
1684
+
1685
+ # @ tgmpa
1686
+ # @ virtue
1687
+ #~ msgid "Return to Required Plugins Installer"
1688
+ #~ msgstr "Zurück zum benötigten Plugins Installer."
1689
+
1690
+ # @ tgmpa
1691
+ #~ msgid "Return to the dashboard"
1692
+ #~ msgstr "Zurück zur Übersicht"
1693
+
1694
+ # @ tgmpa
1695
+ # @ virtue
1696
+ #~ msgid "Plugin activated successfully."
1697
+ #~ msgstr "Plugin-Aktivierung erfolgreich."
1698
+
1699
+ # @ tgmpa
1700
+ #~ msgid "The following plugin was activated successfully:"
1701
+ #~ msgid_plural "The following plugins were activated successfully:"
1702
+ #~ msgstr[0] "Das folgende Plugin wurde erfolgreich aktiviert:"
1703
+ #~ msgstr[1] "Die folgenden Plugins wurden erfolgreich aktiviert:"
1704
+
1705
+ # @ tgmpa
1706
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1707
+ #~ msgstr "Alle Plugins installiert und erfolgreich aktiviert. %1$s"
1708
+
1709
+ # @ tgmpa
1710
+ #~ msgid "Dismiss this notice"
1711
+ #~ msgstr "Hinweis gelesen"
1712
+
1713
+ # @ tgmpa
1714
+ #~ msgid "External Link"
1715
+ #~ msgstr "Externer Link"
1716
+
1717
+ # @ tgmpa
1718
+ #~ msgid "Private Repository"
1719
+ #~ msgstr "Privater Aufbewahrungsort"
1720
+
1721
+ # @ tgmpa
1722
+ #~ msgid "Pre-Packaged"
1723
+ #~ msgstr "Vorverpackt"
1724
+
1725
+ # @ tgmpa
1726
+ #~ msgid "WordPress Repository"
1727
+ #~ msgstr "WordPress Repository"
1728
+
1729
+ # @ tgmpa
1730
+ #~ msgid "Required"
1731
+ #~ msgstr "Benötigt"
1732
+
1733
+ # @ tgmpa
1734
+ #~ msgid "Recommended"
1735
+ #~ msgstr "Empfohlen"
1736
+
1737
+ # @ tgmpa
1738
+ #~ msgid "Not Installed"
1739
+ #~ msgstr "Nicht installiert"
1740
+
1741
+ # @ tgmpa
1742
+ #~ msgid "Installed But Not Activated"
1743
+ #~ msgstr "Installiert, aber nicht aktiviert"
1744
+
1745
+ # @ tgmpa
1746
+ #~ msgid ""
1747
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
1748
+ #~ "Dashboard\">Return to the Dashboard</a>"
1749
+ #~ msgstr ""
1750
+ #~ "Keine Plugins zu installieren oder aktivieren. <a href=\"%1$s\" title="
1751
+ #~ "\"Zurück zur Übersicht\">Zurück zur Übersicht</a>"
1752
+
1753
+ # @ tgmpa
1754
+ #~ msgid "Plugin"
1755
+ #~ msgstr "Plugin"
1756
+
1757
+ # @ tgmpa
1758
+ #~ msgid "Source"
1759
+ #~ msgstr "Quelle"
1760
+
1761
+ # @ tgmpa
1762
+ #~ msgid "Status"
1763
+ #~ msgstr "Status"
1764
+
1765
+ # @ tgmpa
1766
+ #~ msgid "Install"
1767
+ #~ msgstr "Installieren"
1768
+
1769
+ # @ tgmpa
1770
+ #~ msgid "Activate"
1771
+ #~ msgstr "Aktivieren"
1772
+
1773
+ # @ tgmpa
1774
+ #~ msgid "Install package not available."
1775
+ #~ msgstr "Installationspaket nicht verfügbar."
1776
+
1777
+ # @ tgmpa
1778
+ #~ msgid ""
1779
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
1780
+ #~ msgstr ""
1781
+ #~ "Herunterladen des Installationspaketes von <span class=\"code\">%s</"
1782
+ #~ "span>&#8230;"
1783
+
1784
+ # @ tgmpa
1785
+ #~ msgid "Unpacking the package&#8230;"
1786
+ #~ msgstr "Entpacke das Paket&#8230;"
1787
+
1788
+ # @ tgmpa
1789
+ #~ msgid "Installing the plugin&#8230;"
1790
+ #~ msgstr "Installation des Plugins&#8230;"
1791
+
1792
+ # @ tgmpa
1793
+ #~ msgid "Plugin install failed."
1794
+ #~ msgstr "Plugin-Installation gescheitert."
1795
+
1796
+ # @ tgmpa
1797
+ #~ msgid "Plugin installed successfully."
1798
+ #~ msgstr "Plugin-Installation erfolgreich."
1799
+
1800
+ # @ tgmpa
1801
+ #~ msgid "Plugin activation failed."
1802
+ #~ msgstr "Plugin-Aktivierung gescheitert."
1803
+
1804
+ # @ tgmpa
1805
+ #~ msgid ""
1806
+ #~ "The installation and activation process is starting. This process may "
1807
+ #~ "take a while on some hosts, so please be patient."
1808
+ #~ msgstr ""
1809
+ #~ "Der Installations- und Aktivierungsprozess wird gestartet. Dieser Vorgang "
1810
+ #~ "kann auf einigen Servern eine Weile benötigen, seien Sie daher bitte "
1811
+ #~ "geduldig."
1812
+
1813
+ # @ tgmpa
1814
+ #~ msgid "%1$s installed and activated successfully."
1815
+ #~ msgstr "%1$s erfolgreich installiert und aktiviert."
1816
+
1817
+ # @ tgmpa
1818
+ #~ msgid "Show Details"
1819
+ #~ msgstr "Details anzeigen"
1820
+
1821
+ # @ tgmpa
1822
+ #~ msgid "Hide Details"
1823
+ #~ msgstr "Details verstecken"
1824
+
1825
+ # @ tgmpa
1826
+ #~ msgid "All installations and activations have been completed."
1827
+ #~ msgstr "Alle Installationen und Aktivierungen abgeschlossen."
1828
+
1829
+ # @ tgmpa
1830
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
1831
+ #~ msgstr "Installiere und aktiviere Plugin %1$s (%2$d/%3$d)"
1832
+
1833
+ # @ tgmpa
1834
+ #~ msgid ""
1835
+ #~ "The installation process is starting. This process may take a while on "
1836
+ #~ "some hosts, so please be patient."
1837
+ #~ msgstr ""
1838
+ #~ "Der Installationsvorgang wird gestartet. Dieser Vorgang kann auf einigen "
1839
+ #~ "Servern eine Weile benötigen, seien Sie daher bitte geduldig."
1840
+
1841
+ # @ tgmpa
1842
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1843
+ #~ msgstr ""
1844
+ #~ "Ein Fehler ist während der Installation %1$s: <strong>%2$s</strong> "
1845
+ #~ "aufgetreten."
1846
+
1847
+ # @ tgmpa
1848
+ #~ msgid "The installation of %1$s failed."
1849
+ #~ msgstr "Die Installation von %1$s ist gescheitert."
1850
+
1851
+ # @ tgmpa
1852
+ #~ msgid "%1$s installed successfully."
1853
+ #~ msgstr "%1$s erfolgreich installiert."
1854
+
1855
+ # @ tgmpa
1856
+ #~ msgid "All installations have been completed."
1857
+ #~ msgstr "Alle Installationen sind abgeschlossen."
1858
+
1859
+ # @ tgmpa
1860
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
1861
+ #~ msgstr "Installiere Plugin %1$s (%2$d/%3$d)"
1862
+
1863
+ # @ tgmpa
1864
+ #~ msgid "Return to the Dashboard"
1865
+ #~ msgstr "Zurück zur Übersicht"
1866
+
1867
+ # @ virtue
1868
+ #~ msgid "Continued"
1869
+ #~ msgstr "Weiter"
1870
+
1871
+ # @ virtue
1872
+ #~ msgid "%1$s"
1873
+ #~ msgstr "%1$s"
1874
+
1875
+ # @ virtue
1876
+ #~ msgid "| (Edit)"
1877
+ #~ msgstr "| (Editieren)"
1878
+
1879
+ # @ virtue
1880
+ #~ msgid "Your comment is awaiting moderation."
1881
+ #~ msgstr "Ihr Kommentar wartet noch auf Moderation."
1882
+
1883
+ # @ virtue
1884
+ # @ woocommerce
1885
+ #~ msgid "View your shopping cart"
1886
+ #~ msgstr "Ihren Warenkorb ansehen"
1887
+
1888
+ # @ virtue
1889
+ #~ msgid "Your Cart"
1890
+ #~ msgstr "Ihr Warenkorb"
1891
+
1892
+ # @ virtue
1893
+ #~ msgid "Previous Post"
1894
+ #~ msgstr "Vorheriger Eintrag"
1895
+
1896
+ # @ virtue
1897
+ #~ msgid "Next Post"
1898
+ #~ msgstr "Nächster Eintrag"
1899
+
1900
+ # @ virtue
1901
+ #~ msgid "Occupation"
1902
+ #~ msgstr "Beruf"
1903
+
1904
+ # @ virtue
1905
+ #~ msgid "Please enter your Occupation."
1906
+ #~ msgstr "Bitte geben Sie Ihren Beruf ein."
1907
+
1908
+ # @ virtue
1909
+ #~ msgid "Please enter your Twitter username."
1910
+ #~ msgstr "Bitte geben Sie Ihren Twitter Benutzernamen ein."
1911
+
1912
+ # @ virtue
1913
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
1914
+ #~ msgstr ""
1915
+ #~ "Bitte geben Sie Ihre Facebook URL ein. (Unbedingt mit http:// beginnen)"
1916
+
1917
+ # @ virtue
1918
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
1919
+ #~ msgstr ""
1920
+ #~ "Bitte geben Sie Ihre Google Plus URL ein. (Unbedingt mit http:// beginnen)"
1921
+
1922
+ # @ virtue
1923
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
1924
+ #~ msgstr ""
1925
+ #~ "Bitte geben Sie Ihre Flickr URL ein. (Unbedingt mit http:// beginnen)"
1926
+
1927
+ # @ virtue
1928
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
1929
+ #~ msgstr ""
1930
+ #~ "Bitte geben Sie Ihre Linkedin URL ein. (Unbedingt mit http:// beginnen)"
1931
+
1932
+ # @ virtue
1933
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
1934
+ #~ msgstr ""
1935
+ #~ "Bitte geben Sie Ihre Dribbble URL ein. (Unbedingt mit http:// beginnen)"
1936
+
1937
+ # @ virtue
1938
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
1939
+ #~ msgstr ""
1940
+ #~ "Bitte geben Sie Ihre Pinterest URL ein. (Unbedingt mit http:// beginnen)"
1941
+
1942
+ # @ virtue
1943
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
1944
+ #~ msgstr ""
1945
+ #~ "Bitte geben Sie Ihre Instagram URL ein. (Unbedingt mit http:// beginnen)"
1946
+
1947
+ # @ virtue
1948
+ #~ msgid "Post Slider Images"
1949
+ #~ msgstr "Beitrag Slider Bilder"
1950
+
1951
+ # @ virtue
1952
+ #~ msgid "Feature Page Slider Images"
1953
+ #~ msgstr "Feature Seite Slider Bilder"
1954
+
1955
+ # @ virtue
1956
+ #~ msgid "Remove image"
1957
+ #~ msgstr "Entferne Bild"
1958
+
1959
+ # @ virtue
1960
+ #~ msgid "Add images"
1961
+ #~ msgstr "Bilder hinzufügen"
1962
+
1963
+ # @ virtue
1964
+ #~ msgid "Add to gallery"
1965
+ #~ msgstr "Zur Galerie hinzufügen"
1966
+
1967
+ # @ virtue
1968
+ #~ msgid "Primary Navigation"
1969
+ #~ msgstr "Hauptnavigation"
1970
+
1971
+ # @ virtue
1972
+ #~ msgid "Secondary Navigation"
1973
+ #~ msgstr "Sekundärnavigation"
1974
+
1975
+ # @ virtue
1976
+ #~ msgid "Mobile Navigation"
1977
+ #~ msgstr "Handynavigation"
1978
+
1979
+ # @ virtue
1980
+ #~ msgid "Topbar Navigation"
1981
+ #~ msgstr "Topbar Navigation"
1982
+
1983
+ # @ virtue
1984
+ #~ msgid "Footer Navigation"
1985
+ #~ msgstr "Fußzeile Navigation"
1986
+
1987
+ # @ virtue
1988
+ #~ msgid "All Blog Posts"
1989
+ #~ msgstr "Alle Blogeinträge"
1990
+
1991
+ # @ virtue
1992
+ #~ msgid "Text"
1993
+ #~ msgstr "Text"
1994
+
1995
+ # @ virtue
1996
+ #~ msgid "Display Sidebar?"
1997
+ #~ msgstr "Sidebar anzeigen?"
1998
+
1999
+ # @ virtue
2000
+ #~ msgid "Choose if layout is fullwidth or sidebar"
2001
+ #~ msgstr "Wähle Layout mit voller Breite oder mit Sidebar"
2002
+
2003
+ # @ virtue
2004
+ #~ msgid "Author Info"
2005
+ #~ msgstr "Autor Info"
2006
+
2007
+ # @ virtue
2008
+ #~ msgid "Display an author info box?"
2009
+ #~ msgstr "Zeige eine Autor-Infobox?"
2010
+
2011
+ # @ virtue
2012
+ #~ msgid "Posts Carousel"
2013
+ #~ msgstr "Beitragskarussell"
2014
+
2015
+ # @ virtue
2016
+ #~ msgid "Display a carousel with similar or recent posts?"
2017
+ #~ msgstr "Zeige ein Karussell mit ähnlichen oder aktuellen Beiträgen?"
2018
+
2019
+ # @ virtue
2020
+ #~ msgid "Yes - Display Recent Posts"
2021
+ #~ msgstr "Ja - aktuelle Beiträge anzeigen"
2022
+
2023
+ # @ virtue
2024
+ #~ msgid "Yes - Display Similar Posts"
2025
+ #~ msgstr "Ja - ähnliche Beiträge anzeigen"
2026
+
2027
+ # @ virtue
2028
+ #~ msgid "ex. Similar Posts"
2029
+ #~ msgstr "zB. ähnliche Beiträge"
2030
+
2031
+ # @ virtue
2032
+ #~ msgid "Blog List Options"
2033
+ #~ msgstr "Blog List-Optionen"
2034
+
2035
+ # @ virtue
2036
+ #~ msgid "Blog Category"
2037
+ #~ msgstr "Blog Kategorie"
2038
+
2039
+ # @ virtue
2040
+ #~ msgid "Select all blog posts or a specific category to show"
2041
+ #~ msgstr "Wähle alle Blogeinträge oder eine Kategorie zum anzeigen"
2042
+
2043
+ # @ virtue
2044
+ #~ msgid "How Many Posts Per Page"
2045
+ #~ msgstr "Wie viele Beiträge pro Seite"
2046
+
2047
+ # @ virtue
2048
+ #~ msgid "Display Post Content as:"
2049
+ #~ msgstr "Zeige Beitragsinhalt als:"
2050
+
2051
+ # @ virtue
2052
+ #~ msgid "Summary"
2053
+ #~ msgstr "Zusammenfassung"
2054
+
2055
+ # @ virtue
2056
+ #~ msgid "Full"
2057
+ #~ msgstr "Voll"
2058
+
2059
+ # @ virtue
2060
+ #~ msgid "Sidebar Options"
2061
+ #~ msgstr "Sidebar-Optionen"
2062
+
2063
+ #~ msgid ""
2064
+ #~ "Sorry, no products matched your selection. Please choose a different "
2065
+ #~ "combination."
2066
+ #~ msgstr ""
2067
+ #~ "Entschuldigung, kein Produkt entsprach Ihrer Auswahl. Bitte wählen Sie "
2068
+ #~ "etwas anderes."
2069
+
2070
+ #~ msgid ""
2071
+ #~ "Sorry, this product is unavailable. Please choose a different combination."
2072
+ #~ msgstr ""
2073
+ #~ "Entschuldigung, dieses Produkt ist nicht verfügbar. Bitte wählen Sie eine "
2074
+ #~ "andere Kombination."
2075
+
2076
+ # @ virtue
2077
+ #~ msgid "Daily Archives: %s"
2078
+ #~ msgstr "Tägliches Archiv: %s"
2079
+
2080
+ # @ virtue
2081
+ #~ msgid "Monthly Archives: %s"
2082
+ #~ msgstr "Monatliches Archiv: %s"
2083
+
2084
+ # @ virtue
2085
+ #~ msgid "Yearly Archives: %s"
2086
+ #~ msgstr "Jährliches Archiv: %s"
2087
+
2088
+ # @ virtue
2089
+ #~ msgid "Author Archives: %s"
2090
+ #~ msgstr "Autoren Archiv: %s"
2091
+
2092
+ # @ virtue
2093
+ #~ msgid "Search Results for %s"
2094
+ #~ msgstr "Suchergebnisse für %s"
2095
+
2096
+ # @ virtue
2097
+ #~ msgid "Not Found"
2098
+ #~ msgstr "Nicht gefunden"
2099
+
2100
+ # @ virtue
2101
+ #~ msgid "Something went wrong with the plugin API."
2102
+ #~ msgstr "Etwas ist mit der Plugin-API schiefgegangen."
2103
+
2104
+ # @ virtue
2105
+ #~ msgid "All plugins installed and activated successfully. %s"
2106
+ #~ msgstr "Ein Plugin wurde erfolgreich installiert und aktiviert. %s"
2107
+
2108
+ # @ virtue
2109
+ #~ msgid "Primary Sidebar"
2110
+ #~ msgstr "Primäre Sidebar"
2111
+
2112
+ # @ virtue
2113
+ #~ msgid "Topbar Widget"
2114
+ #~ msgstr "Topbar Widget"
2115
+
2116
+ # @ virtue
2117
+ #~ msgid "Footer Column 1"
2118
+ #~ msgstr "Fußzeilenspalte 1"
2119
+
2120
+ # @ virtue
2121
+ #~ msgid "Footer Column 2"
2122
+ #~ msgstr "Fußzeilenspalte 2"
2123
+
2124
+ # @ virtue
2125
+ #~ msgid "Footer Column 3"
2126
+ #~ msgstr "Fußzeilenspalte 3"
2127
+
2128
+ # @ virtue
2129
+ #~ msgid "Footer Column 4"
2130
+ #~ msgstr "Fußzeilenspalte 4"
2131
+
2132
+ # @ virtue
2133
+ #, fuzzy
2134
+ #~ msgid "Use this widget to add a Vcard to your site"
2135
+ #~ msgstr "Nutze dieses Widget, um eine vCard zur Seite hinzuzufügen"
2136
+
2137
+ # @ virtue
2138
+ #, fuzzy
2139
+ #~ msgid "Virtue: Contact/Vcard"
2140
+ #~ msgstr "Virtue: Kontakt/vCard"
2141
+
2142
+ # @ virtue
2143
+ #~ msgid "vCard"
2144
+ #~ msgstr "vCard"
2145
+
2146
+ # @ virtue
2147
+ #~ msgid "Title:"
2148
+ #~ msgstr "Titel:"
2149
+
2150
+ # @ virtue
2151
+ #~ msgid "Company Name:"
2152
+ #~ msgstr "Firmen Name:"
2153
+
2154
+ # @ virtue
2155
+ #~ msgid "Street Address:"
2156
+ #~ msgstr "Strasse/Adresse:"
2157
+
2158
+ # @ virtue
2159
+ #~ msgid "City/Locality:"
2160
+ #~ msgstr "Stadt/Ort:"
2161
+
2162
+ # @ virtue
2163
+ #~ msgid "State/Region:"
2164
+ #~ msgstr "Bundesland/Region:"
2165
+
2166
+ # @ virtue
2167
+ #~ msgid "Zipcode/Postal Code:"
2168
+ #~ msgstr "Postleitzahl:"
2169
+
2170
+ # @ virtue
2171
+ # @ woocommerce
2172
+ #, fuzzy
2173
+ #~ msgid "Mobile Telephone:"
2174
+ #~ msgstr "Telefon:"
2175
+
2176
+ # @ virtue
2177
+ # @ woocommerce
2178
+ #, fuzzy
2179
+ #~ msgid "Fixed Telephone:"
2180
+ #~ msgstr "Telefon:"
2181
+
2182
+ # @ virtue
2183
+ #~ msgid "Simple way to add Social Icons"
2184
+ #~ msgstr "Einfacher Weg, um Social Icons hinzuzufügen"
2185
+
2186
+ # @ virtue
2187
+ #~ msgid "Virtue: Social Links"
2188
+ #~ msgstr "Virtue: Social Links"
2189
+
2190
+ # @ virtue
2191
+ #~ msgid "Facebook:"
2192
+ #~ msgstr "Facebook:"
2193
+
2194
+ # @ virtue
2195
+ #~ msgid "Twitter:"
2196
+ #~ msgstr "Twitter:"
2197
+
2198
+ # @ virtue
2199
+ #~ msgid "Instagram:"
2200
+ #~ msgstr "Instagram:"
2201
+
2202
+ # @ virtue
2203
+ #~ msgid "GooglePlus:"
2204
+ #~ msgstr "GooglePlus:"
2205
+
2206
+ # @ virtue
2207
+ #~ msgid "Flickr:"
2208
+ #~ msgstr "Flickr:"
2209
+
2210
+ # @ virtue
2211
+ #~ msgid "Vimeo:"
2212
+ #~ msgstr "Vimeo:"
2213
+
2214
+ # @ virtue
2215
+ #~ msgid "Youtube:"
2216
+ #~ msgstr "Youtube:"
2217
+
2218
+ # @ virtue
2219
+ #~ msgid "Pinterest:"
2220
+ #~ msgstr "Pinterest:"
2221
+
2222
+ # @ virtue
2223
+ #~ msgid "Dribbble:"
2224
+ #~ msgstr "Dribbble:"
2225
+
2226
+ # @ virtue
2227
+ #~ msgid "Linkedin:"
2228
+ #~ msgstr "Linkedin:"
2229
+
2230
+ # @ virtue
2231
+ #~ msgid "Tumblr:"
2232
+ #~ msgstr "Tumblr:"
2233
+
2234
+ # @ virtue
2235
+ #~ msgid "RSS:"
2236
+ #~ msgstr "RSS:"
2237
+
2238
+ # @ virtue
2239
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
2240
+ #~ msgstr "Dies zeigt den neuesten Beitrag auf Ihrer Seite mit einem Thumbnail"
2241
+
2242
+ # @ virtue
2243
+ #~ msgid "Virtue: Recent Posts"
2244
+ #~ msgstr "Virtue: Letzte Beiträge"
2245
+
2246
+ # @ virtue
2247
+ #~ msgid "Recent Posts"
2248
+ #~ msgstr "Letzte Beiträge"
2249
+
2250
+ # @ virtue
2251
+ #~ msgid "Number of posts to show:"
2252
+ #~ msgstr "Anzahl der zu zeigenden Beiträge:"
2253
+
2254
+ # @ virtue
2255
+ #~ msgid "Limit to Catagory (Optional):"
2256
+ #~ msgstr "Limitiere auf Kategorie (Optional):"
2257
+
2258
+ # @ virtue
2259
+ #~ msgid ""
2260
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
2261
+ #~ msgstr ""
2262
+ #~ "Dies zeigt ein Raster gefeatureter Bilder der neuesten Beiträge oder "
2263
+ #~ "Portfolio-Einträge"
2264
+
2265
+ # @ virtue
2266
+ #~ msgid "Virtue: Image Grid"
2267
+ #~ msgstr "Virtue: Bild Raster"
2268
+
2269
+ # @ virtue
2270
+ #~ msgid "Grid Choice:"
2271
+ #~ msgstr "Rasterauswahl:"
2272
+
2273
+ # @ virtue
2274
+ #~ msgid "Blog Posts"
2275
+ #~ msgstr "Blog Beiträge"
2276
+
2277
+ # @ virtue
2278
+ #~ msgid "If Post - Choose Category (Optional):"
2279
+ #~ msgstr "Wenn Beitrag - wähle Kategorie (optional):"
2280
+
2281
+ # @ virtue
2282
+ #~ msgid "If Portfolio - Choose Type (Optional):"
2283
+ #~ msgstr "Wenn Portfolio - wähle Typ (optional):"
2284
+
2285
+ # @ virtue
2286
+ #~ msgid "Number of images to show:"
2287
+ #~ msgstr "Anzahl der anzuzeigenden Bilder:"
2288
+
2289
+ # @ virtue
2290
+ #~ msgid "This allows for an image and a simple about text."
2291
+ #~ msgstr "Dies ermöglicht einen einfachen 'Über'-Text mit Bild."
2292
+
2293
+ # @ virtue
2294
+ #, fuzzy
2295
+ #~ msgid "Virtue: Image"
2296
+ #~ msgstr "Virtue: Bild Raster"
2297
+
2298
+ # @ virtue
2299
+ # @ redux-framework
2300
+ #~ msgid "Upload"
2301
+ #~ msgstr "Upload"
2302
+
2303
+ # @ virtue
2304
+ #, fuzzy
2305
+ #~ msgid "Image opens in"
2306
+ #~ msgstr "Bild Wiederholungsoptionen"
2307
+
2308
+ # @ virtue
2309
+ #, fuzzy
2310
+ #~ msgid "Image Link (optional)"
2311
+ #~ msgstr "Bild Wiederholungsoptionen"
2312
+
2313
+ # @ woocommerce
2314
+ #, fuzzy
2315
+ #~ msgid "Edit Account"
2316
+ #~ msgstr "Mein Konto"
2317
+
2318
+ # @ virtue
2319
+ #, fuzzy
2320
+ #~ msgid "Logout"
2321
+ #~ msgstr "Logo"
2322
+
2323
+ # @ virtue
2324
+ #~ msgid "(Edit)"
2325
+ #~ msgstr "(Editieren)"
2326
+
2327
+ # @ virtue
2328
+ #~ msgid "One Response "
2329
+ #~ msgid_plural "%1$s Responses "
2330
+ #~ msgstr[0] "Eine Antwort "
2331
+ #~ msgstr[1] "%1$s Antworten "
2332
+
2333
+ # @ virtue
2334
+ #~ msgid "&larr; Older comments"
2335
+ #~ msgstr "&larr; Ältere Kommentare"
2336
+
2337
+ # @ virtue
2338
+ #~ msgid "Newer comments &rarr;"
2339
+ #~ msgstr "Neuere Kommentare &rarr;"
2340
+
2341
+ # @ virtue
2342
+ #~ msgid "Comments are closed."
2343
+ #~ msgstr "Kommentare sind geschlossen."
2344
+
2345
+ # @ virtue
2346
+ #~ msgid "Leave a Reply"
2347
+ #~ msgstr "Hinterlasse einen Kommentar"
2348
+
2349
+ # @ virtue
2350
+ # @ woocommerce
2351
+ #~ msgid "Leave a Reply to %s"
2352
+ #~ msgstr "Hinterlasse einen Kommentar zu %s"
2353
+
2354
+ # @ virtue
2355
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
2356
+ #~ msgstr ""
2357
+ #~ "Sie müssen <a href=\"%s\">eingeloggt sein</a>, um einen Kommentar zu "
2358
+ #~ "hinterlassen."
2359
+
2360
+ # @ virtue
2361
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
2362
+ #~ msgstr "Eingeloggt als <a href=\"%s/wp-admin/profile.php\">%s</a>."
2363
+
2364
+ # @ virtue
2365
+ #~ msgid "Log out of this account"
2366
+ #~ msgstr "Abmelden von diesem Konto"
2367
+
2368
+ # @ virtue
2369
+ #~ msgid "Log out &raquo;"
2370
+ #~ msgstr "Abmelden &raquo;"
2371
+
2372
+ # @ virtue
2373
+ #~ msgid " <span>*</span>"
2374
+ #~ msgstr " <span>*</span>"
2375
+
2376
+ # @ virtue
2377
+ #~ msgid "Email (will not be published)"
2378
+ #~ msgstr "Email (wird nicht veröffentlicht)"
2379
+
2380
+ # @ virtue
2381
+ #~ msgid "Website"
2382
+ #~ msgstr "Webseite"
2383
+
2384
+ # @ virtue
2385
+ #~ msgid "Submit Comment"
2386
+ #~ msgstr "Kommentar absenden"
2387
+
2388
+ # @ virtue
2389
+ #~ msgid "Pages:"
2390
+ #~ msgstr "Seiten:"
2391
+
2392
+ # @ virtue
2393
+ #~ msgid "by"
2394
+ #~ msgstr "von"
2395
+
2396
+ # @ virtue
2397
+ #~ msgid "posted in:"
2398
+ #~ msgstr "Eingetragen bei:"
2399
+
2400
+ # @ virtue
2401
+ #~ msgid "By"
2402
+ #~ msgstr "Vom"
2403
+
2404
+ # @ virtue
2405
+ #~ msgid "Menu"
2406
+ #~ msgstr "Menü"
2407
+
2408
+ # @ virtue
2409
+ #~ msgid "Recent Projects"
2410
+ #~ msgstr "Aktuelle Projekte"
2411
+
2412
+ # @ virtue
2413
+ #~ msgid "Similar Posts"
2414
+ #~ msgstr "Ähnliche Beiträge"
2415
+
2416
+ # @ virtue
2417
+ #~ msgid "Latest from the Blog"
2418
+ #~ msgstr "Neuester aus dem Blog"
2419
+
2420
+ # @ virtue
2421
+ #~ msgid "READ MORE"
2422
+ #~ msgstr "WEITER LESEN"
2423
+
2424
+ # @ virtue
2425
+ #~ msgid "Featured Projects"
2426
+ #~ msgstr "Gefeaturetes Projekt"
2427
+
2428
+ # @ virtue
2429
+ #~ msgid "Copy and Paste this code into the theme options import feature"
2430
+ #~ msgstr ""
2431
+ #~ "Kopiere und füge diesen Code in die Importfunktion der Theme-Optionen"
2432
+
2433
+ # @ virtue
2434
+ #~ msgid "There are no previous options"
2435
+ #~ msgstr "Es gibt keine vorherigen Optionen"
2436
+
2437
+ # @ virtue
2438
+ #~ msgid "Main Settings"
2439
+ #~ msgstr "Haupteinstellungen"
2440
+
2441
+ # @ virtue
2442
+ #~ msgid "Welcome to Virtue Theme Options"
2443
+ #~ msgstr "Willkommen zu den Virtue Theme-Optionen"
2444
+
2445
+ # @ virtue
2446
+ #~ msgid "This theme was developed by"
2447
+ #~ msgstr "Dieses Theme wurde entwickelt von"
2448
+
2449
+ # @ virtue
2450
+ #~ msgid "For theme documentation visit"
2451
+ #~ msgstr "Für die Theme-Dokumentation besuchen Sie"
2452
+
2453
+ # @ virtue
2454
+ #~ msgid "For support please visit"
2455
+ #~ msgstr "Für Support besuchen Sie bitte"
2456
+
2457
+ # @ virtue
2458
+ #~ msgid "Site Layout Style"
2459
+ #~ msgstr "Seiten Layout-Stil"
2460
+
2461
+ # @ virtue
2462
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2463
+ #~ msgstr "Wählen Sie Spalten- oder vollen Layout-Stil"
2464
+
2465
+ # @ virtue
2466
+ #~ msgid "Footer Widget Layout"
2467
+ #~ msgstr "Fußzeile Widget Layout"
2468
+
2469
+ # @ virtue
2470
+ #~ msgid "Select how many columns for footer widgets"
2471
+ #~ msgstr "Wählen Sie die Anzahl der Fußzeilen-Widget-Spalten"
2472
+
2473
+ # @ virtue
2474
+ #~ msgid "Logo Options"
2475
+ #~ msgstr "Logo Optionen"
2476
+
2477
+ # @ virtue
2478
+ #~ msgid "Logo Layout"
2479
+ #~ msgstr "Logo Layout"
2480
+
2481
+ # @ virtue
2482
+ #~ msgid "Choose how you want your logo to be laid out"
2483
+ #~ msgstr "Wählen Sie, wie das Logo-Layout aussehen soll"
2484
+
2485
+ # @ virtue
2486
+ #~ msgid "Logo"
2487
+ #~ msgstr "Logo"
2488
+
2489
+ # @ virtue
2490
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
2491
+ #~ msgstr "Logo hochladen. Wenn leer verwendet das Thema den Seitennamen."
2492
+
2493
+ # @ virtue
2494
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
2495
+ #~ msgstr "Laden Sie Logo @2x für Retina Screens hoch"
2496
+
2497
+ # @ virtue
2498
+ #~ msgid "Should be twice the pixel size of your normal logo."
2499
+ #~ msgstr "Sollte die doppelte Pixelanzahl Ihres normalen Logos besitzen."
2500
+
2501
+ # @ virtue
2502
+ #~ msgid "Sitename Logo Font"
2503
+ #~ msgstr "Font für den Seitennamen"
2504
+
2505
+ # @ virtue
2506
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
2507
+ #~ msgstr ""
2508
+ #~ "Wählen Sie Größe & Stil für den Seitennamen, wenn Sie kein Logo verwenden."
2509
+
2510
+ # @ virtue
2511
+ #~ msgid "Site Tagline - Below Logo\""
2512
+ #~ msgstr "Seiten Slogan - unter Logo\""
2513
+
2514
+ # @ virtue
2515
+ #~ msgid "An optional line of text below your logo"
2516
+ #~ msgstr "Eine optionale Zeile unter dem Logo"
2517
+
2518
+ # @ virtue
2519
+ #~ msgid "Site Tagline Font"
2520
+ #~ msgstr "Seiten-Slogan Font"
2521
+
2522
+ # @ virtue
2523
+ #~ msgid "Choose size and style your site tagline"
2524
+ #~ msgstr "Wählen Sie Größe & Stil des Seitenslogans"
2525
+
2526
+ # @ virtue
2527
+ #~ msgid "Logo Spacing"
2528
+ #~ msgstr "Logo Abstand"
2529
+
2530
+ # @ virtue
2531
+ #~ msgid "Top Spacing"
2532
+ #~ msgstr "Abstand oben"
2533
+
2534
+ # @ virtue
2535
+ #~ msgid "Bottom Spacing"
2536
+ #~ msgstr "Abstand unten"
2537
+
2538
+ # @ virtue
2539
+ #~ msgid "Left Spacing"
2540
+ #~ msgstr "Abstand links"
2541
+
2542
+ # @ virtue
2543
+ #~ msgid "Right Spacing"
2544
+ #~ msgstr "Abstand rechts"
2545
+
2546
+ # @ virtue
2547
+ #~ msgid "Primary Menu Spacing"
2548
+ #~ msgstr "Hauptmenü Abstand"
2549
+
2550
+ # @ virtue
2551
+ #~ msgid "Sitewide Banner"
2552
+ #~ msgstr "Seitenweiter Banner"
2553
+
2554
+ # @ virtue
2555
+ #~ msgid "Upload a banner for bottom of header."
2556
+ #~ msgstr "Laden Sie ein Banner für die Kopfzeile unten hoch."
2557
+
2558
+ # @ virtue
2559
+ #~ msgid "Topbar Settings"
2560
+ #~ msgstr "Topbar Einstellungen"
2561
+
2562
+ # @ virtue
2563
+ #~ msgid "Use Topbar?"
2564
+ #~ msgstr "Benutze Topbar?"
2565
+
2566
+ # @ virtue
2567
+ #~ msgid "Choose to show or hide topbar"
2568
+ #~ msgstr "Wählen, um Topbar anzuzeigen"
2569
+
2570
+ # @ virtue
2571
+ #~ msgid "Use Topbar Icon Menu?"
2572
+ #~ msgstr "Benutze Topbar Symbolmenü?"
2573
+
2574
+ # @ virtue
2575
+ #~ msgid "Choose to show or hide topbar icon Menu"
2576
+ #~ msgstr ""
2577
+ #~ "Wählen, um das Symbolmenü in der Topbar anzuzeigen oder zu verstecken"
2578
+
2579
+ # @ virtue
2580
+ #~ msgid "Topbar Icon Menu"
2581
+ #~ msgstr "Topbar Symbolmenü"
2582
+
2583
+ # @ virtue
2584
+ #~ msgid "Choose your icons for the topbar icon menu."
2585
+ #~ msgstr "Wählen Sie die Symbole für das Topbar-Symbolmenü."
2586
+
2587
+ # @ virtue
2588
+ #~ msgid "Show Cart total in topbar?"
2589
+ #~ msgstr "Zeige Warenkorb-Total in Topbar?"
2590
+
2591
+ # @ virtue
2592
+ #~ msgid "This only works if using woocommerce"
2593
+ #~ msgstr "Dies funktioniert nur, wenn Sie woocommerce verwenden"
2594
+
2595
+ # @ virtue
2596
+ #~ msgid "Display Search in Topbar?"
2597
+ #~ msgstr "Zeige Suche in der Topbar?"
2598
+
2599
+ # @ virtue
2600
+ #~ msgid "Choose to show or hide search in topbar"
2601
+ #~ msgstr "Wählen, um Suche in der Topbar anzuzeigen oder zu verstecken"
2602
+
2603
+ # @ virtue
2604
+ #~ msgid "Enable widget area in right of Topbar?"
2605
+ #~ msgstr "Ermögliche Widgetbereich rechts in der Topbar?"
2606
+
2607
+ # @ virtue
2608
+ #~ msgid ""
2609
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2610
+ #~ "the widget area)"
2611
+ #~ msgstr ""
2612
+ #~ "Hinweis: Dies entfernt die Suche (Sie können sie durch hinzufügen in den "
2613
+ #~ "Widgetbereich reaktivieren)"
2614
+
2615
+ # @ virtue
2616
+ #~ msgid "Topbar Layout Switch"
2617
+ #~ msgstr "Topbar Layout-Tausch"
2618
+
2619
+ # @ virtue
2620
+ #~ msgid "This moves the left items to the right and right items to the left."
2621
+ #~ msgstr ""
2622
+ #~ "Dies verschiebt die linken Elemente nach rechts und die rechten nach "
2623
+ #~ "links."
2624
+
2625
+ # @ virtue
2626
+ #~ msgid "Slider Settings"
2627
+ #~ msgstr "Slider Einstellungen"
2628
+
2629
+ # @ virtue
2630
+ #~ msgid "Home Page Slider Options"
2631
+ #~ msgstr "Hauptseiten-Slider Einstellungen"
2632
+
2633
+ # @ virtue
2634
+ #~ msgid "Choose a Home Image Slider"
2635
+ #~ msgstr "Wählen Sie einen Hauptseiten-Bildslider"
2636
+
2637
+ # @ virtue
2638
+ #~ msgid "If you don't want an image slider on your home page choose none."
2639
+ #~ msgstr ""
2640
+ #~ "Wenn Sie keinen Bildslider auf Ihrer Webseite möchten, dann wählen Sie "
2641
+ #~ "keinen aus."
2642
+
2643
+ # @ virtue
2644
+ #~ msgid "Use large images for best results."
2645
+ #~ msgstr "Benutze große Bilder für beste Ergebnisse"
2646
+
2647
+ # @ virtue
2648
+ #~ msgid "Slider Max Height"
2649
+ #~ msgstr "Slider maximale Höhe"
2650
+
2651
+ # @ virtue
2652
+ #~ msgid "Note: does not work if images are smaller than max."
2653
+ #~ msgstr ""
2654
+ #~ "Hinweis: Das funktioniert nicht, wenn Bilder kleiner als der Maximalwert "
2655
+ #~ "sind"
2656
+
2657
+ # @ virtue
2658
+ #~ msgid "Auto Play?"
2659
+ #~ msgstr "Automatisch abspielen?"
2660
+
2661
+ # @ virtue
2662
+ #~ msgid "This determines if a slider automatically scrolls"
2663
+ #~ msgstr "Soll der Slider automatisch scrollen?"
2664
+
2665
+ # @ virtue
2666
+ #~ msgid "Slider Pause Time"
2667
+ #~ msgstr "Slider Pausezeit"
2668
+
2669
+ # @ virtue
2670
+ #~ msgid "How long to pause on each slide, in milliseconds."
2671
+ #~ msgstr "Wie viel Pause pro Slide, in Millisekunden."
2672
+
2673
+ # @ virtue
2674
+ #~ msgid "Transition Type"
2675
+ #~ msgstr "Übergangstyp"
2676
+
2677
+ # @ virtue
2678
+ #~ msgid "Choose a transition type"
2679
+ #~ msgstr "Wählen Sie einen Übergangstyp"
2680
+
2681
+ # @ virtue
2682
+ #~ msgid "Slider Transition Time"
2683
+ #~ msgstr "Slider Übergangszeit"
2684
+
2685
+ # @ virtue
2686
+ #~ msgid "How long for slide transitions, in milliseconds."
2687
+ #~ msgstr "Wie viel Zeit für den Übergang, in Millisekunden."
2688
+
2689
+ # @ virtue
2690
+ #~ msgid "Show Captions?"
2691
+ #~ msgstr "Zeige Beschriftung?"
2692
+
2693
+ # @ virtue
2694
+ #~ msgid "Choose to show or hide captions"
2695
+ #~ msgstr "Wähle zum Anzeigen oder Verstecken"
2696
+
2697
+ # @ virtue
2698
+ #~ msgid "If your using a video on the home page place video embed code here."
2699
+ #~ msgstr ""
2700
+ #~ "Wenn Sie ein Video für Ihre Hauptseite verwenden, betten Sie den Code "
2701
+ #~ "hier ein."
2702
+
2703
+ # @ virtue
2704
+ #~ msgid "Mobile Slider"
2705
+ #~ msgstr "Handy Slider"
2706
+
2707
+ # @ virtue
2708
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
2709
+ #~ msgstr ""
2710
+ #~ "Erstellen Sie einen leichtgewichtigeren Slider für Ihre mobilen Besucher."
2711
+
2712
+ # @ virtue
2713
+ #~ msgid "Would you like to use this feature?"
2714
+ #~ msgstr "Wollen Sie diese Funktion verwenden?"
2715
+
2716
+ # @ virtue
2717
+ #~ msgid ""
2718
+ #~ "Choose if you would like to show a different slider on your home page for "
2719
+ #~ "your mobile visitors."
2720
+ #~ msgstr ""
2721
+ #~ "Wählen Sie dies, wenn Sie einen anderen Slider für Ihre mobilen Besucher "
2722
+ #~ "auf Ihrer Hauptseite zeigen möchten."
2723
+
2724
+ # @ virtue
2725
+ #~ msgid "Choose a Slider for Mobile"
2726
+ #~ msgstr "Wählen Sie einen Slider für Handys"
2727
+
2728
+ # @ virtue
2729
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
2730
+ #~ msgstr "Wählen Sie den Slider, den Sie für Handybesucher anzeigen möchten."
2731
+
2732
+ # @ virtue
2733
+ #~ msgid "Home Layout"
2734
+ #~ msgstr "Hauptseite - Layout"
2735
+
2736
+ # @ virtue
2737
+ #~ msgid "Display a sidebar on the Home Page?"
2738
+ #~ msgstr "Zeige eine Sidebar auf der Hauptseite?"
2739
+
2740
+ # @ virtue
2741
+ #~ msgid "This determines if there is a sidebar on the home page."
2742
+ #~ msgstr "Das entscheidet, ob eine Sidebar auf der Hauptseite ist."
2743
+
2744
+ # @ virtue
2745
+ #~ msgid "Choose a Sidebar for your Home Page"
2746
+ #~ msgstr "Wähle eine Sidbar für die Hauptseite"
2747
+
2748
+ # @ virtue
2749
+ #, fuzzy
2750
+ #~ msgid "Homepage Layout Manager"
2751
+ #~ msgstr "Hauptseite - Layout"
2752
+
2753
+ # @ virtue
2754
+ #~ msgid "Latest Blog Posts"
2755
+ #~ msgstr "Aktuelle Blogeinträge"
2756
+
2757
+ # @ virtue
2758
+ #~ msgid "Icon Menu"
2759
+ #~ msgstr "Symbolmenü"
2760
+
2761
+ # @ virtue
2762
+ #~ msgid "Page Content"
2763
+ #~ msgstr "Seiteninhalt"
2764
+
2765
+ # @ virtue
2766
+ #~ msgid "Home Blog Settings"
2767
+ #~ msgstr "Hauptseite - Blog Einstellungen"
2768
+
2769
+ # @ virtue
2770
+ #~ msgid "Home Blog Title"
2771
+ #~ msgstr "Hauptseite - Blogtitel"
2772
+
2773
+ # @ virtue
2774
+ #~ msgid "ex: Latest from the blog"
2775
+ #~ msgstr "zB: Aktuell aus dem Blog"
2776
+
2777
+ # @ virtue
2778
+ #~ msgid "Choose How many posts on Homepage"
2779
+ #~ msgstr "Wählen Sie die Anzahl der Beiträge für Hauptseite"
2780
+
2781
+ # @ virtue
2782
+ #~ msgid "Limit posts to a Category"
2783
+ #~ msgstr "Limitiere Beiträge auf eine Kategorie"
2784
+
2785
+ # @ virtue
2786
+ #~ msgid "Leave blank to select all"
2787
+ #~ msgstr "Leer lassen, um alle zu zeigen"
2788
+
2789
+ # @ virtue
2790
+ #~ msgid "Home Portfolio Carousel Settings"
2791
+ #~ msgstr "Hauptseite - Portfoliokarussell Einstellungen"
2792
+
2793
+ # @ virtue
2794
+ #~ msgid "Home Portfolio Carousel title"
2795
+ #~ msgstr "Hauptseite - Portfoliokarussell Titel"
2796
+
2797
+ # @ virtue
2798
+ #~ msgid "ex: Portfolio Carousel title"
2799
+ #~ msgstr "zB: Portfoliokarussell Titel"
2800
+
2801
+ # @ virtue
2802
+ #~ msgid "Portfolio Carousel Category Type"
2803
+ #~ msgstr "Portfoliokarussell Kategorietyp"
2804
+
2805
+ # @ virtue
2806
+ #~ msgid "Leave blank to select all types"
2807
+ #~ msgstr "Leer lassen, um all Typen zu verwenden"
2808
+
2809
+ # @ virtue
2810
+ #~ msgid "Choose how many portfolio items are in carousel"
2811
+ #~ msgstr "Wählen Sie, wie viele Portofolio-Elmente im Karussell sein sollen"
2812
+
2813
+ # @ virtue
2814
+ #~ msgid "Portfolio Carousel Order by"
2815
+ #~ msgstr "Portfoliokarussell Sortierung nach"
2816
+
2817
+ # @ virtue
2818
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
2819
+ #~ msgstr ""
2820
+ #~ "Wählen Sie, wie die Portfolio-Elemente im Karussell angeordnet sein "
2821
+ #~ "sollen."
2822
+
2823
+ # @ virtue
2824
+ #~ msgid "Display Portfolio Types under Title"
2825
+ #~ msgstr "Zeige Portfoliotypen unter Titel"
2826
+
2827
+ # @ virtue
2828
+ #~ msgid "Home Icon Menu"
2829
+ #~ msgstr "Hauptseite - Symbolmenü"
2830
+
2831
+ # @ virtue
2832
+ #~ msgid "Choose your icons for the icon menu."
2833
+ #~ msgstr "Wählen Sie die Symbole für das Symbolmenü."
2834
+
2835
+ # @ virtue
2836
+ #~ msgid "Choose how many columns in each row"
2837
+ #~ msgstr "Wählen Sie, wie viele Spalten pro Reihe"
2838
+
2839
+ # @ virtue
2840
+ #~ msgid "Page Content Options"
2841
+ #~ msgstr "Seiteninhalt Optionen"
2842
+
2843
+ # @ virtue
2844
+ #~ msgid "Latest Post Display"
2845
+ #~ msgstr "Aktuellste Beitragsanzeige"
2846
+
2847
+ # @ virtue
2848
+ #~ msgid ""
2849
+ #~ "If Latest Post page is font page. Choose to show full post or post "
2850
+ #~ "excerpt."
2851
+ #~ msgstr ""
2852
+ #~ "Wenn aktuelle Beiträge auf Hauptseite. Wählen Sie Anzeige des vollen "
2853
+ #~ "Beitrags oder Beitragsauszug."
2854
+
2855
+ # @ virtue
2856
+ #~ msgid "Shop Settings"
2857
+ #~ msgstr "Shop Einstellungen"
2858
+
2859
+ # @ virtue
2860
+ #~ msgid "Shop Archive Page Settings"
2861
+ #~ msgstr "Shop Archivseiten Einstellung"
2862
+
2863
+ # @ virtue
2864
+ #~ msgid "Display the sidebar on shop archives?"
2865
+ #~ msgstr "Zeige die Sidebar in Shoparchiven?"
2866
+
2867
+ # @ virtue
2868
+ #~ msgid ""
2869
+ #~ "This determines if there is a sidebar on the shop and category pages."
2870
+ #~ msgstr ""
2871
+ #~ "Dies entscheidet, ob eine Sidebar auf den Shop- und Kategorieseiten ist."
2872
+
2873
+ # @ virtue
2874
+ #~ msgid "Choose a Sidebar for your shop page"
2875
+ #~ msgstr "Wählen Sie eine Sidebar für Ihre Shopseite"
2876
+
2877
+ # @ virtue
2878
+ #~ msgid "How many products per page"
2879
+ #~ msgstr "Wie viele Produkte pro Seite"
2880
+
2881
+ # @ virtue
2882
+ #~ msgid "Show Ratings in Shop and Category Pages"
2883
+ #~ msgstr "Zeige Bewertungen in Shop- und Kategorieseiten"
2884
+
2885
+ # @ virtue
2886
+ #~ msgid ""
2887
+ #~ "This determines if the rating is displayed in the product archive pages"
2888
+ #~ msgstr ""
2889
+ #~ "Dies entscheidet, ob in den Produktarchiv-Seiten eine Bewertung angezeigt "
2890
+ #~ "wird"
2891
+
2892
+ # @ virtue
2893
+ #~ msgid "Shop Product Title Settings"
2894
+ #~ msgstr "Shop Produkttitel Einstellungen"
2895
+
2896
+ # @ virtue
2897
+ #~ msgid "Shop & archive Product title Font"
2898
+ #~ msgstr "Shop & Archiv Produkttitel Schrift"
2899
+
2900
+ # @ virtue
2901
+ #~ msgid ""
2902
+ #~ "Choose Size and Style for product titles on category and archive pages."
2903
+ #~ msgstr ""
2904
+ #~ "Wähle Größe und Stil für die Produkttitel auf Kategorie- und Archivseiten."
2905
+
2906
+ # @ virtue
2907
+ #~ msgid "Set Product Title to Uppercase?"
2908
+ #~ msgstr "Den Produkttitel groß schreiben?"
2909
+
2910
+ # @ virtue
2911
+ #~ msgid "This makes your product titles uppercase on Category pages"
2912
+ #~ msgstr "Den Produkttitel in Großschrift auf Kategorieseiten anzeigen"
2913
+
2914
+ # @ virtue
2915
+ #~ msgid "Product title Min Height"
2916
+ #~ msgstr "Produkttitel Mindesthöhe"
2917
+
2918
+ # @ virtue
2919
+ #~ msgid ""
2920
+ #~ "If your titles are long increase this to help align your products height."
2921
+ #~ msgstr ""
2922
+ #~ "Wenn Ihre Titel lang sind, erhöhen Sie dies, um die Ausrichtung Ihrer "
2923
+ #~ "Produkthöhe zu verbessern."
2924
+
2925
+ # @ virtue
2926
+ #~ msgid "Product Image Sizes"
2927
+ #~ msgstr "Produktbild Größen"
2928
+
2929
+ # @ virtue
2930
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2931
+ #~ msgstr "Verwende Produktbild Beschneidung auf Katalogseiten"
2932
+
2933
+ # @ virtue
2934
+ #~ msgid ""
2935
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2936
+ #~ "recommended width: 270px for Catalog Images"
2937
+ #~ msgstr ""
2938
+ #~ "Wenn ausgeschaltet werden Bildabmessungen aus woocommerce Einstellungen "
2939
+ #~ "verwendet - empfohlene Breite: 270px für Katalogbilder"
2940
+
2941
+ # @ virtue
2942
+ #~ msgid "Enable Product Image Crop on product Page"
2943
+ #~ msgstr "Verwende Produktbild Beschneidung auf Produktseiten"
2944
+
2945
+ # @ virtue
2946
+ #~ msgid ""
2947
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2948
+ #~ "recommended width: 468px for Single Product Image"
2949
+ #~ msgstr ""
2950
+ #~ "Wenn ausgeschaltet werden Bildabmessungen aus woocommerce Einstellungen "
2951
+ #~ "verwendet - empfohlene Breite: 468px für Produktbilder"
2952
+
2953
+ # @ virtue
2954
+ #~ msgid "Product Page Settings"
2955
+ #~ msgstr "Produktseiten Einstellung"
2956
+
2957
+ # @ virtue
2958
+ #~ msgid "Display product tabs?"
2959
+ #~ msgstr "Zeige Produkttabulatoren?"
2960
+
2961
+ # @ virtue
2962
+ #~ msgid "This determines if product tabs are displayed"
2963
+ #~ msgstr "Dies entscheidet, ob Produkttabulatoren angezeigt werden"
2964
+
2965
+ # @ virtue
2966
+ #~ msgid "Display related products?"
2967
+ #~ msgstr "Zeige ähnliche Produkte?"
2968
+
2969
+ # @ virtue
2970
+ #~ msgid "This determines related products are displayed"
2971
+ #~ msgstr "Dies entscheidet, ob ähnliche Produkte angezeigt werden"
2972
+
2973
+ # @ virtue
2974
+ #~ msgid "Basic Styling"
2975
+ #~ msgstr "Basis Styling"
2976
+
2977
+ # @ virtue
2978
+ #~ msgid "Basic Stylng"
2979
+ #~ msgstr "Basis Styling"
2980
+
2981
+ # @ virtue
2982
+ #~ msgid "Theme Skin Stylesheet"
2983
+ #~ msgstr "Theme Skin Stylesheet"
2984
+
2985
+ # @ virtue
2986
+ #~ msgid ""
2987
+ #~ "Note* changes made in options panel will override this stylesheet. "
2988
+ #~ "Example: Colors set in typography."
2989
+ #~ msgstr ""
2990
+ #~ "Hinweis* Gemachte Änderungen im Einstellungspanel ignorieren dieses "
2991
+ #~ "Stylesheet. Beispiel: gewählte Farben in Typographie."
2992
+
2993
+ # @ virtue
2994
+ #~ msgid "Choose the default Highlight color for your site."
2995
+ #~ msgstr "Wählen Sie die Standard-Highlightfarbe für Ihre Seite."
2996
+
2997
+ # @ virtue
2998
+ #~ msgid "20% lighter than Primary Color"
2999
+ #~ msgstr "20% heller als Hauptfarbe"
3000
+
3001
+ # @ virtue
3002
+ #~ msgid "This is used for hover effects"
3003
+ #~ msgstr "Wird für mouseover-Effekte verwendet"
3004
+
3005
+ # @ virtue
3006
+ #~ msgid "Sitewide Gray Fonts"
3007
+ #~ msgstr "Globale Link Schriftfarbe"
3008
+
3009
+ # @ virtue
3010
+ #~ msgid "Footer Font Color"
3011
+ #~ msgstr "Fußzeilen Schriftfarbe"
3012
+
3013
+ # @ virtue
3014
+ #~ msgid "Advanced Styling"
3015
+ #~ msgstr "Erweitertes Styling"
3016
+
3017
+ # @ virtue
3018
+ #~ msgid "Main Content Background"
3019
+ #~ msgstr "Hauptinhalt Hintergrund"
3020
+
3021
+ # @ virtue
3022
+ #~ msgid "Upload background image or texture"
3023
+ #~ msgstr "Hintergrundbild oder -textur hochladen"
3024
+
3025
+ # @ virtue
3026
+ #~ msgid "Image repeat options"
3027
+ #~ msgstr "Bild Wiederholungsoptionen"
3028
+
3029
+ # @ virtue
3030
+ #~ msgid "X image placement options"
3031
+ #~ msgstr "X Bild Platzierungsoption"
3032
+
3033
+ # @ virtue
3034
+ #~ msgid "Y image placement options"
3035
+ #~ msgstr "Y Bild Platzierungsoption"
3036
+
3037
+ # @ virtue
3038
+ #~ msgid "Topbar Background"
3039
+ #~ msgstr "Topbar Hintergrund"
3040
+
3041
+ # @ virtue
3042
+ #~ msgid "Header Background"
3043
+ #~ msgstr "Kopfzeile Hintergrund"
3044
+
3045
+ # @ virtue
3046
+ #~ msgid "Secondary Menu Background"
3047
+ #~ msgstr "Sekundärmenü Hintergrund"
3048
+
3049
+ # @ virtue
3050
+ #~ msgid "Mobile Menu Background"
3051
+ #~ msgstr "Handymenü Hintergrund"
3052
+
3053
+ # @ virtue
3054
+ #~ msgid "Footer Background"
3055
+ #~ msgstr "Fußzeile Hintergrund"
3056
+
3057
+ # @ virtue
3058
+ #~ msgid "Body Background"
3059
+ #~ msgstr "Seiten Hintergrund"
3060
+
3061
+ # @ virtue
3062
+ #~ msgid "Fixed or Scroll"
3063
+ #~ msgstr "Fixiert oder scrollend"
3064
+
3065
+ # @ virtue
3066
+ #~ msgid "Typography"
3067
+ #~ msgstr "Typographie"
3068
+
3069
+ # @ virtue
3070
+ #~ msgid "H1 Headings"
3071
+ #~ msgstr "H1 Überschrift"
3072
+
3073
+ # @ virtue
3074
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
3075
+ #~ msgstr "Wähle Größe und Stil für h1 (Dieser Stil ist Ihr Seitentitel)"
3076
+
3077
+ # @ virtue
3078
+ #~ msgid "H2 Headings"
3079
+ #~ msgstr "H2 Überschrift"
3080
+
3081
+ # @ virtue
3082
+ #~ msgid "Choose Size and Style for h2"
3083
+ #~ msgstr "Wähle Größe und Stil für h2"
3084
+
3085
+ # @ virtue
3086
+ #~ msgid "H3 Headings"
3087
+ #~ msgstr "H3 Überschrift"
3088
+
3089
+ # @ virtue
3090
+ #~ msgid "Choose Size and Style for h3"
3091
+ #~ msgstr "Wähle Größe und Stil für h3"
3092
+
3093
+ # @ virtue
3094
+ #~ msgid "H4 Headings"
3095
+ #~ msgstr "H4 Überschrift"
3096
+
3097
+ # @ virtue
3098
+ #~ msgid "Choose Size and Style for h4"
3099
+ #~ msgstr "Wähle Größe und Stil für h4"
3100
+
3101
+ # @ virtue
3102
+ #~ msgid "H5 Headings"
3103
+ #~ msgstr "H5 Überschrift"
3104
+
3105
+ # @ virtue
3106
+ #~ msgid "Choose Size and Style for h5"
3107
+ #~ msgstr "Wähle Größe und Stil für h5"
3108
+
3109
+ # @ virtue
3110
+ #~ msgid "Body Font Options"
3111
+ #~ msgstr "Generelle Schrifteinstellungen"
3112
+
3113
+ # @ virtue
3114
+ #~ msgid "Body Font"
3115
+ #~ msgstr "Generelle Schrift"
3116
+
3117
+ # @ virtue
3118
+ #~ msgid "Choose Size and Style for paragraphs"
3119
+ #~ msgstr "Wähle Größe und Stil für Paragraphen"
3120
+
3121
+ # @ virtue
3122
+ #~ msgid "Menu Settings"
3123
+ #~ msgstr "Menüeinstellungen"
3124
+
3125
+ # @ virtue
3126
+ #~ msgid "Primary Menu Options"
3127
+ #~ msgstr "Hauptmenü Einstellungen"
3128
+
3129
+ # @ virtue
3130
+ #~ msgid "Primary Menu Font"
3131
+ #~ msgstr "Hauptmenü Schrift"
3132
+
3133
+ # @ virtue
3134
+ #~ msgid "Choose Size and Style for primary menu"
3135
+ #~ msgstr "Wähle Größe & Stil für Hauptmenü"
3136
+
3137
+ # @ virtue
3138
+ #~ msgid "Secondary Menu Options"
3139
+ #~ msgstr "Sekundärmenü Einstellungen"
3140
+
3141
+ # @ virtue
3142
+ #~ msgid "Secondary Menu Font"
3143
+ #~ msgstr "Sekundärmenü Schrift"
3144
+
3145
+ # @ virtue
3146
+ #~ msgid "Choose Size and Style for secondary menu"
3147
+ #~ msgstr "Wähle Größe und Stil für Sekundärmenü"
3148
+
3149
+ # @ virtue
3150
+ #~ msgid "Mobile Menu Options"
3151
+ #~ msgstr "Handymenü Einstellungen"
3152
+
3153
+ # @ virtue
3154
+ #~ msgid "Mobile Menu Font"
3155
+ #~ msgstr "Handymenü Schrift"
3156
+
3157
+ # @ virtue
3158
+ #~ msgid "Choose Size and Style for Mobile Menu"
3159
+ #~ msgstr "Wähle Größe und Stil für Handymenü"
3160
+
3161
+ # @ virtue
3162
+ #~ msgid "Misc Settings"
3163
+ #~ msgstr "Generelle Einstellungen"
3164
+
3165
+ # @ virtue
3166
+ #~ msgid ""
3167
+ #~ "This sets the link in every single portfolio page. *note: You still have "
3168
+ #~ "to set the page template to portfolio."
3169
+ #~ msgstr ""
3170
+ #~ "Dies setzt einen Link in jeder einzelnen Portfolioseite. *Hinweis: Sie "
3171
+ #~ "müssen trotzdem das Seiten-Template auf Portfolio stellen."
3172
+
3173
+ # @ virtue
3174
+ #~ msgid "Allow Comments on Portfolio Posts"
3175
+ #~ msgstr "Erlaube Kommentare in Portfolio-Beiträgen"
3176
+
3177
+ # @ virtue
3178
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
3179
+ #~ msgstr "Aktivieren, um Kommentare in Portfolio-Beiträgen zu erlauben"
3180
+
3181
+ # @ virtue
3182
+ #~ msgid "Hide Image Border"
3183
+ #~ msgstr "Verstecke Bildrahmen"
3184
+
3185
+ # @ virtue
3186
+ #~ msgid "Choose to show or hide image border"
3187
+ #~ msgstr "Wählen, um den Bildrahmen anzuzeigen oder zu verstecken"
3188
+
3189
+ # @ virtue
3190
+ #~ msgid "Blog Archive"
3191
+ #~ msgstr "Blog Archiv"
3192
+
3193
+ # @ virtue
3194
+ #~ msgid "Choose to show full post or post excerpt."
3195
+ #~ msgstr "Wählen, um den ganzen Betrag oder nur Beitragsauszug anzuzeigen."
3196
+
3197
+ # @ virtue
3198
+ #~ msgid "Show Comments Closed Text?"
3199
+ #~ msgstr "Zeige Text 'Kommentare geschlossen'?"
3200
+
3201
+ # @ virtue
3202
+ #~ msgid "Choose to show or hide comments closed alert below posts."
3203
+ #~ msgstr ""
3204
+ #~ "Wählen, um 'Kommentare geschlossen'-Hinweis unter Beiträgen anzuzeigen "
3205
+ #~ "oder zu verstecken."
3206
+
3207
+ # @ virtue
3208
+ #~ msgid "Show Author Icon with posts?"
3209
+ #~ msgstr "Zeige Autor-Symbol mit Beiträgen?"
3210
+
3211
+ # @ virtue
3212
+ #~ msgid "Choose to show or hide author icon under post title."
3213
+ #~ msgstr ""
3214
+ #~ "Wählen, um Autor-Symbol unter Beitragstitel anzuzeigen oder zu verstecken."
3215
+
3216
+ # @ virtue
3217
+ #, fuzzy
3218
+ #~ msgid ""
3219
+ #~ "Choose to show or hide previous and next post links in the footer of a "
3220
+ #~ "single post."
3221
+ #~ msgstr ""
3222
+ #~ "Wählen, um Autor-Symbol unter Beitragstitel anzuzeigen oder zu verstecken."
3223
+
3224
+ # @ virtue
3225
+ #~ msgid "Custom Favicon"
3226
+ #~ msgstr "Benutzerdefiniertes Favicon"
3227
+
3228
+ # @ virtue
3229
+ #~ msgid ""
3230
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
3231
+ #~ "favicon."
3232
+ #~ msgstr ""
3233
+ #~ "Laden Sie ein 16px * 16px png/gif/ico Bild hoch, das als Symbol für Ihre "
3234
+ #~ "Webseite verwendet wird."
3235
+
3236
+ # @ virtue
3237
+ #~ msgid "Sets the email for the contact page email form."
3238
+ #~ msgstr ""
3239
+ #~ "Stellt die Email-Adresse für das Email-Formular der Kontaktseiten ein."
3240
+
3241
+ # @ virtue
3242
+ #~ msgid "Footer Copyright Text"
3243
+ #~ msgstr "Fußzeile Urhebertext"
3244
+
3245
+ # @ virtue
3246
+ #~ msgid ""
3247
+ #~ "Write your own copyright text here. You can use the following shortcodes "
3248
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
3249
+ #~ msgstr ""
3250
+ #~ "Schreiben Sie Ihren Urhebertext hier. Sie können folgende Kürzel in der "
3251
+ #~ "Fußzeile verwenden: [copyright] [site-name] [the-year]"
3252
+
3253
+ # @ virtue
3254
+ #~ msgid "Blog Post Summary Default"
3255
+ #~ msgstr "Blog Beitragsübersicht Standardansicht"
3256
+
3257
+ # @ virtue
3258
+ #, fuzzy
3259
+ #~ msgid "Blog Post Head Content Default"
3260
+ #~ msgstr "Blogbeitrag Standards"
3261
+
3262
+ # @ virtue
3263
+ #~ msgid "Create Sidebars"
3264
+ #~ msgstr "Erstelle Sidebars"
3265
+
3266
+ # @ virtue
3267
+ #~ msgid "Create Custom Sidebars"
3268
+ #~ msgstr "Erstelle benutzerdefinierte Sidebar"
3269
+
3270
+ # @ virtue
3271
+ #~ msgid "Type new sidebar name into textbox"
3272
+ #~ msgstr "Schreibe den neuen Sidebarnamen in die Textbox"
3273
+
3274
+ # @ virtue
3275
+ #~ msgid "Extra Sidebar"
3276
+ #~ msgstr "Extra Sidebar"
3277
+
3278
+ # @ virtue
3279
+ #~ msgid "Wordpress Galleries"
3280
+ #~ msgstr "Wordpress Galerien"
3281
+
3282
+ # @ virtue
3283
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
3284
+ #~ msgstr "Ermöglicht, dass Virtue die Wordpressgalerien ersetzt"
3285
+
3286
+ # @ virtue
3287
+ #~ msgid ""
3288
+ #~ "Disable this if using a plugin to customize galleries, for example "
3289
+ #~ "jetpack tiled gallery."
3290
+ #~ msgstr ""
3291
+ #~ "Deaktivieren Sie diese, wenn Sie ein Plugin verwenden, um die Galerien "
3292
+ #~ "anpassen, z. B. Jetpack gekachelte Galerie."
3293
+
3294
+ # @ virtue
3295
+ #~ msgid "Advanced Settings"
3296
+ #~ msgstr "Erweiterte Optionen"
3297
+
3298
+ # @ virtue
3299
+ #~ msgid "Custom CSS Box"
3300
+ #~ msgstr "Benutzerdefinierte CSS Box"
3301
+
3302
+ # @ virtue
3303
+ #~ msgid "Custom CSS"
3304
+ #~ msgstr "Benutzerdefiniertes CSS"
3305
+
3306
+ # @ virtue
3307
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
3308
+ #~ msgstr ""
3309
+ #~ "Fügt durch Eintragen in dieser Box schnell CSS zu Ihren Theme hinzu."
3310
+
3311
+ # @ virtue
3312
+ #~ msgid "Theme Update Import"
3313
+ #~ msgstr "Theme Update Import"
3314
+
3315
+ # @ virtue
3316
+ #~ msgid ""
3317
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
3318
+ #~ "theme options."
3319
+ #~ msgstr ""
3320
+ #~ "Wenn Sie von Version 1.5.6 oder früheren aktualisieren, verwenden Sie "
3321
+ #~ "dieses Skript zum Updaten Ihrer Theme-Einstellungen."
3322
+
3323
+ # @ virtue
3324
+ #~ msgid "Turn on and save to start script"
3325
+ #~ msgstr "Einschalten und speichern, um das Skript zu starten"
3326
+
3327
+ # @ virtue
3328
+ #~ msgid "If using a child theme enter child theme folder"
3329
+ #~ msgstr "Wenn Child-Theme verwendet wird, den Child-Theme Pfad angeben"
3330
+
3331
+ # @ virtue
3332
+ #~ msgid "Theme Options"
3333
+ #~ msgstr "Theme Einstellungen"
3334
+
3335
+ # @ virtue
3336
+ #~ msgid ""
3337
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
3338
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
3339
+ #~ msgstr ""
3340
+ #~ "Danke, dass Sie das Virtue Theme von <a href=\"http://kadencethemes.com/"
3341
+ #~ "\" target=\"_blank\">Kadence Themes</a> verwenden."
3342
+
3343
+ # @ virtue
3344
+ #, fuzzy
3345
+ #~ msgid "Icon"
3346
+ #~ msgstr "Symbol hinzufügen"
3347
+
3348
+ # @ redux-framework
3349
+ #, fuzzy
3350
+ #~ msgid "New %s"
3351
+ #~ msgstr "Neu "
3352
+
3353
+ # @ virtue
3354
+ #~ msgid "Upload Icon"
3355
+ #~ msgstr "Symbol hochladen"
3356
+
3357
+ # @ virtue
3358
+ #~ msgid "Select an Icon"
3359
+ #~ msgstr "Wähle ein Symbol"
3360
+
3361
+ # @ redux-framework
3362
+ #~ msgid "URL"
3363
+ #~ msgstr "URL"
3364
+
3365
+ # @ virtue
3366
+ # @ redux-framework
3367
+ #~ msgid "Description"
3368
+ #~ msgstr "Beschreibung"
3369
+
3370
+ #~ msgid "Open Link in New Tab/Window"
3371
+ #~ msgstr "Link in neuem Tab/Fenster öffnen"
3372
+
3373
+ # @ virtue
3374
+ #~ msgid "Add Icon"
3375
+ #~ msgstr "Symbol hinzufügen"
3376
+
3377
+ # @ redux-framework
3378
+ #, fuzzy
3379
+ #~ msgid "Slide"
3380
+ #~ msgstr "Slide hinzufügen"
3381
+
3382
+ # @ virtue
3383
+ #~ msgid "Slide Link"
3384
+ #~ msgstr "Slide Link"
3385
+
3386
+ # @ redux-framework
3387
+ #~ msgid "Delete Slide"
3388
+ #~ msgstr "Entferne Slide"
3389
+
3390
+ # @ virtue
3391
+ #, fuzzy
3392
+ #~ msgid "Add %s"
3393
+ #~ msgstr "Bilder hinzufügen"
3394
+
3395
+ # @ virtue
3396
+ #~ msgid "Back to"
3397
+ #~ msgstr "Zurück zu"
3398
+
3399
+ # @ woocommerce
3400
+ #~ msgid "Sale!"
3401
+ #~ msgstr "Verkaufen!"
3402
+
3403
+ # @ virtue
3404
+ #~ msgid "Shop"
3405
+ #~ msgstr "Shop"
3406
+
3407
+ # @ virtue
3408
+ #~ msgid "Virtue: About with Image"
3409
+ #~ msgstr "Virtue: 'Über' mit Bild"
3410
+
3411
+ # @ redux-framework
3412
+ #~ msgid "Options panel created using %1$s"
3413
+ #~ msgstr "Optionenverzeichnis erstellt mit %1$s"
3414
+
3415
+ # @ redux-framework
3416
+ #~ msgid "Redux Framework"
3417
+ #~ msgstr "Redux Framework"
3418
+
3419
+ # @ redux-framework
3420
+ #~ msgid "Options"
3421
+ #~ msgstr "Optionen"
3422
+
3423
+ # @ redux-framework
3424
+ #~ msgid ""
3425
+ #~ "You have changes that are not saved. Would you like to save them now?"
3426
+ #~ msgstr ""
3427
+ #~ "Sie haben nicht gespeicherte Änderungen. Wollen Sie diese speichern?"
3428
+
3429
+ # @ redux-framework
3430
+ #~ msgid "Are you sure? Resetting will lose all custom values."
3431
+ #~ msgstr ""
3432
+ #~ "Sind Sie sicher? Zurücksetzen wird alle benutzerdefinierten Werte "
3433
+ #~ "entfernen."
3434
+
3435
+ # @ redux-framework
3436
+ #~ msgid "Are you sure? Resetting will lose all custom values in this section."
3437
+ #~ msgstr ""
3438
+ #~ "Sind Sie sicher? Zurücksetzen wird alle benutzerdefinierten Werte dieser "
3439
+ #~ "Sektion entfernen."
3440
+
3441
+ # @ redux-framework
3442
+ #~ msgid ""
3443
+ #~ "Your current options will be replaced with the values of this preset. "
3444
+ #~ "Would you like to proceed?"
3445
+ #~ msgstr ""
3446
+ #~ "Ihre aktuellen Einstellungen werden durch die Standardwerte ersetzt. "
3447
+ #~ "Wollen Sie fortsetzen?"
3448
+
3449
+ # @ cmb
3450
+ #, fuzzy
3451
+ #~ msgid "Please Wait"
3452
+ #~ msgstr "Bitte nochmals versuchen"
3453
+
3454
+ # @ redux-framework
3455
+ #~ msgid ""
3456
+ #~ "Warning- This options panel will not work properly without javascript!"
3457
+ #~ msgstr ""
3458
+ #~ "Warnung - Dieses Optionenverzeichnis wird ohne Javascript nicht richtig "
3459
+ #~ "funktionieren!"
3460
+
3461
+ # @ redux-framework
3462
+ #~ msgid "Expand"
3463
+ #~ msgstr "Erweitern"
3464
+
3465
+ # @ redux-framework
3466
+ #~ msgid "Save Changes"
3467
+ #~ msgstr "Änderungen speichern"
3468
+
3469
+ # @ redux-framework
3470
+ #~ msgid "Reset Section"
3471
+ #~ msgstr "Auswahl zurücksetzen"
3472
+
3473
+ # @ redux-framework
3474
+ #~ msgid "Reset All"
3475
+ #~ msgstr "Alles zurücksetzen"
3476
+
3477
+ # @ redux-framework
3478
+ #~ msgid "Working..."
3479
+ #~ msgstr "Arbeite..."
3480
+
3481
+ # @ redux-framework
3482
+ #~ msgid "Settings Imported!"
3483
+ #~ msgstr "Einstellungen importiert!"
3484
+
3485
+ # @ redux-framework
3486
+ #~ msgid "Settings Saved!"
3487
+ #~ msgstr "Einstellungen gespeichert!"
3488
+
3489
+ # @ redux-framework
3490
+ #~ msgid "Settings have changed, you should save them!"
3491
+ #~ msgstr "Einstellungen wurden geändert, Sie sollten diese speichern!"
3492
+
3493
+ # @ redux-framework
3494
+ #~ msgid "error(s) were found!"
3495
+ #~ msgstr "Fehler wurde(n) gefunden!"
3496
+
3497
+ # @ redux-framework
3498
+ #~ msgid "warning(s) were found!"
3499
+ #~ msgstr "Warnung(en) wurde(n) gefunden!"
3500
+
3501
+ # @ redux-framework
3502
+ #~ msgid "System Info"
3503
+ #~ msgstr "System Info"
3504
+
3505
+ # @ redux-framework
3506
+ #, fuzzy
3507
+ #~ msgid ""
3508
+ #~ "You have changes that are not saved. Would you like to save them now?"
3509
+ #~ msgstr ""
3510
+ #~ "Sie haben nicht gespeicherte Änderungen. Wollen Sie diese speichern?"
3511
+
3512
+ # @ redux-framework
3513
+ #, fuzzy
3514
+ #~ msgid "Are you sure? Resetting will lose all custom values."
3515
+ #~ msgstr ""
3516
+ #~ "Sind Sie sicher? Zurücksetzen wird alle benutzerdefinierten Werte "
3517
+ #~ "entfernen."
3518
+
3519
+ # @ redux-framework
3520
+ #, fuzzy
3521
+ #~ msgid ""
3522
+ #~ "Your current options will be replaced with the values of this preset. "
3523
+ #~ "Would you like to proceed?"
3524
+ #~ msgstr ""
3525
+ #~ "Ihre aktuellen Einstellungen werden durch die Standardwerte ersetzt. "
3526
+ #~ "Wollen Sie fortsetzen?"
3527
+
3528
+ # @ woocommerce
3529
+ #~ msgid "%s review for %s"
3530
+ #~ msgid_plural "%s reviews for %s"
3531
+ #~ msgstr[0] "%s Bewertung von %s"
3532
+ #~ msgstr[1] "%s Bewertungen von %s"
3533
+
3534
+ # @ woocommerce
3535
+ #~ msgid "Reviews"
3536
+ #~ msgstr "Bewertungen"
3537
+
3538
+ # @ woocommerce
3539
+ #~ msgid "There are no reviews yet."
3540
+ #~ msgstr "Es gibt zur Zeit noch keine Bewertungen."
3541
+
3542
+ # @ woocommerce
3543
+ #~ msgid "Add a review"
3544
+ #~ msgstr "Eine Bewertung erstellen"
3545
+
3546
+ # @ woocommerce
3547
+ #~ msgid "Be the first to review"
3548
+ #~ msgstr "Als Erster bewerten"
3549
+
3550
+ # @ woocommerce
3551
+ #~ msgid "Submit"
3552
+ #~ msgstr "Übermitteln"
3553
+
3554
+ # @ woocommerce
3555
+ #~ msgid "Your Rating"
3556
+ #~ msgstr "Ihre Wertung"
3557
+
3558
+ # @ woocommerce
3559
+ #~ msgid "Rate&hellip;"
3560
+ #~ msgstr "Wert&hellip;"
3561
+
3562
+ # @ woocommerce
3563
+ #~ msgid "Perfect"
3564
+ #~ msgstr "Perfekt"
3565
+
3566
+ # @ woocommerce
3567
+ #~ msgid "Good"
3568
+ #~ msgstr "Gut"
3569
+
3570
+ # @ woocommerce
3571
+ #~ msgid "Average"
3572
+ #~ msgstr "Durchschnittlich"
3573
+
3574
+ # @ woocommerce
3575
+ #~ msgid "Not that bad"
3576
+ #~ msgstr "Nicht so schlecht"
3577
+
3578
+ # @ woocommerce
3579
+ #~ msgid "Very Poor"
3580
+ #~ msgstr "Sehr dürftig"
3581
+
3582
+ # @ woocommerce
3583
+ #~ msgid "Your Review"
3584
+ #~ msgstr "Ihre Bewertung"
3585
+
3586
+ # @ woocommerce
3587
+ #~ msgid ""
3588
+ #~ "Only logged in customers who have purchased this product may leave a "
3589
+ #~ "review."
3590
+ #~ msgstr ""
3591
+ #~ "Nur angemeldete Kunden, die dieses Produkt gekauft haben, dürfen bewerten."
3592
+
3593
+ # @ woocommerce
3594
+ #~ msgid "Cart Totals"
3595
+ #~ msgstr "Warenkorb Endsumme"
3596
+
3597
+ # @ woocommerce
3598
+ #~ msgid "Cart Subtotal"
3599
+ #~ msgstr "Warenkorb Zwischensumme"
3600
+
3601
+ # @ woocommerce
3602
+ #~ msgid "Order Total"
3603
+ #~ msgstr "Gesamtbestellung"
3604
+
3605
+ # @ woocommerce
3606
+ #~ msgid " (taxes estimated for %s)"
3607
+ #~ msgstr "(Steuern geschätzt für %s)"
3608
+
3609
+ # @ woocommerce
3610
+ #~ msgid ""
3611
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
3612
+ #~ "checkout based on your billing and shipping information."
3613
+ #~ msgstr ""
3614
+ #~ "Hinweis: Versand und Steuern sind geschätzte %s und werden während der "
3615
+ #~ "Prüfung auf der Grundlage Ihrer Abrechnung und Versandinformationen "
3616
+ #~ "aktualisiert."
3617
+
3618
+ # @ woocommerce
3619
+ #~ msgid "Product"
3620
+ #~ msgstr "Produkt"
3621
+
3622
+ # @ woocommerce
3623
+ #~ msgid "Price"
3624
+ #~ msgstr "Preis"
3625
+
3626
+ # @ woocommerce
3627
+ #~ msgid "Quantity"
3628
+ #~ msgstr "Anzahl"
3629
+
3630
+ # @ woocommerce
3631
+ #~ msgid "Total"
3632
+ #~ msgstr "Gesamt"
3633
+
3634
+ # @ woocommerce
3635
+ #~ msgid "Remove this item"
3636
+ #~ msgstr "Entferne diesen Artikel"
3637
+
3638
+ # @ woocommerce
3639
+ #~ msgid "Available on backorder"
3640
+ #~ msgstr "Erhältlich im Rückstand"
3641
+
3642
+ # @ woocommerce
3643
+ #~ msgid "Coupon"
3644
+ #~ msgstr "Gutschein"
3645
+
3646
+ # @ woocommerce
3647
+ #~ msgid "Coupon code"
3648
+ #~ msgstr "Gutschein-Code"
3649
+
3650
+ # @ woocommerce
3651
+ #~ msgid "Apply Coupon"
3652
+ #~ msgstr "Gutschein einlösen"
3653
+
3654
+ # @ woocommerce
3655
+ #~ msgid "Update Cart"
3656
+ #~ msgstr "Warenkorb aktualisieren"
3657
+
3658
+ # @ woocommerce
3659
+ #~ msgid "Proceed to Checkout"
3660
+ #~ msgstr "Zur Kasse"
3661
+
3662
+ # @ woocommerce
3663
+ #~ msgid "You may be interested in&hellip;"
3664
+ #~ msgstr "Vielleicht ebenfalls für Sie interessant&hellip;"
3665
+
3666
+ # @ woocommerce
3667
+ #~ msgid "Calculate Shipping"
3668
+ #~ msgstr "Berechne Lieferkosten"
3669
+
3670
+ # @ woocommerce
3671
+ #~ msgid "Select a country&hellip;"
3672
+ #~ msgstr "Wählen Sie ein Land&hellip;"
3673
+
3674
+ # @ woocommerce
3675
+ #~ msgid "State / county"
3676
+ #~ msgstr "Bundesland"
3677
+
3678
+ # @ woocommerce
3679
+ #~ msgid "City"
3680
+ #~ msgstr "Stadt"
3681
+
3682
+ # @ woocommerce
3683
+ #~ msgid "Postcode / Zip"
3684
+ #~ msgstr "Postleitzahl"
3685
+
3686
+ # @ woocommerce
3687
+ #~ msgid ""
3688
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
3689
+ #~ "merchant has declined your transaction."
3690
+ #~ msgstr ""
3691
+ #~ "Leider kann Ihre Bestellung nicht bearbeitet werden, weil Ihre "
3692
+ #~ "herausgebende Bank/Händler Ihre Transaktion abgelehnt hat."
3693
+
3694
+ # @ woocommerce
3695
+ #~ msgid "Please attempt your purchase again or go to your account page."
3696
+ #~ msgstr ""
3697
+ #~ "Bitte versuchen Sie Ihren Kauf nochmals zu tätigen oder gehen Sie auf "
3698
+ #~ "Ihre Konto- Seite."
3699
+
3700
+ # @ woocommerce
3701
+ #~ msgid "Please attempt your purchase again."
3702
+ #~ msgstr "Bitte versuchen Sie erneut, Ihren Einkauf zu tätigen."
3703
+
3704
+ # @ woocommerce
3705
+ #~ msgid "Pay"
3706
+ #~ msgstr "Zahlen"
3707
+
3708
+ # @ woocommerce
3709
+ #~ msgid "Thank you. Your order has been received."
3710
+ #~ msgstr "Danke. Ihre Bestellung wurde übermittelt."
3711
+
3712
+ # @ woocommerce
3713
+ #~ msgid "Order:"
3714
+ #~ msgstr "Bestellung:"
3715
+
3716
+ # @ woocommerce
3717
+ #~ msgid "Date:"
3718
+ #~ msgstr "Datum:"
3719
+
3720
+ # @ woocommerce
3721
+ #~ msgid "Total:"
3722
+ #~ msgstr "Gesamt:"
3723
+
3724
+ # @ woocommerce
3725
+ #~ msgid "Payment method:"
3726
+ #~ msgstr "Zahlungsmethode:"
3727
+
3728
+ # @ woocommerce
3729
+ #~ msgid "No products found which match your selection."
3730
+ #~ msgstr "Kein Produkt gefunden, das zu Ihrer Auswahl passt."
3731
+
3732
+ # @ woocommerce
3733
+ #~ msgid "Default sorting"
3734
+ #~ msgstr "Standard Sortierung"
3735
+
3736
+ # @ woocommerce
3737
+ #~ msgid "Sort by popularity"
3738
+ #~ msgstr "Sortiere nach Popularität"
3739
+
3740
+ # @ woocommerce
3741
+ #~ msgid "Sort by average rating"
3742
+ #~ msgstr "Sortiere nach durchschnittlicher Bewertung"
3743
+
3744
+ # @ woocommerce
3745
+ #~ msgid "Sort by newness"
3746
+ #~ msgstr "Sortiere nach Aktualität"
3747
+
3748
+ # @ woocommerce
3749
+ #~ msgid "Sort by price: low to high"
3750
+ #~ msgstr "Sortieren nach Preis: aufsteigend"
3751
+
3752
+ # @ woocommerce
3753
+ #~ msgid "Sort by price: high to low"
3754
+ #~ msgstr "Sortieren nach Preis: absteigend"
3755
+
3756
+ # @ woocommerce
3757
+ #~ msgid "Showing the single result"
3758
+ #~ msgstr "Das einzige Ergebnis anzeigen"
3759
+
3760
+ # @ woocommerce
3761
+ #~ msgid "Showing all %d results"
3762
+ #~ msgstr "Zeige alle %d Ergebnisse"
3763
+
3764
+ # @ woocommerce
3765
+ #~ msgid ""
3766
+ #~ "To track your order please enter your Order ID in the box below and press "
3767
+ #~ "return. This was given to you on your receipt and in the confirmation "
3768
+ #~ "email you should have received."
3769
+ #~ msgstr ""
3770
+ #~ "Um Ihre Bestellung zu verfolgen, geben Sie bitte Ihre Bestell-ID in das "
3771
+ #~ "Feld unten ein und drücken Sie Enter. Die ID finden Sie auf Ihrer "
3772
+ #~ "Quittung und in der Bestätigungsemail, die Sie erhalten haben."
3773
+
3774
+ # @ woocommerce
3775
+ #~ msgid "Order ID"
3776
+ #~ msgstr "Bestell-ID"
3777
+
3778
+ # @ woocommerce
3779
+ #~ msgid "Found in your order confirmation email."
3780
+ #~ msgstr "Gefunden in Ihrer Bestell-Bestätigungsemail."
3781
+
3782
+ # @ woocommerce
3783
+ #~ msgid "Billing Email"
3784
+ #~ msgstr "Abrechnung Email"
3785
+
3786
+ # @ woocommerce
3787
+ #~ msgid "Email you used during checkout."
3788
+ #~ msgstr "Email, die Sie während des Kaufes verwendet haben."
3789
+
3790
+ # @ woocommerce
3791
+ #~ msgid "Track"
3792
+ #~ msgstr "Verfolgen"
3793
+
3794
+ # @ woocommerce
3795
+ #~ msgid "Order Details"
3796
+ #~ msgstr "Bestelldetails"
3797
+
3798
+ # @ woocommerce
3799
+ #~ msgid "Download file%s"
3800
+ #~ msgstr "Dateien herunterladen%s"
3801
+
3802
+ # @ woocommerce
3803
+ #~ msgid "Order Again"
3804
+ #~ msgstr "Nochmals bestellen"
3805
+
3806
+ # @ woocommerce
3807
+ #~ msgid "Customer details"
3808
+ #~ msgstr "Kundendetails"
3809
+
3810
+ # @ woocommerce
3811
+ #~ msgid "Billing Address"
3812
+ #~ msgstr "Rechnungsadresse"
3813
+
3814
+ # @ woocommerce
3815
+ #~ msgid "N/A"
3816
+ #~ msgstr "N/A"
3817
+
3818
+ # @ woocommerce
3819
+ #~ msgid "Shipping Address"
3820
+ #~ msgstr "Lieferadresse"
3821
+
3822
+ # @ woocommerce
3823
+ #~ msgid "Products tagged &ldquo;"
3824
+ #~ msgstr "Produkte markiert &ldquo;"
3825
+
3826
+ # @ woocommerce
3827
+ #~ msgid "Search results for &ldquo;"
3828
+ #~ msgstr "Suchergebnis für &ldquo;"
3829
+
3830
+ # @ woocommerce
3831
+ #~ msgid "Error 404"
3832
+ #~ msgstr "Fehler 404"
3833
+
3834
+ # @ woocommerce
3835
+ #~ msgid "Posts tagged &ldquo;"
3836
+ #~ msgstr "Beiträge markiert &ldquo;"
3837
+
3838
+ # @ woocommerce
3839
+ #~ msgid "Author:"
3840
+ #~ msgstr "Autor:"
3841
+
3842
+ # @ woocommerce
3843
+ #~ msgid "Page"
3844
+ #~ msgstr "Seite"
3845
+
3846
+ # @ woocommerce
3847
+ #~ msgid "Username or email"
3848
+ #~ msgstr "Benutzername oder Email"
3849
+
3850
+ # @ woocommerce
3851
+ #~ msgid "Login"
3852
+ #~ msgstr "Login"
3853
+
3854
+ # @ woocommerce
3855
+ #~ msgid "Lost Password?"
3856
+ #~ msgstr "Passwort verloren?"
3857
+
3858
+ # @ woocommerce
3859
+ #~ msgid "Rated %s out of 5"
3860
+ #~ msgstr "Bewertet mit %s von 5"
3861
+
3862
+ # @ woocommerce
3863
+ #~ msgid "out of 5"
3864
+ #~ msgstr "von 5"
3865
+
3866
+ # @ woocommerce
3867
+ #~ msgid "%s customer review"
3868
+ #~ msgid_plural "%s customer reviews"
3869
+ #~ msgstr[0] "%s Kundenbewertung"
3870
+ #~ msgstr[1] "%s Kundenbewertungen"
3871
+
3872
+ # @ woocommerce
3873
+ #~ msgid "Rated %d out of 5"
3874
+ #~ msgstr "Bewertet mit %d von 5"
3875
+
3876
+ # @ woocommerce
3877
+ #~ msgid "Your comment is awaiting approval"
3878
+ #~ msgstr "Ihr Kommentar wird geprüft."
3879
+
3880
+ # @ woocommerce
3881
+ #~ msgid "verified owner"
3882
+ #~ msgstr "Verifizierter Inhaber"
3883
+
3884
+ # @ woocommerce
3885
+ #~ msgid "Choose an option"
3886
+ #~ msgstr "Wähle eine Option"
3887
+
3888
+ # @ woocommerce
3889
+ #~ msgid "Clear selection"
3890
+ #~ msgstr "Lösche Auswahl"
3891
+
3892
+ # @ woocommerce
3893
+ #~ msgid "This product is currently out of stock and unavailable."
3894
+ #~ msgstr "Dieses Produkt ist momentan nicht auf Lager und nicht verfügbar."
3895
+
3896
+ # @ woocommerce
3897
+ #~ msgid "Additional Information"
3898
+ #~ msgstr "Zusätzliche Information"
3899
+
3900
+ # @ woocommerce
3901
+ #~ msgid "Product Description"
3902
+ #~ msgstr "Produktbeschreibung"
3903
+
3904
+ # @ virtue
3905
+ #~ msgid "This theme requires the following plugin: %1$s."
3906
+ #~ msgid_plural "This theme requires the following plugins: %1$s."
3907
+ #~ msgstr[0] "Dieses Theme benötigt folgendes Plugin: %1$s."
3908
+ #~ msgstr[1] "Dieses Theme benötigt folgende Plugins: %1$s."
3909
+
3910
+ # @ virtue
3911
+ #~ msgid "This theme recommends the following plugin: %1$s."
3912
+ #~ msgid_plural "This theme recommends the following plugins: %1$s."
3913
+ #~ msgstr[0] "Dieses Theme empfiehlt folgendes Plugin: %1$s."
3914
+ #~ msgstr[1] "Dieses Theme empfiehlt folgende Plugins: %1$s."
3915
+
3916
+ # @ virtue
3917
+ #~ msgid ""
3918
+ #~ "Sorry, but you do not have the correct permissions to install the %s "
3919
+ #~ "plugin. Contact the administrator of this site for help on getting the "
3920
+ #~ "plugin installed."
3921
+ #~ msgid_plural ""
3922
+ #~ "Sorry, but you do not have the correct permissions to install the %s "
3923
+ #~ "plugins. Contact the administrator of this site for help on getting the "
3924
+ #~ "plugins installed."
3925
+ #~ msgstr[0] ""
3926
+ #~ "Entschuldigung, aber Sie haben nicht die richtige Berechtigung zum "
3927
+ #~ "Installieren des %s Plugins. Kontaktieren Sie den Administrator dieser "
3928
+ #~ "Seite, um Hilfe für die Plugin-Installation zu bekommen."
3929
+ #~ msgstr[1] ""
3930
+ #~ "Entschuldigung, aber Sie haben nicht die richtige Berechtigung zum "
3931
+ #~ "Installieren der Plugins: %s. Kontaktieren Sie den Administrator dieser "
3932
+ #~ "Seite, um Hilfe für die Installation der Plugins zu bekommen."
3933
+
3934
+ # @ virtue
3935
+ #~ msgid "The following required plugin is currently inactive: %1$s."
3936
+ #~ msgid_plural "The following required plugins are currently inactive: %1$s."
3937
+ #~ msgstr[0] "Das folgende Plugin wird benötigt und ist inaktiv: %1$s."
3938
+ #~ msgstr[1] "Die folgenden Plugins werden benötigt und sind inaktiv: %1$s."
3939
+
3940
+ # @ virtue
3941
+ #~ msgid "The following recommended plugin is currently inactive: %1$s."
3942
+ #~ msgid_plural ""
3943
+ #~ "The following recommended plugins are currently inactive: %1$s."
3944
+ #~ msgstr[0] ""
3945
+ #~ "Das folgende Plugin wird empfohlen, ist aber momentan inaktiv: %1$s."
3946
+ #~ msgstr[1] ""
3947
+ #~ "Die folgenden Plugins werden empfohlen, sind aber momentan inaktiv: %1$s."
3948
+
3949
+ # @ virtue
3950
+ #~ msgid ""
3951
+ #~ "Sorry, but you do not have the correct permissions to activate the %s "
3952
+ #~ "plugin. Contact the administrator of this site for help on getting the "
3953
+ #~ "plugin activated."
3954
+ #~ msgid_plural ""
3955
+ #~ "Sorry, but you do not have the correct permissions to activate the %s "
3956
+ #~ "plugins. Contact the administrator of this site for help on getting the "
3957
+ #~ "plugins activated."
3958
+ #~ msgstr[0] ""
3959
+ #~ "Entschuldigung, aber Sie besitzen nicht die Berechtigung, um das Plugin "
3960
+ #~ "%s zu aktiveren. Bitte kontaktieren Sie Ihren Seitenadministrator, um "
3961
+ #~ "Hilfe für die Aktivierung zu bekommen."
3962
+ #~ msgstr[1] ""
3963
+ #~ "Entschuldigung, aber Sie besitzen nicht die Berechtigung, um die Plugins "
3964
+ #~ "%s zu aktiveren. Bitte kontaktieren Sie Ihren Seitenadministrator, um "
3965
+ #~ "Hilfe für deren Aktivierung zu bekommen."
3966
+
3967
+ # @ virtue
3968
+ #~ msgid ""
3969
+ #~ "The following plugin needs to be updated to its latest version to ensure "
3970
+ #~ "maximum compatibility with this theme: %1$s."
3971
+ #~ msgid_plural ""
3972
+ #~ "The following plugins need to be updated to their latest version to "
3973
+ #~ "ensure maximum compatibility with this theme: %1$s."
3974
+ #~ msgstr[0] ""
3975
+ #~ "Das folgende Plugin sollte auf die neueste Version aktualisiert werden, "
3976
+ #~ "um höchste Kompatibilität zu diesem Thema zu gewährleisten: %1$s."
3977
+ #~ msgstr[1] ""
3978
+ #~ "Die folgenden Plugins sollten auf die neueste Version aktualisiert "
3979
+ #~ "werden, um höchste Kompatibilität zu diesem Thema zu gewährleisten: %1$s."
3980
+
3981
+ # @ virtue
3982
+ #~ msgid ""
3983
+ #~ "Sorry, but you do not have the correct permissions to update the %s "
3984
+ #~ "plugin. Contact the administrator of this site for help on getting the "
3985
+ #~ "plugin updated."
3986
+ #~ msgid_plural ""
3987
+ #~ "Sorry, but you do not have the correct permissions to update the %s "
3988
+ #~ "plugins. Contact the administrator of this site for help on getting the "
3989
+ #~ "plugins updated."
3990
+ #~ msgstr[0] ""
3991
+ #~ "Entschuldigung, aber Sie haben nicht die richtigen Berechtigungen, um das "
3992
+ #~ "Plugin %s zu aktualisieren. Kontaktieren Sie den Administrator dieser "
3993
+ #~ "Seite, um Hilfe für die Plugin-Aktualisierung zu bekommen."
3994
+ #~ msgstr[1] ""
3995
+ #~ "Entschuldigung, aber Sie haben nicht die richtigen Berechtigungen, um die "
3996
+ #~ "Plugins %s zu aktualisieren. Kontaktieren Sie den Administrator dieser "
3997
+ #~ "Seite, um Hilfe für die Plugin-Aktualisierung zu bekommen."
3998
+
3999
+ # @ virtue
4000
+ #~ msgid "Begin installing plugin"
4001
+ #~ msgid_plural "Begin installing plugins"
4002
+ #~ msgstr[0] "Starte Plugin-Installation"
4003
+ #~ msgstr[1] "Starte Installation der Plugins"
4004
+
4005
+ # @ virtue
4006
+ #~ msgid "Activate installed plugin"
4007
+ #~ msgid_plural "Activate installed plugins"
4008
+ #~ msgstr[0] "Aktiviere installiertes Plugin"
4009
+ #~ msgstr[1] "Aktiviere installierte Plugins"
4010
+
4011
+ # @ virtue
4012
+ #~ msgid ""
4013
+ #~ "This theme comes packaged with the following premium plugin: %1$s. enjoy:)"
4014
+ #~ msgid_plural ""
4015
+ #~ "This theme comes packaged with the following premium plugin: %1$s. enjoy:)"
4016
+ #~ msgstr[0] ""
4017
+ #~ "Dieses Theme kommt zusammen mit den folgenden Premium-Plugin: %1$s. :)"
4018
+ #~ msgstr[1] ""
4019
+ #~ "Dieses Thema kommt zusammen mit den folgenden Premium-Plugins: %1$s. :)"
4020
+
4021
+ # @ tgmpa
4022
+ #, fuzzy
4023
+ #~ msgid "Not Activated"
4024
+ #~ msgstr "Aktivieren"
4025
+
4026
+ # @ tgmpa
4027
+ #, fuzzy
4028
+ #~ msgid "Deactivated"
4029
+ #~ msgstr "Aktivieren"
4030
+
4031
+ # @ tgmpa
4032
+ #, fuzzy
4033
+ #~ msgid "License Status"
4034
+ #~ msgstr "Status"
4035
+
4036
+ # @ tgmpa
4037
+ #, fuzzy
4038
+ #~ msgid "Activate License"
4039
+ #~ msgstr "Aktivieren"
4040
+
4041
+ # @ redux-framework
4042
+ #~ msgid "Select an Option"
4043
+ #~ msgstr "Wählen Sie eine Einstellung"
4044
+
4045
+ # @ redux-framework
4046
+ #~ msgid "Transparent"
4047
+ #~ msgstr "Transparent"
4048
+
4049
+ # @ redux-framework
4050
+ #~ msgid "Background Repeat"
4051
+ #~ msgstr "Hintergrund wiederholen"
4052
+
4053
+ # @ redux-framework
4054
+ #~ msgid "Background Clip"
4055
+ #~ msgstr "Hintergrund beschneiden"
4056
+
4057
+ # @ redux-framework
4058
+ #~ msgid "Background Origin"
4059
+ #~ msgstr "Hintergrund Ursprung"
4060
+
4061
+ # @ redux-framework
4062
+ #~ msgid "Background Size"
4063
+ #~ msgstr "Hintergrund Größe"
4064
+
4065
+ # @ redux-framework
4066
+ #~ msgid "Background Attachment"
4067
+ #~ msgstr "Hintergrund Anhang"
4068
+
4069
+ # @ redux-framework
4070
+ #~ msgid "Background Position"
4071
+ #~ msgstr "Hintergrund Position"
4072
+
4073
+ # @ redux-framework
4074
+ #~ msgid "No media selected"
4075
+ #~ msgstr "Keine Datei gewählt"
4076
+
4077
+ # @ redux-framework
4078
+ #~ msgid "Top"
4079
+ #~ msgstr "Oben"
4080
+
4081
+ # @ redux-framework
4082
+ #~ msgid "Bottom"
4083
+ #~ msgstr "Unten"
4084
+
4085
+ # @ redux-framework
4086
+ #~ msgid "To "
4087
+ #~ msgstr "Zu "
4088
+
4089
+ # @ redux-framework
4090
+ #~ msgid "Units"
4091
+ #~ msgstr "Einheiten"
4092
+
4093
+ # @ redux-framework
4094
+ #~ msgid "Delete"
4095
+ #~ msgstr "Löschen"
4096
+
4097
+ # @ redux-framework
4098
+ #~ msgid "Add"
4099
+ #~ msgstr "Hinzufügen"
4100
+
4101
+ # @ redux-framework
4102
+ #~ msgid "Import / Export Options"
4103
+ #~ msgstr "Import / Export Optionen"
4104
+
4105
+ # @ redux-framework
4106
+ #~ msgid "Import Options"
4107
+ #~ msgstr "Import Optionen"
4108
+
4109
+ # @ redux-framework
4110
+ #~ msgid "Import from file"
4111
+ #~ msgstr "Import von Datei"
4112
+
4113
+ # @ redux-framework
4114
+ #~ msgid "Import from URL"
4115
+ #~ msgstr "Import von URL"
4116
+
4117
+ # @ redux-framework
4118
+ #~ msgid ""
4119
+ #~ "Input your backup file below and hit Import to restore your sites options "
4120
+ #~ "from a backup."
4121
+ #~ msgstr ""
4122
+ #~ "Geben Sie unten Ihre Sicherungsdatei ein und drücken Sie 'Importieren', "
4123
+ #~ "um Ihre Webseiten-Optionen aus einer Sicherung wiederherzustellen."
4124
+
4125
+ # @ redux-framework
4126
+ #~ msgid ""
4127
+ #~ "Input the URL to another sites options set and hit Import to load the "
4128
+ #~ "options from that site."
4129
+ #~ msgstr ""
4130
+ #~ "Geben Sie die URL zu einer anderen Webseiten-Option ein und klicken Sie "
4131
+ #~ "'Importieren', um die Optionen von dieser Seite zu laden."
4132
+
4133
+ # @ redux-framework
4134
+ #~ msgid "Import"
4135
+ #~ msgstr "Import"
4136
+
4137
+ # @ redux-framework
4138
+ #~ msgid ""
4139
+ #~ "WARNING! This will overwrite all existing option values, please proceed "
4140
+ #~ "with caution!"
4141
+ #~ msgstr ""
4142
+ #~ "WARNUNG! Dies überschreibt alle existierenden Einstellungen, bitte mit "
4143
+ #~ "Vorsicht fortfahren!"
4144
+
4145
+ # @ redux-framework
4146
+ #~ msgid "Export Options"
4147
+ #~ msgstr "Optionen exportieren"
4148
+
4149
+ # @ redux-framework
4150
+ #~ msgid ""
4151
+ #~ "Here you can copy/download your current option settings. Keep this safe "
4152
+ #~ "as you can use it as a backup should anything go wrong, or you can use it "
4153
+ #~ "to restore your settings on this site (or any other site)."
4154
+ #~ msgstr ""
4155
+ #~ "Hier können Sie Ihre aktuellen Optionseinstellungen kopieren/"
4156
+ #~ "herunterladen. Verwahren Sie diese sicher, da Sie sie als Backup "
4157
+ #~ "verwenden können, wenn etwas schiefgeht. Sie können sie zum "
4158
+ #~ "Wiederherstellen verwenden (oder auch bei einer anderen Seite verwenden)."
4159
+
4160
+ # @ redux-framework
4161
+ #~ msgid "Copy"
4162
+ #~ msgstr "Kopieren"
4163
+
4164
+ # @ redux-framework
4165
+ #~ msgid "Copy Link"
4166
+ #~ msgstr "Link kopieren"
4167
+
4168
+ # @ redux-framework
4169
+ #~ msgid "Import / Export"
4170
+ #~ msgstr "Import / Export"
4171
+
4172
+ # @ redux-framework
4173
+ #~ msgid "Regular"
4174
+ #~ msgstr "Regulär"
4175
+
4176
+ # @ redux-framework
4177
+ #~ msgid "Hover"
4178
+ #~ msgstr "Hover"
4179
+
4180
+ # @ redux-framework
4181
+ #~ msgid "Visited"
4182
+ #~ msgstr "Besucht"
4183
+
4184
+ # @ redux-framework
4185
+ #~ msgid "Active"
4186
+ #~ msgstr "Aktiv"
4187
+
4188
+ # @ redux-framework
4189
+ #~ msgid "Add More"
4190
+ #~ msgstr "Mehr hinzufügen"
4191
+
4192
+ # @ redux-framework
4193
+ # @ woocommerce
4194
+ #~ msgid "Password"
4195
+ #~ msgstr "Passwort"
4196
+
4197
+ # @ redux-framework
4198
+ #~ msgid "Username"
4199
+ #~ msgstr "Benutzername"
4200
+
4201
+ # @ redux-framework
4202
+ #~ msgid "Select an item"
4203
+ #~ msgstr "Wähle ein Element"
4204
+
4205
+ # @ redux-framework
4206
+ #~ msgid "No items of this type were found."
4207
+ #~ msgstr "Keine Einträge dieser Art wurden gefunden."
4208
+
4209
+ # @ redux-framework
4210
+ #~ msgid "Font family"
4211
+ #~ msgstr "Schriftfamilie"
4212
+
4213
+ # @ redux-framework
4214
+ #~ msgid "Standard Fonts"
4215
+ #~ msgstr "Standardschriften"
4216
+
4217
+ # @ redux-framework
4218
+ #~ msgid "Backup Font Family"
4219
+ #~ msgstr "Backup Schriftfamilie"
4220
+
4221
+ # @ redux-framework
4222
+ #~ msgid "Font style"
4223
+ #~ msgstr "Schriftstil"
4224
+
4225
+ # @ redux-framework
4226
+ #~ msgid "Font subsets"
4227
+ #~ msgstr "Schrift Subsets"
4228
+
4229
+ # @ redux-framework
4230
+ #~ msgid "Subsets"
4231
+ #~ msgstr "Subsets"
4232
+
4233
+ # @ redux-framework
4234
+ #~ msgid "Font script"
4235
+ #~ msgstr "Schrift Skript"
4236
+
4237
+ # @ redux-framework
4238
+ #~ msgid "Size"
4239
+ #~ msgstr "Größe"
4240
+
4241
+ # @ redux-framework
4242
+ #~ msgid "Word Spacing"
4243
+ #~ msgstr "Wortabstand"
4244
+
4245
+ # @ redux-framework
4246
+ #~ msgid "Letter Spacing"
4247
+ #~ msgstr "Zeichenabstand"
4248
+
4249
+ # @ redux-framework
4250
+ #~ msgid "Font color"
4251
+ #~ msgstr "Schriftfarbe"
4252
+
4253
+ # @ redux-framework
4254
+ #~ msgid "Google Webfonts"
4255
+ #~ msgstr "Google Webfonts"
4256
+
4257
+ # @ redux-framework
4258
+ #~ msgid "This field must be a valid color value."
4259
+ #~ msgstr "Dieses Feld muß einen gültigen Farbwert haben."
4260
+
4261
+ # @ redux-framework
4262
+ #~ msgid ""
4263
+ #~ "You must provide a comma separated list of numerical values for this "
4264
+ #~ "option."
4265
+ #~ msgstr ""
4266
+ #~ "Bei dieser Einstellung müssen die numerischen Werte durch Kommata "
4267
+ #~ "getrennt werden."
4268
+
4269
+ # @ redux-framework
4270
+ #~ msgid "You must provide a valid email for this option."
4271
+ #~ msgstr "Sie müssen eine gültige Email-Adresse für diese Einstellung haben."
4272
+
4273
+ # @ redux-framework
4274
+ #~ msgid ""
4275
+ #~ "You must not enter any HTML in this field, all HTML tags have been "
4276
+ #~ "removed."
4277
+ #~ msgstr ""
4278
+ #~ "Sie sollten kein HTML in dieses Feld eingeben, alle HTML-Tags werden "
4279
+ #~ "entfernt."
4280
+
4281
+ # @ redux-framework
4282
+ #~ msgid ""
4283
+ #~ "You must not enter any special characters in this field, all special "
4284
+ #~ "characters have been removed."
4285
+ #~ msgstr ""
4286
+ #~ "Sie dürfen keine Sonderzeichen in dieses Feld eingeben, alle "
4287
+ #~ "Sonderzeichen werden entfernt."
4288
+
4289
+ # @ redux-framework
4290
+ #, fuzzy
4291
+ #~ msgid "This field cannot be empty. Please provide a value."
4292
+ #~ msgstr "Dieses Feld muß einen gültigen Farbwert haben."
4293
+
4294
+ # @ redux-framework
4295
+ #~ msgid "You must provide a numerical value for this option."
4296
+ #~ msgstr "Für diese Einstellung müssen Sie numerische Werte verwenden."
4297
+
4298
+ # @ redux-framework
4299
+ #~ msgid "You must provide a valid URL for this option."
4300
+ #~ msgstr "Sie müssen eine gültige URL für dies Einstellung verwenden."
4301
+
4302
+ # @ woocommerce
4303
+ #~ msgctxt "%1$d = first, %2$d = last, %3$d = total"
4304
+ #~ msgid "Showing %1$d–%2$d of %3$d results"
4305
+ #~ msgstr "Ergebnis %1$d–%2$d von %3$d Ergebnissen"
4306
+
4307
+ # @ woocommerce
4308
+ #~ msgctxt "Product quantity input tooltip"
4309
+ #~ msgid "Qty"
4310
+ #~ msgstr "Anzahl"
4311
+
4312
+ # @ redux-framework
4313
+ #~ msgid "Options Object"
4314
+ #~ msgstr "Optionen Objekt"
4315
+
4316
+ # @ redux-framework
4317
+ #~ msgid "Show Object in Javascript Console Object"
4318
+ #~ msgstr "Objekt in Javascript-Konsole-Objekt anzeigen"
4319
+
4320
+ # @ redux-framework
4321
+ #~ msgid "Help improve Our Panel"
4322
+ #~ msgstr "Helfen Sie, unser Panel zu verbessern"
4323
+
4324
+ # @ redux-framework
4325
+ #, fuzzy
4326
+ #~ msgid ""
4327
+ #~ "Please helps us improve our panel by allowing us to gather anonymous "
4328
+ #~ "usage stats so we know which configurations, plugins and themes to test "
4329
+ #~ "with."
4330
+ #~ msgstr ""
4331
+ #~ "Bitte helfen Sie uns, unser Panel zu verbessern, indem Sie erlauben, "
4332
+ #~ "anonyme Benutzungsstatistiken zu sammeln, damit wir wissen, mit welchen "
4333
+ #~ "Einstellungen, Plugins und Themes wir testen sollten."
languages/es_ES.mo ADDED
Binary file
languages/es_ES.po ADDED
@@ -0,0 +1,3843 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "POT-Creation-Date: 2015-01-10 00:33-0700\n"
5
+ "PO-Revision-Date: 2015-01-10 00:33-0700\n"
6
+ "Last-Translator: María Digo <web.esdemay@gmail.com>\n"
7
+ "Language-Team: Maria\n"
8
+ "Language: es_ES\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.10\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;_n:1,2\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
20
+ msgid "Please Try Again"
21
+ msgstr "Por favor, inténtelo de nuevo"
22
+
23
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
24
+ msgid "Remove Embed"
25
+ msgstr "Quitar inscrustar"
26
+
27
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
28
+ #, php-format
29
+ msgid "No oEmbed Results Found for %s. View more info at"
30
+ msgstr ""
31
+ "No se encuentrar resultados para incrustador %s. Ampliar información en"
32
+
33
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
34
+ #, fuzzy
35
+ msgid "Add Group"
36
+ msgstr "Añadir comentario"
37
+
38
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
39
+ #, fuzzy
40
+ msgid "Remove Group"
41
+ msgstr "Eliminar"
42
+
43
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
44
+ #, fuzzy
45
+ msgid "Add Row"
46
+ msgstr "Añadir comentario"
47
+
48
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
49
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
50
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
51
+ msgid "Remove"
52
+ msgstr "Eliminar"
53
+
54
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
55
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
56
+ msgid "No terms"
57
+ msgstr ""
58
+
59
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
60
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
61
+ msgid "Add or Upload File"
62
+ msgstr ""
63
+
64
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
65
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
66
+ #, fuzzy
67
+ msgid "Remove Image"
68
+ msgstr "Quitar Imagen"
69
+
70
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
71
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
72
+ msgid "File:"
73
+ msgstr ""
74
+
75
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
76
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
77
+ msgid "Download"
78
+ msgstr "Descargar:"
79
+
80
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
81
+ msgid "Clear"
82
+ msgstr ""
83
+
84
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
85
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
86
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
87
+ #: ../metaboxes.php:489
88
+ msgid "Default"
89
+ msgstr "Por defecto "
90
+
91
+ #: ../cmb/init.php:260
92
+ #, fuzzy
93
+ msgid "Select Color"
94
+ msgstr "Selecionar Opciones"
95
+
96
+ #: ../cmb/init.php:261
97
+ #, fuzzy
98
+ msgid "Current Color"
99
+ msgstr "Color Primario"
100
+
101
+ #: ../cmb/init.php:288
102
+ #, fuzzy
103
+ msgid "Select / Deselect All"
104
+ msgstr "Pais&hellip;"
105
+
106
+ #: ../cmb/init.php:1178
107
+ msgid "Save"
108
+ msgstr "Guardar"
109
+
110
+ #: ../metaboxes.php:17
111
+ msgid "Add/Edit Gallery"
112
+ msgstr "A&ntilde;adir/Editar galer&iacute;a"
113
+
114
+ #: ../metaboxes.php:18
115
+ msgid "Clear Gallery"
116
+ msgstr "Limpiar Galerí¡&iacute;a"
117
+
118
+ #: ../metaboxes.php:44
119
+ msgid "Page Title and Subtitle"
120
+ msgstr "Título y Subtítulo de Página"
121
+
122
+ #: ../metaboxes.php:51 ../metaboxes.php:95
123
+ msgid "Subtitle"
124
+ msgstr "Subtítulo"
125
+
126
+ #: ../metaboxes.php:52
127
+ msgid "Subtitle will go below page title"
128
+ msgstr "Subtítulo aparece debajo del título de la página"
129
+
130
+ #: ../metaboxes.php:57 ../metaboxes.php:101
131
+ #, fuzzy
132
+ msgid "Hide Page Title"
133
+ msgstr "Título P&aacute;gina"
134
+
135
+ #: ../metaboxes.php:63 ../metaboxes.php:107
136
+ msgid "Show"
137
+ msgstr ""
138
+
139
+ #: ../metaboxes.php:64 ../metaboxes.php:108
140
+ msgid "Hide"
141
+ msgstr ""
142
+
143
+ #: ../metaboxes.php:68 ../metaboxes.php:112
144
+ #, fuzzy
145
+ msgid "Page Title background behind Header"
146
+ msgstr "Título y Subtítulo de Página"
147
+
148
+ #: ../metaboxes.php:74 ../metaboxes.php:118
149
+ #, fuzzy
150
+ msgid "Place behind Header"
151
+ msgstr "Lugar pedido"
152
+
153
+ #: ../metaboxes.php:75 ../metaboxes.php:119
154
+ msgid "Don't place behind Header"
155
+ msgstr ""
156
+
157
+ #: ../metaboxes.php:82
158
+ #, fuzzy
159
+ msgid "Post Title and Subtitle"
160
+ msgstr "Título y Subtítulo de Página"
161
+
162
+ #: ../metaboxes.php:89 ../metaboxes.php:90
163
+ #, fuzzy
164
+ msgid "Post Header Title"
165
+ msgstr "Título P&aacute;gina"
166
+
167
+ #: ../metaboxes.php:96
168
+ #, fuzzy
169
+ msgid "Subtitle will go below post title"
170
+ msgstr "Subtítulo aparece debajo del título de la página"
171
+
172
+ #: ../metaboxes.php:126
173
+ #, fuzzy
174
+ msgid "Gallery Post Options"
175
+ msgstr "Opciones Publicación"
176
+
177
+ #: ../metaboxes.php:135 ../metaboxes.php:190
178
+ #, fuzzy
179
+ msgid "Post Head Content"
180
+ msgstr "Contenido Cabecera"
181
+
182
+ #: ../metaboxes.php:140 ../metaboxes.php:170
183
+ #, fuzzy
184
+ msgid "Gallery Post Default"
185
+ msgstr "Entradas de blog predeterminada"
186
+
187
+ #: ../metaboxes.php:141
188
+ #, fuzzy
189
+ msgid "Image Slider - (Flex Slider)"
190
+ msgstr "Imagen Slider"
191
+
192
+ #: ../metaboxes.php:142
193
+ msgid "Carousel Slider - (Caroufedsel Slider)"
194
+ msgstr ""
195
+
196
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
197
+ #: ../metaboxes.php:738
198
+ msgid "None"
199
+ msgstr "Ninguno"
200
+
201
+ #: ../metaboxes.php:147
202
+ #, fuzzy
203
+ msgid "Post Slider Gallery"
204
+ msgstr "Galería Publicaciones"
205
+
206
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
207
+ #, fuzzy
208
+ msgid "Add images for gallery here"
209
+ msgstr "Añadir imágenes a Galería"
210
+
211
+ #: ../metaboxes.php:153
212
+ #, fuzzy
213
+ msgid "Max Slider Height"
214
+ msgstr "Altura de slider"
215
+
216
+ #: ../metaboxes.php:154 ../metaboxes.php:553
217
+ #, fuzzy
218
+ msgid "Default is: 400 (Note: just input number, example: 350)"
219
+ msgstr ""
220
+ "Por defecto es: 400 <b>(Nota: introducir sólo número, ejemplo: 350)</b>"
221
+
222
+ #: ../metaboxes.php:159
223
+ #, fuzzy
224
+ msgid "Max Slider Width"
225
+ msgstr "Ancho Máximo / Imagen Slider"
226
+
227
+ #: ../metaboxes.php:160
228
+ #, fuzzy
229
+ msgid ""
230
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
231
+ "example: 650, only applys to Image Slider)"
232
+ msgstr ""
233
+ "Valor por defecto: 770 ó 1140 en diseño ancho completo <b>(Nota: introducir "
234
+ "sólo número, ejemplo: 650, no se aplica en carrusel-slider)</b>"
235
+
236
+ #: ../metaboxes.php:165 ../metaboxes.php:213
237
+ msgid "Post Summary"
238
+ msgstr "Resumen publicaciones"
239
+
240
+ #: ../metaboxes.php:171 ../metaboxes.php:220
241
+ #, fuzzy
242
+ msgid "Portrait Image (feature image)"
243
+ msgstr "Slider a izquierda texto"
244
+
245
+ #: ../metaboxes.php:172 ../metaboxes.php:221
246
+ #, fuzzy
247
+ msgid "Landscape Image (feature image)"
248
+ msgstr "Slider ancho encima texto"
249
+
250
+ #: ../metaboxes.php:173
251
+ msgid "Portrait Image Slider"
252
+ msgstr "Slider a izquierda texto"
253
+
254
+ #: ../metaboxes.php:174
255
+ msgid "Landscape Image Slider"
256
+ msgstr "Slider ancho encima texto"
257
+
258
+ #: ../metaboxes.php:181
259
+ #, fuzzy
260
+ msgid "Video Post Options"
261
+ msgstr "Opciones Publicación"
262
+
263
+ #: ../metaboxes.php:195 ../metaboxes.php:218
264
+ #, fuzzy
265
+ msgid "Video Post Default"
266
+ msgstr "Entradas de blog predeterminada"
267
+
268
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
269
+ #: ../metaboxes.php:737 ../metaboxes.php:960
270
+ msgid "Video"
271
+ msgstr "Video"
272
+
273
+ #: ../metaboxes.php:201
274
+ #, fuzzy
275
+ msgid "Video Post embed code"
276
+ msgstr "Incrustrar código de video"
277
+
278
+ #: ../metaboxes.php:202
279
+ #, fuzzy
280
+ msgid ""
281
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
282
+ "for screen shot)"
283
+ msgstr "Espacio para incrustar código, funciona con youtube, vimeo..."
284
+
285
+ #: ../metaboxes.php:207
286
+ #, fuzzy
287
+ msgid "Max Video Width"
288
+ msgstr "Ancho Máximo / Imagen Slider"
289
+
290
+ #: ../metaboxes.php:208
291
+ #, fuzzy
292
+ msgid ""
293
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
294
+ "example: 650, does not apply to carousel slider)"
295
+ msgstr ""
296
+ "Valor por defecto: 770 ó 1140 en diseño ancho completo <b>(Nota: introducir "
297
+ "sólo número, ejemplo: 650, no se aplica en carrusel-slider)</b>"
298
+
299
+ #: ../metaboxes.php:219
300
+ msgid "Video - (when possible)"
301
+ msgstr ""
302
+
303
+ #: ../metaboxes.php:228 ../metaboxes.php:710
304
+ msgid "Portfolio Post Options"
305
+ msgstr "Opciones publicación del Portfolio"
306
+
307
+ #: ../metaboxes.php:236 ../metaboxes.php:718
308
+ msgid "Project Layout"
309
+ msgstr "Mostrar Ilustración respecto al texto:"
310
+
311
+ #: ../metaboxes.php:241
312
+ #, fuzzy
313
+ msgid "Beside 40%"
314
+ msgstr "Junto a"
315
+
316
+ #: ../metaboxes.php:242
317
+ #, fuzzy
318
+ msgid "Beside 33%"
319
+ msgstr "Junto a"
320
+
321
+ #: ../metaboxes.php:243 ../metaboxes.php:724
322
+ msgid "Above"
323
+ msgstr "Arriba"
324
+
325
+ #: ../metaboxes.php:244 ../metaboxes.php:725
326
+ msgid "Three Rows"
327
+ msgstr "Tres filas"
328
+
329
+ #: ../metaboxes.php:248 ../metaboxes.php:729
330
+ msgid "Project Options"
331
+ msgstr "Opciones presentación"
332
+
333
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
334
+ msgid "Image"
335
+ msgstr "Imagen"
336
+
337
+ #: ../metaboxes.php:254 ../metaboxes.php:534
338
+ #, fuzzy
339
+ msgid "Image Slider (Flex Slider)"
340
+ msgstr "Imagen Slider"
341
+
342
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
343
+ msgid "Carousel Slider"
344
+ msgstr "Slider Carrusel"
345
+
346
+ #: ../metaboxes.php:261
347
+ #, fuzzy
348
+ msgid "Portfolio Slider/Images"
349
+ msgstr "Imágenes Slider Portfolio"
350
+
351
+ #: ../metaboxes.php:262
352
+ #, fuzzy
353
+ msgid "Add images for post here"
354
+ msgstr "Añadir imágenes a Galería"
355
+
356
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
357
+ #: ../metaboxes.php:965
358
+ msgid "Max Image/Slider Height"
359
+ msgstr "Altura Maxima / Imagen Slider"
360
+
361
+ #: ../metaboxes.php:268
362
+ #, fuzzy
363
+ msgid "Default is: 450 (Note: just input number, example: 350)"
364
+ msgstr ""
365
+ "El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
366
+ "b>"
367
+
368
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
369
+ #: ../metaboxes.php:971
370
+ msgid "Max Image/Slider Width"
371
+ msgstr "Ancho Máximo / Imagen Slider"
372
+
373
+ #: ../metaboxes.php:274
374
+ #, fuzzy
375
+ msgid ""
376
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
377
+ "number, example: 650)"
378
+ msgstr ""
379
+ "El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
380
+ "b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
381
+
382
+ #: ../metaboxes.php:279 ../metaboxes.php:764
383
+ msgid "Value 01 Title"
384
+ msgstr "Textor Título 01"
385
+
386
+ #: ../metaboxes.php:280 ../metaboxes.php:765
387
+ msgid "ex. Project Type:"
388
+ msgstr "ej: Tipo Proyecto:"
389
+
390
+ #: ../metaboxes.php:285 ../metaboxes.php:770
391
+ msgid "Value 01 Description"
392
+ msgstr "Texto Descripción 01"
393
+
394
+ #: ../metaboxes.php:286 ../metaboxes.php:771
395
+ msgid "ex. Character Illustration"
396
+ msgstr "ej.: Características de la Ilustración "
397
+
398
+ #: ../metaboxes.php:291 ../metaboxes.php:776
399
+ msgid "Value 02 Title"
400
+ msgstr "Texto Título 02"
401
+
402
+ #: ../metaboxes.php:292 ../metaboxes.php:777
403
+ msgid "ex. Skills Needed:"
404
+ msgstr "ej.: habilidades necesarias:"
405
+
406
+ #: ../metaboxes.php:297 ../metaboxes.php:782
407
+ msgid "Value 02 Description"
408
+ msgstr "Texto Descripción 02"
409
+
410
+ #: ../metaboxes.php:298 ../metaboxes.php:783
411
+ msgid "ex. Photoshop, Illustrator"
412
+ msgstr "ej.; Photoshop, Illustrator"
413
+
414
+ #: ../metaboxes.php:303 ../metaboxes.php:788
415
+ msgid "Value 03 Title"
416
+ msgstr "Texto Títilo 03"
417
+
418
+ #: ../metaboxes.php:304 ../metaboxes.php:789
419
+ msgid "ex. Customer:"
420
+ msgstr "ej.: Cliente:"
421
+
422
+ #: ../metaboxes.php:309 ../metaboxes.php:794
423
+ msgid "Value 03 Description"
424
+ msgstr "Texto Descripción 03"
425
+
426
+ #: ../metaboxes.php:310 ../metaboxes.php:795
427
+ msgid "ex. Example Inc"
428
+ msgstr "ej.: Compañia"
429
+
430
+ #: ../metaboxes.php:315 ../metaboxes.php:800
431
+ msgid "Value 04 Title"
432
+ msgstr "Texto Título 04"
433
+
434
+ #: ../metaboxes.php:316 ../metaboxes.php:801
435
+ msgid "ex. Project Year:"
436
+ msgstr "ej.: Año del proyecto:"
437
+
438
+ #: ../metaboxes.php:321 ../metaboxes.php:806
439
+ msgid "Value 04 Description"
440
+ msgstr "Texto Descripción 04"
441
+
442
+ #: ../metaboxes.php:322 ../metaboxes.php:807
443
+ msgid "ex. 2013"
444
+ msgstr "ej.: 2013"
445
+
446
+ #: ../metaboxes.php:327 ../metaboxes.php:812
447
+ msgid "External Website"
448
+ msgstr "Web"
449
+
450
+ #: ../metaboxes.php:328 ../metaboxes.php:813
451
+ msgid "ex. Website:"
452
+ msgstr "ej.: url:"
453
+
454
+ #: ../metaboxes.php:333 ../metaboxes.php:818
455
+ msgid "Website Address"
456
+ msgstr "Dirección página web"
457
+
458
+ #: ../metaboxes.php:334 ../metaboxes.php:819
459
+ msgid "ex. http://www.example.com"
460
+ msgstr "ej.: http:www.ejemplo.com"
461
+
462
+ #: ../metaboxes.php:339 ../metaboxes.php:824
463
+ msgid "If Video Project"
464
+ msgstr "Video del proyecto"
465
+
466
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
467
+ #: ../metaboxes.php:825 ../metaboxes.php:988
468
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
469
+ msgstr "Espacio para incrustar código, funciona con youtube, vimeo..."
470
+
471
+ #: ../metaboxes.php:349
472
+ #, fuzzy
473
+ msgid "Bottom Carousel Options"
474
+ msgstr "Opciones página de contacto"
475
+
476
+ #: ../metaboxes.php:356 ../metaboxes.php:840
477
+ msgid "Carousel Title"
478
+ msgstr "Título Carrusel"
479
+
480
+ #: ../metaboxes.php:357 ../metaboxes.php:841
481
+ msgid "ex. Similar Projects"
482
+ msgstr "ej.: Proyectos similares"
483
+
484
+ #: ../metaboxes.php:362
485
+ #, fuzzy
486
+ msgid "Bottom Portfolio Carousel"
487
+ msgstr "Carrusel Portafolio"
488
+
489
+ #: ../metaboxes.php:363
490
+ #, fuzzy
491
+ msgid "Display a carousel with portfolio items below project?"
492
+ msgstr ""
493
+ "¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
494
+
495
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
496
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
497
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
498
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
499
+ msgid "No"
500
+ msgstr "No"
501
+
502
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
503
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
504
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
505
+ #: ../metaboxes.php:1037
506
+ msgid "Yes"
507
+ msgstr "Sí"
508
+
509
+ #: ../metaboxes.php:373
510
+ #, fuzzy
511
+ msgid "Carousel Items"
512
+ msgstr "Título Carrusel"
513
+
514
+ #: ../metaboxes.php:379
515
+ #, fuzzy
516
+ msgid "All Portfolio Posts"
517
+ msgstr "Opciones publicación del Portfolio"
518
+
519
+ #: ../metaboxes.php:380
520
+ msgid "Only of same Portfolio Type"
521
+ msgstr ""
522
+
523
+ #: ../metaboxes.php:384
524
+ #, fuzzy
525
+ msgid "Carousel Order"
526
+ msgstr "Slider Carrusel"
527
+
528
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
529
+ msgid "Menu Order"
530
+ msgstr "Orden Men&uacute;"
531
+
532
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
533
+ msgid "Title"
534
+ msgstr "Título:"
535
+
536
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
537
+ msgid "Date"
538
+ msgstr "Fecha"
539
+
540
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
541
+ msgid "Random"
542
+ msgstr "Aleatorio"
543
+
544
+ #: ../metaboxes.php:400 ../metaboxes.php:850
545
+ msgid "Portfolio Page Options"
546
+ msgstr "Opciones Página Portfolio"
547
+
548
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
549
+ msgid "Style"
550
+ msgstr "Estilo"
551
+
552
+ #: ../metaboxes.php:414
553
+ #, fuzzy
554
+ msgid "Post Boxes"
555
+ msgstr "Caja Publicación Video"
556
+
557
+ #: ../metaboxes.php:415
558
+ msgid "Flat with Margin"
559
+ msgstr ""
560
+
561
+ #: ../metaboxes.php:419
562
+ #, fuzzy
563
+ msgid "Hover Style"
564
+ msgstr "Estilo del borde"
565
+
566
+ #: ../metaboxes.php:425
567
+ #, fuzzy
568
+ msgid "Light"
569
+ msgstr "Derecha"
570
+
571
+ #: ../metaboxes.php:426
572
+ msgid "Dark"
573
+ msgstr ""
574
+
575
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
576
+ msgid "Primary Color"
577
+ msgstr "Color Primario"
578
+
579
+ #: ../metaboxes.php:431 ../metaboxes.php:859
580
+ msgid "Columns"
581
+ msgstr "Columnas"
582
+
583
+ #: ../metaboxes.php:436 ../metaboxes.php:864
584
+ msgid "Four Column"
585
+ msgstr "Cuatro columnas"
586
+
587
+ #: ../metaboxes.php:437 ../metaboxes.php:865
588
+ msgid "Three Column"
589
+ msgstr "Tres columnas"
590
+
591
+ #: ../metaboxes.php:438 ../metaboxes.php:866
592
+ msgid "Two Column"
593
+ msgstr "Dos columnas"
594
+
595
+ #: ../metaboxes.php:439
596
+ #, fuzzy
597
+ msgid "Five Column"
598
+ msgstr "Cuatro columnas"
599
+
600
+ #: ../metaboxes.php:443 ../metaboxes.php:870
601
+ msgid "Portfolio Work Types"
602
+ msgstr "Tipos de trabajo Porfolio"
603
+
604
+ #: ../metaboxes.php:449 ../metaboxes.php:877
605
+ msgid "Order Items By"
606
+ msgstr "Ordenar los Elementos por"
607
+
608
+ #: ../metaboxes.php:461 ../metaboxes.php:889
609
+ msgid "Items per Page"
610
+ msgstr "Artículos por página"
611
+
612
+ #: ../metaboxes.php:462 ../metaboxes.php:890
613
+ msgid "How many portfolio items per page"
614
+ msgstr "Cuantos artículos portfolio por página"
615
+
616
+ #: ../metaboxes.php:466 ../metaboxes.php:894
617
+ msgid "All"
618
+ msgstr "Todos"
619
+
620
+ #: ../metaboxes.php:484
621
+ #, fuzzy
622
+ msgid "Image Ratio?"
623
+ msgstr "Imagen"
624
+
625
+ #: ../metaboxes.php:490
626
+ msgid "Square 1:1"
627
+ msgstr ""
628
+
629
+ #: ../metaboxes.php:491
630
+ #, fuzzy
631
+ msgid "Portrait 3:4"
632
+ msgstr "Imagen lateral izquierda texto"
633
+
634
+ #: ../metaboxes.php:492
635
+ #, fuzzy
636
+ msgid "Landscape 4:3"
637
+ msgstr "Imagen ancho cabecera texto"
638
+
639
+ #: ../metaboxes.php:493
640
+ #, fuzzy
641
+ msgid "Wide Landscape 4:2"
642
+ msgstr "Imagen ancho cabecera texto"
643
+
644
+ #: ../metaboxes.php:497 ../metaboxes.php:918
645
+ msgid "Display Item Work Types"
646
+ msgstr "Mostrar Categorías | Tipo - Portfolio"
647
+
648
+ #: ../metaboxes.php:503 ../metaboxes.php:925
649
+ msgid "Display Item Excerpt"
650
+ msgstr "Mostrar Extracto Texto "
651
+
652
+ #: ../metaboxes.php:509
653
+ #, fuzzy
654
+ msgid "Add Lightbox link in each item"
655
+ msgstr ""
656
+ "A&ntilde;adir enlace Lightbox en la parte superior derecha de cada elemento"
657
+
658
+ #: ../metaboxes.php:518 ../metaboxes.php:945
659
+ msgid "Feature Page Options"
660
+ msgstr "Características Páginas Opciones"
661
+
662
+ #: ../metaboxes.php:527
663
+ #, fuzzy
664
+ msgid "Header Options"
665
+ msgstr "Opciones tipografía cabecera"
666
+
667
+ #: ../metaboxes.php:528
668
+ #, fuzzy
669
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
670
+ msgstr ""
671
+ "Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
672
+
673
+ #: ../metaboxes.php:533
674
+ msgid "Page Title"
675
+ msgstr "Título P&aacute;gina"
676
+
677
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
678
+ msgid "Slider Images"
679
+ msgstr "Imágenes de slider"
680
+
681
+ #: ../metaboxes.php:541
682
+ msgid "Add for flex, carousel, and image carousel."
683
+ msgstr ""
684
+
685
+ #: ../metaboxes.php:546
686
+ #, fuzzy
687
+ msgid "If Cyclone Slider"
688
+ msgstr "Slider Carrusel"
689
+
690
+ #: ../metaboxes.php:547
691
+ msgid ""
692
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
693
+ msgstr ""
694
+
695
+ #: ../metaboxes.php:559
696
+ #, fuzzy
697
+ msgid ""
698
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
699
+ "does not apply to Carousel slider)"
700
+ msgstr ""
701
+ "Valor por defecto: 770 ó 1140 en diseño ancho completo <b>(Nota: introducir "
702
+ "sólo número, ejemplo: 650, no se aplica en carrusel-slider)</b>"
703
+
704
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
705
+ msgid "If Video Post"
706
+ msgstr "Si video de publicación "
707
+
708
+ #: ../metaboxes.php:573 ../metaboxes.php:996
709
+ msgid "Contact Page Options"
710
+ msgstr "Opciones página de contacto"
711
+
712
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
713
+ msgid "Use Contact Form"
714
+ msgstr "Usar formulario de contacto"
715
+
716
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
717
+ msgid "Contact Form Title"
718
+ msgstr "Título Formulario de Contacto"
719
+
720
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
721
+ msgid "ex. Send us an Email"
722
+ msgstr "ej.: Envíenos un correo electrónico"
723
+
724
+ #: ../metaboxes.php:598
725
+ #, fuzzy
726
+ msgid "Contact Form Email Recipient"
727
+ msgstr "Formulario correo electrónico de contacto"
728
+
729
+ #: ../metaboxes.php:599
730
+ msgid "ex. joe@gmail.com"
731
+ msgstr ""
732
+
733
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
734
+ msgid "Use Simple Math Question"
735
+ msgstr ""
736
+
737
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
738
+ msgid "Use Map"
739
+ msgstr "Usar Mapa"
740
+
741
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
742
+ msgid "Address"
743
+ msgstr "Dirección"
744
+
745
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
746
+ msgid "Enter your Location"
747
+ msgstr "Ingrese su localidad"
748
+
749
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
750
+ msgid "Map Type"
751
+ msgstr "Tipo de Mapa"
752
+
753
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
754
+ msgid "ROADMAP"
755
+ msgstr "Callejero"
756
+
757
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
758
+ msgid "HYBRID"
759
+ msgstr "Híbrido"
760
+
761
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
762
+ msgid "TERRAIN"
763
+ msgstr "Terreno"
764
+
765
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
766
+ msgid "SATELLITE"
767
+ msgstr "Satélite"
768
+
769
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
770
+ msgid "Map Zoom Level"
771
+ msgstr "Nivel Zoom del Mapa"
772
+
773
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
774
+ msgid "A good place to start is 15"
775
+ msgstr "Punto para comenzar aconsejado es de 15"
776
+
777
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
778
+ msgid "1 (World View)"
779
+ msgstr "1(Vista Mundo)"
780
+
781
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
782
+ msgid "21 (Street View)"
783
+ msgstr "21 (Vista calle)"
784
+
785
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
786
+ msgid "Map Height"
787
+ msgstr "Altura Mapa"
788
+
789
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
790
+ msgid "Default is 300"
791
+ msgstr "Por defecto es 300"
792
+
793
+ #: ../metaboxes.php:693
794
+ msgid "Post Video Box"
795
+ msgstr "Caja Publicación Video"
796
+
797
+ #: ../metaboxes.php:723
798
+ msgid "Beside"
799
+ msgstr "Junto a"
800
+
801
+ #: ../metaboxes.php:735 ../metaboxes.php:959
802
+ msgid "Image Slider"
803
+ msgstr "Imagen Slider"
804
+
805
+ #: ../metaboxes.php:743
806
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
807
+ msgstr ""
808
+ "El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
809
+ "b>"
810
+
811
+ #: ../metaboxes.php:749
812
+ msgid ""
813
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
814
+ "just input number, example: 650)</b>"
815
+ msgstr ""
816
+ "El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
817
+ "b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
818
+
819
+ #: ../metaboxes.php:754
820
+ #, fuzzy
821
+ msgid "Auto Play Slider?"
822
+ msgstr "¿Reproducción automática?"
823
+
824
+ #: ../metaboxes.php:830
825
+ msgid "Similar Portfolio Item Carousel"
826
+ msgstr "Carrusel de articulos similares del Portfolio"
827
+
828
+ #: ../metaboxes.php:831
829
+ msgid "Display a carousel with similar portfolio items below project?"
830
+ msgstr ""
831
+ "¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
832
+
833
+ #: ../metaboxes.php:836
834
+ msgid "Yes - Display Recent Projects"
835
+ msgstr "Sí - Mostrar Proyectos Recientes"
836
+
837
+ #: ../metaboxes.php:912
838
+ msgid "Set image height"
839
+ msgstr "Ajustar altura imagen"
840
+
841
+ #: ../metaboxes.php:913
842
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
843
+ msgstr ""
844
+ "Valor por defecto proporción 1:1 <b>(Nota: sólo un número, ejemplo: 350)</b>"
845
+
846
+ #: ../metaboxes.php:932
847
+ msgid "Add Lightbox link in the top right of each item"
848
+ msgstr ""
849
+ "A&ntilde;adir enlace Lightbox en la parte superior derecha de cada elemento"
850
+
851
+ #: ../metaboxes.php:954
852
+ msgid "Feature Options"
853
+ msgstr "Características Opciones"
854
+
855
+ #: ../metaboxes.php:955
856
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
857
+ msgstr ""
858
+ "Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
859
+
860
+ #: ../metaboxes.php:966
861
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
862
+ msgstr ""
863
+ "Por defecto es: 400 <b>(Nota: introducir sólo número, ejemplo: 350)</b>"
864
+
865
+ #: ../metaboxes.php:972
866
+ msgid ""
867
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
868
+ "to Carousel slider)</b>"
869
+ msgstr ""
870
+ "Valor por defecto: 1140 <b>(Nota: sólo número, ejemplo: 650, no funciona "
871
+ "para slider carrusel)</b>"
872
+
873
+ #: ../metaboxes.php:977
874
+ msgid "Use Lightbox for Feature Image"
875
+ msgstr "Usar lightbox para imagen destacadas"
876
+
877
+ #: ../metaboxes.php:978
878
+ msgid ""
879
+ "If feature option is set to image, choose to use lightbox link with image."
880
+ msgstr ""
881
+ "Si la opci&oacute;n se establece en imagen, elija usar enlace a lightbox "
882
+ "con la imagen."
883
+
884
+ #: ../metaboxes.php:1105
885
+ #, fuzzy
886
+ msgid "Slider Gallery"
887
+ msgstr "Limpiar Galerí¡&iacute;a"
888
+
889
+ #: ../page-contact.php:12 ../template-contact.php:7
890
+ #, fuzzy
891
+ msgid "This field is required."
892
+ msgstr "Este campo debe ser una fecha v&aaute;lida."
893
+
894
+ #: ../page-contact.php:13 ../template-contact.php:8
895
+ #, fuzzy
896
+ msgid "Please enter a valid email address."
897
+ msgstr "Introduzca una direcci&oacute;n email v&aacute;lida"
898
+
899
+ #: ../page-contact.php:96 ../template-contact.php:95
900
+ msgid "Check your math."
901
+ msgstr ""
902
+
903
+ #: ../page-contact.php:101 ../template-contact.php:100
904
+ msgid "Please enter your name."
905
+ msgstr "Por favor, escriba su nombre."
906
+
907
+ #: ../page-contact.php:108 ../template-contact.php:107
908
+ msgid "Please enter your email address."
909
+ msgstr "Por favor,escriba su dirección de correo electrónico."
910
+
911
+ #: ../page-contact.php:111 ../template-contact.php:110
912
+ msgid "You entered an invalid email address."
913
+ msgstr "La dirección de email no es v&aacute;lida."
914
+
915
+ #: ../page-contact.php:118 ../template-contact.php:117
916
+ msgid "Please enter a message."
917
+ msgstr "Por favor,escriba un mensaje."
918
+
919
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
920
+ #: ../template-contact.php:134
921
+ #, fuzzy
922
+ msgid "Contact"
923
+ msgstr "Contacto"
924
+
925
+ #: ../page-contact.php:135 ../template-contact.php:134
926
+ msgid "From"
927
+ msgstr "Desde"
928
+
929
+ #: ../page-contact.php:136 ../template-contact.php:135
930
+ msgid "Name"
931
+ msgstr "Nombre"
932
+
933
+ #: ../page-contact.php:137 ../template-contact.php:136
934
+ msgid "Email"
935
+ msgstr "Email"
936
+
937
+ #: ../page-contact.php:138 ../template-contact.php:137
938
+ #, fuzzy
939
+ msgid "Comments"
940
+ msgstr "Comentarios"
941
+
942
+ #: ../page-contact.php:176 ../template-contact.php:173
943
+ msgid "Thanks, your email was sent successfully."
944
+ msgstr "Gracias. Su mensaje ha sido enviado. En breve contactaremos con usted."
945
+
946
+ #: ../page-contact.php:181 ../template-contact.php:177
947
+ msgid "Sorry, an error occured."
948
+ msgstr "Lo sentimos,se ha producido un error."
949
+
950
+ #: ../page-contact.php:187 ../template-contact.php:183
951
+ msgid "Name:"
952
+ msgstr "Nombre:"
953
+
954
+ #: ../page-contact.php:195
955
+ msgid "Email: "
956
+ msgstr "Email:"
957
+
958
+ #: ../page-contact.php:203
959
+ msgid "Message: "
960
+ msgstr "Mensaje:"
961
+
962
+ #: ../page-contact.php:223 ../template-contact.php:218
963
+ msgid "Send Email"
964
+ msgstr "Enviar"
965
+
966
+ #: ../post-types.php:5 ../post-types.php:17
967
+ msgid "Portfolio"
968
+ msgstr "Portfolio"
969
+
970
+ #: ../post-types.php:6
971
+ #, fuzzy
972
+ msgid "Portfolio Item"
973
+ msgstr "Portfolio"
974
+
975
+ #: ../post-types.php:7
976
+ #, fuzzy
977
+ msgid "Add New"
978
+ msgstr "Añadir comentario"
979
+
980
+ #: ../post-types.php:8
981
+ #, fuzzy
982
+ msgid "Add New Portfolio Item"
983
+ msgstr "Página donde se mostraran todos los proyectos de portfolio."
984
+
985
+ #: ../post-types.php:9
986
+ #, fuzzy
987
+ msgid "Edit Portfolio Item"
988
+ msgstr "Portfolio"
989
+
990
+ #: ../post-types.php:10
991
+ #, fuzzy
992
+ msgid "New Portfolio Item"
993
+ msgstr "Portfolio"
994
+
995
+ #: ../post-types.php:11
996
+ #, fuzzy
997
+ msgid "All Portfolio"
998
+ msgstr "Portfolio"
999
+
1000
+ #: ../post-types.php:12
1001
+ #, fuzzy
1002
+ msgid "View Portfolio Item"
1003
+ msgstr "Portfolio"
1004
+
1005
+ #: ../post-types.php:13
1006
+ #, fuzzy
1007
+ msgid "Search Portfolio"
1008
+ msgstr "Portfolio"
1009
+
1010
+ #: ../post-types.php:14
1011
+ #, fuzzy
1012
+ msgid "No Portfolio Item found"
1013
+ msgstr "Carrusel de articulos similares del Portfolio"
1014
+
1015
+ #: ../post-types.php:15
1016
+ msgid "No Portfolio Items found in Trash"
1017
+ msgstr ""
1018
+
1019
+ #: ../post-types.php:37
1020
+ #, fuzzy
1021
+ msgid "Portfolio Type"
1022
+ msgstr "Tipos de trabajo Porfolio"
1023
+
1024
+ #: ../post-types.php:38
1025
+ msgid "Type"
1026
+ msgstr "Tipo"
1027
+
1028
+ #: ../post-types.php:39
1029
+ #, fuzzy
1030
+ msgid "Search Type"
1031
+ msgstr "Buscar"
1032
+
1033
+ #: ../post-types.php:40
1034
+ #, fuzzy
1035
+ msgid "All Type"
1036
+ msgstr "Tipo"
1037
+
1038
+ #: ../post-types.php:41
1039
+ #, fuzzy
1040
+ msgid "Parent Type"
1041
+ msgstr "ej: Tipo Proyecto:"
1042
+
1043
+ #: ../post-types.php:42
1044
+ #, fuzzy
1045
+ msgid "Parent Type:"
1046
+ msgstr "ej: Tipo Proyecto:"
1047
+
1048
+ #: ../post-types.php:43
1049
+ #, fuzzy
1050
+ msgid "Edit Type"
1051
+ msgstr "Tipo"
1052
+
1053
+ #: ../post-types.php:44
1054
+ #, fuzzy
1055
+ msgid "Update Type"
1056
+ msgstr "Actualizar totales"
1057
+
1058
+ #: ../post-types.php:45
1059
+ msgid "Add New Type"
1060
+ msgstr ""
1061
+
1062
+ #: ../post-types.php:46
1063
+ msgid "New Type Name"
1064
+ msgstr ""
1065
+
1066
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
1067
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
1068
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
1069
+ msgid "You are not allowed to be here"
1070
+ msgstr ""
1071
+
1072
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
1073
+ #: ../shortcodes.php:178
1074
+ msgid "please specify correct url"
1075
+ msgstr ""
1076
+
1077
+ #: ../shortcodes/accordion/accordion_popup.php:10
1078
+ msgid "Insert Accordion or Tabs"
1079
+ msgstr ""
1080
+
1081
+ #: ../shortcodes/accordion/accordion_popup.php:59
1082
+ msgid "Accordion or Tabs"
1083
+ msgstr ""
1084
+
1085
+ #: ../shortcodes/accordion/accordion_popup.php:61
1086
+ msgid "Accordion"
1087
+ msgstr ""
1088
+
1089
+ #: ../shortcodes/accordion/accordion_popup.php:62
1090
+ msgid "Tabs"
1091
+ msgstr ""
1092
+
1093
+ #: ../shortcodes/accordion/accordion_popup.php:66
1094
+ #: ../shortcodes/btns/btns_popup.php:230
1095
+ #: ../shortcodes/divider/divider_popup.php:80
1096
+ #: ../shortcodes/pullquote/quote_popup.php:77
1097
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
1098
+ #: ../shortcodes/youtube/youtube_popup.php:85
1099
+ msgid "Insert"
1100
+ msgstr ""
1101
+
1102
+ #: ../shortcodes/btns/btns_popup.php:10
1103
+ msgid "Insert Button"
1104
+ msgstr ""
1105
+
1106
+ #: ../shortcodes/btns/btns_popup.php:99
1107
+ msgid "Button Text"
1108
+ msgstr ""
1109
+
1110
+ #: ../shortcodes/btns/btns_popup.php:105
1111
+ #, fuzzy
1112
+ msgid "Text Color"
1113
+ msgstr "Selecionar Opciones"
1114
+
1115
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1116
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1117
+ msgid "White"
1118
+ msgstr ""
1119
+
1120
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1121
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1122
+ msgid "Off-White"
1123
+ msgstr ""
1124
+
1125
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1126
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1127
+ msgid "Black"
1128
+ msgstr ""
1129
+
1130
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1131
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1132
+ msgid "Light-Gray"
1133
+ msgstr ""
1134
+
1135
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1136
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1137
+ msgid "Gray"
1138
+ msgstr ""
1139
+
1140
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1141
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1142
+ msgid "Dark-Gray"
1143
+ msgstr ""
1144
+
1145
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1146
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1147
+ msgid "Silver"
1148
+ msgstr ""
1149
+
1150
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1151
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1152
+ msgid "Red"
1153
+ msgstr ""
1154
+
1155
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1156
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1157
+ msgid "Blue"
1158
+ msgstr ""
1159
+
1160
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1161
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1162
+ msgid "Green"
1163
+ msgstr ""
1164
+
1165
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1166
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1167
+ #, fuzzy
1168
+ msgid "Yellow"
1169
+ msgstr "Seguir"
1170
+
1171
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1172
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1173
+ msgid "Orange"
1174
+ msgstr ""
1175
+
1176
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1177
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1178
+ msgid "Pink"
1179
+ msgstr ""
1180
+
1181
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1182
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1183
+ msgid "Purple"
1184
+ msgstr ""
1185
+
1186
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1187
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1188
+ msgid "Brown"
1189
+ msgstr ""
1190
+
1191
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1192
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1193
+ msgid "Maroon"
1194
+ msgstr ""
1195
+
1196
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1197
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1198
+ msgid "Or Type Hex Color"
1199
+ msgstr ""
1200
+
1201
+ #: ../shortcodes/btns/btns_popup.php:132
1202
+ #, fuzzy
1203
+ msgid "Button Color"
1204
+ msgstr "Color Fondo"
1205
+
1206
+ #: ../shortcodes/btns/btns_popup.php:161
1207
+ msgid "Text Hover Color"
1208
+ msgstr ""
1209
+
1210
+ #: ../shortcodes/btns/btns_popup.php:188
1211
+ #, fuzzy
1212
+ msgid "Button Background Hover Color"
1213
+ msgstr "Color Fondo"
1214
+
1215
+ #: ../shortcodes/btns/btns_popup.php:190
1216
+ #, fuzzy
1217
+ msgid "30% Primary Color"
1218
+ msgstr "Color Primario"
1219
+
1220
+ #: ../shortcodes/btns/btns_popup.php:216
1221
+ #, fuzzy
1222
+ msgid "Button Link"
1223
+ msgstr "Enlace icono"
1224
+
1225
+ #: ../shortcodes/btns/btns_popup.php:222
1226
+ msgid "Button Link Target"
1227
+ msgstr ""
1228
+
1229
+ #: ../shortcodes/btns/btns_popup.php:224
1230
+ msgid "Same Window"
1231
+ msgstr ""
1232
+
1233
+ #: ../shortcodes/btns/btns_popup.php:225
1234
+ msgid "New Window/Tab"
1235
+ msgstr ""
1236
+
1237
+ #: ../shortcodes/columns/columns_popup.php:10
1238
+ #, fuzzy
1239
+ msgid "Insert Columns"
1240
+ msgstr "Columnas"
1241
+
1242
+ #: ../shortcodes/divider/divider_popup.php:10
1243
+ msgid "Insert Divider"
1244
+ msgstr ""
1245
+
1246
+ #: ../shortcodes/divider/divider_popup.php:70
1247
+ #, fuzzy
1248
+ msgid "Choose a Divider"
1249
+ msgstr "Elegir Barra lateral"
1250
+
1251
+ #: ../shortcodes/divider/divider_popup.php:72
1252
+ msgid "Line"
1253
+ msgstr ""
1254
+
1255
+ #: ../shortcodes/divider/divider_popup.php:73
1256
+ msgid "Padding Small"
1257
+ msgstr ""
1258
+
1259
+ #: ../shortcodes/divider/divider_popup.php:74
1260
+ msgid "Padding Medium"
1261
+ msgstr ""
1262
+
1263
+ #: ../shortcodes/divider/divider_popup.php:75
1264
+ msgid "Padding Large"
1265
+ msgstr ""
1266
+
1267
+ #: ../shortcodes/icons/icon_popup.php:10
1268
+ #, fuzzy
1269
+ msgid "Insert Icon"
1270
+ msgstr "Borrar icono"
1271
+
1272
+ #: ../shortcodes/pullquote/quote_popup.php:10
1273
+ msgid "Insert Styled Quote"
1274
+ msgstr ""
1275
+
1276
+ #: ../shortcodes/pullquote/quote_popup.php:61
1277
+ msgid "Pull-Quote"
1278
+ msgstr ""
1279
+
1280
+ #: ../shortcodes/pullquote/quote_popup.php:62
1281
+ msgid "Block-Quote"
1282
+ msgstr ""
1283
+
1284
+ #: ../shortcodes/pullquote/quote_popup.php:68
1285
+ msgid "Align"
1286
+ msgstr ""
1287
+
1288
+ #: ../shortcodes/pullquote/quote_popup.php:70
1289
+ msgid "Center"
1290
+ msgstr ""
1291
+
1292
+ #: ../shortcodes/pullquote/quote_popup.php:71
1293
+ msgid "Left"
1294
+ msgstr "Izquierda"
1295
+
1296
+ #: ../shortcodes/pullquote/quote_popup.php:72
1297
+ #, fuzzy
1298
+ msgid "Right"
1299
+ msgstr "Altura"
1300
+
1301
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1302
+ msgid "Insert Vimeo Video"
1303
+ msgstr ""
1304
+
1305
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1306
+ #, fuzzy
1307
+ msgid "Vimeo Link"
1308
+ msgstr "Enlace icono"
1309
+
1310
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1311
+ #: ../shortcodes/youtube/youtube_popup.php:70
1312
+ msgid "Width"
1313
+ msgstr "Ancho"
1314
+
1315
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1316
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1317
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1318
+ #: ../shortcodes/youtube/youtube_popup.php:72
1319
+ #: ../shortcodes/youtube/youtube_popup.php:77
1320
+ #: ../shortcodes/youtube/youtube_popup.php:82
1321
+ msgid "note just use number"
1322
+ msgstr ""
1323
+
1324
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1325
+ #: ../shortcodes/youtube/youtube_popup.php:75
1326
+ msgid "Height"
1327
+ msgstr "Altura"
1328
+
1329
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1330
+ #: ../shortcodes/youtube/youtube_popup.php:80
1331
+ #, fuzzy
1332
+ msgid "(Optional) Max Width"
1333
+ msgstr "Anchura máxima del slider"
1334
+
1335
+ #: ../shortcodes/youtube/youtube_popup.php:10
1336
+ msgid "Insert YouTube Video"
1337
+ msgstr ""
1338
+
1339
+ #: ../shortcodes/youtube/youtube_popup.php:66
1340
+ #, fuzzy
1341
+ msgid "YouTube Link"
1342
+ msgstr "Enlace icono"
1343
+
1344
+ #: ../template-contact.php:193
1345
+ msgid "Email:"
1346
+ msgstr "Email:"
1347
+
1348
+ #: ../template-contact.php:200
1349
+ #, fuzzy
1350
+ msgid "Message:"
1351
+ msgstr "Mensaje:"
1352
+
1353
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
1354
+ #~ msgstr ""
1355
+ #~ "Lo sentimos, pero la p&aacute;gina que est&aacute; intentando ver no "
1356
+ #~ "existe."
1357
+
1358
+ #~ msgid "It looks like this was the result of either:"
1359
+ #~ msgstr "Parece que este es el resultado para todos:"
1360
+
1361
+ #~ msgid "a mistyped address"
1362
+ #~ msgstr "dirección mal escrita"
1363
+
1364
+ #~ msgid "an out-of-date link"
1365
+ #~ msgstr "enlace obsoleto"
1366
+
1367
+ #~ msgid "Sorry, no results were found."
1368
+ #~ msgstr "Lo sentimos, no se encontraron resultados"
1369
+
1370
+ #~ msgid "Sorry, no blog entries found."
1371
+ #~ msgstr "Lo sentimos, no hay publicaciones del blog"
1372
+
1373
+ #~ msgid "From "
1374
+ #~ msgstr "Desde"
1375
+
1376
+ #~ msgid "Sorry, no portfolio entries found."
1377
+ #~ msgstr "Lo sentimos,no se encontraron mensajes del portfolio"
1378
+
1379
+ #~ msgid "Search for:"
1380
+ #~ msgstr "Búsqueda para:"
1381
+
1382
+ #~ msgid "&larr; Older posts"
1383
+ #~ msgstr "&larr; Publicaciones antiguas"
1384
+
1385
+ #~ msgid "Newer posts &rarr;"
1386
+ #~ msgstr "Nuevas publicaciones &rarr;"
1387
+
1388
+ #~ msgid "About Author"
1389
+ #~ msgstr "Sobre el Autor"
1390
+
1391
+ #~ msgid "Latest Posts"
1392
+ #~ msgstr "Últimos mensajes"
1393
+
1394
+ #~ msgid "on Facebook"
1395
+ #~ msgstr "en Facebook"
1396
+
1397
+ #~ msgid "on Twitter"
1398
+ #~ msgstr "en Twitter"
1399
+
1400
+ #~ msgid "on Google Plus"
1401
+ #~ msgstr "en Google Plus"
1402
+
1403
+ #~ msgid "on Flickr"
1404
+ #~ msgstr "en Flickr"
1405
+
1406
+ #~ msgid "on Vimeo"
1407
+ #~ msgstr "en Vimeo"
1408
+
1409
+ #~ msgid "on linkedin"
1410
+ #~ msgstr "en linkedin"
1411
+
1412
+ #~ msgid "on Dribbble"
1413
+ #~ msgstr "en Dribbble"
1414
+
1415
+ #~ msgid "on Pinterest"
1416
+ #~ msgstr "en Pinterest"
1417
+
1418
+ #~ msgid "on Instagram"
1419
+ #~ msgstr "en Instagram"
1420
+
1421
+ #~ msgid "Latest posts from"
1422
+ #~ msgstr "Últimas publicaciones de"
1423
+
1424
+ #~ msgid "Install Required Plugins"
1425
+ #~ msgstr "Requiere instalación de plugins"
1426
+
1427
+ #~ msgid "Install Plugins"
1428
+ #~ msgstr "Instalar Plugins"
1429
+
1430
+ #~ msgid "Installing Plugin: %s"
1431
+ #~ msgstr "Instalar Plugin: %s"
1432
+
1433
+ #~ msgid "Something went wrong."
1434
+ #~ msgstr "Algo salió mal"
1435
+
1436
+ #~ msgid "Return to Required Plugins Installer"
1437
+ #~ msgstr "Volver a instalador de Plugins"
1438
+
1439
+ #~ msgid "Return to the dashboard"
1440
+ #~ msgstr "Volver al Escritorio"
1441
+
1442
+ #~ msgid "Plugin activated successfully."
1443
+ #~ msgstr "Plugin activado correctamente."
1444
+
1445
+ #~ msgid "The following plugin was activated successfully:"
1446
+ #~ msgid_plural "The following plugins were activated successfully:"
1447
+ #~ msgstr[0] "El siguiente Plugin se activó con éxito:"
1448
+ #~ msgstr[1] "Los siguiente plugins se activaron con éxito:"
1449
+
1450
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1451
+ #~ msgstr "Todos los plugins instalados y activados correctamente. %1$s"
1452
+
1453
+ #~ msgid "Dismiss this notice"
1454
+ #~ msgstr "Ignorar este aviso"
1455
+
1456
+ #~ msgid "External Link"
1457
+ #~ msgstr "Enlace Externo"
1458
+
1459
+ #~ msgid "Private Repository"
1460
+ #~ msgstr "Ámbito Privado"
1461
+
1462
+ #~ msgid "Pre-Packaged"
1463
+ #~ msgstr "Pre-Empaquetados"
1464
+
1465
+ #~ msgid "WordPress Repository"
1466
+ #~ msgstr "Repositorio de Wordpress"
1467
+
1468
+ #~ msgid "Required"
1469
+ #~ msgstr "Requerido"
1470
+
1471
+ #~ msgid "Recommended"
1472
+ #~ msgstr "Recomendado"
1473
+
1474
+ #~ msgid "Not Installed"
1475
+ #~ msgstr "No se ha instalado"
1476
+
1477
+ #~ msgid "Installed But Not Activated"
1478
+ #~ msgstr "Instalado pero sin activar"
1479
+
1480
+ #~ msgid ""
1481
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
1482
+ #~ "Dashboard\">Return to the Dashboard</a>"
1483
+ #~ msgstr ""
1484
+ #~ "No hay plugins para instalar o activar. <a href=\"%1$s\" title=\"Return "
1485
+ #~ "to the Dashboard\">Volver a Escritorio</a>"
1486
+
1487
+ #~ msgid "Plugin"
1488
+ #~ msgstr "Plugin"
1489
+
1490
+ #~ msgid "Source"
1491
+ #~ msgstr "Fuente"
1492
+
1493
+ #~ msgid "Status"
1494
+ #~ msgstr "Estado"
1495
+
1496
+ #~ msgid "Install"
1497
+ #~ msgstr "Instalar"
1498
+
1499
+ #~ msgid "Activate"
1500
+ #~ msgstr "Activar"
1501
+
1502
+ #~ msgid "Install package not available."
1503
+ #~ msgstr "Instale el paquete no está disponible."
1504
+
1505
+ #~ msgid ""
1506
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
1507
+ #~ msgstr ""
1508
+ #~ "Descargar paquete de instalación de <span class=\"code\">%s</span>&#8230;"
1509
+
1510
+ #~ msgid "Unpacking the package&#8230;"
1511
+ #~ msgstr "Desembalar el paquete&#8230;"
1512
+
1513
+ #~ msgid "Installing the plugin&#8230;"
1514
+ #~ msgstr "Instalación del plugin de&#8230;"
1515
+
1516
+ #~ msgid "Plugin install failed."
1517
+ #~ msgstr "La instalación del plugin ha fallado"
1518
+
1519
+ #~ msgid "Plugin installed successfully."
1520
+ #~ msgstr "Plugin instalado correctamente."
1521
+
1522
+ #~ msgid "Plugin activation failed."
1523
+ #~ msgstr "Activación del plugin fallida."
1524
+
1525
+ #~ msgid ""
1526
+ #~ "The installation and activation process is starting. This process may "
1527
+ #~ "take a while on some hosts, so please be patient."
1528
+ #~ msgstr ""
1529
+ #~ "Comienza el proceso de instalación y activación. Este proceso puede "
1530
+ #~ "tardar un poco en algunos alojamientos, por favor sea paciente."
1531
+
1532
+ #~ msgid "%1$s installed and activated successfully."
1533
+ #~ msgstr "%1$s instalado y activado correctamente."
1534
+
1535
+ #~ msgid "Show Details"
1536
+ #~ msgstr "Mostrar detalles"
1537
+
1538
+ #~ msgid "Hide Details"
1539
+ #~ msgstr "Ocultar detalles"
1540
+
1541
+ #~ msgid "All installations and activations have been completed."
1542
+ #~ msgstr "Todas las instalaciones y activaciones se han completado."
1543
+
1544
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
1545
+ #~ msgstr "Instalación y Activación de Plugin %1$s (%2$d/%3$d)"
1546
+
1547
+ #~ msgid ""
1548
+ #~ "The installation process is starting. This process may take a while on "
1549
+ #~ "some hosts, so please be patient."
1550
+ #~ msgstr ""
1551
+ #~ "El proceso de instalación está iniciando. Este proceso puede tardar un "
1552
+ #~ "poco en algunos alojamientos, por favor sea paciente."
1553
+
1554
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1555
+ #~ msgstr ""
1556
+ #~ "Ha ocurrido un error durante la instalación %1$s: <strong>%2$s</strong>."
1557
+
1558
+ #~ msgid "The installation of %1$s failed."
1559
+ #~ msgstr "La instalación de %1$s ha fallado."
1560
+
1561
+ #~ msgid "%1$s installed successfully."
1562
+ #~ msgstr "%1$s instalado correctamente."
1563
+
1564
+ #~ msgid "All installations have been completed."
1565
+ #~ msgstr "Todas las instalaciones se han completado."
1566
+
1567
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
1568
+ #~ msgstr "Instalar Plugin %1$s (%2$d/%3$d)"
1569
+
1570
+ #~ msgid "Return to the Dashboard"
1571
+ #~ msgstr "Regresar al Escritorio"
1572
+
1573
+ #~ msgid "Continued"
1574
+ #~ msgstr "Continuar"
1575
+
1576
+ #~ msgid "%1$s"
1577
+ #~ msgstr "%1$s"
1578
+
1579
+ #~ msgid "| (Edit)"
1580
+ #~ msgstr "| (Editar)"
1581
+
1582
+ #~ msgid "Your comment is awaiting moderation."
1583
+ #~ msgstr "Comentario pendiente de moderación."
1584
+
1585
+ #~ msgid "View your shopping cart"
1586
+ #~ msgstr "Ver carrito compra"
1587
+
1588
+ #~ msgid "Your Cart"
1589
+ #~ msgstr "Su carrito"
1590
+
1591
+ #~ msgid "Previous Post"
1592
+ #~ msgstr "Anterior publicación"
1593
+
1594
+ #~ msgid "Next Post"
1595
+ #~ msgstr "Siguiente publicación"
1596
+
1597
+ #~ msgid "Occupation"
1598
+ #~ msgstr "Ocupación/Profesión"
1599
+
1600
+ #~ msgid "Please enter your Occupation."
1601
+ #~ msgstr "Por favor, escriba su ocupación"
1602
+
1603
+ #~ msgid "Please enter your Twitter username."
1604
+ #~ msgstr "Por favor,escriba su nombre usuario de Twitter"
1605
+
1606
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
1607
+ #~ msgstr ""
1608
+ #~ "Por favor, escriba su url de Facebook. (asegúrese de incluir http://)"
1609
+
1610
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
1611
+ #~ msgstr ""
1612
+ #~ "Por favor, escriba su url de Google Plus (asegúrese de incluis http://)"
1613
+
1614
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
1615
+ #~ msgstr "Por favor introduzca su url Flick (asegúrese de incluir http://)"
1616
+
1617
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
1618
+ #~ msgstr "Por favor introduzca su url Linkedin (asegúrese de incluir http://)"
1619
+
1620
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
1621
+ #~ msgstr "Por favor introduzca su url Dribbble (asegúrese de incluir http://)"
1622
+
1623
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
1624
+ #~ msgstr ""
1625
+ #~ "Por favor introduzca su url Pinterest (asegúrese de incluir http://)"
1626
+
1627
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
1628
+ #~ msgstr ""
1629
+ #~ "Por favor introduzca su url Instagram (asegúrese de incluir http://)"
1630
+
1631
+ #~ msgid "Post Slider Images"
1632
+ #~ msgstr "Imágenes Slider Publicaciones"
1633
+
1634
+ #~ msgid "Feature Page Slider Images"
1635
+ #~ msgstr "Propiedades Imágenes Slider Página"
1636
+
1637
+ #~ msgid "Remove image"
1638
+ #~ msgstr "Quitar Imagen"
1639
+
1640
+ #~ msgid "Add images"
1641
+ #~ msgstr "Añadir Imágenes"
1642
+
1643
+ #~ msgid "Add to gallery"
1644
+ #~ msgstr "Añadir a Galería"
1645
+
1646
+ #~ msgid "Primary Navigation"
1647
+ #~ msgstr "Menú Navegación Principal"
1648
+
1649
+ #~ msgid "Secondary Navigation"
1650
+ #~ msgstr "Menú Navegación Secundario"
1651
+
1652
+ #~ msgid "Mobile Navigation"
1653
+ #~ msgstr "Menú Navegacion Móviles"
1654
+
1655
+ #~ msgid "Topbar Navigation"
1656
+ #~ msgstr "Menú Navegación Barra superior"
1657
+
1658
+ #~ msgid "Footer Navigation"
1659
+ #~ msgstr "Menú Navegación Pie de Página"
1660
+
1661
+ #~ msgid "All Blog Posts"
1662
+ #~ msgstr "Todas las publicaciones del Blog"
1663
+
1664
+ #~ msgid "Text"
1665
+ #~ msgstr "Texto"
1666
+
1667
+ #~ msgid "Display Sidebar?"
1668
+ #~ msgstr "¿Mostrar barra lateral?"
1669
+
1670
+ #~ msgid "Choose if layout is fullwidth or sidebar"
1671
+ #~ msgstr "Seleccionar diseño - barra lateral o ancho total"
1672
+
1673
+ #~ msgid "Author Info"
1674
+ #~ msgstr "Información del Autor"
1675
+
1676
+ #~ msgid "Display an author info box?"
1677
+ #~ msgstr ""
1678
+ #~ "Muestra un cuadro al final de la publicación con datos del autor y "
1679
+ #~ "publicaciones realizadas"
1680
+
1681
+ #~ msgid "Posts Carousel"
1682
+ #~ msgstr "Carrusel de Publicaciones"
1683
+
1684
+ #~ msgid "Display a carousel with similar or recent posts?"
1685
+ #~ msgstr "¿Mostrar un carrusel con publicaciones recientes o similares?"
1686
+
1687
+ #~ msgid "Yes - Display Recent Posts"
1688
+ #~ msgstr "Sí - Mostrar publicaciones recientes"
1689
+
1690
+ #~ msgid "Yes - Display Similar Posts"
1691
+ #~ msgstr "Sí - Mostrar publicaciones similares"
1692
+
1693
+ #~ msgid "ex. Similar Posts"
1694
+ #~ msgstr "ej.: Publicaciones Similares"
1695
+
1696
+ #~ msgid "Blog List Options"
1697
+ #~ msgstr "Opciones Listado de Blog"
1698
+
1699
+ #~ msgid "Blog Category"
1700
+ #~ msgstr "Categorías Blog"
1701
+
1702
+ #~ msgid "Select all blog posts or a specific category to show"
1703
+ #~ msgstr ""
1704
+ #~ "Seleccionar todas las publicaciones de blog o de una categoría específica "
1705
+ #~ "para mostrar"
1706
+
1707
+ #~ msgid "How Many Posts Per Page"
1708
+ #~ msgstr "Número de publicaciones por página"
1709
+
1710
+ #~ msgid "Display Post Content as:"
1711
+ #~ msgstr "Mostrar publicar contenido como:"
1712
+
1713
+ #~ msgid "Summary"
1714
+ #~ msgstr "Resumen"
1715
+
1716
+ #~ msgid "Full"
1717
+ #~ msgstr "Completo"
1718
+
1719
+ #~ msgid "Sidebar Options"
1720
+ #~ msgstr "Opciones Barra lateral"
1721
+
1722
+ #~ msgid ""
1723
+ #~ "Sorry, no products matched your selection. Please choose a different "
1724
+ #~ "combination."
1725
+ #~ msgstr ""
1726
+ #~ "Lo sentimos, no hay productos marcados con su selcci&oacute:n. Por favor "
1727
+ #~ "elija una combinaci&oacute:n diferente."
1728
+
1729
+ #~ msgid ""
1730
+ #~ "Sorry, this product is unavailable. Please choose a different combination."
1731
+ #~ msgstr ""
1732
+ #~ "Lo sentimos, producto no disponible. Por favor seleccione otra "
1733
+ #~ "combinaci&oacute;n."
1734
+
1735
+ #~ msgid "Daily Archives: %s"
1736
+ #~ msgstr "Archivo Diario: %s"
1737
+
1738
+ #~ msgid "Monthly Archives: %s"
1739
+ #~ msgstr "Archivo Mensual: %s"
1740
+
1741
+ #~ msgid "Yearly Archives: %s"
1742
+ #~ msgstr "Archivo Anual: %s"
1743
+
1744
+ #~ msgid "Author Archives: %s"
1745
+ #~ msgstr "Archivos Autor: %s"
1746
+
1747
+ #~ msgid "Search Results for %s"
1748
+ #~ msgstr "Resultados búsqueda para %s"
1749
+
1750
+ #~ msgid "Not Found"
1751
+ #~ msgstr "No se encuentra"
1752
+
1753
+ #~ msgid "Something went wrong with the plugin API."
1754
+ #~ msgstr "Algo falló con la API de plugin."
1755
+
1756
+ #~ msgid "All plugins installed and activated successfully. %s"
1757
+ #~ msgstr "Todos los plugins instalados y activados correctamente. %s"
1758
+
1759
+ #~ msgid "Primary Sidebar"
1760
+ #~ msgstr "Barra lateral Principal (Primary)"
1761
+
1762
+ #~ msgid "Topbar Widget"
1763
+ #~ msgstr "Widget barra superior"
1764
+
1765
+ #~ msgid "Footer Column 1"
1766
+ #~ msgstr "Footer Column 1"
1767
+
1768
+ #~ msgid "Footer Column 2"
1769
+ #~ msgstr "Footer Column 2"
1770
+
1771
+ #~ msgid "Footer Column 3"
1772
+ #~ msgstr "Footer Column 3"
1773
+
1774
+ #~ msgid "Footer Column 4"
1775
+ #~ msgstr "Footer Column 4"
1776
+
1777
+ #~ msgid "Use this widget to add a Vcard to your site"
1778
+ #~ msgstr "Use este widget para añadir datos Vcard del sitio web"
1779
+
1780
+ #~ msgid "Virtue: Contact/Vcard"
1781
+ #~ msgstr "Virtue: Contacto/Vcard"
1782
+
1783
+ #~ msgid "vCard"
1784
+ #~ msgstr "vCard"
1785
+
1786
+ #~ msgid "Title:"
1787
+ #~ msgstr "Título:"
1788
+
1789
+ #~ msgid "Company Name:"
1790
+ #~ msgstr "Nombre Empresa:"
1791
+
1792
+ #~ msgid "Street Address:"
1793
+ #~ msgstr "Dirección:"
1794
+
1795
+ #~ msgid "City/Locality:"
1796
+ #~ msgstr "Localidad:"
1797
+
1798
+ #~ msgid "State/Region:"
1799
+ #~ msgstr "Pais:"
1800
+
1801
+ #~ msgid "Zipcode/Postal Code:"
1802
+ #~ msgstr "Código Postal:"
1803
+
1804
+ #, fuzzy
1805
+ #~ msgid "Mobile Telephone:"
1806
+ #~ msgstr "Teléfono:"
1807
+
1808
+ #, fuzzy
1809
+ #~ msgid "Fixed Telephone:"
1810
+ #~ msgstr "Teléfono:"
1811
+
1812
+ #~ msgid "Simple way to add Social Icons"
1813
+ #~ msgstr "Añadir facilmente iconos redes sociales"
1814
+
1815
+ #~ msgid "Virtue: Social Links"
1816
+ #~ msgstr "Virtue: Redes Sociales"
1817
+
1818
+ #~ msgid "Facebook:"
1819
+ #~ msgstr "Facebook:"
1820
+
1821
+ #~ msgid "Twitter:"
1822
+ #~ msgstr "Twitter:"
1823
+
1824
+ #~ msgid "Instagram:"
1825
+ #~ msgstr "Instagram:"
1826
+
1827
+ #~ msgid "GooglePlus:"
1828
+ #~ msgstr "Google Plus:"
1829
+
1830
+ #~ msgid "Flickr:"
1831
+ #~ msgstr "Flickr:"
1832
+
1833
+ #~ msgid "Vimeo:"
1834
+ #~ msgstr "Vimeo:"
1835
+
1836
+ #~ msgid "Youtube:"
1837
+ #~ msgstr "Youtube:"
1838
+
1839
+ #~ msgid "Pinterest:"
1840
+ #~ msgstr "Pinterest:"
1841
+
1842
+ #~ msgid "Dribbble:"
1843
+ #~ msgstr "Dribbble:"
1844
+
1845
+ #~ msgid "Linkedin:"
1846
+ #~ msgstr "Linkedin:"
1847
+
1848
+ #~ msgid "Tumblr:"
1849
+ #~ msgstr "Tumblr:"
1850
+
1851
+ #~ msgid "RSS:"
1852
+ #~ msgstr "RSS:"
1853
+
1854
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
1855
+ #~ msgstr "Mostrar las publicaciones más recientes con una miniatura"
1856
+
1857
+ #~ msgid "Virtue: Recent Posts"
1858
+ #~ msgstr "Virtue: Publicaciones Recientes"
1859
+
1860
+ #~ msgid "Recent Posts"
1861
+ #~ msgstr "Publicaciones Recientes"
1862
+
1863
+ #~ msgid "Number of posts to show:"
1864
+ #~ msgstr "Número publicaciones a mostrar:"
1865
+
1866
+ #~ msgid "Limit to Catagory (Optional):"
1867
+ #~ msgstr "Limitar a categoría (opcional):"
1868
+
1869
+ #~ msgid ""
1870
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
1871
+ #~ msgstr ""
1872
+ #~ "Se muestran la imágenes usadas como destacadas de las publicaciones o "
1873
+ #~ "artículos más recientes en una rejilla (grid)"
1874
+
1875
+ #~ msgid "Virtue: Image Grid"
1876
+ #~ msgstr "Virtue: Imagen Rejilla | Grid"
1877
+
1878
+ #~ msgid "Grid Choice:"
1879
+ #~ msgstr "Elegir rejilla:"
1880
+
1881
+ #~ msgid "Blog Posts"
1882
+ #~ msgstr "Publicaciones Blog"
1883
+
1884
+ #~ msgid "If Post - Choose Category (Optional):"
1885
+ #~ msgstr "Si publicaciones - Elegir Categoría (opcional):"
1886
+
1887
+ #~ msgid "If Portfolio - Choose Type (Optional):"
1888
+ #~ msgstr "Si Portfolio - Elegir Tipo (opcional):"
1889
+
1890
+ #~ msgid "Number of images to show:"
1891
+ #~ msgstr "Número de imágenes a mostrar:"
1892
+
1893
+ #~ msgid "This allows for an image and a simple about text."
1894
+ #~ msgstr "Mostrar una imagen sobre un texto simple."
1895
+
1896
+ #, fuzzy
1897
+ #~ msgid "Virtue: Image"
1898
+ #~ msgstr "Virtue: Imagen Rejilla | Grid"
1899
+
1900
+ #~ msgid "Upload"
1901
+ #~ msgstr "Subir"
1902
+
1903
+ #, fuzzy
1904
+ #~ msgid "Image opens in"
1905
+ #~ msgstr "Opciones repetición imagen"
1906
+
1907
+ #, fuzzy
1908
+ #~ msgid "Image Link (optional)"
1909
+ #~ msgstr "Opciones repetición imagen"
1910
+
1911
+ #, fuzzy
1912
+ #~ msgid "Edit Account"
1913
+ #~ msgstr "Mi Cuenta"
1914
+
1915
+ #, fuzzy
1916
+ #~ msgid "Logout"
1917
+ #~ msgstr "Logotipo"
1918
+
1919
+ #~ msgid "(Edit)"
1920
+ #~ msgstr "(Editar)"
1921
+
1922
+ #~ msgid "One Response "
1923
+ #~ msgid_plural "%1$s Responses "
1924
+ #~ msgstr[0] "Una respuesta"
1925
+ #~ msgstr[1] "%1$s Respuestas"
1926
+
1927
+ #~ msgid "&larr; Older comments"
1928
+ #~ msgstr "&larr; Comentarios antiguos"
1929
+
1930
+ #~ msgid "Newer comments &rarr;"
1931
+ #~ msgstr "Nuevo comentarios &rarr;"
1932
+
1933
+ #~ msgid "Comments are closed."
1934
+ #~ msgstr "Comentarios Cerrados."
1935
+
1936
+ #~ msgid "Leave a Reply"
1937
+ #~ msgstr "Dejar una opinión"
1938
+
1939
+ #~ msgid "Leave a Reply to %s"
1940
+ #~ msgstr "Leave a Reply to %s"
1941
+
1942
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
1943
+ #~ msgstr ""
1944
+ #~ "Debe estar <a href=\"%s\">conectado</a> para escribir un comentario."
1945
+
1946
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
1947
+ #~ msgstr "Conectado como&nbsp;<a href=\"%s/wp-admin/profile.php\">%s</a>."
1948
+
1949
+ #~ msgid "Log out of this account"
1950
+ #~ msgstr "Desconectarse de la cuenta"
1951
+
1952
+ #~ msgid "Log out &raquo;"
1953
+ #~ msgstr "Desconectar &raquo;"
1954
+
1955
+ #~ msgid " <span>*</span>"
1956
+ #~ msgstr " <span>*</span>"
1957
+
1958
+ #~ msgid "Email (will not be published)"
1959
+ #~ msgstr "Email (no será publicado)"
1960
+
1961
+ #~ msgid "Website"
1962
+ #~ msgstr "Sitio Web"
1963
+
1964
+ #~ msgid "Submit Comment"
1965
+ #~ msgstr "Enviar"
1966
+
1967
+ #~ msgid "Pages:"
1968
+ #~ msgstr "Páginas:"
1969
+
1970
+ #~ msgid "by"
1971
+ #~ msgstr "por"
1972
+
1973
+ #~ msgid "posted in:"
1974
+ #~ msgstr "publicado en:"
1975
+
1976
+ #~ msgid "By"
1977
+ #~ msgstr "por"
1978
+
1979
+ #~ msgid "Menu"
1980
+ #~ msgstr "Men&uacute;"
1981
+
1982
+ #~ msgid "Recent Projects"
1983
+ #~ msgstr "Proyectos Recientes"
1984
+
1985
+ #~ msgid "Similar Posts"
1986
+ #~ msgstr "Publicaciones Similares"
1987
+
1988
+ #~ msgid "Latest from the Blog"
1989
+ #~ msgstr "Lo último del Blog"
1990
+
1991
+ #~ msgid "READ MORE"
1992
+ #~ msgstr "LEER MÁS"
1993
+
1994
+ #~ msgid "Featured Projects"
1995
+ #~ msgstr "Proyectos destacados"
1996
+
1997
+ #~ msgid "Copy and Paste this code into the theme options import feature"
1998
+ #~ msgstr ""
1999
+ #~ "Copiar y pegar este c&oacute;digo en el tema de las opciones de "
2000
+ #~ "importaci&oacute;n de funci&oacute;n"
2001
+
2002
+ #~ msgid "There are no previous options"
2003
+ #~ msgstr "No hay opciones anteriores"
2004
+
2005
+ #~ msgid "Main Settings"
2006
+ #~ msgstr "Ajustes"
2007
+
2008
+ #~ msgid "Welcome to Virtue Theme Options"
2009
+ #~ msgstr "Bienvenido a las opciones del tema Virtue"
2010
+
2011
+ #~ msgid "This theme was developed by"
2012
+ #~ msgstr "Tema desarrollado por"
2013
+
2014
+ #~ msgid "For theme documentation visit"
2015
+ #~ msgstr "Para ver la documentaci&oacute;n del tema"
2016
+
2017
+ #~ msgid "For support please visit"
2018
+ #~ msgstr "Para recibir soporte, por favor visite"
2019
+
2020
+ #~ msgid "Site Layout Style"
2021
+ #~ msgstr "Estilo diseño ancho pantalla del sitio web"
2022
+
2023
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2024
+ #~ msgstr "Seleccione disposici&oacute;n: Caja o Ancho completo"
2025
+
2026
+ #~ msgid "Footer Widget Layout"
2027
+ #~ msgstr "Dise&ntilde;o columnas-widgets pie de p&aacute;gina"
2028
+
2029
+ #~ msgid "Select how many columns for footer widgets"
2030
+ #~ msgstr "Seleccionar el n&uacute;mero de columnas pie de p&aacute;gina"
2031
+
2032
+ #~ msgid "Logo Options"
2033
+ #~ msgstr "Opciones del logotipo"
2034
+
2035
+ #~ msgid "Logo Layout"
2036
+ #~ msgstr "Disposici&oacute;n Logo"
2037
+
2038
+ #~ msgid "Choose how you want your logo to be laid out"
2039
+ #~ msgstr "Elija c&oacute;mo desea mostrar su logotipo"
2040
+
2041
+ #~ msgid "Logo"
2042
+ #~ msgstr "Logotipo"
2043
+
2044
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
2045
+ #~ msgstr ""
2046
+ #~ "Suba su logotipo. Si se deja en blanco, se mostrar&aacute; el nombre del "
2047
+ #~ "sitio."
2048
+
2049
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
2050
+ #~ msgstr "Subir logo x2 para pantallas Retina"
2051
+
2052
+ #~ msgid "Should be twice the pixel size of your normal logo."
2053
+ #~ msgstr "Debe ser dos veces el tama&ntilde;o de píxel de su logo normal"
2054
+
2055
+ #~ msgid "Sitename Logo Font"
2056
+ #~ msgstr "Fuente para el nombre del sitio"
2057
+
2058
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
2059
+ #~ msgstr ""
2060
+ #~ "Elija el tama&ntilde;o y estilo de su nombre de sitio, si no se utiliza "
2061
+ #~ "un logotipo de imagen"
2062
+
2063
+ #~ msgid "Site Tagline - Below Logo\""
2064
+ #~ msgstr "Lema del sitio - Debajo del logotipo"
2065
+
2066
+ #~ msgid "An optional line of text below your logo"
2067
+ #~ msgstr "L&iacute;nea de texto debajo de su logotipo -opcional-"
2068
+
2069
+ #~ msgid "Site Tagline Font"
2070
+ #~ msgstr "Fuente para lema del sitio"
2071
+
2072
+ #~ msgid "Choose size and style your site tagline"
2073
+ #~ msgstr "Elija un tamaño y estilo para su lema"
2074
+
2075
+ #~ msgid "Logo Spacing"
2076
+ #~ msgstr "Espaciado del Logo"
2077
+
2078
+ #~ msgid "Top Spacing"
2079
+ #~ msgstr "Margen superior"
2080
+
2081
+ #~ msgid "Bottom Spacing"
2082
+ #~ msgstr "Margen inferior"
2083
+
2084
+ #~ msgid "Left Spacing"
2085
+ #~ msgstr "Margen izquierdo"
2086
+
2087
+ #~ msgid "Right Spacing"
2088
+ #~ msgstr "Margen derecho"
2089
+
2090
+ #~ msgid "Primary Menu Spacing"
2091
+ #~ msgstr "Margen Menú primario"
2092
+
2093
+ #~ msgid "Sitewide Banner"
2094
+ #~ msgstr "Banner en todo el sitio"
2095
+
2096
+ #~ msgid "Upload a banner for bottom of header."
2097
+ #~ msgstr ""
2098
+ #~ "Subir un banner de cabecera. Ser&aacute; visible en todas las p&aacute;"
2099
+ #~ "ginas."
2100
+
2101
+ #~ msgid "Topbar Settings"
2102
+ #~ msgstr "Ajustes barra superior (topbar)"
2103
+
2104
+ #~ msgid "Use Topbar?"
2105
+ #~ msgstr "¿Usar barra superior? (topbar)"
2106
+
2107
+ #~ msgid "Choose to show or hide topbar"
2108
+ #~ msgstr "Elija mostrar u ocultar barra superior"
2109
+
2110
+ #~ msgid "Use Topbar Icon Menu?"
2111
+ #~ msgstr "¿Usar iconos en menú barra superior?"
2112
+
2113
+ #~ msgid "Choose to show or hide topbar icon Menu"
2114
+ #~ msgstr "Elija mostrar u ocultar icono men&uacute; barra superior"
2115
+
2116
+ #~ msgid "Topbar Icon Menu"
2117
+ #~ msgstr "Iconos Menú barra superior"
2118
+
2119
+ #~ msgid "Choose your icons for the topbar icon menu."
2120
+ #~ msgstr "Elija los iconos para el menú de la barra superior"
2121
+
2122
+ #~ msgid "Show Cart total in topbar?"
2123
+ #~ msgstr "Mostrar total cesta en barra superior"
2124
+
2125
+ #~ msgid "This only works if using woocommerce"
2126
+ #~ msgstr "Sólo funciona si se utiliza woocommerce"
2127
+
2128
+ #~ msgid "Display Search in Topbar?"
2129
+ #~ msgstr "¿Mostrar búsqueda en barra superior?"
2130
+
2131
+ #~ msgid "Choose to show or hide search in topbar"
2132
+ #~ msgstr "Elija mostrar u ocultar búsqueda en barra superior"
2133
+
2134
+ #~ msgid "Enable widget area in right of Topbar?"
2135
+ #~ msgstr "¿Habilitar &aacute;rea de widgets a la derecha barra superior?"
2136
+
2137
+ #~ msgid ""
2138
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2139
+ #~ "the widget area)"
2140
+ #~ msgstr ""
2141
+ #~ "Esto ocultar&aacute; la b&uacute;squeda (puede rehabilitarlo en la "
2142
+ #~ "&aacute;rea de widgets)"
2143
+
2144
+ #~ msgid "Topbar Layout Switch"
2145
+ #~ msgstr "Activar dise&ntilde;o Topbar"
2146
+
2147
+ #~ msgid "This moves the left items to the right and right items to the left."
2148
+ #~ msgstr "Esto mueve los elementos de la izquierda a la derecha y viceversa."
2149
+
2150
+ #~ msgid "Slider Settings"
2151
+ #~ msgstr "Ajustes de slider"
2152
+
2153
+ #~ msgid "Home Page Slider Options"
2154
+ #~ msgstr "Opciones Slider Portada (deslizador imagen-diapositivas)"
2155
+
2156
+ #~ msgid "Choose a Home Image Slider"
2157
+ #~ msgstr "Elegir un slider de im&aacute;genes en Portada"
2158
+
2159
+ #~ msgid "If you don't want an image slider on your home page choose none."
2160
+ #~ msgstr ""
2161
+ #~ "Si usted No quiere un slider en su página de inicio, seleccione ninguno."
2162
+
2163
+ #~ msgid "Use large images for best results."
2164
+ #~ msgstr "Usar im&aacute;genes grandes para obtener mejores resultados"
2165
+
2166
+ #~ msgid "Slider Max Height"
2167
+ #~ msgstr "Altura máxima del slider"
2168
+
2169
+ #~ msgid "Note: does not work if images are smaller than max."
2170
+ #~ msgstr "Nota: no funciona si las imágenes son más pequeñas que el máximo."
2171
+
2172
+ #~ msgid "Auto Play?"
2173
+ #~ msgstr "¿Reproducción automática?"
2174
+
2175
+ #~ msgid "This determines if a slider automatically scrolls"
2176
+ #~ msgstr "Esto determina si el slider se desplaza automáticamente"
2177
+
2178
+ #~ msgid "Slider Pause Time"
2179
+ #~ msgstr "Duración de la imagen en pausa"
2180
+
2181
+ #~ msgid "How long to pause on each slide, in milliseconds."
2182
+ #~ msgstr "Duración de pausa de la imágenes del slider,en milisegundos"
2183
+
2184
+ #~ msgid "Transition Type"
2185
+ #~ msgstr "Tipo de transición"
2186
+
2187
+ #~ msgid "Choose a transition type"
2188
+ #~ msgstr "Elegir tipo de transición"
2189
+
2190
+ #~ msgid "Slider Transition Time"
2191
+ #~ msgstr "Duración transición del slider"
2192
+
2193
+ #~ msgid "How long for slide transitions, in milliseconds."
2194
+ #~ msgstr "Duración transición del slider, en milisegundos"
2195
+
2196
+ #~ msgid "Show Captions?"
2197
+ #~ msgstr "¿Mostrar leyenda? "
2198
+
2199
+ #~ msgid "Choose to show or hide captions"
2200
+ #~ msgstr "Elegir si mostrar u ocultar leyendas"
2201
+
2202
+ #~ msgid "If your using a video on the home page place video embed code here."
2203
+ #~ msgstr ""
2204
+ #~ "Si utiliza un video en la página de inicio, inserte el código del video "
2205
+ #~ "aquí."
2206
+
2207
+ #~ msgid "Mobile Slider"
2208
+ #~ msgstr "Móvil - slider"
2209
+
2210
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
2211
+ #~ msgstr "Crear un slider más ligero para visitantes que usen móvil."
2212
+
2213
+ #~ msgid "Would you like to use this feature?"
2214
+ #~ msgstr "¿Quiere usar ésta característica?"
2215
+
2216
+ #~ msgid ""
2217
+ #~ "Choose if you would like to show a different slider on your home page for "
2218
+ #~ "your mobile visitors."
2219
+ #~ msgstr ""
2220
+ #~ "Elija si desea mostrar un slider diferente en página de inicio para los "
2221
+ #~ "visitantes de móviles. Si elige que no, aplicará por defecto el slider de "
2222
+ #~ "inicio."
2223
+
2224
+ #~ msgid "Choose a Slider for Mobile"
2225
+ #~ msgstr "Elija un slider para móviles"
2226
+
2227
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
2228
+ #~ msgstr ""
2229
+ #~ "Elija que slider le gustaría mostrar para los visitantes que usan móvil."
2230
+
2231
+ #~ msgid "Home Layout"
2232
+ #~ msgstr "Diseño Portada"
2233
+
2234
+ #~ msgid "Display a sidebar on the Home Page?"
2235
+ #~ msgstr "&iquest;Mostrar una barra lateral en la página de inicio?"
2236
+
2237
+ #~ msgid "This determines if there is a sidebar on the home page."
2238
+ #~ msgstr "Esto determina si hay una barra lateral en p&aacute;gina protada"
2239
+
2240
+ #~ msgid "Choose a Sidebar for your Home Page"
2241
+ #~ msgstr "Elija una barra lateral para p&aacute;gina de inicio"
2242
+
2243
+ #~ msgid "Homepage Layout Manager"
2244
+ #~ msgstr "Gestor Diseño Página Inicio"
2245
+
2246
+ #~ msgid "Organize how you want the layout to appear on the homepage"
2247
+ #~ msgstr "Organizar el diseño a mostrar en página de inicio"
2248
+
2249
+ #~ msgid "Latest Blog Posts"
2250
+ #~ msgstr "Últimas entradas Blog"
2251
+
2252
+ #~ msgid "Icon Menu"
2253
+ #~ msgstr "Men&uacute; icono"
2254
+
2255
+ #~ msgid "Page Content"
2256
+ #~ msgstr "Contenido P&aacute;gina"
2257
+
2258
+ #~ msgid "Home Blog Settings"
2259
+ #~ msgstr "Portada: Ajustes Blog"
2260
+
2261
+ #~ msgid "Home Blog Title"
2262
+ #~ msgstr "T&iacute;tulo blog en p&aacute;gina portada"
2263
+
2264
+ #~ msgid "ex: Latest from the blog"
2265
+ #~ msgstr "ej.: Lo último del blog "
2266
+
2267
+ #~ msgid "Choose How many posts on Homepage"
2268
+ #~ msgstr "Elija cuantas publicaciones de blog apareceran en página de inicio"
2269
+
2270
+ #~ msgid "Limit posts to a Category"
2271
+ #~ msgstr "Limitar publicaciones a una Categoría"
2272
+
2273
+ #~ msgid "Leave blank to select all"
2274
+ #~ msgstr "Dejar en blanco para seleccionar todo"
2275
+
2276
+ #~ msgid "Home Portfolio Carousel Settings"
2277
+ #~ msgstr "Portada: Ajustes Carrusel Portafolio "
2278
+
2279
+ #~ msgid "Home Portfolio Carousel title"
2280
+ #~ msgstr "Título Carrusel Portafolio en P&acute;gina Inicio"
2281
+
2282
+ #~ msgid "ex: Portfolio Carousel title"
2283
+ #~ msgstr "ej.: Título Carrousel Portafolio"
2284
+
2285
+ #~ msgid "Portfolio Carousel Category Type"
2286
+ #~ msgstr "Tipo Categoría Carrusel Portafolio"
2287
+
2288
+ #~ msgid "Leave blank to select all types"
2289
+ #~ msgstr "Dejar en blanco para seleccionar todos los tipos"
2290
+
2291
+ #~ msgid "Choose how many portfolio items are in carousel"
2292
+ #~ msgstr "Elija el número de elementos de portafolio para mostrar en carrusel"
2293
+
2294
+ #~ msgid "Portfolio Carousel Order by"
2295
+ #~ msgstr "Ordenar por:"
2296
+
2297
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
2298
+ #~ msgstr "Elige cómo ordenar los elementos de portafolio en carrusel"
2299
+
2300
+ #~ msgid "Display Portfolio Types under Title"
2301
+ #~ msgstr "Mostrar Categoria Portfolio debajo del título"
2302
+
2303
+ #~ msgid "Home Icon Menu"
2304
+ #~ msgstr "Portada: Men&uacute; Icono"
2305
+
2306
+ #~ msgid "Choose your icons for the icon menu."
2307
+ #~ msgstr "Elija los iconos que desea usar en men&uacute;"
2308
+
2309
+ #~ msgid "Choose how many columns in each row"
2310
+ #~ msgstr "Elija el número de columnas en cada fila"
2311
+
2312
+ #~ msgid "Page Content Options"
2313
+ #~ msgstr "Opciones contenido p&aacute;gina"
2314
+
2315
+ #~ msgid "Latest Post Display"
2316
+ #~ msgstr "Mostrar &uacute;ltimas entradas"
2317
+
2318
+ #~ msgid ""
2319
+ #~ "If Latest Post page is font page. Choose to show full post or post "
2320
+ #~ "excerpt."
2321
+ #~ msgstr ""
2322
+ #~ "Si &uacute;ltimas entradas estan en p&aacute;gina portada. Elija mostrar "
2323
+ #~ "completo o extracto."
2324
+
2325
+ #~ msgid "Shop Settings"
2326
+ #~ msgstr "Ajustes de la Tienda"
2327
+
2328
+ #~ msgid "Shop Archive Page Settings"
2329
+ #~ msgstr "Ajustes Tienda - Archivo / P&aacute;gina"
2330
+
2331
+ #~ msgid "Display the sidebar on shop archives?"
2332
+ #~ msgstr " ¿Mostrar barra lateral en archivos de tienda?"
2333
+
2334
+ #~ msgid ""
2335
+ #~ "This determines if there is a sidebar on the shop and category pages."
2336
+ #~ msgstr ""
2337
+ #~ "Esto determina si hay una barra lateral en las páginas de la tienda y "
2338
+ #~ "categoría"
2339
+
2340
+ #~ msgid "Choose a Sidebar for your shop page"
2341
+ #~ msgstr "Elija una de barra lateral para la página de la tienda"
2342
+
2343
+ #~ msgid "How many products per page"
2344
+ #~ msgstr "Número de Productos por página"
2345
+
2346
+ #~ msgid "Show Ratings in Shop and Category Pages"
2347
+ #~ msgstr "Mostrar calificaciones en páginas de categoría y tienda"
2348
+
2349
+ #~ msgid ""
2350
+ #~ "This determines if the rating is displayed in the product archive pages"
2351
+ #~ msgstr ""
2352
+ #~ "Esto determina si la clasificación se muestra en las páginas de archivo "
2353
+ #~ "de producto"
2354
+
2355
+ #~ msgid "Shop Product Title Settings"
2356
+ #~ msgstr "Ajustes t&iacute;tulo producto tienda"
2357
+
2358
+ #~ msgid "Shop & archive Product title Font"
2359
+ #~ msgstr "Fuente t&iacute;tulo producto"
2360
+
2361
+ #~ msgid ""
2362
+ #~ "Choose Size and Style for product titles on category and archive pages."
2363
+ #~ msgstr ""
2364
+ #~ "Elija un tama&ntilde;o y estilo para los t&iacute;tulos de productos en "
2365
+ #~ "las p&aacute;ginas decategor&iacute;a y archivo."
2366
+
2367
+ #~ msgid "Set Product Title to Uppercase?"
2368
+ #~ msgstr "&iquest; Ajustar título producto en mayúsculas?"
2369
+
2370
+ #~ msgid "This makes your product titles uppercase on Category pages"
2371
+ #~ msgstr ""
2372
+ #~ "Esto hace que el nombre de los productos est&eacute;n en mayúsculas en "
2373
+ #~ "las p&aacute;ginas Categor&iacute;a"
2374
+
2375
+ #~ msgid "Product title Min Height"
2376
+ #~ msgstr "Altura m&iacute;nima t&iacute;tulo producto"
2377
+
2378
+ #~ msgid ""
2379
+ #~ "If your titles are long increase this to help align your products height."
2380
+ #~ msgstr ""
2381
+ #~ "Ay&uacute;dese aqu&iacute; para alinear la altura del t&iacute;tulo de "
2382
+ #~ "los productos."
2383
+
2384
+ #~ msgid "Product Image Sizes"
2385
+ #~ msgstr "Tama&ntilde;o imagen producto"
2386
+
2387
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2388
+ #~ msgstr "Activar recortar imagen producto en p&aacute;ginas del catálogo"
2389
+
2390
+ #~ msgid ""
2391
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2392
+ #~ "recommended width: 270px for Catalog Images"
2393
+ #~ msgstr ""
2394
+ #~ "Si desactiva dimensiones de imagen, se fijan los ajuste de woocommerce "
2395
+ #~ "recomendados: 270 px para im&aacute;genes de cat&aacute;logo"
2396
+
2397
+ #~ msgid "Enable Product Image Crop on product Page"
2398
+ #~ msgstr "Activar recortar imagen producto en p&aacute;ginas del producto"
2399
+
2400
+ #~ msgid ""
2401
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2402
+ #~ "recommended width: 468px for Single Product Image"
2403
+ #~ msgstr ""
2404
+ #~ "Si desactiva dimensiones de imagen, se fijan los ajuste de woocommerce "
2405
+ #~ "recomendados: 468 px para imagen un solo producto"
2406
+
2407
+ #~ msgid "Product Page Settings"
2408
+ #~ msgstr "Ajustar página productos"
2409
+
2410
+ #~ msgid "Display product tabs?"
2411
+ #~ msgstr "¿Mostrar fichas información en detalle producto?"
2412
+
2413
+ #~ msgid "This determines if product tabs are displayed"
2414
+ #~ msgstr "Esto determina si se muestra una ficha del producto"
2415
+
2416
+ #~ msgid "Display related products?"
2417
+ #~ msgstr "¿Mostrar Productos relacionados?"
2418
+
2419
+ #~ msgid "This determines related products are displayed"
2420
+ #~ msgstr "Esto determina que se muestran productos relacionados"
2421
+
2422
+ #~ msgid "Basic Styling"
2423
+ #~ msgstr "Estilo Básico"
2424
+
2425
+ #~ msgid "Basic Stylng"
2426
+ #~ msgstr "Estilo Básico"
2427
+
2428
+ #~ msgid "Theme Skin Stylesheet"
2429
+ #~ msgstr "Estilo CSS del tema"
2430
+
2431
+ #~ msgid ""
2432
+ #~ "Note* changes made in options panel will override this stylesheet. "
2433
+ #~ "Example: Colors set in typography."
2434
+ #~ msgstr ""
2435
+ #~ " Nota * los cambios realizados en el panel de opciones anulará esta hoja "
2436
+ #~ "de estilo. Ejemplo: colores establecidos en la tipografía."
2437
+
2438
+ #~ msgid "Choose the default Highlight color for your site."
2439
+ #~ msgstr "Elija el color de \"resaltado\" predeterminado para su sitio."
2440
+
2441
+ #~ msgid "20% lighter than Primary Color"
2442
+ #~ msgstr "20% más ligero que el color primario"
2443
+
2444
+ #~ msgid "This is used for hover effects"
2445
+ #~ msgstr "Esto se utiliza para efectos \"sobre\" (hover)"
2446
+
2447
+ #~ msgid "Sitewide Gray Fonts"
2448
+ #~ msgstr "El color en todo el sitio para la tipografía es el Gris."
2449
+
2450
+ #~ msgid "Footer Font Color"
2451
+ #~ msgstr "Color fuentes pie de página"
2452
+
2453
+ #~ msgid "Advanced Styling"
2454
+ #~ msgstr "Estilo - Avanzado"
2455
+
2456
+ #~ msgid "Main Content Background"
2457
+ #~ msgstr "Fondo contenido principal"
2458
+
2459
+ #~ msgid "Upload background image or texture"
2460
+ #~ msgstr "Subir una imagen o textura de fondo"
2461
+
2462
+ #~ msgid "Image repeat options"
2463
+ #~ msgstr "Opciones repetición imagen"
2464
+
2465
+ #~ msgid "X image placement options"
2466
+ #~ msgstr "X opciones desplazamiento horizontal"
2467
+
2468
+ #~ msgid "Y image placement options"
2469
+ #~ msgstr "Y opciones desplazamiento vertical"
2470
+
2471
+ #~ msgid "Topbar Background"
2472
+ #~ msgstr "Fondo barra superior"
2473
+
2474
+ #~ msgid "Header Background"
2475
+ #~ msgstr "Fondo Cabecera"
2476
+
2477
+ #~ msgid "Secondary Menu Background"
2478
+ #~ msgstr "Fondo Menú secundario"
2479
+
2480
+ #~ msgid "Mobile Menu Background"
2481
+ #~ msgstr "Fondo men&uacute; m&oacute;vil"
2482
+
2483
+ #~ msgid "Footer Background"
2484
+ #~ msgstr "Fondo pie de página"
2485
+
2486
+ #~ msgid "Body Background"
2487
+ #~ msgstr "Fondo cuerpo - body"
2488
+
2489
+ #~ msgid "Fixed or Scroll"
2490
+ #~ msgstr "Fijo o deslizante"
2491
+
2492
+ #~ msgid "Typography"
2493
+ #~ msgstr "Tipografía"
2494
+
2495
+ #~ msgid "H1 Headings"
2496
+ #~ msgstr "Encabezado h1"
2497
+
2498
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
2499
+ #~ msgstr "Elija el estilo y tamaño para h1 (Estilo para título de página)"
2500
+
2501
+ #~ msgid "H2 Headings"
2502
+ #~ msgstr "Encabezado h2"
2503
+
2504
+ #~ msgid "Choose Size and Style for h2"
2505
+ #~ msgstr "Elija estilo y tamaño para h2"
2506
+
2507
+ #~ msgid "H3 Headings"
2508
+ #~ msgstr "Encabezado h3"
2509
+
2510
+ #~ msgid "Choose Size and Style for h3"
2511
+ #~ msgstr "Elija estilo y tamaño para h3"
2512
+
2513
+ #~ msgid "H4 Headings"
2514
+ #~ msgstr "Encabezado h4"
2515
+
2516
+ #~ msgid "Choose Size and Style for h4"
2517
+ #~ msgstr "Elija estilo y tamaño h4"
2518
+
2519
+ #~ msgid "H5 Headings"
2520
+ #~ msgstr "Encabezado h5"
2521
+
2522
+ #~ msgid "Choose Size and Style for h5"
2523
+ #~ msgstr "Elija estiloy tamaño para h5"
2524
+
2525
+ #~ msgid "Body Font Options"
2526
+ #~ msgstr "Opciones fuente del cuerpo | Body"
2527
+
2528
+ #~ msgid "Body Font"
2529
+ #~ msgstr "Fuente del cuerpo | Body"
2530
+
2531
+ #~ msgid "Choose Size and Style for paragraphs"
2532
+ #~ msgstr "Elija estilo y tamaño para los párrafos."
2533
+
2534
+ #~ msgid "Menu Settings"
2535
+ #~ msgstr "Ajustes men&uacute;"
2536
+
2537
+ #~ msgid "Primary Menu Options"
2538
+ #~ msgstr "Opciones men&iuacute; primario"
2539
+
2540
+ #~ msgid "Primary Menu Font"
2541
+ #~ msgstr "Fuente men&uacute; primario"
2542
+
2543
+ #~ msgid "Choose Size and Style for primary menu"
2544
+ #~ msgstr "Elija estilo y tamaño para menú primario"
2545
+
2546
+ #~ msgid "Secondary Menu Options"
2547
+ #~ msgstr "Opciones men&uacute; secundario"
2548
+
2549
+ #~ msgid "Secondary Menu Font"
2550
+ #~ msgstr "Fuente men&uacute; secundario"
2551
+
2552
+ #~ msgid "Choose Size and Style for secondary menu"
2553
+ #~ msgstr "Elija estilo y tamaño para menú secundario"
2554
+
2555
+ #~ msgid "Mobile Menu Options"
2556
+ #~ msgstr "Opciones men&uacute; m&oacute;viles"
2557
+
2558
+ #~ msgid "Mobile Menu Font"
2559
+ #~ msgstr "Fuente men&uacute; m&oacute;viles"
2560
+
2561
+ #~ msgid "Choose Size and Style for Mobile Menu"
2562
+ #~ msgstr "Elija un tama&ntilde;o y estilo para men&uacute; m&oacute;viles"
2563
+
2564
+ #~ msgid "Misc Settings"
2565
+ #~ msgstr "Ajustes Varios"
2566
+
2567
+ #~ msgid ""
2568
+ #~ "This sets the link in every single portfolio page. *note: You still have "
2569
+ #~ "to set the page template to portfolio."
2570
+ #~ msgstr ""
2571
+ #~ "Este valor define el enlace a la página elegida como principal del "
2572
+ #~ "portfolio para acceder desde cada página del portfolio individual. * "
2573
+ #~ "Nota: tiene que configurar la plantilla de página como Portfolio"
2574
+
2575
+ #~ msgid "Allow Comments on Portfolio Posts"
2576
+ #~ msgstr "Permitir comentarios en publicaciones de portafolio"
2577
+
2578
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
2579
+ #~ msgstr "Activar para permitir comentarios en publicaciones de portafolio"
2580
+
2581
+ #~ msgid "Hide Image Border"
2582
+ #~ msgstr "Ocultar borde imagen"
2583
+
2584
+ #~ msgid "Choose to show or hide image border"
2585
+ #~ msgstr "Elija mostrar u ocultar borde imagen"
2586
+
2587
+ #~ msgid "Blog Archive"
2588
+ #~ msgstr "Archivo Blog"
2589
+
2590
+ #~ msgid "Choose to show full post or post excerpt."
2591
+ #~ msgstr "Elija para mostrar completo o extracto de la publicaci&oacute;n"
2592
+
2593
+ #~ msgid "Show Comments Closed Text?"
2594
+ #~ msgstr "¿Mostrar texto \"Comentarios cerrados\"?"
2595
+
2596
+ #~ msgid "Choose to show or hide comments closed alert below posts."
2597
+ #~ msgstr ""
2598
+ #~ "Mostrar u ocultar aviso comentarios cerrados, debajo de las "
2599
+ #~ "publicaciones."
2600
+
2601
+ #~ msgid "Show Author Icon with posts?"
2602
+ #~ msgstr "&iquest;Mostrar icono autor en publicaciones?"
2603
+
2604
+ #~ msgid "Choose to show or hide author icon under post title."
2605
+ #~ msgstr ""
2606
+ #~ "Elija para mostrar u ocultar icono de autor debajo del t&iacute;tulo de "
2607
+ #~ "la publicaci&oacute;n"
2608
+
2609
+ #, fuzzy
2610
+ #~ msgid ""
2611
+ #~ "Choose to show or hide previous and next post links in the footer of a "
2612
+ #~ "single post."
2613
+ #~ msgstr ""
2614
+ #~ "Elija para mostrar u ocultar icono de autor debajo del t&iacute;tulo de "
2615
+ #~ "la publicaci&oacute;n"
2616
+
2617
+ #~ msgid "Custom Favicon"
2618
+ #~ msgstr "Personalizar Favicon"
2619
+
2620
+ #~ msgid ""
2621
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
2622
+ #~ "favicon."
2623
+ #~ msgstr ""
2624
+ #~ "Subir una imagen png/gif/ico de 16p x 16 px, para mostrar favicon del "
2625
+ #~ "sitio web"
2626
+
2627
+ #~ msgid "Sets the email for the contact page email form."
2628
+ #~ msgstr ""
2629
+ #~ "Establecer cuenta email para utilizar en formulario de la página de "
2630
+ #~ "contacto"
2631
+
2632
+ #~ msgid "Footer Copyright Text"
2633
+ #~ msgstr "Texto copyright pie de página"
2634
+
2635
+ #~ msgid ""
2636
+ #~ "Write your own copyright text here. You can use the following shortcodes "
2637
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
2638
+ #~ msgstr ""
2639
+ #~ "Escriba aquí su propio texto como autor que aparecerá al pie de página. "
2640
+ #~ "Puede utilizar los shortcodes: [copyright] [site-name] [the-year]"
2641
+
2642
+ #~ msgid "Blog Post Summary Default"
2643
+ #~ msgstr "Resumen de entradas de blog por defecto"
2644
+
2645
+ #, fuzzy
2646
+ #~ msgid "Blog Post Head Content Default"
2647
+ #~ msgstr "Entradas de blog predeterminada"
2648
+
2649
+ #~ msgid "Create Sidebars"
2650
+ #~ msgstr "Crear Barras Laterales"
2651
+
2652
+ #~ msgid "Create Custom Sidebars"
2653
+ #~ msgstr "Crear barras laterales personalizadas"
2654
+
2655
+ #~ msgid "Type new sidebar name into textbox"
2656
+ #~ msgstr "Escribar el nombre para la nueva barra lateral"
2657
+
2658
+ #~ msgid "Extra Sidebar"
2659
+ #~ msgstr "Barra lateral extra"
2660
+
2661
+ #~ msgid "Wordpress Galleries"
2662
+ #~ msgstr "Galer&iacute;as WordPress"
2663
+
2664
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
2665
+ #~ msgstr "Habilitar Galerías Virtue para anular las de Wordpress"
2666
+
2667
+ #~ msgid ""
2668
+ #~ "Disable this if using a plugin to customize galleries, for example "
2669
+ #~ "jetpack tiled gallery."
2670
+ #~ msgstr ""
2671
+ #~ "Desactivar esto si se utiliza un plugin para personalizar galer6iacute;"
2672
+ #~ "as, por ejemplo jetpack Galer&iacute;a."
2673
+
2674
+ #~ msgid "Advanced Settings"
2675
+ #~ msgstr "Ajustes Avanzados"
2676
+
2677
+ #~ msgid "Custom CSS Box"
2678
+ #~ msgstr "Cuadro CSS personalizado"
2679
+
2680
+ #~ msgid "Custom CSS"
2681
+ #~ msgstr "Personalizar CSS"
2682
+
2683
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
2684
+ #~ msgstr "Añadir algún CSS rápidamente a su tema agregándolo en este cuadro."
2685
+
2686
+ #~ msgid "Theme Update Import"
2687
+ #~ msgstr "Actualizar Importaci&oacute;n Tema"
2688
+
2689
+ #~ msgid ""
2690
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
2691
+ #~ "theme options."
2692
+ #~ msgstr ""
2693
+ #~ "Si la actualizaci&oacute;n es desde versi&oacute;n 1.5.6 o anterior "
2694
+ #~ "utilizar este comando para actualizar tus opciones de tema."
2695
+
2696
+ #~ msgid "Turn on and save to start script"
2697
+ #~ msgstr "Activar y guardar para iniciar la escritura"
2698
+
2699
+ #~ msgid "If using a child theme enter child theme folder"
2700
+ #~ msgstr "Si se utiliza un tema hijo ingrese carpeta del tema hijo"
2701
+
2702
+ #~ msgid "Theme Options"
2703
+ #~ msgstr "Opciones del tema"
2704
+
2705
+ #~ msgid ""
2706
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
2707
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
2708
+ #~ msgstr ""
2709
+ #~ "Gracias por utilizar el tema Virtue de <a href=\"http://kadencethemes.com/"
2710
+ #~ "\" target=\"_blank\">Kadence Themes</a>."
2711
+
2712
+ #, fuzzy
2713
+ #~ msgid "Icon"
2714
+ #~ msgstr "A&ntilde;adir icono"
2715
+
2716
+ #, fuzzy
2717
+ #~ msgid "New %s"
2718
+ #~ msgstr "Nuevo"
2719
+
2720
+ #~ msgid "Upload Icon"
2721
+ #~ msgstr "Subir icono"
2722
+
2723
+ #~ msgid "Select an Icon"
2724
+ #~ msgstr "Seleccionar un icono"
2725
+
2726
+ #~ msgid "URL"
2727
+ #~ msgstr "URL"
2728
+
2729
+ #~ msgid "Description"
2730
+ #~ msgstr "Descripci&oacute;n"
2731
+
2732
+ #~ msgid "Open Link in New Tab/Window"
2733
+ #~ msgstr "Abrir enlace en nueva pesta&ntilde;a/ventana"
2734
+
2735
+ #~ msgid "Add Icon"
2736
+ #~ msgstr "A&ntilde;adir icono"
2737
+
2738
+ #, fuzzy
2739
+ #~ msgid "Slide"
2740
+ #~ msgstr "Añadir Slide"
2741
+
2742
+ #~ msgid "Slide Link"
2743
+ #~ msgstr "Enlace Slider"
2744
+
2745
+ #~ msgid "Delete Slide"
2746
+ #~ msgstr "Borra slide"
2747
+
2748
+ #, fuzzy
2749
+ #~ msgid "Add %s"
2750
+ #~ msgstr "Añadir Imágenes"
2751
+
2752
+ #~ msgid "Back to"
2753
+ #~ msgstr "Volver a"
2754
+
2755
+ #~ msgid "Sale!"
2756
+ #~ msgstr "¡Oferta!"
2757
+
2758
+ #~ msgid "Shop"
2759
+ #~ msgstr "Tienda"
2760
+
2761
+ #~ msgid "Virtue: About with Image"
2762
+ #~ msgstr "Virtue: Acerca de...con Imagen"
2763
+
2764
+ #~ msgid "Options panel created using %1$s"
2765
+ #~ msgstr "Panel Opciones creado usando %1$s"
2766
+
2767
+ #~ msgid "Redux Framework"
2768
+ #~ msgstr "Redux Framework"
2769
+
2770
+ #~ msgid "Options"
2771
+ #~ msgstr "Opciones"
2772
+
2773
+ #~ msgid ""
2774
+ #~ "You have changes that are not saved. Would you like to save them now?"
2775
+ #~ msgstr ""
2776
+ #~ "Usted tiene cambios sin guardar. ¿Le gustar&iacute;a salvarlos ahora?"
2777
+
2778
+ #~ msgid "Are you sure? Resetting will lose all custom values."
2779
+ #~ msgstr ""
2780
+ #~ "¿Est&aacute; seguro? Restablecimiento perder&aacute; todos los valores "
2781
+ #~ "personalizados."
2782
+
2783
+ #~ msgid "Are you sure? Resetting will lose all custom values in this section."
2784
+ #~ msgstr ""
2785
+ #~ "¿Est&aacute; seguro? Restablecimiento perder&aacute; todos los valores "
2786
+ #~ "personalizados en esta secci&oacute;n."
2787
+
2788
+ #~ msgid ""
2789
+ #~ "Your current options will be replaced with the values of this preset. "
2790
+ #~ "Would you like to proceed?"
2791
+ #~ msgstr ""
2792
+ #~ "Las opciones actuales ser&aacute;n reemplazadas por los valores de esta "
2793
+ #~ "preselecci&oacute;n. ¿Quiere continuar?"
2794
+
2795
+ #, fuzzy
2796
+ #~ msgid "Please Wait"
2797
+ #~ msgstr "Por favor, inténtelo de nuevo"
2798
+
2799
+ #~ msgid ""
2800
+ #~ "Warning- This options panel will not work properly without javascript!"
2801
+ #~ msgstr ""
2802
+ #~ "Advertencia: este panel de opciones no funcionar&aacute; correctamente "
2803
+ #~ "sin JavaScript."
2804
+
2805
+ #~ msgid "Expand"
2806
+ #~ msgstr "Expandir"
2807
+
2808
+ #~ msgid "Save Changes"
2809
+ #~ msgstr "Guardar cambios"
2810
+
2811
+ #~ msgid "Reset Section"
2812
+ #~ msgstr "Resetear seleción"
2813
+
2814
+ #~ msgid "Reset All"
2815
+ #~ msgstr "Resetar todo"
2816
+
2817
+ #~ msgid "Working..."
2818
+ #~ msgstr "Trabajando..."
2819
+
2820
+ #~ msgid "Settings Imported!"
2821
+ #~ msgstr "Configuraci&oacute;n importada!"
2822
+
2823
+ #~ msgid "Settings Saved!"
2824
+ #~ msgstr "Configuraci&oacute;n guardada."
2825
+
2826
+ #~ msgid "Settings have changed, you should save them!"
2827
+ #~ msgstr "La configuraci&oacute;n ha cambiado, debe guardala"
2828
+
2829
+ #~ msgid "error(s) were found!"
2830
+ #~ msgstr "error(es) encontrado (s)"
2831
+
2832
+ #~ msgid "warning(s) were found!"
2833
+ #~ msgstr "se encontraro advertencia (s)"
2834
+
2835
+ #~ msgid "System Info"
2836
+ #~ msgstr "Informaci&oacute;n del sistema"
2837
+
2838
+ #~ msgid "%s review for %s"
2839
+ #~ msgid_plural "%s reviews for %s"
2840
+ #~ msgstr[0] "Opini&oacute;n para %s"
2841
+ #~ msgstr[1] "%s Opiniones para %s"
2842
+
2843
+ #~ msgid "Reviews"
2844
+ #~ msgstr "Opiniones"
2845
+
2846
+ #~ msgid "There are no reviews yet."
2847
+ #~ msgstr "A&uacute;n no hay opiniones"
2848
+
2849
+ #~ msgid "Add a review"
2850
+ #~ msgstr "Añadir una opini&oacute;n"
2851
+
2852
+ #~ msgid "Be the first to review"
2853
+ #~ msgstr "Sea el primero en opinar"
2854
+
2855
+ #~ msgid "Submit"
2856
+ #~ msgstr "Enviar "
2857
+
2858
+ #~ msgid "Your Rating"
2859
+ #~ msgstr "Su calificaci&oacute;n"
2860
+
2861
+ #~ msgid "Rate&hellip;"
2862
+ #~ msgstr "Cambio&hellip;"
2863
+
2864
+ #~ msgid "Perfect"
2865
+ #~ msgstr "Perfecto"
2866
+
2867
+ #~ msgid "Good"
2868
+ #~ msgstr "Bueno"
2869
+
2870
+ #~ msgid "Average"
2871
+ #~ msgstr "Medio"
2872
+
2873
+ #~ msgid "Not that bad"
2874
+ #~ msgstr "Regular"
2875
+
2876
+ #~ msgid "Very Poor"
2877
+ #~ msgstr "Malo"
2878
+
2879
+ #~ msgid "Your Review"
2880
+ #~ msgstr "Su opinión"
2881
+
2882
+ #~ msgid ""
2883
+ #~ "Only logged in customers who have purchased this product may leave a "
2884
+ #~ "review."
2885
+ #~ msgstr ""
2886
+ #~ "S&oacute;lo los clientes que han comprado este producto, pueden dejar una "
2887
+ #~ "rese&ntilde;a."
2888
+
2889
+ #~ msgid "Cart Totals"
2890
+ #~ msgstr "Total Carro"
2891
+
2892
+ #~ msgid "Cart Subtotal"
2893
+ #~ msgstr "Subtotal Carro"
2894
+
2895
+ #~ msgid "Order Total"
2896
+ #~ msgstr "Total Pedido"
2897
+
2898
+ #~ msgid " (taxes estimated for %s)"
2899
+ #~ msgstr " (impuestos para %s)"
2900
+
2901
+ #~ msgid ""
2902
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
2903
+ #~ "checkout based on your billing and shipping information."
2904
+ #~ msgstr ""
2905
+ #~ " Nota: Envío e impuestos son estimados %s y se actualizará durante la "
2906
+ #~ "comprobación de compra basada en la información de facturación y envío."
2907
+
2908
+ #~ msgid "Product"
2909
+ #~ msgstr "Producto"
2910
+
2911
+ #~ msgid "Price"
2912
+ #~ msgstr "Precio"
2913
+
2914
+ #~ msgid "Quantity"
2915
+ #~ msgstr "Cantidad"
2916
+
2917
+ #~ msgid "Total"
2918
+ #~ msgstr "Total"
2919
+
2920
+ #~ msgid "Remove this item"
2921
+ #~ msgstr "Quitar artículo"
2922
+
2923
+ #~ msgid "Available on backorder"
2924
+ #~ msgstr "Disponible bajo pedido"
2925
+
2926
+ #~ msgid "Coupon"
2927
+ #~ msgstr "Cupón"
2928
+
2929
+ #~ msgid "Coupon code"
2930
+ #~ msgstr "Código del Cupón"
2931
+
2932
+ #~ msgid "Apply Coupon"
2933
+ #~ msgstr "Utilizar Cupón"
2934
+
2935
+ #~ msgid "Update Cart"
2936
+ #~ msgstr "Actualizar carrito"
2937
+
2938
+ #~ msgid "Proceed to Checkout"
2939
+ #~ msgstr "Pasar por caja &rarr;"
2940
+
2941
+ #~ msgid "You may be interested in&hellip;"
2942
+ #~ msgstr "Puede que le interese in&hellip;"
2943
+
2944
+ #~ msgid "Calculate Shipping"
2945
+ #~ msgstr "Calcular Envío"
2946
+
2947
+ #~ msgid "Select a country&hellip;"
2948
+ #~ msgstr "Localidad &hellip;"
2949
+
2950
+ #~ msgid "State / county"
2951
+ #~ msgstr "Pais / Localidad"
2952
+
2953
+ #~ msgid "City"
2954
+ #~ msgstr "Ciudad"
2955
+
2956
+ #~ msgid "Postcode / Zip"
2957
+ #~ msgstr "Código Postal"
2958
+
2959
+ #~ msgid "Default sorting"
2960
+ #~ msgstr "Orden por defecto"
2961
+
2962
+ #~ msgid "Sort by popularity"
2963
+ #~ msgstr "Ordenar por popularidad"
2964
+
2965
+ #~ msgid "Sort by average rating"
2966
+ #~ msgstr "Ordenar por calificación"
2967
+
2968
+ #~ msgid "Sort by newness"
2969
+ #~ msgstr "Ordenar por novedad"
2970
+
2971
+ #~ msgid "Sort by price: low to high"
2972
+ #~ msgstr "Ordenar por precio: ascendente"
2973
+
2974
+ #~ msgid "Sort by price: high to low"
2975
+ #~ msgstr "Ordenar por precio: descendente"
2976
+
2977
+ #~ msgid ""
2978
+ #~ "To track your order please enter your Order ID in the box below and press "
2979
+ #~ "return. This was given to you on your receipt and in the confirmation "
2980
+ #~ "email you should have received."
2981
+ #~ msgstr ""
2982
+ #~ "Para rastrear su pedido, introduzca su ID de pedido en el cuadro de abajo "
2983
+ #~ "y presione retorno. Estos datos aparecen en el recibo y en el email de "
2984
+ #~ "confirmación que debe haber recibido."
2985
+
2986
+ #~ msgid "Order ID"
2987
+ #~ msgstr "ID Pedido"
2988
+
2989
+ #~ msgid "Found in your order confirmation email."
2990
+ #~ msgstr "Se encuentra en el correo electrónico de confirmación de pedido."
2991
+
2992
+ #~ msgid "Billing Email"
2993
+ #~ msgstr "Correo electrónico de facturación"
2994
+
2995
+ #~ msgid "Email you used during checkout."
2996
+ #~ msgstr "Correo electrónico que utiliza durante la comprobación."
2997
+
2998
+ #~ msgid "Track"
2999
+ #~ msgstr "Rastrear"
3000
+
3001
+ #~ msgid "Order Details"
3002
+ #~ msgstr "Detalles Pedido"
3003
+
3004
+ #~ msgid "Download file%s"
3005
+ #~ msgstr "Descargas archivo%s"
3006
+
3007
+ #~ msgid "Order Again"
3008
+ #~ msgstr "Pedir de nuevo"
3009
+
3010
+ #~ msgid "Customer details"
3011
+ #~ msgstr "Datos de cliente"
3012
+
3013
+ #~ msgid "Billing Address"
3014
+ #~ msgstr "Dirección de Facturación"
3015
+
3016
+ #~ msgid "N/A"
3017
+ #~ msgstr "N/A"
3018
+
3019
+ #~ msgid "Shipping Address"
3020
+ #~ msgstr "Dirección de Envío"
3021
+
3022
+ #~ msgid "Products tagged &ldquo;"
3023
+ #~ msgstr "Productos etiquetados como &ldquo;"
3024
+
3025
+ #~ msgid "Search results for &ldquo;"
3026
+ #~ msgstr "Resultados búsqueda de &ldquo;"
3027
+
3028
+ #~ msgid "Error 404"
3029
+ #~ msgstr "Error 404"
3030
+
3031
+ #~ msgid "Posts tagged &ldquo;"
3032
+ #~ msgstr "Publicaciones con etiqueta &ldquo;"
3033
+
3034
+ #~ msgid "Author:"
3035
+ #~ msgstr "Autor:"
3036
+
3037
+ #~ msgid "Page"
3038
+ #~ msgstr "Página"
3039
+
3040
+ #~ msgid "Username or email"
3041
+ #~ msgstr "Nombre usuario o dirección de correo"
3042
+
3043
+ #~ msgid "Password"
3044
+ #~ msgstr "Contraseña"
3045
+
3046
+ #~ msgid "Login"
3047
+ #~ msgstr "Iniciar sesión"
3048
+
3049
+ #~ msgid "Lost Password?"
3050
+ #~ msgstr "¿Contraseña perdida?"
3051
+
3052
+ #~ msgid "Rated %s out of 5"
3053
+ #~ msgstr "Calificación %s sobre 5"
3054
+
3055
+ #~ msgid "out of 5"
3056
+ #~ msgstr "sobre 5"
3057
+
3058
+ #~ msgid "%s customer review"
3059
+ #~ msgid_plural "%s customer reviews"
3060
+ #~ msgstr[0] "%s evaluac&oacute;n del cliente"
3061
+ #~ msgstr[1] "%s evaluaciones de clientes"
3062
+
3063
+ #~ msgid "Rated %d out of 5"
3064
+ #~ msgstr "Calificado %d sobre 5"
3065
+
3066
+ #~ msgid "Your comment is awaiting approval"
3067
+ #~ msgstr "Comentario en espera de aprobación"
3068
+
3069
+ #~ msgid "verified owner"
3070
+ #~ msgstr "Propietario verificado"
3071
+
3072
+ #~ msgid "Choose an option"
3073
+ #~ msgstr "Elegir una opción"
3074
+
3075
+ #~ msgid "Clear selection"
3076
+ #~ msgstr "Borrar seleción"
3077
+
3078
+ #~ msgid "This product is currently out of stock and unavailable."
3079
+ #~ msgstr "Producto actualmente agotado y no est&aacute; disponible"
3080
+
3081
+ #, fuzzy
3082
+ #~ msgid ""
3083
+ #~ "You have changes that are not saved. Would you like to save them now?"
3084
+ #~ msgstr ""
3085
+ #~ "Usted tiene cambios sin guardar. ¿Le gustar&iacute;a salvarlos ahora?"
3086
+
3087
+ #, fuzzy
3088
+ #~ msgid "Are you sure? Resetting will lose all custom values."
3089
+ #~ msgstr ""
3090
+ #~ "¿Est&aacute; seguro? Restablecimiento perder&aacute; todos los valores "
3091
+ #~ "personalizados."
3092
+
3093
+ #, fuzzy
3094
+ #~ msgid ""
3095
+ #~ "Your current options will be replaced with the values of this preset. "
3096
+ #~ "Would you like to proceed?"
3097
+ #~ msgstr ""
3098
+ #~ "Las opciones actuales ser&aacute;n reemplazadas por los valores de esta "
3099
+ #~ "preselecci&oacute;n. ¿Quiere continuar?"
3100
+
3101
+ #~ msgid ""
3102
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
3103
+ #~ "merchant has declined your transaction."
3104
+ #~ msgstr ""
3105
+ #~ "Desafortunadamente su orden no puede ser procesada el banco origen ha "
3106
+ #~ "denegado su transacción."
3107
+
3108
+ #~ msgid "Please attempt your purchase again or go to your account page."
3109
+ #~ msgstr "Por favor, intente otra vez su compra o vaya a página de su cuenta."
3110
+
3111
+ #~ msgid "Please attempt your purchase again."
3112
+ #~ msgstr "Por favor, intente su compra otra vez."
3113
+
3114
+ #~ msgid "Pay"
3115
+ #~ msgstr "Pago"
3116
+
3117
+ #~ msgid "Thank you. Your order has been received."
3118
+ #~ msgstr "Gracias. Su pedido ha sido recibido."
3119
+
3120
+ #~ msgid "Order:"
3121
+ #~ msgstr "Pedido:"
3122
+
3123
+ #~ msgid "Date:"
3124
+ #~ msgstr "Fecha:"
3125
+
3126
+ #~ msgid "Total:"
3127
+ #~ msgstr "Total:"
3128
+
3129
+ #~ msgid "Payment method:"
3130
+ #~ msgstr "Método de Pago:"
3131
+
3132
+ #~ msgid "No products found which match your selection."
3133
+ #~ msgstr "No se han encontrado productos que se ajusten a su selección."
3134
+
3135
+ #~ msgid "Showing the single result"
3136
+ #~ msgstr "Mostrar resultado individual"
3137
+
3138
+ #~ msgid "Showing all %d results"
3139
+ #~ msgstr "Mostrar todos los resultados de %d"
3140
+
3141
+ #~ msgid "Additional Information"
3142
+ #~ msgstr "Información Adicional"
3143
+
3144
+ #~ msgid "Product Description"
3145
+ #~ msgstr "Descripción artículo"
3146
+
3147
+ #~ msgid "Select an Option"
3148
+ #~ msgstr "Selecionar una Opci&oacute;n"
3149
+
3150
+ #~ msgid "Import / Export"
3151
+ #~ msgstr "Importar / Exportar"
3152
+
3153
+ #~ msgid "Options Object"
3154
+ #~ msgstr "Opciones Objeto"
3155
+
3156
+ #~ msgid "Import / Export Options"
3157
+ #~ msgstr "Importar / Exportar opciones"
3158
+
3159
+ #~ msgid "Import Options"
3160
+ #~ msgstr "Importar opciones"
3161
+
3162
+ #~ msgid "Import from file"
3163
+ #~ msgstr "Importar desde archivo"
3164
+
3165
+ #~ msgid "Import from URL"
3166
+ #~ msgstr "Importar desde URL"
3167
+
3168
+ #~ msgid ""
3169
+ #~ "Input your backup file below and hit Import to restore your sites options "
3170
+ #~ "from a backup."
3171
+ #~ msgstr ""
3172
+ #~ "Introduzca su archivo de copia de seguridad debajo y pulse Importar para "
3173
+ #~ "restaurar las opciones del sitio desde una copia de seguridad."
3174
+
3175
+ #~ msgid ""
3176
+ #~ "Input the URL to another sites options set and hit Import to load the "
3177
+ #~ "options from that site."
3178
+ #~ msgstr ""
3179
+ #~ "Introduzca la URL del conjunto de opciones de otro sitio y pulse Importar "
3180
+ #~ "para cargar las opciones de dicho sitio."
3181
+
3182
+ #~ msgid "Import"
3183
+ #~ msgstr "Importar"
3184
+
3185
+ #~ msgid ""
3186
+ #~ "WARNING! This will overwrite all existing option values, please proceed "
3187
+ #~ "with caution!"
3188
+ #~ msgstr ""
3189
+ #~ "¡ ADVERTENCIA! Esto sobrescribir%aacute; las opciones existentes valores, "
3190
+ #~ "proceda con precauci&oacute;n."
3191
+
3192
+ #~ msgid "Export Options"
3193
+ #~ msgstr "Exportar opciones"
3194
+
3195
+ #~ msgid ""
3196
+ #~ "Here you can copy/download your current option settings. Keep this safe "
3197
+ #~ "as you can use it as a backup should anything go wrong, or you can use it "
3198
+ #~ "to restore your settings on this site (or any other site)."
3199
+ #~ msgstr ""
3200
+ #~ "Aqu&iacute; puede copiar / descargar sus ajustes de opciones. Mantenga "
3201
+ #~ "esto seguro, ya que se puede utilizar como una copia de seguridad si algo "
3202
+ #~ "va mal, o puede utilizarlo para restaurar la configuraci&oacute;n en este "
3203
+ #~ "sitio (o cualquier otro sitio)."
3204
+
3205
+ #~ msgid "Copy"
3206
+ #~ msgstr "Copiar"
3207
+
3208
+ #~ msgid "Copy Link"
3209
+ #~ msgstr "Copiar enlace"
3210
+
3211
+ #~ msgid "Show Object in Javascript Console Object"
3212
+ #~ msgstr "Mostrar objeto en consola Javascript "
3213
+
3214
+ #~ msgid "Help improve Our Panel"
3215
+ #~ msgstr "Ayude a mejorar Nuestro Panel"
3216
+
3217
+ #~ msgid ""
3218
+ #~ "Please helps us improve our panel by allowing us to gather anonymous "
3219
+ #~ "usage stats so we know which configurations, plugins and themes to test "
3220
+ #~ "with."
3221
+ #~ msgstr ""
3222
+ #~ "Por favor, nos ay&uacute;denos a mejorar nuestro panel al permitirnos "
3223
+ #~ "recopilar estad&iacute;sticas de uso de forma an&oacute;nima, as&iacute; "
3224
+ #~ "sabremos que configuraciones, plugins y temas a probar."
3225
+
3226
+ #~ msgid "Allow tracking"
3227
+ #~ msgstr "Permitir el seguimiento"
3228
+
3229
+ #~ msgid "Do not allow tracking"
3230
+ #~ msgstr "No permitir seguimiento"
3231
+
3232
+ #~ msgid "Transparent"
3233
+ #~ msgstr "Transparente"
3234
+
3235
+ #~ msgid "Background Repeat"
3236
+ #~ msgstr "Repetir fondo"
3237
+
3238
+ #~ msgid "Background Clip"
3239
+ #~ msgstr "Clip Fondo"
3240
+
3241
+ #~ msgid "Background Origin"
3242
+ #~ msgstr "Origen del fondo"
3243
+
3244
+ #~ msgid "Background Size"
3245
+ #~ msgstr "Tama&ntilde;o fondo"
3246
+
3247
+ #~ msgid "Background Attachment"
3248
+ #~ msgstr "Fijaci&oacute;n Fondo"
3249
+
3250
+ #~ msgid "Background Position"
3251
+ #~ msgstr "Posici&oacute:n fondo"
3252
+
3253
+ #~ msgid "No media selected"
3254
+ #~ msgstr "No hay medios seleccionados"
3255
+
3256
+ #~ msgid "Top"
3257
+ #~ msgstr "Superior"
3258
+
3259
+ #~ msgid "Bottom"
3260
+ #~ msgstr "Inferior"
3261
+
3262
+ #~ msgid "To "
3263
+ #~ msgstr "A"
3264
+
3265
+ #~ msgid "Units"
3266
+ #~ msgstr "Unidades"
3267
+
3268
+ #~ msgid "New"
3269
+ #~ msgstr "Nuevo"
3270
+
3271
+ #~ msgid "Delete"
3272
+ #~ msgstr "Borrar"
3273
+
3274
+ #~ msgid "Add"
3275
+ #~ msgstr "A&ntilde;adir"
3276
+
3277
+ #~ msgid "Regular"
3278
+ #~ msgstr "Regular"
3279
+
3280
+ #~ msgid "Hover"
3281
+ #~ msgstr "Sobre (hover)"
3282
+
3283
+ #~ msgid "Visited"
3284
+ #~ msgstr "Visitado"
3285
+
3286
+ #~ msgid "Active"
3287
+ #~ msgstr "Activo"
3288
+
3289
+ #~ msgid "Add More"
3290
+ #~ msgstr "A&ntilde;adir m&aacute;s"
3291
+
3292
+ #~ msgid "Username"
3293
+ #~ msgstr "Nombre Usuario"
3294
+
3295
+ #~ msgid "Select an item"
3296
+ #~ msgstr "Seleccionar un elemento"
3297
+
3298
+ #~ msgid "No items of this type were found."
3299
+ #~ msgstr "No se encontraron elementos de este tipo."
3300
+
3301
+ #~ msgid "Font family"
3302
+ #~ msgstr "Familia fuente"
3303
+
3304
+ #~ msgid "Standard Fonts"
3305
+ #~ msgstr "Fuente Est&aacute;ndar"
3306
+
3307
+ #~ msgid "Font style"
3308
+ #~ msgstr "Estilo fuente"
3309
+
3310
+ #~ msgid "Font subsets"
3311
+ #~ msgstr "Subconjuntos de fuentes"
3312
+
3313
+ #~ msgid "Subsets"
3314
+ #~ msgstr "Subgrupo"
3315
+
3316
+ #~ msgid "Font script"
3317
+ #~ msgstr "Script Fuentes"
3318
+
3319
+ #~ msgid "Size"
3320
+ #~ msgstr "Tama&ntilde;o"
3321
+
3322
+ #~ msgid "Word Spacing"
3323
+ #~ msgstr "Espacio entre palabras"
3324
+
3325
+ #~ msgid "Letter Spacing"
3326
+ #~ msgstr "Espacio entre l&iacute;neas"
3327
+
3328
+ #~ msgid "Backup Font Family"
3329
+ #~ msgstr "Copia seguridad familia fuente"
3330
+
3331
+ #~ msgid "Font color"
3332
+ #~ msgstr "Color fuente"
3333
+
3334
+ #~ msgid "Google Webfonts"
3335
+ #~ msgstr "Google Webfonts"
3336
+
3337
+ #~ msgid "This field must be a valid color value."
3338
+ #~ msgstr "Este campo debe tener un valor de color v&aacute;lido."
3339
+
3340
+ #~ msgid ""
3341
+ #~ "You must provide a comma separated list of numerical values for this "
3342
+ #~ "option."
3343
+ #~ msgstr ""
3344
+ #~ "Debe proporcionar una lista separada por comas de los valores num&eacute;"
3345
+ #~ "ricos para esta opci&oacute;n."
3346
+
3347
+ #~ msgid "You must provide a valid email for this option."
3348
+ #~ msgstr ""
3349
+ #~ "Usted debe proporcionar una direcci&oacute;n de correo electrónico válida "
3350
+ #~ "para esta opci&oacute;n"
3351
+
3352
+ #~ msgid ""
3353
+ #~ "You must not enter any HTML in this field, all HTML tags have been "
3354
+ #~ "removed."
3355
+ #~ msgstr ""
3356
+ #~ "No debe introducir HTML en este campo, se han eliminado todas las "
3357
+ #~ "etiquetas HTML"
3358
+
3359
+ #~ msgid ""
3360
+ #~ "You must not enter any special characters in this field, all special "
3361
+ #~ "characters have been removed."
3362
+ #~ msgstr ""
3363
+ #~ "No debe introducir caracteres especiales en este campo, se han quitado "
3364
+ #~ "todos los caracteres especiales."
3365
+
3366
+ #~ msgid "You must provide a numerical value for this option."
3367
+ #~ msgstr "Debe proporcionar un valor num&eacute;rico de esta opci&oacute;n."
3368
+
3369
+ #~ msgid "You must provide a valid URL for this option."
3370
+ #~ msgstr "Debe proporcionar una dirección URL válida para esta opci&oacute;n"
3371
+
3372
+ #~ msgid "SKU:"
3373
+ #~ msgstr "Ref.:"
3374
+
3375
+ #~ msgid "Category:"
3376
+ #~ msgid_plural "Categories:"
3377
+ #~ msgstr[0] "Categor&iacute;a"
3378
+ #~ msgstr[1] "Categor&iacute:as"
3379
+
3380
+ #~ msgid "Tag:"
3381
+ #~ msgid_plural "Tags:"
3382
+ #~ msgstr[0] "Etiqueta:"
3383
+ #~ msgstr[1] "Etiquetas:"
3384
+
3385
+ #~ msgid "<span class=\"meta-nav\">&larr;</span> Previous"
3386
+ #~ msgstr "<span class=\"meta-nav\">&larr;</span> Anteriores"
3387
+
3388
+ #~ msgid "Next <span class=\"meta-nav\">&rarr;</span>"
3389
+ #~ msgstr "Siguientes <span class=\"meta-nav\">&rarr;</span>"
3390
+
3391
+ #~ msgid "Add Your Review"
3392
+ #~ msgstr "Añada su opinion"
3393
+
3394
+ #~ msgid ""
3395
+ #~ "There are no reviews yet, would you like to <a data-toggle=\"collapse\" "
3396
+ #~ "data-parent=\"#review_form\" href=\"#review_form\" class=\"inline "
3397
+ #~ "show_review_form\">submit yours</a>?"
3398
+ #~ msgstr ""
3399
+ #~ "No hay comentarios aún, ¿le gustaría <a data-toggle=\"collapse\" data-"
3400
+ #~ "parent=\"#review_form\" href=\"#review_form\" class=\"inline "
3401
+ #~ "show_review_form\">enviar el suyo</a>?"
3402
+
3403
+ #~ msgid "Cart Discount"
3404
+ #~ msgstr "Descuento "
3405
+
3406
+ #~ msgid "[Remove]"
3407
+ #~ msgstr "[Eliminar]"
3408
+
3409
+ #~ msgid "Shipping"
3410
+ #~ msgstr "Envío"
3411
+
3412
+ #~ msgid "Order Discount"
3413
+ #~ msgstr "Descuento Pedido"
3414
+
3415
+ #~ msgid "(Includes %s)"
3416
+ #~ msgstr "(Incluye %s)"
3417
+
3418
+ #~ msgid ""
3419
+ #~ "No shipping methods were found; please recalculate your shipping and "
3420
+ #~ "enter your state/county and zip/postcode to ensure there are no other "
3421
+ #~ "available methods for your location."
3422
+ #~ msgstr ""
3423
+ #~ "No se encontraron métodos de envío; por favor para recalcular su envío "
3424
+ #~ "introduzca su pais/localidad y código postal para asegurar que no existen "
3425
+ #~ "otros métodos envío para su ubicación."
3426
+
3427
+ #~ msgid ""
3428
+ #~ "Sorry, it seems that there are no available shipping methods for your "
3429
+ #~ "location (%s)."
3430
+ #~ msgstr ""
3431
+ #~ "Lo sentimos, parece que hay no hay métodos de envío disponibles para su "
3432
+ #~ "ubicación (%s)."
3433
+
3434
+ #~ msgid ""
3435
+ #~ "If you require assistance or wish to make alternate arrangements please "
3436
+ #~ "contact us."
3437
+ #~ msgstr ""
3438
+ #~ "Si necesita ayuda o desea otro tipo envío, póngase en contacto con "
3439
+ #~ "nosotros."
3440
+
3441
+ #~ msgid "You must be logged in to checkout."
3442
+ #~ msgstr "Debe estar conectado a Caja"
3443
+
3444
+ #~ msgid "Your order"
3445
+ #~ msgstr "Su Pedido"
3446
+
3447
+ #~ msgid "Have a coupon?"
3448
+ #~ msgstr "¿Tiene un cupón?"
3449
+
3450
+ #~ msgid "Click here to enter your code"
3451
+ #~ msgstr "Pulse aquí para introducir su código"
3452
+
3453
+ #~ msgid "Read More"
3454
+ #~ msgstr "Leer más"
3455
+
3456
+ #~ msgid "View options"
3457
+ #~ msgstr "Ver Opciones"
3458
+
3459
+ #~ msgid "Add to cart"
3460
+ #~ msgstr "Añadir a carrito"
3461
+
3462
+ #~ msgid "New password"
3463
+ #~ msgstr "Nueva contraseña"
3464
+
3465
+ #~ msgid "Re-enter new password"
3466
+ #~ msgstr "Confirmar nueva contraseña"
3467
+
3468
+ #~ msgid "Save Address"
3469
+ #~ msgstr "Guardar dirección"
3470
+
3471
+ #~ msgid "Register"
3472
+ #~ msgstr "Registro"
3473
+
3474
+ #~ msgid "Re-enter password"
3475
+ #~ msgstr "Confirmar contraseña"
3476
+
3477
+ #~ msgid ""
3478
+ #~ "Lost your password? Please enter your username or email address. You will "
3479
+ #~ "receive a link to create a new password via email."
3480
+ #~ msgstr ""
3481
+ #~ "¿Perdió su contraseña? Introduzca su nombre de usuario o dirección de "
3482
+ #~ "email. Recibirá por correo electrónico un enlace para crear una nueva "
3483
+ #~ "contraseña."
3484
+
3485
+ #~ msgid "Enter a new password below."
3486
+ #~ msgstr "Introduzca abajo una nueva contraseña. "
3487
+
3488
+ #~ msgid "Reset Password"
3489
+ #~ msgstr "Restablecer contraseña"
3490
+
3491
+ #~ msgid ""
3492
+ #~ "Hello, <strong>%s</strong>. From your account dashboard you can view your "
3493
+ #~ "recent orders, manage your shipping and billing addresses and <a href=\"%s"
3494
+ #~ "\">change your password</a>."
3495
+ #~ msgstr ""
3496
+ #~ "Hola, <strong>%s</strong>. Desde el panel de control de su cuenta, puede "
3497
+ #~ "ver sus pedidos recientes, gestionar su envío, las direcciones de "
3498
+ #~ "facturación y <a href=\"%s\">cambiar su contraseña</a>."
3499
+
3500
+ #~ msgid "My Addresses"
3501
+ #~ msgstr "Mis Direcciones"
3502
+
3503
+ #~ msgid "My Address"
3504
+ #~ msgstr "Mi Dirección"
3505
+
3506
+ #~ msgid ""
3507
+ #~ "The following addresses will be used on the checkout page by default."
3508
+ #~ msgstr ""
3509
+ #~ "Por defecto, se utilizarán las siguientes direcciones en la página de "
3510
+ #~ "pago."
3511
+
3512
+ #~ msgid "Edit"
3513
+ #~ msgstr "Editar"
3514
+
3515
+ #~ msgid "You have not set up this type of address yet."
3516
+ #~ msgstr "Aún no ha configurado esta dirección"
3517
+
3518
+ #~ msgid "Available downloads"
3519
+ #~ msgstr "Descargas disponibles"
3520
+
3521
+ #~ msgid "Recent Orders"
3522
+ #~ msgstr "Pedidos recientes"
3523
+
3524
+ #~ msgid "Order"
3525
+ #~ msgstr "Pedido"
3526
+
3527
+ #~ msgid "Cancel"
3528
+ #~ msgstr "Cancelar"
3529
+
3530
+ #~ msgid "View"
3531
+ #~ msgstr "Ver"
3532
+
3533
+ #~ msgid "Order %s which was made %s has the status &ldquo;%s&rdquo;"
3534
+ #~ msgstr "Pedido %s realizado el %s su estado es &ldquo;%s&rdquo;"
3535
+
3536
+ #~ msgid "ago"
3537
+ #~ msgstr "hace"
3538
+
3539
+ #~ msgid "and was completed"
3540
+ #~ msgstr "y se completó"
3541
+
3542
+ #~ msgid " ago"
3543
+ #~ msgstr "hace"
3544
+
3545
+ #~ msgid "Order Updates"
3546
+ #~ msgstr "Actualizaciones Pedido"
3547
+
3548
+ #~ msgid "Weight"
3549
+ #~ msgstr "Peso"
3550
+
3551
+ #~ msgid "Dimensions"
3552
+ #~ msgstr "Dimensiones"
3553
+
3554
+ #~ msgid "Related Products"
3555
+ #~ msgstr "Articulos relacionados"
3556
+
3557
+ #~ msgid "You may also like&hellip;"
3558
+ #~ msgstr "Quizás también le guste&hellip;"
3559
+
3560
+ #~ msgid "Last Backup : "
3561
+ #~ msgstr "Última copia de seguridad: &nbsp;"
3562
+
3563
+ #~ msgid "Options Updated"
3564
+ #~ msgstr "Opciones de actualización"
3565
+
3566
+ #~ msgid "Error!"
3567
+ #~ msgstr "¡Error!"
3568
+
3569
+ #~ msgid "Previously Uploaded"
3570
+ #~ msgstr "Subida anteriormente"
3571
+
3572
+ #~ msgid "Select a page:"
3573
+ #~ msgstr "Seleccione una p&aacute;gina:"
3574
+
3575
+ #~ msgid "This font will apply to your sitename if you don't upload a logo."
3576
+ #~ msgstr ""
3577
+ #~ "Tipo de letra que se usar&aacute; si no sube ninguna imagen de logotipo"
3578
+
3579
+ #~ msgid "Sitename Style"
3580
+ #~ msgstr "Estilo para nombre del sitio"
3581
+
3582
+ #~ msgid "This font will apply to your site tagline"
3583
+ #~ msgstr "Este tipo de letra se aplicar&aacute; en el lema"
3584
+
3585
+ #~ msgid "Site Tagline Style"
3586
+ #~ msgstr "Estilo para lema del sitio"
3587
+
3588
+ #~ msgid "Mobile Slider Images"
3589
+ #~ msgstr "Imágenes para slider para móvil"
3590
+
3591
+ #~ msgid "Mobile Video Embed Code"
3592
+ #~ msgstr "Incrustrar código de video para móviles"
3593
+
3594
+ #~ msgid "Home Porfolio Settings"
3595
+ #~ msgstr "Ajustes de Portfolio en Página Inicio"
3596
+
3597
+ #~ msgid "Featured Content Background"
3598
+ #~ msgstr "Fondo contenido destacado"
3599
+
3600
+ #~ msgid "Feature Background"
3601
+ #~ msgstr "Características fondo"
3602
+
3603
+ #~ msgid "This font will apply to all header tags"
3604
+ #~ msgstr "Esta fuente se aplicará a todas las etiquetas de cabecera"
3605
+
3606
+ #~ msgid "This font will apply to all body text"
3607
+ #~ msgstr "Fuente que se aplicará a todo el texto de body"
3608
+
3609
+ #~ msgid "This font will apply to all page menus"
3610
+ #~ msgstr "Fuente que se aplicará a todos los menús de página"
3611
+
3612
+ #~ msgid "Backup Options"
3613
+ #~ msgstr "Opciones Backup"
3614
+
3615
+ #~ msgid "Backup and Restore Options"
3616
+ #~ msgstr "Opciones Copia Seguridad y Restauración"
3617
+
3618
+ #~ msgid ""
3619
+ #~ "You can use the two buttons below to backup your current options, and "
3620
+ #~ "then restore it back at a later time. This is useful if you want to "
3621
+ #~ "experiment on the options but would like to keep the old settings in case "
3622
+ #~ "you need it back."
3623
+ #~ msgstr ""
3624
+ #~ "Puede realizar una copia de seguridad y luego restaurarla en un momento "
3625
+ #~ "posterior utilizando los botones de abajo. Esto es útil si quiere "
3626
+ #~ "experimentar con las opciones pero desea mantener la configuración "
3627
+ #~ "antigua en caso de que necesite volver."
3628
+
3629
+ #~ msgid "menu"
3630
+ #~ msgstr "menú"
3631
+
3632
+ #~ msgid "Your cart is currently empty."
3633
+ #~ msgstr "Su carrito está vacío."
3634
+
3635
+ #~ msgid "&larr; Return To Shop"
3636
+ #~ msgstr "&larr; Volver a laTienda"
3637
+
3638
+ #~ msgid "No products in the cart."
3639
+ #~ msgstr "No hay articulos en el carrito."
3640
+
3641
+ #~ msgid "Subtotal"
3642
+ #~ msgstr "Subtotal"
3643
+
3644
+ #~ msgid "View Cart &rarr;"
3645
+ #~ msgstr "Ver Carrito &rarr;"
3646
+
3647
+ #~ msgid "Checkout &rarr;"
3648
+ #~ msgstr "Caja &rarr;"
3649
+
3650
+ #~ msgid "Free"
3651
+ #~ msgstr "Gratis"
3652
+
3653
+ #~ msgid "Please fill in your details to see available shipping methods."
3654
+ #~ msgstr ""
3655
+ #~ "Por favor, rellene sus datos para ver los métodos de envío disponibles."
3656
+
3657
+ #~ msgid ""
3658
+ #~ "There are some issues with the items in your cart (shown above). Please "
3659
+ #~ "go back to the cart page and resolve these issues before checking out."
3660
+ #~ msgstr ""
3661
+ #~ "Hay algunos problemas con los artículos en su carrito (mostrado arriba). "
3662
+ #~ "Por favor, vuelva a la página del carrito y resuelva estos problemas "
3663
+ #~ "antes de salir."
3664
+
3665
+ #~ msgid "&larr; Return To Cart"
3666
+ #~ msgstr "&larr; Volver a Carro"
3667
+
3668
+ #~ msgid "Billing &amp; Shipping"
3669
+ #~ msgstr "Factura &amp; Envío"
3670
+
3671
+ #~ msgid "Create an account?"
3672
+ #~ msgstr "¿Crear una cuenta?"
3673
+
3674
+ #~ msgid ""
3675
+ #~ "Create an account by entering the information below. If you are a "
3676
+ #~ "returning customer please login at the top of the page."
3677
+ #~ msgstr ""
3678
+ #~ "Cree una cuenta introduciendo la siguiente información. Si usted ya es "
3679
+ #~ "cliente, por favor ingrese en la parte superior de la página."
3680
+
3681
+ #~ msgid "Returning customer?"
3682
+ #~ msgstr "¿Cliente Registrado?"
3683
+
3684
+ #~ msgid "Click here to login"
3685
+ #~ msgstr "Iniciar Sesión"
3686
+
3687
+ #~ msgid ""
3688
+ #~ "If you have shopped with us before, please enter your details in the "
3689
+ #~ "boxes below. If you are a new customer please proceed to the Billing "
3690
+ #~ "&amp; Shipping section."
3691
+ #~ msgstr ""
3692
+ #~ "Si usted ha comprado con nosotros, por favor, introduzca sus datos "
3693
+ #~ "abajo. Si usted es un cliente nuevo por favor proceda a la facturación "
3694
+
3695
+ #~ msgid "Qty"
3696
+ #~ msgstr "Cantidad"
3697
+
3698
+ #~ msgid "Totals"
3699
+ #~ msgstr "Totales"
3700
+
3701
+ #~ msgid ""
3702
+ #~ "Sorry, it seems that there are no available payment methods for your "
3703
+ #~ "location. Please contact us if you require assistance or wish to make "
3704
+ #~ "alternate arrangements."
3705
+ #~ msgstr ""
3706
+ #~ "Lo sentimos, parece que no hay ningún método de pago disponibles para su "
3707
+ #~ "ubicación. Póngase en contacto con nosotros si necesita ayuda o desea un "
3708
+ #~ "método de pago alternativo."
3709
+
3710
+ #~ msgid "Pay for order"
3711
+ #~ msgstr "Pagar por pedido"
3712
+
3713
+ #~ msgid "Ship to billing address?"
3714
+ #~ msgstr "¿Enviar a la dirección de facturación?"
3715
+
3716
+ #~ msgid "Please fill in your details above to see available payment methods."
3717
+ #~ msgstr ""
3718
+ #~ "Por favor, rellene sus datos de arriba para ver métodos de pago "
3719
+ #~ "disponibles."
3720
+
3721
+ #~ msgid ""
3722
+ #~ "Sorry, it seems that there are no available payment methods for your "
3723
+ #~ "state. Please contact us if you require assistance or wish to make "
3724
+ #~ "alternate arrangements."
3725
+ #~ msgstr ""
3726
+ #~ " Lo sentimos, parece que no hay ningún método de pago disponibles para "
3727
+ #~ "su ubicación. Póngase en contacto con nosotros si necesita ayuda o desea "
3728
+ #~ "hacer un pago alternativo."
3729
+
3730
+ #~ msgid ""
3731
+ #~ "Since your browser does not support JavaScript, or it is disabled, please "
3732
+ #~ "ensure you click the <em>Update Totals</em> button before placing your "
3733
+ #~ "order. You may be charged more than the amount stated above if you fail "
3734
+ #~ "to do so."
3735
+ #~ msgstr ""
3736
+ #~ "Su navegador no soporta JavaScript o está desactivado, por favor "
3737
+ #~ "asegúrese de pulsar el botón de Actualización Totales antes de realizar "
3738
+ #~ "su pedido. Se puede cobrar más que el monto indicado arriba, si no lo "
3739
+ #~ "hace así."
3740
+
3741
+ #~ msgid "Update totals"
3742
+ #~ msgstr "Actualizar totales"
3743
+
3744
+ #~ msgid "I have read and accept the"
3745
+ #~ msgstr "He leído y acepto la"
3746
+
3747
+ #~ msgid "terms &amp; conditions"
3748
+ #~ msgstr "Términos &amp; Condiciones"
3749
+
3750
+ #~ msgid "You have received an order from %s. Their order is as follows:"
3751
+ #~ msgstr " Usted ha recibido una orden de %s. Su pedido es como sigue:"
3752
+
3753
+ #~ msgid "Order: %s"
3754
+ #~ msgstr "Pedido: %s"
3755
+
3756
+ #~ msgid "Tel:"
3757
+ #~ msgstr "Tel:"
3758
+
3759
+ #~ msgid ""
3760
+ #~ "Hi there. Your recent order on %s has been completed. Your order details "
3761
+ #~ "are shown below for your reference:"
3762
+ #~ msgstr ""
3763
+ #~ "Hola. Su pedido de %s se ha completado. A continuación se muestran los "
3764
+ #~ "detalles de la orden para su referencia:"
3765
+
3766
+ #~ msgid ""
3767
+ #~ "An order has been created for you on %s. To pay for this order please use "
3768
+ #~ "the following link: %s"
3769
+ #~ msgstr ""
3770
+ #~ "Ha realizado un pedido en %s. Para pagar por esta orden, por favor "
3771
+ #~ "utilice el siguiente enlace: %s"
3772
+
3773
+ #~ msgid "pay"
3774
+ #~ msgstr "pago"
3775
+
3776
+ #~ msgid ""
3777
+ #~ "Thanks for creating an account on %s. Your username is <strong>%s</"
3778
+ #~ "strong>."
3779
+ #~ msgstr "Gracias por crear una cuenta en %s. Su nombre de usuario es %s."
3780
+
3781
+ #~ msgid "You can access your account area here: %s."
3782
+ #~ msgstr "Acceda a su cuenta aquí: %s."
3783
+
3784
+ #~ msgid "Hello, a note has just been added to your order:"
3785
+ #~ msgstr "Hola, se ha añadido una nota a su pedido:"
3786
+
3787
+ #~ msgid "For your reference, your order details are shown below."
3788
+ #~ msgstr " Para su control, abajo se muestran los detalles del pedido."
3789
+
3790
+ #~ msgid ""
3791
+ #~ "Your order has been received and is now being processed. Your order "
3792
+ #~ "details are shown below for your reference:"
3793
+ #~ msgstr ""
3794
+ #~ "Su solicitud ha sido recibida y ahora está siendo procesada. A "
3795
+ #~ "continuación se muestran los detalles del pedido para su referencia:"
3796
+
3797
+ #~ msgid ""
3798
+ #~ "Someone requested that the password be reset for the following account:"
3799
+ #~ msgstr ""
3800
+ #~ "Alguien pidió que restablecer la contraseña para la cuenta siguiente:"
3801
+
3802
+ #~ msgid "Username: %s"
3803
+ #~ msgstr "Usuario: %s"
3804
+
3805
+ #~ msgid ""
3806
+ #~ "If this was a mistake, just ignore this email and nothing will happen."
3807
+ #~ msgstr "Si se trataba de un error, simplemente ignorar este mensaje."
3808
+
3809
+ #~ msgid "To reset your password, visit the following address:"
3810
+ #~ msgstr "Para restablecer lacontraseña, visite la siguente dirección:"
3811
+
3812
+ #~ msgid "Click here to reset your password"
3813
+ #~ msgstr "Pulse aquí para restablece su contraseña"
3814
+
3815
+ #~ msgid "Billing address"
3816
+ #~ msgstr "Dirección de facturación"
3817
+
3818
+ #~ msgid "Shipping address"
3819
+ #~ msgstr "Dirección de Envío:"
3820
+
3821
+ #~ msgid "Download %d:"
3822
+ #~ msgstr "Descargar %d:"
3823
+
3824
+ #~ msgid "Order number: %s"
3825
+ #~ msgstr "Pedido Nº: %s"
3826
+
3827
+ #~ msgid "Order date: %s"
3828
+ #~ msgstr "Fecha Pedido: %s"
3829
+
3830
+ #~ msgid "jS F Y"
3831
+ #~ msgstr "jS F Y"
3832
+
3833
+ #~ msgid "Your details"
3834
+ #~ msgstr "Sus datos"
3835
+
3836
+ #~ msgid "Quantity: %s"
3837
+ #~ msgstr "Cantidad: %s"
3838
+
3839
+ #~ msgid "Cost: %s"
3840
+ #~ msgstr "Coste: %s"
3841
+
3842
+ #~ msgid "This sets your background for your sites topbar."
3843
+ #~ msgstr "Esto establece el fondo para la barra superior."
languages/fr_FR.mo ADDED
Binary file
languages/fr_FR.po ADDED
@@ -0,0 +1,3439 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "POT-Creation-Date: 2015-01-10 00:32-0700\n"
5
+ "PO-Revision-Date: 2015-01-10 00:32-0700\n"
6
+ "Last-Translator: Matthieu Durocher <matthieu@technocyclope.com>\n"
7
+ "Language-Team: Matthieu Durocher\n"
8
+ "Language: fr_FR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.10\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
19
+ msgid "Please Try Again"
20
+ msgstr "Veuillez réessayer"
21
+
22
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
23
+ msgid "Remove Embed"
24
+ msgstr "Retirer l'inclusion"
25
+
26
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
27
+ #, php-format
28
+ msgid "No oEmbed Results Found for %s. View more info at"
29
+ msgstr "Pas de résultat oEmbed trouvé pour %s. Plus d'information à"
30
+
31
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
32
+ #, fuzzy
33
+ msgid "Add Group"
34
+ msgstr "Ajouter une icône"
35
+
36
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
37
+ #, fuzzy
38
+ msgid "Remove Group"
39
+ msgstr "Enlever"
40
+
41
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
42
+ #, fuzzy
43
+ msgid "Add Row"
44
+ msgstr "Ajouter une icône"
45
+
46
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
47
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
48
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
49
+ msgid "Remove"
50
+ msgstr "Enlever"
51
+
52
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
53
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
54
+ msgid "No terms"
55
+ msgstr ""
56
+
57
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
58
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
59
+ msgid "Add or Upload File"
60
+ msgstr ""
61
+
62
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
63
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
64
+ #, fuzzy
65
+ msgid "Remove Image"
66
+ msgstr "Retirer l image"
67
+
68
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
69
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
70
+ msgid "File:"
71
+ msgstr ""
72
+
73
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
74
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
75
+ msgid "Download"
76
+ msgstr "Télécharger"
77
+
78
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
79
+ msgid "Clear"
80
+ msgstr ""
81
+
82
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
83
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
84
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
85
+ #: ../metaboxes.php:489
86
+ msgid "Default"
87
+ msgstr "Défaut"
88
+
89
+ #: ../cmb/init.php:260
90
+ #, fuzzy
91
+ msgid "Select Color"
92
+ msgstr "Choisir une icône"
93
+
94
+ #: ../cmb/init.php:261
95
+ #, fuzzy
96
+ msgid "Current Color"
97
+ msgstr "Couleur principale"
98
+
99
+ #: ../cmb/init.php:288
100
+ #, fuzzy
101
+ msgid "Select / Deselect All"
102
+ msgstr "Sélectionnez un état ..."
103
+
104
+ #: ../cmb/init.php:1178
105
+ msgid "Save"
106
+ msgstr ""
107
+
108
+ #: ../metaboxes.php:17
109
+ msgid "Add/Edit Gallery"
110
+ msgstr "Ajouter / modifer une galerie"
111
+
112
+ #: ../metaboxes.php:18
113
+ msgid "Clear Gallery"
114
+ msgstr "Effacer la galerie"
115
+
116
+ #: ../metaboxes.php:44
117
+ msgid "Page Title and Subtitle"
118
+ msgstr "Titre et sous-titre de la page"
119
+
120
+ #: ../metaboxes.php:51 ../metaboxes.php:95
121
+ msgid "Subtitle"
122
+ msgstr "Sous-titre"
123
+
124
+ #: ../metaboxes.php:52
125
+ msgid "Subtitle will go below page title"
126
+ msgstr "Le sous-titre ira sous le titre de la page"
127
+
128
+ #: ../metaboxes.php:57 ../metaboxes.php:101
129
+ #, fuzzy
130
+ msgid "Hide Page Title"
131
+ msgstr "Titre de la page"
132
+
133
+ #: ../metaboxes.php:63 ../metaboxes.php:107
134
+ msgid "Show"
135
+ msgstr ""
136
+
137
+ #: ../metaboxes.php:64 ../metaboxes.php:108
138
+ msgid "Hide"
139
+ msgstr ""
140
+
141
+ #: ../metaboxes.php:68 ../metaboxes.php:112
142
+ #, fuzzy
143
+ msgid "Page Title background behind Header"
144
+ msgstr "Titre et sous-titre de la page"
145
+
146
+ #: ../metaboxes.php:74 ../metaboxes.php:118
147
+ msgid "Place behind Header"
148
+ msgstr ""
149
+
150
+ #: ../metaboxes.php:75 ../metaboxes.php:119
151
+ msgid "Don't place behind Header"
152
+ msgstr ""
153
+
154
+ #: ../metaboxes.php:82
155
+ #, fuzzy
156
+ msgid "Post Title and Subtitle"
157
+ msgstr "Titre et sous-titre de la page"
158
+
159
+ #: ../metaboxes.php:89 ../metaboxes.php:90
160
+ #, fuzzy
161
+ msgid "Post Header Title"
162
+ msgstr "Titre de la page"
163
+
164
+ #: ../metaboxes.php:96
165
+ #, fuzzy
166
+ msgid "Subtitle will go below post title"
167
+ msgstr "Le sous-titre ira sous le titre de la page"
168
+
169
+ #: ../metaboxes.php:126
170
+ #, fuzzy
171
+ msgid "Gallery Post Options"
172
+ msgstr "Options du billet"
173
+
174
+ #: ../metaboxes.php:135 ../metaboxes.php:190
175
+ #, fuzzy
176
+ msgid "Post Head Content"
177
+ msgstr "Contenu de l'entête"
178
+
179
+ #: ../metaboxes.php:140 ../metaboxes.php:170
180
+ #, fuzzy
181
+ msgid "Gallery Post Default"
182
+ msgstr "Valeurs par défaut des billets"
183
+
184
+ #: ../metaboxes.php:141
185
+ #, fuzzy
186
+ msgid "Image Slider - (Flex Slider)"
187
+ msgstr "Carrousel d'images"
188
+
189
+ #: ../metaboxes.php:142
190
+ msgid "Carousel Slider - (Caroufedsel Slider)"
191
+ msgstr ""
192
+
193
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
194
+ #: ../metaboxes.php:738
195
+ msgid "None"
196
+ msgstr "Aucun"
197
+
198
+ #: ../metaboxes.php:147
199
+ #, fuzzy
200
+ msgid "Post Slider Gallery"
201
+ msgstr "Galerie du billet"
202
+
203
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
204
+ #, fuzzy
205
+ msgid "Add images for gallery here"
206
+ msgstr "Ajouter des images à la galerie"
207
+
208
+ #: ../metaboxes.php:153
209
+ #, fuzzy
210
+ msgid "Max Slider Height"
211
+ msgstr "Hauteur maximale de l'image ou du carrousel"
212
+
213
+ #: ../metaboxes.php:154 ../metaboxes.php:553
214
+ #, fuzzy
215
+ msgid "Default is: 400 (Note: just input number, example: 350)"
216
+ msgstr ""
217
+ "La valeur par défaut est 400 <b>(Note : entrez juste un nombre, exemple : "
218
+ "350)</b>"
219
+
220
+ #: ../metaboxes.php:159
221
+ #, fuzzy
222
+ msgid "Max Slider Width"
223
+ msgstr "Largeur maximale de l'image ou du carrousel"
224
+
225
+ #: ../metaboxes.php:160
226
+ #, fuzzy
227
+ msgid ""
228
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
229
+ "example: 650, only applys to Image Slider)"
230
+ msgstr ""
231
+ "La valeur par défaut est 700 ou 1140 pour les billets pleine-largeur "
232
+ "<b>(Note : entrez juste un nombre, exemple : 650, ne s'applique pas au "
233
+ "carrousel)</b>"
234
+
235
+ #: ../metaboxes.php:165 ../metaboxes.php:213
236
+ msgid "Post Summary"
237
+ msgstr "Sommaire du billet"
238
+
239
+ #: ../metaboxes.php:171 ../metaboxes.php:220
240
+ #, fuzzy
241
+ msgid "Portrait Image (feature image)"
242
+ msgstr "Carrousel d'images à la française"
243
+
244
+ #: ../metaboxes.php:172 ../metaboxes.php:221
245
+ #, fuzzy
246
+ msgid "Landscape Image (feature image)"
247
+ msgstr "Carrousel d'images à l'italienne"
248
+
249
+ #: ../metaboxes.php:173
250
+ msgid "Portrait Image Slider"
251
+ msgstr "Carrousel d'images à la française"
252
+
253
+ #: ../metaboxes.php:174
254
+ msgid "Landscape Image Slider"
255
+ msgstr "Carrousel d'images à l'italienne"
256
+
257
+ #: ../metaboxes.php:181
258
+ #, fuzzy
259
+ msgid "Video Post Options"
260
+ msgstr "Options du billet"
261
+
262
+ #: ../metaboxes.php:195 ../metaboxes.php:218
263
+ #, fuzzy
264
+ msgid "Video Post Default"
265
+ msgstr "Valeurs par défaut des billets"
266
+
267
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
268
+ #: ../metaboxes.php:737 ../metaboxes.php:960
269
+ msgid "Video"
270
+ msgstr "Vidéo"
271
+
272
+ #: ../metaboxes.php:201
273
+ #, fuzzy
274
+ msgid "Video Post embed code"
275
+ msgstr "Code d'inclusion de vidéo"
276
+
277
+ #: ../metaboxes.php:202
278
+ #, fuzzy
279
+ msgid ""
280
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
281
+ "for screen shot)"
282
+ msgstr "Mettre le code d'intégration ici, fonctionne avec youtube, vimeo..."
283
+
284
+ #: ../metaboxes.php:207
285
+ #, fuzzy
286
+ msgid "Max Video Width"
287
+ msgstr "Largeur maximale de l'image ou du carrousel"
288
+
289
+ #: ../metaboxes.php:208
290
+ #, fuzzy
291
+ msgid ""
292
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
293
+ "example: 650, does not apply to carousel slider)"
294
+ msgstr ""
295
+ "La valeur par défaut est 700 ou 1140 pour les billets pleine-largeur "
296
+ "<b>(Note : entrez juste un nombre, exemple : 650, ne s'applique pas au "
297
+ "carrousel)</b>"
298
+
299
+ #: ../metaboxes.php:219
300
+ msgid "Video - (when possible)"
301
+ msgstr ""
302
+
303
+ #: ../metaboxes.php:228 ../metaboxes.php:710
304
+ msgid "Portfolio Post Options"
305
+ msgstr "Options de billet portefolio"
306
+
307
+ #: ../metaboxes.php:236 ../metaboxes.php:718
308
+ msgid "Project Layout"
309
+ msgstr "Disposition de projet"
310
+
311
+ #: ../metaboxes.php:241
312
+ #, fuzzy
313
+ msgid "Beside 40%"
314
+ msgstr "À côté"
315
+
316
+ #: ../metaboxes.php:242
317
+ #, fuzzy
318
+ msgid "Beside 33%"
319
+ msgstr "À côté"
320
+
321
+ #: ../metaboxes.php:243 ../metaboxes.php:724
322
+ msgid "Above"
323
+ msgstr "Au-dessus"
324
+
325
+ #: ../metaboxes.php:244 ../metaboxes.php:725
326
+ msgid "Three Rows"
327
+ msgstr "Trois rangées"
328
+
329
+ #: ../metaboxes.php:248 ../metaboxes.php:729
330
+ msgid "Project Options"
331
+ msgstr "Options du projet"
332
+
333
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
334
+ msgid "Image"
335
+ msgstr "Image"
336
+
337
+ #: ../metaboxes.php:254 ../metaboxes.php:534
338
+ #, fuzzy
339
+ msgid "Image Slider (Flex Slider)"
340
+ msgstr "Carrousel d'images"
341
+
342
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
343
+ msgid "Carousel Slider"
344
+ msgstr "Carrousel"
345
+
346
+ #: ../metaboxes.php:261
347
+ #, fuzzy
348
+ msgid "Portfolio Slider/Images"
349
+ msgstr "Images du carrousel du portefolio"
350
+
351
+ #: ../metaboxes.php:262
352
+ #, fuzzy
353
+ msgid "Add images for post here"
354
+ msgstr "Ajouter des images à la galerie"
355
+
356
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
357
+ #: ../metaboxes.php:965
358
+ msgid "Max Image/Slider Height"
359
+ msgstr "Hauteur maximale de l'image ou du carrousel"
360
+
361
+ #: ../metaboxes.php:268
362
+ #, fuzzy
363
+ msgid "Default is: 450 (Note: just input number, example: 350)"
364
+ msgstr ""
365
+ "La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
366
+ "350)</b>"
367
+
368
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
369
+ #: ../metaboxes.php:971
370
+ msgid "Max Image/Slider Width"
371
+ msgstr "Largeur maximale de l'image ou du carrousel"
372
+
373
+ #: ../metaboxes.php:274
374
+ #, fuzzy
375
+ msgid ""
376
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
377
+ "number, example: 650)"
378
+ msgstr ""
379
+ "La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
380
+ "et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
381
+
382
+ #: ../metaboxes.php:279 ../metaboxes.php:764
383
+ msgid "Value 01 Title"
384
+ msgstr "Titre de la valeur 01"
385
+
386
+ #: ../metaboxes.php:280 ../metaboxes.php:765
387
+ msgid "ex. Project Type:"
388
+ msgstr "ex. Type de projet :"
389
+
390
+ #: ../metaboxes.php:285 ../metaboxes.php:770
391
+ msgid "Value 01 Description"
392
+ msgstr "Description de la valeur 01"
393
+
394
+ #: ../metaboxes.php:286 ../metaboxes.php:771
395
+ msgid "ex. Character Illustration"
396
+ msgstr "ex. Illustration de personnage"
397
+
398
+ #: ../metaboxes.php:291 ../metaboxes.php:776
399
+ msgid "Value 02 Title"
400
+ msgstr "Titre de la valeur 02"
401
+
402
+ #: ../metaboxes.php:292 ../metaboxes.php:777
403
+ msgid "ex. Skills Needed:"
404
+ msgstr "ex. Compétences requises :"
405
+
406
+ #: ../metaboxes.php:297 ../metaboxes.php:782
407
+ msgid "Value 02 Description"
408
+ msgstr "Description de la valeur 02"
409
+
410
+ #: ../metaboxes.php:298 ../metaboxes.php:783
411
+ msgid "ex. Photoshop, Illustrator"
412
+ msgstr "ex. Photoshop, Illustrator"
413
+
414
+ #: ../metaboxes.php:303 ../metaboxes.php:788
415
+ msgid "Value 03 Title"
416
+ msgstr "Titre de la valeur 03"
417
+
418
+ #: ../metaboxes.php:304 ../metaboxes.php:789
419
+ msgid "ex. Customer:"
420
+ msgstr "ex. Clientèle :"
421
+
422
+ #: ../metaboxes.php:309 ../metaboxes.php:794
423
+ msgid "Value 03 Description"
424
+ msgstr "Description de la valeur 03"
425
+
426
+ #: ../metaboxes.php:310 ../metaboxes.php:795
427
+ msgid "ex. Example Inc"
428
+ msgstr "ex. Exemple Inc."
429
+
430
+ #: ../metaboxes.php:315 ../metaboxes.php:800
431
+ msgid "Value 04 Title"
432
+ msgstr "Titre de la valeur 04"
433
+
434
+ #: ../metaboxes.php:316 ../metaboxes.php:801
435
+ msgid "ex. Project Year:"
436
+ msgstr "ex. Année du projet :"
437
+
438
+ #: ../metaboxes.php:321 ../metaboxes.php:806
439
+ msgid "Value 04 Description"
440
+ msgstr "Description de la valeur 04"
441
+
442
+ #: ../metaboxes.php:322 ../metaboxes.php:807
443
+ msgid "ex. 2013"
444
+ msgstr "ex. 2013"
445
+
446
+ #: ../metaboxes.php:327 ../metaboxes.php:812
447
+ msgid "External Website"
448
+ msgstr "Site externe"
449
+
450
+ #: ../metaboxes.php:328 ../metaboxes.php:813
451
+ msgid "ex. Website:"
452
+ msgstr "ex. Site :"
453
+
454
+ #: ../metaboxes.php:333 ../metaboxes.php:818
455
+ msgid "Website Address"
456
+ msgstr "Adresse du site"
457
+
458
+ #: ../metaboxes.php:334 ../metaboxes.php:819
459
+ msgid "ex. http://www.example.com"
460
+ msgstr "ex. http://www.exemple.com"
461
+
462
+ #: ../metaboxes.php:339 ../metaboxes.php:824
463
+ msgid "If Video Project"
464
+ msgstr "Si c'est un projet vidéo"
465
+
466
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
467
+ #: ../metaboxes.php:825 ../metaboxes.php:988
468
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
469
+ msgstr "Mettre le code d'intégration ici, fonctionne avec youtube, vimeo..."
470
+
471
+ #: ../metaboxes.php:349
472
+ #, fuzzy
473
+ msgid "Bottom Carousel Options"
474
+ msgstr "Options de la page de contact"
475
+
476
+ #: ../metaboxes.php:356 ../metaboxes.php:840
477
+ msgid "Carousel Title"
478
+ msgstr "Titre du carrousel"
479
+
480
+ #: ../metaboxes.php:357 ../metaboxes.php:841
481
+ msgid "ex. Similar Projects"
482
+ msgstr "ex. Projets similaires"
483
+
484
+ #: ../metaboxes.php:362
485
+ #, fuzzy
486
+ msgid "Bottom Portfolio Carousel"
487
+ msgstr "Carrousel de portefolio"
488
+
489
+ #: ../metaboxes.php:363
490
+ #, fuzzy
491
+ msgid "Display a carousel with portfolio items below project?"
492
+ msgstr ""
493
+ "Afficher un carrousel avec des items de portefolio similaires sous le "
494
+ "projet ?"
495
+
496
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
497
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
498
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
499
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
500
+ msgid "No"
501
+ msgstr "Non"
502
+
503
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
504
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
505
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
506
+ #: ../metaboxes.php:1037
507
+ msgid "Yes"
508
+ msgstr "Oui"
509
+
510
+ #: ../metaboxes.php:373
511
+ #, fuzzy
512
+ msgid "Carousel Items"
513
+ msgstr "Titre du carrousel"
514
+
515
+ #: ../metaboxes.php:379
516
+ #, fuzzy
517
+ msgid "All Portfolio Posts"
518
+ msgstr "Options de billet portefolio"
519
+
520
+ #: ../metaboxes.php:380
521
+ msgid "Only of same Portfolio Type"
522
+ msgstr ""
523
+
524
+ #: ../metaboxes.php:384
525
+ #, fuzzy
526
+ msgid "Carousel Order"
527
+ msgstr "Carrousel"
528
+
529
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
530
+ msgid "Menu Order"
531
+ msgstr "Tri du menu"
532
+
533
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
534
+ msgid "Title"
535
+ msgstr "Titre"
536
+
537
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
538
+ msgid "Date"
539
+ msgstr "Date"
540
+
541
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
542
+ msgid "Random"
543
+ msgstr "Au hasard"
544
+
545
+ #: ../metaboxes.php:400 ../metaboxes.php:850
546
+ msgid "Portfolio Page Options"
547
+ msgstr "Options de la page portefolio"
548
+
549
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
550
+ msgid "Style"
551
+ msgstr "Style"
552
+
553
+ #: ../metaboxes.php:414
554
+ #, fuzzy
555
+ msgid "Post Boxes"
556
+ msgstr "Boîte de billet vidéo"
557
+
558
+ #: ../metaboxes.php:415
559
+ msgid "Flat with Margin"
560
+ msgstr ""
561
+
562
+ #: ../metaboxes.php:419
563
+ #, fuzzy
564
+ msgid "Hover Style"
565
+ msgstr "Style de bordure"
566
+
567
+ #: ../metaboxes.php:425
568
+ #, fuzzy
569
+ msgid "Light"
570
+ msgstr "Droite"
571
+
572
+ #: ../metaboxes.php:426
573
+ msgid "Dark"
574
+ msgstr ""
575
+
576
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
577
+ msgid "Primary Color"
578
+ msgstr "Couleur principale"
579
+
580
+ #: ../metaboxes.php:431 ../metaboxes.php:859
581
+ msgid "Columns"
582
+ msgstr "Colonnes"
583
+
584
+ #: ../metaboxes.php:436 ../metaboxes.php:864
585
+ msgid "Four Column"
586
+ msgstr "Quatre colonnes"
587
+
588
+ #: ../metaboxes.php:437 ../metaboxes.php:865
589
+ msgid "Three Column"
590
+ msgstr "Trois colonnes"
591
+
592
+ #: ../metaboxes.php:438 ../metaboxes.php:866
593
+ msgid "Two Column"
594
+ msgstr "Deux colonnes"
595
+
596
+ #: ../metaboxes.php:439
597
+ #, fuzzy
598
+ msgid "Five Column"
599
+ msgstr "Quatre colonnes"
600
+
601
+ #: ../metaboxes.php:443 ../metaboxes.php:870
602
+ msgid "Portfolio Work Types"
603
+ msgstr "Types de travail du portefolio"
604
+
605
+ #: ../metaboxes.php:449 ../metaboxes.php:877
606
+ msgid "Order Items By"
607
+ msgstr "Classer les items par"
608
+
609
+ #: ../metaboxes.php:461 ../metaboxes.php:889
610
+ msgid "Items per Page"
611
+ msgstr "Items par page"
612
+
613
+ #: ../metaboxes.php:462 ../metaboxes.php:890
614
+ msgid "How many portfolio items per page"
615
+ msgstr "Combien d'articles de portefolio par page"
616
+
617
+ #: ../metaboxes.php:466 ../metaboxes.php:894
618
+ msgid "All"
619
+ msgstr "Tout"
620
+
621
+ #: ../metaboxes.php:484
622
+ #, fuzzy
623
+ msgid "Image Ratio?"
624
+ msgstr "Image"
625
+
626
+ #: ../metaboxes.php:490
627
+ msgid "Square 1:1"
628
+ msgstr ""
629
+
630
+ #: ../metaboxes.php:491
631
+ #, fuzzy
632
+ msgid "Portrait 3:4"
633
+ msgstr "Image à la française"
634
+
635
+ #: ../metaboxes.php:492
636
+ #, fuzzy
637
+ msgid "Landscape 4:3"
638
+ msgstr "Image à l'italienne"
639
+
640
+ #: ../metaboxes.php:493
641
+ #, fuzzy
642
+ msgid "Wide Landscape 4:2"
643
+ msgstr "Image à l'italienne"
644
+
645
+ #: ../metaboxes.php:497 ../metaboxes.php:918
646
+ msgid "Display Item Work Types"
647
+ msgstr "Afficher les types d'items de travail "
648
+
649
+ #: ../metaboxes.php:503 ../metaboxes.php:925
650
+ msgid "Display Item Excerpt"
651
+ msgstr "Afficher l'extrait de l'item"
652
+
653
+ #: ../metaboxes.php:509
654
+ #, fuzzy
655
+ msgid "Add Lightbox link in each item"
656
+ msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
657
+
658
+ #: ../metaboxes.php:518 ../metaboxes.php:945
659
+ msgid "Feature Page Options"
660
+ msgstr "Options de la page En vedette"
661
+
662
+ #: ../metaboxes.php:527
663
+ #, fuzzy
664
+ msgid "Header Options"
665
+ msgstr "Options des polices d'entête"
666
+
667
+ #: ../metaboxes.php:528
668
+ #, fuzzy
669
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
670
+ msgstr ""
671
+ "Si le carrousel d'images est utilisé, assurez-vous que les images "
672
+ "téléversées ont au moins 1140 pixels de largeur."
673
+
674
+ #: ../metaboxes.php:533
675
+ msgid "Page Title"
676
+ msgstr "Titre de la page"
677
+
678
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
679
+ msgid "Slider Images"
680
+ msgstr "Images du carrousel"
681
+
682
+ #: ../metaboxes.php:541
683
+ msgid "Add for flex, carousel, and image carousel."
684
+ msgstr ""
685
+
686
+ #: ../metaboxes.php:546
687
+ #, fuzzy
688
+ msgid "If Cyclone Slider"
689
+ msgstr "Carrousel"
690
+
691
+ #: ../metaboxes.php:547
692
+ msgid ""
693
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
694
+ msgstr ""
695
+
696
+ #: ../metaboxes.php:559
697
+ #, fuzzy
698
+ msgid ""
699
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
700
+ "does not apply to Carousel slider)"
701
+ msgstr ""
702
+ "La valeur par défaut est 700 ou 1140 pour les billets pleine-largeur "
703
+ "<b>(Note : entrez juste un nombre, exemple : 650, ne s'applique pas au "
704
+ "carrousel)</b>"
705
+
706
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
707
+ msgid "If Video Post"
708
+ msgstr "Si c'est un billet vidéo"
709
+
710
+ #: ../metaboxes.php:573 ../metaboxes.php:996
711
+ msgid "Contact Page Options"
712
+ msgstr "Options de la page de contact"
713
+
714
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
715
+ msgid "Use Contact Form"
716
+ msgstr "Utiliser le formulaire de contact"
717
+
718
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
719
+ msgid "Contact Form Title"
720
+ msgstr "Titre du formulaire de contact"
721
+
722
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
723
+ msgid "ex. Send us an Email"
724
+ msgstr "ex. Envoyez-nous un courriel"
725
+
726
+ #: ../metaboxes.php:598
727
+ #, fuzzy
728
+ msgid "Contact Form Email Recipient"
729
+ msgstr "Adresse de courriel du formulaire de contact"
730
+
731
+ #: ../metaboxes.php:599
732
+ msgid "ex. joe@gmail.com"
733
+ msgstr ""
734
+
735
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
736
+ msgid "Use Simple Math Question"
737
+ msgstr ""
738
+
739
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
740
+ msgid "Use Map"
741
+ msgstr "Utiliser la carte"
742
+
743
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
744
+ msgid "Address"
745
+ msgstr "Adresse"
746
+
747
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
748
+ msgid "Enter your Location"
749
+ msgstr "Entrez votre localisation"
750
+
751
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
752
+ msgid "Map Type"
753
+ msgstr "Type de carte"
754
+
755
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
756
+ msgid "ROADMAP"
757
+ msgstr "Carte routière"
758
+
759
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
760
+ msgid "HYBRID"
761
+ msgstr "Combinée"
762
+
763
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
764
+ msgid "TERRAIN"
765
+ msgstr "Topographique"
766
+
767
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
768
+ msgid "SATELLITE"
769
+ msgstr "Satellite"
770
+
771
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
772
+ msgid "Map Zoom Level"
773
+ msgstr "Niveau d'agrandissement de la carte"
774
+
775
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
776
+ msgid "A good place to start is 15"
777
+ msgstr "Un bon choix initial est 15"
778
+
779
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
780
+ msgid "1 (World View)"
781
+ msgstr "1 (Vue globale)"
782
+
783
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
784
+ msgid "21 (Street View)"
785
+ msgstr "21 (Vue de la rue)"
786
+
787
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
788
+ msgid "Map Height"
789
+ msgstr "Hauteur de la carte"
790
+
791
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
792
+ msgid "Default is 300"
793
+ msgstr "La valeur par défaut est 300"
794
+
795
+ #: ../metaboxes.php:693
796
+ msgid "Post Video Box"
797
+ msgstr "Boîte de billet vidéo"
798
+
799
+ #: ../metaboxes.php:723
800
+ msgid "Beside"
801
+ msgstr "À côté"
802
+
803
+ #: ../metaboxes.php:735 ../metaboxes.php:959
804
+ msgid "Image Slider"
805
+ msgstr "Carrousel d'images"
806
+
807
+ #: ../metaboxes.php:743
808
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
809
+ msgstr ""
810
+ "La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
811
+ "350)</b>"
812
+
813
+ #: ../metaboxes.php:749
814
+ msgid ""
815
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
816
+ "just input number, example: 650)</b>"
817
+ msgstr ""
818
+ "La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
819
+ "et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
820
+
821
+ #: ../metaboxes.php:754
822
+ #, fuzzy
823
+ msgid "Auto Play Slider?"
824
+ msgstr "Lecture automatique ?"
825
+
826
+ #: ../metaboxes.php:830
827
+ msgid "Similar Portfolio Item Carousel"
828
+ msgstr "Carrousel d'items de portefolio similaires"
829
+
830
+ #: ../metaboxes.php:831
831
+ msgid "Display a carousel with similar portfolio items below project?"
832
+ msgstr ""
833
+ "Afficher un carrousel avec des items de portefolio similaires sous le "
834
+ "projet ?"
835
+
836
+ #: ../metaboxes.php:836
837
+ msgid "Yes - Display Recent Projects"
838
+ msgstr "Oui, afficher les projets récents"
839
+
840
+ #: ../metaboxes.php:912
841
+ msgid "Set image height"
842
+ msgstr "Régler la hauteur de l'image"
843
+
844
+ #: ../metaboxes.php:913
845
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
846
+ msgstr ""
847
+ "La proportion par défaut est 1:1 <b>(Note : entrez juste un nombre, "
848
+ "exemple : 350)</b>"
849
+
850
+ #: ../metaboxes.php:932
851
+ msgid "Add Lightbox link in the top right of each item"
852
+ msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
853
+
854
+ #: ../metaboxes.php:954
855
+ msgid "Feature Options"
856
+ msgstr "Options de la section En vedette"
857
+
858
+ #: ../metaboxes.php:955
859
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
860
+ msgstr ""
861
+ "Si le carrousel d'images est utilisé, assurez-vous que les images "
862
+ "téléversées ont au moins 1140 pixels de largeur."
863
+
864
+ #: ../metaboxes.php:966
865
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
866
+ msgstr ""
867
+ "La valeur par défaut est 400 <b>(Note : entrez juste un nombre, exemple : "
868
+ "350)</b>"
869
+
870
+ #: ../metaboxes.php:972
871
+ msgid ""
872
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
873
+ "to Carousel slider)</b>"
874
+ msgstr ""
875
+ "La valeur par défaut est 1140 (Note : entrez juste un nombre, exemple : 650, "
876
+ "ne s'applique pas au carrousel)</b>"
877
+
878
+ #: ../metaboxes.php:977
879
+ msgid "Use Lightbox for Feature Image"
880
+ msgstr "Utilisez la Visionneuse pour l'image en vedette"
881
+
882
+ #: ../metaboxes.php:978
883
+ msgid ""
884
+ "If feature option is set to image, choose to use lightbox link with image."
885
+ msgstr ""
886
+ "Si l'option En vedette est réglée à image, choisir d'utiliser le lien "
887
+ "visionneuse avec l'image."
888
+
889
+ #: ../metaboxes.php:1105
890
+ #, fuzzy
891
+ msgid "Slider Gallery"
892
+ msgstr "Effacer la galerie"
893
+
894
+ #: ../page-contact.php:12 ../template-contact.php:7
895
+ #, fuzzy
896
+ msgid "This field is required."
897
+ msgstr "Ce champ doit contenir une date valide."
898
+
899
+ #: ../page-contact.php:13 ../template-contact.php:8
900
+ #, fuzzy
901
+ msgid "Please enter a valid email address."
902
+ msgstr "Entrez une adresse de courriel valide."
903
+
904
+ #: ../page-contact.php:96 ../template-contact.php:95
905
+ msgid "Check your math."
906
+ msgstr ""
907
+
908
+ #: ../page-contact.php:101 ../template-contact.php:100
909
+ msgid "Please enter your name."
910
+ msgstr "S'il vous plaît entrez votre nom."
911
+
912
+ #: ../page-contact.php:108 ../template-contact.php:107
913
+ msgid "Please enter your email address."
914
+ msgstr "S'il vous plaît, entrez votre adresse courriel."
915
+
916
+ #: ../page-contact.php:111 ../template-contact.php:110
917
+ msgid "You entered an invalid email address."
918
+ msgstr "Vous avez entré une adresse email valide."
919
+
920
+ #: ../page-contact.php:118 ../template-contact.php:117
921
+ msgid "Please enter a message."
922
+ msgstr "S'il vous plaît entrez un message."
923
+
924
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
925
+ #: ../template-contact.php:134
926
+ #, fuzzy
927
+ msgid "Contact"
928
+ msgstr "Informations de contact"
929
+
930
+ #: ../page-contact.php:135 ../template-contact.php:134
931
+ msgid "From"
932
+ msgstr "De"
933
+
934
+ #: ../page-contact.php:136 ../template-contact.php:135
935
+ msgid "Name"
936
+ msgstr "Nom complet"
937
+
938
+ #: ../page-contact.php:137 ../template-contact.php:136
939
+ msgid "Email"
940
+ msgstr "Courriel"
941
+
942
+ #: ../page-contact.php:138 ../template-contact.php:137
943
+ #, fuzzy
944
+ msgid "Comments"
945
+ msgstr "Commentaire"
946
+
947
+ #: ../page-contact.php:176 ../template-contact.php:173
948
+ msgid "Thanks, your email was sent successfully."
949
+ msgstr "Merci, votre courriel a été envoyé avec succès."
950
+
951
+ #: ../page-contact.php:181 ../template-contact.php:177
952
+ msgid "Sorry, an error occured."
953
+ msgstr "Désolé, une erreur est survenue."
954
+
955
+ #: ../page-contact.php:187 ../template-contact.php:183
956
+ msgid "Name:"
957
+ msgstr "Nom complet :"
958
+
959
+ #: ../page-contact.php:195
960
+ msgid "Email: "
961
+ msgstr "Courriel : "
962
+
963
+ #: ../page-contact.php:203
964
+ msgid "Message: "
965
+ msgstr "Message :"
966
+
967
+ #: ../page-contact.php:223 ../template-contact.php:218
968
+ msgid "Send Email"
969
+ msgstr "Envoyez"
970
+
971
+ #: ../post-types.php:5 ../post-types.php:17
972
+ msgid "Portfolio"
973
+ msgstr "Portefolio"
974
+
975
+ #: ../post-types.php:6
976
+ #, fuzzy
977
+ msgid "Portfolio Item"
978
+ msgstr "Portefolio"
979
+
980
+ #: ../post-types.php:7
981
+ #, fuzzy
982
+ msgid "Add New"
983
+ msgstr "Ajouter une icône"
984
+
985
+ #: ../post-types.php:8
986
+ #, fuzzy
987
+ msgid "Add New Portfolio Item"
988
+ msgstr "Page de tous les portefolios de projets"
989
+
990
+ #: ../post-types.php:9
991
+ #, fuzzy
992
+ msgid "Edit Portfolio Item"
993
+ msgstr "Portefolio"
994
+
995
+ #: ../post-types.php:10
996
+ #, fuzzy
997
+ msgid "New Portfolio Item"
998
+ msgstr "Portefolio"
999
+
1000
+ #: ../post-types.php:11
1001
+ #, fuzzy
1002
+ msgid "All Portfolio"
1003
+ msgstr "Portefolio"
1004
+
1005
+ #: ../post-types.php:12
1006
+ #, fuzzy
1007
+ msgid "View Portfolio Item"
1008
+ msgstr "Portefolio"
1009
+
1010
+ #: ../post-types.php:13
1011
+ #, fuzzy
1012
+ msgid "Search Portfolio"
1013
+ msgstr "Portefolio"
1014
+
1015
+ #: ../post-types.php:14
1016
+ #, fuzzy
1017
+ msgid "No Portfolio Item found"
1018
+ msgstr "Carrousel d'items de portefolio similaires"
1019
+
1020
+ #: ../post-types.php:15
1021
+ msgid "No Portfolio Items found in Trash"
1022
+ msgstr ""
1023
+
1024
+ #: ../post-types.php:37
1025
+ #, fuzzy
1026
+ msgid "Portfolio Type"
1027
+ msgstr "Types de travail du portefolio"
1028
+
1029
+ #: ../post-types.php:38
1030
+ msgid "Type"
1031
+ msgstr "Type"
1032
+
1033
+ #: ../post-types.php:39
1034
+ #, fuzzy
1035
+ msgid "Search Type"
1036
+ msgstr "Recherche"
1037
+
1038
+ #: ../post-types.php:40
1039
+ #, fuzzy
1040
+ msgid "All Type"
1041
+ msgstr "Type"
1042
+
1043
+ #: ../post-types.php:41
1044
+ #, fuzzy
1045
+ msgid "Parent Type"
1046
+ msgstr "ex. Type de projet :"
1047
+
1048
+ #: ../post-types.php:42
1049
+ #, fuzzy
1050
+ msgid "Parent Type:"
1051
+ msgstr "ex. Type de projet :"
1052
+
1053
+ #: ../post-types.php:43
1054
+ #, fuzzy
1055
+ msgid "Edit Type"
1056
+ msgstr "Type"
1057
+
1058
+ #: ../post-types.php:44
1059
+ #, fuzzy
1060
+ msgid "Update Type"
1061
+ msgstr "Mettre à jour les totaux"
1062
+
1063
+ #: ../post-types.php:45
1064
+ msgid "Add New Type"
1065
+ msgstr ""
1066
+
1067
+ #: ../post-types.php:46
1068
+ msgid "New Type Name"
1069
+ msgstr ""
1070
+
1071
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
1072
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
1073
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
1074
+ msgid "You are not allowed to be here"
1075
+ msgstr ""
1076
+
1077
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
1078
+ #: ../shortcodes.php:178
1079
+ msgid "please specify correct url"
1080
+ msgstr ""
1081
+
1082
+ #: ../shortcodes/accordion/accordion_popup.php:10
1083
+ msgid "Insert Accordion or Tabs"
1084
+ msgstr ""
1085
+
1086
+ #: ../shortcodes/accordion/accordion_popup.php:59
1087
+ msgid "Accordion or Tabs"
1088
+ msgstr ""
1089
+
1090
+ #: ../shortcodes/accordion/accordion_popup.php:61
1091
+ msgid "Accordion"
1092
+ msgstr ""
1093
+
1094
+ #: ../shortcodes/accordion/accordion_popup.php:62
1095
+ msgid "Tabs"
1096
+ msgstr ""
1097
+
1098
+ #: ../shortcodes/accordion/accordion_popup.php:66
1099
+ #: ../shortcodes/btns/btns_popup.php:230
1100
+ #: ../shortcodes/divider/divider_popup.php:80
1101
+ #: ../shortcodes/pullquote/quote_popup.php:77
1102
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
1103
+ #: ../shortcodes/youtube/youtube_popup.php:85
1104
+ msgid "Insert"
1105
+ msgstr ""
1106
+
1107
+ #: ../shortcodes/btns/btns_popup.php:10
1108
+ msgid "Insert Button"
1109
+ msgstr ""
1110
+
1111
+ #: ../shortcodes/btns/btns_popup.php:99
1112
+ msgid "Button Text"
1113
+ msgstr ""
1114
+
1115
+ #: ../shortcodes/btns/btns_popup.php:105
1116
+ #, fuzzy
1117
+ msgid "Text Color"
1118
+ msgstr "Choisir une icône"
1119
+
1120
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1121
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1122
+ msgid "White"
1123
+ msgstr ""
1124
+
1125
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1126
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1127
+ msgid "Off-White"
1128
+ msgstr ""
1129
+
1130
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1131
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1132
+ msgid "Black"
1133
+ msgstr ""
1134
+
1135
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1136
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1137
+ msgid "Light-Gray"
1138
+ msgstr ""
1139
+
1140
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1141
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1142
+ msgid "Gray"
1143
+ msgstr ""
1144
+
1145
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1146
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1147
+ msgid "Dark-Gray"
1148
+ msgstr ""
1149
+
1150
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1151
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1152
+ msgid "Silver"
1153
+ msgstr ""
1154
+
1155
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1156
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1157
+ msgid "Red"
1158
+ msgstr ""
1159
+
1160
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1161
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1162
+ msgid "Blue"
1163
+ msgstr ""
1164
+
1165
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1166
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1167
+ msgid "Green"
1168
+ msgstr ""
1169
+
1170
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1171
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1172
+ #, fuzzy
1173
+ msgid "Yellow"
1174
+ msgstr "Suivre"
1175
+
1176
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1177
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1178
+ msgid "Orange"
1179
+ msgstr ""
1180
+
1181
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1182
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1183
+ msgid "Pink"
1184
+ msgstr ""
1185
+
1186
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1187
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1188
+ msgid "Purple"
1189
+ msgstr ""
1190
+
1191
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1192
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1193
+ msgid "Brown"
1194
+ msgstr ""
1195
+
1196
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1197
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1198
+ msgid "Maroon"
1199
+ msgstr ""
1200
+
1201
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1202
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1203
+ msgid "Or Type Hex Color"
1204
+ msgstr ""
1205
+
1206
+ #: ../shortcodes/btns/btns_popup.php:132
1207
+ #, fuzzy
1208
+ msgid "Button Color"
1209
+ msgstr "Couleur de police"
1210
+
1211
+ #: ../shortcodes/btns/btns_popup.php:161
1212
+ msgid "Text Hover Color"
1213
+ msgstr ""
1214
+
1215
+ #: ../shortcodes/btns/btns_popup.php:188
1216
+ #, fuzzy
1217
+ msgid "Button Background Hover Color"
1218
+ msgstr "Couleur de fond"
1219
+
1220
+ #: ../shortcodes/btns/btns_popup.php:190
1221
+ #, fuzzy
1222
+ msgid "30% Primary Color"
1223
+ msgstr "Couleur principale"
1224
+
1225
+ #: ../shortcodes/btns/btns_popup.php:216
1226
+ #, fuzzy
1227
+ msgid "Button Link"
1228
+ msgstr "Lien de l'icône"
1229
+
1230
+ #: ../shortcodes/btns/btns_popup.php:222
1231
+ msgid "Button Link Target"
1232
+ msgstr ""
1233
+
1234
+ #: ../shortcodes/btns/btns_popup.php:224
1235
+ msgid "Same Window"
1236
+ msgstr ""
1237
+
1238
+ #: ../shortcodes/btns/btns_popup.php:225
1239
+ msgid "New Window/Tab"
1240
+ msgstr ""
1241
+
1242
+ #: ../shortcodes/columns/columns_popup.php:10
1243
+ #, fuzzy
1244
+ msgid "Insert Columns"
1245
+ msgstr "Colonnes"
1246
+
1247
+ #: ../shortcodes/divider/divider_popup.php:10
1248
+ msgid "Insert Divider"
1249
+ msgstr ""
1250
+
1251
+ #: ../shortcodes/divider/divider_popup.php:70
1252
+ #, fuzzy
1253
+ msgid "Choose a Divider"
1254
+ msgstr "Choisir la barre latérale"
1255
+
1256
+ #: ../shortcodes/divider/divider_popup.php:72
1257
+ msgid "Line"
1258
+ msgstr ""
1259
+
1260
+ #: ../shortcodes/divider/divider_popup.php:73
1261
+ msgid "Padding Small"
1262
+ msgstr ""
1263
+
1264
+ #: ../shortcodes/divider/divider_popup.php:74
1265
+ msgid "Padding Medium"
1266
+ msgstr ""
1267
+
1268
+ #: ../shortcodes/divider/divider_popup.php:75
1269
+ msgid "Padding Large"
1270
+ msgstr ""
1271
+
1272
+ #: ../shortcodes/icons/icon_popup.php:10
1273
+ #, fuzzy
1274
+ msgid "Insert Icon"
1275
+ msgstr "Effacer l'icône"
1276
+
1277
+ #: ../shortcodes/pullquote/quote_popup.php:10
1278
+ msgid "Insert Styled Quote"
1279
+ msgstr ""
1280
+
1281
+ #: ../shortcodes/pullquote/quote_popup.php:61
1282
+ msgid "Pull-Quote"
1283
+ msgstr ""
1284
+
1285
+ #: ../shortcodes/pullquote/quote_popup.php:62
1286
+ msgid "Block-Quote"
1287
+ msgstr ""
1288
+
1289
+ #: ../shortcodes/pullquote/quote_popup.php:68
1290
+ msgid "Align"
1291
+ msgstr ""
1292
+
1293
+ #: ../shortcodes/pullquote/quote_popup.php:70
1294
+ msgid "Center"
1295
+ msgstr ""
1296
+
1297
+ #: ../shortcodes/pullquote/quote_popup.php:71
1298
+ msgid "Left"
1299
+ msgstr "Gauche"
1300
+
1301
+ #: ../shortcodes/pullquote/quote_popup.php:72
1302
+ #, fuzzy
1303
+ msgid "Right"
1304
+ msgstr "Hauteur"
1305
+
1306
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1307
+ msgid "Insert Vimeo Video"
1308
+ msgstr ""
1309
+
1310
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1311
+ #, fuzzy
1312
+ msgid "Vimeo Link"
1313
+ msgstr "Lien de l'icône"
1314
+
1315
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1316
+ #: ../shortcodes/youtube/youtube_popup.php:70
1317
+ msgid "Width"
1318
+ msgstr "Largeur"
1319
+
1320
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1321
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1322
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1323
+ #: ../shortcodes/youtube/youtube_popup.php:72
1324
+ #: ../shortcodes/youtube/youtube_popup.php:77
1325
+ #: ../shortcodes/youtube/youtube_popup.php:82
1326
+ msgid "note just use number"
1327
+ msgstr ""
1328
+
1329
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1330
+ #: ../shortcodes/youtube/youtube_popup.php:75
1331
+ msgid "Height"
1332
+ msgstr "Hauteur"
1333
+
1334
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1335
+ #: ../shortcodes/youtube/youtube_popup.php:80
1336
+ #, fuzzy
1337
+ msgid "(Optional) Max Width"
1338
+ msgstr "Largeur maximale du carrousel"
1339
+
1340
+ #: ../shortcodes/youtube/youtube_popup.php:10
1341
+ msgid "Insert YouTube Video"
1342
+ msgstr ""
1343
+
1344
+ #: ../shortcodes/youtube/youtube_popup.php:66
1345
+ #, fuzzy
1346
+ msgid "YouTube Link"
1347
+ msgstr "Lien de l'icône"
1348
+
1349
+ #: ../template-contact.php:193
1350
+ msgid "Email:"
1351
+ msgstr "Courriel :"
1352
+
1353
+ #: ../template-contact.php:200
1354
+ #, fuzzy
1355
+ msgid "Message:"
1356
+ msgstr "Message :"
1357
+
1358
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
1359
+ #~ msgstr "Désolé, la page que vous tentiez d'atteindre n'existe pas."
1360
+
1361
+ #~ msgid "It looks like this was the result of either:"
1362
+ #~ msgstr "Cela peut être dû à l'une des raisons suivante :"
1363
+
1364
+ #~ msgid "a mistyped address"
1365
+ #~ msgstr "une adresse web mal écrite ou incorrecte"
1366
+
1367
+ #~ msgid "an out-of-date link"
1368
+ #~ msgstr "un lien périmé"
1369
+
1370
+ #~ msgid "Sorry, no results were found."
1371
+ #~ msgstr "Désolé, aucun résultat n'a été trouvé."
1372
+
1373
+ #~ msgid "Sorry, no blog entries found."
1374
+ #~ msgstr "Désolé, aucune entrée n'a été trouvée."
1375
+
1376
+ #~ msgid "From "
1377
+ #~ msgstr "De "
1378
+
1379
+ #~ msgid "Sorry, no portfolio entries found."
1380
+ #~ msgstr "Désolé, aucun portfolio n'a été trouvé."
1381
+
1382
+ #~ msgid "Search for:"
1383
+ #~ msgstr "Rechercher :"
1384
+
1385
+ #~ msgid "&larr; Older posts"
1386
+ #~ msgstr "&larr; Billets plus anciens"
1387
+
1388
+ #~ msgid "Newer posts &rarr;"
1389
+ #~ msgstr "Billets plus récents &rarr;"
1390
+
1391
+ #~ msgid "About Author"
1392
+ #~ msgstr "À propos"
1393
+
1394
+ #~ msgid "Latest Posts"
1395
+ #~ msgstr "Billets récents"
1396
+
1397
+ #~ msgid "on Facebook"
1398
+ #~ msgstr "sur Facebook"
1399
+
1400
+ #~ msgid "on Twitter"
1401
+ #~ msgstr "sur Twitter"
1402
+
1403
+ #~ msgid "on Google Plus"
1404
+ #~ msgstr "sur Google Plus"
1405
+
1406
+ #~ msgid "on Flickr"
1407
+ #~ msgstr "sur Flickr"
1408
+
1409
+ #~ msgid "on Vimeo"
1410
+ #~ msgstr "sur Vimeo"
1411
+
1412
+ #~ msgid "on linkedin"
1413
+ #~ msgstr "sur linkedin"
1414
+
1415
+ #~ msgid "on Dribbble"
1416
+ #~ msgstr "sur Dribbble"
1417
+
1418
+ #~ msgid "on Pinterest"
1419
+ #~ msgstr "sur Pinterest"
1420
+
1421
+ #~ msgid "on Instagram"
1422
+ #~ msgstr "sur Instagram"
1423
+
1424
+ #~ msgid "Latest posts from"
1425
+ #~ msgstr "Billets récents de"
1426
+
1427
+ #~ msgid "Install Required Plugins"
1428
+ #~ msgstr "Installer les extensions requises"
1429
+
1430
+ #~ msgid "Install Plugins"
1431
+ #~ msgstr "Installer les extensions"
1432
+
1433
+ #~ msgid "Installing Plugin: %s"
1434
+ #~ msgstr "Installation de l'extension : %s"
1435
+
1436
+ #~ msgid "Something went wrong."
1437
+ #~ msgstr "Il y a eu un problème."
1438
+
1439
+ #~ msgid "Return to Required Plugins Installer"
1440
+ #~ msgstr "Retourner à l'installer des extensions requises"
1441
+
1442
+ #~ msgid "Return to the dashboard"
1443
+ #~ msgstr "Retourner au tableau de bord"
1444
+
1445
+ #~ msgid "Plugin activated successfully."
1446
+ #~ msgstr "Extension activée avec succès."
1447
+
1448
+ #, fuzzy
1449
+ #~ msgid "The following plugin was activated successfully:"
1450
+ #~ msgid_plural "The following plugins were activated successfully:"
1451
+ #~ msgstr[0] "L'extension suivante a été activée avec succès :"
1452
+ #~ msgstr[1] "L'extension suivante a été activée avec succès :"
1453
+
1454
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1455
+ #~ msgstr ""
1456
+ #~ "Toutes les extensions ont été installées et activées avec succès. %1$s"
1457
+
1458
+ #~ msgid "Dismiss this notice"
1459
+ #~ msgstr "Cacher cet avis"
1460
+
1461
+ #~ msgid "External Link"
1462
+ #~ msgstr "Lien externe"
1463
+
1464
+ #~ msgid "Private Repository"
1465
+ #~ msgstr "Logithèque privée"
1466
+
1467
+ #~ msgid "Pre-Packaged"
1468
+ #~ msgstr "Préparé"
1469
+
1470
+ #~ msgid "WordPress Repository"
1471
+ #~ msgstr "Logithèque WordPress"
1472
+
1473
+ #~ msgid "Required"
1474
+ #~ msgstr "Requis"
1475
+
1476
+ #~ msgid "Recommended"
1477
+ #~ msgstr "Recommandé"
1478
+
1479
+ #~ msgid "Not Installed"
1480
+ #~ msgstr "Pas installé"
1481
+
1482
+ #~ msgid "Installed But Not Activated"
1483
+ #~ msgstr "Installé mais inactif"
1484
+
1485
+ #~ msgid ""
1486
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
1487
+ #~ "Dashboard\">Return to the Dashboard</a>"
1488
+ #~ msgstr ""
1489
+ #~ "Aucun extension à installer ou à activer. <a href=\"%1$s\" title="
1490
+ #~ "\"Retourner au tableau de bord\">Retourner au tableau de bord</a>"
1491
+
1492
+ #~ msgid "Plugin"
1493
+ #~ msgstr "Extension"
1494
+
1495
+ #~ msgid "Source"
1496
+ #~ msgstr "Source"
1497
+
1498
+ #~ msgid "Status"
1499
+ #~ msgstr "Statut"
1500
+
1501
+ #~ msgid "Install"
1502
+ #~ msgstr "Installer"
1503
+
1504
+ #~ msgid "Activate"
1505
+ #~ msgstr "Activer"
1506
+
1507
+ #~ msgid "Install package not available."
1508
+ #~ msgstr "Paquet d'installation indisponible."
1509
+
1510
+ #~ msgid ""
1511
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
1512
+ #~ msgstr ""
1513
+ #~ "Téléchargement du paquet d'installation depuis <span class=\"code\">%s</"
1514
+ #~ "span>&#8230;"
1515
+
1516
+ #~ msgid "Unpacking the package&#8230;"
1517
+ #~ msgstr "Déballage du paquet&#8230;"
1518
+
1519
+ #~ msgid "Installing the plugin&#8230;"
1520
+ #~ msgstr "Installation de l'extension&#8230;"
1521
+
1522
+ #~ msgid "Plugin install failed."
1523
+ #~ msgstr "Échec de l'installation de l'extension."
1524
+
1525
+ #~ msgid "Plugin installed successfully."
1526
+ #~ msgstr "Extension installée avec succès."
1527
+
1528
+ #~ msgid "Plugin activation failed."
1529
+ #~ msgstr "Échec de l'activation de l'extension"
1530
+
1531
+ #~ msgid ""
1532
+ #~ "The installation and activation process is starting. This process may "
1533
+ #~ "take a while on some hosts, so please be patient."
1534
+ #~ msgstr ""
1535
+ #~ "Le processus d'installation et d'activation démarre. Cela peut prendre un "
1536
+ #~ "certain temps sur certains ordinateurs, donc s'il vous plaît soyez "
1537
+ #~ "patient."
1538
+
1539
+ #~ msgid "%1$s installed and activated successfully."
1540
+ #~ msgstr "%1$s installé and activaté avec succès."
1541
+
1542
+ #~ msgid "Show Details"
1543
+ #~ msgstr "Afficher les détails"
1544
+
1545
+ #~ msgid "Hide Details"
1546
+ #~ msgstr "Cacher les détails"
1547
+
1548
+ #~ msgid "All installations and activations have been completed."
1549
+ #~ msgstr "Toutes les installations et activations ont été complétées."
1550
+
1551
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
1552
+ #~ msgstr "Installation et activation de l'extension %1$s (%2$d/%3$d)"
1553
+
1554
+ #~ msgid ""
1555
+ #~ "The installation process is starting. This process may take a while on "
1556
+ #~ "some hosts, so please be patient."
1557
+ #~ msgstr ""
1558
+ #~ "Le processus d'installation process démarre. Cela peut prendre un certain "
1559
+ #~ "temps sur certains ordinateurs, donc s'il vous plaît soyez patient."
1560
+
1561
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1562
+ #~ msgstr ""
1563
+ #~ "Il y a eu une erreur pendant l'installation : %1$s: <strong>%2$s</strong>."
1564
+
1565
+ #~ msgid "The installation of %1$s failed."
1566
+ #~ msgstr "L'installation de %1$s a échoué."
1567
+
1568
+ #~ msgid "%1$s installed successfully."
1569
+ #~ msgstr "%1$s installé avec succès."
1570
+
1571
+ #~ msgid "All installations have been completed."
1572
+ #~ msgstr "Toutes les installations ont été complétées."
1573
+
1574
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
1575
+ #~ msgstr "Installation de l'extension %1$s (%2$d/%3$d)"
1576
+
1577
+ #~ msgid "Return to the Dashboard"
1578
+ #~ msgstr "Retourner au tableau de bord"
1579
+
1580
+ #~ msgid "Continued"
1581
+ #~ msgstr "Lire la suite­­"
1582
+
1583
+ #~ msgid "%1$s"
1584
+ #~ msgstr "%1$s"
1585
+
1586
+ #~ msgid "| (Edit)"
1587
+ #~ msgstr "| (Modifier)"
1588
+
1589
+ #~ msgid "Your comment is awaiting moderation."
1590
+ #~ msgstr "Votre commentaire est en attente de modération."
1591
+
1592
+ #~ msgid "View your shopping cart"
1593
+ #~ msgstr "Afficher votre panier d'achats"
1594
+
1595
+ #~ msgid "Your Cart"
1596
+ #~ msgstr "Votre panier d'achats"
1597
+
1598
+ #~ msgid "Previous Post"
1599
+ #~ msgstr "Billet précédent"
1600
+
1601
+ #~ msgid "Next Post"
1602
+ #~ msgstr "Billet suivant"
1603
+
1604
+ #~ msgid "Occupation"
1605
+ #~ msgstr "Profession"
1606
+
1607
+ #~ msgid "Please enter your Occupation."
1608
+ #~ msgstr "Entrez votre occupation"
1609
+
1610
+ #~ msgid "Please enter your Twitter username."
1611
+ #~ msgstr "Entrez votre identifiant Twitter (incluant http://)"
1612
+
1613
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
1614
+ #~ msgstr "Entrez votre url Facebook (incluant http://)"
1615
+
1616
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
1617
+ #~ msgstr "Entrez votre url Google+ (incluant http://)"
1618
+
1619
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
1620
+ #~ msgstr "Entrez votre url Flickr (incluant http://)"
1621
+
1622
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
1623
+ #~ msgstr "Entrez votre url LinkedIn (incluant http://)"
1624
+
1625
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
1626
+ #~ msgstr "Entrez votre url Dribble (incluant http://)"
1627
+
1628
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
1629
+ #~ msgstr "Entrez votre url Pinterest (incluant http://)"
1630
+
1631
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
1632
+ #~ msgstr "Entrez votre url Instagram (incluant http://)"
1633
+
1634
+ #~ msgid "Post Slider Images"
1635
+ #~ msgstr "Images du carrousel du billet"
1636
+
1637
+ #~ msgid "Feature Page Slider Images"
1638
+ #~ msgstr "Images du carrousel de la page En vedette"
1639
+
1640
+ #~ msgid "Remove image"
1641
+ #~ msgstr "Retirer l image"
1642
+
1643
+ #~ msgid "Add images"
1644
+ #~ msgstr "Ajoutes des images"
1645
+
1646
+ #~ msgid "Add to gallery"
1647
+ #~ msgstr "Ajouter à la galerie"
1648
+
1649
+ #~ msgid "Primary Navigation"
1650
+ #~ msgstr "Navigation principale"
1651
+
1652
+ #~ msgid "Secondary Navigation"
1653
+ #~ msgstr "Navigation secondaire"
1654
+
1655
+ #~ msgid "Mobile Navigation"
1656
+ #~ msgstr "Navigation mobile"
1657
+
1658
+ #~ msgid "Topbar Navigation"
1659
+ #~ msgstr "Navigation de la barre supérieure"
1660
+
1661
+ #~ msgid "Footer Navigation"
1662
+ #~ msgstr "Navigation de bas de page"
1663
+
1664
+ #~ msgid "All Blog Posts"
1665
+ #~ msgstr "Toutes les billets du blogue"
1666
+
1667
+ #~ msgid "Text"
1668
+ #~ msgstr "Texte"
1669
+
1670
+ #~ msgid "Display Sidebar?"
1671
+ #~ msgstr "Afficher la barre latérale"
1672
+
1673
+ #~ msgid "Choose if layout is fullwidth or sidebar"
1674
+ #~ msgstr "Choisir la disposition pleine largeur ou avec barre latérale"
1675
+
1676
+ #~ msgid "Author Info"
1677
+ #~ msgstr "Information sur l'auteure ou l'auteur"
1678
+
1679
+ #~ msgid "Display an author info box?"
1680
+ #~ msgstr "Afficher une boîte d'information de l'auteure ou l'auteur ?"
1681
+
1682
+ #~ msgid "Posts Carousel"
1683
+ #~ msgstr "Carrousel de billets"
1684
+
1685
+ #~ msgid "Display a carousel with similar or recent posts?"
1686
+ #~ msgstr "Afficher un carrousel avec des billets similaires ou récents ?"
1687
+
1688
+ #~ msgid "Yes - Display Recent Posts"
1689
+ #~ msgstr "Oui, afficher les billets récents"
1690
+
1691
+ #~ msgid "Yes - Display Similar Posts"
1692
+ #~ msgstr "Oui, afficher les billets similaires"
1693
+
1694
+ #~ msgid "ex. Similar Posts"
1695
+ #~ msgstr "ex. billets similaires"
1696
+
1697
+ #~ msgid "Blog List Options"
1698
+ #~ msgstr "Options de la list de blogues"
1699
+
1700
+ #~ msgid "Blog Category"
1701
+ #~ msgstr "Catégorie de blogue"
1702
+
1703
+ #~ msgid "Select all blog posts or a specific category to show"
1704
+ #~ msgstr ""
1705
+ #~ "Sélectionnez tous les billets du blogue ou une catégorie spécifique à "
1706
+ #~ "afficher"
1707
+
1708
+ #~ msgid "How Many Posts Per Page"
1709
+ #~ msgstr "Combien de billets par page"
1710
+
1711
+ #~ msgid "Display Post Content as:"
1712
+ #~ msgstr "Afficher le contenu du billet comme :"
1713
+
1714
+ #~ msgid "Summary"
1715
+ #~ msgstr "Sommaire"
1716
+
1717
+ #~ msgid "Full"
1718
+ #~ msgstr "Complet"
1719
+
1720
+ #~ msgid "Sidebar Options"
1721
+ #~ msgstr "Options de la barre latérale"
1722
+
1723
+ #~ msgid "Daily Archives: %s"
1724
+ #~ msgstr "Archives quotidiennes : %s"
1725
+
1726
+ #~ msgid "Monthly Archives: %s"
1727
+ #~ msgstr "Archives mensuelles : %s"
1728
+
1729
+ #~ msgid "Yearly Archives: %s"
1730
+ #~ msgstr "Archives annuelles : %s"
1731
+
1732
+ #~ msgid "Author Archives: %s"
1733
+ #~ msgstr "Archives des billets publiés par %s"
1734
+
1735
+ #~ msgid "Search Results for %s"
1736
+ #~ msgstr "Résultats de la recherche pour «%s»"
1737
+
1738
+ #~ msgid "Not Found"
1739
+ #~ msgstr "Page introuvable !"
1740
+
1741
+ #~ msgid "Something went wrong with the plugin API."
1742
+ #~ msgstr "Il y a eu un problème avec l'api de l'extension."
1743
+
1744
+ #~ msgid "All plugins installed and activated successfully. %s"
1745
+ #~ msgstr "Toutes les extensions sont installées et activées avec succès. %s"
1746
+
1747
+ #~ msgid "Primary Sidebar"
1748
+ #~ msgstr "Barre latérale principale"
1749
+
1750
+ #~ msgid "Topbar Widget"
1751
+ #~ msgstr "Widget de la barre supérieure"
1752
+
1753
+ #~ msgid "Footer Column 1"
1754
+ #~ msgstr "Pied de page - colonne 1"
1755
+
1756
+ #~ msgid "Footer Column 2"
1757
+ #~ msgstr "Pied de page - colonne 2"
1758
+
1759
+ #~ msgid "Footer Column 3"
1760
+ #~ msgstr "Pied de page - colonne 3"
1761
+
1762
+ #~ msgid "Footer Column 4"
1763
+ #~ msgstr "Pied de page - colonne 4"
1764
+
1765
+ #~ msgid "Use this widget to add a Vcard to your site"
1766
+ #~ msgstr "Utilisez ce widget pour ajouter un vCard à votre site"
1767
+
1768
+ #~ msgid "Virtue: Contact/Vcard"
1769
+ #~ msgstr "Virtue : Contact / vCard"
1770
+
1771
+ #~ msgid "vCard"
1772
+ #~ msgstr "vCard"
1773
+
1774
+ #~ msgid "Title:"
1775
+ #~ msgstr "Titre :"
1776
+
1777
+ #~ msgid "Company Name:"
1778
+ #~ msgstr "Nom de l'entreprise :"
1779
+
1780
+ #~ msgid "Street Address:"
1781
+ #~ msgstr "Adresse :"
1782
+
1783
+ #~ msgid "City/Locality:"
1784
+ #~ msgstr "Ville / Localité :"
1785
+
1786
+ #~ msgid "State/Region:"
1787
+ #~ msgstr "État / région"
1788
+
1789
+ #~ msgid "Zipcode/Postal Code:"
1790
+ #~ msgstr "Code postal :"
1791
+
1792
+ #, fuzzy
1793
+ #~ msgid "Mobile Telephone:"
1794
+ #~ msgstr "Téléphone :"
1795
+
1796
+ #, fuzzy
1797
+ #~ msgid "Fixed Telephone:"
1798
+ #~ msgstr "Téléphone :"
1799
+
1800
+ #~ msgid "Simple way to add Social Icons"
1801
+ #~ msgstr "Un moyen simple d'ajouter des icônes de réseaux sociaux"
1802
+
1803
+ #~ msgid "Virtue: Social Links"
1804
+ #~ msgstr "Virtue : liens vers les réseaux sociaux"
1805
+
1806
+ #~ msgid "Facebook:"
1807
+ #~ msgstr "Facebook :"
1808
+
1809
+ #~ msgid "Twitter:"
1810
+ #~ msgstr "Twitter :"
1811
+
1812
+ #~ msgid "Instagram:"
1813
+ #~ msgstr "Instagram :"
1814
+
1815
+ #~ msgid "GooglePlus:"
1816
+ #~ msgstr "Google+ :"
1817
+
1818
+ #~ msgid "Flickr:"
1819
+ #~ msgstr "Flickr :"
1820
+
1821
+ #~ msgid "Vimeo:"
1822
+ #~ msgstr "Vimeo :"
1823
+
1824
+ #~ msgid "Youtube:"
1825
+ #~ msgstr "Youtube :"
1826
+
1827
+ #~ msgid "Pinterest:"
1828
+ #~ msgstr "Pinterest :"
1829
+
1830
+ #~ msgid "Dribbble:"
1831
+ #~ msgstr "Dribbble :"
1832
+
1833
+ #~ msgid "Linkedin:"
1834
+ #~ msgstr "Linkedin :"
1835
+
1836
+ #~ msgid "Tumblr:"
1837
+ #~ msgstr "Tumblr :"
1838
+
1839
+ #~ msgid "RSS:"
1840
+ #~ msgstr "RSS :"
1841
+
1842
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
1843
+ #~ msgstr ""
1844
+ #~ "Cela affiche à l'aide de miniatures les billets les plus récents de votre "
1845
+ #~ "site"
1846
+
1847
+ #~ msgid "Virtue: Recent Posts"
1848
+ #~ msgstr "Virtue: Billets récents"
1849
+
1850
+ #~ msgid "Recent Posts"
1851
+ #~ msgstr "Billets récents"
1852
+
1853
+ #~ msgid "Number of posts to show:"
1854
+ #~ msgstr "Nombre de billets à afficher :"
1855
+
1856
+ #~ msgid "Limit to Catagory (Optional):"
1857
+ #~ msgstr "Limiter à la catégorie (optionnel)"
1858
+
1859
+ #~ msgid ""
1860
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
1861
+ #~ msgstr ""
1862
+ #~ "Cela affiche une grille d'images en vedette provenant de nouveaux billets "
1863
+ #~ "ou d'items du portefolio"
1864
+
1865
+ #~ msgid "Virtue: Image Grid"
1866
+ #~ msgstr "Virtue : Grille d'images"
1867
+
1868
+ #~ msgid "Grid Choice:"
1869
+ #~ msgstr "Choix de grille :"
1870
+
1871
+ #~ msgid "Blog Posts"
1872
+ #~ msgstr "Billets du blogue"
1873
+
1874
+ #~ msgid "If Post - Choose Category (Optional):"
1875
+ #~ msgstr "Si c'est un billet, choisir la catégorie (optionnel) :"
1876
+
1877
+ #~ msgid "If Portfolio - Choose Type (Optional):"
1878
+ #~ msgstr "Si c'est un portefolio, choisir le type (optionnel) :"
1879
+
1880
+ #~ msgid "Number of images to show:"
1881
+ #~ msgstr "Nombre d'images à afficher :"
1882
+
1883
+ #~ msgid "This allows for an image and a simple about text."
1884
+ #~ msgstr "Cela permet une image et un simple texte à propos"
1885
+
1886
+ #, fuzzy
1887
+ #~ msgid "Virtue: Image"
1888
+ #~ msgstr "Virtue : Grille d'images"
1889
+
1890
+ #~ msgid "Upload"
1891
+ #~ msgstr "Téléverser"
1892
+
1893
+ #, fuzzy
1894
+ #~ msgid "Image opens in"
1895
+ #~ msgstr "Options de répétition d'image"
1896
+
1897
+ #, fuzzy
1898
+ #~ msgid "Image Link (optional)"
1899
+ #~ msgstr "Options de répétition d'image"
1900
+
1901
+ #, fuzzy
1902
+ #~ msgid "Edit Account"
1903
+ #~ msgstr "Mon compte"
1904
+
1905
+ #, fuzzy
1906
+ #~ msgid "Logout"
1907
+ #~ msgstr "Logo"
1908
+
1909
+ #~ msgid "(Edit)"
1910
+ #~ msgstr "(Modifier)"
1911
+
1912
+ #~ msgid "One Response "
1913
+ #~ msgid_plural "%1$s Responses "
1914
+ #~ msgstr[0] "Une Réponse "
1915
+ #~ msgstr[1] "%1$s Réponses "
1916
+
1917
+ #~ msgid "&larr; Older comments"
1918
+ #~ msgstr "&larr; commentaires plus anciens"
1919
+
1920
+ #~ msgid "Newer comments &rarr;"
1921
+ #~ msgstr "Commentaires plus récents &rarr;"
1922
+
1923
+ #~ msgid "Comments are closed."
1924
+ #~ msgstr "Les commentaires sont fermés."
1925
+
1926
+ #~ msgid "Leave a Reply"
1927
+ #~ msgstr "Laissez un commentaire"
1928
+
1929
+ #~ msgid "Leave a Reply to %s"
1930
+ #~ msgstr "Laissez un commentaire à %s"
1931
+
1932
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
1933
+ #~ msgstr ""
1934
+ #~ "Vous devez être <a href=\"%s\">connecté</a> pour laisser un commentaire."
1935
+
1936
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
1937
+ #~ msgstr "Connecté sous <a href=\"%s/wp-admin/profile.php\">%s</a>."
1938
+
1939
+ #~ msgid "Log out of this account"
1940
+ #~ msgstr "Deconnectez-vous"
1941
+
1942
+ #~ msgid "Log out &raquo;"
1943
+ #~ msgstr "Déconnecté &raquo;"
1944
+
1945
+ #~ msgid " <span>*</span>"
1946
+ #~ msgstr " <span>*</span>"
1947
+
1948
+ #~ msgid "Email (will not be published)"
1949
+ #~ msgstr "Courriel (ne sera pas publié)"
1950
+
1951
+ #~ msgid "Website"
1952
+ #~ msgstr "Site"
1953
+
1954
+ #~ msgid "Submit Comment"
1955
+ #~ msgstr "Envoyer un commentaire"
1956
+
1957
+ #~ msgid "Pages:"
1958
+ #~ msgstr "Pages :"
1959
+
1960
+ #~ msgid "by"
1961
+ #~ msgstr "par"
1962
+
1963
+ #~ msgid "posted in:"
1964
+ #~ msgstr "Classé dans :"
1965
+
1966
+ #~ msgid "By"
1967
+ #~ msgstr "Par"
1968
+
1969
+ #~ msgid "Menu"
1970
+ #~ msgstr "Menu"
1971
+
1972
+ #~ msgid "Recent Projects"
1973
+ #~ msgstr "Projets récents"
1974
+
1975
+ #~ msgid "Similar Posts"
1976
+ #~ msgstr "Billets similaires"
1977
+
1978
+ #~ msgid "Latest from the Blog"
1979
+ #~ msgstr "Dernières nouvelles du blogue"
1980
+
1981
+ #~ msgid "READ MORE"
1982
+ #~ msgstr "Pour en savoir plus"
1983
+
1984
+ #~ msgid "Featured Projects"
1985
+ #~ msgstr "Projets en vedette"
1986
+
1987
+ #~ msgid "Copy and Paste this code into the theme options import feature"
1988
+ #~ msgstr ""
1989
+ #~ "Copiez et collez ce code dans la zone d'importation des options du thème"
1990
+
1991
+ #~ msgid "There are no previous options"
1992
+ #~ msgstr "Il n'y a pas d'options précédentes"
1993
+
1994
+ #~ msgid "Main Settings"
1995
+ #~ msgstr "Réglages principaux"
1996
+
1997
+ #~ msgid "Welcome to Virtue Theme Options"
1998
+ #~ msgstr "Bienvenue aux options du thème Virtue"
1999
+
2000
+ #~ msgid "This theme was developed by"
2001
+ #~ msgstr "Ce thème a été développé par"
2002
+
2003
+ #~ msgid "For theme documentation visit"
2004
+ #~ msgstr "Pour la documentation du thème, visitez"
2005
+
2006
+ #~ msgid "For support please visit"
2007
+ #~ msgstr "Pour du soutien, veuillez visiter"
2008
+
2009
+ #~ msgid "Site Layout Style"
2010
+ #~ msgstr "Style de disposition du site"
2011
+
2012
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2013
+ #~ msgstr "Choisir le style de disposition : encadré ou pleine largeur"
2014
+
2015
+ #~ msgid "Footer Widget Layout"
2016
+ #~ msgstr "Disposition du widget de pied de page"
2017
+
2018
+ #~ msgid "Select how many columns for footer widgets"
2019
+ #~ msgstr "Choisir le nombre de colonnes pour les widgets de pied de page"
2020
+
2021
+ #~ msgid "Logo Options"
2022
+ #~ msgstr "Options du logo"
2023
+
2024
+ #~ msgid "Logo Layout"
2025
+ #~ msgstr "Disposition du logo"
2026
+
2027
+ #~ msgid "Choose how you want your logo to be laid out"
2028
+ #~ msgstr "Choisissez la disposition de votre logo"
2029
+
2030
+ #~ msgid "Logo"
2031
+ #~ msgstr "Logo"
2032
+
2033
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
2034
+ #~ msgstr "Téléversez votre logo. Si laissé vide, le nom du site sear utilisé."
2035
+
2036
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
2037
+ #~ msgstr ""
2038
+ #~ "Téléversez votre logo à double résolution (@2x) pour les écrans «Retina»"
2039
+
2040
+ #~ msgid "Should be twice the pixel size of your normal logo."
2041
+ #~ msgstr "Doit contenir pixel de votre logo normale."
2042
+
2043
+ #~ msgid "Sitename Logo Font"
2044
+ #~ msgstr "Police du logo du nom du site"
2045
+
2046
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
2047
+ #~ msgstr ""
2048
+ #~ "Choisissez la taille et le style de votre nom de site, si vous n'utilisez "
2049
+ #~ "pas de logo."
2050
+
2051
+ #~ msgid "Site Tagline - Below Logo\""
2052
+ #~ msgstr "Slogan du site - sous le logo"
2053
+
2054
+ #~ msgid "An optional line of text below your logo"
2055
+ #~ msgstr "Une ligne de texte optionnelle sous votre logo"
2056
+
2057
+ #~ msgid "Site Tagline Font"
2058
+ #~ msgstr "Police du slogan du site"
2059
+
2060
+ #~ msgid "Choose size and style your site tagline"
2061
+ #~ msgstr "Choisissez la taille et le style de votre slogan de site"
2062
+
2063
+ #~ msgid "Logo Spacing"
2064
+ #~ msgstr "Espacement du logo"
2065
+
2066
+ #~ msgid "Top Spacing"
2067
+ #~ msgstr "Espacement supérieure"
2068
+
2069
+ #~ msgid "Bottom Spacing"
2070
+ #~ msgstr "Espacement inférieur"
2071
+
2072
+ #~ msgid "Left Spacing"
2073
+ #~ msgstr "Espacement à gauche"
2074
+
2075
+ #~ msgid "Right Spacing"
2076
+ #~ msgstr "Espacement à droite"
2077
+
2078
+ #~ msgid "Primary Menu Spacing"
2079
+ #~ msgstr "Espacement du menu principal"
2080
+
2081
+ #~ msgid "Sitewide Banner"
2082
+ #~ msgstr "Bandeau du site"
2083
+
2084
+ #~ msgid "Upload a banner for bottom of header."
2085
+ #~ msgstr "Téléversez un bandeau pour le bas de l'entête."
2086
+
2087
+ #~ msgid "Topbar Settings"
2088
+ #~ msgstr "Réglages de la barre supérieure"
2089
+
2090
+ #~ msgid "Use Topbar?"
2091
+ #~ msgstr "Afficher la barre supérieure ?"
2092
+
2093
+ #~ msgid "Choose to show or hide topbar"
2094
+ #~ msgstr "Choisissez d'afficher ou de cacher la barre supérieure"
2095
+
2096
+ #~ msgid "Use Topbar Icon Menu?"
2097
+ #~ msgstr "Afficher le menu d'icônes de la barre supérieure ?"
2098
+
2099
+ #~ msgid "Choose to show or hide topbar icon Menu"
2100
+ #~ msgstr ""
2101
+ #~ "Choisissez d'afficher ou de cacher le menu d'icônes dans la barre "
2102
+ #~ "supérieure"
2103
+
2104
+ #~ msgid "Topbar Icon Menu"
2105
+ #~ msgstr "Menu d'icônes de la barre supérieure"
2106
+
2107
+ #~ msgid "Choose your icons for the topbar icon menu."
2108
+ #~ msgstr "Choisissez vos icônes pour le menu d'icônes de la barre supérieure."
2109
+
2110
+ #~ msgid "Show Cart total in topbar?"
2111
+ #~ msgstr "Afficher le panier d'achats dans la barre supérieure ?"
2112
+
2113
+ #~ msgid "This only works if using woocommerce"
2114
+ #~ msgstr "Cela ne fonctionne que si vous utilisez WooCommerce"
2115
+
2116
+ #~ msgid "Display Search in Topbar?"
2117
+ #~ msgstr "Afficher la recherche dans la barre supérieure ?"
2118
+
2119
+ #~ msgid "Choose to show or hide search in topbar"
2120
+ #~ msgstr ""
2121
+ #~ "Choisissez d'afficher ou de cacher la recherche dans la barre supérieure"
2122
+
2123
+ #~ msgid "Enable widget area in right of Topbar?"
2124
+ #~ msgstr "Activer la zone de widgets à droite de la barre supérieure ?"
2125
+
2126
+ #~ msgid ""
2127
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2128
+ #~ "the widget area)"
2129
+ #~ msgstr ""
2130
+ #~ "Notez que cela enlevera la recherche (que vous pouver ajouter dans la "
2131
+ #~ "zone de widgets)"
2132
+
2133
+ #~ msgid "Topbar Layout Switch"
2134
+ #~ msgstr "Disposition inversée la barre supérieure"
2135
+
2136
+ #~ msgid "This moves the left items to the right and right items to the left."
2137
+ #~ msgstr ""
2138
+ #~ "Cela déplace les éléments de gauche à droite et ceux de droite à gauche."
2139
+
2140
+ #~ msgid "Slider Settings"
2141
+ #~ msgstr "Réglages du carrousel"
2142
+
2143
+ #~ msgid "Home Page Slider Options"
2144
+ #~ msgstr "Option du carrousel de la page d'accueil"
2145
+
2146
+ #~ msgid "Choose a Home Image Slider"
2147
+ #~ msgstr "Choisissez un carrousel d'images pour la page d'accueil"
2148
+
2149
+ #~ msgid "If you don't want an image slider on your home page choose none."
2150
+ #~ msgstr ""
2151
+ #~ "Si vous ne voulez pas d'un carrousel d'images sur votre page d'accueil, "
2152
+ #~ "choisissez aucun."
2153
+
2154
+ #~ msgid "Use large images for best results."
2155
+ #~ msgstr "Utilisez de grandes images pour de meilleurs résultats."
2156
+
2157
+ #~ msgid "Slider Max Height"
2158
+ #~ msgstr "Hauteur maximale du carrousel"
2159
+
2160
+ #~ msgid "Note: does not work if images are smaller than max."
2161
+ #~ msgstr "Note : ne fonctionne pas si les images sont plus petites."
2162
+
2163
+ #~ msgid "Auto Play?"
2164
+ #~ msgstr "Lecture automatique ?"
2165
+
2166
+ #~ msgid "This determines if a slider automatically scrolls"
2167
+ #~ msgstr "Cela détermine si le carrousel défile automatiquement."
2168
+
2169
+ #~ msgid "Slider Pause Time"
2170
+ #~ msgstr "Délai de défilement"
2171
+
2172
+ #~ msgid "How long to pause on each slide, in milliseconds."
2173
+ #~ msgstr "Durée de pause entre les images, en millisecondes."
2174
+
2175
+ #~ msgid "Transition Type"
2176
+ #~ msgstr "Type de transition"
2177
+
2178
+ #~ msgid "Choose a transition type"
2179
+ #~ msgstr "Choisissez le type de transition"
2180
+
2181
+ #~ msgid "Slider Transition Time"
2182
+ #~ msgstr "Durée de transition du carrousel"
2183
+
2184
+ #~ msgid "How long for slide transitions, in milliseconds."
2185
+ #~ msgstr "Durée des transitions, en millisecondes."
2186
+
2187
+ #~ msgid "Show Captions?"
2188
+ #~ msgstr "Afficher les légendes ?"
2189
+
2190
+ #~ msgid "Choose to show or hide captions"
2191
+ #~ msgstr "Choisir d'afficher ou de cacher les légendes"
2192
+
2193
+ #~ msgid "If your using a video on the home page place video embed code here."
2194
+ #~ msgstr ""
2195
+ #~ "Si vous utilisez une vidéo sur la page d'accueil, placez le code "
2196
+ #~ "d'inclusion de vidéo ici."
2197
+
2198
+ #~ msgid "Mobile Slider"
2199
+ #~ msgstr "Carrousel pour mobile"
2200
+
2201
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
2202
+ #~ msgstr "Créez un carrousel d'accueil plus léger pour l'accès via mobiles."
2203
+
2204
+ #~ msgid "Would you like to use this feature?"
2205
+ #~ msgstr "Voulez-vous utiliser cette fonctionnalité ?"
2206
+
2207
+ #~ msgid ""
2208
+ #~ "Choose if you would like to show a different slider on your home page for "
2209
+ #~ "your mobile visitors."
2210
+ #~ msgstr ""
2211
+ #~ "Choisissez si vous voulez afficher un carrousel différent sur votre page "
2212
+ #~ "d'accueil pour l'accès via mobiles."
2213
+
2214
+ #~ msgid "Choose a Slider for Mobile"
2215
+ #~ msgstr "Choisissez un carrousel pour mobile"
2216
+
2217
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
2218
+ #~ msgstr ""
2219
+ #~ "Choisissez quel carrousel vous souhaitez montrer aux personnes qui "
2220
+ #~ "accèdent au site avec un mobile."
2221
+
2222
+ #~ msgid "Home Layout"
2223
+ #~ msgstr "Disposition de la page d'accueil"
2224
+
2225
+ #~ msgid "Display a sidebar on the Home Page?"
2226
+ #~ msgstr "Afficher une barre latérale sur la page d'accueil ?"
2227
+
2228
+ #~ msgid "This determines if there is a sidebar on the home page."
2229
+ #~ msgstr "Cela détermine si il y a une barre latérale sur la page d'accueil."
2230
+
2231
+ #~ msgid "Choose a Sidebar for your Home Page"
2232
+ #~ msgstr "Choisissez une barre latérale pour votre page d'accueil"
2233
+
2234
+ #, fuzzy
2235
+ #~ msgid "Homepage Layout Manager"
2236
+ #~ msgstr "Disposition de la page d'accueil"
2237
+
2238
+ #~ msgid "Latest Blog Posts"
2239
+ #~ msgstr "Billets récents"
2240
+
2241
+ #~ msgid "Icon Menu"
2242
+ #~ msgstr "Menu d'icônes"
2243
+
2244
+ #~ msgid "Page Content"
2245
+ #~ msgstr "Contenu de la page"
2246
+
2247
+ #~ msgid "Home Blog Settings"
2248
+ #~ msgstr "Réglages du blogue en page d'accueil"
2249
+
2250
+ #~ msgid "Home Blog Title"
2251
+ #~ msgstr "Titre du blogue en page d'accueil"
2252
+
2253
+ #~ msgid "ex: Latest from the blog"
2254
+ #~ msgstr "ex. : Quoi de nouveau sur le blogue"
2255
+
2256
+ #~ msgid "Choose How many posts on Homepage"
2257
+ #~ msgstr "Choisissez le nombre de billets sur la page d'accueil"
2258
+
2259
+ #~ msgid "Limit posts to a Category"
2260
+ #~ msgstr "Limiter les billets à une catégorie"
2261
+
2262
+ #~ msgid "Leave blank to select all"
2263
+ #~ msgstr "Laissez vide pour tout sélectionner"
2264
+
2265
+ #~ msgid "Home Portfolio Carousel Settings"
2266
+ #~ msgstr "Réglages du carrousel de portefolio de la page d'accueil"
2267
+
2268
+ #~ msgid "Home Portfolio Carousel title"
2269
+ #~ msgstr "Titre du carrousel de portefolio de la page d'accueil"
2270
+
2271
+ #~ msgid "ex: Portfolio Carousel title"
2272
+ #~ msgstr "ex. : titre du carrousel de portefolio"
2273
+
2274
+ #~ msgid "Portfolio Carousel Category Type"
2275
+ #~ msgstr "Type de catégorie de carrousel de portefolio"
2276
+
2277
+ #~ msgid "Leave blank to select all types"
2278
+ #~ msgstr "Laissez vide pour sélectionner tous les types"
2279
+
2280
+ #~ msgid "Choose how many portfolio items are in carousel"
2281
+ #~ msgstr "Choisissez le nombre d'items du portefolio sont dans le carrousel"
2282
+
2283
+ #~ msgid "Portfolio Carousel Order by"
2284
+ #~ msgstr "Classer le carrousel de portefolio par"
2285
+
2286
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
2287
+ #~ msgstr "Choisissez l'ordre des items du portefolio dans le carrousel."
2288
+
2289
+ #~ msgid "Display Portfolio Types under Title"
2290
+ #~ msgstr "Afficher les types de portefolio sous le titre"
2291
+
2292
+ #~ msgid "Home Icon Menu"
2293
+ #~ msgstr "Menu d'icônes de la page d'accueil"
2294
+
2295
+ #~ msgid "Choose your icons for the icon menu."
2296
+ #~ msgstr "Choisissez vos icônes pour le menu d'icônes."
2297
+
2298
+ #~ msgid "Choose how many columns in each row"
2299
+ #~ msgstr "Choisissez le nombre de colonnes dans chaque rangée"
2300
+
2301
+ #~ msgid "Page Content Options"
2302
+ #~ msgstr "Options de contenu de la page"
2303
+
2304
+ #~ msgid "Latest Post Display"
2305
+ #~ msgstr "Affichage des billets récents"
2306
+
2307
+ #~ msgid ""
2308
+ #~ "If Latest Post page is font page. Choose to show full post or post "
2309
+ #~ "excerpt."
2310
+ #~ msgstr ""
2311
+ #~ "Si la page Dernières billets est la page d'accueil. Choisissez d'afficher "
2312
+ #~ "le billet ou un extrait."
2313
+
2314
+ #~ msgid "Shop Settings"
2315
+ #~ msgstr "Réglages de la boutique"
2316
+
2317
+ #~ msgid "Shop Archive Page Settings"
2318
+ #~ msgstr "Réglages de la page d'archive de la boutique"
2319
+
2320
+ #~ msgid "Display the sidebar on shop archives?"
2321
+ #~ msgstr "Afficher la barre latérale sur les archives de la boutique ?"
2322
+
2323
+ #~ msgid ""
2324
+ #~ "This determines if there is a sidebar on the shop and category pages."
2325
+ #~ msgstr ""
2326
+ #~ "Cela détermine si il y a une barre latérale sur les pages de produits de "
2327
+ #~ "la boutique."
2328
+
2329
+ #~ msgid "Choose a Sidebar for your shop page"
2330
+ #~ msgstr "Choisissez une barre latérale pour votre page boutique"
2331
+
2332
+ #~ msgid "How many products per page"
2333
+ #~ msgstr "Combien de produits par page"
2334
+
2335
+ #~ msgid "Show Ratings in Shop and Category Pages"
2336
+ #~ msgstr "Montrer les cotes dans les pages de produits de la boutique"
2337
+
2338
+ #~ msgid ""
2339
+ #~ "This determines if the rating is displayed in the product archive pages"
2340
+ #~ msgstr ""
2341
+ #~ "Cela détermine si la cote est affichée dans les pages de produits de la "
2342
+ #~ "boutique"
2343
+
2344
+ #~ msgid "Shop Product Title Settings"
2345
+ #~ msgstr "Réglages du titre des pages de produits de la boutique"
2346
+
2347
+ #~ msgid "Shop & archive Product title Font"
2348
+ #~ msgstr "Police du titre des pages de produits de la boutique"
2349
+
2350
+ #~ msgid ""
2351
+ #~ "Choose Size and Style for product titles on category and archive pages."
2352
+ #~ msgstr ""
2353
+ #~ "Choisissez la taille et le style pour les titres de produits sur les "
2354
+ #~ "pages de produits de la boutique."
2355
+
2356
+ #~ msgid "Set Product Title to Uppercase?"
2357
+ #~ msgstr "Mettre le titre du produit en lettres capitales"
2358
+
2359
+ #~ msgid "This makes your product titles uppercase on Category pages"
2360
+ #~ msgstr ""
2361
+ #~ "Cela met les titres de vos produits en capitales sur les pages de "
2362
+ #~ "produits de la boutique"
2363
+
2364
+ #~ msgid "Product title Min Height"
2365
+ #~ msgstr "Hauteur minimal du titre de produits"
2366
+
2367
+ #~ msgid ""
2368
+ #~ "If your titles are long increase this to help align your products height."
2369
+ #~ msgstr ""
2370
+ #~ "Si vos titres sont longs augmenter cette valeur pour aider à aligner la "
2371
+ #~ "hauteur de votre produits."
2372
+
2373
+ #~ msgid "Product Image Sizes"
2374
+ #~ msgstr "Tailles des images de produits"
2375
+
2376
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2377
+ #~ msgstr ""
2378
+ #~ "Permettre le recadrage des images de produits sur les pages du catalogue"
2379
+
2380
+ #~ msgid ""
2381
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2382
+ #~ "recommended width: 270px for Catalog Images"
2383
+ #~ msgstr ""
2384
+ #~ "Si désactivé, les dimensions de l'image sont définies par les paramètres "
2385
+ #~ "de WooCommerce - largeur recommandée : 270px pour les images du catalogue"
2386
+
2387
+ #~ msgid "Enable Product Image Crop on product Page"
2388
+ #~ msgstr ""
2389
+ #~ "Permettre le recadrage des images de produits sur les pages de produits"
2390
+
2391
+ #~ msgid ""
2392
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2393
+ #~ "recommended width: 468px for Single Product Image"
2394
+ #~ msgstr ""
2395
+ #~ "Si désactivé, les dimensions de l'image sont définies par les paramètres "
2396
+ #~ "de WooCommerce - largeur recommandée : 468px pour les images sur les "
2397
+ #~ "pages produits"
2398
+
2399
+ #~ msgid "Product Page Settings"
2400
+ #~ msgstr "Réglages des pages produits"
2401
+
2402
+ #~ msgid "Display product tabs?"
2403
+ #~ msgstr "Afficher les onglets sur les pages produits ?"
2404
+
2405
+ #~ msgid "This determines if product tabs are displayed"
2406
+ #~ msgstr "Cela détermine si les onglets sont affichés sur les pages produits"
2407
+
2408
+ #~ msgid "Display related products?"
2409
+ #~ msgstr "Afficher les produits apparentés ?"
2410
+
2411
+ #~ msgid "This determines related products are displayed"
2412
+ #~ msgstr ""
2413
+ #~ "Cela détermine si les produits apparentés sont affichés sur les pages "
2414
+ #~ "produits"
2415
+
2416
+ #~ msgid "Basic Styling"
2417
+ #~ msgstr "Style de base"
2418
+
2419
+ #~ msgid "Basic Stylng"
2420
+ #~ msgstr "Style de base"
2421
+
2422
+ #~ msgid "Theme Skin Stylesheet"
2423
+ #~ msgstr "Feuille de style de l'habillage du thème"
2424
+
2425
+ #~ msgid ""
2426
+ #~ "Note* changes made in options panel will override this stylesheet. "
2427
+ #~ "Example: Colors set in typography."
2428
+ #~ msgstr ""
2429
+ #~ "Note : les modifications apportées dans les panneaux d'options ont "
2430
+ #~ "priorité sur cette feuille de style. Exemple: les couleurs établies dans "
2431
+ #~ "la section Typographie."
2432
+
2433
+ #~ msgid "Choose the default Highlight color for your site."
2434
+ #~ msgstr "Choisissez la couleur de rehaussement par défaut pour le site."
2435
+
2436
+ #~ msgid "20% lighter than Primary Color"
2437
+ #~ msgstr "20% plus clair que la couleur principale"
2438
+
2439
+ #~ msgid "This is used for hover effects"
2440
+ #~ msgstr "Ceci est utilisé pour les effets de survol"
2441
+
2442
+ #~ msgid "Sitewide Gray Fonts"
2443
+ #~ msgstr "Polices grises pour l'ensemble du site"
2444
+
2445
+ #~ msgid "Footer Font Color"
2446
+ #~ msgstr "Couleur de police de pied de page"
2447
+
2448
+ #~ msgid "Advanced Styling"
2449
+ #~ msgstr "Style avancé"
2450
+
2451
+ #~ msgid "Main Content Background"
2452
+ #~ msgstr "Fond du contenu principal"
2453
+
2454
+ #~ msgid "Upload background image or texture"
2455
+ #~ msgstr "Téléversez une image ou une texture"
2456
+
2457
+ #~ msgid "Image repeat options"
2458
+ #~ msgstr "Options de répétition d'image"
2459
+
2460
+ #~ msgid "X image placement options"
2461
+ #~ msgstr "Option de positionnement horizontal de l'image"
2462
+
2463
+ #~ msgid "Y image placement options"
2464
+ #~ msgstr "Option de positionnement vertical de l'image"
2465
+
2466
+ #~ msgid "Topbar Background"
2467
+ #~ msgstr "Fond de la barre supérieure"
2468
+
2469
+ #~ msgid "Header Background"
2470
+ #~ msgstr "Fond de l'entête"
2471
+
2472
+ #~ msgid "Secondary Menu Background"
2473
+ #~ msgstr "Fond du menu secondaire"
2474
+
2475
+ #~ msgid "Mobile Menu Background"
2476
+ #~ msgstr "Fond du menu mobile"
2477
+
2478
+ #~ msgid "Footer Background"
2479
+ #~ msgstr "Fond du pied de page"
2480
+
2481
+ #~ msgid "Body Background"
2482
+ #~ msgstr "Fond du corps"
2483
+
2484
+ #~ msgid "Fixed or Scroll"
2485
+ #~ msgstr "Fixe ou défilant"
2486
+
2487
+ #~ msgid "Typography"
2488
+ #~ msgstr "Typographie"
2489
+
2490
+ #~ msgid "H1 Headings"
2491
+ #~ msgstr "Titre H1"
2492
+
2493
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
2494
+ #~ msgstr ""
2495
+ #~ "Choisissez la taille et le style pour les titres H1. Ceci défini le style "
2496
+ #~ "de vos titres de page."
2497
+
2498
+ #~ msgid "H2 Headings"
2499
+ #~ msgstr "Titre H2"
2500
+
2501
+ #~ msgid "Choose Size and Style for h2"
2502
+ #~ msgstr "Choisissez la taille et le style pour les titres H2"
2503
+
2504
+ #~ msgid "H3 Headings"
2505
+ #~ msgstr "Titre H3"
2506
+
2507
+ #~ msgid "Choose Size and Style for h3"
2508
+ #~ msgstr "Choisissez la taille et le style pour les titres H3"
2509
+
2510
+ #~ msgid "H4 Headings"
2511
+ #~ msgstr "Titre H4"
2512
+
2513
+ #~ msgid "Choose Size and Style for h4"
2514
+ #~ msgstr "Choisissez la taille et le style pour les titres H4"
2515
+
2516
+ #~ msgid "H5 Headings"
2517
+ #~ msgstr "Titre H5"
2518
+
2519
+ #~ msgid "Choose Size and Style for h5"
2520
+ #~ msgstr "Choisissez la taille et le style pour les titres H5"
2521
+
2522
+ #~ msgid "Body Font Options"
2523
+ #~ msgstr "Options de police de corps"
2524
+
2525
+ #~ msgid "Body Font"
2526
+ #~ msgstr "Police de corps"
2527
+
2528
+ #~ msgid "Choose Size and Style for paragraphs"
2529
+ #~ msgstr "Choisissez la taille et le style des paragraphes"
2530
+
2531
+ #~ msgid "Menu Settings"
2532
+ #~ msgstr "Réglages de menu"
2533
+
2534
+ #~ msgid "Primary Menu Options"
2535
+ #~ msgstr "Options du menu principal"
2536
+
2537
+ #~ msgid "Primary Menu Font"
2538
+ #~ msgstr "Police du menu principal"
2539
+
2540
+ #~ msgid "Choose Size and Style for primary menu"
2541
+ #~ msgstr "Choisissez la taille et le style du menu principal"
2542
+
2543
+ #~ msgid "Secondary Menu Options"
2544
+ #~ msgstr "Option du menu secondaire"
2545
+
2546
+ #~ msgid "Secondary Menu Font"
2547
+ #~ msgstr "Police du menu secondaire"
2548
+
2549
+ #~ msgid "Choose Size and Style for secondary menu"
2550
+ #~ msgstr "Choisissez la taille et le style du menu secondaire"
2551
+
2552
+ #~ msgid "Mobile Menu Options"
2553
+ #~ msgstr "Option du menu mobile"
2554
+
2555
+ #~ msgid "Mobile Menu Font"
2556
+ #~ msgstr "Police du menu mobile"
2557
+
2558
+ #~ msgid "Choose Size and Style for Mobile Menu"
2559
+ #~ msgstr "Choisissez la taille et le style du menu mobile"
2560
+
2561
+ #~ msgid "Misc Settings"
2562
+ #~ msgstr "Réglages divers"
2563
+
2564
+ #~ msgid ""
2565
+ #~ "This sets the link in every single portfolio page. *note: You still have "
2566
+ #~ "to set the page template to portfolio."
2567
+ #~ msgstr ""
2568
+ #~ "Ceci définit le lien sur chaque page de portefolio. *Attention : Vous "
2569
+ #~ "devez quand même régler le modèle de page à «portefolio»."
2570
+
2571
+ #~ msgid "Allow Comments on Portfolio Posts"
2572
+ #~ msgstr "Autoriser les commentaires sur les billets de type portefolio"
2573
+
2574
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
2575
+ #~ msgstr ""
2576
+ #~ "Activez pour permettre les commentaires sur les billets de type portefolio"
2577
+
2578
+ #~ msgid "Hide Image Border"
2579
+ #~ msgstr "Cacher la bordure de l'image"
2580
+
2581
+ #~ msgid "Choose to show or hide image border"
2582
+ #~ msgstr "Choisissez d'afficher ou de cacher la bordure des images"
2583
+
2584
+ #~ msgid "Blog Archive"
2585
+ #~ msgstr "Archive du blogue"
2586
+
2587
+ #~ msgid "Choose to show full post or post excerpt."
2588
+ #~ msgstr "Choisir d'afficher le billet au complet ou juste un extrait."
2589
+
2590
+ #~ msgid "Show Comments Closed Text?"
2591
+ #~ msgstr "Afficher l'avis de commentaires clos ?"
2592
+
2593
+ #~ msgid "Choose to show or hide comments closed alert below posts."
2594
+ #~ msgstr ""
2595
+ #~ "Choisir d'afficher ou de cacher l'avis de fermeture des commentaires sous "
2596
+ #~ "les billets."
2597
+
2598
+ #~ msgid "Show Author Icon with posts?"
2599
+ #~ msgstr "Afficher l'avatar de la personne auteure avec les billets ?"
2600
+
2601
+ #~ msgid "Choose to show or hide author icon under post title."
2602
+ #~ msgstr ""
2603
+ #~ "Choisissez d'afficher ou de cacher l'avatar de la personne auteure sous "
2604
+ #~ "le titre du billet."
2605
+
2606
+ #, fuzzy
2607
+ #~ msgid ""
2608
+ #~ "Choose to show or hide previous and next post links in the footer of a "
2609
+ #~ "single post."
2610
+ #~ msgstr ""
2611
+ #~ "Choisissez d'afficher ou de cacher l'avatar de la personne auteure sous "
2612
+ #~ "le titre du billet."
2613
+
2614
+ #~ msgid "Custom Favicon"
2615
+ #~ msgstr "Favicône personnalisée"
2616
+
2617
+ #~ msgid ""
2618
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
2619
+ #~ "favicon."
2620
+ #~ msgstr ""
2621
+ #~ "Téléversez une image de 16px par 16px de format png, gif ou ico qui "
2622
+ #~ "représentera votre site."
2623
+
2624
+ #~ msgid "Sets the email for the contact page email form."
2625
+ #~ msgstr ""
2626
+ #~ "Défini l'adresse de courriel pour le formulaire de la page de contact."
2627
+
2628
+ #~ msgid "Footer Copyright Text"
2629
+ #~ msgstr "Avis de protection du droit d'auteur du pied de page"
2630
+
2631
+ #~ msgid ""
2632
+ #~ "Write your own copyright text here. You can use the following shortcodes "
2633
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
2634
+ #~ msgstr ""
2635
+ #~ "Écrivez votre propre avis de protection du droit d'auteur ici. Vous "
2636
+ #~ "pouvez utiliser les balises-macro («shortcodes») suivantes dans votre "
2637
+ #~ "texte de bas de page : [copyright] [site-name] [the-year]"
2638
+
2639
+ #~ msgid "Blog Post Summary Default"
2640
+ #~ msgstr "Valeur par défaut du sommaire de billet"
2641
+
2642
+ #, fuzzy
2643
+ #~ msgid "Blog Post Head Content Default"
2644
+ #~ msgstr "Valeurs par défaut des billets"
2645
+
2646
+ #~ msgid "Create Sidebars"
2647
+ #~ msgstr "Creation de barres latérales"
2648
+
2649
+ #~ msgid "Create Custom Sidebars"
2650
+ #~ msgstr "Créer des barres latérales personnalisées"
2651
+
2652
+ #~ msgid "Type new sidebar name into textbox"
2653
+ #~ msgstr "Entrez le nouveau nom de la barre latérale dans la zone de texte"
2654
+
2655
+ #~ msgid "Extra Sidebar"
2656
+ #~ msgstr "Barre latérale extra"
2657
+
2658
+ #~ msgid "Wordpress Galleries"
2659
+ #~ msgstr "Galeries WordPress"
2660
+
2661
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
2662
+ #~ msgstr "Permettre aux galeries Virtue de remplacer celles de WordPress"
2663
+
2664
+ #~ msgid ""
2665
+ #~ "Disable this if using a plugin to customize galleries, for example "
2666
+ #~ "jetpack tiled gallery."
2667
+ #~ msgstr ""
2668
+ #~ "Désactivez cette option si vous utilisez une extensions pour "
2669
+ #~ "personnaliser des galeries, par exemple jetpack."
2670
+
2671
+ #~ msgid "Advanced Settings"
2672
+ #~ msgstr "Réglages avancés"
2673
+
2674
+ #~ msgid "Custom CSS Box"
2675
+ #~ msgstr "Encadré de CSS personnalisé"
2676
+
2677
+ #~ msgid "Custom CSS"
2678
+ #~ msgstr "CSS personnalisé"
2679
+
2680
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
2681
+ #~ msgstr ""
2682
+ #~ "Ajouter rapidement un peu de CSS à votre thème en l'ajoutant à cette zone."
2683
+
2684
+ #~ msgid "Theme Update Import"
2685
+ #~ msgstr "Mise à jour des options du thème"
2686
+
2687
+ #~ msgid ""
2688
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
2689
+ #~ "theme options."
2690
+ #~ msgstr ""
2691
+ #~ "Si vous faite la mise à jour depuis la version 1.5.6 ou antérieure, "
2692
+ #~ "utilisez ce script pour mettre à jour les options du thème."
2693
+
2694
+ #~ msgid "Turn on and save to start script"
2695
+ #~ msgstr "Activez et enregistrez les modification pour démarrer le script"
2696
+
2697
+ #~ msgid "If using a child theme enter child theme folder"
2698
+ #~ msgstr ""
2699
+ #~ "Si vous utilisez un thème dérivé (child theme), entrez le dossier du "
2700
+ #~ "thème dérivé"
2701
+
2702
+ #~ msgid "Theme Options"
2703
+ #~ msgstr "Options du thème"
2704
+
2705
+ #~ msgid ""
2706
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
2707
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
2708
+ #~ msgstr ""
2709
+ #~ "Merci d'utiliser le thème Virtue par <a href=\"http://kadencethemes.com/"
2710
+ #~ "\" target=\"_blank\">Kadence Themes</a>."
2711
+
2712
+ #, fuzzy
2713
+ #~ msgid "Icon"
2714
+ #~ msgstr "Ajouter une icône"
2715
+
2716
+ #, fuzzy
2717
+ #~ msgid "New %s"
2718
+ #~ msgstr "Nouveau "
2719
+
2720
+ #~ msgid "Upload Icon"
2721
+ #~ msgstr "Téléversez l'icône"
2722
+
2723
+ #~ msgid "Select an Icon"
2724
+ #~ msgstr "Choisir une icône"
2725
+
2726
+ #~ msgid "URL"
2727
+ #~ msgstr "URL"
2728
+
2729
+ #~ msgid "Description"
2730
+ #~ msgstr "Description"
2731
+
2732
+ #~ msgid "Add Icon"
2733
+ #~ msgstr "Ajouter une icône"
2734
+
2735
+ #, fuzzy
2736
+ #~ msgid "Slide"
2737
+ #~ msgstr "Ajouter une image"
2738
+
2739
+ #~ msgid "Slide Link"
2740
+ #~ msgstr "Lien du carrousel"
2741
+
2742
+ #~ msgid "Delete Slide"
2743
+ #~ msgstr "Effacer le carrousel"
2744
+
2745
+ #, fuzzy
2746
+ #~ msgid "Add %s"
2747
+ #~ msgstr "Ajoutes des images"
2748
+
2749
+ #~ msgid "Back to"
2750
+ #~ msgstr "De retour à"
2751
+
2752
+ #~ msgid "Sale!"
2753
+ #~ msgstr "Vente !"
2754
+
2755
+ #~ msgid ""
2756
+ #~ "You have changes that are not saved. Would you like to save them now?"
2757
+ #~ msgstr ""
2758
+ #~ "Vous avez des modifications qui ne sont pas enregistrés. Souhaitez-vous "
2759
+ #~ "les enregistrer maintenant ?"
2760
+
2761
+ #~ msgid "Are you sure? Resetting will lose all custom values."
2762
+ #~ msgstr ""
2763
+ #~ "Etes-vous sûr ? La réinitialisation fera perdre toutes les valeurs "
2764
+ #~ "personnalisées."
2765
+
2766
+ #~ msgid ""
2767
+ #~ "Your current options will be replaced with the values of this preset. "
2768
+ #~ "Would you like to proceed?"
2769
+ #~ msgstr ""
2770
+ #~ "Vos options actuelles seront remplacées par les valeurs de ce préréglage. "
2771
+ #~ "Voulez-vous continuer ?"
2772
+
2773
+ #, fuzzy
2774
+ #~ msgid ""
2775
+ #~ "You have changes that are not saved. Would you like to save them now?"
2776
+ #~ msgstr ""
2777
+ #~ "Vous avez des modifications qui ne sont pas enregistrés. Souhaitez-vous "
2778
+ #~ "les enregistrer maintenant ?"
2779
+
2780
+ #, fuzzy
2781
+ #~ msgid "Are you sure? Resetting will lose all custom values."
2782
+ #~ msgstr ""
2783
+ #~ "Etes-vous sûr ? La réinitialisation fera perdre toutes les valeurs "
2784
+ #~ "personnalisées."
2785
+
2786
+ #, fuzzy
2787
+ #~ msgid ""
2788
+ #~ "Your current options will be replaced with the values of this preset. "
2789
+ #~ "Would you like to proceed?"
2790
+ #~ msgstr ""
2791
+ #~ "Vos options actuelles seront remplacées par les valeurs de ce préréglage. "
2792
+ #~ "Voulez-vous continuer ?"
2793
+
2794
+ #~ msgid "Options panel created using %1$s"
2795
+ #~ msgstr "Panneau d'options créé avec %1$s"
2796
+
2797
+ #~ msgid "Redux Framework"
2798
+ #~ msgstr "Infrastructure d'application Redux"
2799
+
2800
+ #~ msgid "Options"
2801
+ #~ msgstr "Options"
2802
+
2803
+ #~ msgid "Are you sure? Resetting will lose all custom values in this section."
2804
+ #~ msgstr ""
2805
+ #~ "Etes-vous sûr ? La réinitialisation fera perdre toutes les valeurs "
2806
+ #~ "personnalisées dans cette section."
2807
+
2808
+ #, fuzzy
2809
+ #~ msgid "Please Wait"
2810
+ #~ msgstr "Veuillez réessayer"
2811
+
2812
+ #~ msgid ""
2813
+ #~ "Warning- This options panel will not work properly without javascript!"
2814
+ #~ msgstr ""
2815
+ #~ "Avertissement - Ce panneau d'options ne fonctionnera pas correctement "
2816
+ #~ "sans javascript !"
2817
+
2818
+ #~ msgid "Expand"
2819
+ #~ msgstr "Afficher"
2820
+
2821
+ #~ msgid "Save Changes"
2822
+ #~ msgstr "Enregistrer les modifications"
2823
+
2824
+ #~ msgid "Reset Section"
2825
+ #~ msgstr "Réinitialiser la section"
2826
+
2827
+ #~ msgid "Reset All"
2828
+ #~ msgstr "Réinitialiser tout"
2829
+
2830
+ #~ msgid "Working..."
2831
+ #~ msgstr "En cours..."
2832
+
2833
+ #~ msgid "Settings Imported!"
2834
+ #~ msgstr "Réglages importés !"
2835
+
2836
+ #~ msgid "Settings Saved!"
2837
+ #~ msgstr "Réglages enregistrés !"
2838
+
2839
+ #~ msgid "Settings have changed, you should save them!"
2840
+ #~ msgstr "Les réglages ont changé, vous devriez les enregistrer !"
2841
+
2842
+ #~ msgid "error(s) were found!"
2843
+ #~ msgstr "des erreurs ont été trouvées !"
2844
+
2845
+ #~ msgid "warning(s) were found!"
2846
+ #~ msgstr "Avertissement(s) ont été trouvé !"
2847
+
2848
+ #~ msgid "System Info"
2849
+ #~ msgstr "Informations du système"
2850
+
2851
+ #~ msgid "Transparent"
2852
+ #~ msgstr "Transparent"
2853
+
2854
+ #~ msgid "Background Repeat"
2855
+ #~ msgstr "Répétition du fond"
2856
+
2857
+ #~ msgid "Background Clip"
2858
+ #~ msgstr "Recadrage du fond"
2859
+
2860
+ #~ msgid "Background Origin"
2861
+ #~ msgstr "Origine du fond"
2862
+
2863
+ #~ msgid "Background Size"
2864
+ #~ msgstr "Taille du fond"
2865
+
2866
+ #~ msgid "Background Attachment"
2867
+ #~ msgstr "Fixation du fond"
2868
+
2869
+ #~ msgid "Background Position"
2870
+ #~ msgstr "Position du fond"
2871
+
2872
+ #~ msgid "No media selected"
2873
+ #~ msgstr "Aucun média sélectioné"
2874
+
2875
+ #~ msgid "Add More"
2876
+ #~ msgstr "Ajouter plus"
2877
+
2878
+ #~ msgid "Select an item"
2879
+ #~ msgstr "Choisir un item"
2880
+
2881
+ #~ msgid "No items of this type were found."
2882
+ #~ msgstr "Aucun item de ce type disponible."
2883
+
2884
+ #, fuzzy
2885
+ #~ msgid "Font Family"
2886
+ #~ msgstr "Famille de polices"
2887
+
2888
+ #~ msgid "Font family"
2889
+ #~ msgstr "Famille de polices"
2890
+
2891
+ #~ msgid "Backup Font Family"
2892
+ #~ msgstr "Famille de police de remplacement"
2893
+
2894
+ #~ msgid "Font style"
2895
+ #~ msgstr "Style de la police"
2896
+
2897
+ #~ msgid "Font subsets"
2898
+ #~ msgstr "Sous-ensembles de police"
2899
+
2900
+ #, fuzzy
2901
+ #~ msgid "Font Subsets"
2902
+ #~ msgstr "Sous-ensembles de police"
2903
+
2904
+ #~ msgid "Subsets"
2905
+ #~ msgstr "Sous-ensembles"
2906
+
2907
+ #~ msgid "Font script"
2908
+ #~ msgstr "Système d'écriture de la police"
2909
+
2910
+ #, fuzzy
2911
+ #~ msgid "Font Variant"
2912
+ #~ msgstr "Système d'écriture de la police"
2913
+
2914
+ #, fuzzy
2915
+ #~ msgid "Text Decoration"
2916
+ #~ msgstr "Réinitialiser la section"
2917
+
2918
+ #, fuzzy
2919
+ #~ msgid "Font Size"
2920
+ #~ msgstr "Style de la police"
2921
+
2922
+ #~ msgid "Size"
2923
+ #~ msgstr "Taille"
2924
+
2925
+ #, fuzzy
2926
+ #~ msgid "Line Height"
2927
+ #~ msgstr "Hauteur"
2928
+
2929
+ #~ msgid "Word Spacing"
2930
+ #~ msgstr "Espacement des mots"
2931
+
2932
+ #~ msgid "Letter Spacing"
2933
+ #~ msgstr "Espacement des lettres"
2934
+
2935
+ #~ msgid "Font color"
2936
+ #~ msgstr "Couleur de police"
2937
+
2938
+ #~ msgid "Standard Fonts"
2939
+ #~ msgstr "Polices standards"
2940
+
2941
+ #~ msgid "Google Webfonts"
2942
+ #~ msgstr "Polices web de Google"
2943
+
2944
+ #~ msgid "Import / Export Options"
2945
+ #~ msgstr "Options d'importation et d'exportation"
2946
+
2947
+ #~ msgid "Import Options"
2948
+ #~ msgstr "Options d'importation"
2949
+
2950
+ #~ msgid "Import from file"
2951
+ #~ msgstr "Importation depuis un fichier"
2952
+
2953
+ #~ msgid "Import from URL"
2954
+ #~ msgstr "Importation depuis une URL"
2955
+
2956
+ #~ msgid ""
2957
+ #~ "Input your backup file below and hit Import to restore your sites options "
2958
+ #~ "from a backup."
2959
+ #~ msgstr ""
2960
+ #~ "Choisissez votre fichier de sauvegarde ci-dessous et cliquez Importation "
2961
+ #~ "pour restaurer vos options de site à partir d'une sauvegarde."
2962
+
2963
+ #~ msgid ""
2964
+ #~ "Input the URL to another sites options set and hit Import to load the "
2965
+ #~ "options from that site."
2966
+ #~ msgstr ""
2967
+ #~ "Indiquez l'URL vers un ensemble d'options de site et cliquez Importation "
2968
+ #~ "pour charger les options à partir de ce site."
2969
+
2970
+ #~ msgid "Import"
2971
+ #~ msgstr "Importation"
2972
+
2973
+ #~ msgid ""
2974
+ #~ "WARNING! This will overwrite all existing option values, please proceed "
2975
+ #~ "with caution!"
2976
+ #~ msgstr ""
2977
+ #~ "ATTENTION ! Cela écrasera toutes les valeurs d'options existantes, s'il "
2978
+ #~ "vous plaît procéder avec prudence !"
2979
+
2980
+ #~ msgid "Export Options"
2981
+ #~ msgstr "Options d'exportation"
2982
+
2983
+ #~ msgid ""
2984
+ #~ "Here you can copy/download your current option settings. Keep this safe "
2985
+ #~ "as you can use it as a backup should anything go wrong, or you can use it "
2986
+ #~ "to restore your settings on this site (or any other site)."
2987
+ #~ msgstr ""
2988
+ #~ "Ici vous pouvez copier / télécharger vos paramètres d'options actuels. "
2989
+ #~ "Conservez en lieu sûr car vous pourrez l'utiliser comme une sauvegarde en "
2990
+ #~ "cas de problème, ou vous pouvez l'utiliser pour restaurer vos paramètres "
2991
+ #~ "sur ce site (ou tout autre site)."
2992
+
2993
+ #~ msgid "Copy"
2994
+ #~ msgstr "Copier"
2995
+
2996
+ #~ msgid "Copy Link"
2997
+ #~ msgstr "Copier le lien"
2998
+
2999
+ #~ msgid "Import / Export"
3000
+ #~ msgstr "Importation et Exportation"
3001
+
3002
+ #~ msgid "This field must be a valid color value."
3003
+ #~ msgstr "Ce champ doit contenir une valeur de couleur valide."
3004
+
3005
+ #~ msgid ""
3006
+ #~ "You must provide a comma separated list of numerical values for this "
3007
+ #~ "option."
3008
+ #~ msgstr ""
3009
+ #~ "Vous devez fournir une liste séparée par des virgules de valeurs "
3010
+ #~ "numériques pour cette option."
3011
+
3012
+ #~ msgid "You must provide a valid email for this option."
3013
+ #~ msgstr ""
3014
+ #~ "Vous devez fournir une adresse de courriel valide pour cette option."
3015
+
3016
+ #~ msgid ""
3017
+ #~ "You must not enter any HTML in this field, all HTML tags have been "
3018
+ #~ "removed."
3019
+ #~ msgstr ""
3020
+ #~ "Vous ne devez pas entrer de code HTML dans ce champ, toutes les balises "
3021
+ #~ "HTML ont été supprimées."
3022
+
3023
+ #~ msgid ""
3024
+ #~ "You must not enter any special characters in this field, all special "
3025
+ #~ "characters have been removed."
3026
+ #~ msgstr ""
3027
+ #~ "Vous ne devez pas entrer des caractères spéciaux dans ce champ, tous les "
3028
+ #~ "caractères spéciaux ont été supprimés."
3029
+
3030
+ #, fuzzy
3031
+ #~ msgid "This field cannot be empty. Please provide a value."
3032
+ #~ msgstr "Ce champ doit contenir une valeur de couleur valide."
3033
+
3034
+ #~ msgid "You must provide a numerical value for this option."
3035
+ #~ msgstr "Vous devez fournir une valeur numérique pour cette option."
3036
+
3037
+ #~ msgid "You must provide a valid URL for this option."
3038
+ #~ msgstr "Vous devez fournir une URL valide pour cette option."
3039
+
3040
+ #~ msgid "Cart Totals"
3041
+ #~ msgstr "Total du panier d'achats"
3042
+
3043
+ #~ msgid "Cart Subtotal"
3044
+ #~ msgstr "Sous-total du panier d'achats"
3045
+
3046
+ #~ msgid "Order Total"
3047
+ #~ msgstr "Total de la commande"
3048
+
3049
+ #~ msgid " (taxes estimated for %s)"
3050
+ #~ msgstr " (taxes estimatées pour %s)"
3051
+
3052
+ #~ msgid ""
3053
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
3054
+ #~ "checkout based on your billing and shipping information."
3055
+ #~ msgstr ""
3056
+ #~ "Note: Frais de port et les taxes sont estimés %s et seront mis à jour "
3057
+ #~ "lors de la commande en fonction de vos adresses de facturation et "
3058
+ #~ "d'expédition."
3059
+
3060
+ #~ msgid "Product"
3061
+ #~ msgstr "Produit"
3062
+
3063
+ #~ msgid "Price"
3064
+ #~ msgstr "Prix"
3065
+
3066
+ #~ msgid "Quantity"
3067
+ #~ msgstr "Quantité"
3068
+
3069
+ #~ msgid "Total"
3070
+ #~ msgstr "Total"
3071
+
3072
+ #~ msgid "Remove this item"
3073
+ #~ msgstr "Retirer cet item"
3074
+
3075
+ #~ msgid "Available on backorder"
3076
+ #~ msgstr "Disponible en attente de stock"
3077
+
3078
+ #~ msgid "Coupon"
3079
+ #~ msgstr "Coupon"
3080
+
3081
+ #~ msgid "Coupon code"
3082
+ #~ msgstr "Code de coupon"
3083
+
3084
+ #~ msgid "Apply Coupon"
3085
+ #~ msgstr "Appliquer le coupon"
3086
+
3087
+ #~ msgid "Update Cart"
3088
+ #~ msgstr "Mettre à jour le panier d'achats"
3089
+
3090
+ #~ msgid "Proceed to Checkout"
3091
+ #~ msgstr "Passer la commande"
3092
+
3093
+ #~ msgid "You may be interested in&hellip;"
3094
+ #~ msgstr "Vous pourriez être intéressé par ..."
3095
+
3096
+ #~ msgid "Calculate Shipping"
3097
+ #~ msgstr "Calculer les frais de port"
3098
+
3099
+ #~ msgid "Select a country&hellip;"
3100
+ #~ msgstr "Choisissez un pays ..."
3101
+
3102
+ #~ msgid "State / county"
3103
+ #~ msgstr "État / comté"
3104
+
3105
+ #~ msgid "City"
3106
+ #~ msgstr "Ville"
3107
+
3108
+ #~ msgid "Postcode / Zip"
3109
+ #~ msgstr "Code postal"
3110
+
3111
+ #~ msgid ""
3112
+ #~ "To track your order please enter your Order ID in the box below and press "
3113
+ #~ "return. This was given to you on your receipt and in the confirmation "
3114
+ #~ "email you should have received."
3115
+ #~ msgstr ""
3116
+ #~ "Pour vérifier votre commande, veuillez entrer votre numéro de commande "
3117
+ #~ "dans la case ci-dessous et appuyez sur Entrée. Il vous a été donné sur "
3118
+ #~ "votre reçu et dans le courriel de confirmation que vous devriez avoir "
3119
+ #~ "reçu."
3120
+
3121
+ #~ msgid "Order ID"
3122
+ #~ msgstr "Numéro de commande"
3123
+
3124
+ #~ msgid "Found in your order confirmation email."
3125
+ #~ msgstr "Trouvé dans votre courriel de confirmation."
3126
+
3127
+ #~ msgid "Billing Email"
3128
+ #~ msgstr "Adresse de courriel de facturation"
3129
+
3130
+ #~ msgid "Email you used during checkout."
3131
+ #~ msgstr "Adresse courriel utilisée lors de votre commande."
3132
+
3133
+ #~ msgid "Track"
3134
+ #~ msgstr "Vérification"
3135
+
3136
+ #~ msgid "%s review for %s"
3137
+ #~ msgid_plural "%s reviews for %s"
3138
+ #~ msgstr[0] "%s avis pour %s"
3139
+ #~ msgstr[1] "%s avis pour %s"
3140
+
3141
+ #~ msgid "Reviews"
3142
+ #~ msgstr "Avis"
3143
+
3144
+ #~ msgid "There are no reviews yet."
3145
+ #~ msgstr "Il n'y a pas encore d'avis."
3146
+
3147
+ #~ msgid "Add a review"
3148
+ #~ msgstr "Ajouter un avis"
3149
+
3150
+ #~ msgid "Be the first to review"
3151
+ #~ msgstr "Soyez le premier à écrire un avis."
3152
+
3153
+ #~ msgid "Submit"
3154
+ #~ msgstr "Envoyer"
3155
+
3156
+ #~ msgid "Your Rating"
3157
+ #~ msgstr "Votre cote"
3158
+
3159
+ #~ msgid "Rate&hellip;"
3160
+ #~ msgstr "Cotez..."
3161
+
3162
+ #~ msgid "Perfect"
3163
+ #~ msgstr "Parfait"
3164
+
3165
+ #~ msgid "Good"
3166
+ #~ msgstr "Bien"
3167
+
3168
+ #~ msgid "Average"
3169
+ #~ msgstr "Moyen"
3170
+
3171
+ #~ msgid "Not that bad"
3172
+ #~ msgstr "Pas mal"
3173
+
3174
+ #~ msgid "Very Poor"
3175
+ #~ msgstr "Très pauvre"
3176
+
3177
+ #~ msgid "Your Review"
3178
+ #~ msgstr "Votre avis"
3179
+
3180
+ #~ msgid ""
3181
+ #~ "Only logged in customers who have purchased this product may leave a "
3182
+ #~ "review."
3183
+ #~ msgstr ""
3184
+ #~ "Seules les personnes identifiées qui ont acheté ce produit peuvent "
3185
+ #~ "laisser un avis."
3186
+
3187
+ #~ msgid "Shop"
3188
+ #~ msgstr "la boutique"
3189
+
3190
+ #~ msgid "Choose an option"
3191
+ #~ msgstr "Choisissez une option"
3192
+
3193
+ #~ msgid "Clear selection"
3194
+ #~ msgstr "Effacer la sélection"
3195
+
3196
+ #~ msgid "This product is currently out of stock and unavailable."
3197
+ #~ msgstr "Ce produit est actuellement en rupture de stock et indisponible."
3198
+
3199
+ #~ msgid "Rated %s out of 5"
3200
+ #~ msgstr "Classé %s sur 5"
3201
+
3202
+ #~ msgid "out of 5"
3203
+ #~ msgstr "sur 5"
3204
+
3205
+ #~ msgid "%s customer review"
3206
+ #~ msgid_plural "%s customer reviews"
3207
+ #~ msgstr[0] "%s avis de la clientèle"
3208
+ #~ msgstr[1] "%s avis de la clientèle"
3209
+
3210
+ #~ msgid "Rated %d out of 5"
3211
+ #~ msgstr "Classé %d sur 5"
3212
+
3213
+ #~ msgid "Your comment is awaiting approval"
3214
+ #~ msgstr "Votre commentaire est en attente d'approbation"
3215
+
3216
+ #~ msgid "verified owner"
3217
+ #~ msgstr "propriétaire vérifié"
3218
+
3219
+ #~ msgid "Default sorting"
3220
+ #~ msgstr "Tri par défaut"
3221
+
3222
+ #~ msgid "Sort by popularity"
3223
+ #~ msgstr "Trier par popularité"
3224
+
3225
+ #~ msgid "Sort by average rating"
3226
+ #~ msgstr "Tri par cote moyenne"
3227
+
3228
+ #~ msgid "Sort by newness"
3229
+ #~ msgstr "Tri par récence"
3230
+
3231
+ #~ msgid "Sort by price: low to high"
3232
+ #~ msgstr "Tri par prix croissant"
3233
+
3234
+ #~ msgid "Sort by price: high to low"
3235
+ #~ msgstr "Tri par prix décroissant"
3236
+
3237
+ #~ msgid "Order Details"
3238
+ #~ msgstr "Détails de la commande"
3239
+
3240
+ #~ msgid "Download file%s"
3241
+ #~ msgstr "Téléchargez le fichier %s"
3242
+
3243
+ #~ msgid "Customer details"
3244
+ #~ msgstr "Informations sur le client ou la cliente"
3245
+
3246
+ #, fuzzy
3247
+ #~ msgid "Telephone:"
3248
+ #~ msgstr "Téléphone :"
3249
+
3250
+ #~ msgid "Billing Address"
3251
+ #~ msgstr "Adresse de facturation"
3252
+
3253
+ #~ msgid "N/A"
3254
+ #~ msgstr "N/A"
3255
+
3256
+ #~ msgid "Shipping Address"
3257
+ #~ msgstr "Adresse de livraison"
3258
+
3259
+ #~ msgid "Virtue: About with Image"
3260
+ #~ msgstr "Virtue : À propos avec image"
3261
+
3262
+ #~ msgid ""
3263
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
3264
+ #~ "merchant has declined your transaction."
3265
+ #~ msgstr ""
3266
+ #~ "Malheureusement, votre commande ne peut être traitée car la banque ou le "
3267
+ #~ "commerce a refusé votre transaction."
3268
+
3269
+ #~ msgid "Please attempt your purchase again or go to your account page."
3270
+ #~ msgstr ""
3271
+ #~ "S'il vous plaît essayer de nouveau votre achat ou aller à la page de "
3272
+ #~ "votre compte."
3273
+
3274
+ #~ msgid "Please attempt your purchase again."
3275
+ #~ msgstr "S'il vous plaît, veuillez réessayez de faire votre achat."
3276
+
3277
+ #~ msgid "Pay"
3278
+ #~ msgstr "Payez"
3279
+
3280
+ #~ msgid "Thank you. Your order has been received."
3281
+ #~ msgstr "Merci. Votre commande a été reçue."
3282
+
3283
+ #~ msgid "Order:"
3284
+ #~ msgstr "Commande :"
3285
+
3286
+ #~ msgid "Date:"
3287
+ #~ msgstr "Date :"
3288
+
3289
+ #~ msgid "Total:"
3290
+ #~ msgstr "Total :"
3291
+
3292
+ #~ msgid "Payment method:"
3293
+ #~ msgstr "Mode de paiement :"
3294
+
3295
+ #~ msgid "No products found which match your selection."
3296
+ #~ msgstr "Aucun produit ne correspond à votre sélection."
3297
+
3298
+ #~ msgid "Showing the single result"
3299
+ #~ msgstr "Affichage du résultat"
3300
+
3301
+ #~ msgid "Showing all %d results"
3302
+ #~ msgstr "Affichage des %d résultats"
3303
+
3304
+ #~ msgid "Order Again"
3305
+ #~ msgstr "Commander de nouveau"
3306
+
3307
+ #~ msgid "Products tagged &ldquo;"
3308
+ #~ msgstr "Produits étiquetés &ldquo;"
3309
+
3310
+ #~ msgid "Search results for &ldquo;"
3311
+ #~ msgstr "Résultats de la recherche &ldquo;"
3312
+
3313
+ #~ msgid "Error 404"
3314
+ #~ msgstr "Erreur 404"
3315
+
3316
+ #~ msgid "Posts tagged &ldquo;"
3317
+ #~ msgstr "Billets étiquetés &ldquo;"
3318
+
3319
+ #~ msgid "Author:"
3320
+ #~ msgstr "AuteurE :"
3321
+
3322
+ #~ msgid "Page"
3323
+ #~ msgstr "Page"
3324
+
3325
+ #~ msgid "Username or email"
3326
+ #~ msgstr "Identifiant ou courriel"
3327
+
3328
+ #~ msgid "Login"
3329
+ #~ msgstr "Connexion"
3330
+
3331
+ #~ msgid "Lost Password?"
3332
+ #~ msgstr "Mot de passe perdu ?"
3333
+
3334
+ #~ msgid "Additional Information"
3335
+ #~ msgstr "Informations complémentaires"
3336
+
3337
+ #~ msgid "Product Description"
3338
+ #~ msgstr "Description de produit"
3339
+
3340
+ #~ msgid "Select an Option"
3341
+ #~ msgstr "Choisissez une option"
3342
+
3343
+ #~ msgid "Options Object"
3344
+ #~ msgstr "Objet d'options"
3345
+
3346
+ #~ msgid "Show Object in Javascript Console Object"
3347
+ #~ msgstr "Afficher l'objet dans l'objet Javascript Console"
3348
+
3349
+ #~ msgid "Help improve Our Panel"
3350
+ #~ msgstr "Aider à améliorer notre panneau"
3351
+
3352
+ #~ msgid ""
3353
+ #~ "Please helps us improve our panel by allowing us to gather anonymous "
3354
+ #~ "usage stats so we know which configurations, plugins and themes to test "
3355
+ #~ "with."
3356
+ #~ msgstr ""
3357
+ #~ "S'il vous plaît, aisez-nous à améliorer notre panneau en nous permettant "
3358
+ #~ "de recueillir des statistiques d'utilisation anonymes afin que nous "
3359
+ #~ "sachions avec quelles configurations, extensions et thèmes nous devons "
3360
+ #~ "tester."
3361
+
3362
+ #~ msgid "Allow tracking"
3363
+ #~ msgstr "Permettre le suivi"
3364
+
3365
+ #~ msgid "Do not allow tracking"
3366
+ #~ msgstr "Interdire le suivi"
3367
+
3368
+ #~ msgid "Top"
3369
+ #~ msgstr "Au-dessus"
3370
+
3371
+ #~ msgid "Bottom"
3372
+ #~ msgstr "En-dessous"
3373
+
3374
+ #~ msgid "To "
3375
+ #~ msgstr "À"
3376
+
3377
+ #~ msgid "height"
3378
+ #~ msgstr "heuteur"
3379
+
3380
+ #~ msgid "Units"
3381
+ #~ msgstr "Unités"
3382
+
3383
+ #~ msgid "New"
3384
+ #~ msgstr "Nouveau"
3385
+
3386
+ #~ msgid "Delete"
3387
+ #~ msgstr "Effacer"
3388
+
3389
+ #~ msgid "Add"
3390
+ #~ msgstr "Ajouter"
3391
+
3392
+ #~ msgid "Regular"
3393
+ #~ msgstr "Normal"
3394
+
3395
+ #~ msgid "Hover"
3396
+ #~ msgstr "Survolé"
3397
+
3398
+ #~ msgid "Visited"
3399
+ #~ msgstr "Visité"
3400
+
3401
+ #~ msgid "Active"
3402
+ #~ msgstr "Actif"
3403
+
3404
+ #~ msgid "Password"
3405
+ #~ msgstr "Mot de passe"
3406
+
3407
+ #~ msgid "Username"
3408
+ #~ msgstr "Identifiant"
3409
+
3410
+ #~ msgid "SKU:"
3411
+ #~ msgstr "UGS (SKU) : "
3412
+
3413
+ #~ msgid "Category:"
3414
+ #~ msgid_plural "Categories:"
3415
+ #~ msgstr[0] "Catégorie :"
3416
+ #~ msgstr[1] "Catégories :"
3417
+
3418
+ #~ msgid "Tag:"
3419
+ #~ msgid_plural "Tags:"
3420
+ #~ msgstr[0] "Mot-clé : "
3421
+ #~ msgstr[1] "Mots-clé : "
3422
+
3423
+ #~ msgid "Related Products"
3424
+ #~ msgstr "produits similaires"
3425
+
3426
+ #~ msgid "You may also like&hellip;"
3427
+ #~ msgstr "Vous aimerez aussi ..."
3428
+
3429
+ #~ msgid "Weight"
3430
+ #~ msgstr "Poids"
3431
+
3432
+ #~ msgid "Dimensions"
3433
+ #~ msgstr "Dimensions"
3434
+
3435
+ #~ msgid "Click here to login"
3436
+ #~ msgstr "Cliquez ici pour vous connecter"
3437
+
3438
+ #~ msgid "Click here to reset your password"
3439
+ #~ msgstr "Cliquez ici pour réinitialiser votre mot de passe"
languages/it_IT.mo ADDED
Binary file
languages/it_IT.po ADDED
@@ -0,0 +1,4098 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-10 00:32-0700\n"
6
+ "PO-Revision-Date: 2015-01-10 00:32-0700\n"
7
+ "Last-Translator: Dovy Paukstys <dovy@reduxframework.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: it_IT\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 1.6.10\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
18
+ "esc_attr__;esc_attr_e\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Textdomain-Support: yes\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+
23
+ # @ cmb
24
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
25
+ msgid "Please Try Again"
26
+ msgstr "Perfavore, prova ancora"
27
+
28
+ # @ cmb
29
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
30
+ msgid "Remove Embed"
31
+ msgstr "Rimuovere embed"
32
+
33
+ # @ cmb
34
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
35
+ #, php-format
36
+ msgid "No oEmbed Results Found for %s. View more info at"
37
+ msgstr ""
38
+ "Nessun risultato embed trovato per %s. Puoi trovare maggiori informazioni su"
39
+
40
+ # @ virtue
41
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
42
+ #, fuzzy
43
+ msgid "Add Group"
44
+ msgstr "Aggiungi icona"
45
+
46
+ # @ redux-framework
47
+ # @ virtue
48
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
49
+ #, fuzzy
50
+ msgid "Remove Group"
51
+ msgstr "Rimuovere"
52
+
53
+ # @ virtue
54
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
55
+ #, fuzzy
56
+ msgid "Add Row"
57
+ msgstr "Aggiungi icona"
58
+
59
+ # @ redux-framework
60
+ # @ virtue
61
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
62
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
63
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
64
+ msgid "Remove"
65
+ msgstr "Rimuovere"
66
+
67
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
68
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
69
+ msgid "No terms"
70
+ msgstr ""
71
+
72
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
73
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
74
+ msgid "Add or Upload File"
75
+ msgstr ""
76
+
77
+ # @ virtue
78
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
79
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
80
+ #, fuzzy
81
+ msgid "Remove Image"
82
+ msgstr "Rimuovi immagine"
83
+
84
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
85
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
86
+ msgid "File:"
87
+ msgstr ""
88
+
89
+ # @ redux-framework
90
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
91
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
92
+ msgid "Download"
93
+ msgstr "Scarica"
94
+
95
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
96
+ msgid "Clear"
97
+ msgstr ""
98
+
99
+ # @ virtue
100
+ # @ redux-framework
101
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
102
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
103
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
104
+ #: ../metaboxes.php:489
105
+ msgid "Default"
106
+ msgstr "Predefinito"
107
+
108
+ # @ virtue
109
+ #: ../cmb/init.php:260
110
+ #, fuzzy
111
+ msgid "Select Color"
112
+ msgstr "Seleziona un'icona"
113
+
114
+ # @ virtue
115
+ #: ../cmb/init.php:261
116
+ #, fuzzy
117
+ msgid "Current Color"
118
+ msgstr "Colore primario"
119
+
120
+ # @ woocommerce
121
+ #: ../cmb/init.php:288
122
+ #, fuzzy
123
+ msgid "Select / Deselect All"
124
+ msgstr "Seleziona state&hellip;"
125
+
126
+ #: ../cmb/init.php:1178
127
+ msgid "Save"
128
+ msgstr ""
129
+
130
+ # @ virtue
131
+ #: ../metaboxes.php:17
132
+ #, fuzzy
133
+ msgid "Add/Edit Gallery"
134
+ msgstr "Aggiungi alla galleria"
135
+
136
+ # @ virtue
137
+ #: ../metaboxes.php:18
138
+ #, fuzzy
139
+ msgid "Clear Gallery"
140
+ msgstr "Galleria post"
141
+
142
+ # @ virtue
143
+ #: ../metaboxes.php:44
144
+ msgid "Page Title and Subtitle"
145
+ msgstr "Titolo e sottotitolo della pagina"
146
+
147
+ # @ virtue
148
+ #: ../metaboxes.php:51 ../metaboxes.php:95
149
+ msgid "Subtitle"
150
+ msgstr "Sottotitolo"
151
+
152
+ # @ virtue
153
+ #: ../metaboxes.php:52
154
+ msgid "Subtitle will go below page title"
155
+ msgstr "Il sottotitolo continuerà di seguito al titolo della pagina"
156
+
157
+ # @ virtue
158
+ #: ../metaboxes.php:57 ../metaboxes.php:101
159
+ #, fuzzy
160
+ msgid "Hide Page Title"
161
+ msgstr "Titolo pagina"
162
+
163
+ #: ../metaboxes.php:63 ../metaboxes.php:107
164
+ msgid "Show"
165
+ msgstr ""
166
+
167
+ #: ../metaboxes.php:64 ../metaboxes.php:108
168
+ msgid "Hide"
169
+ msgstr ""
170
+
171
+ # @ virtue
172
+ #: ../metaboxes.php:68 ../metaboxes.php:112
173
+ #, fuzzy
174
+ msgid "Page Title background behind Header"
175
+ msgstr "Titolo e sottotitolo della pagina"
176
+
177
+ #: ../metaboxes.php:74 ../metaboxes.php:118
178
+ msgid "Place behind Header"
179
+ msgstr ""
180
+
181
+ #: ../metaboxes.php:75 ../metaboxes.php:119
182
+ msgid "Don't place behind Header"
183
+ msgstr ""
184
+
185
+ # @ virtue
186
+ #: ../metaboxes.php:82
187
+ #, fuzzy
188
+ msgid "Post Title and Subtitle"
189
+ msgstr "Titolo e sottotitolo della pagina"
190
+
191
+ # @ virtue
192
+ #: ../metaboxes.php:89 ../metaboxes.php:90
193
+ #, fuzzy
194
+ msgid "Post Header Title"
195
+ msgstr "Titolo pagina"
196
+
197
+ # @ virtue
198
+ #: ../metaboxes.php:96
199
+ #, fuzzy
200
+ msgid "Subtitle will go below post title"
201
+ msgstr "Il sottotitolo continuerà di seguito al titolo della pagina"
202
+
203
+ # @ virtue
204
+ #: ../metaboxes.php:126
205
+ #, fuzzy
206
+ msgid "Gallery Post Options"
207
+ msgstr "Opzioni post"
208
+
209
+ # @ virtue
210
+ #: ../metaboxes.php:135 ../metaboxes.php:190
211
+ #, fuzzy
212
+ msgid "Post Head Content"
213
+ msgstr "Contenuto del Head"
214
+
215
+ # @ virtue
216
+ #: ../metaboxes.php:140 ../metaboxes.php:170
217
+ #, fuzzy
218
+ msgid "Gallery Post Default"
219
+ msgstr "Impostazioni predefinite dei messaggi del Blog"
220
+
221
+ # @ virtue
222
+ #: ../metaboxes.php:141
223
+ #, fuzzy
224
+ msgid "Image Slider - (Flex Slider)"
225
+ msgstr "Slider immagini"
226
+
227
+ #: ../metaboxes.php:142
228
+ msgid "Carousel Slider - (Caroufedsel Slider)"
229
+ msgstr ""
230
+
231
+ # @ virtue
232
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
233
+ #: ../metaboxes.php:738
234
+ msgid "None"
235
+ msgstr "Nessuno"
236
+
237
+ # @ virtue
238
+ #: ../metaboxes.php:147
239
+ #, fuzzy
240
+ msgid "Post Slider Gallery"
241
+ msgstr "Galleria post"
242
+
243
+ # @ virtue
244
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
245
+ #, fuzzy
246
+ msgid "Add images for gallery here"
247
+ msgstr "Aggiungi le immagini alla galleria"
248
+
249
+ # @ virtue
250
+ #: ../metaboxes.php:153
251
+ #, fuzzy
252
+ msgid "Max Slider Height"
253
+ msgstr "Altezza massima dell'immagine slider"
254
+
255
+ # @ virtue
256
+ #: ../metaboxes.php:154 ../metaboxes.php:553
257
+ #, fuzzy
258
+ msgid "Default is: 400 (Note: just input number, example: 350)"
259
+ msgstr ""
260
+ "Predefinito: 400 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
261
+ "350)</b>"
262
+
263
+ # @ virtue
264
+ #: ../metaboxes.php:159
265
+ #, fuzzy
266
+ msgid "Max Slider Width"
267
+ msgstr "Larghezza massima dell'immagine slider"
268
+
269
+ # @ virtue
270
+ #: ../metaboxes.php:160
271
+ #, fuzzy
272
+ msgid ""
273
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
274
+ "example: 650, only applys to Image Slider)"
275
+ msgstr ""
276
+ "Predefinito: 770 o 1170 fullwidth <b>(Nota: è sufficiente il numero di "
277
+ "ingresso, ad esempio: 650, non si applica allo slider)</b>"
278
+
279
+ # @ virtue
280
+ #: ../metaboxes.php:165 ../metaboxes.php:213
281
+ msgid "Post Summary"
282
+ msgstr "Sommario messaggio"
283
+
284
+ # @ virtue
285
+ #: ../metaboxes.php:171 ../metaboxes.php:220
286
+ #, fuzzy
287
+ msgid "Portrait Image (feature image)"
288
+ msgstr "Slider immagine verticale"
289
+
290
+ # @ virtue
291
+ #: ../metaboxes.php:172 ../metaboxes.php:221
292
+ #, fuzzy
293
+ msgid "Landscape Image (feature image)"
294
+ msgstr "Slider immagine orizzontale"
295
+
296
+ # @ virtue
297
+ #: ../metaboxes.php:173
298
+ msgid "Portrait Image Slider"
299
+ msgstr "Slider immagine verticale"
300
+
301
+ # @ virtue
302
+ #: ../metaboxes.php:174
303
+ msgid "Landscape Image Slider"
304
+ msgstr "Slider immagine orizzontale"
305
+
306
+ # @ virtue
307
+ #: ../metaboxes.php:181
308
+ #, fuzzy
309
+ msgid "Video Post Options"
310
+ msgstr "Opzioni post"
311
+
312
+ # @ virtue
313
+ #: ../metaboxes.php:195 ../metaboxes.php:218
314
+ #, fuzzy
315
+ msgid "Video Post Default"
316
+ msgstr "Impostazioni predefinite dei messaggi del Blog"
317
+
318
+ # @ virtue
319
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
320
+ #: ../metaboxes.php:737 ../metaboxes.php:960
321
+ msgid "Video"
322
+ msgstr "Video"
323
+
324
+ # @ virtue
325
+ #: ../metaboxes.php:201
326
+ #, fuzzy
327
+ msgid "Video Post embed code"
328
+ msgstr "Codice embed Video"
329
+
330
+ # @ virtue
331
+ #: ../metaboxes.php:202
332
+ #, fuzzy
333
+ msgid ""
334
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
335
+ "for screen shot)"
336
+ msgstr "Inserire il codice embed qui, funziona con youtube, vimeo ..."
337
+
338
+ # @ virtue
339
+ #: ../metaboxes.php:207
340
+ #, fuzzy
341
+ msgid "Max Video Width"
342
+ msgstr "Larghezza massima dell'immagine slider"
343
+
344
+ # @ virtue
345
+ #: ../metaboxes.php:208
346
+ #, fuzzy
347
+ msgid ""
348
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
349
+ "example: 650, does not apply to carousel slider)"
350
+ msgstr ""
351
+ "Predefinito: 770 o 1170 fullwidth <b>(Nota: è sufficiente il numero di "
352
+ "ingresso, ad esempio: 650, non si applica allo slider)</b>"
353
+
354
+ #: ../metaboxes.php:219
355
+ msgid "Video - (when possible)"
356
+ msgstr ""
357
+
358
+ # @ virtue
359
+ #: ../metaboxes.php:228 ../metaboxes.php:710
360
+ msgid "Portfolio Post Options"
361
+ msgstr "Portfolio, opzioni messaggio"
362
+
363
+ # @ virtue
364
+ #: ../metaboxes.php:236 ../metaboxes.php:718
365
+ msgid "Project Layout"
366
+ msgstr "Layout del progetto"
367
+
368
+ # @ virtue
369
+ #: ../metaboxes.php:241
370
+ #, fuzzy
371
+ msgid "Beside 40%"
372
+ msgstr "Vicino"
373
+
374
+ # @ virtue
375
+ #: ../metaboxes.php:242
376
+ #, fuzzy
377
+ msgid "Beside 33%"
378
+ msgstr "Vicino"
379
+
380
+ # @ virtue
381
+ #: ../metaboxes.php:243 ../metaboxes.php:724
382
+ msgid "Above"
383
+ msgstr "Sopra"
384
+
385
+ # @ virtue
386
+ #: ../metaboxes.php:244 ../metaboxes.php:725
387
+ msgid "Three Rows"
388
+ msgstr "Tre righe"
389
+
390
+ # @ virtue
391
+ #: ../metaboxes.php:248 ../metaboxes.php:729
392
+ msgid "Project Options"
393
+ msgstr "Opzioni progetto"
394
+
395
+ # @ virtue
396
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
397
+ msgid "Image"
398
+ msgstr "Immagine"
399
+
400
+ # @ virtue
401
+ #: ../metaboxes.php:254 ../metaboxes.php:534
402
+ #, fuzzy
403
+ msgid "Image Slider (Flex Slider)"
404
+ msgstr "Slider immagini"
405
+
406
+ # @ virtue
407
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
408
+ #, fuzzy
409
+ msgid "Carousel Slider"
410
+ msgstr "Slider titolo"
411
+
412
+ # @ virtue
413
+ #: ../metaboxes.php:261
414
+ #, fuzzy
415
+ msgid "Portfolio Slider/Images"
416
+ msgstr "Slider immagini del portfolio"
417
+
418
+ # @ virtue
419
+ #: ../metaboxes.php:262
420
+ #, fuzzy
421
+ msgid "Add images for post here"
422
+ msgstr "Aggiungi le immagini alla galleria"
423
+
424
+ # @ virtue
425
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
426
+ #: ../metaboxes.php:965
427
+ msgid "Max Image/Slider Height"
428
+ msgstr "Altezza massima dell'immagine slider"
429
+
430
+ # @ virtue
431
+ #: ../metaboxes.php:268
432
+ #, fuzzy
433
+ msgid "Default is: 450 (Note: just input number, example: 350)"
434
+ msgstr ""
435
+ "Predefinito: 450 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
436
+ "350)</b>"
437
+
438
+ # @ virtue
439
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
440
+ #: ../metaboxes.php:971
441
+ msgid "Max Image/Slider Width"
442
+ msgstr "Larghezza massima dell'immagine slider"
443
+
444
+ # @ virtue
445
+ #: ../metaboxes.php:274
446
+ #, fuzzy
447
+ msgid ""
448
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
449
+ "number, example: 650)"
450
+ msgstr ""
451
+ "Predefinito: 670 o 1170 on <b>above</b> or <b>three row</b> layouts (Nota: è "
452
+ "sufficiente il numero di ingresso, ad esempio: 650)</b>"
453
+
454
+ # @ virtue
455
+ #: ../metaboxes.php:279 ../metaboxes.php:764
456
+ msgid "Value 01 Title"
457
+ msgstr "Titolo valore 01"
458
+
459
+ # @ virtue
460
+ #: ../metaboxes.php:280 ../metaboxes.php:765
461
+ msgid "ex. Project Type:"
462
+ msgstr "Es. Tipologia progetto"
463
+
464
+ # @ virtue
465
+ #: ../metaboxes.php:285 ../metaboxes.php:770
466
+ msgid "Value 01 Description"
467
+ msgstr "Descrizione valore 01"
468
+
469
+ # @ virtue
470
+ #: ../metaboxes.php:286 ../metaboxes.php:771
471
+ msgid "ex. Character Illustration"
472
+ msgstr "Es. Carattere illustrazione"
473
+
474
+ # @ virtue
475
+ #: ../metaboxes.php:291 ../metaboxes.php:776
476
+ msgid "Value 02 Title"
477
+ msgstr "Titolo Valore 02"
478
+
479
+ # @ virtue
480
+ #: ../metaboxes.php:292 ../metaboxes.php:777
481
+ msgid "ex. Skills Needed:"
482
+ msgstr "es. competenze necessarie:"
483
+
484
+ # @ virtue
485
+ #: ../metaboxes.php:297 ../metaboxes.php:782
486
+ msgid "Value 02 Description"
487
+ msgstr "Descrizione valore 02"
488
+
489
+ # @ virtue
490
+ #: ../metaboxes.php:298 ../metaboxes.php:783
491
+ msgid "ex. Photoshop, Illustrator"
492
+ msgstr "Es. Photoshop, Illustrator"
493
+
494
+ # @ virtue
495
+ #: ../metaboxes.php:303 ../metaboxes.php:788
496
+ msgid "Value 03 Title"
497
+ msgstr "Titolo valore 03"
498
+
499
+ # @ virtue
500
+ #: ../metaboxes.php:304 ../metaboxes.php:789
501
+ msgid "ex. Customer:"
502
+ msgstr "Es. cliente:"
503
+
504
+ # @ virtue
505
+ #: ../metaboxes.php:309 ../metaboxes.php:794
506
+ msgid "Value 03 Description"
507
+ msgstr "Descrizione valore 03"
508
+
509
+ # @ virtue
510
+ #: ../metaboxes.php:310 ../metaboxes.php:795
511
+ msgid "ex. Example Inc"
512
+ msgstr "Es. Example Inc"
513
+
514
+ # @ virtue
515
+ #: ../metaboxes.php:315 ../metaboxes.php:800
516
+ msgid "Value 04 Title"
517
+ msgstr "Titolo valore 04"
518
+
519
+ # @ virtue
520
+ #: ../metaboxes.php:316 ../metaboxes.php:801
521
+ msgid "ex. Project Year:"
522
+ msgstr "Es. anno di progetto:"
523
+
524
+ # @ virtue
525
+ #: ../metaboxes.php:321 ../metaboxes.php:806
526
+ msgid "Value 04 Description"
527
+ msgstr "Descrizione valore 04"
528
+
529
+ # @ virtue
530
+ #: ../metaboxes.php:322 ../metaboxes.php:807
531
+ msgid "ex. 2013"
532
+ msgstr "Es. 2013"
533
+
534
+ # @ virtue
535
+ #: ../metaboxes.php:327 ../metaboxes.php:812
536
+ msgid "External Website"
537
+ msgstr "Sito web esterno"
538
+
539
+ # @ virtue
540
+ #: ../metaboxes.php:328 ../metaboxes.php:813
541
+ msgid "ex. Website:"
542
+ msgstr "Es. sito web:"
543
+
544
+ # @ virtue
545
+ #: ../metaboxes.php:333 ../metaboxes.php:818
546
+ msgid "Website Address"
547
+ msgstr "Indirizzo sito internet"
548
+
549
+ # @ virtue
550
+ #: ../metaboxes.php:334 ../metaboxes.php:819
551
+ msgid "ex. http://www.example.com"
552
+ msgstr "Es. http://www.example.com"
553
+
554
+ # @ virtue
555
+ #: ../metaboxes.php:339 ../metaboxes.php:824
556
+ msgid "If Video Project"
557
+ msgstr "If Video Project"
558
+
559
+ # @ virtue
560
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
561
+ #: ../metaboxes.php:825 ../metaboxes.php:988
562
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
563
+ msgstr "Inserire il codice embed qui, funziona con youtube, vimeo ..."
564
+
565
+ # @ virtue
566
+ #: ../metaboxes.php:349
567
+ #, fuzzy
568
+ msgid "Bottom Carousel Options"
569
+ msgstr "Opzioni della pagina di contatto"
570
+
571
+ # @ virtue
572
+ #: ../metaboxes.php:356 ../metaboxes.php:840
573
+ msgid "Carousel Title"
574
+ msgstr "Slider titolo"
575
+
576
+ # @ virtue
577
+ #: ../metaboxes.php:357 ../metaboxes.php:841
578
+ msgid "ex. Similar Projects"
579
+ msgstr "Es. progetti simili"
580
+
581
+ # @ virtue
582
+ #: ../metaboxes.php:362
583
+ #, fuzzy
584
+ msgid "Bottom Portfolio Carousel"
585
+ msgstr "Slider portfolio"
586
+
587
+ # @ virtue
588
+ #: ../metaboxes.php:363
589
+ #, fuzzy
590
+ msgid "Display a carousel with portfolio items below project?"
591
+ msgstr ""
592
+ "Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
593
+
594
+ # @ virtue
595
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
596
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
597
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
598
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
599
+ msgid "No"
600
+ msgstr "No"
601
+
602
+ # @ virtue
603
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
604
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
605
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
606
+ #: ../metaboxes.php:1037
607
+ msgid "Yes"
608
+ msgstr "Si"
609
+
610
+ # @ virtue
611
+ #: ../metaboxes.php:373
612
+ #, fuzzy
613
+ msgid "Carousel Items"
614
+ msgstr "Slider titolo"
615
+
616
+ # @ virtue
617
+ #: ../metaboxes.php:379
618
+ #, fuzzy
619
+ msgid "All Portfolio Posts"
620
+ msgstr "Portfolio, opzioni messaggio"
621
+
622
+ #: ../metaboxes.php:380
623
+ msgid "Only of same Portfolio Type"
624
+ msgstr ""
625
+
626
+ # @ virtue
627
+ #: ../metaboxes.php:384
628
+ #, fuzzy
629
+ msgid "Carousel Order"
630
+ msgstr "Slider titolo"
631
+
632
+ # @ virtue
633
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
634
+ msgid "Menu Order"
635
+ msgstr "Ordine menu"
636
+
637
+ # @ virtue
638
+ # @ redux-framework
639
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
640
+ msgid "Title"
641
+ msgstr "Titolo"
642
+
643
+ # @ virtue
644
+ # @ woocommerce
645
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
646
+ msgid "Date"
647
+ msgstr "Data"
648
+
649
+ # @ virtue
650
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
651
+ msgid "Random"
652
+ msgstr "Casuale"
653
+
654
+ # @ virtue
655
+ #: ../metaboxes.php:400 ../metaboxes.php:850
656
+ msgid "Portfolio Page Options"
657
+ msgstr "Opzioni pagina portfolio"
658
+
659
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
660
+ msgid "Style"
661
+ msgstr ""
662
+
663
+ # @ virtue
664
+ #: ../metaboxes.php:414
665
+ #, fuzzy
666
+ msgid "Post Boxes"
667
+ msgstr "Box videomessaggio"
668
+
669
+ #: ../metaboxes.php:415
670
+ msgid "Flat with Margin"
671
+ msgstr ""
672
+
673
+ # @ woocommerce
674
+ #: ../metaboxes.php:419
675
+ #, fuzzy
676
+ msgid "Hover Style"
677
+ msgstr "Totale ordine"
678
+
679
+ # @ woocommerce
680
+ #: ../metaboxes.php:425
681
+ #, fuzzy
682
+ msgid "Light"
683
+ msgstr "Peso"
684
+
685
+ #: ../metaboxes.php:426
686
+ msgid "Dark"
687
+ msgstr ""
688
+
689
+ # @ virtue
690
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
691
+ msgid "Primary Color"
692
+ msgstr "Colore primario"
693
+
694
+ # @ virtue
695
+ #: ../metaboxes.php:431 ../metaboxes.php:859
696
+ msgid "Columns"
697
+ msgstr "Colonne"
698
+
699
+ # @ virtue
700
+ #: ../metaboxes.php:436 ../metaboxes.php:864
701
+ msgid "Four Column"
702
+ msgstr "Quattro colonne"
703
+
704
+ # @ virtue
705
+ #: ../metaboxes.php:437 ../metaboxes.php:865
706
+ msgid "Three Column"
707
+ msgstr "Tre colonne"
708
+
709
+ # @ virtue
710
+ #: ../metaboxes.php:438 ../metaboxes.php:866
711
+ msgid "Two Column"
712
+ msgstr "Due colonne"
713
+
714
+ # @ virtue
715
+ #: ../metaboxes.php:439
716
+ #, fuzzy
717
+ msgid "Five Column"
718
+ msgstr "Quattro colonne"
719
+
720
+ # @ virtue
721
+ #: ../metaboxes.php:443 ../metaboxes.php:870
722
+ msgid "Portfolio Work Types"
723
+ msgstr "Tipologie di portfolio lavoro"
724
+
725
+ # @ virtue
726
+ #: ../metaboxes.php:449 ../metaboxes.php:877
727
+ msgid "Order Items By"
728
+ msgstr "Ordina gli elementi per"
729
+
730
+ # @ virtue
731
+ #: ../metaboxes.php:461 ../metaboxes.php:889
732
+ msgid "Items per Page"
733
+ msgstr "Articoli per pagina"
734
+
735
+ # @ virtue
736
+ #: ../metaboxes.php:462 ../metaboxes.php:890
737
+ msgid "How many portfolio items per page"
738
+ msgstr "Quanti articoli del portfolio per pagina"
739
+
740
+ # @ virtue
741
+ # @ redux-framework
742
+ #: ../metaboxes.php:466 ../metaboxes.php:894
743
+ msgid "All"
744
+ msgstr "Tutti"
745
+
746
+ # @ virtue
747
+ #: ../metaboxes.php:484
748
+ #, fuzzy
749
+ msgid "Image Ratio?"
750
+ msgstr "Immagine"
751
+
752
+ #: ../metaboxes.php:490
753
+ msgid "Square 1:1"
754
+ msgstr ""
755
+
756
+ # @ virtue
757
+ #: ../metaboxes.php:491
758
+ #, fuzzy
759
+ msgid "Portrait 3:4"
760
+ msgstr "Immagine verticale"
761
+
762
+ # @ virtue
763
+ #: ../metaboxes.php:492
764
+ #, fuzzy
765
+ msgid "Landscape 4:3"
766
+ msgstr "Immagine orizzontale"
767
+
768
+ # @ virtue
769
+ #: ../metaboxes.php:493
770
+ #, fuzzy
771
+ msgid "Wide Landscape 4:2"
772
+ msgstr "Immagine orizzontale"
773
+
774
+ # @ virtue
775
+ #: ../metaboxes.php:497 ../metaboxes.php:918
776
+ msgid "Display Item Work Types"
777
+ msgstr "Visualizza articoli di tipologia lavoro"
778
+
779
+ # @ virtue
780
+ #: ../metaboxes.php:503 ../metaboxes.php:925
781
+ msgid "Display Item Excerpt"
782
+ msgstr "Visualizza un estratto del articolo"
783
+
784
+ #: ../metaboxes.php:509
785
+ #, fuzzy
786
+ msgid "Add Lightbox link in each item"
787
+ msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
788
+
789
+ # @ virtue
790
+ #: ../metaboxes.php:518 ../metaboxes.php:945
791
+ msgid "Feature Page Options"
792
+ msgstr "Opzioni pagina in evidenza"
793
+
794
+ # @ virtue
795
+ #: ../metaboxes.php:527
796
+ #, fuzzy
797
+ msgid "Header Options"
798
+ msgstr "Opzioni font del Header"
799
+
800
+ # @ virtue
801
+ #: ../metaboxes.php:528
802
+ #, fuzzy
803
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
804
+ msgstr ""
805
+ "Se si usa lo slider, assicurarsi che le immagini caricate siano almeno "
806
+ "1170px di larghezza."
807
+
808
+ # @ virtue
809
+ #: ../metaboxes.php:533
810
+ msgid "Page Title"
811
+ msgstr "Titolo pagina"
812
+
813
+ # @ virtue
814
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
815
+ msgid "Slider Images"
816
+ msgstr "Slider immagini"
817
+
818
+ #: ../metaboxes.php:541
819
+ msgid "Add for flex, carousel, and image carousel."
820
+ msgstr ""
821
+
822
+ # @ virtue
823
+ #: ../metaboxes.php:546
824
+ #, fuzzy
825
+ msgid "If Cyclone Slider"
826
+ msgstr "Slider titolo"
827
+
828
+ #: ../metaboxes.php:547
829
+ msgid ""
830
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
831
+ msgstr ""
832
+
833
+ # @ virtue
834
+ #: ../metaboxes.php:559
835
+ #, fuzzy
836
+ msgid ""
837
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
838
+ "does not apply to Carousel slider)"
839
+ msgstr ""
840
+ "Predefinito: 770 o 1170 fullwidth <b>(Nota: è sufficiente il numero di "
841
+ "ingresso, ad esempio: 650, non si applica allo slider)</b>"
842
+
843
+ # @ virtue
844
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
845
+ msgid "If Video Post"
846
+ msgstr "If Video Post"
847
+
848
+ # @ virtue
849
+ #: ../metaboxes.php:573 ../metaboxes.php:996
850
+ msgid "Contact Page Options"
851
+ msgstr "Opzioni della pagina di contatto"
852
+
853
+ # @ virtue
854
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
855
+ msgid "Use Contact Form"
856
+ msgstr "Usa il form di contatto"
857
+
858
+ # @ virtue
859
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
860
+ msgid "Contact Form Title"
861
+ msgstr "Titolo form di contatto"
862
+
863
+ # @ virtue
864
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
865
+ msgid "ex. Send us an Email"
866
+ msgstr "Es. Spedisci a noi una email"
867
+
868
+ # @ virtue
869
+ #: ../metaboxes.php:598
870
+ #, fuzzy
871
+ msgid "Contact Form Email Recipient"
872
+ msgstr "Modulo di contatto Email"
873
+
874
+ #: ../metaboxes.php:599
875
+ msgid "ex. joe@gmail.com"
876
+ msgstr ""
877
+
878
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
879
+ msgid "Use Simple Math Question"
880
+ msgstr ""
881
+
882
+ # @ virtue
883
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
884
+ msgid "Use Map"
885
+ msgstr "Usa mappa"
886
+
887
+ # @ virtue
888
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
889
+ msgid "Address"
890
+ msgstr "Indirizzo"
891
+
892
+ # @ virtue
893
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
894
+ msgid "Enter your Location"
895
+ msgstr "Inserisci la tua località"
896
+
897
+ # @ virtue
898
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
899
+ msgid "Map Type"
900
+ msgstr "Tipologia mappa"
901
+
902
+ # @ virtue
903
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
904
+ msgid "ROADMAP"
905
+ msgstr "ROADMAP"
906
+
907
+ # @ virtue
908
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
909
+ msgid "HYBRID"
910
+ msgstr "HYBRID"
911
+
912
+ # @ virtue
913
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
914
+ msgid "TERRAIN"
915
+ msgstr "TERRAIN"
916
+
917
+ # @ virtue
918
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
919
+ msgid "SATELLITE"
920
+ msgstr "SATELLITE"
921
+
922
+ # @ virtue
923
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
924
+ msgid "Map Zoom Level"
925
+ msgstr "Livello di zoon mappa"
926
+
927
+ # @ virtue
928
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
929
+ msgid "A good place to start is 15"
930
+ msgstr "Un buon punto di partenza è 15"
931
+
932
+ # @ virtue
933
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
934
+ msgid "1 (World View)"
935
+ msgstr "1 (vista mondo)"
936
+
937
+ # @ virtue
938
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
939
+ msgid "21 (Street View)"
940
+ msgstr "21 (Street View)"
941
+
942
+ # @ virtue
943
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
944
+ msgid "Map Height"
945
+ msgstr "Altezza mappa"
946
+
947
+ # @ virtue
948
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
949
+ msgid "Default is 300"
950
+ msgstr "Default è 300"
951
+
952
+ # @ virtue
953
+ #: ../metaboxes.php:693
954
+ msgid "Post Video Box"
955
+ msgstr "Box videomessaggio"
956
+
957
+ # @ virtue
958
+ #: ../metaboxes.php:723
959
+ msgid "Beside"
960
+ msgstr "Vicino"
961
+
962
+ # @ virtue
963
+ #: ../metaboxes.php:735 ../metaboxes.php:959
964
+ msgid "Image Slider"
965
+ msgstr "Slider immagini"
966
+
967
+ # @ virtue
968
+ #: ../metaboxes.php:743
969
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
970
+ msgstr ""
971
+ "Predefinito: 450 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
972
+ "350)</b>"
973
+
974
+ # @ virtue
975
+ #: ../metaboxes.php:749
976
+ #, fuzzy
977
+ msgid ""
978
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
979
+ "just input number, example: 650)</b>"
980
+ msgstr ""
981
+ "Predefinito: 670 o 1170 on <b>above</b> or <b>three row</b> layouts (Nota: è "
982
+ "sufficiente il numero di ingresso, ad esempio: 650)</b>"
983
+
984
+ # @ virtue
985
+ #: ../metaboxes.php:754
986
+ #, fuzzy
987
+ msgid "Auto Play Slider?"
988
+ msgstr "Auto Play?"
989
+
990
+ # @ virtue
991
+ #: ../metaboxes.php:830
992
+ msgid "Similar Portfolio Item Carousel"
993
+ msgstr "Slider articolo portfolio simile"
994
+
995
+ # @ virtue
996
+ #: ../metaboxes.php:831
997
+ msgid "Display a carousel with similar portfolio items below project?"
998
+ msgstr ""
999
+ "Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
1000
+
1001
+ # @ virtue
1002
+ #: ../metaboxes.php:836
1003
+ msgid "Yes - Display Recent Projects"
1004
+ msgstr "Si - Visualizza progetti recenti"
1005
+
1006
+ # @ virtue
1007
+ #: ../metaboxes.php:912
1008
+ msgid "Set image height"
1009
+ msgstr "Imposta altezza immagine"
1010
+
1011
+ # @ virtue
1012
+ #: ../metaboxes.php:913
1013
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
1014
+ msgstr ""
1015
+ "Predefinito: rapporto 1:1 <b>(Nota: è sufficiente il numero di ingresso, ad "
1016
+ "esempio: 350)</b>"
1017
+
1018
+ #: ../metaboxes.php:932
1019
+ msgid "Add Lightbox link in the top right of each item"
1020
+ msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
1021
+
1022
+ # @ virtue
1023
+ #: ../metaboxes.php:954
1024
+ msgid "Feature Options"
1025
+ msgstr "Opzioni in evidenza"
1026
+
1027
+ # @ virtue
1028
+ #: ../metaboxes.php:955
1029
+ #, fuzzy
1030
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
1031
+ msgstr ""
1032
+ "Se si usa lo slider, assicurarsi che le immagini caricate siano almeno "
1033
+ "1170px di larghezza."
1034
+
1035
+ # @ virtue
1036
+ #: ../metaboxes.php:966
1037
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
1038
+ msgstr ""
1039
+ "Predefinito: 400 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
1040
+ "350)</b>"
1041
+
1042
+ # @ virtue
1043
+ #: ../metaboxes.php:972
1044
+ #, fuzzy
1045
+ msgid ""
1046
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
1047
+ "to Carousel slider)</b>"
1048
+ msgstr ""
1049
+ "Predefinito: 1170 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
1050
+ "650, non si applica allo slider)</b>"
1051
+
1052
+ # @ virtue
1053
+ #: ../metaboxes.php:977
1054
+ msgid "Use Lightbox for Feature Image"
1055
+ msgstr "Usa Lightbox per l'immagine in evidenza"
1056
+
1057
+ # @ virtue
1058
+ #: ../metaboxes.php:978
1059
+ msgid ""
1060
+ "If feature option is set to image, choose to use lightbox link with image."
1061
+ msgstr ""
1062
+ "Se opzione in evidenza è impostata su immagine, scegliere di utilizzare "
1063
+ "lightbox link per l'immagine."
1064
+
1065
+ # @ virtue
1066
+ #: ../metaboxes.php:1105
1067
+ #, fuzzy
1068
+ msgid "Slider Gallery"
1069
+ msgstr "Galleria post"
1070
+
1071
+ #: ../page-contact.php:12 ../template-contact.php:7
1072
+ msgid "This field is required."
1073
+ msgstr ""
1074
+
1075
+ # @ virtue
1076
+ #: ../page-contact.php:13 ../template-contact.php:8
1077
+ #, fuzzy
1078
+ msgid "Please enter a valid email address."
1079
+ msgstr "Per favore, inserisci il tuo indirizzo email."
1080
+
1081
+ #: ../page-contact.php:96 ../template-contact.php:95
1082
+ msgid "Check your math."
1083
+ msgstr ""
1084
+
1085
+ # @ virtue
1086
+ #: ../page-contact.php:101 ../template-contact.php:100
1087
+ msgid "Please enter your name."
1088
+ msgstr "Per favore, inserisci il tuo nome."
1089
+
1090
+ # @ virtue
1091
+ #: ../page-contact.php:108 ../template-contact.php:107
1092
+ msgid "Please enter your email address."
1093
+ msgstr "Per favore, inserisci il tuo indirizzo email."
1094
+
1095
+ # @ virtue
1096
+ #: ../page-contact.php:111 ../template-contact.php:110
1097
+ msgid "You entered an invalid email address."
1098
+ msgstr "Hai inserito un indirizzo mail non valido."
1099
+
1100
+ # @ virtue
1101
+ #: ../page-contact.php:118 ../template-contact.php:117
1102
+ msgid "Please enter a message."
1103
+ msgstr "Per favore, inserisci un messaggio."
1104
+
1105
+ # @ virtue
1106
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
1107
+ #: ../template-contact.php:134
1108
+ #, fuzzy
1109
+ msgid "Contact"
1110
+ msgstr " Contatti"
1111
+
1112
+ # @ virtue
1113
+ #: ../page-contact.php:135 ../template-contact.php:134
1114
+ msgid "From"
1115
+ msgstr "Da"
1116
+
1117
+ # @ virtue
1118
+ # @ woocommerce
1119
+ #: ../page-contact.php:136 ../template-contact.php:135
1120
+ msgid "Name"
1121
+ msgstr "Nome"
1122
+
1123
+ # @ woocommerce
1124
+ #: ../page-contact.php:137 ../template-contact.php:136
1125
+ msgid "Email"
1126
+ msgstr "Email"
1127
+
1128
+ # @ virtue
1129
+ #: ../page-contact.php:138 ../template-contact.php:137
1130
+ #, fuzzy
1131
+ msgid "Comments"
1132
+ msgstr "Commento"
1133
+
1134
+ # @ virtue
1135
+ #: ../page-contact.php:176 ../template-contact.php:173
1136
+ msgid "Thanks, your email was sent successfully."
1137
+ msgstr "Grazie, la tua email è stata inviata con successo."
1138
+
1139
+ # @ virtue
1140
+ #: ../page-contact.php:181 ../template-contact.php:177
1141
+ msgid "Sorry, an error occured."
1142
+ msgstr "Mi dispiace, c'è stato un errore."
1143
+
1144
+ # @ virtue
1145
+ #: ../page-contact.php:187 ../template-contact.php:183
1146
+ msgid "Name:"
1147
+ msgstr "Nome:"
1148
+
1149
+ # @ virtue
1150
+ #: ../page-contact.php:195
1151
+ msgid "Email: "
1152
+ msgstr "Email:"
1153
+
1154
+ # @ virtue
1155
+ #: ../page-contact.php:203
1156
+ msgid "Message: "
1157
+ msgstr "Messaggio:"
1158
+
1159
+ # @ virtue
1160
+ #: ../page-contact.php:223 ../template-contact.php:218
1161
+ msgid "Send Email"
1162
+ msgstr "Invia Email"
1163
+
1164
+ # @ virtue
1165
+ #: ../post-types.php:5 ../post-types.php:17
1166
+ msgid "Portfolio"
1167
+ msgstr "Portfolio"
1168
+
1169
+ # @ virtue
1170
+ #: ../post-types.php:6
1171
+ #, fuzzy
1172
+ msgid "Portfolio Item"
1173
+ msgstr "Portfolio"
1174
+
1175
+ # @ virtue
1176
+ #: ../post-types.php:7
1177
+ #, fuzzy
1178
+ msgid "Add New"
1179
+ msgstr "Aggiungi icona"
1180
+
1181
+ # @ virtue
1182
+ #: ../post-types.php:8
1183
+ #, fuzzy
1184
+ msgid "Add New Portfolio Item"
1185
+ msgstr "Pagina Portfolio con tutti i progetti"
1186
+
1187
+ # @ virtue
1188
+ #: ../post-types.php:9
1189
+ #, fuzzy
1190
+ msgid "Edit Portfolio Item"
1191
+ msgstr "Portfolio"
1192
+
1193
+ # @ virtue
1194
+ #: ../post-types.php:10
1195
+ #, fuzzy
1196
+ msgid "New Portfolio Item"
1197
+ msgstr "Portfolio"
1198
+
1199
+ # @ virtue
1200
+ #: ../post-types.php:11
1201
+ #, fuzzy
1202
+ msgid "All Portfolio"
1203
+ msgstr "Portfolio"
1204
+
1205
+ # @ virtue
1206
+ #: ../post-types.php:12
1207
+ #, fuzzy
1208
+ msgid "View Portfolio Item"
1209
+ msgstr "Portfolio"
1210
+
1211
+ # @ virtue
1212
+ #: ../post-types.php:13
1213
+ #, fuzzy
1214
+ msgid "Search Portfolio"
1215
+ msgstr "Portfolio"
1216
+
1217
+ # @ virtue
1218
+ #: ../post-types.php:14
1219
+ #, fuzzy
1220
+ msgid "No Portfolio Item found"
1221
+ msgstr "Slider articolo portfolio simile"
1222
+
1223
+ #: ../post-types.php:15
1224
+ msgid "No Portfolio Items found in Trash"
1225
+ msgstr ""
1226
+
1227
+ # @ virtue
1228
+ #: ../post-types.php:37
1229
+ #, fuzzy
1230
+ msgid "Portfolio Type"
1231
+ msgstr "Tipologie di portfolio lavoro"
1232
+
1233
+ # @ tgmpa
1234
+ #: ../post-types.php:38
1235
+ msgid "Type"
1236
+ msgstr "Tipo"
1237
+
1238
+ # @ virtue
1239
+ #: ../post-types.php:39
1240
+ #, fuzzy
1241
+ msgid "Search Type"
1242
+ msgstr "Cerca:"
1243
+
1244
+ # @ tgmpa
1245
+ #: ../post-types.php:40
1246
+ #, fuzzy
1247
+ msgid "All Type"
1248
+ msgstr "Tipo"
1249
+
1250
+ # @ virtue
1251
+ #: ../post-types.php:41
1252
+ #, fuzzy
1253
+ msgid "Parent Type"
1254
+ msgstr "Es. Tipologia progetto"
1255
+
1256
+ # @ virtue
1257
+ #: ../post-types.php:42
1258
+ #, fuzzy
1259
+ msgid "Parent Type:"
1260
+ msgstr "Es. Tipologia progetto"
1261
+
1262
+ # @ tgmpa
1263
+ #: ../post-types.php:43
1264
+ #, fuzzy
1265
+ msgid "Edit Type"
1266
+ msgstr "Tipo"
1267
+
1268
+ # @ woocommerce
1269
+ #: ../post-types.php:44
1270
+ #, fuzzy
1271
+ msgid "Update Type"
1272
+ msgstr "Aggiorna totale"
1273
+
1274
+ #: ../post-types.php:45
1275
+ msgid "Add New Type"
1276
+ msgstr ""
1277
+
1278
+ #: ../post-types.php:46
1279
+ msgid "New Type Name"
1280
+ msgstr ""
1281
+
1282
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
1283
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
1284
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
1285
+ msgid "You are not allowed to be here"
1286
+ msgstr ""
1287
+
1288
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
1289
+ #: ../shortcodes.php:178
1290
+ msgid "please specify correct url"
1291
+ msgstr ""
1292
+
1293
+ #: ../shortcodes/accordion/accordion_popup.php:10
1294
+ msgid "Insert Accordion or Tabs"
1295
+ msgstr ""
1296
+
1297
+ #: ../shortcodes/accordion/accordion_popup.php:59
1298
+ msgid "Accordion or Tabs"
1299
+ msgstr ""
1300
+
1301
+ #: ../shortcodes/accordion/accordion_popup.php:61
1302
+ msgid "Accordion"
1303
+ msgstr ""
1304
+
1305
+ #: ../shortcodes/accordion/accordion_popup.php:62
1306
+ msgid "Tabs"
1307
+ msgstr ""
1308
+
1309
+ #: ../shortcodes/accordion/accordion_popup.php:66
1310
+ #: ../shortcodes/btns/btns_popup.php:230
1311
+ #: ../shortcodes/divider/divider_popup.php:80
1312
+ #: ../shortcodes/pullquote/quote_popup.php:77
1313
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
1314
+ #: ../shortcodes/youtube/youtube_popup.php:85
1315
+ msgid "Insert"
1316
+ msgstr ""
1317
+
1318
+ #: ../shortcodes/btns/btns_popup.php:10
1319
+ msgid "Insert Button"
1320
+ msgstr ""
1321
+
1322
+ #: ../shortcodes/btns/btns_popup.php:99
1323
+ msgid "Button Text"
1324
+ msgstr ""
1325
+
1326
+ # @ virtue
1327
+ #: ../shortcodes/btns/btns_popup.php:105
1328
+ #, fuzzy
1329
+ msgid "Text Color"
1330
+ msgstr "Seleziona un'icona"
1331
+
1332
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1333
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1334
+ msgid "White"
1335
+ msgstr ""
1336
+
1337
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1338
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1339
+ msgid "Off-White"
1340
+ msgstr ""
1341
+
1342
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1343
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1344
+ msgid "Black"
1345
+ msgstr ""
1346
+
1347
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1348
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1349
+ msgid "Light-Gray"
1350
+ msgstr ""
1351
+
1352
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1353
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1354
+ msgid "Gray"
1355
+ msgstr ""
1356
+
1357
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1358
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1359
+ msgid "Dark-Gray"
1360
+ msgstr ""
1361
+
1362
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1363
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1364
+ msgid "Silver"
1365
+ msgstr ""
1366
+
1367
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1368
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1369
+ msgid "Red"
1370
+ msgstr ""
1371
+
1372
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1373
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1374
+ msgid "Blue"
1375
+ msgstr ""
1376
+
1377
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1378
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1379
+ msgid "Green"
1380
+ msgstr ""
1381
+
1382
+ # @ virtue
1383
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1384
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1385
+ #, fuzzy
1386
+ msgid "Yellow"
1387
+ msgstr "Segui"
1388
+
1389
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1390
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1391
+ msgid "Orange"
1392
+ msgstr ""
1393
+
1394
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1395
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1396
+ msgid "Pink"
1397
+ msgstr ""
1398
+
1399
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1400
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1401
+ msgid "Purple"
1402
+ msgstr ""
1403
+
1404
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1405
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1406
+ msgid "Brown"
1407
+ msgstr ""
1408
+
1409
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1410
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1411
+ msgid "Maroon"
1412
+ msgstr ""
1413
+
1414
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1415
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1416
+ msgid "Or Type Hex Color"
1417
+ msgstr ""
1418
+
1419
+ # @ virtue
1420
+ #: ../shortcodes/btns/btns_popup.php:132
1421
+ #, fuzzy
1422
+ msgid "Button Color"
1423
+ msgstr "Colore di sfondo"
1424
+
1425
+ #: ../shortcodes/btns/btns_popup.php:161
1426
+ msgid "Text Hover Color"
1427
+ msgstr ""
1428
+
1429
+ # @ virtue
1430
+ #: ../shortcodes/btns/btns_popup.php:188
1431
+ #, fuzzy
1432
+ msgid "Button Background Hover Color"
1433
+ msgstr "Colore di sfondo"
1434
+
1435
+ # @ virtue
1436
+ #: ../shortcodes/btns/btns_popup.php:190
1437
+ #, fuzzy
1438
+ msgid "30% Primary Color"
1439
+ msgstr "Colore primario"
1440
+
1441
+ # @ virtue
1442
+ #: ../shortcodes/btns/btns_popup.php:216
1443
+ #, fuzzy
1444
+ msgid "Button Link"
1445
+ msgstr "Link icona"
1446
+
1447
+ #: ../shortcodes/btns/btns_popup.php:222
1448
+ msgid "Button Link Target"
1449
+ msgstr ""
1450
+
1451
+ #: ../shortcodes/btns/btns_popup.php:224
1452
+ msgid "Same Window"
1453
+ msgstr ""
1454
+
1455
+ #: ../shortcodes/btns/btns_popup.php:225
1456
+ msgid "New Window/Tab"
1457
+ msgstr ""
1458
+
1459
+ # @ virtue
1460
+ #: ../shortcodes/columns/columns_popup.php:10
1461
+ #, fuzzy
1462
+ msgid "Insert Columns"
1463
+ msgstr "Colonne"
1464
+
1465
+ #: ../shortcodes/divider/divider_popup.php:10
1466
+ msgid "Insert Divider"
1467
+ msgstr ""
1468
+
1469
+ # @ virtue
1470
+ #: ../shortcodes/divider/divider_popup.php:70
1471
+ #, fuzzy
1472
+ msgid "Choose a Divider"
1473
+ msgstr "Scegli la sidebar"
1474
+
1475
+ #: ../shortcodes/divider/divider_popup.php:72
1476
+ msgid "Line"
1477
+ msgstr ""
1478
+
1479
+ #: ../shortcodes/divider/divider_popup.php:73
1480
+ msgid "Padding Small"
1481
+ msgstr ""
1482
+
1483
+ #: ../shortcodes/divider/divider_popup.php:74
1484
+ msgid "Padding Medium"
1485
+ msgstr ""
1486
+
1487
+ #: ../shortcodes/divider/divider_popup.php:75
1488
+ msgid "Padding Large"
1489
+ msgstr ""
1490
+
1491
+ # @ virtue
1492
+ #: ../shortcodes/icons/icon_popup.php:10
1493
+ #, fuzzy
1494
+ msgid "Insert Icon"
1495
+ msgstr "Cancella icona"
1496
+
1497
+ #: ../shortcodes/pullquote/quote_popup.php:10
1498
+ msgid "Insert Styled Quote"
1499
+ msgstr ""
1500
+
1501
+ #: ../shortcodes/pullquote/quote_popup.php:61
1502
+ msgid "Pull-Quote"
1503
+ msgstr ""
1504
+
1505
+ #: ../shortcodes/pullquote/quote_popup.php:62
1506
+ msgid "Block-Quote"
1507
+ msgstr ""
1508
+
1509
+ #: ../shortcodes/pullquote/quote_popup.php:68
1510
+ msgid "Align"
1511
+ msgstr ""
1512
+
1513
+ #: ../shortcodes/pullquote/quote_popup.php:70
1514
+ msgid "Center"
1515
+ msgstr ""
1516
+
1517
+ #: ../shortcodes/pullquote/quote_popup.php:71
1518
+ msgid "Left"
1519
+ msgstr ""
1520
+
1521
+ # @ woocommerce
1522
+ #: ../shortcodes/pullquote/quote_popup.php:72
1523
+ #, fuzzy
1524
+ msgid "Right"
1525
+ msgstr "Peso"
1526
+
1527
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1528
+ msgid "Insert Vimeo Video"
1529
+ msgstr ""
1530
+
1531
+ # @ virtue
1532
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1533
+ #, fuzzy
1534
+ msgid "Vimeo Link"
1535
+ msgstr "Link icona"
1536
+
1537
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1538
+ #: ../shortcodes/youtube/youtube_popup.php:70
1539
+ msgid "Width"
1540
+ msgstr ""
1541
+
1542
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1543
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1544
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1545
+ #: ../shortcodes/youtube/youtube_popup.php:72
1546
+ #: ../shortcodes/youtube/youtube_popup.php:77
1547
+ #: ../shortcodes/youtube/youtube_popup.php:82
1548
+ msgid "note just use number"
1549
+ msgstr ""
1550
+
1551
+ # @ woocommerce
1552
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1553
+ #: ../shortcodes/youtube/youtube_popup.php:75
1554
+ #, fuzzy
1555
+ msgid "Height"
1556
+ msgstr "Peso"
1557
+
1558
+ # @ virtue
1559
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1560
+ #: ../shortcodes/youtube/youtube_popup.php:80
1561
+ #, fuzzy
1562
+ msgid "(Optional) Max Width"
1563
+ msgstr "Larghezza massima slider"
1564
+
1565
+ #: ../shortcodes/youtube/youtube_popup.php:10
1566
+ msgid "Insert YouTube Video"
1567
+ msgstr ""
1568
+
1569
+ # @ virtue
1570
+ #: ../shortcodes/youtube/youtube_popup.php:66
1571
+ #, fuzzy
1572
+ msgid "YouTube Link"
1573
+ msgstr "Link icona"
1574
+
1575
+ # @ virtue
1576
+ # @ woocommerce
1577
+ #: ../template-contact.php:193
1578
+ msgid "Email:"
1579
+ msgstr "Email:"
1580
+
1581
+ # @ virtue
1582
+ #: ../template-contact.php:200
1583
+ #, fuzzy
1584
+ msgid "Message:"
1585
+ msgstr "Messaggio:"
1586
+
1587
+ # @ virtue
1588
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
1589
+ #~ msgstr ""
1590
+ #~ "Mi dispiace, ma la pagina che hai provato a visualizzare, non esiste."
1591
+
1592
+ # @ virtue
1593
+ #~ msgid "It looks like this was the result of either:"
1594
+ #~ msgstr "Sembra che il risultato sia:"
1595
+
1596
+ # @ virtue
1597
+ #~ msgid "a mistyped address"
1598
+ #~ msgstr "un indirizzo compilato male"
1599
+
1600
+ # @ virtue
1601
+ #~ msgid "an out-of-date link"
1602
+ #~ msgstr "un link obsoleto"
1603
+
1604
+ # @ virtue
1605
+ #~ msgid "Sorry, no results were found."
1606
+ #~ msgstr "Spiacente, nessun errore è stato trovato."
1607
+
1608
+ # @ virtue
1609
+ #~ msgid "Sorry, no blog entries found."
1610
+ #~ msgstr "Mi dispiace, nessuna voce trovata nel blog."
1611
+
1612
+ # @ redux-framework
1613
+ #~ msgid "From "
1614
+ #~ msgstr "Da"
1615
+
1616
+ # @ virtue
1617
+ #~ msgid "Sorry, no portfolio entries found."
1618
+ #~ msgstr "Mi dispiace, nessuna voce trovata nel porfolio."
1619
+
1620
+ # @ virtue
1621
+ #~ msgid "Search for:"
1622
+ #~ msgstr "Cerca:"
1623
+
1624
+ # @ virtue
1625
+ #~ msgid "&larr; Older posts"
1626
+ #~ msgstr "&larr; Messaggi precedenti"
1627
+
1628
+ # @ virtue
1629
+ #~ msgid "Newer posts &rarr;"
1630
+ #~ msgstr "Nuovi messaggi &rarr;"
1631
+
1632
+ # @ virtue
1633
+ #~ msgid "About Author"
1634
+ #~ msgstr "Circa l'autore"
1635
+
1636
+ # @ virtue
1637
+ #~ msgid "Latest Posts"
1638
+ #~ msgstr "Messaggio più recente"
1639
+
1640
+ # @ virtue
1641
+ #~ msgid "on Facebook"
1642
+ #~ msgstr "su Facebook"
1643
+
1644
+ # @ virtue
1645
+ #~ msgid "on Twitter"
1646
+ #~ msgstr "su Twitter"
1647
+
1648
+ # @ virtue
1649
+ #~ msgid "on Google Plus"
1650
+ #~ msgstr "su Google Plus"
1651
+
1652
+ # @ virtue
1653
+ #~ msgid "on Flickr"
1654
+ #~ msgstr "su Flickr"
1655
+
1656
+ # @ virtue
1657
+ #~ msgid "on Vimeo"
1658
+ #~ msgstr "su Vimeo"
1659
+
1660
+ # @ virtue
1661
+ #~ msgid "on linkedin"
1662
+ #~ msgstr "su linkedin"
1663
+
1664
+ # @ virtue
1665
+ #~ msgid "on Dribbble"
1666
+ #~ msgstr "su Dribbble"
1667
+
1668
+ # @ virtue
1669
+ #~ msgid "on Pinterest"
1670
+ #~ msgstr "su Pinterest"
1671
+
1672
+ # @ virtue
1673
+ #~ msgid "on Instagram"
1674
+ #~ msgstr "su Instagram"
1675
+
1676
+ # @ virtue
1677
+ #~ msgid "Latest posts from"
1678
+ #~ msgstr "Ultimi messaggi"
1679
+
1680
+ # @ tgmpa
1681
+ # @ virtue
1682
+ #~ msgid "Install Required Plugins"
1683
+ #~ msgstr "Installare il plugin richiesto"
1684
+
1685
+ # @ tgmpa
1686
+ # @ virtue
1687
+ #~ msgid "Install Plugins"
1688
+ #~ msgstr "Installare il plugin"
1689
+
1690
+ # @ tgmpa
1691
+ # @ virtue
1692
+ #~ msgid "Installing Plugin: %s"
1693
+ #~ msgstr "Installazione del plugin: %s"
1694
+
1695
+ # @ tgmpa
1696
+ #~ msgid "Something went wrong."
1697
+ #~ msgstr "Qualcosa è andato storto."
1698
+
1699
+ # @ tgmpa
1700
+ # @ virtue
1701
+ #~ msgid "Return to Required Plugins Installer"
1702
+ #~ msgstr "Ritorna all'installer dei plugins richiesti"
1703
+
1704
+ # @ tgmpa
1705
+ #~ msgid "Return to the dashboard"
1706
+ #~ msgstr "Ritorna al pannello di controllo"
1707
+
1708
+ # @ tgmpa
1709
+ # @ virtue
1710
+ #~ msgid "Plugin activated successfully."
1711
+ #~ msgstr "Plugin attivato con successo."
1712
+
1713
+ # @ tgmpa
1714
+ #~ msgid "The following plugin was activated successfully:"
1715
+ #~ msgid_plural "The following plugins were activated successfully:"
1716
+ #~ msgstr[0] "Il seguente plugin, è stato attivato con successo:"
1717
+ #~ msgstr[1] "I seguenti plugin, sono stati attivati con successo:"
1718
+
1719
+ # @ tgmpa
1720
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1721
+ #~ msgstr "Tutti i plugins sono installati ed attivati con successo. %1$s"
1722
+
1723
+ # @ tgmpa
1724
+ #~ msgid "Dismiss this notice"
1725
+ #~ msgstr "Elimina questo avviso"
1726
+
1727
+ # @ tgmpa
1728
+ #~ msgid "External Link"
1729
+ #~ msgstr "Link esterno"
1730
+
1731
+ # @ tgmpa
1732
+ #~ msgid "Private Repository"
1733
+ #~ msgstr "Magazzino privato"
1734
+
1735
+ # @ tgmpa
1736
+ #~ msgid "Pre-Packaged"
1737
+ #~ msgstr "Pre-confezionato"
1738
+
1739
+ # @ tgmpa
1740
+ #~ msgid "WordPress Repository"
1741
+ #~ msgstr "Magazzino WordPress"
1742
+
1743
+ # @ tgmpa
1744
+ #~ msgid "Required"
1745
+ #~ msgstr "Richiesto"
1746
+
1747
+ # @ tgmpa
1748
+ #~ msgid "Recommended"
1749
+ #~ msgstr "Raccomandato"
1750
+
1751
+ # @ tgmpa
1752
+ #~ msgid "Not Installed"
1753
+ #~ msgstr "Non installato"
1754
+
1755
+ # @ tgmpa
1756
+ #~ msgid "Installed But Not Activated"
1757
+ #~ msgstr "Installato, ma non attivato"
1758
+
1759
+ # @ tgmpa
1760
+ #~ msgid ""
1761
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
1762
+ #~ "Dashboard\">Return to the Dashboard</a>"
1763
+ #~ msgstr ""
1764
+ #~ "Nessun plugin da installare o attivare. <a href=\"%1$s\" title=\"Return "
1765
+ #~ "to the Dashboard\">Ritorna al pannello di controllo</a>"
1766
+
1767
+ # @ tgmpa
1768
+ #~ msgid "Plugin"
1769
+ #~ msgstr "Plugin"
1770
+
1771
+ # @ tgmpa
1772
+ #~ msgid "Source"
1773
+ #~ msgstr "Sorgente"
1774
+
1775
+ # @ tgmpa
1776
+ # @ woocommerce
1777
+ #~ msgid "Status"
1778
+ #~ msgstr "Stato"
1779
+
1780
+ # @ tgmpa
1781
+ #~ msgid "Install"
1782
+ #~ msgstr "Installare"
1783
+
1784
+ # @ tgmpa
1785
+ #~ msgid "Activate"
1786
+ #~ msgstr "Attivare"
1787
+
1788
+ # @ tgmpa
1789
+ #~ msgid "Install package not available."
1790
+ #~ msgstr "Pacchetto di installazione non disponibile"
1791
+
1792
+ # @ tgmpa
1793
+ #~ msgid ""
1794
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
1795
+ #~ msgstr ""
1796
+ #~ "Download del pacchetto di installazione da <span class=\"code\">%s</"
1797
+ #~ "span>&#8230;"
1798
+
1799
+ # @ tgmpa
1800
+ #~ msgid "Unpacking the package&#8230;"
1801
+ #~ msgstr "Decomprimere il pacchetto&#8230;"
1802
+
1803
+ # @ tgmpa
1804
+ #~ msgid "Installing the plugin&#8230;"
1805
+ #~ msgstr "Installazione del plugin&#8230;"
1806
+
1807
+ # @ tgmpa
1808
+ #~ msgid "Plugin install failed."
1809
+ #~ msgstr "Installazione plugin fallita."
1810
+
1811
+ # @ tgmpa
1812
+ #~ msgid "Plugin installed successfully."
1813
+ #~ msgstr "Plugin installato con successo."
1814
+
1815
+ # @ tgmpa
1816
+ #~ msgid "Plugin activation failed."
1817
+ #~ msgstr "Attivazione plugin fallita."
1818
+
1819
+ # @ tgmpa
1820
+ #~ msgid ""
1821
+ #~ "The installation and activation process is starting. This process may "
1822
+ #~ "take a while on some hosts, so please be patient."
1823
+ #~ msgstr ""
1824
+ #~ "Il processo di installazione e di attivazione è iniziato. Su alcuni "
1825
+ #~ "hosts, questo processo può richiedere un po di tempo; quindi per favore, "
1826
+ #~ "sii paziente."
1827
+
1828
+ # @ tgmpa
1829
+ #~ msgid "%1$s installed and activated successfully."
1830
+ #~ msgstr "%1$s installato ed attivato con successo."
1831
+
1832
+ # @ tgmpa
1833
+ #~ msgid "Show Details"
1834
+ #~ msgstr "Mostra i dettagli"
1835
+
1836
+ # @ tgmpa
1837
+ #~ msgid "Hide Details"
1838
+ #~ msgstr "Nascondi i dettagli"
1839
+
1840
+ # @ tgmpa
1841
+ #~ msgid "All installations and activations have been completed."
1842
+ #~ msgstr "Tutte le installazioni e le attivazioni sono state completate."
1843
+
1844
+ # @ tgmpa
1845
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
1846
+ #~ msgstr "Installazione ed attivazione plugin %1$s (%2$d/%3$d)"
1847
+
1848
+ # @ tgmpa
1849
+ #~ msgid ""
1850
+ #~ "The installation process is starting. This process may take a while on "
1851
+ #~ "some hosts, so please be patient."
1852
+ #~ msgstr ""
1853
+ #~ "E' iniziato il processo di installazione. Su alcuni hosts, questo "
1854
+ #~ "processo può richiedere un po di tempo; quindi per favore, sii paziente."
1855
+
1856
+ # @ tgmpa
1857
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1858
+ #~ msgstr ""
1859
+ #~ "Si è verificato un errore durante l'installazione %1$s: <strong>%2$s</"
1860
+ #~ "strong>."
1861
+
1862
+ # @ tgmpa
1863
+ #~ msgid "The installation of %1$s failed."
1864
+ #~ msgstr "L'installazione di %1$s è fallita."
1865
+
1866
+ # @ tgmpa
1867
+ #~ msgid "%1$s installed successfully."
1868
+ #~ msgstr "%1$s installato con successo."
1869
+
1870
+ # @ tgmpa
1871
+ #~ msgid "All installations have been completed."
1872
+ #~ msgstr "Tutte le installazioni sono state completate."
1873
+
1874
+ # @ tgmpa
1875
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
1876
+ #~ msgstr "Installazione plugin %1$s (%2$d/%3$d)"
1877
+
1878
+ # @ tgmpa
1879
+ #~ msgid "Return to the Dashboard"
1880
+ #~ msgstr "Ritorna al pannello di controllo"
1881
+
1882
+ # @ virtue
1883
+ #~ msgid "Continued"
1884
+ #~ msgstr "Continua"
1885
+
1886
+ # @ virtue
1887
+ #~ msgid "%1$s"
1888
+ #~ msgstr "%1$s"
1889
+
1890
+ # @ virtue
1891
+ #~ msgid "| (Edit)"
1892
+ #~ msgstr "| (Modifica)"
1893
+
1894
+ # @ virtue
1895
+ #~ msgid "Your comment is awaiting moderation."
1896
+ #~ msgstr "Il tuo commento è in attesa di moderazione."
1897
+
1898
+ # @ virtue
1899
+ # @ woocommerce
1900
+ #~ msgid "View your shopping cart"
1901
+ #~ msgstr "Guarda il tuo carrello degli acquisti"
1902
+
1903
+ # @ virtue
1904
+ # @ woocommerce
1905
+ #~ msgid "Your Cart"
1906
+ #~ msgstr "Il tuo carrello"
1907
+
1908
+ # @ virtue
1909
+ #~ msgid "Previous Post"
1910
+ #~ msgstr "Messaggio precedente"
1911
+
1912
+ # @ virtue
1913
+ #~ msgid "Next Post"
1914
+ #~ msgstr "Messaggio successivo"
1915
+
1916
+ # @ virtue
1917
+ #~ msgid "Occupation"
1918
+ #~ msgstr "Professione"
1919
+
1920
+ # @ virtue
1921
+ #~ msgid "Please enter your Occupation."
1922
+ #~ msgstr "Per favore, inserisci la tua occupazione."
1923
+
1924
+ # @ virtue
1925
+ #~ msgid "Please enter your Twitter username."
1926
+ #~ msgstr "Per favore, inserisci il tuo username di Twitter."
1927
+
1928
+ # @ virtue
1929
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
1930
+ #~ msgstr "Per favore, inserisci il tuo URL Facebook. (includendo http://)"
1931
+
1932
+ # @ virtue
1933
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
1934
+ #~ msgstr "Per favore, inserisci il tuo URL Google Plus. (includendo http://)"
1935
+
1936
+ # @ virtue
1937
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
1938
+ #~ msgstr "Per favore, inserisci il tuo URL Flickr. (includendo http://)"
1939
+
1940
+ # @ virtue
1941
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
1942
+ #~ msgstr "Per favore, inserisci il tuo URL Linkedin. (includendo http://)"
1943
+
1944
+ # @ virtue
1945
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
1946
+ #~ msgstr "Per favore, inserisci il tuo URL Dribbble. (includendo http://)"
1947
+
1948
+ # @ virtue
1949
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
1950
+ #~ msgstr "Per favore, inserisci il tuo URL Pinterest. (includendo http://)"
1951
+
1952
+ # @ virtue
1953
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
1954
+ #~ msgstr "Per favore, inserisci il tuo URL Instagram. (includendo http://)"
1955
+
1956
+ # @ virtue
1957
+ #~ msgid "Post Slider Images"
1958
+ #~ msgstr "Slider immagini del messaggio"
1959
+
1960
+ # @ virtue
1961
+ #~ msgid "Feature Page Slider Images"
1962
+ #~ msgstr "Slider immagini della pagina in evidenza"
1963
+
1964
+ # @ virtue
1965
+ #~ msgid "Remove image"
1966
+ #~ msgstr "Rimuovi immagine"
1967
+
1968
+ # @ virtue
1969
+ #~ msgid "Add images"
1970
+ #~ msgstr "Aggiungi immagine"
1971
+
1972
+ # @ virtue
1973
+ #~ msgid "Add to gallery"
1974
+ #~ msgstr "Aggiungi alla galleria"
1975
+
1976
+ # @ virtue
1977
+ #~ msgid "Primary Navigation"
1978
+ #~ msgstr "Navigazione primaria"
1979
+
1980
+ # @ virtue
1981
+ #~ msgid "Secondary Navigation"
1982
+ #~ msgstr "Navigazione secondaria"
1983
+
1984
+ # @ virtue
1985
+ #~ msgid "Mobile Navigation"
1986
+ #~ msgstr "Navigazione mobile"
1987
+
1988
+ # @ virtue
1989
+ #~ msgid "Topbar Navigation"
1990
+ #~ msgstr "Topbar di navigazione"
1991
+
1992
+ # @ virtue
1993
+ #~ msgid "Footer Navigation"
1994
+ #~ msgstr "Footer di navigazione"
1995
+
1996
+ # @ virtue
1997
+ #~ msgid "All Blog Posts"
1998
+ #~ msgstr "Tutti i messaggi del blog"
1999
+
2000
+ # @ virtue
2001
+ #~ msgid "Text"
2002
+ #~ msgstr "Testo"
2003
+
2004
+ # @ virtue
2005
+ #~ msgid "Display Sidebar?"
2006
+ #~ msgstr "Visualizza la sidebar?"
2007
+
2008
+ # @ virtue
2009
+ #~ msgid "Choose if layout is fullwidth or sidebar"
2010
+ #~ msgstr "Scegli se il layout è fullwidth o con sidebar"
2011
+
2012
+ # @ virtue
2013
+ #~ msgid "Author Info"
2014
+ #~ msgstr "Info autore"
2015
+
2016
+ # @ virtue
2017
+ #~ msgid "Display an author info box?"
2018
+ #~ msgstr "Visualizza il box info dell'autore?"
2019
+
2020
+ # @ virtue
2021
+ #~ msgid "Posts Carousel"
2022
+ #~ msgstr "Slider messaggi"
2023
+
2024
+ # @ virtue
2025
+ #~ msgid "Display a carousel with similar or recent posts?"
2026
+ #~ msgstr "Visualizza uno slider con messaggi simili o recenti?"
2027
+
2028
+ # @ virtue
2029
+ #~ msgid "Yes - Display Recent Posts"
2030
+ #~ msgstr "Si - Visualizza i messaggi recenti"
2031
+
2032
+ # @ virtue
2033
+ #~ msgid "Yes - Display Similar Posts"
2034
+ #~ msgstr "Si - Visualizza i messaggi simili"
2035
+
2036
+ # @ virtue
2037
+ #~ msgid "ex. Similar Posts"
2038
+ #~ msgstr "Es. messaggi simili"
2039
+
2040
+ # @ virtue
2041
+ #~ msgid "Blog List Options"
2042
+ #~ msgstr "Opzioni lista blog"
2043
+
2044
+ # @ virtue
2045
+ #~ msgid "Blog Category"
2046
+ #~ msgstr "Categoria blog"
2047
+
2048
+ # @ virtue
2049
+ #~ msgid "Select all blog posts or a specific category to show"
2050
+ #~ msgstr ""
2051
+ #~ "Seleziona tutti i messaggi del blog o specifiche categoria da mostrare"
2052
+
2053
+ # @ virtue
2054
+ #~ msgid "How Many Posts Per Page"
2055
+ #~ msgstr "Quanti messaggi per pagina"
2056
+
2057
+ # @ virtue
2058
+ #~ msgid "Display Post Content as:"
2059
+ #~ msgstr "Visualizza i contenuti del messaggio come:"
2060
+
2061
+ # @ virtue
2062
+ #~ msgid "Summary"
2063
+ #~ msgstr "Sommario"
2064
+
2065
+ # @ virtue
2066
+ #~ msgid "Full"
2067
+ #~ msgstr "Completo"
2068
+
2069
+ # @ virtue
2070
+ #~ msgid "Sidebar Options"
2071
+ #~ msgstr "Opzioni sidebar"
2072
+
2073
+ # @ virtue
2074
+ #~ msgid "Daily Archives: %s"
2075
+ #~ msgstr "Archivio giornaliero: %s"
2076
+
2077
+ # @ virtue
2078
+ #~ msgid "Monthly Archives: %s"
2079
+ #~ msgstr "Archivio mensile: %s"
2080
+
2081
+ # @ virtue
2082
+ #~ msgid "Yearly Archives: %s"
2083
+ #~ msgstr "Archivio annuale: %s"
2084
+
2085
+ # @ virtue
2086
+ #~ msgid "Author Archives: %s"
2087
+ #~ msgstr "Archivio autore: %s"
2088
+
2089
+ # @ virtue
2090
+ #~ msgid "Search Results for %s"
2091
+ #~ msgstr "Cerca risultato per %s"
2092
+
2093
+ # @ virtue
2094
+ #~ msgid "Not Found"
2095
+ #~ msgstr "Non trovato"
2096
+
2097
+ # @ virtue
2098
+ #~ msgid "Something went wrong with the plugin API."
2099
+ #~ msgstr "Qualcosa è andato storto con il plugin API."
2100
+
2101
+ # @ virtue
2102
+ #~ msgid "All plugins installed and activated successfully. %s"
2103
+ #~ msgstr "Tutti i plugin installati ed attivati con successo. %s"
2104
+
2105
+ # @ virtue
2106
+ #~ msgid "Primary Sidebar"
2107
+ #~ msgstr "Sidebar primaria"
2108
+
2109
+ # @ virtue
2110
+ #~ msgid "Topbar Widget"
2111
+ #~ msgstr "Topbar Widget"
2112
+
2113
+ # @ virtue
2114
+ #~ msgid "Footer Column 1"
2115
+ #~ msgstr "Footer Colonna 1"
2116
+
2117
+ # @ virtue
2118
+ #~ msgid "Footer Column 2"
2119
+ #~ msgstr "Footer Colonna 2"
2120
+
2121
+ # @ virtue
2122
+ #~ msgid "Footer Column 3"
2123
+ #~ msgstr "Footer Colonna 3"
2124
+
2125
+ # @ virtue
2126
+ #~ msgid "Footer Column 4"
2127
+ #~ msgstr "Footer Colonna 4"
2128
+
2129
+ # @ virtue
2130
+ #~ msgid "Use this widget to add a Vcard to your site"
2131
+ #~ msgstr "Utilizzare questo widget per aggiungere un Vcard al tuo sito"
2132
+
2133
+ # @ virtue
2134
+ #~ msgid "Virtue: Contact/Vcard"
2135
+ #~ msgstr "Virtue: Contact/Vcard"
2136
+
2137
+ # @ virtue
2138
+ #~ msgid "vCard"
2139
+ #~ msgstr "vCard"
2140
+
2141
+ # @ virtue
2142
+ #~ msgid "Title:"
2143
+ #~ msgstr "Titolo:"
2144
+
2145
+ # @ virtue
2146
+ #~ msgid "Company Name:"
2147
+ #~ msgstr "Nome azienda:"
2148
+
2149
+ # @ virtue
2150
+ #~ msgid "Street Address:"
2151
+ #~ msgstr "Indirizzo:"
2152
+
2153
+ # @ virtue
2154
+ #~ msgid "City/Locality:"
2155
+ #~ msgstr "Città:"
2156
+
2157
+ # @ virtue
2158
+ #~ msgid "State/Region:"
2159
+ #~ msgstr "Stato:"
2160
+
2161
+ # @ virtue
2162
+ #~ msgid "Zipcode/Postal Code:"
2163
+ #~ msgstr "Codice postale:"
2164
+
2165
+ # @ virtue
2166
+ # @ woocommerce
2167
+ #, fuzzy
2168
+ #~ msgid "Mobile Telephone:"
2169
+ #~ msgstr "Telefono:"
2170
+
2171
+ # @ virtue
2172
+ # @ woocommerce
2173
+ #, fuzzy
2174
+ #~ msgid "Fixed Telephone:"
2175
+ #~ msgstr "Telefono:"
2176
+
2177
+ # @ virtue
2178
+ #~ msgid "Simple way to add Social Icons"
2179
+ #~ msgstr "Modo semplice per aggiungere icone social"
2180
+
2181
+ # @ virtue
2182
+ #~ msgid "Virtue: Social Links"
2183
+ #~ msgstr "Virtue: Social Links"
2184
+
2185
+ # @ virtue
2186
+ #~ msgid "Facebook:"
2187
+ #~ msgstr "Facebook:"
2188
+
2189
+ # @ virtue
2190
+ #~ msgid "Twitter:"
2191
+ #~ msgstr "Twitter:"
2192
+
2193
+ # @ virtue
2194
+ #~ msgid "Instagram:"
2195
+ #~ msgstr "Instagram:"
2196
+
2197
+ # @ virtue
2198
+ #~ msgid "GooglePlus:"
2199
+ #~ msgstr "GooglePlus:"
2200
+
2201
+ # @ virtue
2202
+ #~ msgid "Flickr:"
2203
+ #~ msgstr "Flickr:"
2204
+
2205
+ # @ virtue
2206
+ #~ msgid "Vimeo:"
2207
+ #~ msgstr "Vimeo:"
2208
+
2209
+ # @ virtue
2210
+ #~ msgid "Youtube:"
2211
+ #~ msgstr "Youtube:"
2212
+
2213
+ # @ virtue
2214
+ #~ msgid "Pinterest:"
2215
+ #~ msgstr "Pinterest:"
2216
+
2217
+ # @ virtue
2218
+ #~ msgid "Dribbble:"
2219
+ #~ msgstr "Dribbble:"
2220
+
2221
+ # @ virtue
2222
+ #~ msgid "Linkedin:"
2223
+ #~ msgstr "Linkedin:"
2224
+
2225
+ # @ virtue
2226
+ #~ msgid "RSS:"
2227
+ #~ msgstr "RSS:"
2228
+
2229
+ # @ virtue
2230
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
2231
+ #~ msgstr "Questo mostra i messaggi più recenti del suo sito con una thumbnail"
2232
+
2233
+ # @ virtue
2234
+ #~ msgid "Virtue: Recent Posts"
2235
+ #~ msgstr "Virtue: Messaggi recenti"
2236
+
2237
+ # @ virtue
2238
+ #~ msgid "Recent Posts"
2239
+ #~ msgstr "Messaggi recenti"
2240
+
2241
+ # @ virtue
2242
+ #~ msgid "Number of posts to show:"
2243
+ #~ msgstr "Numero di messaggi da visualizzare:"
2244
+
2245
+ # @ virtue
2246
+ #~ msgid "Limit to Catagory (Optional):"
2247
+ #~ msgstr "Limita per categoria (opzionale):"
2248
+
2249
+ # @ virtue
2250
+ #~ msgid ""
2251
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
2252
+ #~ msgstr ""
2253
+ #~ "Questo mette in evidenza delle immagini prese dai messaggi recenti o "
2254
+ #~ "dagli elementi del portfolio"
2255
+
2256
+ # @ virtue
2257
+ #~ msgid "Virtue: Image Grid"
2258
+ #~ msgstr "Virtue: Griglia immagine"
2259
+
2260
+ # @ virtue
2261
+ #~ msgid "Grid Choice:"
2262
+ #~ msgstr "Scelta griglia:"
2263
+
2264
+ # @ virtue
2265
+ #~ msgid "Blog Posts"
2266
+ #~ msgstr "Messaggi blog"
2267
+
2268
+ # @ virtue
2269
+ #~ msgid "If Post - Choose Category (Optional):"
2270
+ #~ msgstr "If Post - Scegli categoria (opzionale)"
2271
+
2272
+ # @ virtue
2273
+ #~ msgid "If Portfolio - Choose Type (Optional):"
2274
+ #~ msgstr "If Portfolio - Scegli tipologia (opzionale)"
2275
+
2276
+ # @ virtue
2277
+ #~ msgid "Number of images to show:"
2278
+ #~ msgstr "Numero di immagini da visualizzare:"
2279
+
2280
+ # @ virtue
2281
+ #~ msgid "This allows for an image and a simple about text."
2282
+ #~ msgstr "Questo permette ad un'immagine di avere un semplice testo."
2283
+
2284
+ # @ virtue
2285
+ #, fuzzy
2286
+ #~ msgid "Virtue: Image"
2287
+ #~ msgstr "Virtue: Griglia immagine"
2288
+
2289
+ # @ virtue
2290
+ # @ redux-framework
2291
+ #~ msgid "Upload"
2292
+ #~ msgstr "Carica"
2293
+
2294
+ # @ virtue
2295
+ #, fuzzy
2296
+ #~ msgid "Image opens in"
2297
+ #~ msgstr "Opzioni di ripetizione immagine"
2298
+
2299
+ # @ virtue
2300
+ #, fuzzy
2301
+ #~ msgid "Image Link (optional)"
2302
+ #~ msgstr "Opzioni di ripetizione immagine"
2303
+
2304
+ # @ woocommerce
2305
+ #, fuzzy
2306
+ #~ msgid "Edit Account"
2307
+ #~ msgstr "Il mio account"
2308
+
2309
+ # @ virtue
2310
+ #, fuzzy
2311
+ #~ msgid "Logout"
2312
+ #~ msgstr "Logo"
2313
+
2314
+ # @ virtue
2315
+ #~ msgid "(Edit)"
2316
+ #~ msgstr "(Modifica)"
2317
+
2318
+ # @ virtue
2319
+ #~ msgid "One Response "
2320
+ #~ msgid_plural "%1$s Responses "
2321
+ #~ msgstr[0] "Una risposta"
2322
+ #~ msgstr[1] "%1$s risposte"
2323
+
2324
+ # @ virtue
2325
+ #~ msgid "&larr; Older comments"
2326
+ #~ msgstr "&larr; commenti precedenti"
2327
+
2328
+ # @ virtue
2329
+ #~ msgid "Newer comments &rarr;"
2330
+ #~ msgstr "Commenti successivi &rarr;"
2331
+
2332
+ # @ virtue
2333
+ #~ msgid "Comments are closed."
2334
+ #~ msgstr "I commenti sono chiusi."
2335
+
2336
+ # @ virtue
2337
+ #~ msgid "Leave a Reply"
2338
+ #~ msgstr "Lascia un commento"
2339
+
2340
+ # @ virtue
2341
+ #~ msgid "Leave a Reply to %s"
2342
+ #~ msgstr "Lascia un commento per %s"
2343
+
2344
+ # @ virtue
2345
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
2346
+ #~ msgstr ""
2347
+ #~ "Devi aver effettuato il <a href=\"%s\">login</a> per lasciare un commento."
2348
+
2349
+ # @ virtue
2350
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
2351
+ #~ msgstr "Registrato come <a href=\"%s/wp-admin/profile.php\">%s</a>."
2352
+
2353
+ # @ virtue
2354
+ #~ msgid "Log out of this account"
2355
+ #~ msgstr "Esci da questo account"
2356
+
2357
+ # @ virtue
2358
+ #~ msgid "Log out &raquo;"
2359
+ #~ msgstr "Log out &raquo;"
2360
+
2361
+ # @ virtue
2362
+ #~ msgid " <span>*</span>"
2363
+ #~ msgstr " <span>*</span>"
2364
+
2365
+ # @ virtue
2366
+ #~ msgid "Email (will not be published)"
2367
+ #~ msgstr "Email (non sarà pubblicata)"
2368
+
2369
+ # @ virtue
2370
+ #~ msgid "Website"
2371
+ #~ msgstr "Sito web"
2372
+
2373
+ # @ virtue
2374
+ #~ msgid "Submit Comment"
2375
+ #~ msgstr "Invia il tuo commento"
2376
+
2377
+ # @ virtue
2378
+ #~ msgid "Pages:"
2379
+ #~ msgstr "Pagine:"
2380
+
2381
+ # @ virtue
2382
+ #~ msgid "by"
2383
+ #~ msgstr "da"
2384
+
2385
+ # @ virtue
2386
+ #~ msgid "posted in:"
2387
+ #~ msgstr "postato in:"
2388
+
2389
+ # @ virtue
2390
+ #~ msgid "By"
2391
+ #~ msgstr "Da"
2392
+
2393
+ # @ virtue
2394
+ #~ msgid "Menu"
2395
+ #~ msgstr "Menu"
2396
+
2397
+ # @ virtue
2398
+ #~ msgid "Recent Projects"
2399
+ #~ msgstr "Progetti recenti"
2400
+
2401
+ # @ virtue
2402
+ #~ msgid "Similar Posts"
2403
+ #~ msgstr "Messaggi simili"
2404
+
2405
+ # @ virtue
2406
+ #~ msgid "Latest from the Blog"
2407
+ #~ msgstr "Ultime dal blog"
2408
+
2409
+ # @ virtue
2410
+ #~ msgid "READ MORE"
2411
+ #~ msgstr "LEGGI TUTTO"
2412
+
2413
+ # @ virtue
2414
+ #~ msgid "Featured Projects"
2415
+ #~ msgstr "Progetti in evidenza"
2416
+
2417
+ # @ virtue
2418
+ #~ msgid "Copy and Paste this code into the theme options import feature"
2419
+ #~ msgstr ""
2420
+ #~ "Copia e incolla questo codice nella funzione di importazione opzioni del "
2421
+ #~ "tema"
2422
+
2423
+ # @ virtue
2424
+ #~ msgid "There are no previous options"
2425
+ #~ msgstr "Non ci sono opzioni precedenti"
2426
+
2427
+ # @ virtue
2428
+ #~ msgid "Main Settings"
2429
+ #~ msgstr "Impostazioni principali"
2430
+
2431
+ # @ virtue
2432
+ #~ msgid "Welcome to Virtue Theme Options"
2433
+ #~ msgstr "Benvenuto nelle opzioni del tema Virtue"
2434
+
2435
+ # @ virtue
2436
+ #~ msgid "This theme was developed by"
2437
+ #~ msgstr "Questo tema è stato sviluppato da"
2438
+
2439
+ # @ virtue
2440
+ #~ msgid "For theme documentation visit"
2441
+ #~ msgstr "Per la documentazione del tema visita"
2442
+
2443
+ # @ virtue
2444
+ #~ msgid "For support please visit"
2445
+ #~ msgstr "Per supporto, per favore visita"
2446
+
2447
+ # @ virtue
2448
+ #~ msgid "Site Layout Style"
2449
+ #~ msgstr "Layout del sito"
2450
+
2451
+ # @ virtue
2452
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2453
+ #~ msgstr "Selezionare Boxed o Wide Style Layout"
2454
+
2455
+ # @ virtue
2456
+ #~ msgid "Footer Widget Layout"
2457
+ #~ msgstr "Footer Widget Layout"
2458
+
2459
+ # @ virtue
2460
+ #~ msgid "Select how many columns for footer widgets"
2461
+ #~ msgstr "Selezionare il numero di colonne per i widget del footer"
2462
+
2463
+ # @ virtue
2464
+ #~ msgid "Logo Options"
2465
+ #~ msgstr "Opzioni logo"
2466
+
2467
+ # @ virtue
2468
+ #~ msgid "Logo Layout"
2469
+ #~ msgstr "Layout del logo"
2470
+
2471
+ # @ virtue
2472
+ #~ msgid "Choose how you want your logo to be laid out"
2473
+ #~ msgstr "Scegli come posizionare il logo"
2474
+
2475
+ # @ virtue
2476
+ #~ msgid "Logo"
2477
+ #~ msgstr "Logo"
2478
+
2479
+ # @ virtue
2480
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
2481
+ #~ msgstr ""
2482
+ #~ "Carica il tuo logo. Se lasciato vuoto, verrà utilizzato il nome del sito."
2483
+
2484
+ # @ virtue
2485
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
2486
+ #~ msgstr "Carica il logo @2x per gli schermi Retina"
2487
+
2488
+ # @ virtue
2489
+ #~ msgid "Should be twice the pixel size of your normal logo."
2490
+ #~ msgstr ""
2491
+ #~ "Dovrebbe essere il doppio della dimensione dei pixel del logo normale."
2492
+
2493
+ # @ virtue
2494
+ #~ msgid "Sitename Logo Font"
2495
+ #~ msgstr "Font del Sitename Logo"
2496
+
2497
+ # @ virtue
2498
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
2499
+ #~ msgstr ""
2500
+ #~ "Scegli la dimensione e lo stile del tuo sitename, se non usi un immagine "
2501
+ #~ "come logo."
2502
+
2503
+ # @ virtue
2504
+ #~ msgid "Site Tagline - Below Logo\""
2505
+ #~ msgstr "Tagline - Sotto il logo\""
2506
+
2507
+ # @ virtue
2508
+ #~ msgid "An optional line of text below your logo"
2509
+ #~ msgstr "Una riga facoltativa di testo sotto il logo"
2510
+
2511
+ # @ virtue
2512
+ #~ msgid "Site Tagline Font"
2513
+ #~ msgstr "Font della tagline"
2514
+
2515
+ # @ virtue
2516
+ #~ msgid "Choose size and style your site tagline"
2517
+ #~ msgstr "Scegli la dimensione e lo stile della tagline"
2518
+
2519
+ # @ virtue
2520
+ #~ msgid "Logo Spacing"
2521
+ #~ msgstr "Spaziatura logo"
2522
+
2523
+ # @ virtue
2524
+ #~ msgid "Top Spacing"
2525
+ #~ msgstr "Spaziatura superiore"
2526
+
2527
+ # @ virtue
2528
+ #~ msgid "Bottom Spacing"
2529
+ #~ msgstr "Spaziatura inferiore"
2530
+
2531
+ # @ virtue
2532
+ #~ msgid "Left Spacing"
2533
+ #~ msgstr "Spaziatura sinistra"
2534
+
2535
+ # @ virtue
2536
+ #~ msgid "Right Spacing"
2537
+ #~ msgstr "Spaziatura destra"
2538
+
2539
+ # @ virtue
2540
+ #~ msgid "Primary Menu Spacing"
2541
+ #~ msgstr "Spaziatura primary menu"
2542
+
2543
+ # @ virtue
2544
+ #~ msgid "Sitewide Banner"
2545
+ #~ msgstr "Sitewide Banner"
2546
+
2547
+ # @ virtue
2548
+ #~ msgid "Upload a banner for bottom of header."
2549
+ #~ msgstr "Carica un banner che abbassa l' header."
2550
+
2551
+ # @ virtue
2552
+ #~ msgid "Topbar Settings"
2553
+ #~ msgstr "Impostazioni Topbar"
2554
+
2555
+ # @ virtue
2556
+ #~ msgid "Use Topbar?"
2557
+ #~ msgstr "Usare una Topbar?"
2558
+
2559
+ # @ virtue
2560
+ #~ msgid "Choose to show or hide topbar"
2561
+ #~ msgstr "Scegliere per visualizzare o nascandere la Topbar"
2562
+
2563
+ # @ virtue
2564
+ #~ msgid "Use Topbar Icon Menu?"
2565
+ #~ msgstr "Usare le icone del menu Topbar?"
2566
+
2567
+ # @ virtue
2568
+ #~ msgid "Choose to show or hide topbar icon Menu"
2569
+ #~ msgstr "Scegliere se visualizzare o nascondere le icone del menu Topbar"
2570
+
2571
+ # @ virtue
2572
+ #~ msgid "Topbar Icon Menu"
2573
+ #~ msgstr "Topbar icone menu"
2574
+
2575
+ # @ virtue
2576
+ #~ msgid "Choose your icons for the topbar icon menu."
2577
+ #~ msgstr "Scegli le icone per il menu della Topbar"
2578
+
2579
+ # @ virtue
2580
+ #~ msgid "Show Cart total in topbar?"
2581
+ #~ msgstr "Mostra totale carrello nella topbar?"
2582
+
2583
+ # @ virtue
2584
+ #~ msgid "This only works if using woocommerce"
2585
+ #~ msgstr "Questo funziona solo se si usa woocommerce"
2586
+
2587
+ # @ virtue
2588
+ #~ msgid "Display Search in Topbar?"
2589
+ #~ msgstr "Visualizza Cerca nella Topbar?"
2590
+
2591
+ # @ virtue
2592
+ #~ msgid "Choose to show or hide search in topbar"
2593
+ #~ msgstr "Scegli se visualizzare o nascondere cerca nella Topbar"
2594
+
2595
+ # @ virtue
2596
+ #~ msgid "Enable widget area in right of Topbar?"
2597
+ #~ msgstr "Abilitare l'area widget a destra della Topbar?"
2598
+
2599
+ # @ virtue
2600
+ #~ msgid ""
2601
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2602
+ #~ "the widget area)"
2603
+ #~ msgstr ""
2604
+ #~ "Nota: questo nasconderà rimuovi ricerca (è possibile riattivarlo tramite "
2605
+ #~ "l'area widget)"
2606
+
2607
+ # @ virtue
2608
+ #~ msgid "Topbar Layout Switch"
2609
+ #~ msgstr "Topbar Layout Switch"
2610
+
2611
+ # @ virtue
2612
+ #~ msgid "This moves the left items to the right and right items to the left."
2613
+ #~ msgstr "Consente di spostare gli articoli da destra a sinistra e viceversa."
2614
+
2615
+ # @ virtue
2616
+ #~ msgid "Slider Settings"
2617
+ #~ msgstr "Impostazioni slider"
2618
+
2619
+ # @ virtue
2620
+ #~ msgid "Home Page Slider Options"
2621
+ #~ msgstr "Opzioni slider Home page"
2622
+
2623
+ # @ virtue
2624
+ #~ msgid "Choose a Home Image Slider"
2625
+ #~ msgstr "Scegli uno slider immagini per la Home"
2626
+
2627
+ # @ virtue
2628
+ #~ msgid "If you don't want an image slider on your home page choose none."
2629
+ #~ msgstr ""
2630
+ #~ "Se non vuoi uno slider immagini nella tua Home page, scegli nessuno."
2631
+
2632
+ # @ virtue
2633
+ #~ msgid "Use large images for best results."
2634
+ #~ msgstr "Per il miglior risultato, usare immagini grandi."
2635
+
2636
+ # @ virtue
2637
+ #~ msgid "Slider Max Height"
2638
+ #~ msgstr "Altezza massima slider"
2639
+
2640
+ # @ virtue
2641
+ #~ msgid "Note: does not work if images are smaller than max."
2642
+ #~ msgstr "Nota: non funziona se le immagini sono più piccoli di max."
2643
+
2644
+ # @ virtue
2645
+ #~ msgid "Auto Play?"
2646
+ #~ msgstr "Auto Play?"
2647
+
2648
+ # @ virtue
2649
+ #~ msgid "This determines if a slider automatically scrolls"
2650
+ #~ msgstr "Determina se lo slider scorre automaticamente"
2651
+
2652
+ # @ virtue
2653
+ #~ msgid "Slider Pause Time"
2654
+ #~ msgstr "Tempo di pausa slider"
2655
+
2656
+ # @ virtue
2657
+ #~ msgid "How long to pause on each slide, in milliseconds."
2658
+ #~ msgstr ""
2659
+ #~ "Indica per quanto tempo si soffermerà su ogni slide, in millisecondi."
2660
+
2661
+ # @ virtue
2662
+ #~ msgid "Transition Type"
2663
+ #~ msgstr "Tipologia di transizione"
2664
+
2665
+ # @ virtue
2666
+ #~ msgid "Choose a transition type"
2667
+ #~ msgstr "Scegli la tipologia di transizione"
2668
+
2669
+ # @ virtue
2670
+ #~ msgid "Slider Transition Time"
2671
+ #~ msgstr "Tempo di transizione dello slider"
2672
+
2673
+ # @ virtue
2674
+ #~ msgid "How long for slide transitions, in milliseconds."
2675
+ #~ msgstr "Indica la durata della transizione tra le slide, in millisecondi."
2676
+
2677
+ # @ virtue
2678
+ #~ msgid "Show Captions?"
2679
+ #~ msgstr "Mostrare le didascalie?"
2680
+
2681
+ # @ virtue
2682
+ #~ msgid "Choose to show or hide captions"
2683
+ #~ msgstr "Scegli se visualizzare o nascondere le didascalie"
2684
+
2685
+ # @ virtue
2686
+ #~ msgid "If your using a video on the home page place video embed code here."
2687
+ #~ msgstr ""
2688
+ #~ "Se usi un video nella Home page, inserisci il codice embed video qui."
2689
+
2690
+ # @ virtue
2691
+ #~ msgid "Mobile Slider"
2692
+ #~ msgstr "Slider mobile"
2693
+
2694
+ # @ virtue
2695
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
2696
+ #~ msgstr "Crea uno slider più leggero per i tuoi visitatori mobile."
2697
+
2698
+ # @ virtue
2699
+ #~ msgid "Would you like to use this feature?"
2700
+ #~ msgstr "Vuoi usare questa caratteristica?"
2701
+
2702
+ # @ virtue
2703
+ #~ msgid ""
2704
+ #~ "Choose if you would like to show a different slider on your home page for "
2705
+ #~ "your mobile visitors."
2706
+ #~ msgstr ""
2707
+ #~ "Scegli se visualizzare un diverso slider sulla vostra Home page, per i "
2708
+ #~ "visitatori mobile."
2709
+
2710
+ # @ virtue
2711
+ #~ msgid "Choose a Slider for Mobile"
2712
+ #~ msgstr "Scegli uno slider per mobile"
2713
+
2714
+ # @ virtue
2715
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
2716
+ #~ msgstr "Scegli quale slider si desidera mostrare ai visitatori mobile."
2717
+
2718
+ # @ virtue
2719
+ #~ msgid "Home Layout"
2720
+ #~ msgstr "Layout Home"
2721
+
2722
+ # @ virtue
2723
+ #~ msgid "Display a sidebar on the Home Page?"
2724
+ #~ msgstr "Vuoi mostrare una slidebar nella Home page?"
2725
+
2726
+ # @ virtue
2727
+ #~ msgid "This determines if there is a sidebar on the home page."
2728
+ #~ msgstr "Ciò determina la presenza o meno, di una sidebar nella Home Page."
2729
+
2730
+ # @ virtue
2731
+ #~ msgid "Choose a Sidebar for your Home Page"
2732
+ #~ msgstr "Scegli una Sidebar per la tua Home page"
2733
+
2734
+ # @ virtue
2735
+ #, fuzzy
2736
+ #~ msgid "Homepage Layout Manager"
2737
+ #~ msgstr "Layout Home"
2738
+
2739
+ # @ virtue
2740
+ #~ msgid "Latest Blog Posts"
2741
+ #~ msgstr "Ultimo messaggio del blog"
2742
+
2743
+ # @ virtue
2744
+ #~ msgid "Icon Menu"
2745
+ #~ msgstr "Menu icone"
2746
+
2747
+ # @ virtue
2748
+ #~ msgid "Page Content"
2749
+ #~ msgstr "Contenuto della pagina"
2750
+
2751
+ # @ virtue
2752
+ #~ msgid "Home Blog Settings"
2753
+ #~ msgstr "Impostazioni della Home del blog "
2754
+
2755
+ # @ virtue
2756
+ #~ msgid "Home Blog Title"
2757
+ #~ msgstr "Titolo della Home del blog"
2758
+
2759
+ # @ virtue
2760
+ #~ msgid "ex: Latest from the blog"
2761
+ #~ msgstr "Es. Ultime dal blog"
2762
+
2763
+ # @ virtue
2764
+ #~ msgid "Choose How many posts on Homepage"
2765
+ #~ msgstr "Scegli quanti messaggi visualizzare nella Home page"
2766
+
2767
+ # @ virtue
2768
+ #~ msgid "Limit posts to a Category"
2769
+ #~ msgstr "Limita i messaggi ad una categoria"
2770
+
2771
+ # @ virtue
2772
+ #~ msgid "Leave blank to select all"
2773
+ #~ msgstr "Lascia vuoto per selezionare tutto"
2774
+
2775
+ # @ virtue
2776
+ #~ msgid "Home Portfolio Carousel Settings"
2777
+ #~ msgstr "Impostazioni slider portfloio della Home page"
2778
+
2779
+ # @ virtue
2780
+ #~ msgid "Home Portfolio Carousel title"
2781
+ #~ msgstr "Titolo slider portfolio della Home page"
2782
+
2783
+ # @ virtue
2784
+ #~ msgid "ex: Portfolio Carousel title"
2785
+ #~ msgstr "Es. Titolo slider portfolio"
2786
+
2787
+ # @ virtue
2788
+ #~ msgid "Portfolio Carousel Category Type"
2789
+ #~ msgstr "Categorie di tipologia slider portfolio"
2790
+
2791
+ # @ virtue
2792
+ #~ msgid "Leave blank to select all types"
2793
+ #~ msgstr "Lasciare vuoto per selezionare tutti i tipi"
2794
+
2795
+ # @ virtue
2796
+ #~ msgid "Choose how many portfolio items are in carousel"
2797
+ #~ msgstr "Scegli quanti elementi del portfolio saranno visibili nello slider"
2798
+
2799
+ # @ virtue
2800
+ #~ msgid "Portfolio Carousel Order by"
2801
+ #~ msgstr "Slider portfolio ordinato per"
2802
+
2803
+ # @ virtue
2804
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
2805
+ #~ msgstr ""
2806
+ #~ "Scegli come gli elementi del portfolio devono essere ordinati nello "
2807
+ #~ "slider."
2808
+
2809
+ # @ virtue
2810
+ #~ msgid "Display Portfolio Types under Title"
2811
+ #~ msgstr "Visualizza tipologie di portfolio a norma con il titolo"
2812
+
2813
+ # @ virtue
2814
+ #~ msgid "Home Icon Menu"
2815
+ #~ msgstr "Menu icone della Home page"
2816
+
2817
+ # @ virtue
2818
+ #~ msgid "Choose your icons for the icon menu."
2819
+ #~ msgstr "Scegli le icone per il menu icone."
2820
+
2821
+ # @ virtue
2822
+ #, fuzzy
2823
+ #~ msgid "Choose how many columns in each row"
2824
+ #~ msgstr "Scegli quanti elementi del portfolio saranno visibili nello slider"
2825
+
2826
+ # @ virtue
2827
+ #~ msgid "Page Content Options"
2828
+ #~ msgstr "Opzioni contenuto della pagina"
2829
+
2830
+ # @ virtue
2831
+ #~ msgid "Latest Post Display"
2832
+ #~ msgstr "Mostra ultimo messaggio"
2833
+
2834
+ # @ virtue
2835
+ #~ msgid ""
2836
+ #~ "If Latest Post page is font page. Choose to show full post or post "
2837
+ #~ "excerpt."
2838
+ #~ msgstr ""
2839
+ #~ "Se l'ultimo messaggio è la prima pagina. Scegli di mostrare l'intero "
2840
+ #~ "articolo o un semplice estratto."
2841
+
2842
+ # @ virtue
2843
+ #~ msgid "Shop Settings"
2844
+ #~ msgstr "Impostazioni Shop"
2845
+
2846
+ # @ virtue
2847
+ #~ msgid "Shop Archive Page Settings"
2848
+ #~ msgstr "Impostazioni pagina di archivio dello Shop "
2849
+
2850
+ # @ virtue
2851
+ #~ msgid "Display the sidebar on shop archives?"
2852
+ #~ msgstr "Mostrare la sidebar nell'archivio Shop?"
2853
+
2854
+ # @ virtue
2855
+ #~ msgid ""
2856
+ #~ "This determines if there is a sidebar on the shop and category pages."
2857
+ #~ msgstr ""
2858
+ #~ "Ciò determina la presenza o meno della sidebar nelle pagine dello Shop e "
2859
+ #~ "di categoria."
2860
+
2861
+ # @ virtue
2862
+ #~ msgid "Choose a Sidebar for your shop page"
2863
+ #~ msgstr "Scegli una Sidebar per la tua pagina Shop"
2864
+
2865
+ # @ virtue
2866
+ #~ msgid "How many products per page"
2867
+ #~ msgstr "Quanti prodotti per pagina"
2868
+
2869
+ # @ virtue
2870
+ #~ msgid "Show Ratings in Shop and Category Pages"
2871
+ #~ msgstr "Mostra le valutazioni nel negozio e nelle pagine di categoria"
2872
+
2873
+ # @ virtue
2874
+ #~ msgid ""
2875
+ #~ "This determines if the rating is displayed in the product archive pages"
2876
+ #~ msgstr ""
2877
+ #~ "Ciò determina se visualizzare o meno le valutazioni nella pagina di "
2878
+ #~ "archio dei prodotti"
2879
+
2880
+ # @ virtue
2881
+ #~ msgid "Shop Product Title Settings"
2882
+ #~ msgstr "Impostazioni Shop, titolo prodotto"
2883
+
2884
+ # @ virtue
2885
+ #~ msgid "Shop & archive Product title Font"
2886
+ #~ msgstr "Shop e archivio prodotti, font del titolo"
2887
+
2888
+ # @ virtue
2889
+ #~ msgid ""
2890
+ #~ "Choose Size and Style for product titles on category and archive pages."
2891
+ #~ msgstr ""
2892
+ #~ "Scegli stile e dimensione dei titoli dei prodotti, nelle categorie e "
2893
+ #~ "nella pagine di archivio."
2894
+
2895
+ # @ virtue
2896
+ #~ msgid "Set Product Title to Uppercase?"
2897
+ #~ msgstr "Impostare titolo prodotto in maiuscolo?"
2898
+
2899
+ # @ virtue
2900
+ #~ msgid "This makes your product titles uppercase on Category pages"
2901
+ #~ msgstr ""
2902
+ #~ "Questo rende i titoli dei prodotti in maiuscolo nelle pagine di categoria"
2903
+
2904
+ # @ virtue
2905
+ #~ msgid "Product title Min Height"
2906
+ #~ msgstr "Altezza minima dei titoli dei prodotti"
2907
+
2908
+ # @ virtue
2909
+ #~ msgid ""
2910
+ #~ "If your titles are long increase this to help align your products height."
2911
+ #~ msgstr ""
2912
+ #~ "Se i tuoi titoli sono lunghi, aumentarlo per facilitare l'allineamento in "
2913
+ #~ "altezza dei prodotti."
2914
+
2915
+ # @ virtue
2916
+ #~ msgid "Product Image Sizes"
2917
+ #~ msgstr "Dimensione immagine prodotto"
2918
+
2919
+ # @ virtue
2920
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2921
+ #~ msgstr ""
2922
+ #~ "Abilita il ritaglio delle immagini di prodotto nelle pagine di catalogo"
2923
+
2924
+ # @ virtue
2925
+ #~ msgid ""
2926
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2927
+ #~ "recommended width: 270px for Catalog Images"
2928
+ #~ msgstr ""
2929
+ #~ "Se disattivato le dimensioni delle immagini vengono impostate dalle "
2930
+ #~ "impostazioni woocommerce - larghezza consigliata: 270px per il catalogo "
2931
+ #~ "Immagini"
2932
+
2933
+ # @ virtue
2934
+ #~ msgid "Enable Product Image Crop on product Page"
2935
+ #~ msgstr ""
2936
+ #~ "Abilita il ritaglio delle immagini prodotto nella pagina di prodotto"
2937
+
2938
+ # @ virtue
2939
+ #~ msgid ""
2940
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2941
+ #~ "recommended width: 468px for Single Product Image"
2942
+ #~ msgstr ""
2943
+ #~ "Se disattivato le dimensioni delle immagini vengono impostate dalle "
2944
+ #~ "impostazioni woocommerce - larghezza consigliata: 468px per la singola "
2945
+ #~ "immagine di prodotto"
2946
+
2947
+ # @ virtue
2948
+ #~ msgid "Product Page Settings"
2949
+ #~ msgstr "Impostazioni pagina di prodotto"
2950
+
2951
+ # @ virtue
2952
+ #~ msgid "Display product tabs?"
2953
+ #~ msgstr "Mostra le schede di prodotto?"
2954
+
2955
+ # @ virtue
2956
+ #~ msgid "This determines if product tabs are displayed"
2957
+ #~ msgstr "Ciò determina se le schede di prodotto saranno mostrate"
2958
+
2959
+ # @ virtue
2960
+ #~ msgid "Display related products?"
2961
+ #~ msgstr "Mostrare i prodotti correlati?"
2962
+
2963
+ # @ virtue
2964
+ #~ msgid "This determines related products are displayed"
2965
+ #~ msgstr "Ciò determina se saranno mostrati i prodotti correlati."
2966
+
2967
+ # @ virtue
2968
+ #~ msgid "Basic Styling"
2969
+ #~ msgstr "Stile di base"
2970
+
2971
+ # @ virtue
2972
+ #~ msgid "Basic Stylng"
2973
+ #~ msgstr "Stile di base"
2974
+
2975
+ # @ virtue
2976
+ #~ msgid "Theme Skin Stylesheet"
2977
+ #~ msgstr "Foglio di stile del tema"
2978
+
2979
+ # @ virtue
2980
+ #~ msgid ""
2981
+ #~ "Note* changes made in options panel will override this stylesheet. "
2982
+ #~ "Example: Colors set in typography."
2983
+ #~ msgstr ""
2984
+ #~ "Nota: le modifiche apportate nel pannello opzioni sovrascriveranno questo "
2985
+ #~ "foglio di stile. Esempio: I colori impostati in tipografia."
2986
+
2987
+ # @ virtue
2988
+ #~ msgid "Choose the default Highlight color for your site."
2989
+ #~ msgstr "Sceglie la tonalità di colore primario del sito."
2990
+
2991
+ # @ virtue
2992
+ #~ msgid "20% lighter than Primary Color"
2993
+ #~ msgstr "20% più leggero rispetto al colore primario"
2994
+
2995
+ # @ virtue
2996
+ #~ msgid "This is used for hover effects"
2997
+ #~ msgstr "E' usato per l'effetto hover"
2998
+
2999
+ # @ virtue
3000
+ #~ msgid "Sitewide Gray Fonts"
3001
+ #~ msgstr "In tutto il sito usare fonts grigi"
3002
+
3003
+ # @ virtue
3004
+ #~ msgid "Footer Font Color"
3005
+ #~ msgstr "Colore font del oooter"
3006
+
3007
+ # @ virtue
3008
+ #~ msgid "Advanced Styling"
3009
+ #~ msgstr "Stile avanzato"
3010
+
3011
+ # @ virtue
3012
+ #~ msgid "Main Content Background"
3013
+ #~ msgstr "Sfondo del contenuto Main"
3014
+
3015
+ # @ virtue
3016
+ #~ msgid "Upload background image or texture"
3017
+ #~ msgstr "Carica un'immagine di sfondo o una texture"
3018
+
3019
+ # @ virtue
3020
+ #~ msgid "Image repeat options"
3021
+ #~ msgstr "Opzioni di ripetizione immagine"
3022
+
3023
+ # @ virtue
3024
+ #~ msgid "X image placement options"
3025
+ #~ msgstr "Opzioni di posizionamento dell'immagine rispetto a X"
3026
+
3027
+ # @ virtue
3028
+ #~ msgid "Y image placement options"
3029
+ #~ msgstr "Opzioni di posizionamento dell'immagine rispetto a Y"
3030
+
3031
+ # @ virtue
3032
+ #~ msgid "Topbar Background"
3033
+ #~ msgstr "Sfondo della Topbar"
3034
+
3035
+ # @ virtue
3036
+ #~ msgid "Header Background"
3037
+ #~ msgstr "Sfondo dell'Header"
3038
+
3039
+ # @ virtue
3040
+ #~ msgid "Secondary Menu Background"
3041
+ #~ msgstr "Sfondo del menu secondario"
3042
+
3043
+ # @ virtue
3044
+ #~ msgid "Mobile Menu Background"
3045
+ #~ msgstr "Sfondo per il menu mobile"
3046
+
3047
+ # @ virtue
3048
+ #~ msgid "Footer Background"
3049
+ #~ msgstr "Sfondo per il footer"
3050
+
3051
+ # @ virtue
3052
+ #~ msgid "Body Background"
3053
+ #~ msgstr "Sfondo del Body"
3054
+
3055
+ # @ virtue
3056
+ #~ msgid "Fixed or Scroll"
3057
+ #~ msgstr "Fisso o scorrevole"
3058
+
3059
+ # @ virtue
3060
+ #~ msgid "Typography"
3061
+ #~ msgstr "Tipografia"
3062
+
3063
+ # @ virtue
3064
+ #~ msgid "H1 Headings"
3065
+ #~ msgstr "H1 titolo"
3066
+
3067
+ # @ virtue
3068
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
3069
+ #~ msgstr ""
3070
+ #~ "Scegli dimensione e stile per H1 (I tuoi titoli delle pagine saranno di "
3071
+ #~ "questo stile)"
3072
+
3073
+ # @ virtue
3074
+ #~ msgid "H2 Headings"
3075
+ #~ msgstr "H2 titolo"
3076
+
3077
+ # @ virtue
3078
+ #~ msgid "Choose Size and Style for h2"
3079
+ #~ msgstr "Scegli dimensione e stile per H2"
3080
+
3081
+ # @ virtue
3082
+ #~ msgid "H3 Headings"
3083
+ #~ msgstr "H3 titolo"
3084
+
3085
+ # @ virtue
3086
+ #~ msgid "Choose Size and Style for h3"
3087
+ #~ msgstr "Scegli dimensione e stile per H3"
3088
+
3089
+ # @ virtue
3090
+ #~ msgid "H4 Headings"
3091
+ #~ msgstr "H4 titolo"
3092
+
3093
+ # @ virtue
3094
+ #~ msgid "Choose Size and Style for h4"
3095
+ #~ msgstr "Scegli dimensione e stile per H4"
3096
+
3097
+ # @ virtue
3098
+ #~ msgid "H5 Headings"
3099
+ #~ msgstr "H5 titolo"
3100
+
3101
+ # @ virtue
3102
+ #~ msgid "Choose Size and Style for h5"
3103
+ #~ msgstr "Scegli dimensione e stile per H5"
3104
+
3105
+ # @ virtue
3106
+ #~ msgid "Body Font Options"
3107
+ #~ msgstr "Opzioni font del Body"
3108
+
3109
+ # @ virtue
3110
+ #~ msgid "Body Font"
3111
+ #~ msgstr "Font del Body"
3112
+
3113
+ # @ virtue
3114
+ #~ msgid "Choose Size and Style for paragraphs"
3115
+ #~ msgstr "Scegli dimensione e stile dei paragrafi"
3116
+
3117
+ # @ virtue
3118
+ #~ msgid "Menu Settings"
3119
+ #~ msgstr "Impostazione menu"
3120
+
3121
+ # @ virtue
3122
+ #~ msgid "Primary Menu Options"
3123
+ #~ msgstr "Opzioni menu primario"
3124
+
3125
+ # @ virtue
3126
+ #~ msgid "Primary Menu Font"
3127
+ #~ msgstr "Font del menu primario"
3128
+
3129
+ # @ virtue
3130
+ #~ msgid "Choose Size and Style for primary menu"
3131
+ #~ msgstr "Scegli dimensione e stile del menu primario"
3132
+
3133
+ # @ virtue
3134
+ #~ msgid "Secondary Menu Options"
3135
+ #~ msgstr "Opzioni del menu secondario"
3136
+
3137
+ # @ virtue
3138
+ #~ msgid "Secondary Menu Font"
3139
+ #~ msgstr "Font del menu secondario"
3140
+
3141
+ # @ virtue
3142
+ #~ msgid "Choose Size and Style for secondary menu"
3143
+ #~ msgstr "Scegli dimensione e stile del menu secondario"
3144
+
3145
+ # @ virtue
3146
+ #~ msgid "Mobile Menu Options"
3147
+ #~ msgstr "Opzioni menu mobile"
3148
+
3149
+ # @ virtue
3150
+ #~ msgid "Mobile Menu Font"
3151
+ #~ msgstr "Font per il menu mobile"
3152
+
3153
+ # @ virtue
3154
+ #~ msgid "Choose Size and Style for Mobile Menu"
3155
+ #~ msgstr "Scegli dimensione e stile del menu mobile"
3156
+
3157
+ # @ virtue
3158
+ #~ msgid "Misc Settings"
3159
+ #~ msgstr "Impostazioni varie"
3160
+
3161
+ # @ virtue
3162
+ #~ msgid ""
3163
+ #~ "This sets the link in every single portfolio page. *note: You still have "
3164
+ #~ "to set the page template to portfolio."
3165
+ #~ msgstr ""
3166
+ #~ "Questo imposta il collegamento in ogni singola pagina del portfolio. "
3167
+ #~ "Nota: Devi ancora impostare il modello di pagina del portfolio."
3168
+
3169
+ # @ virtue
3170
+ #~ msgid "Allow Comments on Portfolio Posts"
3171
+ #~ msgstr "Consenti i commenti nei messaggi del Portfolio"
3172
+
3173
+ # @ virtue
3174
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
3175
+ #~ msgstr ""
3176
+ #~ "Selezionarlo per per consentire di commentare i messaggi del Portfolio"
3177
+
3178
+ # @ virtue
3179
+ #~ msgid "Hide Image Border"
3180
+ #~ msgstr "Nascondi il bordo delle immagini"
3181
+
3182
+ # @ virtue
3183
+ #~ msgid "Choose to show or hide image border"
3184
+ #~ msgstr "Scegli per mostrare o nascondere il bordo delle immagini"
3185
+
3186
+ # @ virtue
3187
+ #~ msgid "Blog Archive"
3188
+ #~ msgstr "Archivio blog"
3189
+
3190
+ # @ virtue
3191
+ #~ msgid "Choose to show full post or post excerpt."
3192
+ #~ msgstr ""
3193
+ #~ "Scegli se mostrare il messaggio interamente, oppure solo un estratto."
3194
+
3195
+ # @ virtue
3196
+ #~ msgid "Show Comments Closed Text?"
3197
+ #~ msgstr "Mostra che i commenti sono chiusi?"
3198
+
3199
+ # @ virtue
3200
+ #~ msgid "Choose to show or hide comments closed alert below posts."
3201
+ #~ msgstr ""
3202
+ #~ "Scegliere di mostrare o nascondere l'alert di commenti chiusi sotto i "
3203
+ #~ "post."
3204
+
3205
+ # @ virtue
3206
+ #~ msgid "Show Author Icon with posts?"
3207
+ #~ msgstr "Mostra l'icona dell'autore con il messaggio?"
3208
+
3209
+ # @ virtue
3210
+ #~ msgid "Choose to show or hide author icon under post title."
3211
+ #~ msgstr ""
3212
+ #~ "Scegli se mostrare o nascondere l'icona dell'autore vicino al titolo del "
3213
+ #~ "messaggio."
3214
+
3215
+ # @ virtue
3216
+ #, fuzzy
3217
+ #~ msgid ""
3218
+ #~ "Choose to show or hide previous and next post links in the footer of a "
3219
+ #~ "single post."
3220
+ #~ msgstr ""
3221
+ #~ "Scegli se mostrare o nascondere l'icona dell'autore vicino al titolo del "
3222
+ #~ "messaggio."
3223
+
3224
+ # @ virtue
3225
+ #~ msgid "Custom Favicon"
3226
+ #~ msgstr "Favicon personalizzata"
3227
+
3228
+ # @ virtue
3229
+ #~ msgid ""
3230
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
3231
+ #~ "favicon."
3232
+ #~ msgstr ""
3233
+ #~ "Carica un'immagine 16px x 16px png/gif/ico che sarà usata come favicon "
3234
+ #~ "del sito"
3235
+
3236
+ # @ virtue
3237
+ #~ msgid "Sets the email for the contact page email form."
3238
+ #~ msgstr ""
3239
+ #~ "Imposta la mail per il modulo di contatto email nella pagina dei contatti."
3240
+
3241
+ # @ virtue
3242
+ #~ msgid "Footer Copyright Text"
3243
+ #~ msgstr "Testo copyright nel footer"
3244
+
3245
+ # @ virtue
3246
+ #~ msgid ""
3247
+ #~ "Write your own copyright text here. You can use the following shortcodes "
3248
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
3249
+ #~ msgstr ""
3250
+ #~ "Scrivere il proprio testo di copyright qui. È possibile utilizzare i "
3251
+ #~ "seguenti codici brevi nel testo footer: [copyright] [site-name] [the-year]"
3252
+
3253
+ # @ virtue
3254
+ #~ msgid "Blog Post Summary Default"
3255
+ #~ msgstr "Impostazioni predefinite del sommario dei messaggi del blog"
3256
+
3257
+ # @ virtue
3258
+ #, fuzzy
3259
+ #~ msgid "Blog Post Head Content Default"
3260
+ #~ msgstr "Impostazioni predefinite dei messaggi del Blog"
3261
+
3262
+ # @ virtue
3263
+ #~ msgid "Create Sidebars"
3264
+ #~ msgstr "Crea Sidebar"
3265
+
3266
+ # @ virtue
3267
+ #~ msgid "Create Custom Sidebars"
3268
+ #~ msgstr "Crea Sidebar personalizzate"
3269
+
3270
+ # @ virtue
3271
+ #~ msgid "Type new sidebar name into textbox"
3272
+ #~ msgstr "Digitare il nuovo nome della sidebar nella casella di testo"
3273
+
3274
+ # @ virtue
3275
+ #~ msgid "Extra Sidebar"
3276
+ #~ msgstr "Sidebar extra"
3277
+
3278
+ # @ virtue
3279
+ #~ msgid "Wordpress Galleries"
3280
+ #~ msgstr "Galleria Wordpress"
3281
+
3282
+ # @ virtue
3283
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
3284
+ #~ msgstr "Abilita la galleria Virtue in sostituzione di quella di Wordpress "
3285
+
3286
+ # @ virtue
3287
+ #~ msgid ""
3288
+ #~ "Disable this if using a plugin to customize galleries, for example "
3289
+ #~ "jetpack tiled gallery."
3290
+ #~ msgstr ""
3291
+ #~ "Disabilita ciò, se usi un plugin per personalizzare le gallerie, per "
3292
+ #~ "esempio jetpack tiled gallery."
3293
+
3294
+ # @ virtue
3295
+ #~ msgid "Advanced Settings"
3296
+ #~ msgstr "Impostazioni avanzati"
3297
+
3298
+ # @ virtue
3299
+ #~ msgid "Custom CSS Box"
3300
+ #~ msgstr "Box CSS personalizzato"
3301
+
3302
+ # @ virtue
3303
+ #~ msgid "Custom CSS"
3304
+ #~ msgstr "CSS personalizzato"
3305
+
3306
+ # @ virtue
3307
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
3308
+ #~ msgstr ""
3309
+ #~ "Aggiungere rapidamente un po 'di CSS al tema aggiungendolo a questo "
3310
+ #~ "blocco."
3311
+
3312
+ # @ virtue
3313
+ #~ msgid "Theme Update Import"
3314
+ #~ msgstr "Importazione tema aggiornato"
3315
+
3316
+ # @ virtue
3317
+ #~ msgid ""
3318
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
3319
+ #~ "theme options."
3320
+ #~ msgstr ""
3321
+ #~ "Se stai aggiornando dalla versione 1.5.6 o precenti usa questo script per "
3322
+ #~ "aggiornare le opzioni del tema."
3323
+
3324
+ # @ virtue
3325
+ #~ msgid "Turn on and save to start script"
3326
+ #~ msgstr "Accendere e salvare per avviare lo script"
3327
+
3328
+ # @ virtue
3329
+ #~ msgid "If using a child theme enter child theme folder"
3330
+ #~ msgstr "Se usi un child theme, digita la cartella del child theme"
3331
+
3332
+ # @ virtue
3333
+ #~ msgid "Theme Options"
3334
+ #~ msgstr "Opzioni tema"
3335
+
3336
+ # @ virtue
3337
+ #~ msgid ""
3338
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
3339
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
3340
+ #~ msgstr ""
3341
+ #~ "Grazie per usare il tema Virtue by <a href=\"http://kadencethemes.com/\" "
3342
+ #~ "target=\"_blank\">Kadence Themes</a>."
3343
+
3344
+ # @ virtue
3345
+ #, fuzzy
3346
+ #~ msgid "Icon"
3347
+ #~ msgstr "Aggiungi icona"
3348
+
3349
+ # @ virtue
3350
+ #~ msgid "Upload Icon"
3351
+ #~ msgstr "Carica icona"
3352
+
3353
+ # @ virtue
3354
+ #~ msgid "Select an Icon"
3355
+ #~ msgstr "Seleziona un'icona"
3356
+
3357
+ # @ redux-framework
3358
+ #~ msgid "URL"
3359
+ #~ msgstr "URL"
3360
+
3361
+ # @ redux-framework
3362
+ # @ virtue
3363
+ #~ msgid "Description"
3364
+ #~ msgstr "Descrizione"
3365
+
3366
+ # @ virtue
3367
+ #~ msgid "Add Icon"
3368
+ #~ msgstr "Aggiungi icona"
3369
+
3370
+ # @ redux-framework
3371
+ # @ virtue
3372
+ #, fuzzy
3373
+ #~ msgid "Slide"
3374
+ #~ msgstr "Aggiungi slide"
3375
+
3376
+ # @ virtue
3377
+ #~ msgid "Slide Link"
3378
+ #~ msgstr "Slide Link"
3379
+
3380
+ # @ redux-framework
3381
+ # @ virtue
3382
+ #~ msgid "Delete Slide"
3383
+ #~ msgstr "Elimina slide"
3384
+
3385
+ # @ virtue
3386
+ #, fuzzy
3387
+ #~ msgid "Add %s"
3388
+ #~ msgstr "Aggiungi immagine"
3389
+
3390
+ # @ virtue
3391
+ #~ msgid "Back to"
3392
+ #~ msgstr "Torna a"
3393
+
3394
+ # @ woocommerce
3395
+ #~ msgid "Sale!"
3396
+ #~ msgstr "Saldi!"
3397
+
3398
+ # @ virtue
3399
+ #~ msgid "Shop"
3400
+ #~ msgstr "Negozio"
3401
+
3402
+ # @ virtue
3403
+ #~ msgid "Virtue: About with Image"
3404
+ #~ msgstr "Virtue: Informazioni su immagine"
3405
+
3406
+ # @ redux-framework
3407
+ #~ msgid "Options panel created using %1$s"
3408
+ #~ msgstr "Pannello delle opzioni creato utilizzando %1$s"
3409
+
3410
+ # @ redux-framework
3411
+ #~ msgid "Redux Framework"
3412
+ #~ msgstr "Redux Framework"
3413
+
3414
+ # @ redux-framework
3415
+ #~ msgid "Options"
3416
+ #~ msgstr "Opzioni"
3417
+
3418
+ # @ redux-framework
3419
+ #~ msgid ""
3420
+ #~ "You have changes that are not saved. Would you like to save them now?"
3421
+ #~ msgstr "Ci sono modifiche non salvate. Vuoi salvarli adesso?"
3422
+
3423
+ # @ redux-framework
3424
+ #~ msgid "Are you sure? Resetting will lose all custom values."
3425
+ #~ msgstr "Sei sicuro? Ripristinando perderai tutti i valori personalizzati."
3426
+
3427
+ # @ redux-framework
3428
+ #~ msgid "Are you sure? Resetting will lose all custom values in this section."
3429
+ #~ msgstr ""
3430
+ #~ "Sei sicuro? Ripristinando perderai tutti i valori personalizzati in "
3431
+ #~ "questa sezione."
3432
+
3433
+ # @ redux-framework
3434
+ #~ msgid ""
3435
+ #~ "Your current options will be replaced with the values of this preset. "
3436
+ #~ "Would you like to proceed?"
3437
+ #~ msgstr ""
3438
+ #~ "Le opzioni correnti verranno sostituite con i valori di questo preset. "
3439
+ #~ "Vuoi continuare?"
3440
+
3441
+ # @ cmb
3442
+ #, fuzzy
3443
+ #~ msgid "Please Wait"
3444
+ #~ msgstr "Perfavore, prova ancora"
3445
+
3446
+ # @ redux-framework
3447
+ #~ msgid ""
3448
+ #~ "Warning- This options panel will not work properly without javascript!"
3449
+ #~ msgstr ""
3450
+ #~ "Attenzione - Questo pannello opzioni non funzionerà correttamente senza "
3451
+ #~ "javascript!"
3452
+
3453
+ # @ redux-framework
3454
+ #~ msgid "Expand"
3455
+ #~ msgstr "Espandere"
3456
+
3457
+ # @ redux-framework
3458
+ #~ msgid "Save Changes"
3459
+ #~ msgstr "Salva le modifiche"
3460
+
3461
+ # @ woocommerce
3462
+ #~ msgid "Reset Section"
3463
+ #~ msgstr "Ripristina Sezione"
3464
+
3465
+ #~ msgid "Reset All"
3466
+ #~ msgstr "Rispristina tutto"
3467
+
3468
+ # @ redux-framework
3469
+ #~ msgid "Working..."
3470
+ #~ msgstr "Lavorare..."
3471
+
3472
+ # @ redux-framework
3473
+ #~ msgid "Settings Imported!"
3474
+ #~ msgstr "Impostazioni importate!"
3475
+
3476
+ # @ redux-framework
3477
+ #~ msgid "Settings Saved!"
3478
+ #~ msgstr "Impostazioni salvate!"
3479
+
3480
+ # @ redux-framework
3481
+ #~ msgid "Settings have changed, you should save them!"
3482
+ #~ msgstr "Le impostazioni sono state modificate, si consiglia di salvare!"
3483
+
3484
+ # @ redux-framework
3485
+ #~ msgid "error(s) were found!"
3486
+ #~ msgstr "errore(i) trovati!"
3487
+
3488
+ # @ redux-framework
3489
+ #~ msgid "warning(s) were found!"
3490
+ #~ msgstr "avviso(i) trovati!"
3491
+
3492
+ # @ redux-framework
3493
+ #~ msgid "System Info"
3494
+ #~ msgstr "Informazioni di sistema"
3495
+
3496
+ # @ woocommerce
3497
+ #~ msgid "%s review for %s"
3498
+ #~ msgid_plural "%s reviews for %s"
3499
+ #~ msgstr[0] "%s recensione per %s"
3500
+ #~ msgstr[1] "%s recensioni per %s"
3501
+
3502
+ # @ woocommerce
3503
+ #~ msgid "Reviews"
3504
+ #~ msgstr "Recensioni"
3505
+
3506
+ # @ virtue
3507
+ #, fuzzy
3508
+ #~ msgid "There are no reviews yet."
3509
+ #~ msgstr "Non ci sono opzioni precedenti"
3510
+
3511
+ # @ woocommerce
3512
+ #~ msgid "Add a review"
3513
+ #~ msgstr "Aggiungi una recensione"
3514
+
3515
+ # @ woocommerce
3516
+ #~ msgid "Be the first to review"
3517
+ #~ msgstr "Sii il primo a recensire"
3518
+
3519
+ # @ woocommerce
3520
+ #, fuzzy
3521
+ #~ msgid "Submit"
3522
+ #~ msgstr "Invia una recensione"
3523
+
3524
+ # @ woocommerce
3525
+ #, fuzzy
3526
+ #~ msgid "Your Rating"
3527
+ #~ msgstr "Valutazione"
3528
+
3529
+ # @ woocommerce
3530
+ #~ msgid "Rate&hellip;"
3531
+ #~ msgstr "Valutazione &hellip;"
3532
+
3533
+ # @ woocommerce
3534
+ #~ msgid "Perfect"
3535
+ #~ msgstr "Perfetto"
3536
+
3537
+ # @ woocommerce
3538
+ #~ msgid "Good"
3539
+ #~ msgstr "Buono"
3540
+
3541
+ # @ woocommerce
3542
+ #~ msgid "Average"
3543
+ #~ msgstr "Nella media"
3544
+
3545
+ # @ woocommerce
3546
+ #~ msgid "Not that bad"
3547
+ #~ msgstr "Non male"
3548
+
3549
+ # @ woocommerce
3550
+ #~ msgid "Very Poor"
3551
+ #~ msgstr "Molto scarso"
3552
+
3553
+ # @ woocommerce
3554
+ #~ msgid "Your Review"
3555
+ #~ msgstr "La tua recensione"
3556
+
3557
+ # @ woocommerce
3558
+ #~ msgid "Cart Totals"
3559
+ #~ msgstr "Totale carta"
3560
+
3561
+ # @ woocommerce
3562
+ #~ msgid "Cart Subtotal"
3563
+ #~ msgstr "Subtotale carta"
3564
+
3565
+ # @ woocommerce
3566
+ #~ msgid "Order Total"
3567
+ #~ msgstr "Totale ordine"
3568
+
3569
+ # @ woocommerce
3570
+ #~ msgid " (taxes estimated for %s)"
3571
+ #~ msgstr " (tasse stimate per %s)"
3572
+
3573
+ # @ woocommerce
3574
+ #~ msgid ""
3575
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
3576
+ #~ "checkout based on your billing and shipping information."
3577
+ #~ msgstr ""
3578
+ #~ "Nota: Il trasporto e le tasse sono stimate %s saranno aggiornate durante "
3579
+ #~ "il checkout in base alla fatturazione e alle informazioni di spedizione."
3580
+
3581
+ # @ woocommerce
3582
+ #~ msgid "Product"
3583
+ #~ msgstr "Prodotto"
3584
+
3585
+ # @ woocommerce
3586
+ #~ msgid "Total"
3587
+ #~ msgstr "Totale"
3588
+
3589
+ # @ virtue
3590
+ #, fuzzy
3591
+ #~ msgid "Remove this item"
3592
+ #~ msgstr "Rimuovi immagine"
3593
+
3594
+ # @ woocommerce
3595
+ #, fuzzy
3596
+ #~ msgid "Available on backorder"
3597
+ #~ msgstr "Download disponibile"
3598
+
3599
+ # @ woocommerce
3600
+ #, fuzzy
3601
+ #~ msgid "Coupon"
3602
+ #~ msgstr "Codice coupon"
3603
+
3604
+ # @ woocommerce
3605
+ #~ msgid "Coupon code"
3606
+ #~ msgstr "Codice coupon"
3607
+
3608
+ # @ woocommerce
3609
+ #~ msgid "Apply Coupon"
3610
+ #~ msgstr "Applica il coupon"
3611
+
3612
+ # @ woocommerce
3613
+ #, fuzzy
3614
+ #~ msgid "Update Cart"
3615
+ #~ msgstr "Aggiorna totale"
3616
+
3617
+ # @ woocommerce
3618
+ #~ msgid "You may be interested in&hellip;"
3619
+ #~ msgstr "Potresti essere interessato a ..."
3620
+
3621
+ # @ woocommerce
3622
+ #~ msgid "Calculate Shipping"
3623
+ #~ msgstr "Calcola la spedizione"
3624
+
3625
+ # @ woocommerce
3626
+ #~ msgid "Select a country&hellip;"
3627
+ #~ msgstr "Seleziona un paese"
3628
+
3629
+ # @ woocommerce
3630
+ #~ msgid "State / county"
3631
+ #~ msgstr "Paese"
3632
+
3633
+ # @ woocommerce
3634
+ #~ msgid "City"
3635
+ #~ msgstr "Città"
3636
+
3637
+ # @ woocommerce
3638
+ #~ msgid "Postcode / Zip"
3639
+ #~ msgstr "Codice postale"
3640
+
3641
+ # @ woocommerce
3642
+ #~ msgid "Default sorting"
3643
+ #~ msgstr "Ordinamento predefinito"
3644
+
3645
+ # @ woocommerce
3646
+ #~ msgid "Sort by popularity"
3647
+ #~ msgstr "Ordina per popolarità"
3648
+
3649
+ # @ woocommerce
3650
+ #~ msgid "Sort by average rating"
3651
+ #~ msgstr "Ordina per valutazione media"
3652
+
3653
+ # @ woocommerce
3654
+ #~ msgid "Sort by newness"
3655
+ #~ msgstr "Ordina per novità"
3656
+
3657
+ # @ woocommerce
3658
+ #~ msgid "Sort by price: low to high"
3659
+ #~ msgstr "Ordina per prezzo crescente"
3660
+
3661
+ # @ woocommerce
3662
+ #~ msgid "Sort by price: high to low"
3663
+ #~ msgstr "Ordina per prezzo decrescente"
3664
+
3665
+ # @ woocommerce
3666
+ #~ msgid ""
3667
+ #~ "To track your order please enter your Order ID in the box below and press "
3668
+ #~ "return. This was given to you on your receipt and in the confirmation "
3669
+ #~ "email you should have received."
3670
+ #~ msgstr ""
3671
+ #~ "Per effettuare il tracking del tuo ordine, per favore inserisci il tuo "
3672
+ #~ "nr. di ordine nella casella qui sotto e premi invio. Tale numero, "
3673
+ #~ "dovresti trovarlo nell'email di conferma che ti è stata inviata."
3674
+
3675
+ # @ woocommerce
3676
+ #~ msgid "Order ID"
3677
+ #~ msgstr "Nr. di ordine"
3678
+
3679
+ # @ woocommerce
3680
+ #~ msgid "Found in your order confirmation email."
3681
+ #~ msgstr "Si trova nella e-mail di conferma dell'ordine."
3682
+
3683
+ # @ woocommerce
3684
+ #~ msgid "Billing Email"
3685
+ #~ msgstr "Email di fatturazione"
3686
+
3687
+ # @ woocommerce
3688
+ #~ msgid "Email you used during checkout."
3689
+ #~ msgstr "Email usata durante il checkout."
3690
+
3691
+ # @ woocommerce
3692
+ #~ msgid "Track"
3693
+ #~ msgstr "Track"
3694
+
3695
+ # @ woocommerce
3696
+ #~ msgid "Order Details"
3697
+ #~ msgstr "Dettagli ordine"
3698
+
3699
+ # @ woocommerce
3700
+ #~ msgid "Download file%s"
3701
+ #~ msgstr "Download file%s"
3702
+
3703
+ # @ woocommerce
3704
+ #~ msgid "Order Again"
3705
+ #~ msgstr "Ordina di nuovo"
3706
+
3707
+ # @ woocommerce
3708
+ #~ msgid "Customer details"
3709
+ #~ msgstr "Dati del cliente"
3710
+
3711
+ # @ woocommerce
3712
+ #~ msgid "Billing Address"
3713
+ #~ msgstr "Indirizzo di fatturazione"
3714
+
3715
+ # @ woocommerce
3716
+ #~ msgid "N/A"
3717
+ #~ msgstr "N/A"
3718
+
3719
+ # @ woocommerce
3720
+ #~ msgid "Shipping Address"
3721
+ #~ msgstr "Indirizzo di spedizione"
3722
+
3723
+ # @ woocommerce
3724
+ #~ msgid "Products tagged &ldquo;"
3725
+ #~ msgstr "Prodotti taggati &ldquo;"
3726
+
3727
+ # @ woocommerce
3728
+ #~ msgid "Search results for &ldquo;"
3729
+ #~ msgstr "Ricerca risultati per &ldquo;"
3730
+
3731
+ # @ woocommerce
3732
+ #~ msgid "Error 404"
3733
+ #~ msgstr "Error 404"
3734
+
3735
+ # @ woocommerce
3736
+ #~ msgid "Posts tagged &ldquo;"
3737
+ #~ msgstr "Post taggati &ldquo;"
3738
+
3739
+ # @ woocommerce
3740
+ #~ msgid "Author:"
3741
+ #~ msgstr "Autore:"
3742
+
3743
+ # @ woocommerce
3744
+ #~ msgid "Page"
3745
+ #~ msgstr "Pagina"
3746
+
3747
+ # @ woocommerce
3748
+ #~ msgid "Username or email"
3749
+ #~ msgstr "Username o email"
3750
+
3751
+ # @ redux-framework
3752
+ # @ woocommerce
3753
+ #~ msgid "Password"
3754
+ #~ msgstr "Password"
3755
+
3756
+ # @ woocommerce
3757
+ #~ msgid "Login"
3758
+ #~ msgstr "Login"
3759
+
3760
+ # @ woocommerce
3761
+ #~ msgid "Lost Password?"
3762
+ #~ msgstr "Password persa?"
3763
+
3764
+ # @ woocommerce
3765
+ #~ msgid "Rated %s out of 5"
3766
+ #~ msgstr "Valutato %s su 5"
3767
+
3768
+ # @ woocommerce
3769
+ #~ msgid "out of 5"
3770
+ #~ msgstr "su 5"
3771
+
3772
+ # @ woocommerce
3773
+ #~ msgid "Rated %d out of 5"
3774
+ #~ msgstr "valutato %d su 5"
3775
+
3776
+ # @ woocommerce
3777
+ #~ msgid "Your comment is awaiting approval"
3778
+ #~ msgstr "Il tuo commento è in attesa di approvazione"
3779
+
3780
+ # @ woocommerce
3781
+ #~ msgid "verified owner"
3782
+ #~ msgstr "Proprietario verificato"
3783
+
3784
+ # @ woocommerce
3785
+ #~ msgid "Choose an option"
3786
+ #~ msgstr "Scegli una opzione"
3787
+
3788
+ # @ woocommerce
3789
+ #~ msgid "Clear selection"
3790
+ #~ msgstr "Cancella selezione"
3791
+
3792
+ # @ redux-framework
3793
+ #, fuzzy
3794
+ #~ msgid ""
3795
+ #~ "You have changes that are not saved. Would you like to save them now?"
3796
+ #~ msgstr "Ci sono modifiche non salvate. Vuoi salvarli adesso?"
3797
+
3798
+ # @ redux-framework
3799
+ #, fuzzy
3800
+ #~ msgid "Are you sure? Resetting will lose all custom values."
3801
+ #~ msgstr "Sei sicuro? Ripristinando perderai tutti i valori personalizzati."
3802
+
3803
+ # @ redux-framework
3804
+ #, fuzzy
3805
+ #~ msgid ""
3806
+ #~ "Your current options will be replaced with the values of this preset. "
3807
+ #~ "Would you like to proceed?"
3808
+ #~ msgstr ""
3809
+ #~ "Le opzioni correnti verranno sostituite con i valori di questo preset. "
3810
+ #~ "Vuoi continuare?"
3811
+
3812
+ # @ woocommerce
3813
+ #~ msgid ""
3814
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
3815
+ #~ "merchant has declined your transaction."
3816
+ #~ msgstr ""
3817
+ #~ "Purtroppo il vostro ordine non può essere elaborato. La banca ha "
3818
+ #~ "rifiutato la transazione."
3819
+
3820
+ # @ woocommerce
3821
+ #~ msgid "Please attempt your purchase again or go to your account page."
3822
+ #~ msgstr ""
3823
+ #~ "Si prega di provare ancora l'acquisto o vai alla pagina del tuo account."
3824
+
3825
+ # @ woocommerce
3826
+ #~ msgid "Please attempt your purchase again."
3827
+ #~ msgstr "Si prega di ritentare l'acquisto."
3828
+
3829
+ # @ woocommerce
3830
+ #~ msgid "Pay"
3831
+ #~ msgstr "Paga"
3832
+
3833
+ # @ woocommerce
3834
+ #~ msgid "Thank you. Your order has been received."
3835
+ #~ msgstr "Grazie. Il tuo ordine è stato ricevuto."
3836
+
3837
+ # @ woocommerce
3838
+ #~ msgid "Order:"
3839
+ #~ msgstr "Ordine:"
3840
+
3841
+ # @ woocommerce
3842
+ #~ msgid "Date:"
3843
+ #~ msgstr "Data:"
3844
+
3845
+ # @ woocommerce
3846
+ #~ msgid "Total:"
3847
+ #~ msgstr "Totale:"
3848
+
3849
+ # @ woocommerce
3850
+ #~ msgid "Payment method:"
3851
+ #~ msgstr "Metodo di pagamento:"
3852
+
3853
+ # @ woocommerce
3854
+ #~ msgid "No products found which match your selection."
3855
+ #~ msgstr "Non ci sono prodotti che corrispondono alla tua selezione."
3856
+
3857
+ # @ woocommerce
3858
+ #~ msgid "Showing the single result"
3859
+ #~ msgstr "Mostra il singolo risultato"
3860
+
3861
+ # @ woocommerce
3862
+ #~ msgid "Showing all %d results"
3863
+ #~ msgstr "Mostra %d risultato/i"
3864
+
3865
+ # @ woocommerce
3866
+ #~ msgid "Additional Information"
3867
+ #~ msgstr "Informazioni aggiuntive"
3868
+
3869
+ # @ woocommerce
3870
+ #~ msgid "Product Description"
3871
+ #~ msgstr "Descrizione prodotto"
3872
+
3873
+ # @ tgmpa
3874
+ # @ virtue
3875
+ #, fuzzy
3876
+ #~ msgid "Begin installing plugin"
3877
+ #~ msgid_plural "Begin installing plugins"
3878
+ #~ msgstr[0] "Installazione del plugin: %s"
3879
+ #~ msgstr[1] "Installazione del plugin: %s"
3880
+
3881
+ # @ redux-framework
3882
+ #, fuzzy
3883
+ #~ msgid "Activate installed plugin"
3884
+ #~ msgid_plural "Activate installed plugins"
3885
+ #~ msgstr[0] "Licenza attivata"
3886
+ #~ msgstr[1] "Licenza attivata"
3887
+
3888
+ # @ tgmpa
3889
+ #, fuzzy
3890
+ #~ msgid "Not Activated"
3891
+ #~ msgstr "Attivare"
3892
+
3893
+ # @ tgmpa
3894
+ #, fuzzy
3895
+ #~ msgid "Deactivated"
3896
+ #~ msgstr "Attivare"
3897
+
3898
+ # @ tgmpa
3899
+ # @ woocommerce
3900
+ #, fuzzy
3901
+ #~ msgid "License Status"
3902
+ #~ msgstr "Stato"
3903
+
3904
+ # @ tgmpa
3905
+ #, fuzzy
3906
+ #~ msgid "Activate License"
3907
+ #~ msgstr "Attivare"
3908
+
3909
+ # @ woocommerce
3910
+ #~ msgid "Select an Option"
3911
+ #~ msgstr "Seleziona una opzione"
3912
+
3913
+ # @ redux-framework
3914
+ #~ msgid "Transparent"
3915
+ #~ msgstr "Trasparente"
3916
+
3917
+ # @ virtue
3918
+ #, fuzzy
3919
+ #~ msgid "Background Repeat"
3920
+ #~ msgstr "Colore di sfondo"
3921
+
3922
+ # @ virtue
3923
+ #, fuzzy
3924
+ #~ msgid "Background Clip"
3925
+ #~ msgstr "Colore di sfondo"
3926
+
3927
+ # @ virtue
3928
+ #, fuzzy
3929
+ #~ msgid "Background Origin"
3930
+ #~ msgstr "Colore di sfondo"
3931
+
3932
+ # @ virtue
3933
+ #, fuzzy
3934
+ #~ msgid "Background Size"
3935
+ #~ msgstr "Colore di sfondo"
3936
+
3937
+ # @ virtue
3938
+ #, fuzzy
3939
+ #~ msgid "Background Attachment"
3940
+ #~ msgstr "Colore di sfondo"
3941
+
3942
+ # @ virtue
3943
+ #, fuzzy
3944
+ #~ msgid "Background Position"
3945
+ #~ msgstr "Colore di sfondo"
3946
+
3947
+ # @ virtue
3948
+ #, fuzzy
3949
+ #~ msgid "Bottom"
3950
+ #~ msgstr "Spaziatura inferiore"
3951
+
3952
+ # @ virtue
3953
+ #, fuzzy
3954
+ #~ msgid "Delete"
3955
+ #~ msgstr "Cancella icona"
3956
+
3957
+ # @ virtue
3958
+ #, fuzzy
3959
+ #~ msgid "Add"
3960
+ #~ msgstr "Indirizzo"
3961
+
3962
+ # @ redux-framework
3963
+ #~ msgid "Import / Export Options"
3964
+ #~ msgstr "Opzione Importa / Esporta"
3965
+
3966
+ # @ redux-framework
3967
+ #~ msgid "Import Options"
3968
+ #~ msgstr "Importa Opzioni"
3969
+
3970
+ # @ redux-framework
3971
+ #~ msgid "Import from file"
3972
+ #~ msgstr "Importa da file"
3973
+
3974
+ # @ redux-framework
3975
+ #~ msgid "Import from URL"
3976
+ #~ msgstr "Importa da URL"
3977
+
3978
+ # @ redux-framework
3979
+ #~ msgid ""
3980
+ #~ "Input your backup file below and hit Import to restore your sites options "
3981
+ #~ "from a backup."
3982
+ #~ msgstr ""
3983
+ #~ "Importa il tuo file di backup qui sotto e premi Importa per ripristinare "
3984
+ #~ "le opzioni del tuo sito da un backup."
3985
+
3986
+ # @ redux-framework
3987
+ #~ msgid ""
3988
+ #~ "Input the URL to another sites options set and hit Import to load the "
3989
+ #~ "options from that site."
3990
+ #~ msgstr ""
3991
+ #~ "Inserire l'URL di un altro set di opzioni siti e premi Importa per "
3992
+ #~ "caricare le opzioni di quel sito."
3993
+
3994
+ # @ redux-framework
3995
+ #~ msgid "Import"
3996
+ #~ msgstr "Importa"
3997
+
3998
+ # @ redux-framework
3999
+ #~ msgid ""
4000
+ #~ "WARNING! This will overwrite all existing option values, please proceed "
4001
+ #~ "with caution!"
4002
+ #~ msgstr ""
4003
+ #~ "ATTENZIONE! Questo sovrascriverà tutti i valori delle opzioni attuali, si "
4004
+ #~ "prega di procedere con cautela!"
4005
+
4006
+ # @ redux-framework
4007
+ #~ msgid "Export Options"
4008
+ #~ msgstr "Esporta Opzioni"
4009
+
4010
+ # @ redux-framework
4011
+ #~ msgid ""
4012
+ #~ "Here you can copy/download your current option settings. Keep this safe "
4013
+ #~ "as you can use it as a backup should anything go wrong, or you can use it "
4014
+ #~ "to restore your settings on this site (or any other site)."
4015
+ #~ msgstr ""
4016
+ #~ "Qui è possibile copiare / scaricare le impostazioni delle opzioni "
4017
+ #~ "correnti. Conservalo al sicuro in modo da poterlo utilizzare come backup "
4018
+ #~ "se qualcosa dovesse andare storto, oppure è possibile utilizzarlo per "
4019
+ #~ "ripristinare le impostazioni su questo sito (o qualsiasi altro sito)."
4020
+
4021
+ # @ redux-framework
4022
+ #~ msgid "Copy"
4023
+ #~ msgstr "Copia"
4024
+
4025
+ # @ redux-framework
4026
+ #~ msgid "Copy Link"
4027
+ #~ msgstr "Copia Link"
4028
+
4029
+ # @ redux-framework
4030
+ #~ msgid "Import / Export"
4031
+ #~ msgstr "Importa / Esporta"
4032
+
4033
+ # @ tgmpa
4034
+ #, fuzzy
4035
+ #~ msgid "Active"
4036
+ #~ msgstr "Attivare"
4037
+
4038
+ # @ woocommerce
4039
+ #, fuzzy
4040
+ #~ msgid "Add More"
4041
+ #~ msgstr "Leggi altro"
4042
+
4043
+ # @ redux-framework
4044
+ # @ woocommerce
4045
+ #~ msgid "Username"
4046
+ #~ msgstr "Nome utente"
4047
+
4048
+ # @ woocommerce
4049
+ #, fuzzy
4050
+ #~ msgid "Select an item"
4051
+ #~ msgstr "Seleziona una opzione"
4052
+
4053
+ # @ virtue
4054
+ #, fuzzy
4055
+ #~ msgid "Standard Fonts"
4056
+ #~ msgstr "In tutto il sito usare fonts grigi"
4057
+
4058
+ # @ woocommerce
4059
+ #, fuzzy
4060
+ #~ msgid "Font style"
4061
+ #~ msgstr "Descrizione prodotto"
4062
+
4063
+ # @ woocommerce
4064
+ #, fuzzy
4065
+ #~ msgid "Font subsets"
4066
+ #~ msgstr "Descrizione prodotto"
4067
+
4068
+ # @ woocommerce
4069
+ #, fuzzy
4070
+ #~ msgid "Font script"
4071
+ #~ msgstr "Descrizione prodotto"
4072
+
4073
+ # @ virtue
4074
+ #, fuzzy
4075
+ #~ msgid "Word Spacing"
4076
+ #~ msgstr "Spaziatura superiore"
4077
+
4078
+ # @ virtue
4079
+ #, fuzzy
4080
+ #~ msgid "Letter Spacing"
4081
+ #~ msgstr "Spaziatura sinistra"
4082
+
4083
+ # @ virtue
4084
+ #, fuzzy
4085
+ #~ msgid "Font color"
4086
+ #~ msgstr "Colore font del oooter"
4087
+
4088
+ # @ woocommerce
4089
+ #, fuzzy
4090
+ #~ msgctxt "%1$d = first, %2$d = last, %3$d = total"
4091
+ #~ msgid "Showing %1$d–%2$d of %3$d results"
4092
+ #~ msgstr "Mostra %d risultato/i"
4093
+
4094
+ # @ woocommerce
4095
+ #, fuzzy
4096
+ #~ msgctxt "Product quantity input tooltip"
4097
+ #~ msgid "Qty"
4098
+ #~ msgstr "Quantità"
languages/kadence_toolkit.po ADDED
@@ -0,0 +1,1228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "POT-Creation-Date: 2015-01-10 00:32-0700\n"
5
+ "PO-Revision-Date: 2015-01-10 00:32-0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Kadence Themes\n"
8
+ "Language: en\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.10\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
19
+ msgid "Please Try Again"
20
+ msgstr ""
21
+
22
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
23
+ msgid "Remove Embed"
24
+ msgstr ""
25
+
26
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
27
+ #, php-format
28
+ msgid "No oEmbed Results Found for %s. View more info at"
29
+ msgstr ""
30
+
31
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
32
+ msgid "Add Group"
33
+ msgstr ""
34
+
35
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
36
+ msgid "Remove Group"
37
+ msgstr ""
38
+
39
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
40
+ msgid "Add Row"
41
+ msgstr ""
42
+
43
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
44
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
45
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
46
+ msgid "Remove"
47
+ msgstr ""
48
+
49
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
50
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
51
+ msgid "No terms"
52
+ msgstr ""
53
+
54
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
55
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
56
+ msgid "Add or Upload File"
57
+ msgstr ""
58
+
59
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
60
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
61
+ msgid "Remove Image"
62
+ msgstr ""
63
+
64
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
65
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
66
+ msgid "File:"
67
+ msgstr ""
68
+
69
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
70
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
71
+ msgid "Download"
72
+ msgstr ""
73
+
74
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
75
+ msgid "Clear"
76
+ msgstr ""
77
+
78
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
79
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
80
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
81
+ #: ../metaboxes.php:489
82
+ msgid "Default"
83
+ msgstr ""
84
+
85
+ #: ../cmb/init.php:260
86
+ msgid "Select Color"
87
+ msgstr ""
88
+
89
+ #: ../cmb/init.php:261
90
+ msgid "Current Color"
91
+ msgstr ""
92
+
93
+ #: ../cmb/init.php:288
94
+ msgid "Select / Deselect All"
95
+ msgstr ""
96
+
97
+ #: ../cmb/init.php:1178
98
+ msgid "Save"
99
+ msgstr ""
100
+
101
+ #: ../metaboxes.php:17
102
+ msgid "Add/Edit Gallery"
103
+ msgstr ""
104
+
105
+ #: ../metaboxes.php:18
106
+ msgid "Clear Gallery"
107
+ msgstr ""
108
+
109
+ #: ../metaboxes.php:44
110
+ msgid "Page Title and Subtitle"
111
+ msgstr ""
112
+
113
+ #: ../metaboxes.php:51 ../metaboxes.php:95
114
+ msgid "Subtitle"
115
+ msgstr ""
116
+
117
+ #: ../metaboxes.php:52
118
+ msgid "Subtitle will go below page title"
119
+ msgstr ""
120
+
121
+ #: ../metaboxes.php:57 ../metaboxes.php:101
122
+ msgid "Hide Page Title"
123
+ msgstr ""
124
+
125
+ #: ../metaboxes.php:63 ../metaboxes.php:107
126
+ msgid "Show"
127
+ msgstr ""
128
+
129
+ #: ../metaboxes.php:64 ../metaboxes.php:108
130
+ msgid "Hide"
131
+ msgstr ""
132
+
133
+ #: ../metaboxes.php:68 ../metaboxes.php:112
134
+ msgid "Page Title background behind Header"
135
+ msgstr ""
136
+
137
+ #: ../metaboxes.php:74 ../metaboxes.php:118
138
+ msgid "Place behind Header"
139
+ msgstr ""
140
+
141
+ #: ../metaboxes.php:75 ../metaboxes.php:119
142
+ msgid "Don't place behind Header"
143
+ msgstr ""
144
+
145
+ #: ../metaboxes.php:82
146
+ msgid "Post Title and Subtitle"
147
+ msgstr ""
148
+
149
+ #: ../metaboxes.php:89 ../metaboxes.php:90
150
+ msgid "Post Header Title"
151
+ msgstr ""
152
+
153
+ #: ../metaboxes.php:96
154
+ msgid "Subtitle will go below post title"
155
+ msgstr ""
156
+
157
+ #: ../metaboxes.php:126
158
+ msgid "Gallery Post Options"
159
+ msgstr ""
160
+
161
+ #: ../metaboxes.php:135 ../metaboxes.php:190
162
+ msgid "Post Head Content"
163
+ msgstr ""
164
+
165
+ #: ../metaboxes.php:140 ../metaboxes.php:170
166
+ msgid "Gallery Post Default"
167
+ msgstr ""
168
+
169
+ #: ../metaboxes.php:141
170
+ msgid "Image Slider - (Flex Slider)"
171
+ msgstr ""
172
+
173
+ #: ../metaboxes.php:142
174
+ msgid "Carousel Slider - (Caroufedsel Slider)"
175
+ msgstr ""
176
+
177
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
178
+ #: ../metaboxes.php:738
179
+ msgid "None"
180
+ msgstr ""
181
+
182
+ #: ../metaboxes.php:147
183
+ msgid "Post Slider Gallery"
184
+ msgstr ""
185
+
186
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
187
+ msgid "Add images for gallery here"
188
+ msgstr ""
189
+
190
+ #: ../metaboxes.php:153
191
+ msgid "Max Slider Height"
192
+ msgstr ""
193
+
194
+ #: ../metaboxes.php:154 ../metaboxes.php:553
195
+ msgid "Default is: 400 (Note: just input number, example: 350)"
196
+ msgstr ""
197
+
198
+ #: ../metaboxes.php:159
199
+ msgid "Max Slider Width"
200
+ msgstr ""
201
+
202
+ #: ../metaboxes.php:160
203
+ msgid ""
204
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
205
+ "example: 650, only applys to Image Slider)"
206
+ msgstr ""
207
+
208
+ #: ../metaboxes.php:165 ../metaboxes.php:213
209
+ msgid "Post Summary"
210
+ msgstr ""
211
+
212
+ #: ../metaboxes.php:171 ../metaboxes.php:220
213
+ msgid "Portrait Image (feature image)"
214
+ msgstr ""
215
+
216
+ #: ../metaboxes.php:172 ../metaboxes.php:221
217
+ msgid "Landscape Image (feature image)"
218
+ msgstr ""
219
+
220
+ #: ../metaboxes.php:173
221
+ msgid "Portrait Image Slider"
222
+ msgstr ""
223
+
224
+ #: ../metaboxes.php:174
225
+ msgid "Landscape Image Slider"
226
+ msgstr ""
227
+
228
+ #: ../metaboxes.php:181
229
+ msgid "Video Post Options"
230
+ msgstr ""
231
+
232
+ #: ../metaboxes.php:195 ../metaboxes.php:218
233
+ msgid "Video Post Default"
234
+ msgstr ""
235
+
236
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
237
+ #: ../metaboxes.php:737 ../metaboxes.php:960
238
+ msgid "Video"
239
+ msgstr ""
240
+
241
+ #: ../metaboxes.php:201
242
+ msgid "Video Post embed code"
243
+ msgstr ""
244
+
245
+ #: ../metaboxes.php:202
246
+ msgid ""
247
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
248
+ "for screen shot)"
249
+ msgstr ""
250
+
251
+ #: ../metaboxes.php:207
252
+ msgid "Max Video Width"
253
+ msgstr ""
254
+
255
+ #: ../metaboxes.php:208
256
+ msgid ""
257
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
258
+ "example: 650, does not apply to carousel slider)"
259
+ msgstr ""
260
+
261
+ #: ../metaboxes.php:219
262
+ msgid "Video - (when possible)"
263
+ msgstr ""
264
+
265
+ #: ../metaboxes.php:228 ../metaboxes.php:710
266
+ msgid "Portfolio Post Options"
267
+ msgstr ""
268
+
269
+ #: ../metaboxes.php:236 ../metaboxes.php:718
270
+ msgid "Project Layout"
271
+ msgstr ""
272
+
273
+ #: ../metaboxes.php:241
274
+ msgid "Beside 40%"
275
+ msgstr ""
276
+
277
+ #: ../metaboxes.php:242
278
+ msgid "Beside 33%"
279
+ msgstr ""
280
+
281
+ #: ../metaboxes.php:243 ../metaboxes.php:724
282
+ msgid "Above"
283
+ msgstr ""
284
+
285
+ #: ../metaboxes.php:244 ../metaboxes.php:725
286
+ msgid "Three Rows"
287
+ msgstr ""
288
+
289
+ #: ../metaboxes.php:248 ../metaboxes.php:729
290
+ msgid "Project Options"
291
+ msgstr ""
292
+
293
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
294
+ msgid "Image"
295
+ msgstr ""
296
+
297
+ #: ../metaboxes.php:254 ../metaboxes.php:534
298
+ msgid "Image Slider (Flex Slider)"
299
+ msgstr ""
300
+
301
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
302
+ msgid "Carousel Slider"
303
+ msgstr ""
304
+
305
+ #: ../metaboxes.php:261
306
+ msgid "Portfolio Slider/Images"
307
+ msgstr ""
308
+
309
+ #: ../metaboxes.php:262
310
+ msgid "Add images for post here"
311
+ msgstr ""
312
+
313
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
314
+ #: ../metaboxes.php:965
315
+ msgid "Max Image/Slider Height"
316
+ msgstr ""
317
+
318
+ #: ../metaboxes.php:268
319
+ msgid "Default is: 450 (Note: just input number, example: 350)"
320
+ msgstr ""
321
+
322
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
323
+ #: ../metaboxes.php:971
324
+ msgid "Max Image/Slider Width"
325
+ msgstr ""
326
+
327
+ #: ../metaboxes.php:274
328
+ msgid ""
329
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
330
+ "number, example: 650)"
331
+ msgstr ""
332
+
333
+ #: ../metaboxes.php:279 ../metaboxes.php:764
334
+ msgid "Value 01 Title"
335
+ msgstr ""
336
+
337
+ #: ../metaboxes.php:280 ../metaboxes.php:765
338
+ msgid "ex. Project Type:"
339
+ msgstr ""
340
+
341
+ #: ../metaboxes.php:285 ../metaboxes.php:770
342
+ msgid "Value 01 Description"
343
+ msgstr ""
344
+
345
+ #: ../metaboxes.php:286 ../metaboxes.php:771
346
+ msgid "ex. Character Illustration"
347
+ msgstr ""
348
+
349
+ #: ../metaboxes.php:291 ../metaboxes.php:776
350
+ msgid "Value 02 Title"
351
+ msgstr ""
352
+
353
+ #: ../metaboxes.php:292 ../metaboxes.php:777
354
+ msgid "ex. Skills Needed:"
355
+ msgstr ""
356
+
357
+ #: ../metaboxes.php:297 ../metaboxes.php:782
358
+ msgid "Value 02 Description"
359
+ msgstr ""
360
+
361
+ #: ../metaboxes.php:298 ../metaboxes.php:783
362
+ msgid "ex. Photoshop, Illustrator"
363
+ msgstr ""
364
+
365
+ #: ../metaboxes.php:303 ../metaboxes.php:788
366
+ msgid "Value 03 Title"
367
+ msgstr ""
368
+
369
+ #: ../metaboxes.php:304 ../metaboxes.php:789
370
+ msgid "ex. Customer:"
371
+ msgstr ""
372
+
373
+ #: ../metaboxes.php:309 ../metaboxes.php:794
374
+ msgid "Value 03 Description"
375
+ msgstr ""
376
+
377
+ #: ../metaboxes.php:310 ../metaboxes.php:795
378
+ msgid "ex. Example Inc"
379
+ msgstr ""
380
+
381
+ #: ../metaboxes.php:315 ../metaboxes.php:800
382
+ msgid "Value 04 Title"
383
+ msgstr ""
384
+
385
+ #: ../metaboxes.php:316 ../metaboxes.php:801
386
+ msgid "ex. Project Year:"
387
+ msgstr ""
388
+
389
+ #: ../metaboxes.php:321 ../metaboxes.php:806
390
+ msgid "Value 04 Description"
391
+ msgstr ""
392
+
393
+ #: ../metaboxes.php:322 ../metaboxes.php:807
394
+ msgid "ex. 2013"
395
+ msgstr ""
396
+
397
+ #: ../metaboxes.php:327 ../metaboxes.php:812
398
+ msgid "External Website"
399
+ msgstr ""
400
+
401
+ #: ../metaboxes.php:328 ../metaboxes.php:813
402
+ msgid "ex. Website:"
403
+ msgstr ""
404
+
405
+ #: ../metaboxes.php:333 ../metaboxes.php:818
406
+ msgid "Website Address"
407
+ msgstr ""
408
+
409
+ #: ../metaboxes.php:334 ../metaboxes.php:819
410
+ msgid "ex. http://www.example.com"
411
+ msgstr ""
412
+
413
+ #: ../metaboxes.php:339 ../metaboxes.php:824
414
+ msgid "If Video Project"
415
+ msgstr ""
416
+
417
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
418
+ #: ../metaboxes.php:825 ../metaboxes.php:988
419
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
420
+ msgstr ""
421
+
422
+ #: ../metaboxes.php:349
423
+ msgid "Bottom Carousel Options"
424
+ msgstr ""
425
+
426
+ #: ../metaboxes.php:356 ../metaboxes.php:840
427
+ msgid "Carousel Title"
428
+ msgstr ""
429
+
430
+ #: ../metaboxes.php:357 ../metaboxes.php:841
431
+ msgid "ex. Similar Projects"
432
+ msgstr ""
433
+
434
+ #: ../metaboxes.php:362
435
+ msgid "Bottom Portfolio Carousel"
436
+ msgstr ""
437
+
438
+ #: ../metaboxes.php:363
439
+ msgid "Display a carousel with portfolio items below project?"
440
+ msgstr ""
441
+
442
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
443
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
444
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
445
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
446
+ msgid "No"
447
+ msgstr ""
448
+
449
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
450
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
451
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
452
+ #: ../metaboxes.php:1037
453
+ msgid "Yes"
454
+ msgstr ""
455
+
456
+ #: ../metaboxes.php:373
457
+ msgid "Carousel Items"
458
+ msgstr ""
459
+
460
+ #: ../metaboxes.php:379
461
+ msgid "All Portfolio Posts"
462
+ msgstr ""
463
+
464
+ #: ../metaboxes.php:380
465
+ msgid "Only of same Portfolio Type"
466
+ msgstr ""
467
+
468
+ #: ../metaboxes.php:384
469
+ msgid "Carousel Order"
470
+ msgstr ""
471
+
472
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
473
+ msgid "Menu Order"
474
+ msgstr ""
475
+
476
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
477
+ msgid "Title"
478
+ msgstr ""
479
+
480
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
481
+ msgid "Date"
482
+ msgstr ""
483
+
484
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
485
+ msgid "Random"
486
+ msgstr ""
487
+
488
+ #: ../metaboxes.php:400 ../metaboxes.php:850
489
+ msgid "Portfolio Page Options"
490
+ msgstr ""
491
+
492
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
493
+ msgid "Style"
494
+ msgstr ""
495
+
496
+ #: ../metaboxes.php:414
497
+ msgid "Post Boxes"
498
+ msgstr ""
499
+
500
+ #: ../metaboxes.php:415
501
+ msgid "Flat with Margin"
502
+ msgstr ""
503
+
504
+ #: ../metaboxes.php:419
505
+ msgid "Hover Style"
506
+ msgstr ""
507
+
508
+ #: ../metaboxes.php:425
509
+ msgid "Light"
510
+ msgstr ""
511
+
512
+ #: ../metaboxes.php:426
513
+ msgid "Dark"
514
+ msgstr ""
515
+
516
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
517
+ msgid "Primary Color"
518
+ msgstr ""
519
+
520
+ #: ../metaboxes.php:431 ../metaboxes.php:859
521
+ msgid "Columns"
522
+ msgstr ""
523
+
524
+ #: ../metaboxes.php:436 ../metaboxes.php:864
525
+ msgid "Four Column"
526
+ msgstr ""
527
+
528
+ #: ../metaboxes.php:437 ../metaboxes.php:865
529
+ msgid "Three Column"
530
+ msgstr ""
531
+
532
+ #: ../metaboxes.php:438 ../metaboxes.php:866
533
+ msgid "Two Column"
534
+ msgstr ""
535
+
536
+ #: ../metaboxes.php:439
537
+ msgid "Five Column"
538
+ msgstr ""
539
+
540
+ #: ../metaboxes.php:443 ../metaboxes.php:870
541
+ msgid "Portfolio Work Types"
542
+ msgstr ""
543
+
544
+ #: ../metaboxes.php:449 ../metaboxes.php:877
545
+ msgid "Order Items By"
546
+ msgstr ""
547
+
548
+ #: ../metaboxes.php:461 ../metaboxes.php:889
549
+ msgid "Items per Page"
550
+ msgstr ""
551
+
552
+ #: ../metaboxes.php:462 ../metaboxes.php:890
553
+ msgid "How many portfolio items per page"
554
+ msgstr ""
555
+
556
+ #: ../metaboxes.php:466 ../metaboxes.php:894
557
+ msgid "All"
558
+ msgstr ""
559
+
560
+ #: ../metaboxes.php:484
561
+ msgid "Image Ratio?"
562
+ msgstr ""
563
+
564
+ #: ../metaboxes.php:490
565
+ msgid "Square 1:1"
566
+ msgstr ""
567
+
568
+ #: ../metaboxes.php:491
569
+ msgid "Portrait 3:4"
570
+ msgstr ""
571
+
572
+ #: ../metaboxes.php:492
573
+ msgid "Landscape 4:3"
574
+ msgstr ""
575
+
576
+ #: ../metaboxes.php:493
577
+ msgid "Wide Landscape 4:2"
578
+ msgstr ""
579
+
580
+ #: ../metaboxes.php:497 ../metaboxes.php:918
581
+ msgid "Display Item Work Types"
582
+ msgstr ""
583
+
584
+ #: ../metaboxes.php:503 ../metaboxes.php:925
585
+ msgid "Display Item Excerpt"
586
+ msgstr ""
587
+
588
+ #: ../metaboxes.php:509
589
+ msgid "Add Lightbox link in each item"
590
+ msgstr ""
591
+
592
+ #: ../metaboxes.php:518 ../metaboxes.php:945
593
+ msgid "Feature Page Options"
594
+ msgstr ""
595
+
596
+ #: ../metaboxes.php:527
597
+ msgid "Header Options"
598
+ msgstr ""
599
+
600
+ #: ../metaboxes.php:528
601
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
602
+ msgstr ""
603
+
604
+ #: ../metaboxes.php:533
605
+ msgid "Page Title"
606
+ msgstr ""
607
+
608
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
609
+ msgid "Slider Images"
610
+ msgstr ""
611
+
612
+ #: ../metaboxes.php:541
613
+ msgid "Add for flex, carousel, and image carousel."
614
+ msgstr ""
615
+
616
+ #: ../metaboxes.php:546
617
+ msgid "If Cyclone Slider"
618
+ msgstr ""
619
+
620
+ #: ../metaboxes.php:547
621
+ msgid ""
622
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
623
+ msgstr ""
624
+
625
+ #: ../metaboxes.php:559
626
+ msgid ""
627
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
628
+ "does not apply to Carousel slider)"
629
+ msgstr ""
630
+
631
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
632
+ msgid "If Video Post"
633
+ msgstr ""
634
+
635
+ #: ../metaboxes.php:573 ../metaboxes.php:996
636
+ msgid "Contact Page Options"
637
+ msgstr ""
638
+
639
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
640
+ msgid "Use Contact Form"
641
+ msgstr ""
642
+
643
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
644
+ msgid "Contact Form Title"
645
+ msgstr ""
646
+
647
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
648
+ msgid "ex. Send us an Email"
649
+ msgstr ""
650
+
651
+ #: ../metaboxes.php:598
652
+ msgid "Contact Form Email Recipient"
653
+ msgstr ""
654
+
655
+ #: ../metaboxes.php:599
656
+ msgid "ex. joe@gmail.com"
657
+ msgstr ""
658
+
659
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
660
+ msgid "Use Simple Math Question"
661
+ msgstr ""
662
+
663
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
664
+ msgid "Use Map"
665
+ msgstr ""
666
+
667
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
668
+ msgid "Address"
669
+ msgstr ""
670
+
671
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
672
+ msgid "Enter your Location"
673
+ msgstr ""
674
+
675
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
676
+ msgid "Map Type"
677
+ msgstr ""
678
+
679
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
680
+ msgid "ROADMAP"
681
+ msgstr ""
682
+
683
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
684
+ msgid "HYBRID"
685
+ msgstr ""
686
+
687
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
688
+ msgid "TERRAIN"
689
+ msgstr ""
690
+
691
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
692
+ msgid "SATELLITE"
693
+ msgstr ""
694
+
695
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
696
+ msgid "Map Zoom Level"
697
+ msgstr ""
698
+
699
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
700
+ msgid "A good place to start is 15"
701
+ msgstr ""
702
+
703
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
704
+ msgid "1 (World View)"
705
+ msgstr ""
706
+
707
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
708
+ msgid "21 (Street View)"
709
+ msgstr ""
710
+
711
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
712
+ msgid "Map Height"
713
+ msgstr ""
714
+
715
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
716
+ msgid "Default is 300"
717
+ msgstr ""
718
+
719
+ #: ../metaboxes.php:693
720
+ msgid "Post Video Box"
721
+ msgstr ""
722
+
723
+ #: ../metaboxes.php:723
724
+ msgid "Beside"
725
+ msgstr ""
726
+
727
+ #: ../metaboxes.php:735 ../metaboxes.php:959
728
+ msgid "Image Slider"
729
+ msgstr ""
730
+
731
+ #: ../metaboxes.php:743
732
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
733
+ msgstr ""
734
+
735
+ #: ../metaboxes.php:749
736
+ msgid ""
737
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
738
+ "just input number, example: 650)</b>"
739
+ msgstr ""
740
+
741
+ #: ../metaboxes.php:754
742
+ msgid "Auto Play Slider?"
743
+ msgstr ""
744
+
745
+ #: ../metaboxes.php:830
746
+ msgid "Similar Portfolio Item Carousel"
747
+ msgstr ""
748
+
749
+ #: ../metaboxes.php:831
750
+ msgid "Display a carousel with similar portfolio items below project?"
751
+ msgstr ""
752
+
753
+ #: ../metaboxes.php:836
754
+ msgid "Yes - Display Recent Projects"
755
+ msgstr ""
756
+
757
+ #: ../metaboxes.php:912
758
+ msgid "Set image height"
759
+ msgstr ""
760
+
761
+ #: ../metaboxes.php:913
762
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
763
+ msgstr ""
764
+
765
+ #: ../metaboxes.php:932
766
+ msgid "Add Lightbox link in the top right of each item"
767
+ msgstr ""
768
+
769
+ #: ../metaboxes.php:954
770
+ msgid "Feature Options"
771
+ msgstr ""
772
+
773
+ #: ../metaboxes.php:955
774
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
775
+ msgstr ""
776
+
777
+ #: ../metaboxes.php:966
778
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
779
+ msgstr ""
780
+
781
+ #: ../metaboxes.php:972
782
+ msgid ""
783
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
784
+ "to Carousel slider)</b>"
785
+ msgstr ""
786
+
787
+ #: ../metaboxes.php:977
788
+ msgid "Use Lightbox for Feature Image"
789
+ msgstr ""
790
+
791
+ #: ../metaboxes.php:978
792
+ msgid ""
793
+ "If feature option is set to image, choose to use lightbox link with image."
794
+ msgstr ""
795
+
796
+ #: ../metaboxes.php:1105
797
+ msgid "Slider Gallery"
798
+ msgstr ""
799
+
800
+ #: ../page-contact.php:12 ../template-contact.php:7
801
+ msgid "This field is required."
802
+ msgstr ""
803
+
804
+ #: ../page-contact.php:13 ../template-contact.php:8
805
+ msgid "Please enter a valid email address."
806
+ msgstr ""
807
+
808
+ #: ../page-contact.php:96 ../template-contact.php:95
809
+ msgid "Check your math."
810
+ msgstr ""
811
+
812
+ #: ../page-contact.php:101 ../template-contact.php:100
813
+ msgid "Please enter your name."
814
+ msgstr ""
815
+
816
+ #: ../page-contact.php:108 ../template-contact.php:107
817
+ msgid "Please enter your email address."
818
+ msgstr ""
819
+
820
+ #: ../page-contact.php:111 ../template-contact.php:110
821
+ msgid "You entered an invalid email address."
822
+ msgstr ""
823
+
824
+ #: ../page-contact.php:118 ../template-contact.php:117
825
+ msgid "Please enter a message."
826
+ msgstr ""
827
+
828
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
829
+ #: ../template-contact.php:134
830
+ msgid "Contact"
831
+ msgstr ""
832
+
833
+ #: ../page-contact.php:135 ../template-contact.php:134
834
+ msgid "From"
835
+ msgstr ""
836
+
837
+ #: ../page-contact.php:136 ../template-contact.php:135
838
+ msgid "Name"
839
+ msgstr ""
840
+
841
+ #: ../page-contact.php:137 ../template-contact.php:136
842
+ msgid "Email"
843
+ msgstr ""
844
+
845
+ #: ../page-contact.php:138 ../template-contact.php:137
846
+ msgid "Comments"
847
+ msgstr ""
848
+
849
+ #: ../page-contact.php:176 ../template-contact.php:173
850
+ msgid "Thanks, your email was sent successfully."
851
+ msgstr ""
852
+
853
+ #: ../page-contact.php:181 ../template-contact.php:177
854
+ msgid "Sorry, an error occured."
855
+ msgstr ""
856
+
857
+ #: ../page-contact.php:187 ../template-contact.php:183
858
+ msgid "Name:"
859
+ msgstr ""
860
+
861
+ #: ../page-contact.php:195
862
+ msgid "Email: "
863
+ msgstr ""
864
+
865
+ #: ../page-contact.php:203
866
+ msgid "Message: "
867
+ msgstr ""
868
+
869
+ #: ../page-contact.php:223 ../template-contact.php:218
870
+ msgid "Send Email"
871
+ msgstr ""
872
+
873
+ #: ../post-types.php:5 ../post-types.php:17
874
+ msgid "Portfolio"
875
+ msgstr ""
876
+
877
+ #: ../post-types.php:6
878
+ msgid "Portfolio Item"
879
+ msgstr ""
880
+
881
+ #: ../post-types.php:7
882
+ msgid "Add New"
883
+ msgstr ""
884
+
885
+ #: ../post-types.php:8
886
+ msgid "Add New Portfolio Item"
887
+ msgstr ""
888
+
889
+ #: ../post-types.php:9
890
+ msgid "Edit Portfolio Item"
891
+ msgstr ""
892
+
893
+ #: ../post-types.php:10
894
+ msgid "New Portfolio Item"
895
+ msgstr ""
896
+
897
+ #: ../post-types.php:11
898
+ msgid "All Portfolio"
899
+ msgstr ""
900
+
901
+ #: ../post-types.php:12
902
+ msgid "View Portfolio Item"
903
+ msgstr ""
904
+
905
+ #: ../post-types.php:13
906
+ msgid "Search Portfolio"
907
+ msgstr ""
908
+
909
+ #: ../post-types.php:14
910
+ msgid "No Portfolio Item found"
911
+ msgstr ""
912
+
913
+ #: ../post-types.php:15
914
+ msgid "No Portfolio Items found in Trash"
915
+ msgstr ""
916
+
917
+ #: ../post-types.php:37
918
+ msgid "Portfolio Type"
919
+ msgstr ""
920
+
921
+ #: ../post-types.php:38
922
+ msgid "Type"
923
+ msgstr ""
924
+
925
+ #: ../post-types.php:39
926
+ msgid "Search Type"
927
+ msgstr ""
928
+
929
+ #: ../post-types.php:40
930
+ msgid "All Type"
931
+ msgstr ""
932
+
933
+ #: ../post-types.php:41
934
+ msgid "Parent Type"
935
+ msgstr ""
936
+
937
+ #: ../post-types.php:42
938
+ msgid "Parent Type:"
939
+ msgstr ""
940
+
941
+ #: ../post-types.php:43
942
+ msgid "Edit Type"
943
+ msgstr ""
944
+
945
+ #: ../post-types.php:44
946
+ msgid "Update Type"
947
+ msgstr ""
948
+
949
+ #: ../post-types.php:45
950
+ msgid "Add New Type"
951
+ msgstr ""
952
+
953
+ #: ../post-types.php:46
954
+ msgid "New Type Name"
955
+ msgstr ""
956
+
957
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
958
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
959
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
960
+ msgid "You are not allowed to be here"
961
+ msgstr ""
962
+
963
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
964
+ #: ../shortcodes.php:178
965
+ msgid "please specify correct url"
966
+ msgstr ""
967
+
968
+ #: ../shortcodes/accordion/accordion_popup.php:10
969
+ msgid "Insert Accordion or Tabs"
970
+ msgstr ""
971
+
972
+ #: ../shortcodes/accordion/accordion_popup.php:59
973
+ msgid "Accordion or Tabs"
974
+ msgstr ""
975
+
976
+ #: ../shortcodes/accordion/accordion_popup.php:61
977
+ msgid "Accordion"
978
+ msgstr ""
979
+
980
+ #: ../shortcodes/accordion/accordion_popup.php:62
981
+ msgid "Tabs"
982
+ msgstr ""
983
+
984
+ #: ../shortcodes/accordion/accordion_popup.php:66
985
+ #: ../shortcodes/btns/btns_popup.php:230
986
+ #: ../shortcodes/divider/divider_popup.php:80
987
+ #: ../shortcodes/pullquote/quote_popup.php:77
988
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
989
+ #: ../shortcodes/youtube/youtube_popup.php:85
990
+ msgid "Insert"
991
+ msgstr ""
992
+
993
+ #: ../shortcodes/btns/btns_popup.php:10
994
+ msgid "Insert Button"
995
+ msgstr ""
996
+
997
+ #: ../shortcodes/btns/btns_popup.php:99
998
+ msgid "Button Text"
999
+ msgstr ""
1000
+
1001
+ #: ../shortcodes/btns/btns_popup.php:105
1002
+ msgid "Text Color"
1003
+ msgstr ""
1004
+
1005
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1006
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1007
+ msgid "White"
1008
+ msgstr ""
1009
+
1010
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1011
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1012
+ msgid "Off-White"
1013
+ msgstr ""
1014
+
1015
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1016
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1017
+ msgid "Black"
1018
+ msgstr ""
1019
+
1020
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1021
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1022
+ msgid "Light-Gray"
1023
+ msgstr ""
1024
+
1025
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1026
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1027
+ msgid "Gray"
1028
+ msgstr ""
1029
+
1030
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1031
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1032
+ msgid "Dark-Gray"
1033
+ msgstr ""
1034
+
1035
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1036
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1037
+ msgid "Silver"
1038
+ msgstr ""
1039
+
1040
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1041
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1042
+ msgid "Red"
1043
+ msgstr ""
1044
+
1045
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1046
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1047
+ msgid "Blue"
1048
+ msgstr ""
1049
+
1050
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1051
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1052
+ msgid "Green"
1053
+ msgstr ""
1054
+
1055
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1056
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1057
+ msgid "Yellow"
1058
+ msgstr ""
1059
+
1060
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1061
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1062
+ msgid "Orange"
1063
+ msgstr ""
1064
+
1065
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1066
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1067
+ msgid "Pink"
1068
+ msgstr ""
1069
+
1070
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1071
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1072
+ msgid "Purple"
1073
+ msgstr ""
1074
+
1075
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1076
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1077
+ msgid "Brown"
1078
+ msgstr ""
1079
+
1080
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1081
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1082
+ msgid "Maroon"
1083
+ msgstr ""
1084
+
1085
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1086
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1087
+ msgid "Or Type Hex Color"
1088
+ msgstr ""
1089
+
1090
+ #: ../shortcodes/btns/btns_popup.php:132
1091
+ msgid "Button Color"
1092
+ msgstr ""
1093
+
1094
+ #: ../shortcodes/btns/btns_popup.php:161
1095
+ msgid "Text Hover Color"
1096
+ msgstr ""
1097
+
1098
+ #: ../shortcodes/btns/btns_popup.php:188
1099
+ msgid "Button Background Hover Color"
1100
+ msgstr ""
1101
+
1102
+ #: ../shortcodes/btns/btns_popup.php:190
1103
+ msgid "30% Primary Color"
1104
+ msgstr ""
1105
+
1106
+ #: ../shortcodes/btns/btns_popup.php:216
1107
+ msgid "Button Link"
1108
+ msgstr ""
1109
+
1110
+ #: ../shortcodes/btns/btns_popup.php:222
1111
+ msgid "Button Link Target"
1112
+ msgstr ""
1113
+
1114
+ #: ../shortcodes/btns/btns_popup.php:224
1115
+ msgid "Same Window"
1116
+ msgstr ""
1117
+
1118
+ #: ../shortcodes/btns/btns_popup.php:225
1119
+ msgid "New Window/Tab"
1120
+ msgstr ""
1121
+
1122
+ #: ../shortcodes/columns/columns_popup.php:10
1123
+ msgid "Insert Columns"
1124
+ msgstr ""
1125
+
1126
+ #: ../shortcodes/divider/divider_popup.php:10
1127
+ msgid "Insert Divider"
1128
+ msgstr ""
1129
+
1130
+ #: ../shortcodes/divider/divider_popup.php:70
1131
+ msgid "Choose a Divider"
1132
+ msgstr ""
1133
+
1134
+ #: ../shortcodes/divider/divider_popup.php:72
1135
+ msgid "Line"
1136
+ msgstr ""
1137
+
1138
+ #: ../shortcodes/divider/divider_popup.php:73
1139
+ msgid "Padding Small"
1140
+ msgstr ""
1141
+
1142
+ #: ../shortcodes/divider/divider_popup.php:74
1143
+ msgid "Padding Medium"
1144
+ msgstr ""
1145
+
1146
+ #: ../shortcodes/divider/divider_popup.php:75
1147
+ msgid "Padding Large"
1148
+ msgstr ""
1149
+
1150
+ #: ../shortcodes/icons/icon_popup.php:10
1151
+ msgid "Insert Icon"
1152
+ msgstr ""
1153
+
1154
+ #: ../shortcodes/pullquote/quote_popup.php:10
1155
+ msgid "Insert Styled Quote"
1156
+ msgstr ""
1157
+
1158
+ #: ../shortcodes/pullquote/quote_popup.php:61
1159
+ msgid "Pull-Quote"
1160
+ msgstr ""
1161
+
1162
+ #: ../shortcodes/pullquote/quote_popup.php:62
1163
+ msgid "Block-Quote"
1164
+ msgstr ""
1165
+
1166
+ #: ../shortcodes/pullquote/quote_popup.php:68
1167
+ msgid "Align"
1168
+ msgstr ""
1169
+
1170
+ #: ../shortcodes/pullquote/quote_popup.php:70
1171
+ msgid "Center"
1172
+ msgstr ""
1173
+
1174
+ #: ../shortcodes/pullquote/quote_popup.php:71
1175
+ msgid "Left"
1176
+ msgstr ""
1177
+
1178
+ #: ../shortcodes/pullquote/quote_popup.php:72
1179
+ msgid "Right"
1180
+ msgstr ""
1181
+
1182
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1183
+ msgid "Insert Vimeo Video"
1184
+ msgstr ""
1185
+
1186
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1187
+ msgid "Vimeo Link"
1188
+ msgstr ""
1189
+
1190
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1191
+ #: ../shortcodes/youtube/youtube_popup.php:70
1192
+ msgid "Width"
1193
+ msgstr ""
1194
+
1195
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1196
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1197
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1198
+ #: ../shortcodes/youtube/youtube_popup.php:72
1199
+ #: ../shortcodes/youtube/youtube_popup.php:77
1200
+ #: ../shortcodes/youtube/youtube_popup.php:82
1201
+ msgid "note just use number"
1202
+ msgstr ""
1203
+
1204
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1205
+ #: ../shortcodes/youtube/youtube_popup.php:75
1206
+ msgid "Height"
1207
+ msgstr ""
1208
+
1209
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1210
+ #: ../shortcodes/youtube/youtube_popup.php:80
1211
+ msgid "(Optional) Max Width"
1212
+ msgstr ""
1213
+
1214
+ #: ../shortcodes/youtube/youtube_popup.php:10
1215
+ msgid "Insert YouTube Video"
1216
+ msgstr ""
1217
+
1218
+ #: ../shortcodes/youtube/youtube_popup.php:66
1219
+ msgid "YouTube Link"
1220
+ msgstr ""
1221
+
1222
+ #: ../template-contact.php:193
1223
+ msgid "Email:"
1224
+ msgstr ""
1225
+
1226
+ #: ../template-contact.php:200
1227
+ msgid "Message:"
1228
+ msgstr ""
languages/kadence_toolkit.pot ADDED
@@ -0,0 +1,1228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "POT-Creation-Date: 2015-01-10 00:32-0700\n"
5
+ "PO-Revision-Date: 2015-01-10 00:32-0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Kadence Themes\n"
8
+ "Language: en\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.10\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
19
+ msgid "Please Try Again"
20
+ msgstr ""
21
+
22
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
23
+ msgid "Remove Embed"
24
+ msgstr ""
25
+
26
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
27
+ #, php-format
28
+ msgid "No oEmbed Results Found for %s. View more info at"
29
+ msgstr ""
30
+
31
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
32
+ msgid "Add Group"
33
+ msgstr ""
34
+
35
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
36
+ msgid "Remove Group"
37
+ msgstr ""
38
+
39
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
40
+ msgid "Add Row"
41
+ msgstr ""
42
+
43
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
44
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
45
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
46
+ msgid "Remove"
47
+ msgstr ""
48
+
49
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
50
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
51
+ msgid "No terms"
52
+ msgstr ""
53
+
54
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
55
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
56
+ msgid "Add or Upload File"
57
+ msgstr ""
58
+
59
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
60
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
61
+ msgid "Remove Image"
62
+ msgstr ""
63
+
64
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
65
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
66
+ msgid "File:"
67
+ msgstr ""
68
+
69
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
70
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
71
+ msgid "Download"
72
+ msgstr ""
73
+
74
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
75
+ msgid "Clear"
76
+ msgstr ""
77
+
78
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
79
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
80
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
81
+ #: ../metaboxes.php:489
82
+ msgid "Default"
83
+ msgstr ""
84
+
85
+ #: ../cmb/init.php:260
86
+ msgid "Select Color"
87
+ msgstr ""
88
+
89
+ #: ../cmb/init.php:261
90
+ msgid "Current Color"
91
+ msgstr ""
92
+
93
+ #: ../cmb/init.php:288
94
+ msgid "Select / Deselect All"
95
+ msgstr ""
96
+
97
+ #: ../cmb/init.php:1178
98
+ msgid "Save"
99
+ msgstr ""
100
+
101
+ #: ../metaboxes.php:17
102
+ msgid "Add/Edit Gallery"
103
+ msgstr ""
104
+
105
+ #: ../metaboxes.php:18
106
+ msgid "Clear Gallery"
107
+ msgstr ""
108
+
109
+ #: ../metaboxes.php:44
110
+ msgid "Page Title and Subtitle"
111
+ msgstr ""
112
+
113
+ #: ../metaboxes.php:51 ../metaboxes.php:95
114
+ msgid "Subtitle"
115
+ msgstr ""
116
+
117
+ #: ../metaboxes.php:52
118
+ msgid "Subtitle will go below page title"
119
+ msgstr ""
120
+
121
+ #: ../metaboxes.php:57 ../metaboxes.php:101
122
+ msgid "Hide Page Title"
123
+ msgstr ""
124
+
125
+ #: ../metaboxes.php:63 ../metaboxes.php:107
126
+ msgid "Show"
127
+ msgstr ""
128
+
129
+ #: ../metaboxes.php:64 ../metaboxes.php:108
130
+ msgid "Hide"
131
+ msgstr ""
132
+
133
+ #: ../metaboxes.php:68 ../metaboxes.php:112
134
+ msgid "Page Title background behind Header"
135
+ msgstr ""
136
+
137
+ #: ../metaboxes.php:74 ../metaboxes.php:118
138
+ msgid "Place behind Header"
139
+ msgstr ""
140
+
141
+ #: ../metaboxes.php:75 ../metaboxes.php:119
142
+ msgid "Don't place behind Header"
143
+ msgstr ""
144
+
145
+ #: ../metaboxes.php:82
146
+ msgid "Post Title and Subtitle"
147
+ msgstr ""
148
+
149
+ #: ../metaboxes.php:89 ../metaboxes.php:90
150
+ msgid "Post Header Title"
151
+ msgstr ""
152
+
153
+ #: ../metaboxes.php:96
154
+ msgid "Subtitle will go below post title"
155
+ msgstr ""
156
+
157
+ #: ../metaboxes.php:126
158
+ msgid "Gallery Post Options"
159
+ msgstr ""
160
+
161
+ #: ../metaboxes.php:135 ../metaboxes.php:190
162
+ msgid "Post Head Content"
163
+ msgstr ""
164
+
165
+ #: ../metaboxes.php:140 ../metaboxes.php:170
166
+ msgid "Gallery Post Default"
167
+ msgstr ""
168
+
169
+ #: ../metaboxes.php:141
170
+ msgid "Image Slider - (Flex Slider)"
171
+ msgstr ""
172
+
173
+ #: ../metaboxes.php:142
174
+ msgid "Carousel Slider - (Caroufedsel Slider)"
175
+ msgstr ""
176
+
177
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
178
+ #: ../metaboxes.php:738
179
+ msgid "None"
180
+ msgstr ""
181
+
182
+ #: ../metaboxes.php:147
183
+ msgid "Post Slider Gallery"
184
+ msgstr ""
185
+
186
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
187
+ msgid "Add images for gallery here"
188
+ msgstr ""
189
+
190
+ #: ../metaboxes.php:153
191
+ msgid "Max Slider Height"
192
+ msgstr ""
193
+
194
+ #: ../metaboxes.php:154 ../metaboxes.php:553
195
+ msgid "Default is: 400 (Note: just input number, example: 350)"
196
+ msgstr ""
197
+
198
+ #: ../metaboxes.php:159
199
+ msgid "Max Slider Width"
200
+ msgstr ""
201
+
202
+ #: ../metaboxes.php:160
203
+ msgid ""
204
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
205
+ "example: 650, only applys to Image Slider)"
206
+ msgstr ""
207
+
208
+ #: ../metaboxes.php:165 ../metaboxes.php:213
209
+ msgid "Post Summary"
210
+ msgstr ""
211
+
212
+ #: ../metaboxes.php:171 ../metaboxes.php:220
213
+ msgid "Portrait Image (feature image)"
214
+ msgstr ""
215
+
216
+ #: ../metaboxes.php:172 ../metaboxes.php:221
217
+ msgid "Landscape Image (feature image)"
218
+ msgstr ""
219
+
220
+ #: ../metaboxes.php:173
221
+ msgid "Portrait Image Slider"
222
+ msgstr ""
223
+
224
+ #: ../metaboxes.php:174
225
+ msgid "Landscape Image Slider"
226
+ msgstr ""
227
+
228
+ #: ../metaboxes.php:181
229
+ msgid "Video Post Options"
230
+ msgstr ""
231
+
232
+ #: ../metaboxes.php:195 ../metaboxes.php:218
233
+ msgid "Video Post Default"
234
+ msgstr ""
235
+
236
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
237
+ #: ../metaboxes.php:737 ../metaboxes.php:960
238
+ msgid "Video"
239
+ msgstr ""
240
+
241
+ #: ../metaboxes.php:201
242
+ msgid "Video Post embed code"
243
+ msgstr ""
244
+
245
+ #: ../metaboxes.php:202
246
+ msgid ""
247
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
248
+ "for screen shot)"
249
+ msgstr ""
250
+
251
+ #: ../metaboxes.php:207
252
+ msgid "Max Video Width"
253
+ msgstr ""
254
+
255
+ #: ../metaboxes.php:208
256
+ msgid ""
257
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
258
+ "example: 650, does not apply to carousel slider)"
259
+ msgstr ""
260
+
261
+ #: ../metaboxes.php:219
262
+ msgid "Video - (when possible)"
263
+ msgstr ""
264
+
265
+ #: ../metaboxes.php:228 ../metaboxes.php:710
266
+ msgid "Portfolio Post Options"
267
+ msgstr ""
268
+
269
+ #: ../metaboxes.php:236 ../metaboxes.php:718
270
+ msgid "Project Layout"
271
+ msgstr ""
272
+
273
+ #: ../metaboxes.php:241
274
+ msgid "Beside 40%"
275
+ msgstr ""
276
+
277
+ #: ../metaboxes.php:242
278
+ msgid "Beside 33%"
279
+ msgstr ""
280
+
281
+ #: ../metaboxes.php:243 ../metaboxes.php:724
282
+ msgid "Above"
283
+ msgstr ""
284
+
285
+ #: ../metaboxes.php:244 ../metaboxes.php:725
286
+ msgid "Three Rows"
287
+ msgstr ""
288
+
289
+ #: ../metaboxes.php:248 ../metaboxes.php:729
290
+ msgid "Project Options"
291
+ msgstr ""
292
+
293
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
294
+ msgid "Image"
295
+ msgstr ""
296
+
297
+ #: ../metaboxes.php:254 ../metaboxes.php:534
298
+ msgid "Image Slider (Flex Slider)"
299
+ msgstr ""
300
+
301
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
302
+ msgid "Carousel Slider"
303
+ msgstr ""
304
+
305
+ #: ../metaboxes.php:261
306
+ msgid "Portfolio Slider/Images"
307
+ msgstr ""
308
+
309
+ #: ../metaboxes.php:262
310
+ msgid "Add images for post here"
311
+ msgstr ""
312
+
313
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
314
+ #: ../metaboxes.php:965
315
+ msgid "Max Image/Slider Height"
316
+ msgstr ""
317
+
318
+ #: ../metaboxes.php:268
319
+ msgid "Default is: 450 (Note: just input number, example: 350)"
320
+ msgstr ""
321
+
322
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
323
+ #: ../metaboxes.php:971
324
+ msgid "Max Image/Slider Width"
325
+ msgstr ""
326
+
327
+ #: ../metaboxes.php:274
328
+ msgid ""
329
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
330
+ "number, example: 650)"
331
+ msgstr ""
332
+
333
+ #: ../metaboxes.php:279 ../metaboxes.php:764
334
+ msgid "Value 01 Title"
335
+ msgstr ""
336
+
337
+ #: ../metaboxes.php:280 ../metaboxes.php:765
338
+ msgid "ex. Project Type:"
339
+ msgstr ""
340
+
341
+ #: ../metaboxes.php:285 ../metaboxes.php:770
342
+ msgid "Value 01 Description"
343
+ msgstr ""
344
+
345
+ #: ../metaboxes.php:286 ../metaboxes.php:771
346
+ msgid "ex. Character Illustration"
347
+ msgstr ""
348
+
349
+ #: ../metaboxes.php:291 ../metaboxes.php:776
350
+ msgid "Value 02 Title"
351
+ msgstr ""
352
+
353
+ #: ../metaboxes.php:292 ../metaboxes.php:777
354
+ msgid "ex. Skills Needed:"
355
+ msgstr ""
356
+
357
+ #: ../metaboxes.php:297 ../metaboxes.php:782
358
+ msgid "Value 02 Description"
359
+ msgstr ""
360
+
361
+ #: ../metaboxes.php:298 ../metaboxes.php:783
362
+ msgid "ex. Photoshop, Illustrator"
363
+ msgstr ""
364
+
365
+ #: ../metaboxes.php:303 ../metaboxes.php:788
366
+ msgid "Value 03 Title"
367
+ msgstr ""
368
+
369
+ #: ../metaboxes.php:304 ../metaboxes.php:789
370
+ msgid "ex. Customer:"
371
+ msgstr ""
372
+
373
+ #: ../metaboxes.php:309 ../metaboxes.php:794
374
+ msgid "Value 03 Description"
375
+ msgstr ""
376
+
377
+ #: ../metaboxes.php:310 ../metaboxes.php:795
378
+ msgid "ex. Example Inc"
379
+ msgstr ""
380
+
381
+ #: ../metaboxes.php:315 ../metaboxes.php:800
382
+ msgid "Value 04 Title"
383
+ msgstr ""
384
+
385
+ #: ../metaboxes.php:316 ../metaboxes.php:801
386
+ msgid "ex. Project Year:"
387
+ msgstr ""
388
+
389
+ #: ../metaboxes.php:321 ../metaboxes.php:806
390
+ msgid "Value 04 Description"
391
+ msgstr ""
392
+
393
+ #: ../metaboxes.php:322 ../metaboxes.php:807
394
+ msgid "ex. 2013"
395
+ msgstr ""
396
+
397
+ #: ../metaboxes.php:327 ../metaboxes.php:812
398
+ msgid "External Website"
399
+ msgstr ""
400
+
401
+ #: ../metaboxes.php:328 ../metaboxes.php:813
402
+ msgid "ex. Website:"
403
+ msgstr ""
404
+
405
+ #: ../metaboxes.php:333 ../metaboxes.php:818
406
+ msgid "Website Address"
407
+ msgstr ""
408
+
409
+ #: ../metaboxes.php:334 ../metaboxes.php:819
410
+ msgid "ex. http://www.example.com"
411
+ msgstr ""
412
+
413
+ #: ../metaboxes.php:339 ../metaboxes.php:824
414
+ msgid "If Video Project"
415
+ msgstr ""
416
+
417
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
418
+ #: ../metaboxes.php:825 ../metaboxes.php:988
419
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
420
+ msgstr ""
421
+
422
+ #: ../metaboxes.php:349
423
+ msgid "Bottom Carousel Options"
424
+ msgstr ""
425
+
426
+ #: ../metaboxes.php:356 ../metaboxes.php:840
427
+ msgid "Carousel Title"
428
+ msgstr ""
429
+
430
+ #: ../metaboxes.php:357 ../metaboxes.php:841
431
+ msgid "ex. Similar Projects"
432
+ msgstr ""
433
+
434
+ #: ../metaboxes.php:362
435
+ msgid "Bottom Portfolio Carousel"
436
+ msgstr ""
437
+
438
+ #: ../metaboxes.php:363
439
+ msgid "Display a carousel with portfolio items below project?"
440
+ msgstr ""
441
+
442
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
443
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
444
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
445
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
446
+ msgid "No"
447
+ msgstr ""
448
+
449
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
450
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
451
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
452
+ #: ../metaboxes.php:1037
453
+ msgid "Yes"
454
+ msgstr ""
455
+
456
+ #: ../metaboxes.php:373
457
+ msgid "Carousel Items"
458
+ msgstr ""
459
+
460
+ #: ../metaboxes.php:379
461
+ msgid "All Portfolio Posts"
462
+ msgstr ""
463
+
464
+ #: ../metaboxes.php:380
465
+ msgid "Only of same Portfolio Type"
466
+ msgstr ""
467
+
468
+ #: ../metaboxes.php:384
469
+ msgid "Carousel Order"
470
+ msgstr ""
471
+
472
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
473
+ msgid "Menu Order"
474
+ msgstr ""
475
+
476
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
477
+ msgid "Title"
478
+ msgstr ""
479
+
480
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
481
+ msgid "Date"
482
+ msgstr ""
483
+
484
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
485
+ msgid "Random"
486
+ msgstr ""
487
+
488
+ #: ../metaboxes.php:400 ../metaboxes.php:850
489
+ msgid "Portfolio Page Options"
490
+ msgstr ""
491
+
492
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
493
+ msgid "Style"
494
+ msgstr ""
495
+
496
+ #: ../metaboxes.php:414
497
+ msgid "Post Boxes"
498
+ msgstr ""
499
+
500
+ #: ../metaboxes.php:415
501
+ msgid "Flat with Margin"
502
+ msgstr ""
503
+
504
+ #: ../metaboxes.php:419
505
+ msgid "Hover Style"
506
+ msgstr ""
507
+
508
+ #: ../metaboxes.php:425
509
+ msgid "Light"
510
+ msgstr ""
511
+
512
+ #: ../metaboxes.php:426
513
+ msgid "Dark"
514
+ msgstr ""
515
+
516
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
517
+ msgid "Primary Color"
518
+ msgstr ""
519
+
520
+ #: ../metaboxes.php:431 ../metaboxes.php:859
521
+ msgid "Columns"
522
+ msgstr ""
523
+
524
+ #: ../metaboxes.php:436 ../metaboxes.php:864
525
+ msgid "Four Column"
526
+ msgstr ""
527
+
528
+ #: ../metaboxes.php:437 ../metaboxes.php:865
529
+ msgid "Three Column"
530
+ msgstr ""
531
+
532
+ #: ../metaboxes.php:438 ../metaboxes.php:866
533
+ msgid "Two Column"
534
+ msgstr ""
535
+
536
+ #: ../metaboxes.php:439
537
+ msgid "Five Column"
538
+ msgstr ""
539
+
540
+ #: ../metaboxes.php:443 ../metaboxes.php:870
541
+ msgid "Portfolio Work Types"
542
+ msgstr ""
543
+
544
+ #: ../metaboxes.php:449 ../metaboxes.php:877
545
+ msgid "Order Items By"
546
+ msgstr ""
547
+
548
+ #: ../metaboxes.php:461 ../metaboxes.php:889
549
+ msgid "Items per Page"
550
+ msgstr ""
551
+
552
+ #: ../metaboxes.php:462 ../metaboxes.php:890
553
+ msgid "How many portfolio items per page"
554
+ msgstr ""
555
+
556
+ #: ../metaboxes.php:466 ../metaboxes.php:894
557
+ msgid "All"
558
+ msgstr ""
559
+
560
+ #: ../metaboxes.php:484
561
+ msgid "Image Ratio?"
562
+ msgstr ""
563
+
564
+ #: ../metaboxes.php:490
565
+ msgid "Square 1:1"
566
+ msgstr ""
567
+
568
+ #: ../metaboxes.php:491
569
+ msgid "Portrait 3:4"
570
+ msgstr ""
571
+
572
+ #: ../metaboxes.php:492
573
+ msgid "Landscape 4:3"
574
+ msgstr ""
575
+
576
+ #: ../metaboxes.php:493
577
+ msgid "Wide Landscape 4:2"
578
+ msgstr ""
579
+
580
+ #: ../metaboxes.php:497 ../metaboxes.php:918
581
+ msgid "Display Item Work Types"
582
+ msgstr ""
583
+
584
+ #: ../metaboxes.php:503 ../metaboxes.php:925
585
+ msgid "Display Item Excerpt"
586
+ msgstr ""
587
+
588
+ #: ../metaboxes.php:509
589
+ msgid "Add Lightbox link in each item"
590
+ msgstr ""
591
+
592
+ #: ../metaboxes.php:518 ../metaboxes.php:945
593
+ msgid "Feature Page Options"
594
+ msgstr ""
595
+
596
+ #: ../metaboxes.php:527
597
+ msgid "Header Options"
598
+ msgstr ""
599
+
600
+ #: ../metaboxes.php:528
601
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
602
+ msgstr ""
603
+
604
+ #: ../metaboxes.php:533
605
+ msgid "Page Title"
606
+ msgstr ""
607
+
608
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
609
+ msgid "Slider Images"
610
+ msgstr ""
611
+
612
+ #: ../metaboxes.php:541
613
+ msgid "Add for flex, carousel, and image carousel."
614
+ msgstr ""
615
+
616
+ #: ../metaboxes.php:546
617
+ msgid "If Cyclone Slider"
618
+ msgstr ""
619
+
620
+ #: ../metaboxes.php:547
621
+ msgid ""
622
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
623
+ msgstr ""
624
+
625
+ #: ../metaboxes.php:559
626
+ msgid ""
627
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
628
+ "does not apply to Carousel slider)"
629
+ msgstr ""
630
+
631
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
632
+ msgid "If Video Post"
633
+ msgstr ""
634
+
635
+ #: ../metaboxes.php:573 ../metaboxes.php:996
636
+ msgid "Contact Page Options"
637
+ msgstr ""
638
+
639
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
640
+ msgid "Use Contact Form"
641
+ msgstr ""
642
+
643
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
644
+ msgid "Contact Form Title"
645
+ msgstr ""
646
+
647
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
648
+ msgid "ex. Send us an Email"
649
+ msgstr ""
650
+
651
+ #: ../metaboxes.php:598
652
+ msgid "Contact Form Email Recipient"
653
+ msgstr ""
654
+
655
+ #: ../metaboxes.php:599
656
+ msgid "ex. joe@gmail.com"
657
+ msgstr ""
658
+
659
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
660
+ msgid "Use Simple Math Question"
661
+ msgstr ""
662
+
663
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
664
+ msgid "Use Map"
665
+ msgstr ""
666
+
667
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
668
+ msgid "Address"
669
+ msgstr ""
670
+
671
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
672
+ msgid "Enter your Location"
673
+ msgstr ""
674
+
675
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
676
+ msgid "Map Type"
677
+ msgstr ""
678
+
679
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
680
+ msgid "ROADMAP"
681
+ msgstr ""
682
+
683
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
684
+ msgid "HYBRID"
685
+ msgstr ""
686
+
687
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
688
+ msgid "TERRAIN"
689
+ msgstr ""
690
+
691
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
692
+ msgid "SATELLITE"
693
+ msgstr ""
694
+
695
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
696
+ msgid "Map Zoom Level"
697
+ msgstr ""
698
+
699
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
700
+ msgid "A good place to start is 15"
701
+ msgstr ""
702
+
703
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
704
+ msgid "1 (World View)"
705
+ msgstr ""
706
+
707
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
708
+ msgid "21 (Street View)"
709
+ msgstr ""
710
+
711
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
712
+ msgid "Map Height"
713
+ msgstr ""
714
+
715
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
716
+ msgid "Default is 300"
717
+ msgstr ""
718
+
719
+ #: ../metaboxes.php:693
720
+ msgid "Post Video Box"
721
+ msgstr ""
722
+
723
+ #: ../metaboxes.php:723
724
+ msgid "Beside"
725
+ msgstr ""
726
+
727
+ #: ../metaboxes.php:735 ../metaboxes.php:959
728
+ msgid "Image Slider"
729
+ msgstr ""
730
+
731
+ #: ../metaboxes.php:743
732
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
733
+ msgstr ""
734
+
735
+ #: ../metaboxes.php:749
736
+ msgid ""
737
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
738
+ "just input number, example: 650)</b>"
739
+ msgstr ""
740
+
741
+ #: ../metaboxes.php:754
742
+ msgid "Auto Play Slider?"
743
+ msgstr ""
744
+
745
+ #: ../metaboxes.php:830
746
+ msgid "Similar Portfolio Item Carousel"
747
+ msgstr ""
748
+
749
+ #: ../metaboxes.php:831
750
+ msgid "Display a carousel with similar portfolio items below project?"
751
+ msgstr ""
752
+
753
+ #: ../metaboxes.php:836
754
+ msgid "Yes - Display Recent Projects"
755
+ msgstr ""
756
+
757
+ #: ../metaboxes.php:912
758
+ msgid "Set image height"
759
+ msgstr ""
760
+
761
+ #: ../metaboxes.php:913
762
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
763
+ msgstr ""
764
+
765
+ #: ../metaboxes.php:932
766
+ msgid "Add Lightbox link in the top right of each item"
767
+ msgstr ""
768
+
769
+ #: ../metaboxes.php:954
770
+ msgid "Feature Options"
771
+ msgstr ""
772
+
773
+ #: ../metaboxes.php:955
774
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
775
+ msgstr ""
776
+
777
+ #: ../metaboxes.php:966
778
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
779
+ msgstr ""
780
+
781
+ #: ../metaboxes.php:972
782
+ msgid ""
783
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
784
+ "to Carousel slider)</b>"
785
+ msgstr ""
786
+
787
+ #: ../metaboxes.php:977
788
+ msgid "Use Lightbox for Feature Image"
789
+ msgstr ""
790
+
791
+ #: ../metaboxes.php:978
792
+ msgid ""
793
+ "If feature option is set to image, choose to use lightbox link with image."
794
+ msgstr ""
795
+
796
+ #: ../metaboxes.php:1105
797
+ msgid "Slider Gallery"
798
+ msgstr ""
799
+
800
+ #: ../page-contact.php:12 ../template-contact.php:7
801
+ msgid "This field is required."
802
+ msgstr ""
803
+
804
+ #: ../page-contact.php:13 ../template-contact.php:8
805
+ msgid "Please enter a valid email address."
806
+ msgstr ""
807
+
808
+ #: ../page-contact.php:96 ../template-contact.php:95
809
+ msgid "Check your math."
810
+ msgstr ""
811
+
812
+ #: ../page-contact.php:101 ../template-contact.php:100
813
+ msgid "Please enter your name."
814
+ msgstr ""
815
+
816
+ #: ../page-contact.php:108 ../template-contact.php:107
817
+ msgid "Please enter your email address."
818
+ msgstr ""
819
+
820
+ #: ../page-contact.php:111 ../template-contact.php:110
821
+ msgid "You entered an invalid email address."
822
+ msgstr ""
823
+
824
+ #: ../page-contact.php:118 ../template-contact.php:117
825
+ msgid "Please enter a message."
826
+ msgstr ""
827
+
828
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
829
+ #: ../template-contact.php:134
830
+ msgid "Contact"
831
+ msgstr ""
832
+
833
+ #: ../page-contact.php:135 ../template-contact.php:134
834
+ msgid "From"
835
+ msgstr ""
836
+
837
+ #: ../page-contact.php:136 ../template-contact.php:135
838
+ msgid "Name"
839
+ msgstr ""
840
+
841
+ #: ../page-contact.php:137 ../template-contact.php:136
842
+ msgid "Email"
843
+ msgstr ""
844
+
845
+ #: ../page-contact.php:138 ../template-contact.php:137
846
+ msgid "Comments"
847
+ msgstr ""
848
+
849
+ #: ../page-contact.php:176 ../template-contact.php:173
850
+ msgid "Thanks, your email was sent successfully."
851
+ msgstr ""
852
+
853
+ #: ../page-contact.php:181 ../template-contact.php:177
854
+ msgid "Sorry, an error occured."
855
+ msgstr ""
856
+
857
+ #: ../page-contact.php:187 ../template-contact.php:183
858
+ msgid "Name:"
859
+ msgstr ""
860
+
861
+ #: ../page-contact.php:195
862
+ msgid "Email: "
863
+ msgstr ""
864
+
865
+ #: ../page-contact.php:203
866
+ msgid "Message: "
867
+ msgstr ""
868
+
869
+ #: ../page-contact.php:223 ../template-contact.php:218
870
+ msgid "Send Email"
871
+ msgstr ""
872
+
873
+ #: ../post-types.php:5 ../post-types.php:17
874
+ msgid "Portfolio"
875
+ msgstr ""
876
+
877
+ #: ../post-types.php:6
878
+ msgid "Portfolio Item"
879
+ msgstr ""
880
+
881
+ #: ../post-types.php:7
882
+ msgid "Add New"
883
+ msgstr ""
884
+
885
+ #: ../post-types.php:8
886
+ msgid "Add New Portfolio Item"
887
+ msgstr ""
888
+
889
+ #: ../post-types.php:9
890
+ msgid "Edit Portfolio Item"
891
+ msgstr ""
892
+
893
+ #: ../post-types.php:10
894
+ msgid "New Portfolio Item"
895
+ msgstr ""
896
+
897
+ #: ../post-types.php:11
898
+ msgid "All Portfolio"
899
+ msgstr ""
900
+
901
+ #: ../post-types.php:12
902
+ msgid "View Portfolio Item"
903
+ msgstr ""
904
+
905
+ #: ../post-types.php:13
906
+ msgid "Search Portfolio"
907
+ msgstr ""
908
+
909
+ #: ../post-types.php:14
910
+ msgid "No Portfolio Item found"
911
+ msgstr ""
912
+
913
+ #: ../post-types.php:15
914
+ msgid "No Portfolio Items found in Trash"
915
+ msgstr ""
916
+
917
+ #: ../post-types.php:37
918
+ msgid "Portfolio Type"
919
+ msgstr ""
920
+
921
+ #: ../post-types.php:38
922
+ msgid "Type"
923
+ msgstr ""
924
+
925
+ #: ../post-types.php:39
926
+ msgid "Search Type"
927
+ msgstr ""
928
+
929
+ #: ../post-types.php:40
930
+ msgid "All Type"
931
+ msgstr ""
932
+
933
+ #: ../post-types.php:41
934
+ msgid "Parent Type"
935
+ msgstr ""
936
+
937
+ #: ../post-types.php:42
938
+ msgid "Parent Type:"
939
+ msgstr ""
940
+
941
+ #: ../post-types.php:43
942
+ msgid "Edit Type"
943
+ msgstr ""
944
+
945
+ #: ../post-types.php:44
946
+ msgid "Update Type"
947
+ msgstr ""
948
+
949
+ #: ../post-types.php:45
950
+ msgid "Add New Type"
951
+ msgstr ""
952
+
953
+ #: ../post-types.php:46
954
+ msgid "New Type Name"
955
+ msgstr ""
956
+
957
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
958
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
959
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
960
+ msgid "You are not allowed to be here"
961
+ msgstr ""
962
+
963
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
964
+ #: ../shortcodes.php:178
965
+ msgid "please specify correct url"
966
+ msgstr ""
967
+
968
+ #: ../shortcodes/accordion/accordion_popup.php:10
969
+ msgid "Insert Accordion or Tabs"
970
+ msgstr ""
971
+
972
+ #: ../shortcodes/accordion/accordion_popup.php:59
973
+ msgid "Accordion or Tabs"
974
+ msgstr ""
975
+
976
+ #: ../shortcodes/accordion/accordion_popup.php:61
977
+ msgid "Accordion"
978
+ msgstr ""
979
+
980
+ #: ../shortcodes/accordion/accordion_popup.php:62
981
+ msgid "Tabs"
982
+ msgstr ""
983
+
984
+ #: ../shortcodes/accordion/accordion_popup.php:66
985
+ #: ../shortcodes/btns/btns_popup.php:230
986
+ #: ../shortcodes/divider/divider_popup.php:80
987
+ #: ../shortcodes/pullquote/quote_popup.php:77
988
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
989
+ #: ../shortcodes/youtube/youtube_popup.php:85
990
+ msgid "Insert"
991
+ msgstr ""
992
+
993
+ #: ../shortcodes/btns/btns_popup.php:10
994
+ msgid "Insert Button"
995
+ msgstr ""
996
+
997
+ #: ../shortcodes/btns/btns_popup.php:99
998
+ msgid "Button Text"
999
+ msgstr ""
1000
+
1001
+ #: ../shortcodes/btns/btns_popup.php:105
1002
+ msgid "Text Color"
1003
+ msgstr ""
1004
+
1005
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1006
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1007
+ msgid "White"
1008
+ msgstr ""
1009
+
1010
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1011
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1012
+ msgid "Off-White"
1013
+ msgstr ""
1014
+
1015
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1016
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1017
+ msgid "Black"
1018
+ msgstr ""
1019
+
1020
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1021
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1022
+ msgid "Light-Gray"
1023
+ msgstr ""
1024
+
1025
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1026
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1027
+ msgid "Gray"
1028
+ msgstr ""
1029
+
1030
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1031
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1032
+ msgid "Dark-Gray"
1033
+ msgstr ""
1034
+
1035
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1036
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1037
+ msgid "Silver"
1038
+ msgstr ""
1039
+
1040
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1041
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1042
+ msgid "Red"
1043
+ msgstr ""
1044
+
1045
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1046
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1047
+ msgid "Blue"
1048
+ msgstr ""
1049
+
1050
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1051
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1052
+ msgid "Green"
1053
+ msgstr ""
1054
+
1055
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1056
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1057
+ msgid "Yellow"
1058
+ msgstr ""
1059
+
1060
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1061
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1062
+ msgid "Orange"
1063
+ msgstr ""
1064
+
1065
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1066
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1067
+ msgid "Pink"
1068
+ msgstr ""
1069
+
1070
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1071
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1072
+ msgid "Purple"
1073
+ msgstr ""
1074
+
1075
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1076
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1077
+ msgid "Brown"
1078
+ msgstr ""
1079
+
1080
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1081
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1082
+ msgid "Maroon"
1083
+ msgstr ""
1084
+
1085
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1086
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1087
+ msgid "Or Type Hex Color"
1088
+ msgstr ""
1089
+
1090
+ #: ../shortcodes/btns/btns_popup.php:132
1091
+ msgid "Button Color"
1092
+ msgstr ""
1093
+
1094
+ #: ../shortcodes/btns/btns_popup.php:161
1095
+ msgid "Text Hover Color"
1096
+ msgstr ""
1097
+
1098
+ #: ../shortcodes/btns/btns_popup.php:188
1099
+ msgid "Button Background Hover Color"
1100
+ msgstr ""
1101
+
1102
+ #: ../shortcodes/btns/btns_popup.php:190
1103
+ msgid "30% Primary Color"
1104
+ msgstr ""
1105
+
1106
+ #: ../shortcodes/btns/btns_popup.php:216
1107
+ msgid "Button Link"
1108
+ msgstr ""
1109
+
1110
+ #: ../shortcodes/btns/btns_popup.php:222
1111
+ msgid "Button Link Target"
1112
+ msgstr ""
1113
+
1114
+ #: ../shortcodes/btns/btns_popup.php:224
1115
+ msgid "Same Window"
1116
+ msgstr ""
1117
+
1118
+ #: ../shortcodes/btns/btns_popup.php:225
1119
+ msgid "New Window/Tab"
1120
+ msgstr ""
1121
+
1122
+ #: ../shortcodes/columns/columns_popup.php:10
1123
+ msgid "Insert Columns"
1124
+ msgstr ""
1125
+
1126
+ #: ../shortcodes/divider/divider_popup.php:10
1127
+ msgid "Insert Divider"
1128
+ msgstr ""
1129
+
1130
+ #: ../shortcodes/divider/divider_popup.php:70
1131
+ msgid "Choose a Divider"
1132
+ msgstr ""
1133
+
1134
+ #: ../shortcodes/divider/divider_popup.php:72
1135
+ msgid "Line"
1136
+ msgstr ""
1137
+
1138
+ #: ../shortcodes/divider/divider_popup.php:73
1139
+ msgid "Padding Small"
1140
+ msgstr ""
1141
+
1142
+ #: ../shortcodes/divider/divider_popup.php:74
1143
+ msgid "Padding Medium"
1144
+ msgstr ""
1145
+
1146
+ #: ../shortcodes/divider/divider_popup.php:75
1147
+ msgid "Padding Large"
1148
+ msgstr ""
1149
+
1150
+ #: ../shortcodes/icons/icon_popup.php:10
1151
+ msgid "Insert Icon"
1152
+ msgstr ""
1153
+
1154
+ #: ../shortcodes/pullquote/quote_popup.php:10
1155
+ msgid "Insert Styled Quote"
1156
+ msgstr ""
1157
+
1158
+ #: ../shortcodes/pullquote/quote_popup.php:61
1159
+ msgid "Pull-Quote"
1160
+ msgstr ""
1161
+
1162
+ #: ../shortcodes/pullquote/quote_popup.php:62
1163
+ msgid "Block-Quote"
1164
+ msgstr ""
1165
+
1166
+ #: ../shortcodes/pullquote/quote_popup.php:68
1167
+ msgid "Align"
1168
+ msgstr ""
1169
+
1170
+ #: ../shortcodes/pullquote/quote_popup.php:70
1171
+ msgid "Center"
1172
+ msgstr ""
1173
+
1174
+ #: ../shortcodes/pullquote/quote_popup.php:71
1175
+ msgid "Left"
1176
+ msgstr ""
1177
+
1178
+ #: ../shortcodes/pullquote/quote_popup.php:72
1179
+ msgid "Right"
1180
+ msgstr ""
1181
+
1182
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1183
+ msgid "Insert Vimeo Video"
1184
+ msgstr ""
1185
+
1186
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1187
+ msgid "Vimeo Link"
1188
+ msgstr ""
1189
+
1190
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1191
+ #: ../shortcodes/youtube/youtube_popup.php:70
1192
+ msgid "Width"
1193
+ msgstr ""
1194
+
1195
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1196
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1197
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1198
+ #: ../shortcodes/youtube/youtube_popup.php:72
1199
+ #: ../shortcodes/youtube/youtube_popup.php:77
1200
+ #: ../shortcodes/youtube/youtube_popup.php:82
1201
+ msgid "note just use number"
1202
+ msgstr ""
1203
+
1204
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1205
+ #: ../shortcodes/youtube/youtube_popup.php:75
1206
+ msgid "Height"
1207
+ msgstr ""
1208
+
1209
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1210
+ #: ../shortcodes/youtube/youtube_popup.php:80
1211
+ msgid "(Optional) Max Width"
1212
+ msgstr ""
1213
+
1214
+ #: ../shortcodes/youtube/youtube_popup.php:10
1215
+ msgid "Insert YouTube Video"
1216
+ msgstr ""
1217
+
1218
+ #: ../shortcodes/youtube/youtube_popup.php:66
1219
+ msgid "YouTube Link"
1220
+ msgstr ""
1221
+
1222
+ #: ../template-contact.php:193
1223
+ msgid "Email:"
1224
+ msgstr ""
1225
+
1226
+ #: ../template-contact.php:200
1227
+ msgid "Message:"
1228
+ msgstr ""
languages/pt_BR.mo ADDED
Binary file
languages/pt_BR.po ADDED
@@ -0,0 +1,5223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "POT-Creation-Date: 2015-01-10 00:33-0700\n"
5
+ "PO-Revision-Date: 2015-01-10 00:33-0700\n"
6
+ "Last-Translator: Victor Debone <victor@debone.com.br>\n"
7
+ "Language-Team: Victor Debone <victor@debone.com.br>\n"
8
+ "Language: pt_BR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.6.10\n"
13
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr_e;esc_attr__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
19
+ msgid "Please Try Again"
20
+ msgstr "Por favor tente novamente"
21
+
22
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
23
+ msgid "Remove Embed"
24
+ msgstr "Remover Embutido"
25
+
26
+ #: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
27
+ #, php-format
28
+ msgid "No oEmbed Results Found for %s. View more info at"
29
+ msgstr "Sem Resultados oEmbed encontrados ara %s. Veja mais informações em"
30
+
31
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:459
32
+ msgid "Add Group"
33
+ msgstr "Adicionar Grupo"
34
+
35
+ #: ../cmb/helpers/cmb_Meta_Box_field.php:460
36
+ msgid "Remove Group"
37
+ msgstr "Remover Grupo"
38
+
39
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:250
40
+ msgid "Add Row"
41
+ msgstr "Adicionar Linha"
42
+
43
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:306
44
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
45
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
46
+ msgid "Remove"
47
+ msgstr "Remover"
48
+
49
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:601
50
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:635
51
+ msgid "No terms"
52
+ msgstr "Sem termos"
53
+
54
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:674
55
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:728
56
+ msgid "Add or Upload File"
57
+ msgstr "Adicionar ou Enviar Arquivo"
58
+
59
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:695
60
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:760
61
+ msgid "Remove Image"
62
+ msgstr "Remover Imagem"
63
+
64
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
65
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
66
+ msgid "File:"
67
+ msgstr "Arquivo:"
68
+
69
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:706
70
+ #: ../cmb/helpers/cmb_Meta_Box_types.php:768
71
+ msgid "Download"
72
+ msgstr "Download"
73
+
74
+ #: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
75
+ msgid "Clear"
76
+ msgstr "Limpar"
77
+
78
+ #: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
79
+ #: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:367
80
+ #: ../metaboxes.php:378 ../metaboxes.php:413 ../metaboxes.php:424
81
+ #: ../metaboxes.php:489
82
+ msgid "Default"
83
+ msgstr "Padrão"
84
+
85
+ #: ../cmb/init.php:260
86
+ msgid "Select Color"
87
+ msgstr "Escolha uma cor"
88
+
89
+ #: ../cmb/init.php:261
90
+ msgid "Current Color"
91
+ msgstr "Cor atual"
92
+
93
+ #: ../cmb/init.php:288
94
+ msgid "Select / Deselect All"
95
+ msgstr "Marcar/Desmarcar Todos"
96
+
97
+ #: ../cmb/init.php:1178
98
+ msgid "Save"
99
+ msgstr "Salvar"
100
+
101
+ #: ../metaboxes.php:17
102
+ msgid "Add/Edit Gallery"
103
+ msgstr "Adicionar/Editar Galeria"
104
+
105
+ #: ../metaboxes.php:18
106
+ msgid "Clear Gallery"
107
+ msgstr "Limpar Galeria"
108
+
109
+ #: ../metaboxes.php:44
110
+ msgid "Page Title and Subtitle"
111
+ msgstr "Título e subtítulo da Página"
112
+
113
+ #: ../metaboxes.php:51 ../metaboxes.php:95
114
+ msgid "Subtitle"
115
+ msgstr "Subtítulo"
116
+
117
+ #: ../metaboxes.php:52
118
+ msgid "Subtitle will go below page title"
119
+ msgstr "O subtítulo aparecerá embaixo do Título"
120
+
121
+ #: ../metaboxes.php:57 ../metaboxes.php:101
122
+ #, fuzzy
123
+ msgid "Hide Page Title"
124
+ msgstr "Título da Página"
125
+
126
+ #: ../metaboxes.php:63 ../metaboxes.php:107
127
+ #, fuzzy
128
+ msgid "Show"
129
+ msgstr "Sim, mostrar"
130
+
131
+ #: ../metaboxes.php:64 ../metaboxes.php:108
132
+ msgid "Hide"
133
+ msgstr ""
134
+
135
+ #: ../metaboxes.php:68 ../metaboxes.php:112
136
+ #, fuzzy
137
+ msgid "Page Title background behind Header"
138
+ msgstr "Título e subtítulo da Página"
139
+
140
+ #: ../metaboxes.php:74 ../metaboxes.php:118
141
+ msgid "Place behind Header"
142
+ msgstr ""
143
+
144
+ #: ../metaboxes.php:75 ../metaboxes.php:119
145
+ msgid "Don't place behind Header"
146
+ msgstr ""
147
+
148
+ #: ../metaboxes.php:82
149
+ #, fuzzy
150
+ msgid "Post Title and Subtitle"
151
+ msgstr "Título e subtítulo da Página"
152
+
153
+ #: ../metaboxes.php:89 ../metaboxes.php:90
154
+ #, fuzzy
155
+ msgid "Post Header Title"
156
+ msgstr "Estilo do Cabeçalho"
157
+
158
+ #: ../metaboxes.php:96
159
+ #, fuzzy
160
+ msgid "Subtitle will go below post title"
161
+ msgstr "O subtítulo aparecerá embaixo do Título"
162
+
163
+ #: ../metaboxes.php:126
164
+ #, fuzzy
165
+ msgid "Gallery Post Options"
166
+ msgstr "Opções do Post"
167
+
168
+ #: ../metaboxes.php:135 ../metaboxes.php:190
169
+ #, fuzzy
170
+ msgid "Post Head Content"
171
+ msgstr "Conteúdo do Cabeçalho"
172
+
173
+ #: ../metaboxes.php:140 ../metaboxes.php:170
174
+ #, fuzzy
175
+ msgid "Gallery Post Default"
176
+ msgstr "Padrões de Posts"
177
+
178
+ #: ../metaboxes.php:141
179
+ #, fuzzy
180
+ msgid "Image Slider - (Flex Slider)"
181
+ msgstr "Slider de Imagens (Flex Slider)"
182
+
183
+ #: ../metaboxes.php:142
184
+ #, fuzzy
185
+ msgid "Carousel Slider - (Caroufedsel Slider)"
186
+ msgstr "Slider de Imagens (Flex Slider)"
187
+
188
+ #: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
189
+ #: ../metaboxes.php:738
190
+ msgid "None"
191
+ msgstr "Nenhum"
192
+
193
+ #: ../metaboxes.php:147
194
+ #, fuzzy
195
+ msgid "Post Slider Gallery"
196
+ msgstr "Virtue: Galeria"
197
+
198
+ #: ../metaboxes.php:148 ../metaboxes.php:1106
199
+ #, fuzzy
200
+ msgid "Add images for gallery here"
201
+ msgstr "Adicionar Imagens para a Galeria"
202
+
203
+ #: ../metaboxes.php:153
204
+ #, fuzzy
205
+ msgid "Max Slider Height"
206
+ msgstr "Altura Máxima do Slider/Imagem"
207
+
208
+ #: ../metaboxes.php:154 ../metaboxes.php:553
209
+ #, fuzzy
210
+ msgid "Default is: 400 (Note: just input number, example: 350)"
211
+ msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
212
+
213
+ #: ../metaboxes.php:159
214
+ #, fuzzy
215
+ msgid "Max Slider Width"
216
+ msgstr "Largura Máxima do Slider/Imagem"
217
+
218
+ #: ../metaboxes.php:160
219
+ #, fuzzy
220
+ msgid ""
221
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
222
+ "example: 650, only applys to Image Slider)"
223
+ msgstr ""
224
+ "O padrão é: 770 ou 1140 nos posts largos (Nota: insira somente números, "
225
+ "exemplo: 650, não aplica ao slider Carrossel)"
226
+
227
+ #: ../metaboxes.php:165 ../metaboxes.php:213
228
+ msgid "Post Summary"
229
+ msgstr "Resumo do Post"
230
+
231
+ #: ../metaboxes.php:171 ../metaboxes.php:220
232
+ #, fuzzy
233
+ msgid "Portrait Image (feature image)"
234
+ msgstr "Slider de Imagens do Retrato"
235
+
236
+ #: ../metaboxes.php:172 ../metaboxes.php:221
237
+ #, fuzzy
238
+ msgid "Landscape Image (feature image)"
239
+ msgstr "Slider de Imagem Paisagem"
240
+
241
+ #: ../metaboxes.php:173
242
+ msgid "Portrait Image Slider"
243
+ msgstr "Slider de Imagens do Retrato"
244
+
245
+ #: ../metaboxes.php:174
246
+ msgid "Landscape Image Slider"
247
+ msgstr "Slider de Imagem Paisagem"
248
+
249
+ #: ../metaboxes.php:181
250
+ #, fuzzy
251
+ msgid "Video Post Options"
252
+ msgstr "Opções do Post"
253
+
254
+ #: ../metaboxes.php:195 ../metaboxes.php:218
255
+ #, fuzzy
256
+ msgid "Video Post Default"
257
+ msgstr "Padrões de Posts"
258
+
259
+ #: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
260
+ #: ../metaboxes.php:737 ../metaboxes.php:960
261
+ msgid "Video"
262
+ msgstr "Vídeo"
263
+
264
+ #: ../metaboxes.php:201
265
+ #, fuzzy
266
+ msgid "Video Post embed code"
267
+ msgstr "Código de Inserção do Vídeo"
268
+
269
+ #: ../metaboxes.php:202
270
+ #, fuzzy
271
+ msgid ""
272
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
273
+ "for screen shot)"
274
+ msgstr "Cole o código do vídeo aqui, funciona com You Tube, Vimeo..."
275
+
276
+ #: ../metaboxes.php:207
277
+ #, fuzzy
278
+ msgid "Max Video Width"
279
+ msgstr "Largura do Vídeo"
280
+
281
+ #: ../metaboxes.php:208
282
+ #, fuzzy
283
+ msgid ""
284
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
285
+ "example: 650, does not apply to carousel slider)"
286
+ msgstr ""
287
+ "O padrão é: 770 ou 1140 nos posts largos (Nota: insira somente números, "
288
+ "exemplo: 650, não aplica ao slider Carrossel)"
289
+
290
+ #: ../metaboxes.php:219
291
+ msgid "Video - (when possible)"
292
+ msgstr ""
293
+
294
+ #: ../metaboxes.php:228 ../metaboxes.php:710
295
+ msgid "Portfolio Post Options"
296
+ msgstr "Opções do Post do Portfólio"
297
+
298
+ #: ../metaboxes.php:236 ../metaboxes.php:718
299
+ msgid "Project Layout"
300
+ msgstr "Layout do Projeto"
301
+
302
+ #: ../metaboxes.php:241
303
+ #, fuzzy
304
+ msgid "Beside 40%"
305
+ msgstr "Ao lado"
306
+
307
+ #: ../metaboxes.php:242
308
+ #, fuzzy
309
+ msgid "Beside 33%"
310
+ msgstr "Ao lado"
311
+
312
+ #: ../metaboxes.php:243 ../metaboxes.php:724
313
+ msgid "Above"
314
+ msgstr "Acima"
315
+
316
+ #: ../metaboxes.php:244 ../metaboxes.php:725
317
+ msgid "Three Rows"
318
+ msgstr "Três linhas"
319
+
320
+ #: ../metaboxes.php:248 ../metaboxes.php:729
321
+ msgid "Project Options"
322
+ msgstr "Opções do Projeto"
323
+
324
+ #: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:961
325
+ msgid "Image"
326
+ msgstr "Imagem"
327
+
328
+ #: ../metaboxes.php:254 ../metaboxes.php:534
329
+ msgid "Image Slider (Flex Slider)"
330
+ msgstr "Slider de Imagens (Flex Slider)"
331
+
332
+ #: ../metaboxes.php:255 ../metaboxes.php:535 ../metaboxes.php:736
333
+ msgid "Carousel Slider"
334
+ msgstr "Slider do Carrossel"
335
+
336
+ #: ../metaboxes.php:261
337
+ #, fuzzy
338
+ msgid "Portfolio Slider/Images"
339
+ msgstr "Imagens do Slider do Portfólio"
340
+
341
+ #: ../metaboxes.php:262
342
+ #, fuzzy
343
+ msgid "Add images for post here"
344
+ msgstr "Adicionar Imagens para a Galeria"
345
+
346
+ #: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:742
347
+ #: ../metaboxes.php:965
348
+ msgid "Max Image/Slider Height"
349
+ msgstr "Altura Máxima do Slider/Imagem"
350
+
351
+ #: ../metaboxes.php:268
352
+ #, fuzzy
353
+ msgid "Default is: 450 (Note: just input number, example: 350)"
354
+ msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
355
+
356
+ #: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:748
357
+ #: ../metaboxes.php:971
358
+ msgid "Max Image/Slider Width"
359
+ msgstr "Largura Máxima do Slider/Imagem"
360
+
361
+ #: ../metaboxes.php:274
362
+ #, fuzzy
363
+ msgid ""
364
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
365
+ "number, example: 650)"
366
+ msgstr ""
367
+ "O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
368
+ "somente números, exemplo: 650)"
369
+
370
+ #: ../metaboxes.php:279 ../metaboxes.php:764
371
+ msgid "Value 01 Title"
372
+ msgstr "Título do Valor 01"
373
+
374
+ #: ../metaboxes.php:280 ../metaboxes.php:765
375
+ msgid "ex. Project Type:"
376
+ msgstr "ex: Tipo do Projeto:"
377
+
378
+ #: ../metaboxes.php:285 ../metaboxes.php:770
379
+ msgid "Value 01 Description"
380
+ msgstr "Descrição do Valor 01"
381
+
382
+ #: ../metaboxes.php:286 ../metaboxes.php:771
383
+ msgid "ex. Character Illustration"
384
+ msgstr "ex: Ilustração de Personagens"
385
+
386
+ #: ../metaboxes.php:291 ../metaboxes.php:776
387
+ msgid "Value 02 Title"
388
+ msgstr "Título do Valor 02"
389
+
390
+ #: ../metaboxes.php:292 ../metaboxes.php:777
391
+ msgid "ex. Skills Needed:"
392
+ msgstr "ex: Habilidades Necessárias:"
393
+
394
+ #: ../metaboxes.php:297 ../metaboxes.php:782
395
+ msgid "Value 02 Description"
396
+ msgstr "Descrição do Valor 02"
397
+
398
+ #: ../metaboxes.php:298 ../metaboxes.php:783
399
+ msgid "ex. Photoshop, Illustrator"
400
+ msgstr "ex: Photoshop, Illustrator"
401
+
402
+ #: ../metaboxes.php:303 ../metaboxes.php:788
403
+ msgid "Value 03 Title"
404
+ msgstr "Título do Valor 03"
405
+
406
+ #: ../metaboxes.php:304 ../metaboxes.php:789
407
+ msgid "ex. Customer:"
408
+ msgstr "ex: Cliente:"
409
+
410
+ #: ../metaboxes.php:309 ../metaboxes.php:794
411
+ msgid "Value 03 Description"
412
+ msgstr "Descrição do Valor 03"
413
+
414
+ #: ../metaboxes.php:310 ../metaboxes.php:795
415
+ msgid "ex. Example Inc"
416
+ msgstr "ex: Exemplo Inc"
417
+
418
+ #: ../metaboxes.php:315 ../metaboxes.php:800
419
+ msgid "Value 04 Title"
420
+ msgstr "Título do Valor 04"
421
+
422
+ #: ../metaboxes.php:316 ../metaboxes.php:801
423
+ msgid "ex. Project Year:"
424
+ msgstr "ex: Ano do Projeto:"
425
+
426
+ #: ../metaboxes.php:321 ../metaboxes.php:806
427
+ msgid "Value 04 Description"
428
+ msgstr "Descrição do Valor 04"
429
+
430
+ #: ../metaboxes.php:322 ../metaboxes.php:807
431
+ msgid "ex. 2013"
432
+ msgstr "ex: 2013"
433
+
434
+ #: ../metaboxes.php:327 ../metaboxes.php:812
435
+ msgid "External Website"
436
+ msgstr "Site Externo"
437
+
438
+ #: ../metaboxes.php:328 ../metaboxes.php:813
439
+ msgid "ex. Website:"
440
+ msgstr "ex: Site:"
441
+
442
+ #: ../metaboxes.php:333 ../metaboxes.php:818
443
+ msgid "Website Address"
444
+ msgstr "Endereço do Website"
445
+
446
+ #: ../metaboxes.php:334 ../metaboxes.php:819
447
+ msgid "ex. http://www.example.com"
448
+ msgstr "ex: http://www.example.com.br"
449
+
450
+ #: ../metaboxes.php:339 ../metaboxes.php:824
451
+ msgid "If Video Project"
452
+ msgstr "Caso Projeto de vídeo"
453
+
454
+ #: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
455
+ #: ../metaboxes.php:825 ../metaboxes.php:988
456
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
457
+ msgstr "Cole o código do vídeo aqui, funciona com You Tube, Vimeo..."
458
+
459
+ #: ../metaboxes.php:349
460
+ msgid "Bottom Carousel Options"
461
+ msgstr "Opções do Carrossel Inferior"
462
+
463
+ #: ../metaboxes.php:356 ../metaboxes.php:840
464
+ msgid "Carousel Title"
465
+ msgstr "Título do Carrossel"
466
+
467
+ #: ../metaboxes.php:357 ../metaboxes.php:841
468
+ msgid "ex. Similar Projects"
469
+ msgstr "ex: Projetos similares"
470
+
471
+ #: ../metaboxes.php:362
472
+ msgid "Bottom Portfolio Carousel"
473
+ msgstr "Carrossel do Portfólio Inferior"
474
+
475
+ #: ../metaboxes.php:363
476
+ #, fuzzy
477
+ msgid "Display a carousel with portfolio items below project?"
478
+ msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
479
+
480
+ #: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
481
+ #: ../metaboxes.php:619 ../metaboxes.php:760 ../metaboxes.php:835
482
+ #: ../metaboxes.php:937 ../metaboxes.php:983 ../metaboxes.php:1011
483
+ #: ../metaboxes.php:1027 ../metaboxes.php:1036
484
+ msgid "No"
485
+ msgstr "Não"
486
+
487
+ #: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
488
+ #: ../metaboxes.php:620 ../metaboxes.php:759 ../metaboxes.php:938
489
+ #: ../metaboxes.php:982 ../metaboxes.php:1010 ../metaboxes.php:1026
490
+ #: ../metaboxes.php:1037
491
+ msgid "Yes"
492
+ msgstr "sim"
493
+
494
+ #: ../metaboxes.php:373
495
+ msgid "Carousel Items"
496
+ msgstr "Itens do Carrossel"
497
+
498
+ #: ../metaboxes.php:379
499
+ msgid "All Portfolio Posts"
500
+ msgstr "Todos Posts do Portfólio"
501
+
502
+ #: ../metaboxes.php:380
503
+ msgid "Only of same Portfolio Type"
504
+ msgstr "Somente do mesmo tipo de Portfólio"
505
+
506
+ #: ../metaboxes.php:384
507
+ msgid "Carousel Order"
508
+ msgstr "Ordem do Carrossel"
509
+
510
+ #: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:882
511
+ msgid "Menu Order"
512
+ msgstr "Ordem do Menu"
513
+
514
+ #: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:883
515
+ msgid "Title"
516
+ msgstr "Título"
517
+
518
+ #: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:884
519
+ msgid "Date"
520
+ msgstr "Data"
521
+
522
+ #: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:885
523
+ msgid "Random"
524
+ msgstr "Aleatório"
525
+
526
+ #: ../metaboxes.php:400 ../metaboxes.php:850
527
+ msgid "Portfolio Page Options"
528
+ msgstr "Opções da Página do Portfólio"
529
+
530
+ #: ../metaboxes.php:408 ../shortcodes/pullquote/quote_popup.php:59
531
+ msgid "Style"
532
+ msgstr "Estilo"
533
+
534
+ #: ../metaboxes.php:414
535
+ #, fuzzy
536
+ msgid "Post Boxes"
537
+ msgstr "Vídeo do Produto"
538
+
539
+ #: ../metaboxes.php:415
540
+ msgid "Flat with Margin"
541
+ msgstr ""
542
+
543
+ #: ../metaboxes.php:419
544
+ #, fuzzy
545
+ msgid "Hover Style"
546
+ msgstr "Estilo do Cabeçalho"
547
+
548
+ #: ../metaboxes.php:425
549
+ #, fuzzy
550
+ msgid "Light"
551
+ msgstr "Direita"
552
+
553
+ #: ../metaboxes.php:426
554
+ msgid "Dark"
555
+ msgstr ""
556
+
557
+ #: ../metaboxes.php:427 ../shortcodes/btns/btns_popup.php:134
558
+ msgid "Primary Color"
559
+ msgstr "Cor Primária"
560
+
561
+ #: ../metaboxes.php:431 ../metaboxes.php:859
562
+ msgid "Columns"
563
+ msgstr "Colunas"
564
+
565
+ #: ../metaboxes.php:436 ../metaboxes.php:864
566
+ msgid "Four Column"
567
+ msgstr "Quatro Colunas"
568
+
569
+ #: ../metaboxes.php:437 ../metaboxes.php:865
570
+ msgid "Three Column"
571
+ msgstr "Três colunas"
572
+
573
+ #: ../metaboxes.php:438 ../metaboxes.php:866
574
+ msgid "Two Column"
575
+ msgstr "Duas Colunas"
576
+
577
+ #: ../metaboxes.php:439
578
+ msgid "Five Column"
579
+ msgstr "Cinco Colunas"
580
+
581
+ #: ../metaboxes.php:443 ../metaboxes.php:870
582
+ msgid "Portfolio Work Types"
583
+ msgstr "Tipos de Trabalho do Portfólio"
584
+
585
+ #: ../metaboxes.php:449 ../metaboxes.php:877
586
+ msgid "Order Items By"
587
+ msgstr "Ordenar itens por"
588
+
589
+ #: ../metaboxes.php:461 ../metaboxes.php:889
590
+ msgid "Items per Page"
591
+ msgstr "Itens por Página"
592
+
593
+ #: ../metaboxes.php:462 ../metaboxes.php:890
594
+ msgid "How many portfolio items per page"
595
+ msgstr "Quantos itens do portfólio por página"
596
+
597
+ #: ../metaboxes.php:466 ../metaboxes.php:894
598
+ msgid "All"
599
+ msgstr "Todos"
600
+
601
+ #: ../metaboxes.php:484
602
+ #, fuzzy
603
+ msgid "Image Ratio?"
604
+ msgstr "URL da Imagem"
605
+
606
+ #: ../metaboxes.php:490
607
+ msgid "Square 1:1"
608
+ msgstr "Quadrado 1:1"
609
+
610
+ #: ../metaboxes.php:491
611
+ msgid "Portrait 3:4"
612
+ msgstr "Retrato 3:4"
613
+
614
+ #: ../metaboxes.php:492
615
+ msgid "Landscape 4:3"
616
+ msgstr "Paisagem 4:3"
617
+
618
+ #: ../metaboxes.php:493
619
+ msgid "Wide Landscape 4:2"
620
+ msgstr "Paisagem 4:2 Larga"
621
+
622
+ #: ../metaboxes.php:497 ../metaboxes.php:918
623
+ msgid "Display Item Work Types"
624
+ msgstr "Mostrar tipos de trabalho do item"
625
+
626
+ #: ../metaboxes.php:503 ../metaboxes.php:925
627
+ msgid "Display Item Excerpt"
628
+ msgstr "Mostrar resumo do item"
629
+
630
+ #: ../metaboxes.php:509
631
+ #, fuzzy
632
+ msgid "Add Lightbox link in each item"
633
+ msgstr "Adicionar link do Lightbox no topo direito de cada item"
634
+
635
+ #: ../metaboxes.php:518 ../metaboxes.php:945
636
+ msgid "Feature Page Options"
637
+ msgstr "Opções da Página de Destaque"
638
+
639
+ #: ../metaboxes.php:527
640
+ #, fuzzy
641
+ msgid "Header Options"
642
+ msgstr "Opções da Fonte do Cabeçalho"
643
+
644
+ #: ../metaboxes.php:528
645
+ #, fuzzy
646
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
647
+ msgstr ""
648
+ "Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
649
+ "largura."
650
+
651
+ #: ../metaboxes.php:533
652
+ msgid "Page Title"
653
+ msgstr "Título da Página"
654
+
655
+ #: ../metaboxes.php:540 ../metaboxes.php:1098
656
+ msgid "Slider Images"
657
+ msgstr "Imagens do Slider"
658
+
659
+ #: ../metaboxes.php:541
660
+ #, fuzzy
661
+ msgid "Add for flex, carousel, and image carousel."
662
+ msgstr "Adiciona um Carrossel em qualquer espaço de widgets"
663
+
664
+ #: ../metaboxes.php:546
665
+ msgid "If Cyclone Slider"
666
+ msgstr "Caso Cyclone Slider"
667
+
668
+ #: ../metaboxes.php:547
669
+ #, fuzzy
670
+ msgid ""
671
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
672
+ msgstr ""
673
+ "Cole o shortcode do slider aqui (exemplo: [cycloneslider id=\"slide1\"])"
674
+
675
+ #: ../metaboxes.php:559
676
+ #, fuzzy
677
+ msgid ""
678
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
679
+ "does not apply to Carousel slider)"
680
+ msgstr ""
681
+ "O padrão é: 770 ou 1140 nos posts largos (Nota: insira somente números, "
682
+ "exemplo: 650, não aplica ao slider Carrossel)"
683
+
684
+ #: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:987
685
+ msgid "If Video Post"
686
+ msgstr "Caso post de vídeo"
687
+
688
+ #: ../metaboxes.php:573 ../metaboxes.php:996
689
+ msgid "Contact Page Options"
690
+ msgstr "Opções da página de Contato"
691
+
692
+ #: ../metaboxes.php:582 ../metaboxes.php:1005
693
+ msgid "Use Contact Form"
694
+ msgstr "Usar Formulário de Contato"
695
+
696
+ #: ../metaboxes.php:592 ../metaboxes.php:1015
697
+ msgid "Contact Form Title"
698
+ msgstr "Título do form de Contato"
699
+
700
+ #: ../metaboxes.php:593 ../metaboxes.php:1016
701
+ msgid "ex. Send us an Email"
702
+ msgstr "ex: Envie-nos um email"
703
+
704
+ #: ../metaboxes.php:598
705
+ #, fuzzy
706
+ msgid "Contact Form Email Recipient"
707
+ msgstr "Email do form de Contato"
708
+
709
+ #: ../metaboxes.php:599
710
+ msgid "ex. joe@gmail.com"
711
+ msgstr ""
712
+
713
+ #: ../metaboxes.php:604 ../metaboxes.php:1021
714
+ msgid "Use Simple Math Question"
715
+ msgstr "Usar questão simples de matemática"
716
+
717
+ #: ../metaboxes.php:614 ../metaboxes.php:1031
718
+ msgid "Use Map"
719
+ msgstr "Usar Mapa"
720
+
721
+ #: ../metaboxes.php:624 ../metaboxes.php:1041
722
+ msgid "Address"
723
+ msgstr "Endereço"
724
+
725
+ #: ../metaboxes.php:625 ../metaboxes.php:1042
726
+ msgid "Enter your Location"
727
+ msgstr "Insira seu local"
728
+
729
+ #: ../metaboxes.php:630 ../metaboxes.php:1047
730
+ msgid "Map Type"
731
+ msgstr "Tipo do Mapa"
732
+
733
+ #: ../metaboxes.php:635 ../metaboxes.php:1052
734
+ msgid "ROADMAP"
735
+ msgstr "MAPA COM RUAS"
736
+
737
+ #: ../metaboxes.php:636 ../metaboxes.php:1053
738
+ msgid "HYBRID"
739
+ msgstr "HÍBRIDO"
740
+
741
+ #: ../metaboxes.php:637 ../metaboxes.php:1054
742
+ msgid "TERRAIN"
743
+ msgstr "TERRENO"
744
+
745
+ #: ../metaboxes.php:638 ../metaboxes.php:1055
746
+ msgid "SATELLITE"
747
+ msgstr "SATÉLITE"
748
+
749
+ #: ../metaboxes.php:642 ../metaboxes.php:1059
750
+ msgid "Map Zoom Level"
751
+ msgstr "Nível de Zoom do Mapa"
752
+
753
+ #: ../metaboxes.php:643 ../metaboxes.php:1060
754
+ msgid "A good place to start is 15"
755
+ msgstr "Um bom lugar para começar é 15"
756
+
757
+ #: ../metaboxes.php:648 ../metaboxes.php:1065
758
+ msgid "1 (World View)"
759
+ msgstr "1 (Visualização Global)"
760
+
761
+ #: ../metaboxes.php:668 ../metaboxes.php:1085
762
+ msgid "21 (Street View)"
763
+ msgstr "21 (Visualização de Rua)"
764
+
765
+ #: ../metaboxes.php:672 ../metaboxes.php:1089
766
+ msgid "Map Height"
767
+ msgstr "Altura do Mapa"
768
+
769
+ #: ../metaboxes.php:673 ../metaboxes.php:1090
770
+ msgid "Default is 300"
771
+ msgstr "O padrão é 300"
772
+
773
+ #: ../metaboxes.php:693
774
+ #, fuzzy
775
+ msgid "Post Video Box"
776
+ msgstr "Vídeo do Produto"
777
+
778
+ #: ../metaboxes.php:723
779
+ msgid "Beside"
780
+ msgstr "Ao lado"
781
+
782
+ #: ../metaboxes.php:735 ../metaboxes.php:959
783
+ msgid "Image Slider"
784
+ msgstr "Slider de Imagens"
785
+
786
+ #: ../metaboxes.php:743
787
+ #, fuzzy
788
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
789
+ msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
790
+
791
+ #: ../metaboxes.php:749
792
+ #, fuzzy
793
+ msgid ""
794
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
795
+ "just input number, example: 650)</b>"
796
+ msgstr ""
797
+ "O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
798
+ "somente números, exemplo: 650)"
799
+
800
+ #: ../metaboxes.php:754
801
+ msgid "Auto Play Slider?"
802
+ msgstr "Play automático do Slider?"
803
+
804
+ #: ../metaboxes.php:830
805
+ #, fuzzy
806
+ msgid "Similar Portfolio Item Carousel"
807
+ msgstr "Carrossel do Portfólio"
808
+
809
+ #: ../metaboxes.php:831
810
+ #, fuzzy
811
+ msgid "Display a carousel with similar portfolio items below project?"
812
+ msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
813
+
814
+ #: ../metaboxes.php:836
815
+ #, fuzzy
816
+ msgid "Yes - Display Recent Projects"
817
+ msgstr "Sim - Mostrar posts mais recentes"
818
+
819
+ #: ../metaboxes.php:912
820
+ #, fuzzy
821
+ msgid "Set image height"
822
+ msgstr "Definir altura da imagem caso recortar"
823
+
824
+ #: ../metaboxes.php:913
825
+ #, fuzzy
826
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
827
+ msgstr ""
828
+ "O padrão de proporção é 1:1 (Nota: coloque somente números, exemplo: 320)"
829
+
830
+ #: ../metaboxes.php:932
831
+ msgid "Add Lightbox link in the top right of each item"
832
+ msgstr "Adicionar link do Lightbox no topo direito de cada item"
833
+
834
+ #: ../metaboxes.php:954
835
+ msgid "Feature Options"
836
+ msgstr "Opções do Destaque"
837
+
838
+ #: ../metaboxes.php:955
839
+ #, fuzzy
840
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
841
+ msgstr ""
842
+ "Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
843
+ "largura."
844
+
845
+ #: ../metaboxes.php:966
846
+ #, fuzzy
847
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
848
+ msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
849
+
850
+ #: ../metaboxes.php:972
851
+ #, fuzzy
852
+ msgid ""
853
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
854
+ "to Carousel slider)</b>"
855
+ msgstr ""
856
+ "O padrão é: 1140 nos posts largos (Nota: coloque somente números, por "
857
+ "exemplo: 650, não se aplica pro slider Carrossel)"
858
+
859
+ #: ../metaboxes.php:977
860
+ msgid "Use Lightbox for Feature Image"
861
+ msgstr "Usar Lightbox para Imagens Destacadas"
862
+
863
+ #: ../metaboxes.php:978
864
+ msgid ""
865
+ "If feature option is set to image, choose to use lightbox link with image."
866
+ msgstr ""
867
+ "Caso a opção de destaque esteja como imagem, escolha usar ou não um lightbox "
868
+ "para ela."
869
+
870
+ #: ../metaboxes.php:1105
871
+ #, fuzzy
872
+ msgid "Slider Gallery"
873
+ msgstr "Limpar Galeria"
874
+
875
+ #: ../page-contact.php:12 ../template-contact.php:7
876
+ msgid "This field is required."
877
+ msgstr "Esse campo é obrigatório."
878
+
879
+ #: ../page-contact.php:13 ../template-contact.php:8
880
+ msgid "Please enter a valid email address."
881
+ msgstr "Por favor insira um email válido."
882
+
883
+ #: ../page-contact.php:96 ../template-contact.php:95
884
+ msgid "Check your math."
885
+ msgstr "Verifique sua conta."
886
+
887
+ #: ../page-contact.php:101 ../template-contact.php:100
888
+ msgid "Please enter your name."
889
+ msgstr "Por favor insira seu nome."
890
+
891
+ #: ../page-contact.php:108 ../template-contact.php:107
892
+ msgid "Please enter your email address."
893
+ msgstr "Por favor insira seu email."
894
+
895
+ #: ../page-contact.php:111 ../template-contact.php:110
896
+ msgid "You entered an invalid email address."
897
+ msgstr "Você inseriu um email inválido."
898
+
899
+ #: ../page-contact.php:118 ../template-contact.php:117
900
+ msgid "Please enter a message."
901
+ msgstr "Por favor insira uma mensagem."
902
+
903
+ #: ../page-contact.php:135 ../pagetemplater.php:28 ../pagetemplater.php:114
904
+ #: ../template-contact.php:134
905
+ #, fuzzy
906
+ msgid "Contact"
907
+ msgstr "Contato"
908
+
909
+ #: ../page-contact.php:135 ../template-contact.php:134
910
+ msgid "From"
911
+ msgstr "De"
912
+
913
+ #: ../page-contact.php:136 ../template-contact.php:135
914
+ msgid "Name"
915
+ msgstr "Nome"
916
+
917
+ #: ../page-contact.php:137 ../template-contact.php:136
918
+ #, fuzzy
919
+ msgid "Email"
920
+ msgstr "Email:"
921
+
922
+ #: ../page-contact.php:138 ../template-contact.php:137
923
+ #, fuzzy
924
+ msgid "Comments"
925
+ msgstr "Comentário"
926
+
927
+ #: ../page-contact.php:176 ../template-contact.php:173
928
+ msgid "Thanks, your email was sent successfully."
929
+ msgstr "Obrigado, o seu email foi enviado com sucesso."
930
+
931
+ #: ../page-contact.php:181 ../template-contact.php:177
932
+ msgid "Sorry, an error occured."
933
+ msgstr "Desculpe, ocorreu um erro."
934
+
935
+ #: ../page-contact.php:187 ../template-contact.php:183
936
+ msgid "Name:"
937
+ msgstr "Nome:"
938
+
939
+ #: ../page-contact.php:195
940
+ msgid "Email: "
941
+ msgstr "Email: "
942
+
943
+ #: ../page-contact.php:203
944
+ msgid "Message: "
945
+ msgstr "Mensagem:"
946
+
947
+ #: ../page-contact.php:223 ../template-contact.php:218
948
+ msgid "Send Email"
949
+ msgstr "Enviar email"
950
+
951
+ #: ../post-types.php:5 ../post-types.php:17
952
+ msgid "Portfolio"
953
+ msgstr "Portfólio"
954
+
955
+ #: ../post-types.php:6
956
+ msgid "Portfolio Item"
957
+ msgstr "Item do Portfólio"
958
+
959
+ #: ../post-types.php:7
960
+ msgid "Add New"
961
+ msgstr "Adicionar Novo"
962
+
963
+ #: ../post-types.php:8
964
+ msgid "Add New Portfolio Item"
965
+ msgstr "Adicionar Novo Item do Portfólio"
966
+
967
+ #: ../post-types.php:9
968
+ msgid "Edit Portfolio Item"
969
+ msgstr "Editar item do portfólio"
970
+
971
+ #: ../post-types.php:10
972
+ msgid "New Portfolio Item"
973
+ msgstr "Novo item do Portfólio"
974
+
975
+ #: ../post-types.php:11
976
+ msgid "All Portfolio"
977
+ msgstr "Todo Portfólio"
978
+
979
+ #: ../post-types.php:12
980
+ msgid "View Portfolio Item"
981
+ msgstr "Visualizar item do Portfólio"
982
+
983
+ #: ../post-types.php:13
984
+ msgid "Search Portfolio"
985
+ msgstr "Procurar Portfólio"
986
+
987
+ #: ../post-types.php:14
988
+ msgid "No Portfolio Item found"
989
+ msgstr "Nenhum item do Portfólio Encontrado"
990
+
991
+ #: ../post-types.php:15
992
+ msgid "No Portfolio Items found in Trash"
993
+ msgstr "Nenhum item do Portfólio Encontrado na Lixeira"
994
+
995
+ #: ../post-types.php:37
996
+ msgid "Portfolio Type"
997
+ msgstr "Tipo do Portfólio"
998
+
999
+ #: ../post-types.php:38
1000
+ msgid "Type"
1001
+ msgstr "Tipo"
1002
+
1003
+ #: ../post-types.php:39
1004
+ msgid "Search Type"
1005
+ msgstr "Buscar Tipo"
1006
+
1007
+ #: ../post-types.php:40
1008
+ msgid "All Type"
1009
+ msgstr "Todos Tipos"
1010
+
1011
+ #: ../post-types.php:41
1012
+ msgid "Parent Type"
1013
+ msgstr "Tipo do pai"
1014
+
1015
+ #: ../post-types.php:42
1016
+ msgid "Parent Type:"
1017
+ msgstr "Tipo do pai:"
1018
+
1019
+ #: ../post-types.php:43
1020
+ msgid "Edit Type"
1021
+ msgstr "Editar Tipos"
1022
+
1023
+ #: ../post-types.php:44
1024
+ msgid "Update Type"
1025
+ msgstr "Atualizar Tipo"
1026
+
1027
+ #: ../post-types.php:45
1028
+ msgid "Add New Type"
1029
+ msgstr "Adicionar Novo Tipo"
1030
+
1031
+ #: ../post-types.php:46
1032
+ msgid "New Type Name"
1033
+ msgstr "Novo nome de Tipo"
1034
+
1035
+ #: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
1036
+ #: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
1037
+ #: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
1038
+ msgid "You are not allowed to be here"
1039
+ msgstr ""
1040
+
1041
+ #: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
1042
+ #: ../shortcodes.php:178
1043
+ msgid "please specify correct url"
1044
+ msgstr "por favor especifique uma url correta"
1045
+
1046
+ #: ../shortcodes/accordion/accordion_popup.php:10
1047
+ msgid "Insert Accordion or Tabs"
1048
+ msgstr ""
1049
+
1050
+ #: ../shortcodes/accordion/accordion_popup.php:59
1051
+ #, fuzzy
1052
+ msgid "Accordion or Tabs"
1053
+ msgstr "Accordion"
1054
+
1055
+ #: ../shortcodes/accordion/accordion_popup.php:61
1056
+ msgid "Accordion"
1057
+ msgstr "Accordion"
1058
+
1059
+ #: ../shortcodes/accordion/accordion_popup.php:62
1060
+ msgid "Tabs"
1061
+ msgstr "Abas"
1062
+
1063
+ #: ../shortcodes/accordion/accordion_popup.php:66
1064
+ #: ../shortcodes/btns/btns_popup.php:230
1065
+ #: ../shortcodes/divider/divider_popup.php:80
1066
+ #: ../shortcodes/pullquote/quote_popup.php:77
1067
+ #: ../shortcodes/vimeo/vimeo_popup.php:85
1068
+ #: ../shortcodes/youtube/youtube_popup.php:85
1069
+ msgid "Insert"
1070
+ msgstr ""
1071
+
1072
+ #: ../shortcodes/btns/btns_popup.php:10
1073
+ #, fuzzy
1074
+ msgid "Insert Button"
1075
+ msgstr "Botão"
1076
+
1077
+ #: ../shortcodes/btns/btns_popup.php:99
1078
+ msgid "Button Text"
1079
+ msgstr "Texto do Botão"
1080
+
1081
+ #: ../shortcodes/btns/btns_popup.php:105
1082
+ #, fuzzy
1083
+ msgid "Text Color"
1084
+ msgstr "Escolha uma cor"
1085
+
1086
+ #: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
1087
+ #: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
1088
+ msgid "White"
1089
+ msgstr ""
1090
+
1091
+ #: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
1092
+ #: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
1093
+ msgid "Off-White"
1094
+ msgstr ""
1095
+
1096
+ #: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
1097
+ #: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
1098
+ msgid "Black"
1099
+ msgstr ""
1100
+
1101
+ #: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
1102
+ #: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
1103
+ msgid "Light-Gray"
1104
+ msgstr ""
1105
+
1106
+ #: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
1107
+ #: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
1108
+ msgid "Gray"
1109
+ msgstr ""
1110
+
1111
+ #: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
1112
+ #: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
1113
+ msgid "Dark-Gray"
1114
+ msgstr ""
1115
+
1116
+ #: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
1117
+ #: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
1118
+ msgid "Silver"
1119
+ msgstr ""
1120
+
1121
+ #: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
1122
+ #: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
1123
+ msgid "Red"
1124
+ msgstr ""
1125
+
1126
+ #: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
1127
+ #: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
1128
+ msgid "Blue"
1129
+ msgstr ""
1130
+
1131
+ #: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
1132
+ #: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
1133
+ msgid "Green"
1134
+ msgstr ""
1135
+
1136
+ #: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
1137
+ #: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
1138
+ #, fuzzy
1139
+ msgid "Yellow"
1140
+ msgstr "Seguir"
1141
+
1142
+ #: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
1143
+ #: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
1144
+ msgid "Orange"
1145
+ msgstr ""
1146
+
1147
+ #: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
1148
+ #: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
1149
+ msgid "Pink"
1150
+ msgstr ""
1151
+
1152
+ #: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
1153
+ #: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
1154
+ msgid "Purple"
1155
+ msgstr ""
1156
+
1157
+ #: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
1158
+ #: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
1159
+ msgid "Brown"
1160
+ msgstr ""
1161
+
1162
+ #: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
1163
+ #: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
1164
+ msgid "Maroon"
1165
+ msgstr ""
1166
+
1167
+ #: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
1168
+ #: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
1169
+ #, fuzzy
1170
+ msgid "Or Type Hex Color"
1171
+ msgstr "Cor da Borda Superior"
1172
+
1173
+ #: ../shortcodes/btns/btns_popup.php:132
1174
+ msgid "Button Color"
1175
+ msgstr "Cor do Botão"
1176
+
1177
+ #: ../shortcodes/btns/btns_popup.php:161
1178
+ msgid "Text Hover Color"
1179
+ msgstr ""
1180
+
1181
+ #: ../shortcodes/btns/btns_popup.php:188
1182
+ #, fuzzy
1183
+ msgid "Button Background Hover Color"
1184
+ msgstr "Cor de Fundo do Botão"
1185
+
1186
+ #: ../shortcodes/btns/btns_popup.php:190
1187
+ #, fuzzy
1188
+ msgid "30% Primary Color"
1189
+ msgstr "Cor Primária"
1190
+
1191
+ #: ../shortcodes/btns/btns_popup.php:216
1192
+ #, fuzzy
1193
+ msgid "Button Link"
1194
+ msgstr "Link do Botão:"
1195
+
1196
+ #: ../shortcodes/btns/btns_popup.php:222
1197
+ #, fuzzy
1198
+ msgid "Button Link Target"
1199
+ msgstr "Alvo do Link"
1200
+
1201
+ #: ../shortcodes/btns/btns_popup.php:224
1202
+ msgid "Same Window"
1203
+ msgstr "Mesma janela"
1204
+
1205
+ #: ../shortcodes/btns/btns_popup.php:225
1206
+ #, fuzzy
1207
+ msgid "New Window/Tab"
1208
+ msgstr "Nova janela"
1209
+
1210
+ #: ../shortcodes/columns/columns_popup.php:10
1211
+ #, fuzzy
1212
+ msgid "Insert Columns"
1213
+ msgstr "Colunas do Post"
1214
+
1215
+ #: ../shortcodes/divider/divider_popup.php:10
1216
+ #, fuzzy
1217
+ msgid "Insert Divider"
1218
+ msgstr "Divisor"
1219
+
1220
+ #: ../shortcodes/divider/divider_popup.php:70
1221
+ #, fuzzy
1222
+ msgid "Choose a Divider"
1223
+ msgstr "Escolha a barra lateral"
1224
+
1225
+ #: ../shortcodes/divider/divider_popup.php:72
1226
+ msgid "Line"
1227
+ msgstr "Linha"
1228
+
1229
+ #: ../shortcodes/divider/divider_popup.php:73
1230
+ #, fuzzy
1231
+ msgid "Padding Small"
1232
+ msgstr "Padding superior"
1233
+
1234
+ #: ../shortcodes/divider/divider_popup.php:74
1235
+ #, fuzzy
1236
+ msgid "Padding Medium"
1237
+ msgstr "Padding inferior"
1238
+
1239
+ #: ../shortcodes/divider/divider_popup.php:75
1240
+ #, fuzzy
1241
+ msgid "Padding Large"
1242
+ msgstr "Padding superior"
1243
+
1244
+ #: ../shortcodes/icons/icon_popup.php:10
1245
+ #, fuzzy
1246
+ msgid "Insert Icon"
1247
+ msgstr "Remover Ícone"
1248
+
1249
+ #: ../shortcodes/pullquote/quote_popup.php:10
1250
+ msgid "Insert Styled Quote"
1251
+ msgstr ""
1252
+
1253
+ #: ../shortcodes/pullquote/quote_popup.php:61
1254
+ #, fuzzy
1255
+ msgid "Pull-Quote"
1256
+ msgstr "Citações"
1257
+
1258
+ #: ../shortcodes/pullquote/quote_popup.php:62
1259
+ #, fuzzy
1260
+ msgid "Block-Quote"
1261
+ msgstr "Citações"
1262
+
1263
+ #: ../shortcodes/pullquote/quote_popup.php:68
1264
+ msgid "Align"
1265
+ msgstr "Alinhamento"
1266
+
1267
+ #: ../shortcodes/pullquote/quote_popup.php:70
1268
+ msgid "Center"
1269
+ msgstr "Centralizar"
1270
+
1271
+ #: ../shortcodes/pullquote/quote_popup.php:71
1272
+ msgid "Left"
1273
+ msgstr "Esquerda"
1274
+
1275
+ #: ../shortcodes/pullquote/quote_popup.php:72
1276
+ msgid "Right"
1277
+ msgstr "Direita"
1278
+
1279
+ #: ../shortcodes/vimeo/vimeo_popup.php:10
1280
+ msgid "Insert Vimeo Video"
1281
+ msgstr ""
1282
+
1283
+ #: ../shortcodes/vimeo/vimeo_popup.php:66
1284
+ #, fuzzy
1285
+ msgid "Vimeo Link"
1286
+ msgstr "Sem link"
1287
+
1288
+ #: ../shortcodes/vimeo/vimeo_popup.php:70
1289
+ #: ../shortcodes/youtube/youtube_popup.php:70
1290
+ #, fuzzy
1291
+ msgid "Width"
1292
+ msgstr "Largura do Vídeo"
1293
+
1294
+ #: ../shortcodes/vimeo/vimeo_popup.php:72
1295
+ #: ../shortcodes/vimeo/vimeo_popup.php:77
1296
+ #: ../shortcodes/vimeo/vimeo_popup.php:82
1297
+ #: ../shortcodes/youtube/youtube_popup.php:72
1298
+ #: ../shortcodes/youtube/youtube_popup.php:77
1299
+ #: ../shortcodes/youtube/youtube_popup.php:82
1300
+ #, fuzzy
1301
+ msgid "note just use number"
1302
+ msgstr "Altura mínima (Somente um número)"
1303
+
1304
+ #: ../shortcodes/vimeo/vimeo_popup.php:75
1305
+ #: ../shortcodes/youtube/youtube_popup.php:75
1306
+ #, fuzzy
1307
+ msgid "Height"
1308
+ msgstr "Altura do Mapa"
1309
+
1310
+ #: ../shortcodes/vimeo/vimeo_popup.php:80
1311
+ #: ../shortcodes/youtube/youtube_popup.php:80
1312
+ #, fuzzy
1313
+ msgid "(Optional) Max Width"
1314
+ msgstr "Largura Máxima do Vídeo"
1315
+
1316
+ #: ../shortcodes/youtube/youtube_popup.php:10
1317
+ msgid "Insert YouTube Video"
1318
+ msgstr ""
1319
+
1320
+ #: ../shortcodes/youtube/youtube_popup.php:66
1321
+ #, fuzzy
1322
+ msgid "YouTube Link"
1323
+ msgstr "YouTube"
1324
+
1325
+ #: ../template-contact.php:193
1326
+ msgid "Email:"
1327
+ msgstr "Email:"
1328
+
1329
+ #: ../template-contact.php:200
1330
+ #, fuzzy
1331
+ msgid "Message:"
1332
+ msgstr "Mensagem:"
1333
+
1334
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
1335
+ #~ msgstr ""
1336
+ #~ "Nos Desculpe, mas a página que você está tentando visualizar não existe."
1337
+
1338
+ #~ msgid "It looks like this was the result of either:"
1339
+ #~ msgstr "Aparentemente esse foi o resultado de ambos:"
1340
+
1341
+ #~ msgid "a mistyped address"
1342
+ #~ msgstr "um endereço mal-digitado"
1343
+
1344
+ #~ msgid "an out-of-date link"
1345
+ #~ msgstr "um link desatualizado"
1346
+
1347
+ #~ msgid "Sorry, no results were found."
1348
+ #~ msgstr "Desculpe, nenhum resultado foi encontrado."
1349
+
1350
+ #~ msgid "Sorry, no blog entries found."
1351
+ #~ msgstr "Desculpe, nenhum post do blog foi encontrado."
1352
+
1353
+ #~ msgid "From "
1354
+ #~ msgstr "De"
1355
+
1356
+ #~ msgid "Sorry, no portfolio entries found."
1357
+ #~ msgstr "Desculpe, nenhum item do portfólio foi encontrado."
1358
+
1359
+ #~ msgid "Search for:"
1360
+ #~ msgstr "Buscar por:"
1361
+
1362
+ #~ msgid "Search"
1363
+ #~ msgstr "Buscar"
1364
+
1365
+ #~ msgid "&larr; Older posts"
1366
+ #~ msgstr "&larr; Posts Mais Antigos"
1367
+
1368
+ #~ msgid "Newer posts &rarr;"
1369
+ #~ msgstr "Posts mais recentes &rarr;"
1370
+
1371
+ #~ msgid "About Author"
1372
+ #~ msgstr "Sobre o autor"
1373
+
1374
+ #~ msgid "Latest Posts"
1375
+ #~ msgstr "Últimos Posts"
1376
+
1377
+ #~ msgid "on Facebook"
1378
+ #~ msgstr "no Facebook"
1379
+
1380
+ #~ msgid "on Twitter"
1381
+ #~ msgstr "no Twitter"
1382
+
1383
+ #~ msgid "on Google Plus"
1384
+ #~ msgstr "no Google Plus"
1385
+
1386
+ #~ msgid "on Flickr"
1387
+ #~ msgstr "no Flickr"
1388
+
1389
+ #~ msgid "on Vimeo"
1390
+ #~ msgstr "no Vimeo"
1391
+
1392
+ #~ msgid "on linkedin"
1393
+ #~ msgstr "no LinkedIn"
1394
+
1395
+ #~ msgid "on Dribbble"
1396
+ #~ msgstr "no Dribbble"
1397
+
1398
+ #~ msgid "on Pinterest"
1399
+ #~ msgstr "no Pinterest"
1400
+
1401
+ #~ msgid "on Instagram"
1402
+ #~ msgstr "no Instagram"
1403
+
1404
+ #~ msgid "Latest posts from"
1405
+ #~ msgstr "Últimos Posts de"
1406
+
1407
+ #, fuzzy
1408
+ #~ msgid "Install Required Plugins"
1409
+ #~ msgstr "Instalar Plugins Recomendados "
1410
+
1411
+ #, fuzzy
1412
+ #~ msgid "Install Plugins"
1413
+ #~ msgstr "Instalando Plugin: %s"
1414
+
1415
+ #~ msgid "Installing Plugin: %s"
1416
+ #~ msgstr "Instalando Plugin: %s"
1417
+
1418
+ #~ msgid "Something went wrong."
1419
+ #~ msgstr "Alguma coisa deu errado."
1420
+
1421
+ #~ msgid "Return to Required Plugins Installer"
1422
+ #~ msgstr "Retornar para o instalador de Plugins Necessários"
1423
+
1424
+ #~ msgid "Return to the dashboard"
1425
+ #~ msgstr "Retornar para o Painel"
1426
+
1427
+ #~ msgid "Plugin activated successfully."
1428
+ #~ msgstr "Plugin ativado com sucesso."
1429
+
1430
+ #~ msgid "The following plugin was activated successfully:"
1431
+ #~ msgid_plural "The following plugins were activated successfully:"
1432
+ #~ msgstr[0] "O seguinte plugin foi ativado com sucesso:"
1433
+ #~ msgstr[1] "Os seguintes plug-ins foram ativados com sucesso:"
1434
+
1435
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1436
+ #~ msgstr "Todos plug-ins foram instalados e ativados com sucesso. %1$s"
1437
+
1438
+ #~ msgid "Dismiss this notice"
1439
+ #~ msgstr "Dispensar essa notícia"
1440
+
1441
+ #~ msgid "External Link"
1442
+ #~ msgstr "Link Externo"
1443
+
1444
+ #~ msgid "Private Repository"
1445
+ #~ msgstr "Repositório Privado"
1446
+
1447
+ #~ msgid "Pre-Packaged"
1448
+ #~ msgstr "Pré-embalados"
1449
+
1450
+ #~ msgid "WordPress Repository"
1451
+ #~ msgstr "Repositório Wordpress"
1452
+
1453
+ #~ msgid "Required"
1454
+ #~ msgstr "Obrigatório"
1455
+
1456
+ #~ msgid "Recommended"
1457
+ #~ msgstr "Recomendado"
1458
+
1459
+ #~ msgid "Not Installed"
1460
+ #~ msgstr "Não instalado"
1461
+
1462
+ #~ msgid "Installed But Not Activated"
1463
+ #~ msgstr "Instalado mas não Ativado"
1464
+
1465
+ #~ msgid ""
1466
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
1467
+ #~ "Dashboard\">Return to the Dashboard</a>"
1468
+ #~ msgstr ""
1469
+ #~ "Sem plugins instalados ou ativos. <a href=\"%1$s\" title=\"Retornar para "
1470
+ #~ "o Painel\">Retornar para o Painel</a>"
1471
+
1472
+ #~ msgid "Plugin"
1473
+ #~ msgstr "Plugin"
1474
+
1475
+ #~ msgid "Source"
1476
+ #~ msgstr "Fonte"
1477
+
1478
+ #~ msgid "Status"
1479
+ #~ msgstr "Status"
1480
+
1481
+ #~ msgid "Install"
1482
+ #~ msgstr "Instalar"
1483
+
1484
+ #~ msgid "Activate"
1485
+ #~ msgstr "Ativar"
1486
+
1487
+ #~ msgid "Install package not available."
1488
+ #~ msgstr "Pacote de instalação não está disponível."
1489
+
1490
+ #~ msgid ""
1491
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
1492
+ #~ msgstr ""
1493
+ #~ "Baixando pacote de instalação de <span class=\"code\">%s</span>&#8230;"
1494
+
1495
+ #~ msgid "Unpacking the package&#8230;"
1496
+ #~ msgstr "Desembalando a embalagem&#8230;"
1497
+
1498
+ #~ msgid "Installing the plugin&#8230;"
1499
+ #~ msgstr "Instalando o plugin&#8230;"
1500
+
1501
+ #~ msgid "Plugin install failed."
1502
+ #~ msgstr "Instalação do plugin falhou."
1503
+
1504
+ #~ msgid "Plugin installed successfully."
1505
+ #~ msgstr "Plugin instalado com sucesso."
1506
+
1507
+ #~ msgid "Plugin activation failed."
1508
+ #~ msgstr "Ativação do plugin falhou."
1509
+
1510
+ #~ msgid ""
1511
+ #~ "The installation and activation process is starting. This process may "
1512
+ #~ "take a while on some hosts, so please be patient."
1513
+ #~ msgstr ""
1514
+ #~ "O processo de instalação e ativação está começando. Esse processo pode "
1515
+ #~ "demorar um pouco em alguns hosts, então por favor seja paciente."
1516
+
1517
+ #~ msgid "%1$s installed and activated successfully."
1518
+ #~ msgstr "%1$s instalado e ativado com sucesso."
1519
+
1520
+ #~ msgid "Show Details"
1521
+ #~ msgstr "Mostrar detalhes"
1522
+
1523
+ #~ msgid "Hide Details"
1524
+ #~ msgstr "Esconder Detalhes"
1525
+
1526
+ #~ msgid "All installations and activations have been completed."
1527
+ #~ msgstr "Todas instalações e ativações foram completadas."
1528
+
1529
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
1530
+ #~ msgstr "Instalando e Ativando os Plugins %1$s (%2$d/%3$d)"
1531
+
1532
+ #~ msgid ""
1533
+ #~ "The installation process is starting. This process may take a while on "
1534
+ #~ "some hosts, so please be patient."
1535
+ #~ msgstr ""
1536
+ #~ "O processo de instalação está começando. Esse processo pode demorar um "
1537
+ #~ "pouco em alguns hosts, então por favor seja paciente."
1538
+
1539
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1540
+ #~ msgstr "Um erro ocorreu enquanto se instalava %1$s: <strong>%2$s</strong>."
1541
+
1542
+ #~ msgid "The installation of %1$s failed."
1543
+ #~ msgstr "A instalação do %1$s falhou."
1544
+
1545
+ #~ msgid "%1$s installed successfully."
1546
+ #~ msgstr "%1$s instalado com sucesso."
1547
+
1548
+ #~ msgid "All installations have been completed."
1549
+ #~ msgstr "Todas instalações foram completadas."
1550
+
1551
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
1552
+ #~ msgstr "Instalando Plugin %1$s (%2$d/%3$d)"
1553
+
1554
+ #~ msgid "Return to the Dashboard"
1555
+ #~ msgstr "Retornar para o Painel"
1556
+
1557
+ #, fuzzy
1558
+ #~ msgid "Continued"
1559
+ #~ msgstr "Conteúdo"
1560
+
1561
+ #~ msgid "%1$s"
1562
+ #~ msgstr "%1$s"
1563
+
1564
+ #~ msgid "| (Edit)"
1565
+ #~ msgstr "| (Editar)"
1566
+
1567
+ #~ msgid "Your comment is awaiting moderation."
1568
+ #~ msgstr "O seu comentário está aguardando moderação."
1569
+
1570
+ #~ msgid "View your shopping cart"
1571
+ #~ msgstr "Ver seu Carrinho"
1572
+
1573
+ #~ msgid "Your Cart"
1574
+ #~ msgstr "Seu carrinho"
1575
+
1576
+ #~ msgid "Previous Post"
1577
+ #~ msgstr "Post anterior"
1578
+
1579
+ #~ msgid "Next Post"
1580
+ #~ msgstr "Próximo Post"
1581
+
1582
+ #~ msgid "Occupation"
1583
+ #~ msgstr "Cargo"
1584
+
1585
+ #~ msgid "Please enter your Occupation."
1586
+ #~ msgstr "Por favor insira seu cargo."
1587
+
1588
+ #~ msgid "Please enter your Twitter username."
1589
+ #~ msgstr "Por favor insira o seu nome de usuário do Twitter."
1590
+
1591
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
1592
+ #~ msgstr "Por favor insira sua url do Facebook. (inclua o http://)"
1593
+
1594
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
1595
+ #~ msgstr "Por favor insira sua url do Google+. (inclua o http://)"
1596
+
1597
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
1598
+ #~ msgstr "Por favor insira sua url do Flickr. (inclua o http://)"
1599
+
1600
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
1601
+ #~ msgstr "Por favor insira sua url do LinkedIn. (inclua o http://)"
1602
+
1603
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
1604
+ #~ msgstr "Por favor insira sua url do Dribbble. (inclua o http://)"
1605
+
1606
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
1607
+ #~ msgstr "Por favor insira sua url do Pinterest. (inclua o http://)"
1608
+
1609
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
1610
+ #~ msgstr "Por favor insira sua url do Instagram. (inclua o http://)"
1611
+
1612
+ #~ msgid "Post Slider Images"
1613
+ #~ msgstr "Imagens do slider do Post"
1614
+
1615
+ #~ msgid "Feature Page Slider Images"
1616
+ #~ msgstr "Imagens do Slider da Página de Destaque"
1617
+
1618
+ #~ msgid "Remove image"
1619
+ #~ msgstr "Remover Imagem"
1620
+
1621
+ #~ msgid "Add images"
1622
+ #~ msgstr "Adicionar Imagens"
1623
+
1624
+ #~ msgid "Add to gallery"
1625
+ #~ msgstr "Adicionar na galeria"
1626
+
1627
+ #~ msgid "Primary Navigation"
1628
+ #~ msgstr "Navegação Primária"
1629
+
1630
+ #~ msgid "Secondary Navigation"
1631
+ #~ msgstr "Navegação Secundária"
1632
+
1633
+ #~ msgid "Mobile Navigation"
1634
+ #~ msgstr "Navegação Mobile"
1635
+
1636
+ #~ msgid "Topbar Navigation"
1637
+ #~ msgstr "Navegação da Barra superior"
1638
+
1639
+ #~ msgid "Footer Navigation"
1640
+ #~ msgstr "Navegação do Rodapé"
1641
+
1642
+ #~ msgid "All Blog Posts"
1643
+ #~ msgstr "Todos Posts do Blog"
1644
+
1645
+ #~ msgid "Text"
1646
+ #~ msgstr "Texto"
1647
+
1648
+ #~ msgid "Portrait Image"
1649
+ #~ msgstr "Imagem do Retrato"
1650
+
1651
+ #~ msgid "Landscape Image"
1652
+ #~ msgstr "Imagem Paisagem"
1653
+
1654
+ #~ msgid "Display Sidebar?"
1655
+ #~ msgstr "Mostrar Barra lateral?"
1656
+
1657
+ #~ msgid "Choose if layout is fullwidth or sidebar"
1658
+ #~ msgstr "Escolha se o seu layout é lateral ou fullwidth"
1659
+
1660
+ #~ msgid "Author Info"
1661
+ #~ msgstr "Informações do Autor"
1662
+
1663
+ #~ msgid "Display an author info box?"
1664
+ #~ msgstr "Mostrar uma caixa de informações do autor?"
1665
+
1666
+ #~ msgid "Posts Carousel"
1667
+ #~ msgstr "Carrossel dos Posts"
1668
+
1669
+ #~ msgid "Display a carousel with similar or recent posts?"
1670
+ #~ msgstr "Mostrar um carrossel com os posts similares ou mais recentes?"
1671
+
1672
+ #~ msgid "Yes - Display Recent Posts"
1673
+ #~ msgstr "Sim - Mostrar posts mais recentes"
1674
+
1675
+ #~ msgid "Yes - Display Similar Posts"
1676
+ #~ msgstr "SIm - Mostrar posts similares"
1677
+
1678
+ #~ msgid "ex. Similar Posts"
1679
+ #~ msgstr "ex: Posts similares"
1680
+
1681
+ #~ msgid "Blog List Options"
1682
+ #~ msgstr "Opções do Blog em Lista"
1683
+
1684
+ #~ msgid "Blog Category"
1685
+ #~ msgstr "Categoria de Blog"
1686
+
1687
+ #~ msgid "Select all blog posts or a specific category to show"
1688
+ #~ msgstr ""
1689
+ #~ "Selecione todos posts de blog ou uma categoria específica para aparecer"
1690
+
1691
+ #~ msgid "How Many Posts Per Page"
1692
+ #~ msgstr "Quantos posts por página"
1693
+
1694
+ #~ msgid "Display Post Content as:"
1695
+ #~ msgstr "Mostrar conteúdo do Post como:"
1696
+
1697
+ #~ msgid "Summary"
1698
+ #~ msgstr "Resumo"
1699
+
1700
+ #~ msgid "Full"
1701
+ #~ msgstr "Cheio"
1702
+
1703
+ #~ msgid "Sidebar Options"
1704
+ #~ msgstr "Opções da Barra Lateral"
1705
+
1706
+ #~ msgid ""
1707
+ #~ "Sorry, no products matched your selection. Please choose a different "
1708
+ #~ "combination."
1709
+ #~ msgstr ""
1710
+ #~ "Desculpe, nenhum produto se encaixa na sua seleção. Por favor escolha uma "
1711
+ #~ "combinação diferente."
1712
+
1713
+ #~ msgid ""
1714
+ #~ "Sorry, this product is unavailable. Please choose a different combination."
1715
+ #~ msgstr ""
1716
+ #~ "Desculpe, esse produto não está disponível. Por favor escolha uma "
1717
+ #~ "combinação diferente."
1718
+
1719
+ #~ msgid "Daily Archives: %s"
1720
+ #~ msgstr "Arquivos Diários: %s"
1721
+
1722
+ #~ msgid "Monthly Archives: %s"
1723
+ #~ msgstr "Arquivos Mensais: %s"
1724
+
1725
+ #~ msgid "Yearly Archives: %s"
1726
+ #~ msgstr "Arquivos Anuais: %s"
1727
+
1728
+ #~ msgid "Author Archives: %s"
1729
+ #~ msgstr "Arquivos do Autor: %s"
1730
+
1731
+ #~ msgid "Search Results for %s"
1732
+ #~ msgstr "Resultados da busca para %s"
1733
+
1734
+ #~ msgid "Not Found"
1735
+ #~ msgstr "Não encontrado"
1736
+
1737
+ #~ msgid "Something went wrong with the plugin API."
1738
+ #~ msgstr "Alguma coisa deu errada com a API do plugin."
1739
+
1740
+ #~ msgid "All plugins installed and activated successfully. %s"
1741
+ #~ msgstr "Todos plug-ins foram instalados e ativados com sucesso. %s"
1742
+
1743
+ #~ msgid "Primary Sidebar"
1744
+ #~ msgstr "Barra lateral Primária"
1745
+
1746
+ #~ msgid "Topbar Widget"
1747
+ #~ msgstr "Widget da Barra superior"
1748
+
1749
+ #~ msgid "Footer Column 1"
1750
+ #~ msgstr "Coluna 1 do Rodapé"
1751
+
1752
+ #~ msgid "Footer Column 2"
1753
+ #~ msgstr "Coluna 2 do Rodapé"
1754
+
1755
+ #~ msgid "Footer Column 3"
1756
+ #~ msgstr "Coluna 3 do Rodapé"
1757
+
1758
+ #~ msgid "Footer Column 4"
1759
+ #~ msgstr "Coluna 4 do Rodapé"
1760
+
1761
+ #~ msgid "Use this widget to add a Vcard to your site"
1762
+ #~ msgstr "Use esse widget para adicionar um Vcard no seu site"
1763
+
1764
+ #~ msgid "Virtue: Contact/Vcard"
1765
+ #~ msgstr "Virtue: Contato/Vcard"
1766
+
1767
+ #~ msgid "Title:"
1768
+ #~ msgstr "Título: "
1769
+
1770
+ #~ msgid "Company Name:"
1771
+ #~ msgstr "Nome da Empresa:"
1772
+
1773
+ #~ msgid "Street Address:"
1774
+ #~ msgstr "Endereço:"
1775
+
1776
+ #~ msgid "City/Locality:"
1777
+ #~ msgstr "Cidade/Localização:"
1778
+
1779
+ #~ msgid "State/Region:"
1780
+ #~ msgstr "Estado/Região:"
1781
+
1782
+ #~ msgid "Zipcode/Postal Code:"
1783
+ #~ msgstr "CEP:"
1784
+
1785
+ #~ msgid "Mobile Telephone:"
1786
+ #~ msgstr "Telefone Móvel:"
1787
+
1788
+ #~ msgid "Fixed Telephone:"
1789
+ #~ msgstr "Telefone fixo:"
1790
+
1791
+ #~ msgid "Simple way to add Social Icons"
1792
+ #~ msgstr "Maneira simples para adicionar ícones sociais"
1793
+
1794
+ #~ msgid "Virtue: Social Links"
1795
+ #~ msgstr "Virtue: Links Sociais"
1796
+
1797
+ #~ msgid "Facebook:"
1798
+ #~ msgstr "Facebook:"
1799
+
1800
+ #~ msgid "Twitter:"
1801
+ #~ msgstr "Twitter:"
1802
+
1803
+ #~ msgid "Instagram:"
1804
+ #~ msgstr "Instagram:"
1805
+
1806
+ #~ msgid "GooglePlus:"
1807
+ #~ msgstr "Google+:"
1808
+
1809
+ #~ msgid "Flickr:"
1810
+ #~ msgstr "Flickr:"
1811
+
1812
+ #~ msgid "Vimeo:"
1813
+ #~ msgstr "Vimeo:"
1814
+
1815
+ #~ msgid "Youtube:"
1816
+ #~ msgstr "Youtube:"
1817
+
1818
+ #~ msgid "Pinterest:"
1819
+ #~ msgstr "Pinterest:"
1820
+
1821
+ #~ msgid "Dribbble:"
1822
+ #~ msgstr "Dribbble:"
1823
+
1824
+ #~ msgid "Linkedin:"
1825
+ #~ msgstr "LinkedIn:"
1826
+
1827
+ #~ msgid "Tumblr:"
1828
+ #~ msgstr "Tumblr:"
1829
+
1830
+ #~ msgid "VK:"
1831
+ #~ msgstr "Virtue:"
1832
+
1833
+ #~ msgid "RSS:"
1834
+ #~ msgstr "RSS:"
1835
+
1836
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
1837
+ #~ msgstr "Isso mostra os posts mais recentes com uma thumbnail"
1838
+
1839
+ #~ msgid "Virtue: Recent Posts"
1840
+ #~ msgstr "Virtue: Posts Recentes"
1841
+
1842
+ #~ msgid "Recent Posts"
1843
+ #~ msgstr "Posts Recentes"
1844
+
1845
+ #~ msgid "Number of posts to show:"
1846
+ #~ msgstr "Número de posts para mostrar:"
1847
+
1848
+ #~ msgid "Limit to Catagory (Optional):"
1849
+ #~ msgstr "Limitar para Categoria (Opcional):"
1850
+
1851
+ #~ msgid ""
1852
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
1853
+ #~ msgstr ""
1854
+ #~ "Isso mostra uma grade de imagens destacadas dos posts mais recentes e dos "
1855
+ #~ "itens dos portfólios"
1856
+
1857
+ #, fuzzy
1858
+ #~ msgid "Virtue: Image Grid"
1859
+ #~ msgstr "Virtue: Imagem"
1860
+
1861
+ #~ msgid "Grid Choice:"
1862
+ #~ msgstr "Escolha da Grade:"
1863
+
1864
+ #~ msgid "Blog Posts"
1865
+ #~ msgstr "Posts do Blog"
1866
+
1867
+ #~ msgid "If Post - Choose Category (Optional):"
1868
+ #~ msgstr "Se Post - Escolha a Categoria (Opcional):"
1869
+
1870
+ #~ msgid "If Portfolio - Choose Type (Optional):"
1871
+ #~ msgstr "Se Portfólio - Escolha o tipo (Opcional):"
1872
+
1873
+ #~ msgid "Number of images to show:"
1874
+ #~ msgstr "Número de imagens para mostrar:"
1875
+
1876
+ #~ msgid "This allows for an image and a simple about text."
1877
+ #~ msgstr "Isso permite que uma imagem e um simples texto sobre."
1878
+
1879
+ #~ msgid "Virtue: Image"
1880
+ #~ msgstr "Virtue: Imagem"
1881
+
1882
+ #~ msgid "Lightbox"
1883
+ #~ msgstr "Lightbox"
1884
+
1885
+ #~ msgid "Upload"
1886
+ #~ msgstr "Enviar"
1887
+
1888
+ #~ msgid "Image opens in"
1889
+ #~ msgstr "A imagem abre em"
1890
+
1891
+ #~ msgid "Image Link (optional)"
1892
+ #~ msgstr "Link da Imagem (Opcional)"
1893
+
1894
+ #~ msgid "Text/Caption (optional)"
1895
+ #~ msgstr "Texto/Legenda (opcional)"
1896
+
1897
+ #~ msgid "Edit Account"
1898
+ #~ msgstr "Editar Conta"
1899
+
1900
+ #~ msgid "Logout"
1901
+ #~ msgstr "Logout"
1902
+
1903
+ #~ msgid "(Edit)"
1904
+ #~ msgstr "(Editar)"
1905
+
1906
+ #~ msgid "One Response "
1907
+ #~ msgid_plural "%1$s Responses "
1908
+ #~ msgstr[0] "Uma resposta"
1909
+ #~ msgstr[1] "%1$s Respostas"
1910
+
1911
+ #~ msgid "&larr; Older comments"
1912
+ #~ msgstr "&larr; Comentários mais antigos"
1913
+
1914
+ #~ msgid "Newer comments &rarr;"
1915
+ #~ msgstr "Comentários mais recentes &rarr;"
1916
+
1917
+ #~ msgid "Comments are closed."
1918
+ #~ msgstr "Comentários estão fechados."
1919
+
1920
+ #~ msgid "Leave a Reply"
1921
+ #~ msgstr "Deixe uma resposta"
1922
+
1923
+ #~ msgid "Leave a Reply to %s"
1924
+ #~ msgstr "Deixe uma resposta para %s"
1925
+
1926
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
1927
+ #~ msgstr ""
1928
+ #~ "Você deve estar <a href=\"%s\">logado</a> para postar um comentário."
1929
+
1930
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
1931
+ #~ msgstr "Você está logado como <a href=\"%s/wp-admin/profile.php\">%s</a>."
1932
+
1933
+ #~ msgid "Log out of this account"
1934
+ #~ msgstr "Sair dessa conta"
1935
+
1936
+ #~ msgid "Log out &raquo;"
1937
+ #~ msgstr "Sair &raquo;"
1938
+
1939
+ #~ msgid " <span>*</span>"
1940
+ #~ msgstr "<span>*</span>"
1941
+
1942
+ #~ msgid "Email (will not be published)"
1943
+ #~ msgstr "Email (não será publicado)"
1944
+
1945
+ #~ msgid "Website"
1946
+ #~ msgstr "Website"
1947
+
1948
+ #~ msgid "Submit Comment"
1949
+ #~ msgstr "Enviar Comentário"
1950
+
1951
+ #~ msgid "Pages:"
1952
+ #~ msgstr "Páginas:"
1953
+
1954
+ #~ msgid "by"
1955
+ #~ msgstr "por"
1956
+
1957
+ #~ msgid "posted in:"
1958
+ #~ msgstr "postado em:"
1959
+
1960
+ #~ msgid "Menu"
1961
+ #~ msgstr "Menu"
1962
+
1963
+ #~ msgid "Recent Projects"
1964
+ #~ msgstr "Projetos Recentes"
1965
+
1966
+ #~ msgid "Similar Posts"
1967
+ #~ msgstr "Posts Similares"
1968
+
1969
+ #~ msgid "Latest from the Blog"
1970
+ #~ msgstr "Últimas do Blog"
1971
+
1972
+ #~ msgid "READ MORE"
1973
+ #~ msgstr "Leia mais"
1974
+
1975
+ #~ msgid "Featured Projects"
1976
+ #~ msgstr "Projetos Destacados"
1977
+
1978
+ #~ msgid "Copy and Paste this code into the theme options import feature"
1979
+ #~ msgstr "Copie e cole esse código na função de importar nas opções do tema"
1980
+
1981
+ #~ msgid "There are no previous options"
1982
+ #~ msgstr "Não existem opções anteriores"
1983
+
1984
+ #~ msgid "Main Settings"
1985
+ #~ msgstr "Opções Principais"
1986
+
1987
+ #~ msgid "Welcome to Virtue Theme Options"
1988
+ #~ msgstr "Seja bem-vindo as Opções do Tema Virtue"
1989
+
1990
+ #~ msgid "This theme was developed by"
1991
+ #~ msgstr "Esse tema foi desenvolvido por"
1992
+
1993
+ #~ msgid "For theme documentation visit"
1994
+ #~ msgstr "Para documentação do tema visite"
1995
+
1996
+ #~ msgid "For support please visit"
1997
+ #~ msgstr "Para suporte por favor visite"
1998
+
1999
+ #~ msgid "Site Layout Style"
2000
+ #~ msgstr "Estilo do Layout do Site"
2001
+
2002
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2003
+ #~ msgstr "Escolha o layout estreito ou largo para o site"
2004
+
2005
+ #~ msgid "Footer Widget Layout"
2006
+ #~ msgstr "Layout de Widgets do Rodapé"
2007
+
2008
+ #~ msgid "Select how many columns for footer widgets"
2009
+ #~ msgstr "Escolha quantas colunas para os espaços de widgets no rodapé"
2010
+
2011
+ #~ msgid "Logo Options"
2012
+ #~ msgstr "Opções do Logo"
2013
+
2014
+ #~ msgid "Logo Layout"
2015
+ #~ msgstr "Layout do Logo"
2016
+
2017
+ #~ msgid "Choose how you want your logo to be laid out"
2018
+ #~ msgstr "Escolha como você quer que seu logo seja posicionado"
2019
+
2020
+ #~ msgid "Logo"
2021
+ #~ msgstr "Logo"
2022
+
2023
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
2024
+ #~ msgstr "Envie seu logo. Se deixado em branco, o nome do seu site será usado"
2025
+
2026
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
2027
+ #~ msgstr "Envie seu Logo @2x para Telas Retina"
2028
+
2029
+ #~ msgid "Should be twice the pixel size of your normal logo."
2030
+ #~ msgstr "Deve ser o dobro do tamanho em pixels do seu logo normal."
2031
+
2032
+ #~ msgid "Sitename Logo Font"
2033
+ #~ msgstr "Fonte do Logo do Site"
2034
+
2035
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
2036
+ #~ msgstr ""
2037
+ #~ "Escolha o Tamanho e o Estilo para o nome do site, caso não use um logo."
2038
+
2039
+ #~ msgid "Site Tagline - Below Logo\""
2040
+ #~ msgstr "Tagline do Site - Embaixo do Logo"
2041
+
2042
+ #~ msgid "An optional line of text below your logo"
2043
+ #~ msgstr "Uma linha opcional de texto embaixo do logo"
2044
+
2045
+ #~ msgid "Site Tagline Font"
2046
+ #~ msgstr "Fonte da Tagline do Site"
2047
+
2048
+ #~ msgid "Choose size and style your site tagline"
2049
+ #~ msgstr "Escolha o Tamanho e o Estilo para o slogan do site"
2050
+
2051
+ #~ msgid "Logo Spacing"
2052
+ #~ msgstr "Espaçamento do Logo"
2053
+
2054
+ #~ msgid "Top Spacing"
2055
+ #~ msgstr "Espaçamento Superior"
2056
+
2057
+ #~ msgid "Bottom Spacing"
2058
+ #~ msgstr "Espaço Inferior"
2059
+
2060
+ #~ msgid "Left Spacing"
2061
+ #~ msgstr "Espaçamento da Esquerda"
2062
+
2063
+ #~ msgid "Right Spacing"
2064
+ #~ msgstr "Espaçamento da Direita"
2065
+
2066
+ #~ msgid "Primary Menu Spacing"
2067
+ #~ msgstr "Espaçamento do Menu Primário"
2068
+
2069
+ #~ msgid "Sitewide Banner"
2070
+ #~ msgstr "Banner pelo site"
2071
+
2072
+ #~ msgid "Upload a banner for bottom of header."
2073
+ #~ msgstr "Envie um banner para o rodapé do cabeçalho"
2074
+
2075
+ #~ msgid "Topbar Settings"
2076
+ #~ msgstr "Opções da Barra superior"
2077
+
2078
+ #~ msgid "Use Topbar?"
2079
+ #~ msgstr "Usar Barra Superior?"
2080
+
2081
+ #~ msgid "Choose to show or hide topbar"
2082
+ #~ msgstr "Escolha mostrar ou esconder a barra superior"
2083
+
2084
+ #~ msgid "Use Topbar Icon Menu?"
2085
+ #~ msgstr "Usar Menu de ícones na Barra superior?"
2086
+
2087
+ #~ msgid "Choose to show or hide topbar icon Menu"
2088
+ #~ msgstr "Escolha mostrar ou esconder o menu de ícones na barra superior"
2089
+
2090
+ #~ msgid "Topbar Icon Menu"
2091
+ #~ msgstr "Menu de Ícones da Barra superior"
2092
+
2093
+ #~ msgid "Choose your icons for the topbar icon menu."
2094
+ #~ msgstr "Escolha seus ícones para o menu de ícones na barra superior."
2095
+
2096
+ #~ msgid "Show Cart total in topbar?"
2097
+ #~ msgstr "Mostrar total do carrinho na barra superior?"
2098
+
2099
+ #~ msgid "This only works if using woocommerce"
2100
+ #~ msgstr "Isso funciona somente se estiver utilizando woocommerce."
2101
+
2102
+ #~ msgid "Display Search in Topbar?"
2103
+ #~ msgstr "Mostrar busca na barra superior?"
2104
+
2105
+ #~ msgid "Choose to show or hide search in topbar"
2106
+ #~ msgstr "Escolha mostrar ou esconder a busca na barra superior"
2107
+
2108
+ #~ msgid "Enable widget area in right of Topbar?"
2109
+ #~ msgstr "Habilitar área de widgets na direita da Barra Superior?"
2110
+
2111
+ #~ msgid ""
2112
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2113
+ #~ "the widget area)"
2114
+ #~ msgstr ""
2115
+ #~ "Note que isso irá esconder \"Remover busca\" (Você pode reativar "
2116
+ #~ "adicionando na área de widgets)"
2117
+
2118
+ #~ msgid "Topbar Layout Switch"
2119
+ #~ msgstr "Switch do Layout da Barra superior"
2120
+
2121
+ #~ msgid "This moves the left items to the right and right items to the left."
2122
+ #~ msgstr "Isso move os itens da esquerda para a direita e vice-versa."
2123
+
2124
+ #~ msgid "Slider Settings"
2125
+ #~ msgstr "Opções do Slider"
2126
+
2127
+ #~ msgid "Home Page Slider Options"
2128
+ #~ msgstr "Opções do Slider da Home"
2129
+
2130
+ #~ msgid "Choose a Home Image Slider"
2131
+ #~ msgstr "Escolha um Slider para a Home"
2132
+
2133
+ #~ msgid "If you don't want an image slider on your home page choose none."
2134
+ #~ msgstr ""
2135
+ #~ "Se você não quer um slider de imagens na sua home escolha \"Nenhum\"."
2136
+
2137
+ #~ msgid "Use large images for best results."
2138
+ #~ msgstr "Use imagens grandes para melhores resultados."
2139
+
2140
+ #~ msgid "Slider Max Height"
2141
+ #~ msgstr "Altura máx do Slider"
2142
+
2143
+ #~ msgid "Note: does not work if images are smaller than max."
2144
+ #~ msgstr "Nota: Não funciona caso as imagens sejam menores que o máximo."
2145
+
2146
+ #~ msgid "Slider Max Width"
2147
+ #~ msgstr "Largura máx do Slider"
2148
+
2149
+ #~ msgid "Auto Play?"
2150
+ #~ msgstr "Play automático?"
2151
+
2152
+ #~ msgid "This determines if a slider automatically scrolls"
2153
+ #~ msgstr "Isso determina se um slider desliza automaticamente"
2154
+
2155
+ #~ msgid "Slider Pause Time"
2156
+ #~ msgstr "Tempo de Pausa do Slider"
2157
+
2158
+ #~ msgid "How long to pause on each slide, in milliseconds."
2159
+ #~ msgstr "Quanto tempo levará as pausas em cada slide, em milissegundos."
2160
+
2161
+ #~ msgid "Transition Type"
2162
+ #~ msgstr "Tipo de Transição"
2163
+
2164
+ #~ msgid "Choose a transition type"
2165
+ #~ msgstr "Escolha o tipo de transição"
2166
+
2167
+ #~ msgid "Slider Transition Time"
2168
+ #~ msgstr "Tempo de Transição do Slider"
2169
+
2170
+ #~ msgid "How long for slide transitions, in milliseconds."
2171
+ #~ msgstr "Quanto tempo levará as transições de slide, em milissegundos."
2172
+
2173
+ #~ msgid "Show Captions?"
2174
+ #~ msgstr "Mostrar legendas?"
2175
+
2176
+ #~ msgid "Choose to show or hide captions"
2177
+ #~ msgstr "Escolha mostrar ou esconder "
2178
+
2179
+ #~ msgid "If your using a video on the home page place video embed code here."
2180
+ #~ msgstr "Caso estiver usando um vídeo na Home cole o código dele aqui."
2181
+
2182
+ #~ msgid "Mobile Slider"
2183
+ #~ msgstr "Slider Mobile"
2184
+
2185
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
2186
+ #~ msgstr "Crie um slideshow mais leve para seus visitantes mobile."
2187
+
2188
+ #~ msgid "Would you like to use this feature?"
2189
+ #~ msgstr "Você deseja usar essa função?"
2190
+
2191
+ #~ msgid ""
2192
+ #~ "Choose if you would like to show a different slider on your home page for "
2193
+ #~ "your mobile visitors."
2194
+ #~ msgstr ""
2195
+ #~ "Escolha se você deseja mostrar um slideshow diferente na página inicial "
2196
+ #~ "para os visitantes mobile."
2197
+
2198
+ #~ msgid "Choose a Slider for Mobile"
2199
+ #~ msgstr "Escolha a barra lateral para Mobile"
2200
+
2201
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
2202
+ #~ msgstr ""
2203
+ #~ "Escolha qual slideshow você quer mostrar para os visitantes mobiles."
2204
+
2205
+ #~ msgid "Home Layout"
2206
+ #~ msgstr "Layout da Home"
2207
+
2208
+ #~ msgid "Display a sidebar on the Home Page?"
2209
+ #~ msgstr "Mostrar uma barra lateral na home?"
2210
+
2211
+ #~ msgid "This determines if there is a sidebar on the home page."
2212
+ #~ msgstr "Isso determina se irá ter ou não uma barra lateral na Home."
2213
+
2214
+ #~ msgid "Choose a Sidebar for your Home Page"
2215
+ #~ msgstr "Escolha a barra lateral para a página inicial"
2216
+
2217
+ #~ msgid "Homepage Layout Manager"
2218
+ #~ msgstr "Administrador do layout da Página inicial"
2219
+
2220
+ #~ msgid "Organize how you want the layout to appear on the homepage"
2221
+ #~ msgstr "Organize como você quer que o layout apareça na página inicial"
2222
+
2223
+ #~ msgid "Latest Blog Posts"
2224
+ #~ msgstr "Últimos Posts do Blog"
2225
+
2226
+ #~ msgid "Portfolio Carousel"
2227
+ #~ msgstr "Carrossel do Portfólio"
2228
+
2229
+ #~ msgid "Icon Menu"
2230
+ #~ msgstr "Menu de Ícones"
2231
+
2232
+ #~ msgid "Page Content"
2233
+ #~ msgstr "Conteúdo da Página"
2234
+
2235
+ #~ msgid "Home Blog Settings"
2236
+ #~ msgstr "Opções do Blog na Home"
2237
+
2238
+ #~ msgid "Home Blog Title"
2239
+ #~ msgstr "Título do Blog na Home"
2240
+
2241
+ #, fuzzy
2242
+ #~ msgid "ex: Latest from the blog"
2243
+ #~ msgstr "Últimas do Blog"
2244
+
2245
+ #~ msgid "Choose How many posts on Homepage"
2246
+ #~ msgstr "Escolha quantos posts irão na Home"
2247
+
2248
+ #~ msgid "Limit posts to a Category"
2249
+ #~ msgstr "Limitar posts para uma Categoria"
2250
+
2251
+ #~ msgid "Leave blank to select all"
2252
+ #~ msgstr "Deixe em branco para selecionar todos"
2253
+
2254
+ #~ msgid "Home Portfolio Carousel Settings"
2255
+ #~ msgstr "Opções do Carrossel do Portfólio na Home"
2256
+
2257
+ #~ msgid "Home Portfolio Carousel title"
2258
+ #~ msgstr "Título do Carrossel do Portfólio na Home"
2259
+
2260
+ #, fuzzy
2261
+ #~ msgid "ex: Portfolio Carousel title"
2262
+ #~ msgstr "Título do Carrossel do Portfólio na Home"
2263
+
2264
+ #~ msgid "Portfolio Carousel Category Type"
2265
+ #~ msgstr "Categoria do Carrossel do Portfólio"
2266
+
2267
+ #~ msgid "Leave blank to select all types"
2268
+ #~ msgstr "Deixe em branco para selecionar todos os tipos"
2269
+
2270
+ #~ msgid "Choose how many portfolio items are in carousel"
2271
+ #~ msgstr "Escolha quantos itens do portfólio irão no carrossel"
2272
+
2273
+ #~ msgid "Portfolio Carousel Order by"
2274
+ #~ msgstr "Ordenar Carrossel do Portfólio por"
2275
+
2276
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
2277
+ #~ msgstr ""
2278
+ #~ "Escolha como os itens do portfólio devem ser ordenados no carrossel."
2279
+
2280
+ #~ msgid "Display Portfolio Types under Title"
2281
+ #~ msgstr "Mostrar tipos do portfólio embaixo do Título"
2282
+
2283
+ #~ msgid "Home Icon Menu"
2284
+ #~ msgstr "Menu de Ícones da Home"
2285
+
2286
+ #~ msgid "Choose your icons for the icon menu."
2287
+ #~ msgstr "Escolha seus ícones para o menu de ícones."
2288
+
2289
+ #~ msgid "Choose how many columns in each row"
2290
+ #~ msgstr "Escolha quantas colunas em cada linha"
2291
+
2292
+ #, fuzzy
2293
+ #~ msgid "Page Content Options"
2294
+ #~ msgstr "Conteúdo da Página"
2295
+
2296
+ #~ msgid "Latest Post Display"
2297
+ #~ msgstr "Exibição dos Últimos Posts"
2298
+
2299
+ #, fuzzy
2300
+ #~ msgid ""
2301
+ #~ "If Latest Post page is font page. Choose to show full post or post "
2302
+ #~ "excerpt."
2303
+ #~ msgstr ""
2304
+ #~ "Caso os \"Últimos Posts\" são a página inicial. Escolha os posts "
2305
+ #~ "completos ou somente o resumo."
2306
+
2307
+ #~ msgid "Shop Settings"
2308
+ #~ msgstr "Opções da Loja"
2309
+
2310
+ #~ msgid "Shop Archive Page Settings"
2311
+ #~ msgstr "Opções da página de arquivo da loja"
2312
+
2313
+ #, fuzzy
2314
+ #~ msgid "Display the sidebar on shop archives?"
2315
+ #~ msgstr "Mostrar a barra lateral nos arquivos do blog?"
2316
+
2317
+ #, fuzzy
2318
+ #~ msgid ""
2319
+ #~ "This determines if there is a sidebar on the shop and category pages."
2320
+ #~ msgstr ""
2321
+ #~ "Isso determina se irá ter ou não uma barra lateral nas páginas de "
2322
+ #~ "categorias do blog."
2323
+
2324
+ #~ msgid "Choose a Sidebar for your shop page"
2325
+ #~ msgstr "Escolha a barra lateral para a página da loja"
2326
+
2327
+ #~ msgid "How many products per page"
2328
+ #~ msgstr "Quantos produtos por página"
2329
+
2330
+ #~ msgid "Show Ratings in Shop and Category Pages"
2331
+ #~ msgstr "Mostrar avaliações nas Páginas de Categoria e na Loja"
2332
+
2333
+ #~ msgid ""
2334
+ #~ "This determines if the rating is displayed in the product archive pages"
2335
+ #~ msgstr ""
2336
+ #~ "Isso determina se as classificações são mostradas nas páginas de arquivo "
2337
+ #~ "dos produtos"
2338
+
2339
+ #~ msgid "Shop Product Title Settings"
2340
+ #~ msgstr "Opções do Título dos Produtos da Loja"
2341
+
2342
+ #~ msgid "Shop & archive Product title Font"
2343
+ #~ msgstr "Fonte do Título do produto na loja e nos arquivos"
2344
+
2345
+ #~ msgid ""
2346
+ #~ "Choose Size and Style for product titles on category and archive pages."
2347
+ #~ msgstr ""
2348
+ #~ "Escolha o Tamanho e o Estilo para o título dos produtos nas páginas de "
2349
+ #~ "categoria e arquivos."
2350
+
2351
+ #~ msgid "Set Product Title to Uppercase?"
2352
+ #~ msgstr "Definir título do produto em letras maiúsculas?"
2353
+
2354
+ #~ msgid "This makes your product titles uppercase on Category pages"
2355
+ #~ msgstr ""
2356
+ #~ "Isso faz com que os títulos dos produtos fiquem maiúsculos nas páginas de "
2357
+ #~ "Categoria"
2358
+
2359
+ #~ msgid "Product title Min Height"
2360
+ #~ msgstr "Altura mínima do título dos Produtos"
2361
+
2362
+ #~ msgid ""
2363
+ #~ "If your titles are long increase this to help align your products height."
2364
+ #~ msgstr ""
2365
+ #~ "Se os seus títulos são longos aumente isso para ajudar a alinhar a altura "
2366
+ #~ "dos produtos."
2367
+
2368
+ #~ msgid "Product Image Sizes"
2369
+ #~ msgstr "Tamanhos da Imagem do Produto"
2370
+
2371
+ #, fuzzy
2372
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2373
+ #~ msgstr "Habilitar Proporção das Imagens do Produto nas Páginas de Catálogo"
2374
+
2375
+ #~ msgid ""
2376
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2377
+ #~ "recommended width: 270px for Catalog Images"
2378
+ #~ msgstr ""
2379
+ #~ "Caso desligue as dimensões da imagem elas serão setadas pelas "
2380
+ #~ "configurações do woocommerce - largura recomendada: 270px para imagens do "
2381
+ #~ "Catálogo"
2382
+
2383
+ #, fuzzy
2384
+ #~ msgid "Enable Product Image Crop on product Page"
2385
+ #~ msgstr "Habilitar Proporção das Imagens do Produto na Página do Produto"
2386
+
2387
+ #~ msgid ""
2388
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2389
+ #~ "recommended width: 468px for Single Product Image"
2390
+ #~ msgstr ""
2391
+ #~ "Caso desligue as dimensões da imagem elas serão setadas pelas "
2392
+ #~ "configurações do woocommerce - largura recomendada: 468px para imagens da "
2393
+ #~ "página do produto"
2394
+
2395
+ #~ msgid "Product Page Settings"
2396
+ #~ msgstr "Opções da Página do Produto"
2397
+
2398
+ #~ msgid "Display product tabs?"
2399
+ #~ msgstr "Mostrar abas do produto?"
2400
+
2401
+ #~ msgid "This determines if product tabs are displayed"
2402
+ #~ msgstr "Isso determina se as abas do produto são mostradas"
2403
+
2404
+ #~ msgid "Display related products?"
2405
+ #~ msgstr "Mostrar produtos relacionados?"
2406
+
2407
+ #~ msgid "This determines related products are displayed"
2408
+ #~ msgstr "Isso determina se os produtos relacionados são mostrados"
2409
+
2410
+ #~ msgid "Basic Styling"
2411
+ #~ msgstr "Estilo Básico"
2412
+
2413
+ #~ msgid "Basic Stylng"
2414
+ #~ msgstr "Estilo Básico"
2415
+
2416
+ #~ msgid "Theme Skin Stylesheet"
2417
+ #~ msgstr "Folha de Estilos do Tema"
2418
+
2419
+ #~ msgid ""
2420
+ #~ "Note* changes made in options panel will override this stylesheet. "
2421
+ #~ "Example: Colors set in typography."
2422
+ #~ msgstr ""
2423
+ #~ "Nota* mudanças feitas no painel de opções irão sobrescrever essa folha de "
2424
+ #~ "estilos. Exemplo: Cores definidas em \"Tipografia\""
2425
+
2426
+ #~ msgid "Choose the default Highlight color for your site."
2427
+ #~ msgstr "Escolha a cor padrão de destaque para seu site."
2428
+
2429
+ #~ msgid "20% lighter than Primary Color"
2430
+ #~ msgstr "Cor primária 20% mais clara"
2431
+
2432
+ #~ msgid "This is used for hover effects"
2433
+ #~ msgstr "Isso é usado para efeitos ao passar o mouse"
2434
+
2435
+ #~ msgid "Sitewide Gray Fonts"
2436
+ #~ msgstr "Fontes Cinzas pelo Site"
2437
+
2438
+ #~ msgid "Footer Font Color"
2439
+ #~ msgstr "Cor da fonte do Rodapé"
2440
+
2441
+ #~ msgid "Advanced Styling"
2442
+ #~ msgstr "Estilo Avançado"
2443
+
2444
+ #~ msgid "Main Content Background"
2445
+ #~ msgstr "Plano de Fundo do Conteúdo Principal"
2446
+
2447
+ #~ msgid "Background Color"
2448
+ #~ msgstr "Cor do Plano de Fundo"
2449
+
2450
+ #~ msgid "Upload background image or texture"
2451
+ #~ msgstr "Envie um imagem de fundo ou uma textura"
2452
+
2453
+ #~ msgid "Image repeat options"
2454
+ #~ msgstr "Opções de repetição da imagem"
2455
+
2456
+ #~ msgid "X image placement options"
2457
+ #~ msgstr "Opções de posicionamento da imagem em X"
2458
+
2459
+ #~ msgid "Y image placement options"
2460
+ #~ msgstr "Opções de posicionamento da imagem em Y"
2461
+
2462
+ #~ msgid "Topbar Background"
2463
+ #~ msgstr "Plano de Fundo da Barra superior"
2464
+
2465
+ #~ msgid "Header Background"
2466
+ #~ msgstr "Plano de Fundo do Cabeçalho"
2467
+
2468
+ #~ msgid "Secondary Menu Background"
2469
+ #~ msgstr "Plano de fundo do menu secundário"
2470
+
2471
+ #~ msgid "Mobile Menu Background"
2472
+ #~ msgstr "Plano de Fundo do Menu para Mobile"
2473
+
2474
+ #~ msgid "Footer Background"
2475
+ #~ msgstr "Plano de Fundo do Rodapé"
2476
+
2477
+ #~ msgid "Body Background"
2478
+ #~ msgstr "Plano de Fundo do Corpo"
2479
+
2480
+ #~ msgid "Fixed or Scroll"
2481
+ #~ msgstr "Fixo ou Deslizável"
2482
+
2483
+ #~ msgid "Typography"
2484
+ #~ msgstr "Tipografia"
2485
+
2486
+ #~ msgid "H1 Headings"
2487
+ #~ msgstr "Cabeçalhos H1"
2488
+
2489
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
2490
+ #~ msgstr ""
2491
+ #~ "Escolha o Tamanho e o Estilo para h1 (Muda o estilo do título das páginas)"
2492
+
2493
+ #~ msgid "H2 Headings"
2494
+ #~ msgstr "Cabeçalhos H2"
2495
+
2496
+ #~ msgid "Choose Size and Style for h2"
2497
+ #~ msgstr "Escolha o Tamanho e o Estilo para h2"
2498
+
2499
+ #~ msgid "H3 Headings"
2500
+ #~ msgstr "Cabeçalhos H3"
2501
+
2502
+ #~ msgid "Choose Size and Style for h3"
2503
+ #~ msgstr "Escolha o Tamanho e o Estilo para h3"
2504
+
2505
+ #~ msgid "H4 Headings"
2506
+ #~ msgstr "Cabeçalhos H4"
2507
+
2508
+ #~ msgid "Choose Size and Style for h4"
2509
+ #~ msgstr "Escolha o Tamanho e o Estilo para h4"
2510
+
2511
+ #~ msgid "H5 Headings"
2512
+ #~ msgstr "Cabeçalhos H5"
2513
+
2514
+ #~ msgid "Choose Size and Style for h5"
2515
+ #~ msgstr "Escolha o Tamanho e o Estilo para h5"
2516
+
2517
+ #~ msgid "Body Font Options"
2518
+ #~ msgstr "Opções de Fontes no Corpo"
2519
+
2520
+ #~ msgid "Body Font"
2521
+ #~ msgstr "Fonte do Corpo"
2522
+
2523
+ #~ msgid "Choose Size and Style for paragraphs"
2524
+ #~ msgstr "Escolha o Tamanho e o Estilo para parágrafos"
2525
+
2526
+ #~ msgid "Menu Settings"
2527
+ #~ msgstr "Opções do Menu"
2528
+
2529
+ #~ msgid "Primary Menu Options"
2530
+ #~ msgstr "Opções do Menu Primário"
2531
+
2532
+ #~ msgid "Primary Menu Font"
2533
+ #~ msgstr "Fonte do Menu Primário"
2534
+
2535
+ #~ msgid "Choose Size and Style for primary menu"
2536
+ #~ msgstr "Escolha o Tamanho e o Estilo para Menu Primário"
2537
+
2538
+ #~ msgid "Secondary Menu Options"
2539
+ #~ msgstr "Opções do menu secundário"
2540
+
2541
+ #~ msgid "Secondary Menu Font"
2542
+ #~ msgstr "Fonte do menu secundário"
2543
+
2544
+ #~ msgid "Choose Size and Style for secondary menu"
2545
+ #~ msgstr "Escolha o Tamanho e o Estilo para Menu Secundário"
2546
+
2547
+ #~ msgid "Mobile Menu Options"
2548
+ #~ msgstr "Opções do Menu Mobile"
2549
+
2550
+ #~ msgid "Mobile Menu Font"
2551
+ #~ msgstr "Fonte do Menu Mobile"
2552
+
2553
+ #~ msgid "Choose Size and Style for Mobile Menu"
2554
+ #~ msgstr "Escolha o Tamanho e o Estilo para menu Mobile"
2555
+
2556
+ #~ msgid "Misc Settings"
2557
+ #~ msgstr "Opções Mistas"
2558
+
2559
+ #, fuzzy
2560
+ #~ msgid "All Projects Portfolio Page"
2561
+ #~ msgstr "Página padrão de Portfólio para todos Projetos"
2562
+
2563
+ #, fuzzy
2564
+ #~ msgid ""
2565
+ #~ "This sets the link in every single portfolio page. *note: You still have "
2566
+ #~ "to set the page template to portfolio."
2567
+ #~ msgstr ""
2568
+ #~ "Isso define o link em todos os posts do Portfólio. Você pode sobrescrever "
2569
+ #~ "em cada post."
2570
+
2571
+ #~ msgid "Allow Comments on Portfolio Posts"
2572
+ #~ msgstr "Permitir comentários nos Posts do Portfólio"
2573
+
2574
+ #, fuzzy
2575
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
2576
+ #~ msgstr "Ligue para permitir comentários nos posts do Portfólio"
2577
+
2578
+ #~ msgid "Hide Image Border"
2579
+ #~ msgstr "Esconder Borda da Imagem"
2580
+
2581
+ #, fuzzy
2582
+ #~ msgid "Choose to show or hide image border"
2583
+ #~ msgstr "Escolha mostrar ou esconder a barra superior"
2584
+
2585
+ #, fuzzy
2586
+ #~ msgid "Blog Archive"
2587
+ #~ msgstr "Arquivos Diários: %s"
2588
+
2589
+ #, fuzzy
2590
+ #~ msgid "Choose to show full post or post excerpt."
2591
+ #~ msgstr ""
2592
+ #~ "Caso os \"Últimos Posts\" são a página inicial. Escolha os posts "
2593
+ #~ "completos ou somente o resumo."
2594
+
2595
+ #~ msgid "Show Comments Closed Text?"
2596
+ #~ msgstr "Mostrar texto de comentários fechados?"
2597
+
2598
+ #~ msgid "Choose to show or hide comments closed alert below posts."
2599
+ #~ msgstr ""
2600
+ #~ "Escolha mostrar ou esconder o alerta de comentários fechados abaixo dos "
2601
+ #~ "posts."
2602
+
2603
+ #~ msgid "Show Author Icon with posts?"
2604
+ #~ msgstr "Mostrar ícones do autor com os posts?"
2605
+
2606
+ #~ msgid "Choose to show or hide author icon under post title."
2607
+ #~ msgstr ""
2608
+ #~ "Escolha mostrar ou esconder o ícone do autor embaixo do título do post."
2609
+
2610
+ #~ msgid "Show Previous and Next posts links?"
2611
+ #~ msgstr "Mostrar links de \"Posts Anteriores\" e \"Próximos Posts\"?"
2612
+
2613
+ #~ msgid ""
2614
+ #~ "Choose to show or hide previous and next post links in the footer of a "
2615
+ #~ "single post."
2616
+ #~ msgstr ""
2617
+ #~ "Escolha mostrar ou esconder links \"anterior\" ou \"próximo\" no rodapé "
2618
+ #~ "de cada post."
2619
+
2620
+ #~ msgid "Custom Favicon"
2621
+ #~ msgstr "Favicon Customizado"
2622
+
2623
+ #~ msgid ""
2624
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
2625
+ #~ "favicon."
2626
+ #~ msgstr "Envie um png/gif/ico 16x16px que será o favicon do site."
2627
+
2628
+ #~ msgid "Sets the email for the contact page email form."
2629
+ #~ msgstr "Define o email para o form da página de contato."
2630
+
2631
+ #~ msgid "Footer Copyright Text"
2632
+ #~ msgstr "Texto de Copyright do Rodapé"
2633
+
2634
+ #~ msgid ""
2635
+ #~ "Write your own copyright text here. You can use the following shortcodes "
2636
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
2637
+ #~ msgstr ""
2638
+ #~ "Escreva seu próprio texto de copyright aqui. Você pode usar os "
2639
+ #~ "shortcodes: [copyright] [site-name] [the-year]"
2640
+
2641
+ #~ msgid "Blog Post Summary Default"
2642
+ #~ msgstr "Resumo Padrão de Posts"
2643
+
2644
+ #~ msgid "Blog Post Head Content Default"
2645
+ #~ msgstr "Conteúdo do Cabeçalho Padrão de Posts"
2646
+
2647
+ #~ msgid "Create Sidebars"
2648
+ #~ msgstr "Criar Barras Laterais"
2649
+
2650
+ #~ msgid "Create Custom Sidebars"
2651
+ #~ msgstr "Crie Barras Laterais Customizadas"
2652
+
2653
+ #~ msgid "Type new sidebar name into textbox"
2654
+ #~ msgstr "Digite o novo nome da barra lateral no campo de texto"
2655
+
2656
+ #~ msgid "Extra Sidebar"
2657
+ #~ msgstr "Barra lateral extra"
2658
+
2659
+ #~ msgid "Wordpress Galleries"
2660
+ #~ msgstr "Galerias Wordpress"
2661
+
2662
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
2663
+ #~ msgstr "Habilitar as Galerias do Virtue sobrescreverem a do WordPress"
2664
+
2665
+ #~ msgid ""
2666
+ #~ "Disable this if using a plugin to customize galleries, for example "
2667
+ #~ "jetpack tiled gallery."
2668
+ #~ msgstr ""
2669
+ #~ "Desabilite isso caso estiver utilizando um plugin para personalizar as "
2670
+ #~ "galerias."
2671
+
2672
+ #~ msgid "Advanced Settings"
2673
+ #~ msgstr "Opções Avançadas"
2674
+
2675
+ #~ msgid "Custom CSS Box"
2676
+ #~ msgstr "Caixa de CSS Customizada"
2677
+
2678
+ #~ msgid "Custom CSS"
2679
+ #~ msgstr "CSS Customizado"
2680
+
2681
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
2682
+ #~ msgstr ""
2683
+ #~ "Adicione rapidamente algum CSS para o seu tema adicionando ele nesse "
2684
+ #~ "bloco."
2685
+
2686
+ #~ msgid "Theme Update Import"
2687
+ #~ msgstr "Importar atualização do Tema"
2688
+
2689
+ #, fuzzy
2690
+ #~ msgid ""
2691
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
2692
+ #~ "theme options."
2693
+ #~ msgstr ""
2694
+ #~ "<p class=\"description\">Se estiver atualizando da versão 1.7.4 ou "
2695
+ #~ "anterior use esse script para atualizar as opções do seu tema.</p>"
2696
+
2697
+ #~ msgid "Turn on and save to start script"
2698
+ #~ msgstr "Ligue e salve para iniciar o script"
2699
+
2700
+ #~ msgid "If using a child theme enter child theme folder"
2701
+ #~ msgstr "Se estiver usando um tema derivado insira a pasta dele."
2702
+
2703
+ #~ msgid "Theme Options"
2704
+ #~ msgstr "Opções do Tema"
2705
+
2706
+ #~ msgid ""
2707
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
2708
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
2709
+ #~ msgstr ""
2710
+ #~ "Obrigado por estar usando o Virtue Theme por <a href=\"http://"
2711
+ #~ "kadencethemes.com/\" target=\"_blank\">Kadence Themes</a>."
2712
+
2713
+ #~ msgid "Icon"
2714
+ #~ msgstr "Ícone"
2715
+
2716
+ #~ msgid "New %s"
2717
+ #~ msgstr "Novo %s"
2718
+
2719
+ #~ msgid "Upload Icon"
2720
+ #~ msgstr "Enviar Ícone"
2721
+
2722
+ #~ msgid "Select an Icon"
2723
+ #~ msgstr "Escolha um ícone"
2724
+
2725
+ #~ msgid "URL"
2726
+ #~ msgstr "URL"
2727
+
2728
+ #~ msgid "Description"
2729
+ #~ msgstr "Descrição"
2730
+
2731
+ #~ msgid "Icon Link"
2732
+ #~ msgstr "Link do Ícone"
2733
+
2734
+ #~ msgid "Open Link in New Tab/Window"
2735
+ #~ msgstr "Abrir link em uma nova janela/aba"
2736
+
2737
+ #~ msgid "Add Icon"
2738
+ #~ msgstr "Adicionar Ícone"
2739
+
2740
+ #~ msgid "Slide"
2741
+ #~ msgstr "Slide"
2742
+
2743
+ #~ msgid "Slide Link"
2744
+ #~ msgstr "Link do Slide"
2745
+
2746
+ #~ msgid "Delete Slide"
2747
+ #~ msgstr "Remover Slide"
2748
+
2749
+ #~ msgid "Add %s"
2750
+ #~ msgstr "Adicionar %s"
2751
+
2752
+ #~ msgid "Sale!"
2753
+ #~ msgstr "Promoção!"
2754
+
2755
+ #, fuzzy
2756
+ #~ msgid "1 Comment"
2757
+ #~ msgstr "Comentário"
2758
+
2759
+ #, fuzzy
2760
+ #~ msgid "% Comments"
2761
+ #~ msgstr "Comentário"
2762
+
2763
+ #, fuzzy
2764
+ #~ msgid "Comments are Closed"
2765
+ #~ msgstr "Comentários estão fechados."
2766
+
2767
+ #, fuzzy
2768
+ #~ msgid "Options"
2769
+ #~ msgstr "Opções de SEO"
2770
+
2771
+ #, fuzzy
2772
+ #~ msgid "Please Wait"
2773
+ #~ msgstr "Por favor tente novamente"
2774
+
2775
+ #, fuzzy
2776
+ #~ msgid "Reset Section"
2777
+ #~ msgstr "Descrição da Página"
2778
+
2779
+ #, fuzzy
2780
+ #~ msgid "error(s) were found!"
2781
+ #~ msgstr "Desculpe, nenhum resultado foi encontrado."
2782
+
2783
+ #, fuzzy
2784
+ #~ msgid "warning(s) were found!"
2785
+ #~ msgstr "Desculpe, nenhum resultado foi encontrado."
2786
+
2787
+ #, fuzzy
2788
+ #~ msgid "Background Repeat"
2789
+ #~ msgstr "Plano de Fundo"
2790
+
2791
+ #, fuzzy
2792
+ #~ msgid "Background Clip"
2793
+ #~ msgstr "Cor do Plano de Fundo"
2794
+
2795
+ #, fuzzy
2796
+ #~ msgid "Background Origin"
2797
+ #~ msgstr "Plano de Fundo"
2798
+
2799
+ #, fuzzy
2800
+ #~ msgid "Background Size"
2801
+ #~ msgstr "Plano de Fundo"
2802
+
2803
+ #, fuzzy
2804
+ #~ msgid "Background Attachment"
2805
+ #~ msgstr "Imagem de Plano de Fundo"
2806
+
2807
+ #, fuzzy
2808
+ #~ msgid "Background Position"
2809
+ #~ msgstr "Posição da Imagem de Plano de Fundo"
2810
+
2811
+ #, fuzzy
2812
+ #~ msgid "Add More"
2813
+ #~ msgstr "leia mais"
2814
+
2815
+ #, fuzzy
2816
+ #~ msgid "Select an item"
2817
+ #~ msgstr "Escolha um arquivo"
2818
+
2819
+ #~ msgid "On"
2820
+ #~ msgstr "Ligado"
2821
+
2822
+ #~ msgid "Off"
2823
+ #~ msgstr "Desligado"
2824
+
2825
+ #~ msgid "Font Family"
2826
+ #~ msgstr "Família da Fonte"
2827
+
2828
+ #, fuzzy
2829
+ #~ msgid "Font family"
2830
+ #~ msgstr "Família da Fonte"
2831
+
2832
+ #, fuzzy
2833
+ #~ msgid "Backup Font Family"
2834
+ #~ msgstr "Família da Fonte"
2835
+
2836
+ #, fuzzy
2837
+ #~ msgid "Font style"
2838
+ #~ msgstr "Estilo do Ícone"
2839
+
2840
+ #, fuzzy
2841
+ #~ msgid "Font subsets"
2842
+ #~ msgstr "Estilo do Ícone"
2843
+
2844
+ #, fuzzy
2845
+ #~ msgid "Font Subsets"
2846
+ #~ msgstr "Tamanho do Ícone"
2847
+
2848
+ #, fuzzy
2849
+ #~ msgid "Subsets"
2850
+ #~ msgstr "Tamanho do Ícone"
2851
+
2852
+ #, fuzzy
2853
+ #~ msgid "Font script"
2854
+ #~ msgstr "Família da Fonte"
2855
+
2856
+ #, fuzzy
2857
+ #~ msgid "Text Align"
2858
+ #~ msgstr "Alinhamento"
2859
+
2860
+ #, fuzzy
2861
+ #~ msgid "Font Variant"
2862
+ #~ msgstr "Família da Fonte"
2863
+
2864
+ #, fuzzy
2865
+ #~ msgid "Text Decoration"
2866
+ #~ msgstr "Descrição da Página"
2867
+
2868
+ #, fuzzy
2869
+ #~ msgid "Font Size"
2870
+ #~ msgstr "Tamanho do Ícone"
2871
+
2872
+ #~ msgid "Size"
2873
+ #~ msgstr "Tamanho"
2874
+
2875
+ #, fuzzy
2876
+ #~ msgid "Line Height"
2877
+ #~ msgstr "Altura do Vídeo"
2878
+
2879
+ #, fuzzy
2880
+ #~ msgid "Word Spacing"
2881
+ #~ msgstr "Espaçamento Superior"
2882
+
2883
+ #, fuzzy
2884
+ #~ msgid "Letter Spacing"
2885
+ #~ msgstr "Espaçamento da Esquerda"
2886
+
2887
+ #~ msgid "Font Color"
2888
+ #~ msgstr "Cor da Fonte"
2889
+
2890
+ #, fuzzy
2891
+ #~ msgid "Font color"
2892
+ #~ msgstr "Cor da Fonte"
2893
+
2894
+ #, fuzzy
2895
+ #~ msgid "Standard Fonts"
2896
+ #~ msgstr "Padrão: de"
2897
+
2898
+ #, fuzzy
2899
+ #~ msgid "Import / Export Options"
2900
+ #~ msgstr "Opções do Post do Portfólio"
2901
+
2902
+ #, fuzzy
2903
+ #~ msgid "Import Options"
2904
+ #~ msgstr "Opções do Post"
2905
+
2906
+ #, fuzzy
2907
+ #~ msgid "Import"
2908
+ #~ msgstr "Opções do Post"
2909
+
2910
+ #, fuzzy
2911
+ #~ msgid "Export Options"
2912
+ #~ msgstr "Opções do Post"
2913
+
2914
+ #, fuzzy
2915
+ #~ msgid "Copy"
2916
+ #~ msgstr "Sem link"
2917
+
2918
+ #, fuzzy
2919
+ #~ msgid "Copy Link"
2920
+ #~ msgstr "Sem link"
2921
+
2922
+ #, fuzzy
2923
+ #~ msgid "Import / Export"
2924
+ #~ msgstr "Opções do Post do Portfólio"
2925
+
2926
+ #, fuzzy
2927
+ #~ msgid "This field must be a valid color value."
2928
+ #~ msgstr "Esse campo é obrigatório."
2929
+
2930
+ #, fuzzy
2931
+ #~ msgid "This field must be a valid date."
2932
+ #~ msgstr "Esse campo é obrigatório."
2933
+
2934
+ #, fuzzy
2935
+ #~ msgid "This field cannot be empty. Please provide a value."
2936
+ #~ msgstr "Esse campo é obrigatório."
2937
+
2938
+ #~ msgid "Content Background Color"
2939
+ #~ msgstr "Cor de fundo do conteúdo"
2940
+
2941
+ #~ msgid "Topbar Background Color"
2942
+ #~ msgstr "Cor de Fundo da Barra superior"
2943
+
2944
+ #~ msgid "Header Background Color"
2945
+ #~ msgstr "Cor de Fundo do Cabeçalho"
2946
+
2947
+ #, fuzzy
2948
+ #~ msgid "Secondary menu Background Color"
2949
+ #~ msgstr "Cor de fundo do menu secundário"
2950
+
2951
+ #, fuzzy
2952
+ #~ msgid "Mobile Background Color"
2953
+ #~ msgstr "Cor de Fundo para o Menu Mobile"
2954
+
2955
+ #~ msgid "Footer Background Color"
2956
+ #~ msgstr "Cor do Fundo do Rodapé"
2957
+
2958
+ #~ msgid "Body Background Color"
2959
+ #~ msgstr "Cor do Plano de Fundo do Corpo"
2960
+
2961
+ #, fuzzy
2962
+ #~ msgid "Allow Comments on Pages"
2963
+ #~ msgstr "Permitir comentários nos Posts do Portfólio"
2964
+
2965
+ #, fuzzy
2966
+ #~ msgid "Turn on to allow comments on pages"
2967
+ #~ msgstr "Ligue para permitir comentários nos posts do Portfólio"
2968
+
2969
+ #, fuzzy
2970
+ #~ msgid ""
2971
+ #~ "Choose to show or hide image border for images added in pages or posts"
2972
+ #~ msgstr "Escolha mostrar ou esconder a borda da imagem"
2973
+
2974
+ #~ msgid "Calculate Shipping"
2975
+ #~ msgstr "Calcular frete"
2976
+
2977
+ #~ msgid "Select a country&hellip;"
2978
+ #~ msgstr "Escolha um país &hellip;"
2979
+
2980
+ #~ msgid "State / county"
2981
+ #~ msgstr "Estado / País"
2982
+
2983
+ #~ msgid "Select a state&hellip;"
2984
+ #~ msgstr "Escolha um estado &hellip;"
2985
+
2986
+ #~ msgid "City"
2987
+ #~ msgstr "Cidade"
2988
+
2989
+ #~ msgid "Postcode / Zip"
2990
+ #~ msgstr "CEP"
2991
+
2992
+ #~ msgid "Update Totals"
2993
+ #~ msgstr "Atualizar Total"
2994
+
2995
+ #, fuzzy
2996
+ #~ msgid "Order ID"
2997
+ #~ msgstr "Ordenar por"
2998
+
2999
+ #, fuzzy
3000
+ #~ msgid "Billing Email"
3001
+ #~ msgstr "Enviar email"
3002
+
3003
+ #, fuzzy
3004
+ #~ msgid "Reviews"
3005
+ #~ msgstr "Aba de Avaliações"
3006
+
3007
+ #, fuzzy
3008
+ #~ msgid "There are no reviews yet."
3009
+ #~ msgstr "Não existem opções anteriores"
3010
+
3011
+ #, fuzzy
3012
+ #~ msgid "Add a review"
3013
+ #~ msgstr "Adicionar Novo"
3014
+
3015
+ #~ msgid "Submit"
3016
+ #~ msgstr "Enviar"
3017
+
3018
+ #, fuzzy
3019
+ #~ msgid "Your Rating"
3020
+ #~ msgstr "Seu carrinho"
3021
+
3022
+ #, fuzzy
3023
+ #~ msgid "Rate&hellip;"
3024
+ #~ msgstr "Marcar/Desmarcar Todos"
3025
+
3026
+ #, fuzzy
3027
+ #~ msgid "Your Review"
3028
+ #~ msgstr "Aba de Avaliações"
3029
+
3030
+ #, fuzzy
3031
+ #~ msgid "Choose an option"
3032
+ #~ msgstr "Escolha um ícone"
3033
+
3034
+ #, fuzzy
3035
+ #~ msgid "Clear selection"
3036
+ #~ msgstr "Descrição da Página"
3037
+
3038
+ #~ msgid "This product is currently out of stock and unavailable."
3039
+ #~ msgstr "Esse produto no momento está fora de estoque e não está disponível."
3040
+
3041
+ #~ msgid "Rated %s out of 5"
3042
+ #~ msgstr "Avaliado em %s de 5"
3043
+
3044
+ #~ msgid "out of 5"
3045
+ #~ msgstr "de 5"
3046
+
3047
+ #~ msgid "%s customer review"
3048
+ #~ msgid_plural "%s customer reviews"
3049
+ #~ msgstr[0] "%s avaliação de cliente"
3050
+ #~ msgstr[1] "%s avaliações de clientes"
3051
+
3052
+ #~ msgid "Rated %d out of 5"
3053
+ #~ msgstr "Avaliado em %d de 5"
3054
+
3055
+ #~ msgid "Your comment is awaiting approval"
3056
+ #~ msgstr "O seu comentário está aguardando aprovação"
3057
+
3058
+ #~ msgid "verified owner"
3059
+ #~ msgstr "Proprietário verificado"
3060
+
3061
+ #~ msgid "Read More"
3062
+ #~ msgstr "leia mais"
3063
+
3064
+ #~ msgid "Search results for"
3065
+ #~ msgstr "Resultados da busca para"
3066
+
3067
+ #~ msgid "Error 404"
3068
+ #~ msgstr "Erro 404"
3069
+
3070
+ #~ msgid "Page"
3071
+ #~ msgstr "Página"
3072
+
3073
+ #~ msgid "Sorry, no post entries found."
3074
+ #~ msgstr "Desculpe, nenhum post foi encontrado."
3075
+
3076
+ #~ msgid "Theme Recommended Plugins"
3077
+ #~ msgstr "Plugins Recomendados do Tema"
3078
+
3079
+ #~ msgid "%s (Invalid)"
3080
+ #~ msgstr "%s (Inválido)"
3081
+
3082
+ #~ msgid "%s (Pending)"
3083
+ #~ msgstr "%s (Pendendo)"
3084
+
3085
+ #~ msgid "Move up"
3086
+ #~ msgstr "Mover acima"
3087
+
3088
+ #~ msgid "Move down"
3089
+ #~ msgstr "Mover abaixo"
3090
+
3091
+ #~ msgid "Edit Menu Item"
3092
+ #~ msgstr "Editar item do menu"
3093
+
3094
+ #~ msgid "Navigation Label"
3095
+ #~ msgstr "Rótulo de Navegação"
3096
+
3097
+ #~ msgid "Title Attribute"
3098
+ #~ msgstr "Atributo do Título"
3099
+
3100
+ #~ msgid "Open link in a new window/tab"
3101
+ #~ msgstr "Abrir link em uma nova janela/aba"
3102
+
3103
+ #~ msgid "CSS Classes (optional)"
3104
+ #~ msgstr "Classes CSS (Opcional)"
3105
+
3106
+ #~ msgid "Link Relationship (XFN)"
3107
+ #~ msgstr "Relação do Link (XFN)"
3108
+
3109
+ #~ msgid ""
3110
+ #~ "The description will be displayed in the menu if the current theme "
3111
+ #~ "supports it."
3112
+ #~ msgstr "A descrição vai aparecer no menu caso o seu tema suporte."
3113
+
3114
+ #~ msgid "Enable Fullwidth Sub-Menu"
3115
+ #~ msgstr "Permitir sub-menu em fullwidth"
3116
+
3117
+ #~ msgid "Submenu Number of Columns"
3118
+ #~ msgstr "Número de Colunas do Submenu"
3119
+
3120
+ #~ msgid "Original: %s"
3121
+ #~ msgstr "Original: %s"
3122
+
3123
+ #~ msgid "Cancel"
3124
+ #~ msgstr "Cancelar"
3125
+
3126
+ #~ msgid "Custom Tab"
3127
+ #~ msgstr "Aba Customizada"
3128
+
3129
+ #~ msgid "Wide Parallax"
3130
+ #~ msgstr "Parallax Largo"
3131
+
3132
+ #~ msgid "Wide Feature"
3133
+ #~ msgstr "Destaque Largo"
3134
+
3135
+ #~ msgid "Wide Grey"
3136
+ #~ msgstr "Cinza Largo"
3137
+
3138
+ #~ msgid "Wide Content"
3139
+ #~ msgstr "Conteúdo Largo"
3140
+
3141
+ #~ msgid "Background"
3142
+ #~ msgstr "Plano de Fundo"
3143
+
3144
+ #~ msgid "Background Image"
3145
+ #~ msgstr "Imagem de Plano de Fundo"
3146
+
3147
+ #~ msgid "Background Image Position"
3148
+ #~ msgstr "Posição da Imagem de Plano de Fundo"
3149
+
3150
+ #~ msgid "Left Top"
3151
+ #~ msgstr "Esquerda Superior"
3152
+
3153
+ #~ msgid "Left Center"
3154
+ #~ msgstr "Esquerda Centro"
3155
+
3156
+ #~ msgid "Left Bottom"
3157
+ #~ msgstr "Esquerda Inferior"
3158
+
3159
+ #~ msgid "Center Top"
3160
+ #~ msgstr "Centro Acima"
3161
+
3162
+ #~ msgid "Center Center"
3163
+ #~ msgstr "Centro Centro"
3164
+
3165
+ #~ msgid "Center Bottom"
3166
+ #~ msgstr "Centro Abaixo"
3167
+
3168
+ #~ msgid "Right Top"
3169
+ #~ msgstr "Direita Superior"
3170
+
3171
+ #~ msgid "Right Center"
3172
+ #~ msgstr "Direita Centro"
3173
+
3174
+ #~ msgid "Right Bottom"
3175
+ #~ msgstr "Direita Inferior"
3176
+
3177
+ #~ msgid "Repeat Background Image"
3178
+ #~ msgstr "Repetir Imagem de Fundo"
3179
+
3180
+ #~ msgid "Background Cover"
3181
+ #~ msgstr "Capa de Plano de Fundo"
3182
+
3183
+ #~ msgid "Border Top Size"
3184
+ #~ msgstr "Tamanho da Borda Superior"
3185
+
3186
+ #~ msgid "Border Bottom Size"
3187
+ #~ msgstr "Tamanho da Borda Inferior"
3188
+
3189
+ #~ msgid "Border Bottom Color"
3190
+ #~ msgstr "Cor da Borda Inferior"
3191
+
3192
+ #~ msgid "Example Page"
3193
+ #~ msgstr "Página Exemplo"
3194
+
3195
+ #~ msgid "Example Page 2"
3196
+ #~ msgstr "Página Exemplo 2"
3197
+
3198
+ #~ msgid "Featured Products"
3199
+ #~ msgstr "Produtos Destacados"
3200
+
3201
+ #~ msgid "Want To See More"
3202
+ #~ msgstr "Deseja ver mais"
3203
+
3204
+ #~ msgid "Check out the newest demo site"
3205
+ #~ msgstr "Confira nosso novo site demo"
3206
+
3207
+ #~ msgid "Please enter your Vimeo url. (be sure to include http://)"
3208
+ #~ msgstr "Por favor insira sua url do Vimeo. (inclua o http://)"
3209
+
3210
+ #~ msgid "Two Columns"
3211
+ #~ msgstr "Duas Colunas"
3212
+
3213
+ #~ msgid "Two Columns offset Right"
3214
+ #~ msgstr "Duas colunas com offset na Direita"
3215
+
3216
+ #~ msgid "Two Columns offset Left"
3217
+ #~ msgstr "Duas colunas com offset na Esquerda"
3218
+
3219
+ #~ msgid "Three Columns"
3220
+ #~ msgstr "Três colunas"
3221
+
3222
+ #~ msgid "Four Columns"
3223
+ #~ msgstr "Quatro Colunas"
3224
+
3225
+ #~ msgid "Dots"
3226
+ #~ msgstr "Pontos"
3227
+
3228
+ #~ msgid "Gradient"
3229
+ #~ msgstr "Degradê"
3230
+
3231
+ #~ msgid "Color"
3232
+ #~ msgstr "Cor"
3233
+
3234
+ #~ msgid "Spacing"
3235
+ #~ msgstr "Espaçamento"
3236
+
3237
+ #~ msgid "Pull-Quote Text"
3238
+ #~ msgstr "Texto de Citação"
3239
+
3240
+ #~ msgid "Block-Quote Text"
3241
+ #~ msgstr "Texto Citado"
3242
+
3243
+ #~ msgid "Simple Box"
3244
+ #~ msgstr "Caixa simples"
3245
+
3246
+ #~ msgid "Padding Top (just a number)"
3247
+ #~ msgstr "Espaçamento Superior (somente um número)"
3248
+
3249
+ #~ msgid "Padding Bottom (just a number)"
3250
+ #~ msgstr "Espaçamento inferior (somente um número)"
3251
+
3252
+ #~ msgid "Padding Left (just a number)"
3253
+ #~ msgstr "Espaçamento Esquerdo (somente um número)"
3254
+
3255
+ #~ msgid "Padding Right (just a number)"
3256
+ #~ msgstr "Espaçamento Direito (somente um número)"
3257
+
3258
+ #~ msgid "Background Color Opacity"
3259
+ #~ msgstr "Opacidade do Plano de Fundo"
3260
+
3261
+ #~ msgid "1.0"
3262
+ #~ msgstr "1.0"
3263
+
3264
+ #~ msgid "0.9"
3265
+ #~ msgstr "0.9"
3266
+
3267
+ #~ msgid "0.8"
3268
+ #~ msgstr "0.8"
3269
+
3270
+ #~ msgid "0.7"
3271
+ #~ msgstr "0.7"
3272
+
3273
+ #~ msgid "0.6"
3274
+ #~ msgstr "0.6"
3275
+
3276
+ #~ msgid "0.5"
3277
+ #~ msgstr "0.5"
3278
+
3279
+ #~ msgid "0.4"
3280
+ #~ msgstr "0.4"
3281
+
3282
+ #~ msgid "0.3"
3283
+ #~ msgstr "0.3"
3284
+
3285
+ #~ msgid "0.2"
3286
+ #~ msgstr "0.2"
3287
+
3288
+ #~ msgid "0.1"
3289
+ #~ msgstr "0.1"
3290
+
3291
+ #~ msgid "0.0"
3292
+ #~ msgstr "0.0"
3293
+
3294
+ #~ msgid "Content Text"
3295
+ #~ msgstr "Texto do Conteúdo"
3296
+
3297
+ #~ msgid "Open Link In New Tab?"
3298
+ #~ msgstr "Abrir link em uma nova aba?"
3299
+
3300
+ #~ msgid "Link URL"
3301
+ #~ msgstr "URL do Link"
3302
+
3303
+ #~ msgid "Button Size"
3304
+ #~ msgstr "Tamanho do Botão"
3305
+
3306
+ #~ msgid "Large"
3307
+ #~ msgstr "Largo"
3308
+
3309
+ #~ msgid "Small"
3310
+ #~ msgstr "Pequeno"
3311
+
3312
+ #~ msgid "H1 Family"
3313
+ #~ msgstr "Família H1"
3314
+
3315
+ #~ msgid "Choose an Icon (optional)"
3316
+ #~ msgstr "Escolha um ícone (opcional)"
3317
+
3318
+ #~ msgid "Google Map"
3319
+ #~ msgstr "Google Map"
3320
+
3321
+ #~ msgid "Address One"
3322
+ #~ msgstr "Endereço Um"
3323
+
3324
+ #~ msgid "Address Title One"
3325
+ #~ msgstr "Título do Endereço Um"
3326
+
3327
+ #~ msgid "Displays in Popup e.g. = Business Name"
3328
+ #~ msgstr "Mostrar em popup ex. = Nome da Empresa"
3329
+
3330
+ #~ msgid "Just a number e.g. = 400"
3331
+ #~ msgstr "Somente um número ex. = 400"
3332
+
3333
+ #~ msgid "Map Zoom"
3334
+ #~ msgstr "Zoom do Mapa"
3335
+
3336
+ #~ msgid "Address Two"
3337
+ #~ msgstr "Endereço Dois"
3338
+
3339
+ #~ msgid "Address Title Two"
3340
+ #~ msgstr "Título do Endereço Dois"
3341
+
3342
+ #~ msgid "Address Three"
3343
+ #~ msgstr "Endereço Três"
3344
+
3345
+ #~ msgid "Address Title Three"
3346
+ #~ msgstr "Título do Endereço Três"
3347
+
3348
+ #~ msgid "Address Four"
3349
+ #~ msgstr "Endereço Quatro"
3350
+
3351
+ #~ msgid "Address Title Four"
3352
+ #~ msgstr "Título do Endereço Quatro"
3353
+
3354
+ #~ msgid "Map Center"
3355
+ #~ msgstr "Centro do Mapa"
3356
+
3357
+ #~ msgid "Defaults to Address One"
3358
+ #~ msgstr "O padrão é o endereço um"
3359
+
3360
+ #~ msgid "Choose an Icon"
3361
+ #~ msgstr "Escolha um ícone"
3362
+
3363
+ #~ msgid "Icon Size"
3364
+ #~ msgstr "Tamanho do Ícone"
3365
+
3366
+ #~ msgid "Icon Color"
3367
+ #~ msgstr "Cor do Ícone"
3368
+
3369
+ #~ msgid "Icon Float"
3370
+ #~ msgstr "Float do Ícone"
3371
+
3372
+ #~ msgid "Icon Style"
3373
+ #~ msgstr "Estilo do Ícone"
3374
+
3375
+ #~ msgid "Circle"
3376
+ #~ msgstr "Círculo"
3377
+
3378
+ #~ msgid "Small Circle"
3379
+ #~ msgstr "Círculo Pequeno"
3380
+
3381
+ #~ msgid "Square"
3382
+ #~ msgstr "Quadrado"
3383
+
3384
+ #~ msgid "Small Square"
3385
+ #~ msgstr "Quadrado Pequeno"
3386
+
3387
+ #~ msgid "Icon Box"
3388
+ #~ msgstr "Caixa do Ícone"
3389
+
3390
+ #~ msgid "Icon/Font Color"
3391
+ #~ msgstr "Cor do Ícone/Fonte"
3392
+
3393
+ #~ msgid "Hover Icon/Font Color"
3394
+ #~ msgstr "Cor da Fonte/Ícone quando passar o mouse"
3395
+
3396
+ #~ msgid "Hover Background Color"
3397
+ #~ msgstr "Cor de fundo quando passar o mouse"
3398
+
3399
+ #~ msgid "Video URL"
3400
+ #~ msgstr "URL do Vídeo"
3401
+
3402
+ #~ msgid "Just a number e.g. = 600"
3403
+ #~ msgstr "Somente um número ex. = 600"
3404
+
3405
+ #~ msgid "Video Height"
3406
+ #~ msgstr "Altura do Vídeo"
3407
+
3408
+ #~ msgid "Keeps the responsive video from getting too large"
3409
+ #~ msgstr "Evita que o vídeo responsivo fique muito largo"
3410
+
3411
+ #~ msgid "Hide Controls"
3412
+ #~ msgstr "Esconder Controles"
3413
+
3414
+ #~ msgid "Auto Play"
3415
+ #~ msgstr "Play automático"
3416
+
3417
+ #~ msgid "Modest Branding?"
3418
+ #~ msgstr "Branding Modesto?"
3419
+
3420
+ #~ msgid "Vimeo"
3421
+ #~ msgstr "Vimeo"
3422
+
3423
+ #~ msgid "Order By"
3424
+ #~ msgstr "Ordenar por"
3425
+
3426
+ #~ msgid "Category"
3427
+ #~ msgstr "Categoria"
3428
+
3429
+ #~ msgid "Number of Posts"
3430
+ #~ msgstr "Número de Posts"
3431
+
3432
+ #~ msgid "Modal"
3433
+ #~ msgstr "Modal"
3434
+
3435
+ #~ msgid "Button Title"
3436
+ #~ msgstr "Título do Botão"
3437
+
3438
+ #~ msgid "Button Font Color"
3439
+ #~ msgstr "Cor da Fonte do Botão"
3440
+
3441
+ #~ msgid "Modal Title"
3442
+ #~ msgstr "Título do Modal"
3443
+
3444
+ #~ msgid "Modal Content"
3445
+ #~ msgstr "Conteúdo do Modal"
3446
+
3447
+ #~ msgid "Testimonial Form"
3448
+ #~ msgstr "Formulário de Depoimentos"
3449
+
3450
+ #~ msgid "Show Location Field?"
3451
+ #~ msgstr "Mostrar campo de Local?"
3452
+
3453
+ #~ msgid "Show Position Field?"
3454
+ #~ msgstr "Mostrar campo de Posição?"
3455
+
3456
+ #~ msgid "Show Link Field?"
3457
+ #~ msgstr "Mostrar campo de Link?"
3458
+
3459
+ #~ msgid "Name Field Label"
3460
+ #~ msgstr "Rótulo do Campo de Nome"
3461
+
3462
+ #~ msgid "Default: Name"
3463
+ #~ msgstr "Padrão: Nome"
3464
+
3465
+ #~ msgid "Testimonial Field Label"
3466
+ #~ msgstr "Rótulo do Campo de Depoimento"
3467
+
3468
+ #~ msgid "Default: Testimonial"
3469
+ #~ msgstr "Padrão: Depoimento"
3470
+
3471
+ #~ msgid "Location Field Label"
3472
+ #~ msgstr "Rótulo do campo de local"
3473
+
3474
+ #~ msgid "Default: Location - Optional"
3475
+ #~ msgstr "Padrão: Local - Opcional"
3476
+
3477
+ #~ msgid "Position Field Label"
3478
+ #~ msgstr "Rótulo do Campo do Portfólio"
3479
+
3480
+ #~ msgid "Default: Position or Company - optional"
3481
+ #~ msgstr "Padrão: Cargo ou Empresa - Opcional"
3482
+
3483
+ #~ msgid "Link Field Label"
3484
+ #~ msgstr "Rótulo do Campo do Link"
3485
+
3486
+ #~ msgid "Default: Link - optional"
3487
+ #~ msgstr "Padrão: Link - opcional"
3488
+
3489
+ #~ msgid "Submit Field Label"
3490
+ #~ msgstr "Rótulo do Campo de Envio"
3491
+
3492
+ #~ msgid "Default: Submit"
3493
+ #~ msgstr "Padrão: Enviar"
3494
+
3495
+ #~ msgid "Success Message"
3496
+ #~ msgstr "Mensagem de Sucesso"
3497
+
3498
+ #~ msgid ""
3499
+ #~ "Default: Thank you for submitting your testimonial! It is now awaiting "
3500
+ #~ "approval from the site admnistator. Thank you!"
3501
+ #~ msgstr ""
3502
+ #~ "Padrão: Obrigado por enviar seu depoimento! Ele está agora aguardando "
3503
+ #~ "aprovação do administrador do site. Obrigado!"
3504
+
3505
+ #~ msgid "Virtue Shortcodes"
3506
+ #~ msgstr "Shortcodes Virtue"
3507
+
3508
+ #~ msgid "Choose a shortcode"
3509
+ #~ msgstr "Escolher Shortcode"
3510
+
3511
+ #~ msgid "Add Shortcode"
3512
+ #~ msgstr "Adicionar Shortcode"
3513
+
3514
+ #~ msgid "Standard Post Options"
3515
+ #~ msgstr "Opções de Post Padrão"
3516
+
3517
+ #~ msgid "Site Default"
3518
+ #~ msgstr "Padrão do Site"
3519
+
3520
+ #~ msgid "Image Carousel"
3521
+ #~ msgstr "Carrossel de Imagem"
3522
+
3523
+ #~ msgid "Rev Slider"
3524
+ #~ msgstr "Rev Slider"
3525
+
3526
+ #~ msgid "Kadence Slider"
3527
+ #~ msgstr "Kadence Slider"
3528
+
3529
+ #~ msgid "Cyclone Slider"
3530
+ #~ msgstr " Cyclone Slider"
3531
+
3532
+ #~ msgid "Image List"
3533
+ #~ msgstr "Lista de Imagens"
3534
+
3535
+ #~ msgid "Image List Style 2"
3536
+ #~ msgstr "Estilo 2 da Lista de Imagens"
3537
+
3538
+ #~ msgid "If Revolution, Cyclone or Kadence Slider"
3539
+ #~ msgstr "Caso Revolution, Cyclone ou Kadence Slider"
3540
+
3541
+ #~ msgid "Paste Slider Shortcode here"
3542
+ #~ msgstr "Cole o Shortcode do Slider aqui"
3543
+
3544
+ #~ msgid "Project Summary"
3545
+ #~ msgstr "Resumo do Projeto"
3546
+
3547
+ #~ msgid "Choose Portfolio Parent Page"
3548
+ #~ msgstr "Escolha uma página pai de portfólio"
3549
+
3550
+ #~ msgid "Testimonial Options"
3551
+ #~ msgstr "Opções de Depoimento"
3552
+
3553
+ #~ msgid "Location"
3554
+ #~ msgstr "Local"
3555
+
3556
+ #~ msgid "ex: New York, NY"
3557
+ #~ msgstr "ex: São Paulo, SP"
3558
+
3559
+ #~ msgid "Client Title"
3560
+ #~ msgstr "Título do Cliente"
3561
+
3562
+ #~ msgid "ex: CEO of Example Inc"
3563
+ #~ msgstr "ex: CEO da Exemplo Inc"
3564
+
3565
+ #~ msgid "Link"
3566
+ #~ msgstr "Link"
3567
+
3568
+ #~ msgid "ex: http://www.example.com"
3569
+ #~ msgstr "ex: http://www.examplo.com.br"
3570
+
3571
+ #~ msgid "Product Sidebar Options"
3572
+ #~ msgstr "Opções da barra lateral dos Produtos"
3573
+
3574
+ #~ msgid "Product Video Tab"
3575
+ #~ msgstr "Aba do Vídeo do Produto"
3576
+
3577
+ #~ msgid "Six Column"
3578
+ #~ msgstr "Seis Colunas"
3579
+
3580
+ #~ msgid "Filter?"
3581
+ #~ msgstr "Filtrar?"
3582
+
3583
+ #~ msgid ""
3584
+ #~ "You can have filterable portfolios with one work type if has children"
3585
+ #~ msgstr ""
3586
+ #~ "Você pode ter portfólios filtráveis com um tipo de trabalho se tiver "
3587
+ #~ "filhos"
3588
+
3589
+ #~ msgid "Crop images to equal height"
3590
+ #~ msgstr "Recorte as imagens para uma altura igual"
3591
+
3592
+ #~ msgid "If cropped rows will be equal"
3593
+ #~ msgstr "Se as linhas cortadas serão iguais"
3594
+
3595
+ #~ msgid "Portfolio Category Page Options"
3596
+ #~ msgstr "Opções das Páginas de Categoria do Portfólio"
3597
+
3598
+ #~ msgid "Staff Page Options"
3599
+ #~ msgstr "Opções da Página de Colaboradores"
3600
+
3601
+ #~ msgid "Limit to Group"
3602
+ #~ msgstr "Limitar para um Grupo"
3603
+
3604
+ #~ msgid "Default is 16:9 ratio (Note: just input number, example: 350)"
3605
+ #~ msgstr ""
3606
+ #~ "O padrão de proporção é 16:9 (Nota: coloque somente números, exemplo: 320)"
3607
+
3608
+ #~ msgid "Use Staff Excerpt or Content?"
3609
+ #~ msgstr "Usar o Resumo dos colaboradores ou Conteúdo?"
3610
+
3611
+ #~ msgid "Excerpt"
3612
+ #~ msgstr "Trecho"
3613
+
3614
+ #~ msgid "Make images and title link to single post?"
3615
+ #~ msgstr "Fazer imagens e título um link para o post?"
3616
+
3617
+ #~ msgid "Testimonial Page Options"
3618
+ #~ msgstr "Opções da Página de Depoimento"
3619
+
3620
+ #~ msgid "One Column"
3621
+ #~ msgstr "Uma Coluna"
3622
+
3623
+ #~ msgid "Testimonial Group"
3624
+ #~ msgstr "Grupos de Depoimento"
3625
+
3626
+ #~ msgid "How many testimonial items per page"
3627
+ #~ msgstr "Quantos depoimentos por página"
3628
+
3629
+ #~ msgid "Limit Testimonial Text"
3630
+ #~ msgstr "Limitar Texto dos Depoimentos"
3631
+
3632
+ #~ msgid "Word Count Text"
3633
+ #~ msgstr "Texto de Contagem de Palavras"
3634
+
3635
+ #~ msgid "eg: 25"
3636
+ #~ msgstr "ex: 25"
3637
+
3638
+ #~ msgid "Add link to single post"
3639
+ #~ msgstr "Adicionar link para a página do post"
3640
+
3641
+ #~ msgid "Link Text"
3642
+ #~ msgstr "Texto do Link"
3643
+
3644
+ #~ msgid "eg: Read More"
3645
+ #~ msgstr "ex: Leia Mais"
3646
+
3647
+ #~ msgid "Flex Slider"
3648
+ #~ msgstr "Flex Slider"
3649
+
3650
+ #~ msgid "Image Carousel Slider"
3651
+ #~ msgstr "Slider do Carrossel de Imagem"
3652
+
3653
+ #~ msgid "Revolution Slider"
3654
+ #~ msgstr "Revolution Slider"
3655
+
3656
+ #~ msgid "If Revolution Slider"
3657
+ #~ msgstr "Se Revolution Slider"
3658
+
3659
+ #~ msgid "Paste Revolution slider alias here (example: slider1)"
3660
+ #~ msgstr "Cole o alias do Revolution slider aqui (exemplo: slide1)"
3661
+
3662
+ #~ msgid "If Cyclone or Kadence Slider"
3663
+ #~ msgstr "Caso Cyclone ou Kadence Slider"
3664
+
3665
+ #~ msgid "Display Shortcode Slider above Header"
3666
+ #~ msgstr "Mostrar shortcode do slider acima do cabeçalho"
3667
+
3668
+ #~ msgid "If above Header use arrow"
3669
+ #~ msgstr "Se estiver acima do Cabeçalho usar uma seta"
3670
+
3671
+ #~ msgid "Blog Grid Options"
3672
+ #~ msgstr "Opções do Blog em Grade"
3673
+
3674
+ #~ msgid "Choose Column Layout:"
3675
+ #~ msgstr "Escolha um Layout de Colunas:"
3676
+
3677
+ #~ msgid "Enter a Location"
3678
+ #~ msgstr "Insira um local"
3679
+
3680
+ #~ msgid "SEO Options"
3681
+ #~ msgstr "Opções de SEO"
3682
+
3683
+ #~ msgid "Optimal Format: Brand Name | Primary Keyword and Secondary Keyword"
3684
+ #~ msgstr ""
3685
+ #~ "Melhor formato: Nome da Marca | Palavra-chave principal e secundária"
3686
+
3687
+ #~ msgid "Page Description"
3688
+ #~ msgstr "Descrição da Página"
3689
+
3690
+ #~ msgid "Optimal Length: Roughly 155 Characters"
3691
+ #~ msgstr "Melhor tamanho: Cerca de 155 letras"
3692
+
3693
+ #~ msgid "Virtue Custom Tab 01"
3694
+ #~ msgstr "Aba Customizada Virtue 01"
3695
+
3696
+ #~ msgid "Tab Title"
3697
+ #~ msgstr "Título da Aba"
3698
+
3699
+ #~ msgid "This will show on the tab"
3700
+ #~ msgstr "Isso irá mostrar na aba"
3701
+
3702
+ #~ msgid "Tab Content"
3703
+ #~ msgstr "Conteúdo da Aba"
3704
+
3705
+ #~ msgid "Add Tab Content"
3706
+ #~ msgstr "Adicionar Conteúdo em Abas"
3707
+
3708
+ #~ msgid "Tab priority"
3709
+ #~ msgstr "Prioridade da Aba"
3710
+
3711
+ #~ msgid "This will determine where the tab is shown (e.g. 20)"
3712
+ #~ msgstr "Isso irá determinar onde a aba será mostrada (ex. 20)"
3713
+
3714
+ #~ msgid "Virtue Custom Tab 02"
3715
+ #~ msgstr "Aba Customizada Virtue 02"
3716
+
3717
+ #~ msgid "Virtue Custom Tab 03"
3718
+ #~ msgstr "Aba Customizada Virtue 03"
3719
+
3720
+ #~ msgid "Filter Projects"
3721
+ #~ msgstr "Filtrar Projetos"
3722
+
3723
+ #~ msgid "Testimonials"
3724
+ #~ msgstr "Depoimentos"
3725
+
3726
+ #~ msgid "Testimonial"
3727
+ #~ msgstr "Depoimento"
3728
+
3729
+ #~ msgid "Add New Testimonial"
3730
+ #~ msgstr "Adicionar Novo Depoimento"
3731
+
3732
+ #~ msgid "Edit Testimonial"
3733
+ #~ msgstr "Editar Depoimentos"
3734
+
3735
+ #~ msgid "New Testimonial"
3736
+ #~ msgstr "Novo Depoimento"
3737
+
3738
+ #~ msgid "All Testimonials"
3739
+ #~ msgstr "Todos Depoimentos"
3740
+
3741
+ #~ msgid "View Testimonial"
3742
+ #~ msgstr "Visualizar Depoimento"
3743
+
3744
+ #~ msgid "Search Testimonials"
3745
+ #~ msgstr "Buscar Depoimentos"
3746
+
3747
+ #~ msgid "No Testimonials found"
3748
+ #~ msgstr "Nenhum Depoimento Encontrado"
3749
+
3750
+ #~ msgid "No Testimonials found in Trash"
3751
+ #~ msgstr "Nenhum Depoimento Encontrado na Lixeira"
3752
+
3753
+ #~ msgid "Search Groups"
3754
+ #~ msgstr "Procurar Grupos"
3755
+
3756
+ #~ msgid "All Groups"
3757
+ #~ msgstr "Todos Grupos"
3758
+
3759
+ #~ msgid "Parent Groups"
3760
+ #~ msgstr "Grupos pai"
3761
+
3762
+ #~ msgid "Parent Groups:"
3763
+ #~ msgstr "Grupos pai:"
3764
+
3765
+ #~ msgid "Edit Group"
3766
+ #~ msgstr "Editar Grupo"
3767
+
3768
+ #~ msgid "Update Group"
3769
+ #~ msgstr "Atualizar Grupo"
3770
+
3771
+ #~ msgid "Add New Group"
3772
+ #~ msgstr "Adicionar Novo Grupo"
3773
+
3774
+ #~ msgid "New Group Name"
3775
+ #~ msgstr "Novo nome de Grupo"
3776
+
3777
+ #~ msgid "Staff"
3778
+ #~ msgstr "Colaboradores"
3779
+
3780
+ #~ msgid "Add New Staff"
3781
+ #~ msgstr "Adicionar Novo Colaborador"
3782
+
3783
+ #~ msgid "Edit Staff"
3784
+ #~ msgstr "Editar Colaboradores"
3785
+
3786
+ #~ msgid "New Staff"
3787
+ #~ msgstr "Novo Colaborador"
3788
+
3789
+ #~ msgid "All Staff"
3790
+ #~ msgstr "Todos Colaboradores"
3791
+
3792
+ #~ msgid "View Staff"
3793
+ #~ msgstr "Visualizar Colaborador"
3794
+
3795
+ #~ msgid "Search Staff"
3796
+ #~ msgstr "Buscar Colaboradores"
3797
+
3798
+ #~ msgid "No Staff found"
3799
+ #~ msgstr "Nenhum Colaborador Encontrado"
3800
+
3801
+ #~ msgid "No Staff found in Trash"
3802
+ #~ msgstr "Nenhum Colaborador Encontrado na Lixeira"
3803
+
3804
+ #~ msgid "Staff Group"
3805
+ #~ msgstr "Grupo de Colaboradores"
3806
+
3807
+ #~ msgid "Adds a gallery to any widget area."
3808
+ #~ msgstr "Adiciona uma galera em qualquer espaço de widgets"
3809
+
3810
+ #~ msgid "Standard"
3811
+ #~ msgstr "Padrão"
3812
+
3813
+ #~ msgid "Masonry"
3814
+ #~ msgstr "Masonry"
3815
+
3816
+ #~ msgid "Carousel"
3817
+ #~ msgstr "Carrossel"
3818
+
3819
+ #~ msgid "Slider"
3820
+ #~ msgstr "Slider"
3821
+
3822
+ #~ msgid "1 Column"
3823
+ #~ msgstr "1 Coluna"
3824
+
3825
+ #~ msgid "2 Columns"
3826
+ #~ msgstr "2 Colunas"
3827
+
3828
+ #~ msgid "3 Columns"
3829
+ #~ msgstr "3 Colunas"
3830
+
3831
+ #~ msgid "4 Columns"
3832
+ #~ msgstr "4 Colunas"
3833
+
3834
+ #~ msgid "5 Columns"
3835
+ #~ msgstr "5 Colunas"
3836
+
3837
+ #~ msgid "6 Columns"
3838
+ #~ msgstr "6 Colunas"
3839
+
3840
+ #~ msgid "Gallery Type"
3841
+ #~ msgstr "Tipo da Galeria"
3842
+
3843
+ #~ msgid "Gallery Columns"
3844
+ #~ msgstr "Colunas da Galeria"
3845
+
3846
+ #~ msgid "Display Captions"
3847
+ #~ msgstr "Mostrar legendas"
3848
+
3849
+ #~ msgid "If Type Slider"
3850
+ #~ msgstr "Caso Type Slider"
3851
+
3852
+ #~ msgid "Slider Width (e.g. = 600)"
3853
+ #~ msgstr "Largura do Slider (ex. = 600)"
3854
+
3855
+ #~ msgid "Slider Height (e.g. = 400)"
3856
+ #~ msgstr "Altura do Slider (ex. = 400)"
3857
+
3858
+ #~ msgid "Slider Speed (e.g. = 7000)"
3859
+ #~ msgstr "Velocidade do Slider (ex. = 7000)"
3860
+
3861
+ #~ msgid "Virtue: Carousel"
3862
+ #~ msgstr "Virtue: Carrossel"
3863
+
3864
+ #~ msgid "Portfolio Posts"
3865
+ #~ msgstr "Posts do Portfólio"
3866
+
3867
+ #~ msgid "Sale Products"
3868
+ #~ msgstr "Produtos em promoção"
3869
+
3870
+ #~ msgid "Best Products"
3871
+ #~ msgstr "Melhores Produtos"
3872
+
3873
+ #~ msgid "Category of Products"
3874
+ #~ msgstr "Categoria de Produtos"
3875
+
3876
+ #~ msgid "1 item"
3877
+ #~ msgstr "1 item"
3878
+
3879
+ #~ msgid "All Visible"
3880
+ #~ msgstr "Todos Visíveis"
3881
+
3882
+ #~ msgid "Carousel Type"
3883
+ #~ msgstr "Tipo do Carrossel"
3884
+
3885
+ #~ msgid "Carousel Columns"
3886
+ #~ msgstr "Colunas do Carrossel"
3887
+
3888
+ #~ msgid "Scroll Setting"
3889
+ #~ msgstr "Opções de rolagem"
3890
+
3891
+ #~ msgid "Items (e.g. = 8)"
3892
+ #~ msgstr "Itens (ex. = 8)"
3893
+
3894
+ #~ msgid "Order by"
3895
+ #~ msgstr "Ordenar por"
3896
+
3897
+ #~ msgid "Blog Post Category"
3898
+ #~ msgstr "Categorias de Posts"
3899
+
3900
+ #~ msgid "Portfolio Category"
3901
+ #~ msgstr "Categoria do Portfólio"
3902
+
3903
+ #~ msgid "Product Category"
3904
+ #~ msgstr "Categoria do Produto"
3905
+
3906
+ #~ msgid "Carousel Speed (e.g. = 7000)"
3907
+ #~ msgstr "Velocidade do Carrossel (ex. = 7000)"
3908
+
3909
+ #~ msgid "Adds a info box with icon options"
3910
+ #~ msgstr "Adiciona uma caixa de informações com opções de ícones"
3911
+
3912
+ #~ msgid "Virtue: Info Box"
3913
+ #~ msgstr "Virtue: Caixa de Informações"
3914
+
3915
+ #~ msgid "Or upload a custom icon"
3916
+ #~ msgstr "Ou envie um ícone customizado"
3917
+
3918
+ #~ msgid "Box Background Color (e.g. = #f2f2f2)"
3919
+ #~ msgstr "Cor de Fundo da Caixa (ex. = #f2f2f2)"
3920
+
3921
+ #~ msgid "Text Color (e.g. = #444444)"
3922
+ #~ msgstr "Cor do Texto (ex. = #444444)"
3923
+
3924
+ #~ msgid "Icon Size (e.g. = 48)"
3925
+ #~ msgstr "Tamanho do Ícone (ex. = 48)"
3926
+
3927
+ #~ msgid "Icon Background Color (e.g. = #444444)"
3928
+ #~ msgstr "Cor de Fundo do Ícone (ex. = #444444)"
3929
+
3930
+ #~ msgid "Icon Color (e.g. = #f2f2f2)"
3931
+ #~ msgstr "Cor do Ícone (ex. = #f2f2f2)"
3932
+
3933
+ #~ msgid "Link:"
3934
+ #~ msgstr "Link:"
3935
+
3936
+ #~ msgid "Adds a google map to a widget area"
3937
+ #~ msgstr "Adiciona um mapa do Google em qualquer espaço de widgets"
3938
+
3939
+ #~ msgid "Virtue: Google Map"
3940
+ #~ msgstr "Virtue: Google Map"
3941
+
3942
+ #~ msgid "Marker Title:"
3943
+ #~ msgstr "Título do Marcador:"
3944
+
3945
+ #~ msgid "Marker Address"
3946
+ #~ msgstr "Endereço do Marcador"
3947
+
3948
+ #~ msgid "Map Height (e.g. = 300)"
3949
+ #~ msgstr "Altura do Mapa (ex. = 300)"
3950
+
3951
+ #~ msgid "Marker Title Two:"
3952
+ #~ msgstr "Título Dois do Marcador:"
3953
+
3954
+ #~ msgid "Marker Address Two"
3955
+ #~ msgstr "Endereço Dois do Marcador"
3956
+
3957
+ #~ msgid "Marker Title Three:"
3958
+ #~ msgstr "Título Três do Marcador:"
3959
+
3960
+ #~ msgid "Marker Address Three"
3961
+ #~ msgstr "Endereço Três do Marcador"
3962
+
3963
+ #~ msgid "Marker Title Four:"
3964
+ #~ msgstr "Título Quatro do Marcador:"
3965
+
3966
+ #~ msgid "Marker Address Four"
3967
+ #~ msgstr "Endereço Quatro do Marcador"
3968
+
3969
+ #~ msgid "Map Center (defauts to first address)"
3970
+ #~ msgstr "Centro do Mapa (O padrão é o primeiro endereço)"
3971
+
3972
+ #~ msgid "Adds a simple call to action"
3973
+ #~ msgstr "Adiciona um simples call to action"
3974
+
3975
+ #~ msgid "Virtue: Call to Action"
3976
+ #~ msgstr "Virtue: Caixa Call to Action"
3977
+
3978
+ #~ msgid "Self"
3979
+ #~ msgstr "Mesma janela"
3980
+
3981
+ #~ msgid "Title Size (e.g. = 48)"
3982
+ #~ msgstr "Tamanho do Título (ex. = 48)"
3983
+
3984
+ #~ msgid "Title Color (e.g. = #f2f2f2)"
3985
+ #~ msgstr "Cor do Título (ex. = #f2f2f2)"
3986
+
3987
+ #~ msgid "Subtitle Size (e.g. = 48)"
3988
+ #~ msgstr "Tamanho do Subtítulo (ex. = 48)"
3989
+
3990
+ #~ msgid "Subtitle Color (e.g. = #f2f2f2)"
3991
+ #~ msgstr "Cor do Subtítulo (ex. = #f2f2f2)"
3992
+
3993
+ #~ msgid "Button Text:"
3994
+ #~ msgstr "Texto do Botão"
3995
+
3996
+ #~ msgid "Adds an image background with text, link and hover effect."
3997
+ #~ msgstr "Adiciona uma imagem de fundo com texto, link e efeito hover."
3998
+
3999
+ #~ msgid "Virtue: Image Menu Item"
4000
+ #~ msgstr "Virtue: Item de Menu de Imagem"
4001
+
4002
+ #~ msgid "Upload an image"
4003
+ #~ msgstr "Envie uma imagem"
4004
+
4005
+ #~ msgid "Item Height (e.g. = 220)"
4006
+ #~ msgstr "Altura do Item (ex. = 220)"
4007
+
4008
+ #~ msgid "Install Suggested Plugins"
4009
+ #~ msgstr "Instalar Plugins Sugeridos"
4010
+
4011
+ #~ msgid "Return to recommended Plugins Installer"
4012
+ #~ msgstr "Retornar para o instalador de Plugins Recomendados"
4013
+
4014
+ #~ msgid "Sorry, no staff entries found."
4015
+ #~ msgstr "Desculpe, nenhum colaborador foi encontrado."
4016
+
4017
+ #~ msgid "Delete"
4018
+ #~ msgstr "Remover"
4019
+
4020
+ #~ msgid "Select File"
4021
+ #~ msgstr "Escolha um arquivo"
4022
+
4023
+ #~ msgid "Select Image"
4024
+ #~ msgstr "Selecione uma imagem"
4025
+
4026
+ #~ msgid "Category Image"
4027
+ #~ msgstr "Imagem da Categoria"
4028
+
4029
+ #~ msgid "Location - optional"
4030
+ #~ msgstr "Local - opcional"
4031
+
4032
+ #~ msgid "Position or Company - optional"
4033
+ #~ msgstr "Posição ou Empresa - opcional"
4034
+
4035
+ #~ msgid "Link - optional"
4036
+ #~ msgstr "Link - opcional"
4037
+
4038
+ #~ msgid "Image Upload - optional"
4039
+ #~ msgstr "Envio da Imagem - opcional"
4040
+
4041
+ #~ msgid "Please add testimonial content."
4042
+ #~ msgstr "Por favor insira conteúdo do depoimento."
4043
+
4044
+ #~ msgid "You must be logged in to submit an testimonial."
4045
+ #~ msgstr "Você deve estar logado para enviar um depoimento."
4046
+
4047
+ #~ msgid ""
4048
+ #~ "Thank you for submitting your testimonial! It is now awaiting approval "
4049
+ #~ "from the site admnistator. Thank you!"
4050
+ #~ msgstr ""
4051
+ #~ "Obrigado por enviar o seu depoimento! Agora ele está aguardando "
4052
+ #~ "aprovação. Obrigado!"
4053
+
4054
+ #~ msgid " Testimonial Post"
4055
+ #~ msgstr "Post Depoimento"
4056
+
4057
+ #~ msgid "Sorry, no testimonial entries found."
4058
+ #~ msgstr "Desculpe, nenhum depoimento foi encontrado."
4059
+
4060
+ #~ msgid "portfolio"
4061
+ #~ msgstr "portfolio"
4062
+
4063
+ #~ msgid "Header Widget Area"
4064
+ #~ msgstr "Área de widgets do Cabeçalho"
4065
+
4066
+ #~ msgid "Home Widget Area"
4067
+ #~ msgstr "Área de widgets na Home"
4068
+
4069
+ #~ msgid "Stumbleupon:"
4070
+ #~ msgstr "Stumbleupon:"
4071
+
4072
+ #~ msgid "Viadeo:"
4073
+ #~ msgstr "Viadeo:"
4074
+
4075
+ #~ msgid "xing:"
4076
+ #~ msgstr "xing:"
4077
+
4078
+ #~ msgid "Orderby:"
4079
+ #~ msgstr "Ordenar por:"
4080
+
4081
+ #~ msgid "This shows a slider with your testimonials"
4082
+ #~ msgstr "Isso mostra um slider com os seus depoimentos"
4083
+
4084
+ #~ msgid "Virtue: Testimonial Carousel"
4085
+ #~ msgstr "Virtue: Carrossel de Depoimentos"
4086
+
4087
+ #~ msgid "none"
4088
+ #~ msgstr "nenhum"
4089
+
4090
+ #~ msgid "Page Link"
4091
+ #~ msgstr "Link da Página"
4092
+
4093
+ #~ msgid "Post Link"
4094
+ #~ msgstr "Link do Post"
4095
+
4096
+ #~ msgid "Number of words to show:"
4097
+ #~ msgstr "Número de palavras para mostrar:"
4098
+
4099
+ #~ msgid "Limit to Group (Optional):"
4100
+ #~ msgstr "Limitar para um Grupo (Opcional):"
4101
+
4102
+ #~ msgid "Link Options:"
4103
+ #~ msgstr "Opções do Link:"
4104
+
4105
+ #~ msgid "If link to page, choose page:"
4106
+ #~ msgstr "Caso linkar para a página, escolha a página:"
4107
+
4108
+ #~ msgid "Link text (e.g. = Read More)"
4109
+ #~ msgstr "Texto do Link (ex. = Leia Mais)"
4110
+
4111
+ #~ msgid "Virtue: Post Grid"
4112
+ #~ msgstr "Virtue: Grade de Posts"
4113
+
4114
+ #~ msgid "Name: "
4115
+ #~ msgstr "Nome:"
4116
+
4117
+ #~ msgid "Search for products"
4118
+ #~ msgstr "Buscar por produtos"
4119
+
4120
+ #~ msgid "Featured News"
4121
+ #~ msgstr "Notícias Destacadas"
4122
+
4123
+ #~ msgid "Banner Link"
4124
+ #~ msgstr "Link do Banner"
4125
+
4126
+ #~ msgid "Choose a Header Style"
4127
+ #~ msgstr "Escolha o estilo do Cabeçalho"
4128
+
4129
+ #~ msgid "Header Start Height"
4130
+ #~ msgstr "Altura inicial do Cabeçalho"
4131
+
4132
+ #~ msgid "Note: This header style does not have secondary menu support."
4133
+ #~ msgstr ""
4134
+ #~ "Nota: Esse estilo de Cabeçalho não tem suporte para menu secundário."
4135
+
4136
+ #~ msgid "Choose how many menu items per Side"
4137
+ #~ msgstr "Escolha quantos itens do menu por lado"
4138
+
4139
+ #~ msgid "This determines how many menu items fit on each side of the logo"
4140
+ #~ msgstr "Isso determina quantos itens do menu encaixam em cada lado do logo"
4141
+
4142
+ #~ msgid "Enable Sticky Header?"
4143
+ #~ msgstr "Habilitar Cabeçalho \"grudento\"?"
4144
+
4145
+ #~ msgid "Choose to enable fixed header. Automatically off for mobile"
4146
+ #~ msgstr "Escolha fixar o cabeçalho. Automaticamente desligado para mobile"
4147
+
4148
+ #~ msgid "Enable Mobile Sticky Header?"
4149
+ #~ msgstr "Habilitar Cabeçalho \"grudento\" no mobile?"
4150
+
4151
+ #~ msgid "Choose to enable fixed header for mobile"
4152
+ #~ msgstr "Escolha fixar o cabeçalho para mobile"
4153
+
4154
+ #~ msgid "Thumb Slider"
4155
+ #~ msgstr "Thumb Slider"
4156
+
4157
+ #~ msgid "Cyclone Slider / Shortcode"
4158
+ #~ msgstr "Cyclone Slider / Shortcode"
4159
+
4160
+ #~ msgid "Choose your Revolution Slider Here"
4161
+ #~ msgstr "Escolha seu Revolution Slider aqui"
4162
+
4163
+ #~ msgid "If Kadence Slider"
4164
+ #~ msgstr "Se Kadence Slider"
4165
+
4166
+ #~ msgid "Choose your Kadence Slider Here"
4167
+ #~ msgstr "Escolha seu Kadence Slider aqui"
4168
+
4169
+ #~ msgid "Move Slider above Header"
4170
+ #~ msgstr "Mover Slider acima do Cabeçalho"
4171
+
4172
+ #~ msgid "This works great for full screen sliders"
4173
+ #~ msgstr "Isso funciona muito bem para sliders full screen"
4174
+
4175
+ #~ msgid "Add arrow at the bottom of slider"
4176
+ #~ msgstr "Adicionar seta ao final do slider"
4177
+
4178
+ #~ msgid "This adds a little arrow link that scrolls down into the content"
4179
+ #~ msgstr "Isso adiciona uma pequena seta linkada para rolar até o conteúdo"
4180
+
4181
+ #~ msgid "If Cyclone Slider or using any shortcode"
4182
+ #~ msgstr "Caso Cyclone Slider ou usando algum shortcode"
4183
+
4184
+ #~ msgid "Paste shortcode here"
4185
+ #~ msgstr "Cole o shortcode aqui"
4186
+
4187
+ #~ msgid "Fade"
4188
+ #~ msgstr "Esmaecer"
4189
+
4190
+ #~ msgid "Paste Cyclone Slider shortcode here"
4191
+ #~ msgstr "Cole o shorcode do Cyclone Slider aqui"
4192
+
4193
+ #~ msgid "Image Menu"
4194
+ #~ msgstr "Menu de Imagens"
4195
+
4196
+ #~ msgid "Portfolio Full"
4197
+ #~ msgstr "Portfólio Completo"
4198
+
4199
+ #~ msgid "On Sale Products"
4200
+ #~ msgstr "Produtos em Promoção"
4201
+
4202
+ #~ msgid "Best Selling Products"
4203
+ #~ msgstr "Produtos mais vendidos"
4204
+
4205
+ #~ msgid "Custom Carousel"
4206
+ #~ msgstr "Carrossel Personalizado"
4207
+
4208
+ #~ msgid "Home Image Menu"
4209
+ #~ msgstr "Menu de Imagens da Home"
4210
+
4211
+ #~ msgid "Add images, descriptions, titles, and links"
4212
+ #~ msgstr "Adicionar imagens, descrições, títulos e links"
4213
+
4214
+ #~ msgid "Image Menu Height"
4215
+ #~ msgstr "Altura do Menu de Imagens"
4216
+
4217
+ #~ msgid "Home Featured Product Settings"
4218
+ #~ msgstr "Opções dos Produtos Destacados da Home"
4219
+
4220
+ #~ msgid "Home Product Carousel Title"
4221
+ #~ msgstr "Título do Carrossel de Produtos na Home"
4222
+
4223
+ #~ msgid "e.g. = Featured Products"
4224
+ #~ msgstr "ex. = Produtos Destacados"
4225
+
4226
+ #~ msgid "Choose how many columns are in carousel"
4227
+ #~ msgstr "Escolha quantas colunas terão no carrossel"
4228
+
4229
+ #~ msgid "Choose how many products are in carousel"
4230
+ #~ msgstr "Escolha quantos produtos irão no carrossel"
4231
+
4232
+ #~ msgid "Carousel Scroll"
4233
+ #~ msgstr "Rolagem do Carrossel"
4234
+
4235
+ #~ msgid "Choose how the product items scroll."
4236
+ #~ msgstr "Escolha como os produtos deslizam."
4237
+
4238
+ #~ msgid "One Item"
4239
+ #~ msgstr "Um item"
4240
+
4241
+ #~ msgid "Choose the carousel speed (in seconds)."
4242
+ #~ msgstr "Escolha a velocidade do carrossel (em segundos)"
4243
+
4244
+ #~ msgid "Home On Sale Product Settings"
4245
+ #~ msgstr "Opções dos Produtos em Promoção na Home"
4246
+
4247
+ #~ msgid "Home On Sale Product Carousel Title"
4248
+ #~ msgstr "Título do Carrossel de Produtos na Promoção na Home"
4249
+
4250
+ #~ msgid "e.g. = On Sale Products"
4251
+ #~ msgstr "ex. = Produtos em Promoção"
4252
+
4253
+ #~ msgid "Home Best Selling Product Settings"
4254
+ #~ msgstr "Opções dos Produtos Mais Vendidos na Home"
4255
+
4256
+ #~ msgid "Home Best Selling Product Carousel Title"
4257
+ #~ msgstr "Título do Carrossel de Produtos Mais Vendidos na Home"
4258
+
4259
+ #~ msgid "e.g. = Best Selling Products"
4260
+ #~ msgstr "ex. = Produtos mais vendidos"
4261
+
4262
+ #~ msgid "e.g. = Latest from the blog"
4263
+ #~ msgstr "ex. = Últimas do blog"
4264
+
4265
+ #~ msgid "Choose how many post columns on Homepage"
4266
+ #~ msgstr "Escolha quantas colunas de post irão na Home"
4267
+
4268
+ #~ msgid "Home Post Excerpt Length"
4269
+ #~ msgstr "Tamanho do Resumo do Post na Home"
4270
+
4271
+ #~ msgid "Determines how many words are in the post excerpt."
4272
+ #~ msgstr "Determina quantas palavras estarão no resumo do post."
4273
+
4274
+ #~ msgid "e.g. = Portfolio Carousel title"
4275
+ #~ msgstr "ex. = Título do Carrossel do Portfólio"
4276
+
4277
+ #~ msgid "Set height for portfolio items - Optional"
4278
+ #~ msgstr "Definir altura para os itens do portfólio - Opcional"
4279
+
4280
+ #~ msgid "Example 400"
4281
+ #~ msgstr "Exemplo 400"
4282
+
4283
+ #~ msgid "Portfolio Carousel Scroll"
4284
+ #~ msgstr "Rolagem do Carrossel do Portfólio"
4285
+
4286
+ #~ msgid "Choose how the portfolio items scroll."
4287
+ #~ msgstr "Escolha como os itens do portfólio rolam."
4288
+
4289
+ #~ msgid "Home Custom Carousel Settings"
4290
+ #~ msgstr "Opções do Carrossel Personalizado da Home"
4291
+
4292
+ #~ msgid "Home Custom Carousel Title"
4293
+ #~ msgstr "Título do Carrossel Personalizado da Home"
4294
+
4295
+ #~ msgid "e.g. = Featured News"
4296
+ #~ msgstr "ex. = Notícias Destacadas"
4297
+
4298
+ #~ msgid "Custom Carousel Items"
4299
+ #~ msgstr "Itens do Carrossel Personalizado"
4300
+
4301
+ #~ msgid "Custom Carousel Scroll"
4302
+ #~ msgstr "Rolagem do Carrossel Personalizado"
4303
+
4304
+ #~ msgid "Choose how the custom items scroll."
4305
+ #~ msgstr "Escolha como os itens customizados rolam."
4306
+
4307
+ #~ msgid "Icon Menu Box Background Color"
4308
+ #~ msgstr "Cor de Fundo da Caixa do Menu de Ícones"
4309
+
4310
+ #~ msgid ""
4311
+ #~ "Choose the background color for icon menu boxes. * Note the hover color "
4312
+ #~ "is set by your primary color in basic styling."
4313
+ #~ msgstr ""
4314
+ #~ "Escolha a cor de fundo para as caixas de menu com ícones. *Note que a cor "
4315
+ #~ "quando passar o mouse será definida pela cor primária no estilo básico."
4316
+
4317
+ #~ msgid "Icon Menu Font and Icon Color"
4318
+ #~ msgstr "Cor da Fonte e do Ícone do Menu de Ícones"
4319
+
4320
+ #~ msgid ""
4321
+ #~ "Choose the color for icon menu font and icon. * Note the hover color is "
4322
+ #~ "set to white and background is set to primary color."
4323
+ #~ msgstr ""
4324
+ #~ "Escolha a cor para o ícone do menu e a fonte. * Note que a cor quando "
4325
+ #~ "passar o mouse será branca e o fundo será a cor primária."
4326
+
4327
+ #~ msgid "Home Portfolio Full Settings"
4328
+ #~ msgstr "Opções do Portfólio Completo na Home"
4329
+
4330
+ #~ msgid "Home Portfolio Full Title"
4331
+ #~ msgstr "Título do Portfólio Completo na Home"
4332
+
4333
+ #~ msgid "e.g. = Our Work"
4334
+ #~ msgstr "ex. = Nosso Trabalho"
4335
+
4336
+ #~ msgid "Portfolio Full Category Type"
4337
+ #~ msgstr "Categoria do Portfólio Completo"
4338
+
4339
+ #~ msgid "Choose type for the Portfolio Full"
4340
+ #~ msgstr "Escolha mostrar ou esconder o portfólio largo"
4341
+
4342
+ #~ msgid "Display Portfolio Filter"
4343
+ #~ msgstr "Mostrar filtro do portfólio"
4344
+
4345
+ #~ msgid "Choose how many Portfolio Items on Homepage"
4346
+ #~ msgstr "Escolha quantos itens do Portfólio irão na Home"
4347
+
4348
+ #~ msgid "Portfolio full Order by"
4349
+ #~ msgstr "Ordenar Portfólio Completo por"
4350
+
4351
+ #~ msgid "Choose how the portfolio items should be ordered."
4352
+ #~ msgstr "Escolha como os itens do portfólio devem ser ordenados."
4353
+
4354
+ #~ msgid "Choose how many Portfolio columns"
4355
+ #~ msgstr "Escolha quantas colunas do Portfólio"
4356
+
4357
+ #~ msgid "Masonry Style"
4358
+ #~ msgstr "Estilo do Masonry"
4359
+
4360
+ #~ msgid "Display lightbox link in top right corner?"
4361
+ #~ msgstr "Mostrar um link para o lightbox no canto superior direito?"
4362
+
4363
+ #~ msgid "Page Content Options (if home page is latest post page)"
4364
+ #~ msgstr ""
4365
+ #~ "Opções do Conteúdo da Página (se a página inicial é a lista de últimas "
4366
+ #~ "postagens)"
4367
+
4368
+ #~ msgid "Post Excerpt"
4369
+ #~ msgstr "Resumo do Post"
4370
+
4371
+ #~ msgid "Use Post Grid Format"
4372
+ #~ msgstr "Usar formato de grade nos Posts"
4373
+
4374
+ #~ msgid "Shop Product Column Layout"
4375
+ #~ msgstr "Layout da Coluna dos Produtos da Loja"
4376
+
4377
+ #~ msgid "Choose how many product columns on the shop and category pages"
4378
+ #~ msgstr ""
4379
+ #~ "Escolha quantas colunas de produtos irão nas páginas de categoria e loja"
4380
+
4381
+ #~ msgid "Display the sidebar on Shop Page?"
4382
+ #~ msgstr "Mostrar a barra lateral na página da Loja?"
4383
+
4384
+ #~ msgid "This determines if there is a sidebar on the shop page."
4385
+ #~ msgstr ""
4386
+ #~ "Isso determina se irá ter ou não uma barra lateral na página de compra."
4387
+
4388
+ #~ msgid "Display the sidebar on Product Category Pages?"
4389
+ #~ msgstr "Mostrar a barra lateral nas páginas de Categorias dos Produtos?"
4390
+
4391
+ #~ msgid "This determines if there is a sidebar on the product category pages."
4392
+ #~ msgstr ""
4393
+ #~ "Isso determina se irá ter ou não uma barra lateral nas páginas de "
4394
+ #~ "categorias dos produtos."
4395
+
4396
+ #~ msgid "Choose a Sidebar for your Product Category Pages"
4397
+ #~ msgstr "Escolha a barra lateral para a página de categorias de produtos"
4398
+
4399
+ #~ msgid "Show Category Filter on Shop Page"
4400
+ #~ msgstr "Mostrar filtros de Categoria nas páginas da loja"
4401
+
4402
+ #~ msgid "This adds an dynamic filter to the shop page"
4403
+ #~ msgstr "Isso adiciona um filtro dinâmico para as páginas de compra"
4404
+
4405
+ #~ msgid "Show Category Filter on Category Pages"
4406
+ #~ msgstr "Mostrar filtros de Categoria nas páginas de Categoria"
4407
+
4408
+ #~ msgid "This adds an dynamic filter to Category pages"
4409
+ #~ msgstr "Isso adiciona um filtro dinâmico para as páginas de Categoria"
4410
+
4411
+ #~ msgid "Use Infinite Scroll on Shop pages"
4412
+ #~ msgstr "Usar Rolagem Infinita na Loja"
4413
+
4414
+ #~ msgid "Not recomended that you use with filter."
4415
+ #~ msgstr "Não é recomendado que você use com filtro."
4416
+
4417
+ #~ msgid "Show Sold tag if product out of stock."
4418
+ #~ msgstr "Mostrar tag \"Vendido\" se o produto está fora de estoque."
4419
+
4420
+ #~ msgid ""
4421
+ #~ "This determines if a sold tag is displayed on the top right of the "
4422
+ #~ "product image"
4423
+ #~ msgstr ""
4424
+ #~ "Isso determina se uma tag de vendido aparece no topo direito da imagem do "
4425
+ #~ "produto"
4426
+
4427
+ #~ msgid "Hide Add to Cart Till Mouse Hover"
4428
+ #~ msgstr "Esconder \"Adicionar para o carrinho\" até o passar do mouse"
4429
+
4430
+ #~ msgid ""
4431
+ #~ "This determines if add to cart button will be hidden till the mouse "
4432
+ #~ "hovers over the product"
4433
+ #~ msgstr ""
4434
+ #~ "Isso determina se o botão \"Adicionar no carrinho\" vai ficar escondido "
4435
+ #~ "até o mouse passar sobre o produto"
4436
+
4437
+ #~ msgid "Product Image Flip"
4438
+ #~ msgstr "Flip da Imagem do Produto"
4439
+
4440
+ #~ msgid ""
4441
+ #~ "This allows your product image to flip to the first gallery image when "
4442
+ #~ "hovered over on shop page. *Note only works in newer browsers."
4443
+ #~ msgstr ""
4444
+ #~ "Isso permite que a imagem do seu produto vire para a primeira imagem da "
4445
+ #~ "galeria dele quando passar o mouse. *Note que essa funcionalidade é para "
4446
+ #~ "os navegadores mais novos."
4447
+
4448
+ #~ msgid "Shop Category Image Size"
4449
+ #~ msgstr "Tamanho da Imagem nas Categorias da Loja"
4450
+
4451
+ #~ msgid "Shop Category Column Layout"
4452
+ #~ msgstr "Layout das Colunas nas Categorias da Loja"
4453
+
4454
+ #~ msgid ""
4455
+ #~ "Choose how many Category Image columns to show on the shop and category "
4456
+ #~ "pages"
4457
+ #~ msgstr ""
4458
+ #~ "Escolha quantas colunas de Imagens de Categoria irão aparecer nas páginas "
4459
+ #~ "de loja e categoria"
4460
+
4461
+ #~ msgid "Category Image Aspect Ratio"
4462
+ #~ msgstr "Proporção da Imagem da Categoria"
4463
+
4464
+ #~ msgid ""
4465
+ #~ "If enabled below this sets how you want your category images to be "
4466
+ #~ "cropped."
4467
+ #~ msgstr ""
4468
+ #~ "Se habilitado abaixo, define como você quer que as imagens da categoria "
4469
+ #~ "sejam cortadas."
4470
+
4471
+ #~ msgid "Product Image Aspect Ratio"
4472
+ #~ msgstr "Proporção da Imagem do Produto"
4473
+
4474
+ #~ msgid ""
4475
+ #~ "If enabled below this sets how you want your product images to be cropped."
4476
+ #~ msgstr ""
4477
+ #~ "Se habilitado abaixo, define como você quer que as imagens dos produtos "
4478
+ #~ "sejam cortadas."
4479
+
4480
+ #~ msgid "Shop Slider"
4481
+ #~ msgstr "Slider da Loja"
4482
+
4483
+ #~ msgid "Would you like to use have a slider on your shop page?"
4484
+ #~ msgstr "Você deseja colocar um slider na página da loja?"
4485
+
4486
+ #~ msgid "Choose a Slider for your shop page"
4487
+ #~ msgstr "Escolha um slider para a página da loja"
4488
+
4489
+ #~ msgid ""
4490
+ #~ "Note: does not work if images are smaller than max. If using sidebar set "
4491
+ #~ "to 770"
4492
+ #~ msgstr ""
4493
+ #~ "Nota: Não funciona caso as imagens sejam menores que o máximo. Se estiver "
4494
+ #~ "usando uma barra lateral defina para 770"
4495
+
4496
+ #~ msgid "Single Product Layout"
4497
+ #~ msgstr "Layout do Produto"
4498
+
4499
+ #~ msgid ""
4500
+ #~ "This determines if the image and product title layout on single product "
4501
+ #~ "pages."
4502
+ #~ msgstr ""
4503
+ #~ "Isso determina o layout da imagem e do título do produto nas páginas dos "
4504
+ #~ "produtos."
4505
+
4506
+ #~ msgid "Product Sidebar Default"
4507
+ #~ msgstr "Barra lateral padrão nos Produtos"
4508
+
4509
+ #~ msgid "No, Do not Show"
4510
+ #~ msgstr "Não, não mostrar"
4511
+
4512
+ #~ msgid "Choose a Default Sidebar for your Single Product Pages"
4513
+ #~ msgstr "Escolha a barra lateral padrão para as páginas de produto"
4514
+
4515
+ #~ msgid "Display variations as radio buttons instead of select box?"
4516
+ #~ msgstr ""
4517
+ #~ "Mostrar variações dos produtos como botões ao invés de uma caixa de "
4518
+ #~ "seleção?"
4519
+
4520
+ #~ msgid "This will display product varations in a box form."
4521
+ #~ msgstr ""
4522
+ #~ "Isso irá mostrar as variações do produto em uma caixa de formulário."
4523
+
4524
+ #~ msgid "Display Product Navigation arrows beside title?"
4525
+ #~ msgstr "Mostrar Setas para navegar entre os produtos ao lado do título?"
4526
+
4527
+ #~ msgid ""
4528
+ #~ "This will display navigation arrow beside product title to navigate to "
4529
+ #~ "other products in the same category."
4530
+ #~ msgstr ""
4531
+ #~ "Isso irá mostrar a seta de navegação ao lado do título do produto para "
4532
+ #~ "navegar em outros produtos da mesma categoria."
4533
+
4534
+ #~ msgid "Scroll to Tab?"
4535
+ #~ msgstr "Rolar para aba?"
4536
+
4537
+ #~ msgid "This scrolls the page to the product tab when clicked"
4538
+ #~ msgstr "Isso desliza a página para a aba do produto quando clicado"
4539
+
4540
+ #~ msgid "Product Tab Order - Lowest First"
4541
+ #~ msgstr "Ordem das abas dos produtos - Menor primeiro"
4542
+
4543
+ #~ msgid "Description Tab"
4544
+ #~ msgstr "Aba de Descrição"
4545
+
4546
+ #~ msgid "Additional Information Tab"
4547
+ #~ msgstr "Adicionar Aba de Informações"
4548
+
4549
+ #~ msgid "Reviews Tab"
4550
+ #~ msgstr "Aba de Avaliações"
4551
+
4552
+ #~ msgid "Activate Custom Tab 01"
4553
+ #~ msgstr "Ativar Aba Customizada 01"
4554
+
4555
+ #~ msgid "This adds a custom product tab to your products"
4556
+ #~ msgstr "Isso adiciona uma aba personalizada para seus produtos"
4557
+
4558
+ #~ msgid "Activate Custom Tab 02"
4559
+ #~ msgstr "Ativar Aba Customizada 02"
4560
+
4561
+ #~ msgid "Activate Custom Tab 03"
4562
+ #~ msgstr "Ativar Aba Customizada 03"
4563
+
4564
+ #~ msgid "Choose how many columns are in related product carousel"
4565
+ #~ msgstr "Escolha quantas colunas terão no carrossel de produtos relacionados"
4566
+
4567
+ #~ msgid "Portfolio Options"
4568
+ #~ msgstr "Opções do Portfólio"
4569
+
4570
+ #~ msgid "Portfolio Permalink Base"
4571
+ #~ msgstr "Base da URL do Portfólio"
4572
+
4573
+ #~ msgid "Standard: portfolio *NOTE If you change this resave your permalinks"
4574
+ #~ msgstr ""
4575
+ #~ "Padrão: portfólio *Note que se você modificar isso você deve salvar seus "
4576
+ #~ "permalinks"
4577
+
4578
+ #~ msgid "Portfolio Navigation Options"
4579
+ #~ msgstr "Opções de Navegação do Portfólio"
4580
+
4581
+ #~ msgid "Portfolio Arrow Navigation"
4582
+ #~ msgstr "Setas de navegação do Portfólio"
4583
+
4584
+ #~ msgid "Navigate through All Posts"
4585
+ #~ msgstr "Navegar através de Todos os Posts"
4586
+
4587
+ #~ msgid "Navigate through Category"
4588
+ #~ msgstr "Navegar através das Categorias"
4589
+
4590
+ #~ msgid "Portfolio Category Pages"
4591
+ #~ msgstr "Páginas de Categoria do Portfólio"
4592
+
4593
+ #~ msgid ""
4594
+ #~ "Choose how many portfolio columns to show on portfolio catagory pages."
4595
+ #~ msgstr ""
4596
+ #~ "Escolha quantas colunas do portfólio irão aparecer nas páginas de "
4597
+ #~ "categoria do portfólio."
4598
+
4599
+ #~ msgid "Portfolio Post Bottom Carousel"
4600
+ #~ msgstr "Carrossel do Rodapé do post do Portfólio"
4601
+
4602
+ #~ msgid "Choose how many columns to show on recent portfolio carousel."
4603
+ #~ msgstr "Escolha quantas colunas irão aparecer no carrossel do portfólio."
4604
+
4605
+ #~ msgid "Blog Options"
4606
+ #~ msgstr "Opções do Blog"
4607
+
4608
+ #~ msgid "Post Excerpt Length"
4609
+ #~ msgstr "Tamanho do Resumo do Post"
4610
+
4611
+ #~ msgid "Determines how many words are in an Excerpt."
4612
+ #~ msgstr "Determina quantas palavras estarão em um resumo."
4613
+
4614
+ #~ msgid "Show \"posted in\" categories with posts?"
4615
+ #~ msgstr "Mostrar categorias \"Postado em\" com os posts?"
4616
+
4617
+ #~ msgid "Choose to show or hide posted in categories under post title."
4618
+ #~ msgstr "Escolha mostrar ou esconder a categoria embaixo do título do post."
4619
+
4620
+ #~ msgid "Show Comment Icon with posts?"
4621
+ #~ msgstr "Mostrar ícone de comentários com os posts?"
4622
+
4623
+ #~ msgid "Choose to show or hide comment icon under post title."
4624
+ #~ msgstr ""
4625
+ #~ "Escolha mostrar ou esconder o ícone de comentários embaixo do título do "
4626
+ #~ "post."
4627
+
4628
+ #~ msgid "Show Date with posts?"
4629
+ #~ msgstr "Mostrar data com os posts?"
4630
+
4631
+ #~ msgid "Choose to show or hide date with post title."
4632
+ #~ msgstr "Escolha mostrar ou esconder a data no título do post."
4633
+
4634
+ #~ msgid "Use Infinite Scroll on Blog pages"
4635
+ #~ msgstr "Usar Rolagem Infinita no Blog"
4636
+
4637
+ #~ msgid ""
4638
+ #~ "Remove Pagination and creates infinite scroll instead. Note does not work "
4639
+ #~ "with slider post summaries"
4640
+ #~ msgstr ""
4641
+ #~ "Remove paginação e cria uma rolagem infinita. Note que não irá funcionar "
4642
+ #~ "com resumos de posts slider."
4643
+
4644
+ #~ msgid "Blog Post Sidebar Default"
4645
+ #~ msgstr "Barra lateral Padrão de Posts"
4646
+
4647
+ #~ msgid "Blog Post Author Box Default"
4648
+ #~ msgstr "Caixa de informações do Autor Padrão no Posts"
4649
+
4650
+ #~ msgid "Blog Post Bottom Carousel Default"
4651
+ #~ msgstr "Carrossel Padrão no Rodapé dos Posts"
4652
+
4653
+ #~ msgid "Display Similar Posts in random order?"
4654
+ #~ msgstr "Mostrar posts similares em ordem aleatória?"
4655
+
4656
+ #~ msgid "Blog Category/Archive Defaults"
4657
+ #~ msgstr "Padrões de Categoria de Blog/Arquivos"
4658
+
4659
+ #~ msgid "Category Display Type"
4660
+ #~ msgstr "Tipo de exibição da Categoria"
4661
+
4662
+ #~ msgid "Full Post"
4663
+ #~ msgstr "Post Completo"
4664
+
4665
+ #~ msgid "Choose a Sidebar for your Category/Archive Pages"
4666
+ #~ msgstr "Escolha a barra lateral para as página de Arquivos/Categorias"
4667
+
4668
+ #~ msgid "no-repeat"
4669
+ #~ msgstr "não-repetir"
4670
+
4671
+ #~ msgid "repeat"
4672
+ #~ msgstr "repetir"
4673
+
4674
+ #~ msgid "repeat-x"
4675
+ #~ msgstr "repetir-x"
4676
+
4677
+ #~ msgid "repeat-y"
4678
+ #~ msgstr "repetir-y"
4679
+
4680
+ #~ msgid "left"
4681
+ #~ msgstr "esquerda"
4682
+
4683
+ #~ msgid "center"
4684
+ #~ msgstr "centralizar"
4685
+
4686
+ #~ msgid "right"
4687
+ #~ msgstr "direita"
4688
+
4689
+ #~ msgid "top"
4690
+ #~ msgstr "topo"
4691
+
4692
+ #~ msgid "bottom"
4693
+ #~ msgstr "inferior"
4694
+
4695
+ #~ msgid "Feature Background"
4696
+ #~ msgstr "Plano de fundo do Destaque"
4697
+
4698
+ #~ msgid "Hover and Active Font Color"
4699
+ #~ msgstr "Cor da Fonte ativa ou quando passar o mouse"
4700
+
4701
+ #~ msgid "Hover and Active Background Color"
4702
+ #~ msgstr "Cor de Fundo ativo ou quando passar o mouse"
4703
+
4704
+ #~ msgid "Secondary Hover and Active Font Color"
4705
+ #~ msgstr "Destaque secundário no Hover e cor da fonte"
4706
+
4707
+ #~ msgid "Secondary Hover and Active Background Color"
4708
+ #~ msgstr "Destaque secundário no Hover e cor do plano de fundo"
4709
+
4710
+ #~ msgid "Secondary Menu Item Size"
4711
+ #~ msgstr "Tamanho do item do menu secundário"
4712
+
4713
+ #~ msgid "Choose how many menu items fit in the menu."
4714
+ #~ msgstr "Escolha quantos itens irão encaixar no menu."
4715
+
4716
+ #~ msgid "Four Items"
4717
+ #~ msgstr "Quatro itens"
4718
+
4719
+ #~ msgid "Five Items"
4720
+ #~ msgstr "Cinco itens"
4721
+
4722
+ #~ msgid "Six Items"
4723
+ #~ msgstr "Seis Itens"
4724
+
4725
+ #~ msgid "Seven Items"
4726
+ #~ msgstr "Sete itens"
4727
+
4728
+ #~ msgid "Eight Items"
4729
+ #~ msgstr "Oito itens"
4730
+
4731
+ #~ msgid "Dropdown Menu Style"
4732
+ #~ msgstr "Estilo do Menu Suspenso"
4733
+
4734
+ #~ msgid "Dropdown Font Color"
4735
+ #~ msgstr "Cor da Fonte do Menu Suspenso"
4736
+
4737
+ #~ msgid "Dropdown Background Color"
4738
+ #~ msgstr "Cor de Fundo do Menu Suspenso"
4739
+
4740
+ #~ msgid "Dropdown Border Color"
4741
+ #~ msgstr "Cor da Borda do Menu Suspenso"
4742
+
4743
+ #~ msgid "Mobile Menu only show button"
4744
+ #~ msgstr "Mostrar somente o botão para o Menu Mobile"
4745
+
4746
+ #~ msgid "Mobile Hover and Active Font Color"
4747
+ #~ msgstr "Cor da Fonte Ativo e de Hover para Mobile"
4748
+
4749
+ #~ msgid "Mobile Hover and Active Background Color"
4750
+ #~ msgstr "Cor de Fundo Ativo e de Hover para Mobile"
4751
+
4752
+ #~ msgid "Language Settings"
4753
+ #~ msgstr "Opções de Língua"
4754
+
4755
+ #~ msgid "Quick Language Settings"
4756
+ #~ msgstr "Opções Rápidas de Língua"
4757
+
4758
+ #~ msgid "Mobile Menu Title"
4759
+ #~ msgstr "Título do Menu Mobile"
4760
+
4761
+ #~ msgid "Standard: Menu"
4762
+ #~ msgstr "Padrão: Menu"
4763
+
4764
+ #~ msgid "Search Placeholder Text"
4765
+ #~ msgstr "Procurar Texto Placeholder"
4766
+
4767
+ #~ msgid "Standard: Search\""
4768
+ #~ msgstr "Padrão: Buscar"
4769
+
4770
+ #~ msgid "Topbar Cart Total Text"
4771
+ #~ msgstr "Texto do Total do Carrinho na Barra superior"
4772
+
4773
+ #~ msgid "Standard: Your Cart"
4774
+ #~ msgstr "Padrão: Seu carrinho"
4775
+
4776
+ #~ msgid "Product Sold Text"
4777
+ #~ msgstr "Texto para Produtos \"Vendido\" (Fora de Estoque)"
4778
+
4779
+ #~ msgid "Standard: Sold"
4780
+ #~ msgstr "Padrão: Vendido"
4781
+
4782
+ #~ msgid "Product Sale Text"
4783
+ #~ msgstr "Texto de Produtos em Promoção"
4784
+
4785
+ #~ msgid "Standard: Sale"
4786
+ #~ msgstr "Padrão: Promoção"
4787
+
4788
+ #~ msgid "Standard: Read More"
4789
+ #~ msgstr "Padrão: Leia Mais"
4790
+
4791
+ #~ msgid "Post Author BY text"
4792
+ #~ msgstr "Texto \"Por\" do Autor do Post"
4793
+
4794
+ #~ msgid "Standard: by"
4795
+ #~ msgstr "Padrão: por"
4796
+
4797
+ #~ msgid "Post Category POSTED IN text"
4798
+ #~ msgstr "Texto \"Postado em\" da Categoria do Post"
4799
+
4800
+ #~ msgid "Standard: posted in:"
4801
+ #~ msgstr "Padrão: postado em:"
4802
+
4803
+ #~ msgid "Dynamic filter All text"
4804
+ #~ msgstr "Filtrar todo o texto dinâmicamente"
4805
+
4806
+ #~ msgid "Standard: All"
4807
+ #~ msgstr "Padrão: Todos"
4808
+
4809
+ #~ msgid "Mobile dynamic Filter Products text"
4810
+ #~ msgstr "Texto do Filtro Dinâmico de Produtos no Mobile"
4811
+
4812
+ #~ msgid "Standard: Filter Products"
4813
+ #~ msgstr "Padrão: Filtrar Produtos"
4814
+
4815
+ #~ msgid "Mobile dynamic Filter Projects text"
4816
+ #~ msgstr "Texto do Filtro Dinâmico de Projetos no Mobile"
4817
+
4818
+ #~ msgid "Standard: Filter Projects"
4819
+ #~ msgstr "Padrão: Filtrar Projetos"
4820
+
4821
+ #~ msgid "Product Page: Description tab text"
4822
+ #~ msgstr "Página do Produto: Texto da aba de Descrição"
4823
+
4824
+ #~ msgid "Standard: Description"
4825
+ #~ msgstr "Padrão: Descrição"
4826
+
4827
+ #~ msgid "Product Page: Description header text"
4828
+ #~ msgstr "Página do Produto: Texto do cabeçalho da Descrição"
4829
+
4830
+ #~ msgid "Standard: Product Description"
4831
+ #~ msgstr "Padrão: Descrição do Produto"
4832
+
4833
+ #~ msgid "Product Page: Additional Information tab text"
4834
+ #~ msgstr "Página do Produto: Texto da aba de informações Adicionais"
4835
+
4836
+ #~ msgid "Standard: Additional Information"
4837
+ #~ msgstr "Padrão: Informações Adicionais"
4838
+
4839
+ #~ msgid "Product Page: Additional Information Header text"
4840
+ #~ msgstr "Página do Produto: Texto do cabeçalho de Informações Adicionais"
4841
+
4842
+ #~ msgid "Product Page: Product Video tab text"
4843
+ #~ msgstr "Página do Produto: Texto da aba do Vídeo do Produto"
4844
+
4845
+ #~ msgid "Standard: Product Video"
4846
+ #~ msgstr "Padrão: Vídeo do Produto"
4847
+
4848
+ #~ msgid "Product Page: Product Video Header text"
4849
+ #~ msgstr "Página do Produto: Texto do cabeçalho do Vídeo do Produto"
4850
+
4851
+ #~ msgid "Product Page: Reviews tab text"
4852
+ #~ msgstr "Página do Produto: Texto da aba de Revisões"
4853
+
4854
+ #~ msgid "Standard: Reviews"
4855
+ #~ msgstr "Padrão: Avaliações"
4856
+
4857
+ #~ msgid "Product Page: Related Products text"
4858
+ #~ msgstr "Página do Produto: Texto de Produtos Relacionados"
4859
+
4860
+ #~ msgid "Standard: Related Products"
4861
+ #~ msgstr "Padrão: Produtos Relacionados"
4862
+
4863
+ #~ msgid "LightBox: Loading text"
4864
+ #~ msgstr "LightBox: Carregando texto"
4865
+
4866
+ #~ msgid "Standard: Loading..."
4867
+ #~ msgstr "Padrão: Carregando..."
4868
+
4869
+ #~ msgid "LightBox: of text"
4870
+ #~ msgstr "LightBox: do texto"
4871
+
4872
+ #~ msgid "Standard: of"
4873
+ #~ msgstr "Padrão: de"
4874
+
4875
+ #~ msgid "LightBox: Error text"
4876
+ #~ msgstr "LightBox: Texto de Erro"
4877
+
4878
+ #~ msgid "Standard: The Image could not be loaded."
4879
+ #~ msgstr "Padrão: A imagem não pode ser carregada."
4880
+
4881
+ #~ msgid "Breadcrumbs"
4882
+ #~ msgstr "Caminhos da Página"
4883
+
4884
+ #~ msgid "Sitewide Breadcrumbs"
4885
+ #~ msgstr "Caminhos do Site pelo site"
4886
+
4887
+ #~ msgid "Show Breadcrumbs in Woocommerce Pages and Categories?"
4888
+ #~ msgstr ""
4889
+ #~ "Mostrar os caminhos do site nas páginas e categorias do Woocommerce?"
4890
+
4891
+ #~ msgid ""
4892
+ #~ "Choose to show or hide breadcrumbs on your Woocommerce pages and "
4893
+ #~ "Categories"
4894
+ #~ msgstr ""
4895
+ #~ "Escolha mostrar ou esconder o caminho do site nas páginas da loja e nas "
4896
+ #~ "suas categorias"
4897
+
4898
+ #~ msgid "Show Breadcrumbs on Products?"
4899
+ #~ msgstr "Mostrar os caminhos do site nos Produtos?"
4900
+
4901
+ #~ msgid "Choose to show or hide breadcrumbs on your Woocommerce products"
4902
+ #~ msgstr "Escolha mostrar ou esconder o caminho do site nos produtos"
4903
+
4904
+ #~ msgid "Show Breadcrumbs on Blog Post?"
4905
+ #~ msgstr "Mostrar os caminhos do site nos Posts?"
4906
+
4907
+ #~ msgid "Choose to show or hide breadcrumbs on your single blog post"
4908
+ #~ msgstr "Escolha mostrar ou esconder o caminho do site nos posts do blog"
4909
+
4910
+ #~ msgid "Show Breadcrumbs on Portfolio Post?"
4911
+ #~ msgstr "Mostrar os caminhos do site nos posts de Portfólio?"
4912
+
4913
+ #~ msgid "Choose to show or hide breadcrumbs on your single portfolio posts"
4914
+ #~ msgstr ""
4915
+ #~ "Escolha mostrar ou esconder o caminho do site nos posts do portfólio"
4916
+
4917
+ #~ msgid "Show Breadcrumbs on Pages & Categories?"
4918
+ #~ msgstr "Mostrar os caminhos do site nas Páginas e Categorias?"
4919
+
4920
+ #~ msgid "Choose to show or hide breadcrumbs on your pages and categories"
4921
+ #~ msgstr ""
4922
+ #~ "Escolha mostrar ou esconder o caminho do site nas suas páginas e "
4923
+ #~ "categorias"
4924
+
4925
+ #~ msgid "Home title for breadcrumbs"
4926
+ #~ msgstr "Título da Home para os Caminhos do Site"
4927
+
4928
+ #~ msgid "Standard: Home"
4929
+ #~ msgstr "Padrão: Home"
4930
+
4931
+ #~ msgid "All Blog Post Page"
4932
+ #~ msgstr "Todas Páginas de Post do Blog"
4933
+
4934
+ #~ msgid ""
4935
+ #~ "This sets the link for your main blog page, for breadcrumbs. Use only if "
4936
+ #~ "your blog page is not your home page."
4937
+ #~ msgstr ""
4938
+ #~ "Isso define o link para a página principal do blog, para os caminhos do "
4939
+ #~ "site. Use somente se a página do blog não é a Home."
4940
+
4941
+ #~ msgid "Show Shop page in breadcrumbs?"
4942
+ #~ msgstr "Mostrar Página da Loja nos Caminhos do site?"
4943
+
4944
+ #~ msgid "Choose to show or hide the shop page in breadcrumbs on your site"
4945
+ #~ msgstr "Escolha mostrar ou esconder a página da loja nos caminhos do site"
4946
+
4947
+ #~ msgid "Arrrow navigation for single testimonial post?"
4948
+ #~ msgstr "Setas para navegação nos depoimentos?"
4949
+
4950
+ #~ msgid "Grid Link for testimonial navigation"
4951
+ #~ msgstr "Link da Grade para navegação dos depoimentos"
4952
+
4953
+ #~ msgid "Select2 Select"
4954
+ #~ msgstr "Selecione Select2"
4955
+
4956
+ #~ msgid "Turn on or off the select2 select"
4957
+ #~ msgstr "Ligue ou desligue o select select2"
4958
+
4959
+ #~ msgid "Enter a valid email address."
4960
+ #~ msgstr "Insira um email válido."
4961
+
4962
+ #~ msgid "Search Results Sidebars"
4963
+ #~ msgstr "Resultados da busca de Barras Laterais"
4964
+
4965
+ #~ msgid "Search Results - choose Sidebar"
4966
+ #~ msgstr "Resultados da Busca - escolha a Barra lateral"
4967
+
4968
+ #~ msgid "Limit Max Page width"
4969
+ #~ msgstr "Limitar Largura Máxima da Página"
4970
+
4971
+ #~ msgid "Limit Max Page to 940px"
4972
+ #~ msgstr "Limitar Largura Máxima da Página para 940px"
4973
+
4974
+ #~ msgid "Smooth Scrolling"
4975
+ #~ msgstr "Rolagem Suave"
4976
+
4977
+ #~ msgid "Enable Smooth Scrolling"
4978
+ #~ msgstr "Habilitar Rolagem Suave"
4979
+
4980
+ #~ msgid "This enables the styled scroll bar."
4981
+ #~ msgstr "Isso habilita a barra de rolagem estilizada."
4982
+
4983
+ #~ msgid "Enable Auto Hide"
4984
+ #~ msgstr "Permitir ocultar automaticamente"
4985
+
4986
+ #~ msgid "This hides the scroll bar when not scrolling."
4987
+ #~ msgstr "Isso esconde a barra de rolagem quando não estiver sendo usada."
4988
+
4989
+ #~ msgid "Hide Scroll background"
4990
+ #~ msgstr "Esconder Plano de Fundo da Rolagem"
4991
+
4992
+ #~ msgid "This hides the scroll bar background."
4993
+ #~ msgstr "Isso esconde o plano de fundo da barra de rolagem"
4994
+
4995
+ #~ msgid "Use Masonry Feature on Virtue Galleries"
4996
+ #~ msgstr "Usar Encaixe automático nas galerias Virtue"
4997
+
4998
+ #~ msgid ""
4999
+ #~ "This allows for dynamic gallery grids with images of different height"
5000
+ #~ msgstr "Isso permite galerias dinâmicas com imagens de diferente altura"
5001
+
5002
+ #~ msgid "Site Scroll Animation in"
5003
+ #~ msgstr "Animação de entrada na rolagem do site"
5004
+
5005
+ #~ msgid "Enable Animation In"
5006
+ #~ msgstr "Permitir animação de entrada"
5007
+
5008
+ #~ msgid "Disable this if you want to remove all the appear animation"
5009
+ #~ msgstr "Desabilite isso caso você deseje remover todas animações"
5010
+
5011
+ #~ msgid "SEO General Options"
5012
+ #~ msgstr "Opções Gerais de SEO"
5013
+
5014
+ #~ msgid "Google Analytics Tracking ID"
5015
+ #~ msgstr "Tracking ID do Google Analytics"
5016
+
5017
+ #~ msgid ""
5018
+ #~ "Paste your Google Analytics Tracking ID Here. (example: UA-########-#)"
5019
+ #~ msgstr ""
5020
+ #~ "Cole o seu ID de rastreamento do Google Analytics aqui. (exemplo: UA-"
5021
+ #~ "########-#)"
5022
+
5023
+ #~ msgid "Turn on Virtue SEO?"
5024
+ #~ msgstr "Ligar o SEO Virtue?"
5025
+
5026
+ #~ msgid ""
5027
+ #~ "Choose if you would like to use Virtue Theme SEO options, for full seo "
5028
+ #~ "support use a plugin"
5029
+ #~ msgstr ""
5030
+ #~ "Escolha se você deseja usar as opções de SEO do Tema Virtue, para um "
5031
+ #~ "suporte completo use um plugin"
5032
+
5033
+ #~ msgid "Site Title"
5034
+ #~ msgstr "Título do Site"
5035
+
5036
+ #~ msgid "Site Description"
5037
+ #~ msgstr "Descrição do Site"
5038
+
5039
+ #~ msgid "Filter Products"
5040
+ #~ msgstr "Filtrar Produtos"
5041
+
5042
+ #~ msgid "Cart Totals"
5043
+ #~ msgstr "Total do Carrinho"
5044
+
5045
+ #~ msgid "Cart Subtotal"
5046
+ #~ msgstr "Sub-Total do Carrinho"
5047
+
5048
+ #~ msgid "Order Total"
5049
+ #~ msgstr "Total do Pedido"
5050
+
5051
+ #~ msgid " (taxes estimated for %s)"
5052
+ #~ msgstr " (impostos estimados para %s)"
5053
+
5054
+ #~ msgid ""
5055
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
5056
+ #~ "checkout based on your billing and shipping information."
5057
+ #~ msgstr ""
5058
+ #~ "Note: A entrega e os impostos são estimados %s e serão atualizados "
5059
+ #~ "durante o checkout baseado nas informações que você inserir."
5060
+
5061
+ #~ msgid "Product"
5062
+ #~ msgstr "Produto"
5063
+
5064
+ #~ msgid "Price"
5065
+ #~ msgstr "Preço"
5066
+
5067
+ #~ msgid "Quantity"
5068
+ #~ msgstr "Quantidade"
5069
+
5070
+ #~ msgid "Total"
5071
+ #~ msgstr "Total"
5072
+
5073
+ #~ msgid "Remove this item"
5074
+ #~ msgstr "Remover esse item"
5075
+
5076
+ #~ msgid "Available on backorder"
5077
+ #~ msgstr "Disponível na devolução"
5078
+
5079
+ #~ msgid "Coupon"
5080
+ #~ msgstr "Cupom"
5081
+
5082
+ #~ msgid "Coupon code"
5083
+ #~ msgstr "Código do Cupom"
5084
+
5085
+ #~ msgid "Apply Coupon"
5086
+ #~ msgstr "Aplicar cupom"
5087
+
5088
+ #~ msgid "Update Cart"
5089
+ #~ msgstr "Atualizar Carrinho"
5090
+
5091
+ #~ msgid "Proceed to Checkout"
5092
+ #~ msgstr "Seguir para o checkout"
5093
+
5094
+ #~ msgid "You may be interested in&hellip;"
5095
+ #~ msgstr "Você pode estar interessado em &hellip;"
5096
+
5097
+ #~ msgid "Cart Discount"
5098
+ #~ msgstr "Desconto no carrinho"
5099
+
5100
+ #~ msgid "[Remove]"
5101
+ #~ msgstr "[Remover]"
5102
+
5103
+ #~ msgid "Shipping"
5104
+ #~ msgstr "Envio"
5105
+
5106
+ #~ msgid "Order Discount"
5107
+ #~ msgstr "Desconto do Pedido"
5108
+
5109
+ #~ msgid "(Includes %s)"
5110
+ #~ msgstr "(Inclui %s)"
5111
+
5112
+ #~ msgid ""
5113
+ #~ "No shipping methods were found; please recalculate your shipping and "
5114
+ #~ "enter your state/county and zip/postcode to ensure there are no other "
5115
+ #~ "available methods for your location."
5116
+ #~ msgstr ""
5117
+ #~ "Nenhum método de entrega foi encontrado; por favor recalcule seu frete, "
5118
+ #~ "insira seu estado/país e seu CEP para assegurar que não existem outros "
5119
+ #~ "métodos de entrega para sua localização."
5120
+
5121
+ #~ msgid ""
5122
+ #~ "Sorry, it seems that there are no available shipping methods for your "
5123
+ #~ "location (%s)."
5124
+ #~ msgstr ""
5125
+ #~ "Desculpe-nos, aparentemente não existem métodos de envio para sua "
5126
+ #~ "localização (%s)."
5127
+
5128
+ #~ msgid ""
5129
+ #~ "If you require assistance or wish to make alternate arrangements please "
5130
+ #~ "contact us."
5131
+ #~ msgstr ""
5132
+ #~ "Se você requisitar assistência ou se deseja fazer arranjos alternados por "
5133
+ #~ "favor entre em contato."
5134
+
5135
+ #~ msgid "not rated"
5136
+ #~ msgstr "sem avaliações"
5137
+
5138
+ #~ msgid "Out of stock"
5139
+ #~ msgstr "Fora de estoque"
5140
+
5141
+ #~ msgid "Sold"
5142
+ #~ msgstr "Vendido"
5143
+
5144
+ #~ msgid "Related Products"
5145
+ #~ msgstr "Produtos Relacionados"
5146
+
5147
+ #~ msgid "You may also like&hellip;"
5148
+ #~ msgstr "Você pode gostar também &hellip;"
5149
+
5150
+ #, fuzzy
5151
+ #~ msgid "Options Object"
5152
+ #~ msgstr "Opções de SEO"
5153
+
5154
+ #, fuzzy
5155
+ #~ msgid "our documentation"
5156
+ #~ msgstr "Para documentação do tema visite"
5157
+
5158
+ #, fuzzy
5159
+ #~ msgid "donation"
5160
+ #~ msgstr "Local"
5161
+
5162
+ #, fuzzy
5163
+ #~ msgid "Email address"
5164
+ #~ msgstr "um endereço mal-digitado"
5165
+
5166
+ #, fuzzy
5167
+ #~ msgid "Some Feature"
5168
+ #~ msgstr "Destaque Largo"
5169
+
5170
+ #, fuzzy
5171
+ #~ msgid "Feature"
5172
+ #~ msgstr "Destaque Largo"
5173
+
5174
+ #, fuzzy
5175
+ #~ msgid "Some feature"
5176
+ #~ msgstr "Destaque Largo"
5177
+
5178
+ #, fuzzy
5179
+ #~ msgid "More Features"
5180
+ #~ msgstr "Destaque Largo"
5181
+
5182
+ #, fuzzy
5183
+ #~ msgid "description"
5184
+ #~ msgstr "Descrição"
5185
+
5186
+ #, fuzzy
5187
+ #~ msgid "Additional Updates"
5188
+ #~ msgstr "Mostrar legendas"
5189
+
5190
+ #, fuzzy
5191
+ #~ msgid "cool thing description."
5192
+ #~ msgstr "Descrição da Página"
5193
+
5194
+ #, fuzzy
5195
+ #~ msgid "Product Price"
5196
+ #~ msgstr "Vídeo do Produto"
5197
+
5198
+ #, fuzzy
5199
+ #~ msgid "Download Files"
5200
+ #~ msgstr "Download"
5201
+
5202
+ #, fuzzy
5203
+ #~ msgid "Display a Product Grid"
5204
+ #~ msgstr "Mostrar abas do produto?"
5205
+
5206
+ #, fuzzy
5207
+ #~ msgid "Flexible Product Grids"
5208
+ #~ msgstr "Filtrar Produtos"
5209
+
5210
+ #, fuzzy
5211
+ #~ msgid "Change the Number of Columns"
5212
+ #~ msgstr "Número de Colunas do Submenu"
5213
+
5214
+ #, fuzzy
5215
+ #~ msgid "Additional Display Options"
5216
+ #~ msgstr "Mostrar legendas"
5217
+
5218
+ #, fuzzy
5219
+ #~ msgid "View %s"
5220
+ #~ msgstr "Novo %s"
5221
+
5222
+ #~ msgid "It is recomended that you leave this off."
5223
+ #~ msgstr "É recomendável você manter isso desligado."
languages/ru_RU.mo ADDED
Binary file
languages/ru_RU.po ADDED
@@ -0,0 +1,3672 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Kadence Toolkit\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-10 00:33-0700\n"
6
+ "PO-Revision-Date: 2015-01-10 00:33-0700\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "Language: ru\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
14
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
15
+ "X-Generator: Poedit 1.6.10\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
19
+ "X-Poedit-Basepath: ../\n"
20
+ "X-Textdomain-Support: no\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ # @ virtue
24
+ #: cmb/helpers/cmb_Meta_Box_ajax.php:47
25
+ msgid "Please Try Again"
26
+ msgstr "Пожалуйста, повторите попытку"
27
+
28
+ # @ virtue
29
+ #: cmb/helpers/cmb_Meta_Box_ajax.php:131
30
+ msgid "Remove Embed"
31
+ msgstr "Удалить Embed(?)"
32
+
33
+ # @ virtue
34
+ #: cmb/helpers/cmb_Meta_Box_ajax.php:134
35
+ #, php-format
36
+ msgid "No oEmbed Results Found for %s. View more info at"
37
+ msgstr "Результаты oEmbed не найдены %s. Посмотреть больше информации на"
38
+
39
+ #: cmb/helpers/cmb_Meta_Box_field.php:459
40
+ msgid "Add Group"
41
+ msgstr ""
42
+
43
+ # @ virtue
44
+ #: cmb/helpers/cmb_Meta_Box_field.php:460
45
+ #, fuzzy
46
+ msgid "Remove Group"
47
+ msgstr "Удалить"
48
+
49
+ #: cmb/helpers/cmb_Meta_Box_types.php:250
50
+ msgid "Add Row"
51
+ msgstr ""
52
+
53
+ # @ virtue
54
+ #: cmb/helpers/cmb_Meta_Box_types.php:306
55
+ #: cmb/helpers/cmb_Meta_Box_types.php:706
56
+ #: cmb/helpers/cmb_Meta_Box_types.php:768
57
+ msgid "Remove"
58
+ msgstr "Удалить"
59
+
60
+ #: cmb/helpers/cmb_Meta_Box_types.php:601
61
+ #: cmb/helpers/cmb_Meta_Box_types.php:635
62
+ msgid "No terms"
63
+ msgstr ""
64
+
65
+ # @ virtue
66
+ #: cmb/helpers/cmb_Meta_Box_types.php:674
67
+ #: cmb/helpers/cmb_Meta_Box_types.php:728
68
+ msgid "Add or Upload File"
69
+ msgstr "Добавить или загрузить файл"
70
+
71
+ # @ virtue
72
+ #: cmb/helpers/cmb_Meta_Box_types.php:695
73
+ #: cmb/helpers/cmb_Meta_Box_types.php:760
74
+ #, fuzzy
75
+ msgid "Remove Image"
76
+ msgstr "Удалить изображение"
77
+
78
+ # @ virtue
79
+ #: cmb/helpers/cmb_Meta_Box_types.php:706
80
+ #: cmb/helpers/cmb_Meta_Box_types.php:768
81
+ msgid "File:"
82
+ msgstr "Файл:"
83
+
84
+ # @ virtue
85
+ #: cmb/helpers/cmb_Meta_Box_types.php:706
86
+ #: cmb/helpers/cmb_Meta_Box_types.php:768
87
+ msgid "Download"
88
+ msgstr "Скачать"
89
+
90
+ # @ virtue
91
+ #: cmb/init.php:258 shortcodes/divider/divider_popup.php:76
92
+ msgid "Clear"
93
+ msgstr "Очистить"
94
+
95
+ # @ virtue
96
+ #: cmb/init.php:259 metaboxes.php:62 metaboxes.php:73 metaboxes.php:106
97
+ #: metaboxes.php:117 metaboxes.php:367 metaboxes.php:378 metaboxes.php:413
98
+ #: metaboxes.php:424 metaboxes.php:489
99
+ msgid "Default"
100
+ msgstr "По умолчанию"
101
+
102
+ #: cmb/init.php:260
103
+ msgid "Select Color"
104
+ msgstr ""
105
+
106
+ # @ virtue
107
+ #: cmb/init.php:261
108
+ #, fuzzy
109
+ msgid "Current Color"
110
+ msgstr "Основной цвет"
111
+
112
+ # @ virtue
113
+ #: cmb/init.php:288
114
+ #, fuzzy
115
+ msgid "Select / Deselect All"
116
+ msgstr "Выберите штат&hellip;"
117
+
118
+ # @ virtue
119
+ #: cmb/init.php:1178
120
+ msgid "Save"
121
+ msgstr "Сохранить"
122
+
123
+ # @ virtue
124
+ #: metaboxes.php:17
125
+ #, fuzzy
126
+ msgid "Add/Edit Gallery"
127
+ msgstr "Добавить в галерею"
128
+
129
+ # @ virtue
130
+ #: metaboxes.php:18
131
+ #, fuzzy
132
+ msgid "Clear Gallery"
133
+ msgstr "Галерея постов"
134
+
135
+ # @ virtue
136
+ #: metaboxes.php:44
137
+ msgid "Page Title and Subtitle"
138
+ msgstr "Заголовок и подзаголовок страницы"
139
+
140
+ # @ virtue
141
+ #: metaboxes.php:51 metaboxes.php:95
142
+ msgid "Subtitle"
143
+ msgstr "Подзаголовок"
144
+
145
+ # @ virtue
146
+ #: metaboxes.php:52
147
+ msgid "Subtitle will go below page title"
148
+ msgstr "Подзаголовок, размещаемый под заголовком страницы"
149
+
150
+ # @ virtue
151
+ #: metaboxes.php:57 metaboxes.php:101
152
+ #, fuzzy
153
+ msgid "Hide Page Title"
154
+ msgstr "Заголовок страницы"
155
+
156
+ #: metaboxes.php:63 metaboxes.php:107
157
+ msgid "Show"
158
+ msgstr ""
159
+
160
+ #: metaboxes.php:64 metaboxes.php:108
161
+ msgid "Hide"
162
+ msgstr ""
163
+
164
+ # @ virtue
165
+ #: metaboxes.php:68 metaboxes.php:112
166
+ #, fuzzy
167
+ msgid "Page Title background behind Header"
168
+ msgstr "Заголовок и подзаголовок страницы"
169
+
170
+ #: metaboxes.php:74 metaboxes.php:118
171
+ msgid "Place behind Header"
172
+ msgstr ""
173
+
174
+ #: metaboxes.php:75 metaboxes.php:119
175
+ msgid "Don't place behind Header"
176
+ msgstr ""
177
+
178
+ # @ virtue
179
+ #: metaboxes.php:82
180
+ #, fuzzy
181
+ msgid "Post Title and Subtitle"
182
+ msgstr "Заголовок и подзаголовок страницы"
183
+
184
+ # @ virtue
185
+ #: metaboxes.php:89 metaboxes.php:90
186
+ #, fuzzy
187
+ msgid "Post Header Title"
188
+ msgstr "Заголовок страницы"
189
+
190
+ # @ virtue
191
+ #: metaboxes.php:96
192
+ #, fuzzy
193
+ msgid "Subtitle will go below post title"
194
+ msgstr "Подзаголовок, размещаемый под заголовком страницы"
195
+
196
+ # @ virtue
197
+ #: metaboxes.php:126
198
+ #, fuzzy
199
+ msgid "Gallery Post Options"
200
+ msgstr "Опции поста"
201
+
202
+ # @ virtue
203
+ #: metaboxes.php:135 metaboxes.php:190
204
+ #, fuzzy
205
+ msgid "Post Head Content"
206
+ msgstr "Содержимое заголовка страницы"
207
+
208
+ # @ virtue
209
+ #: metaboxes.php:140 metaboxes.php:170
210
+ #, fuzzy
211
+ msgid "Gallery Post Default"
212
+ msgstr "Настройки краткого содержания записи блога по умолчанию"
213
+
214
+ # @ virtue
215
+ #: metaboxes.php:141
216
+ #, fuzzy
217
+ msgid "Image Slider - (Flex Slider)"
218
+ msgstr "Слайдер изображений"
219
+
220
+ #: metaboxes.php:142
221
+ msgid "Carousel Slider - (Caroufedsel Slider)"
222
+ msgstr ""
223
+
224
+ # @ virtue
225
+ #: metaboxes.php:143 metaboxes.php:197 metaboxes.php:257 metaboxes.php:738
226
+ msgid "None"
227
+ msgstr "Никакие"
228
+
229
+ # @ virtue
230
+ #: metaboxes.php:147
231
+ #, fuzzy
232
+ msgid "Post Slider Gallery"
233
+ msgstr "Галерея постов"
234
+
235
+ # @ virtue
236
+ #: metaboxes.php:148 metaboxes.php:1106
237
+ #, fuzzy
238
+ msgid "Add images for gallery here"
239
+ msgstr "Добавить изображения в галерею"
240
+
241
+ # @ virtue
242
+ #: metaboxes.php:153
243
+ #, fuzzy
244
+ msgid "Max Slider Height"
245
+ msgstr "Максимальная высота Изображения/Слайдера"
246
+
247
+ # @ virtue
248
+ #: metaboxes.php:154 metaboxes.php:553
249
+ #, fuzzy
250
+ msgid "Default is: 400 (Note: just input number, example: 350)"
251
+ msgstr ""
252
+ "По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
253
+
254
+ # @ virtue
255
+ #: metaboxes.php:159
256
+ #, fuzzy
257
+ msgid "Max Slider Width"
258
+ msgstr "Максимальная ширина Изображения/Слайдера"
259
+
260
+ # @ virtue
261
+ #: metaboxes.php:160
262
+ #, fuzzy
263
+ msgid ""
264
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
265
+ "example: 650, only applys to Image Slider)"
266
+ msgstr ""
267
+ "По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
268
+ "например: 350)</b>"
269
+
270
+ # @ virtue
271
+ #: metaboxes.php:165 metaboxes.php:213
272
+ msgid "Post Summary"
273
+ msgstr "Разместить краткое содержание"
274
+
275
+ # @ virtue
276
+ #: metaboxes.php:171 metaboxes.php:220
277
+ #, fuzzy
278
+ msgid "Portrait Image (feature image)"
279
+ msgstr "Слайдер портретных изображений"
280
+
281
+ # @ virtue
282
+ #: metaboxes.php:172 metaboxes.php:221
283
+ #, fuzzy
284
+ msgid "Landscape Image (feature image)"
285
+ msgstr "Слайдер пейзажных изображений"
286
+
287
+ # @ virtue
288
+ #: metaboxes.php:173
289
+ msgid "Portrait Image Slider"
290
+ msgstr "Слайдер портретных изображений"
291
+
292
+ # @ virtue
293
+ #: metaboxes.php:174
294
+ msgid "Landscape Image Slider"
295
+ msgstr "Слайдер пейзажных изображений"
296
+
297
+ # @ virtue
298
+ #: metaboxes.php:181
299
+ #, fuzzy
300
+ msgid "Video Post Options"
301
+ msgstr "Опции поста"
302
+
303
+ # @ virtue
304
+ #: metaboxes.php:195 metaboxes.php:218
305
+ #, fuzzy
306
+ msgid "Video Post Default"
307
+ msgstr "Настройки краткого содержания записи блога по умолчанию"
308
+
309
+ # @ virtue
310
+ #: metaboxes.php:196 metaboxes.php:256 metaboxes.php:536 metaboxes.php:737
311
+ #: metaboxes.php:960
312
+ msgid "Video"
313
+ msgstr "Видео"
314
+
315
+ # @ virtue
316
+ #: metaboxes.php:201
317
+ #, fuzzy
318
+ msgid "Video Post embed code"
319
+ msgstr "Код встраиваемого видео"
320
+
321
+ # @ virtue
322
+ #: metaboxes.php:202
323
+ #, fuzzy
324
+ msgid ""
325
+ "Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
326
+ "for screen shot)"
327
+ msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
328
+
329
+ # @ virtue
330
+ #: metaboxes.php:207
331
+ #, fuzzy
332
+ msgid "Max Video Width"
333
+ msgstr "Максимальная ширина Изображения/Слайдера"
334
+
335
+ #: metaboxes.php:208
336
+ msgid ""
337
+ "Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
338
+ "example: 650, does not apply to carousel slider)"
339
+ msgstr ""
340
+
341
+ #: metaboxes.php:219
342
+ msgid "Video - (when possible)"
343
+ msgstr ""
344
+
345
+ # @ virtue
346
+ #: metaboxes.php:228 metaboxes.php:710
347
+ msgid "Portfolio Post Options"
348
+ msgstr "Опции поста портфолио"
349
+
350
+ # @ virtue
351
+ #: metaboxes.php:236 metaboxes.php:718
352
+ msgid "Project Layout"
353
+ msgstr "Формат проекта"
354
+
355
+ # @ virtue
356
+ #: metaboxes.php:241
357
+ #, fuzzy
358
+ msgid "Beside 40%"
359
+ msgstr "Рядом"
360
+
361
+ # @ virtue
362
+ #: metaboxes.php:242
363
+ #, fuzzy
364
+ msgid "Beside 33%"
365
+ msgstr "Рядом"
366
+
367
+ # @ virtue
368
+ #: metaboxes.php:243 metaboxes.php:724
369
+ msgid "Above"
370
+ msgstr "Сверху"
371
+
372
+ # @ virtue
373
+ #: metaboxes.php:244 metaboxes.php:725
374
+ msgid "Three Rows"
375
+ msgstr "Три ряда"
376
+
377
+ # @ virtue
378
+ #: metaboxes.php:248 metaboxes.php:729
379
+ msgid "Project Options"
380
+ msgstr "Опции проекта"
381
+
382
+ # @ virtue
383
+ #: metaboxes.php:253 metaboxes.php:734 metaboxes.php:961
384
+ msgid "Image"
385
+ msgstr "Изображение"
386
+
387
+ # @ virtue
388
+ #: metaboxes.php:254 metaboxes.php:534
389
+ #, fuzzy
390
+ msgid "Image Slider (Flex Slider)"
391
+ msgstr "Слайдер изображений"
392
+
393
+ # @ virtue
394
+ #: metaboxes.php:255 metaboxes.php:535 metaboxes.php:736
395
+ #, fuzzy
396
+ msgid "Carousel Slider"
397
+ msgstr "Заголовок карусели"
398
+
399
+ # @ virtue
400
+ #: metaboxes.php:261
401
+ #, fuzzy
402
+ msgid "Portfolio Slider/Images"
403
+ msgstr "Изображения для слайдера портфолио"
404
+
405
+ # @ virtue
406
+ #: metaboxes.php:262
407
+ #, fuzzy
408
+ msgid "Add images for post here"
409
+ msgstr "Добавить изображения в галерею"
410
+
411
+ # @ virtue
412
+ #: metaboxes.php:267 metaboxes.php:552 metaboxes.php:742 metaboxes.php:965
413
+ msgid "Max Image/Slider Height"
414
+ msgstr "Максимальная высота Изображения/Слайдера"
415
+
416
+ # @ virtue
417
+ #: metaboxes.php:268
418
+ #, fuzzy
419
+ msgid "Default is: 450 (Note: just input number, example: 350)"
420
+ msgstr ""
421
+ "По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
422
+
423
+ # @ virtue
424
+ #: metaboxes.php:273 metaboxes.php:558 metaboxes.php:748 metaboxes.php:971
425
+ msgid "Max Image/Slider Width"
426
+ msgstr "Максимальная ширина Изображения/Слайдера"
427
+
428
+ # @ virtue
429
+ #: metaboxes.php:274
430
+ #, fuzzy
431
+ msgid ""
432
+ "Default is: 670 or 1140 on above or three row layouts (Note: just input "
433
+ "number, example: 650)"
434
+ msgstr ""
435
+ "По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
436
+ "например: 350)</b>"
437
+
438
+ # @ virtue
439
+ #: metaboxes.php:279 metaboxes.php:764
440
+ msgid "Value 01 Title"
441
+ msgstr "Название параметра 01"
442
+
443
+ # @ virtue
444
+ #: metaboxes.php:280 metaboxes.php:765
445
+ msgid "ex. Project Type:"
446
+ msgstr "например: Тип проекта:"
447
+
448
+ # @ virtue
449
+ #: metaboxes.php:285 metaboxes.php:770
450
+ msgid "Value 01 Description"
451
+ msgstr "Описание параметра 01"
452
+
453
+ # @ virtue
454
+ #: metaboxes.php:286 metaboxes.php:771
455
+ msgid "ex. Character Illustration"
456
+ msgstr "например: Описание иллюстрации"
457
+
458
+ # @ virtue
459
+ #: metaboxes.php:291 metaboxes.php:776
460
+ msgid "Value 02 Title"
461
+ msgstr "Название параметра 02"
462
+
463
+ # @ virtue
464
+ #: metaboxes.php:292 metaboxes.php:777
465
+ msgid "ex. Skills Needed:"
466
+ msgstr "например: Требуемые навыки:"
467
+
468
+ # @ virtue
469
+ #: metaboxes.php:297 metaboxes.php:782
470
+ msgid "Value 02 Description"
471
+ msgstr "Описание параметра 02"
472
+
473
+ # @ virtue
474
+ #: metaboxes.php:298 metaboxes.php:783
475
+ msgid "ex. Photoshop, Illustrator"
476
+ msgstr "например: Фотошоп, Иллюстратор"
477
+
478
+ # @ virtue
479
+ #: metaboxes.php:303 metaboxes.php:788
480
+ msgid "Value 03 Title"
481
+ msgstr "Название параметра 03"
482
+
483
+ # @ virtue
484
+ #: metaboxes.php:304 metaboxes.php:789
485
+ msgid "ex. Customer:"
486
+ msgstr "например: Клиент:"
487
+
488
+ # @ virtue
489
+ #: metaboxes.php:309 metaboxes.php:794
490
+ msgid "Value 03 Description"
491
+ msgstr "Описание параметра 03"
492
+
493
+ # @ virtue
494
+ #: metaboxes.php:310 metaboxes.php:795
495
+ msgid "ex. Example Inc"
496
+ msgstr "например: Ромашка Инкорпорейтед"
497
+
498
+ # @ virtue
499
+ #: metaboxes.php:315 metaboxes.php:800
500
+ msgid "Value 04 Title"
501
+ msgstr "Название параметра 04"
502
+
503
+ # @ virtue
504
+ #: metaboxes.php:316 metaboxes.php:801
505
+ msgid "ex. Project Year:"
506
+ msgstr "например: Год проекта:"
507
+
508
+ # @ virtue
509
+ #: metaboxes.php:321 metaboxes.php:806
510
+ msgid "Value 04 Description"
511
+ msgstr "Описание параметра 04"
512
+
513
+ # @ virtue
514
+ #: metaboxes.php:322 metaboxes.php:807
515
+ msgid "ex. 2013"
516
+ msgstr "например: 2013"
517
+
518
+ # @ virtue
519
+ #: metaboxes.php:327 metaboxes.php:812
520
+ msgid "External Website"
521
+ msgstr "Внешний сайт"
522
+
523
+ # @ virtue
524
+ #: metaboxes.php:328 metaboxes.php:813
525
+ msgid "ex. Website:"
526
+ msgstr "например: Сайт:"
527
+
528
+ # @ virtue
529
+ #: metaboxes.php:333 metaboxes.php:818
530
+ msgid "Website Address"
531
+ msgstr "Адрес сайта"
532
+
533
+ # @ virtue
534
+ #: metaboxes.php:334 metaboxes.php:819
535
+ msgid "ex. http://www.example.com"
536
+ msgstr "например: https://www.example.com"
537
+
538
+ # @ virtue
539
+ #: metaboxes.php:339 metaboxes.php:824
540
+ msgid "If Video Project"
541
+ msgstr "Видео-проект"
542
+
543
+ # @ virtue
544
+ #: metaboxes.php:340 metaboxes.php:565 metaboxes.php:702 metaboxes.php:825
545
+ #: metaboxes.php:988
546
+ msgid "Place Embed Code Here, works with youtube, vimeo..."
547
+ msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
548
+
549
+ # @ virtue
550
+ #: metaboxes.php:349
551
+ #, fuzzy
552
+ msgid "Bottom Carousel Options"
553
+ msgstr "Опции страницы контактов"
554
+
555
+ # @ virtue
556
+ #: metaboxes.php:356 metaboxes.php:840
557
+ msgid "Carousel Title"
558
+ msgstr "Заголовок карусели"
559
+
560
+ # @ virtue
561
+ #: metaboxes.php:357 metaboxes.php:841
562
+ msgid "ex. Similar Projects"
563
+ msgstr "например, Подобные проекты"
564
+
565
+ # @ virtue
566
+ #: metaboxes.php:362
567
+ #, fuzzy
568
+ msgid "Bottom Portfolio Carousel"
569
+ msgstr "Карусель портфолио"
570
+
571
+ # @ virtue
572
+ #: metaboxes.php:363
573
+ #, fuzzy
574
+ msgid "Display a carousel with portfolio items below project?"
575
+ msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
576
+
577
+ # @ virtue
578
+ #: metaboxes.php:368 metaboxes.php:588 metaboxes.php:610 metaboxes.php:619
579
+ #: metaboxes.php:760 metaboxes.php:835 metaboxes.php:937 metaboxes.php:983
580
+ #: metaboxes.php:1011 metaboxes.php:1027 metaboxes.php:1036
581
+ msgid "No"
582
+ msgstr "Нет"
583
+
584
+ # @ virtue
585
+ #: metaboxes.php:369 metaboxes.php:587 metaboxes.php:609 metaboxes.php:620
586
+ #: metaboxes.php:759 metaboxes.php:938 metaboxes.php:982 metaboxes.php:1010
587
+ #: metaboxes.php:1026 metaboxes.php:1037
588
+ msgid "Yes"
589
+ msgstr "Да"
590
+
591
+ # @ virtue
592
+ #: metaboxes.php:373
593
+ #, fuzzy
594
+ msgid "Carousel Items"
595
+ msgstr "Заголовок карусели"
596
+
597
+ # @ virtue
598
+ #: metaboxes.php:379
599
+ #, fuzzy
600
+ msgid "All Portfolio Posts"
601
+ msgstr "Опции поста портфолио"
602
+
603
+ #: metaboxes.php:380
604
+ msgid "Only of same Portfolio Type"
605
+ msgstr ""
606
+
607
+ # @ virtue
608
+ #: metaboxes.php:384
609
+ #, fuzzy
610
+ msgid "Carousel Order"
611
+ msgstr "Заголовок карусели"
612
+
613
+ # @ virtue
614
+ #: metaboxes.php:389 metaboxes.php:454 metaboxes.php:882
615
+ msgid "Menu Order"
616
+ msgstr "Порядок меню"
617
+
618
+ # @ virtue
619
+ #: metaboxes.php:390 metaboxes.php:455 metaboxes.php:883
620
+ msgid "Title"
621
+ msgstr "Заголовок"
622
+
623
+ # @ virtue
624
+ #: metaboxes.php:391 metaboxes.php:456 metaboxes.php:884
625
+ msgid "Date"
626
+ msgstr "Дата"
627
+
628
+ # @ virtue
629
+ #: metaboxes.php:392 metaboxes.php:457 metaboxes.php:885
630
+ msgid "Random"
631
+ msgstr "Случайно"
632
+
633
+ # @ virtue
634
+ #: metaboxes.php:400 metaboxes.php:850
635
+ msgid "Portfolio Page Options"
636
+ msgstr "Опции страницы Портфолио"
637
+
638
+ #: metaboxes.php:408 shortcodes/pullquote/quote_popup.php:59
639
+ msgid "Style"
640
+ msgstr ""
641
+
642
+ # @ virtue
643
+ #: metaboxes.php:414
644
+ #, fuzzy
645
+ msgid "Post Boxes"
646
+ msgstr "Разместить видео-пост"
647
+
648
+ #: metaboxes.php:415
649
+ msgid "Flat with Margin"
650
+ msgstr ""
651
+
652
+ #: metaboxes.php:419
653
+ msgid "Hover Style"
654
+ msgstr ""
655
+
656
+ #: metaboxes.php:425
657
+ msgid "Light"
658
+ msgstr ""
659
+
660
+ #: metaboxes.php:426
661
+ msgid "Dark"
662
+ msgstr ""
663
+
664
+ # @ virtue
665
+ #: metaboxes.php:427 shortcodes/btns/btns_popup.php:134
666
+ msgid "Primary Color"
667
+ msgstr "Основной цвет"
668
+
669
+ # @ virtue
670
+ #: metaboxes.php:431 metaboxes.php:859
671
+ msgid "Columns"
672
+ msgstr "Колонки"
673
+
674
+ # @ virtue
675
+ #: metaboxes.php:436 metaboxes.php:864
676
+ msgid "Four Column"
677
+ msgstr "Четыре колонки"
678
+
679
+ # @ virtue
680
+ #: metaboxes.php:437 metaboxes.php:865
681
+ msgid "Three Column"
682
+ msgstr "Три колонки"
683
+
684
+ # @ virtue
685
+ #: metaboxes.php:438 metaboxes.php:866
686
+ msgid "Two Column"
687
+ msgstr "Две колонки"
688
+
689
+ # @ virtue
690
+ #: metaboxes.php:439
691
+ #, fuzzy
692
+ msgid "Five Column"
693
+ msgstr "Четыре колонки"
694
+
695
+ # @ virtue
696
+ #: metaboxes.php:443 metaboxes.php:870
697
+ msgid "Portfolio Work Types"
698
+ msgstr "Виды работ портфолио"
699
+
700
+ # @ virtue
701
+ #: metaboxes.php:449 metaboxes.php:877
702
+ msgid "Order Items By"
703
+ msgstr "Сортировать элементы по"
704
+
705
+ # @ virtue
706
+ #: metaboxes.php:461 metaboxes.php:889
707
+ msgid "Items per Page"
708
+ msgstr "Элементов на страницу"
709
+
710
+ # @ virtue
711
+ #: metaboxes.php:462 metaboxes.php:890
712
+ msgid "How many portfolio items per page"
713
+ msgstr "Количество элементов портфолио на одной странице"
714
+
715
+ # @ virtue
716
+ #: metaboxes.php:466 metaboxes.php:894
717
+ msgid "All"
718
+ msgstr "Все"
719
+
720
+ # @ virtue
721
+ #: metaboxes.php:484
722
+ #, fuzzy
723
+ msgid "Image Ratio?"
724
+ msgstr "Настройки повторяемости изображения"
725
+
726
+ #: metaboxes.php:490
727
+ msgid "Square 1:1"
728
+ msgstr ""
729
+
730
+ # @ virtue
731
+ #: metaboxes.php:491
732
+ #, fuzzy
733
+ msgid "Portrait 3:4"
734
+ msgstr "Портретное изображение"
735
+
736
+ # @ virtue
737
+ #: metaboxes.php:492
738
+ #, fuzzy
739
+ msgid "Landscape 4:3"
740
+ msgstr "Пейзажное изображение"
741
+
742
+ # @ virtue
743
+ #: metaboxes.php:493
744
+ #, fuzzy
745
+ msgid "Wide Landscape 4:2"
746
+ msgstr "Пейзажное изображение"
747
+
748
+ # @ virtue
749
+ #: metaboxes.php:497 metaboxes.php:918
750
+ msgid "Display Item Work Types"
751
+ msgstr "Отображать виды работ элемента"
752
+
753
+ # @ virtue
754
+ #: metaboxes.php:503 metaboxes.php:925
755
+ msgid "Display Item Excerpt"
756
+ msgstr "Отображать выдержки описания элемента"
757
+
758
+ # @ virtue
759
+ #: metaboxes.php:509
760
+ #, fuzzy
761
+ msgid "Add Lightbox link in each item"
762
+ msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
763
+
764
+ # @ virtue
765
+ #: metaboxes.php:518 metaboxes.php:945
766
+ msgid "Feature Page Options"
767
+ msgstr "Опции страницы свойств"
768
+
769
+ # @ virtue
770
+ #: metaboxes.php:527
771
+ #, fuzzy
772
+ msgid "Header Options"
773
+ msgstr "Настройки шрифтов заголовков"
774
+
775
+ #: metaboxes.php:528
776
+ msgid "If image slider make sure images uploaded are at-least 1170px wide."
777
+ msgstr ""
778
+
779
+ # @ virtue
780
+ #: metaboxes.php:533
781
+ msgid "Page Title"
782
+ msgstr "Заголовок страницы"
783
+
784
+ # @ virtue
785
+ #: metaboxes.php:540 metaboxes.php:1098
786
+ msgid "Slider Images"
787
+ msgstr "Изображения слайдера"
788
+
789
+ #: metaboxes.php:541
790
+ msgid "Add for flex, carousel, and image carousel."
791
+ msgstr ""
792
+
793
+ # @ virtue
794
+ #: metaboxes.php:546
795
+ #, fuzzy
796
+ msgid "If Cyclone Slider"
797
+ msgstr "Слайдер изображений"
798
+
799
+ #: metaboxes.php:547
800
+ msgid ""
801
+ "Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
802
+ msgstr ""
803
+
804
+ # @ virtue
805
+ #: metaboxes.php:559
806
+ #, fuzzy
807
+ msgid ""
808
+ "Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
809
+ "does not apply to Carousel slider)"
810
+ msgstr ""
811
+ "По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
812
+ "например: 350)</b>"
813
+
814
+ # @ virtue
815
+ #: metaboxes.php:564 metaboxes.php:701 metaboxes.php:987
816
+ msgid "If Video Post"
817
+ msgstr "Если видео-пост"
818
+
819
+ # @ virtue
820
+ #: metaboxes.php:573 metaboxes.php:996
821
+ msgid "Contact Page Options"
822
+ msgstr "Опции страницы контактов"
823
+
824
+ # @ virtue
825
+ #: metaboxes.php:582 metaboxes.php:1005
826
+ msgid "Use Contact Form"
827
+ msgstr "Использовать контактную форму"
828
+
829
+ # @ virtue
830
+ #: metaboxes.php:592 metaboxes.php:1015
831
+ msgid "Contact Form Title"
832
+ msgstr "Заголовок контактной формы"
833
+
834
+ # @ virtue
835
+ #: metaboxes.php:593 metaboxes.php:1016
836
+ msgid "ex. Send us an Email"
837
+ msgstr "например, Отправьте нам сообщение по электронной почте"
838
+
839
+ # @ virtue
840
+ #: metaboxes.php:598
841
+ #, fuzzy
842
+ msgid "Contact Form Email Recipient"
843
+ msgstr "Адрес электронной почты для контактной формы"
844
+
845
+ #: metaboxes.php:599
846
+ msgid "ex. joe@gmail.com"
847
+ msgstr ""
848
+
849
+ #: metaboxes.php:604 metaboxes.php:1021
850
+ msgid "Use Simple Math Question"
851
+ msgstr ""
852
+
853
+ # @ virtue
854
+ #: metaboxes.php:614 metaboxes.php:1031
855
+ msgid "Use Map"
856
+ msgstr "Использовать карту"
857
+
858
+ # @ virtue
859
+ #: metaboxes.php:624 metaboxes.php:1041
860
+ msgid "Address"
861
+ msgstr "Адрес"
862
+
863
+ # @ virtue
864
+ #: metaboxes.php:625 metaboxes.php:1042
865
+ msgid "Enter your Location"
866
+ msgstr "Введите ваше местоположение"
867
+
868
+ # @ virtue
869
+ #: metaboxes.php:630 metaboxes.php:1047
870
+ msgid "Map Type"
871
+ msgstr "Тип карты"
872
+
873
+ # @ virtue
874
+ #: metaboxes.php:635 metaboxes.php:1052
875
+ msgid "ROADMAP"
876
+ msgstr "ДОРОГИ"
877
+
878
+ # @ virtue
879
+ #: metaboxes.php:636 metaboxes.php:1053
880
+ msgid "HYBRID"
881
+ msgstr "ГИБРИД"
882
+
883
+ # @ virtue
884
+ #: metaboxes.php:637 metaboxes.php:1054
885
+ msgid "TERRAIN"
886
+ msgstr "МЕСТНОСТЬ"
887
+
888
+ # @ virtue
889
+ #: metaboxes.php:638 metaboxes.php:1055
890
+ msgid "SATELLITE"
891
+ msgstr "СПУТНИК"
892
+
893
+ # @ virtue
894
+ #: metaboxes.php:642 metaboxes.php:1059
895
+ msgid "Map Zoom Level"
896
+ msgstr "Масштаб"
897
+
898
+ # @ virtue
899
+ #: metaboxes.php:643 metaboxes.php:1060
900
+ msgid "A good place to start is 15"
901
+ msgstr "Наболее подходящий начальный масштаб 15"
902
+
903
+ # @ virtue
904
+ #: metaboxes.php:648 metaboxes.php:1065
905
+ msgid "1 (World View)"
906
+ msgstr "1 (Вид карты мира)"
907
+
908
+ # @ virtue
909
+ #: metaboxes.php:668 metaboxes.php:1085
910
+ msgid "21 (Street View)"
911
+ msgstr "21 (Вид улиц)"
912
+
913
+ # @ virtue
914
+ #: metaboxes.php:672 metaboxes.php:1089
915
+ msgid "Map Height"
916
+ msgstr "Высота карты"
917
+
918
+ # @ virtue
919
+ #: metaboxes.php:673 metaboxes.php:1090
920
+ msgid "Default is 300"
921
+ msgstr "По умолчанию 300"
922
+
923
+ # @ virtue
924
+ #: metaboxes.php:693
925
+ msgid "Post Video Box"
926
+ msgstr "Разместить видео-пост"
927
+
928
+ # @ virtue
929
+ #: metaboxes.php:723
930
+ msgid "Beside"
931
+ msgstr "Рядом"
932
+
933
+ # @ virtue
934
+ #: metaboxes.php:735 metaboxes.php:959
935
+ msgid "Image Slider"
936
+ msgstr "Слайдер изображений"
937
+
938
+ # @ virtue
939
+ #: metaboxes.php:743
940
+ msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
941
+ msgstr ""
942
+ "По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
943
+
944
+ # @ virtue
945
+ #: metaboxes.php:749
946
+ #, fuzzy
947
+ msgid ""
948
+ "Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
949
+ "just input number, example: 650)</b>"
950
+ msgstr ""
951
+ "По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
952
+ "например: 350)</b>"
953
+
954
+ # @ virtue
955
+ #: metaboxes.php:754
956
+ #, fuzzy
957
+ msgid "Auto Play Slider?"
958
+ msgstr "Автозапуск?"
959
+
960
+ # @ virtue
961
+ #: metaboxes.php:830
962
+ msgid "Similar Portfolio Item Carousel"
963
+ msgstr "Карусель похожих элементов портфолио"
964
+
965
+ # @ virtue
966
+ #: metaboxes.php:831
967
+ msgid "Display a carousel with similar portfolio items below project?"
968
+ msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
969
+
970
+ # @ virtue
971
+ #: metaboxes.php:836
972
+ msgid "Yes - Display Recent Projects"
973
+ msgstr "Да - отображать недавние проекты"
974
+
975
+ # @ virtue
976
+ #: metaboxes.php:912
977
+ msgid "Set image height"
978
+ msgstr "Установить высоту изображения"
979
+
980
+ # @ virtue
981
+ #: metaboxes.php:913
982
+ msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
983
+ msgstr ""
984
+ "По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
985
+ "например: 350)</b>"
986
+
987
+ # @ virtue
988
+ #: metaboxes.php:932
989
+ msgid "Add Lightbox link in the top right of each item"
990
+ msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
991
+
992
+ # @ virtue
993
+ #: metaboxes.php:954
994
+ msgid "Feature Options"
995
+ msgstr "Опции свойства"
996
+
997
+ #: metaboxes.php:955
998
+ msgid "If image slider make sure images uploaded are at least 1140px wide."
999
+ msgstr ""
1000
+
1001
+ # @ virtue
1002
+ #: metaboxes.php:966
1003
+ msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
1004
+ msgstr ""
1005
+ "По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
1006
+
1007
+ # @ virtue
1008
+ #: metaboxes.php:972
1009
+ #, fuzzy
1010
+ msgid ""
1011
+ "Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
1012
+ "to Carousel slider)</b>"
1013
+ msgstr ""
1014
+ "По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
1015
+
1016
+ # @ virtue
1017
+ #: metaboxes.php:977
1018
+ msgid "Use Lightbox for Feature Image"
1019
+ msgstr "Использовать Lightbox для миниатюр"
1020
+
1021
+ # @ virtue
1022
+ #: metaboxes.php:978
1023
+ msgid ""
1024
+ "If feature option is set to image, choose to use lightbox link with image."
1025
+ msgstr ""
1026
+ "Если опция фичи установлена в изображение, выберите использовать Lightbox с "
1027
+ "изображением."
1028
+
1029
+ # @ virtue
1030
+ #: metaboxes.php:1105
1031
+ #, fuzzy
1032
+ msgid "Slider Gallery"
1033
+ msgstr "Изображения слайдера"
1034
+
1035
+ #: page-contact.php:12 template-contact.php:7
1036
+ msgid "This field is required."
1037
+ msgstr ""
1038
+
1039
+ # @ virtue
1040
+ #: page-contact.php:13 template-contact.php:8
1041
+ #, fuzzy
1042
+ msgid "Please enter a valid email address."
1043
+ msgstr "Пожалуйста, укажите адрес своей электронной почты."
1044
+
1045
+ #: page-contact.php:96 template-contact.php:95
1046
+ msgid "Check your math."
1047
+ msgstr ""
1048
+
1049
+ # @ virtue
1050
+ #: page-contact.php:101 template-contact.php:100
1051
+ msgid "Please enter your name."
1052
+ msgstr "Пожалуйста, укажите свое имя."
1053
+
1054
+ # @ virtue
1055
+ #: page-contact.php:108 template-contact.php:107
1056
+ msgid "Please enter your email address."
1057
+ msgstr "Пожалуйста, укажите адрес своей электронной почты."
1058
+
1059
+ # @ virtue
1060
+ #: page-contact.php:111 template-contact.php:110
1061
+ msgid "You entered an invalid email address."
1062
+ msgstr "Вы ввели некорректный адрес электронной почты."
1063
+
1064
+ # @ virtue
1065
+ #: page-contact.php:118 template-contact.php:117
1066
+ msgid "Please enter a message."
1067
+ msgstr "Пожалуйста, введите текст сообщения."
1068
+
1069
+ # @ virtue
1070
+ #: page-contact.php:135 pagetemplater.php:28 pagetemplater.php:114
1071
+ #: template-contact.php:134
1072
+ #, fuzzy
1073
+ msgid "Contact"
1074
+ msgstr " Контакт"
1075
+
1076
+ # @ virtue
1077
+ #: page-contact.php:135 template-contact.php:134
1078
+ msgid "From"
1079
+ msgstr "От"
1080
+
1081
+ # @ virtue
1082
+ #: page-contact.php:136 template-contact.php:135
1083
+ msgid "Name"
1084
+ msgstr "Имя"
1085
+
1086
+ # @ virtue
1087
+ #: page-contact.php:137 template-contact.php:136
1088
+ msgid "Email"
1089
+ msgstr "Электронная почта"
1090
+
1091
+ # @ virtue
1092
+ #: page-contact.php:138 template-contact.php:137
1093
+ #, fuzzy
1094
+ msgid "Comments"
1095
+ msgstr "Комментарий"
1096
+
1097
+ # @ virtue
1098
+ #: page-contact.php:176 template-contact.php:173
1099
+ msgid "Thanks, your email was sent successfully."
1100
+ msgstr "Спасибо, ваше сообщение успешно отправлено."
1101
+
1102
+ # @ virtue
1103
+ #: page-contact.php:181 template-contact.php:177
1104
+ msgid "Sorry, an error occured."
1105
+ msgstr "Извините, возникла ошибка."
1106
+
1107
+ # @ virtue
1108
+ #: page-contact.php:187 template-contact.php:183
1109
+ msgid "Name:"
1110
+ msgstr "Имя:"
1111
+
1112
+ # @ virtue
1113
+ #: page-contact.php:195
1114
+ msgid "Email: "
1115
+ msgstr "Email:"
1116
+
1117
+ # @ virtue
1118
+ #: page-contact.php:203
1119
+ msgid "Message: "
1120
+ msgstr "Сообщение:"
1121
+
1122
+ # @ virtue
1123
+ #: page-contact.php:223 template-contact.php:218
1124
+ msgid "Send Email"
1125
+ msgstr "Отправить сообщение"
1126
+
1127
+ # @ virtue
1128
+ #: post-types.php:5 post-types.php:17
1129
+ msgid "Portfolio"
1130
+ msgstr "Портфолио"
1131
+
1132
+ # @ virtue
1133
+ #: post-types.php:6
1134
+ #, fuzzy
1135
+ msgid "Portfolio Item"
1136
+ msgstr "Портфолио"
1137
+
1138
+ # @ virtue
1139
+ #: post-types.php:7
1140
+ #, fuzzy
1141
+ msgid "Add New"
1142
+ msgstr "Добавить отзыв"
1143
+
1144
+ # @ virtue
1145
+ #: post-types.php:8
1146
+ #, fuzzy
1147
+ msgid "Add New Portfolio Item"
1148
+ msgstr "Страница портфолио всех проектов"
1149
+
1150
+ # @ virtue
1151
+ #: post-types.php:9
1152
+ #, fuzzy
1153
+ msgid "Edit Portfolio Item"
1154
+ msgstr "Портфолио"
1155
+
1156
+ # @ virtue
1157
+ #: post-types.php:10
1158
+ #, fuzzy
1159
+ msgid "New Portfolio Item"
1160
+ msgstr "Портфолио"
1161
+
1162
+ # @ virtue
1163
+ #: post-types.php:11
1164
+ #, fuzzy
1165
+ msgid "All Portfolio"
1166
+ msgstr "Портфолио"
1167
+
1168
+ # @ virtue
1169
+ #: post-types.php:12
1170
+ #, fuzzy
1171
+ msgid "View Portfolio Item"
1172
+ msgstr "Портфолио"
1173
+
1174
+ # @ virtue
1175
+ #: post-types.php:13
1176
+ #, fuzzy
1177
+ msgid "Search Portfolio"
1178
+ msgstr "Портфолио"
1179
+
1180
+ # @ virtue
1181
+ #: post-types.php:14
1182
+ #, fuzzy
1183
+ msgid "No Portfolio Item found"
1184
+ msgstr "Карусель похожих элементов портфолио"
1185
+
1186
+ #: post-types.php:15
1187
+ msgid "No Portfolio Items found in Trash"
1188
+ msgstr ""
1189
+
1190
+ # @ virtue
1191
+ #: post-types.php:37
1192
+ #, fuzzy
1193
+ msgid "Portfolio Type"
1194
+ msgstr "Виды работ портфолио"
1195
+
1196
+ # @ virtue
1197
+ #: post-types.php:38
1198
+ msgid "Type"
1199
+ msgstr "Тип"
1200
+
1201
+ # @ virtue
1202
+ #: post-types.php:39
1203
+ #, fuzzy
1204
+ msgid "Search Type"
1205
+ msgstr "Искать"
1206
+
1207
+ # @ virtue
1208
+ #: post-types.php:40
1209
+ #, fuzzy
1210
+ msgid "All Type"
1211
+ msgstr "Тип"
1212
+
1213
+ # @ virtue
1214
+ #: post-types.php:41
1215
+ #, fuzzy
1216
+ msgid "Parent Type"
1217
+ msgstr "например: Тип проекта:"
1218
+
1219
+ # @ virtue
1220
+ #: post-types.php:42
1221
+ #, fuzzy
1222
+ msgid "Parent Type:"
1223
+ msgstr "например: Тип проекта:"
1224
+
1225
+ # @ virtue
1226
+ #: post-types.php:43
1227
+ #, fuzzy
1228
+ msgid "Edit Type"
1229
+ msgstr "Тип"
1230
+
1231
+ # @ virtue
1232
+ #: post-types.php:44
1233
+ #, fuzzy
1234
+ msgid "Update Type"
1235
+ msgstr "Пересчитать итог"
1236
+
1237
+ #: post-types.php:45
1238
+ msgid "Add New Type"
1239
+ msgstr ""
1240
+
1241
+ #: post-types.php:46
1242
+ msgid "New Type Name"
1243
+ msgstr ""
1244
+
1245
+ #: shortcode_ajax.php:4 shortcode_ajax.php:12 shortcode_ajax.php:20
1246
+ #: shortcode_ajax.php:28 shortcode_ajax.php:36 shortcode_ajax.php:44
1247
+ #: shortcode_ajax.php:52 shortcode_ajax.php:60
1248
+ msgid "You are not allowed to be here"
1249
+ msgstr ""
1250
+
1251
+ #: shortcodes.php:149 shortcodes.php:152 shortcodes.php:175 shortcodes.php:178
1252
+ msgid "please specify correct url"
1253
+ msgstr ""
1254
+
1255
+ #: shortcodes/accordion/accordion_popup.php:10
1256
+ msgid "Insert Accordion or Tabs"
1257
+ msgstr ""
1258
+
1259
+ #: shortcodes/accordion/accordion_popup.php:59
1260
+ msgid "Accordion or Tabs"
1261
+ msgstr ""
1262
+
1263
+ #: shortcodes/accordion/accordion_popup.php:61
1264
+ msgid "Accordion"
1265
+ msgstr ""
1266
+
1267
+ #: shortcodes/accordion/accordion_popup.php:62
1268
+ msgid "Tabs"
1269
+ msgstr ""
1270
+
1271
+ #: shortcodes/accordion/accordion_popup.php:66
1272
+ #: shortcodes/btns/btns_popup.php:230 shortcodes/divider/divider_popup.php:80
1273
+ #: shortcodes/pullquote/quote_popup.php:77 shortcodes/vimeo/vimeo_popup.php:85
1274
+ #: shortcodes/youtube/youtube_popup.php:85
1275
+ msgid "Insert"
1276
+ msgstr ""
1277
+
1278
+ #: shortcodes/btns/btns_popup.php:10
1279
+ msgid "Insert Button"
1280
+ msgstr ""
1281
+
1282
+ #: shortcodes/btns/btns_popup.php:99
1283
+ msgid "Button Text"
1284
+ msgstr ""
1285
+
1286
+ #: shortcodes/btns/btns_popup.php:105
1287
+ msgid "Text Color"
1288
+ msgstr ""
1289
+
1290
+ #: shortcodes/btns/btns_popup.php:107 shortcodes/btns/btns_popup.php:140
1291
+ #: shortcodes/btns/btns_popup.php:163 shortcodes/btns/btns_popup.php:196
1292
+ msgid "White"
1293
+ msgstr ""
1294
+
1295
+ #: shortcodes/btns/btns_popup.php:108 shortcodes/btns/btns_popup.php:141
1296
+ #: shortcodes/btns/btns_popup.php:164 shortcodes/btns/btns_popup.php:197
1297
+ msgid "Off-White"
1298
+ msgstr ""
1299
+
1300
+ #: shortcodes/btns/btns_popup.php:109 shortcodes/btns/btns_popup.php:135
1301
+ #: shortcodes/btns/btns_popup.php:165 shortcodes/btns/btns_popup.php:191
1302
+ msgid "Black"
1303
+ msgstr ""
1304
+
1305
+ #: shortcodes/btns/btns_popup.php:110 shortcodes/btns/btns_popup.php:136
1306
+ #: shortcodes/btns/btns_popup.php:166 shortcodes/btns/btns_popup.php:192
1307
+ msgid "Light-Gray"
1308
+ msgstr ""
1309
+
1310
+ #: shortcodes/btns/btns_popup.php:111 shortcodes/btns/btns_popup.php:137
1311
+ #: shortcodes/btns/btns_popup.php:167 shortcodes/btns/btns_popup.php:193
1312
+ msgid "Gray"
1313
+ msgstr ""
1314
+
1315
+ #: shortcodes/btns/btns_popup.php:112 shortcodes/btns/btns_popup.php:138
1316
+ #: shortcodes/btns/btns_popup.php:168 shortcodes/btns/btns_popup.php:194
1317
+ msgid "Dark-Gray"
1318
+ msgstr ""
1319
+
1320
+ #: shortcodes/btns/btns_popup.php:113 shortcodes/btns/btns_popup.php:139
1321
+ #: shortcodes/btns/btns_popup.php:169 shortcodes/btns/btns_popup.php:195
1322
+ msgid "Silver"
1323
+ msgstr ""
1324
+
1325
+ #: shortcodes/btns/btns_popup.php:114 shortcodes/btns/btns_popup.php:142
1326
+ #: shortcodes/btns/btns_popup.php:170 shortcodes/btns/btns_popup.php:198
1327
+ msgid "Red"
1328
+ msgstr ""
1329
+
1330
+ #: shortcodes/btns/btns_popup.php:115 shortcodes/btns/btns_popup.php:143
1331
+ #: shortcodes/btns/btns_popup.php:171 shortcodes/btns/btns_popup.php:199
1332
+ msgid "Blue"
1333
+ msgstr ""
1334
+
1335
+ #: shortcodes/btns/btns_popup.php:116 shortcodes/btns/btns_popup.php:144
1336
+ #: shortcodes/btns/btns_popup.php:172 shortcodes/btns/btns_popup.php:200
1337
+ msgid "Green"
1338
+ msgstr ""
1339
+
1340
+ # @ virtue
1341
+ #: shortcodes/btns/btns_popup.php:117 shortcodes/btns/btns_popup.php:145
1342
+ #: shortcodes/btns/btns_popup.php:173 shortcodes/btns/btns_popup.php:201
1343
+ #, fuzzy
1344
+ msgid "Yellow"
1345
+ msgstr "Подписаться"
1346
+
1347
+ #: shortcodes/btns/btns_popup.php:118 shortcodes/btns/btns_popup.php:146
1348
+ #: shortcodes/btns/btns_popup.php:174 shortcodes/btns/btns_popup.php:202
1349
+ msgid "Orange"
1350
+ msgstr ""
1351
+
1352
+ #: shortcodes/btns/btns_popup.php:119 shortcodes/btns/btns_popup.php:147
1353
+ #: shortcodes/btns/btns_popup.php:175 shortcodes/btns/btns_popup.php:203
1354
+ msgid "Pink"
1355
+ msgstr ""
1356
+
1357
+ #: shortcodes/btns/btns_popup.php:120 shortcodes/btns/btns_popup.php:148
1358
+ #: shortcodes/btns/btns_popup.php:176 shortcodes/btns/btns_popup.php:204
1359
+ msgid "Purple"
1360
+ msgstr ""
1361
+
1362
+ #: shortcodes/btns/btns_popup.php:121 shortcodes/btns/btns_popup.php:149
1363
+ #: shortcodes/btns/btns_popup.php:177 shortcodes/btns/btns_popup.php:205
1364
+ msgid "Brown"
1365
+ msgstr ""
1366
+
1367
+ #: shortcodes/btns/btns_popup.php:122 shortcodes/btns/btns_popup.php:150
1368
+ #: shortcodes/btns/btns_popup.php:178 shortcodes/btns/btns_popup.php:206
1369
+ msgid "Maroon"
1370
+ msgstr ""
1371
+
1372
+ #: shortcodes/btns/btns_popup.php:126 shortcodes/btns/btns_popup.php:155
1373
+ #: shortcodes/btns/btns_popup.php:182 shortcodes/btns/btns_popup.php:210
1374
+ msgid "Or Type Hex Color"
1375
+ msgstr ""
1376
+
1377
+ # @ virtue
1378
+ #: shortcodes/btns/btns_popup.php:132
1379
+ #, fuzzy
1380
+ msgid "Button Color"
1381
+ msgstr "Цвет фона"
1382
+
1383
+ #: shortcodes/btns/btns_popup.php:161
1384
+ msgid "Text Hover Color"
1385
+ msgstr ""
1386
+
1387
+ # @ virtue
1388
+ #: shortcodes/btns/btns_popup.php:188
1389
+ #, fuzzy
1390
+ msgid "Button Background Hover Color"
1391
+ msgstr "Цвет фона"
1392
+
1393
+ # @ virtue
1394
+ #: shortcodes/btns/btns_popup.php:190
1395
+ #, fuzzy
1396
+ msgid "30% Primary Color"
1397
+ msgstr "Основной цвет"
1398
+
1399
+ #: shortcodes/btns/btns_popup.php:216
1400
+ msgid "Button Link"
1401
+ msgstr ""
1402
+
1403
+ #: shortcodes/btns/btns_popup.php:222
1404
+ msgid "Button Link Target"
1405
+ msgstr ""
1406
+
1407
+ #: shortcodes/btns/btns_popup.php:224
1408
+ msgid "Same Window"
1409
+ msgstr ""
1410
+
1411
+ #: shortcodes/btns/btns_popup.php:225
1412
+ msgid "New Window/Tab"
1413
+ msgstr ""
1414
+
1415
+ # @ virtue
1416
+ #: shortcodes/columns/columns_popup.php:10
1417
+ #, fuzzy
1418
+ msgid "Insert Columns"
1419
+ msgstr "Колонки"
1420
+
1421
+ #: shortcodes/divider/divider_popup.php:10
1422
+ msgid "Insert Divider"
1423
+ msgstr ""
1424
+
1425
+ # @ virtue
1426
+ #: shortcodes/divider/divider_popup.php:70
1427
+ #, fuzzy
1428
+ msgid "Choose a Divider"
1429
+ msgstr "Выберите боковую панель"
1430
+
1431
+ #: shortcodes/divider/divider_popup.php:72
1432
+ msgid "Line"
1433
+ msgstr ""
1434
+
1435
+ #: shortcodes/divider/divider_popup.php:73
1436
+ msgid "Padding Small"
1437
+ msgstr ""
1438
+
1439
+ #: shortcodes/divider/divider_popup.php:74
1440
+ msgid "Padding Medium"
1441
+ msgstr ""
1442
+
1443
+ #: shortcodes/divider/divider_popup.php:75
1444
+ msgid "Padding Large"
1445
+ msgstr ""
1446
+
1447
+ #: shortcodes/icons/icon_popup.php:10
1448
+ msgid "Insert Icon"
1449
+ msgstr ""
1450
+
1451
+ #: shortcodes/pullquote/quote_popup.php:10
1452
+ msgid "Insert Styled Quote"
1453
+ msgstr ""
1454
+
1455
+ #: shortcodes/pullquote/quote_popup.php:61
1456
+ msgid "Pull-Quote"
1457
+ msgstr ""
1458
+
1459
+ #: shortcodes/pullquote/quote_popup.php:62
1460
+ msgid "Block-Quote"
1461
+ msgstr ""
1462
+
1463
+ #: shortcodes/pullquote/quote_popup.php:68
1464
+ msgid "Align"
1465
+ msgstr ""
1466
+
1467
+ #: shortcodes/pullquote/quote_popup.php:70
1468
+ msgid "Center"
1469
+ msgstr ""
1470
+
1471
+ #: shortcodes/pullquote/quote_popup.php:71
1472
+ msgid "Left"
1473
+ msgstr ""
1474
+
1475
+ #: shortcodes/pullquote/quote_popup.php:72
1476
+ msgid "Right"
1477
+ msgstr ""
1478
+
1479
+ #: shortcodes/vimeo/vimeo_popup.php:10
1480
+ msgid "Insert Vimeo Video"
1481
+ msgstr ""
1482
+
1483
+ # @ virtue
1484
+ #: shortcodes/vimeo/vimeo_popup.php:66
1485
+ #, fuzzy
1486
+ msgid "Vimeo Link"
1487
+ msgstr "Vimeo:"
1488
+
1489
+ #: shortcodes/vimeo/vimeo_popup.php:70 shortcodes/youtube/youtube_popup.php:70
1490
+ msgid "Width"
1491
+ msgstr ""
1492
+
1493
+ #: shortcodes/vimeo/vimeo_popup.php:72 shortcodes/vimeo/vimeo_popup.php:77
1494
+ #: shortcodes/vimeo/vimeo_popup.php:82 shortcodes/youtube/youtube_popup.php:72
1495
+ #: shortcodes/youtube/youtube_popup.php:77
1496
+ #: shortcodes/youtube/youtube_popup.php:82
1497
+ msgid "note just use number"
1498
+ msgstr ""
1499
+
1500
+ # @ virtue
1501
+ #: shortcodes/vimeo/vimeo_popup.php:75 shortcodes/youtube/youtube_popup.php:75
1502
+ #, fuzzy
1503
+ msgid "Height"
1504
+ msgstr "Высота карты"
1505
+
1506
+ # @ virtue
1507
+ #: shortcodes/vimeo/vimeo_popup.php:80 shortcodes/youtube/youtube_popup.php:80
1508
+ #, fuzzy
1509
+ msgid "(Optional) Max Width"
1510
+ msgstr "Максимальная ширина слайдера"
1511
+
1512
+ #: shortcodes/youtube/youtube_popup.php:10
1513
+ msgid "Insert YouTube Video"
1514
+ msgstr ""
1515
+
1516
+ #: shortcodes/youtube/youtube_popup.php:66
1517
+ msgid "YouTube Link"
1518
+ msgstr ""
1519
+
1520
+ # @ virtue
1521
+ #: template-contact.php:193
1522
+ msgid "Email:"
1523
+ msgstr "Адрес эл.почты:"
1524
+
1525
+ # @ virtue
1526
+ #: template-contact.php:200
1527
+ #, fuzzy
1528
+ msgid "Message:"
1529
+ msgstr "Сообщение:"
1530
+
1531
+ # @ virtue
1532
+ #~ msgid " (taxes estimated for %s)"
1533
+ #~ msgstr "(налог оценен в %s)"
1534
+
1535
+ # @ virtue
1536
+ #~ msgid " <span>*</span>"
1537
+ #~ msgstr " <span>*</span>"
1538
+
1539
+ # @ virtue
1540
+ #~ msgid "%1$s"
1541
+ #~ msgstr "%1$s"
1542
+
1543
+ # @ virtue
1544
+ #~ msgid "%1$s installed and activated successfully."
1545
+ #~ msgstr "%1$s установлен и успешно активирован."
1546
+
1547
+ # @ virtue
1548
+ #~ msgid "%1$s installed successfully."
1549
+ #~ msgstr "%1$s установлен успешно."
1550
+
1551
+ # @ virtue
1552
+ #~ msgid "%s customer review"
1553
+ #~ msgid_plural "%s customer reviews"
1554
+ #~ msgstr[0] "%s отзыв"
1555
+ #~ msgstr[1] "%s отзыва"
1556
+ #~ msgstr[2] "%s отзывов"
1557
+
1558
+ # @ virtue
1559
+ #~ msgid "%s review for %s"
1560
+ #~ msgid_plural "%s reviews for %s"
1561
+ #~ msgstr[0] "%s обзор для %s"
1562
+ #~ msgstr[1] "%s обзора для %s"
1563
+ #~ msgstr[2] "%s обзоров для %s"
1564
+
1565
+ # @ virtue
1566
+ #~ msgid "&larr; Older comments"
1567
+ #~ msgstr "&larr; Более старые комментарии"
1568
+
1569
+ # @ virtue
1570
+ #~ msgid "&larr; Older posts"
1571
+ #~ msgstr "&larr; Более старые посты"
1572
+
1573
+ # @ virtue
1574
+ #~ msgid "(Edit)"
1575
+ #~ msgstr "(Редактировать)"
1576
+
1577
+ # @ virtue
1578
+ #~ msgid "20% lighter than Primary Color"
1579
+ #~ msgstr "20% более яркий, чем основной цвет"
1580
+
1581
+ # @ virtue
1582
+ #~ msgid "About Author"
1583
+ #~ msgstr "Об авторе"
1584
+
1585
+ # @ virtue
1586
+ #~ msgid "Activate"
1587
+ #~ msgstr "Активировать"
1588
+
1589
+ # @ virtue
1590
+ #~ msgid "Add images"
1591
+ #~ msgstr "Добавить изображения"
1592
+
1593
+ # @ virtue
1594
+ #~ msgid "Additional Information"
1595
+ #~ msgstr "Дополнительная информация"
1596
+
1597
+ # @ virtue
1598
+ #~ msgid "Advanced Settings"
1599
+ #~ msgstr "Расширенные настройки"
1600
+
1601
+ # @ virtue
1602
+ #~ msgid "Advanced Styling"
1603
+ #~ msgstr "Расширенные настройки стиля"
1604
+
1605
+ # @ virtue
1606
+ #~ msgid "All Blog Posts"
1607
+ #~ msgstr "Все посты блога"
1608
+
1609
+ # @ virtue
1610
+ #~ msgid "All Defaults Restored!"
1611
+ #~ msgstr "Все настройки востановлены по умолчанию!"
1612
+
1613
+ # @ virtue
1614
+ #~ msgid "All installations and activations have been completed."
1615
+ #~ msgstr "Все установки и активации завершены."
1616
+
1617
+ # @ virtue
1618
+ #~ msgid "All installations have been completed."
1619
+ #~ msgstr "Все установки были завершены."
1620
+
1621
+ # @ virtue
1622
+ #~ msgid "All plugins installed and activated successfully. %1$s"
1623
+ #~ msgstr "Все плагины успешно установлены и активированы. %1$s"
1624
+
1625
+ # @ virtue
1626
+ #~ msgid "All plugins installed and activated successfully. %s"
1627
+ #~ msgstr "Все плагины успешно установлены и активированы. %s"
1628
+
1629
+ # @ virtue
1630
+ #~ msgid "Allow Comments on Portfolio Posts"
1631
+ #~ msgstr "Разрешить комментарии на записях элементов портфолио."
1632
+
1633
+ # @ virtue
1634
+ #~ msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
1635
+ #~ msgstr "При установке %1$s возникла ошибка: <strong>%2$s</strong>."
1636
+
1637
+ # @ virtue
1638
+ #~ msgid "An optional line of text below your logo"
1639
+ #~ msgstr "Необязательная строка текста для размещения под логотипом"
1640
+
1641
+ # @ virtue
1642
+ #~ msgid "Apply Coupon"
1643
+ #~ msgstr "Применить купон"
1644
+
1645
+ # @ virtue
1646
+ #~ msgid "Author Archives: %s"
1647
+ #~ msgstr "Архивы автора: %s"
1648
+
1649
+ # @ virtue
1650
+ #~ msgid "Author Info"
1651
+ #~ msgstr "Информация об авторе"
1652
+
1653
+ # @ virtue
1654
+ #~ msgid "Author:"
1655
+ #~ msgstr "Автор:"
1656
+
1657
+ # @ virtue
1658
+ #~ msgid "Available on backorder"
1659
+ #~ msgstr "Доступно позднее"
1660
+
1661
+ # @ virtue
1662
+ #~ msgid "Average"
1663
+ #~ msgstr "Средний"
1664
+
1665
+ # @ virtue
1666
+ #~ msgid "Back to"
1667
+ #~ msgstr "Назад к"
1668
+
1669
+ # @ virtue
1670
+ #~ msgid "Basic Styling"
1671
+ #~ msgstr "Базовые настройки стиля"
1672
+
1673
+ # @ virtue
1674
+ #~ msgid "Basic Stylng"
1675
+ #~ msgstr "Базовые настройки стиля"
1676
+
1677
+ # @ virtue
1678
+ #~ msgid "Be the first to review"
1679
+ #~ msgstr "Оставьте свой отзыв первым"
1680
+
1681
+ # @ virtue
1682
+ #~ msgid "Billing Address"
1683
+ #~ msgstr "Адрес для выставления счета"
1684
+
1685
+ # @ virtue
1686
+ #~ msgid "Billing Email"
1687
+ #~ msgstr "Адрес электронной почты для выставления счетов"
1688
+
1689
+ # @ virtue
1690
+ #~ msgid "Blog Category"
1691
+ #~ msgstr "Категория блога"
1692
+
1693
+ # @ virtue
1694
+ #~ msgid "Blog List Options"
1695
+ #~ msgstr "Опции списка блогов"
1696
+
1697
+ # @ virtue
1698
+ #~ msgid "Blog Posts"
1699
+ #~ msgstr "Записи блога"
1700
+
1701
+ # @ virtue
1702
+ #~ msgid "Body Background"
1703
+ #~ msgstr "Фон раздела body"
1704
+
1705
+ # @ virtue
1706
+ #~ msgid "Body Font"
1707
+ #~ msgstr "Шрифт раздела body"
1708
+
1709
+ # @ virtue
1710
+ #~ msgid "Body Font Options"
1711
+ #~ msgstr "Настройки шрифта раздела body"
1712
+
1713
+ # @ virtue
1714
+ #~ msgid "Bottom Spacing"
1715
+ #~ msgstr "Отступ логотипа снизу"
1716
+
1717
+ # @ virtue
1718
+ #~ msgid "By"
1719
+ #~ msgstr "Кем"
1720
+
1721
+ # @ virtue
1722
+ #~ msgid "Calculate Shipping"
1723
+ #~ msgstr "Расчитать стоимость доставки"
1724
+
1725
+ # @ virtue
1726
+ #~ msgid "Cart Subtotal"
1727
+ #~ msgstr "Промежуточный итог в корзине"
1728
+
1729
+ # @ virtue
1730
+ #~ msgid "Cart Totals"
1731
+ #~ msgstr "Итого в корзине"
1732
+
1733
+ # @ virtue
1734
+ #~ msgid "Choose How many posts on Homepage"
1735
+ #~ msgstr "Укажите сколько записей блога отображать на домашней странице"
1736
+
1737
+ # @ virtue
1738
+ #~ msgid "Choose Size and Style for Mobile Menu"
1739
+ #~ msgstr "Выберите размер и стиль для мобильного меню"
1740
+
1741
+ # @ virtue
1742
+ #~ msgid "Choose Size and Style for h1 (This Styles Your Page Titles)"
1743
+ #~ msgstr ""
1744
+ #~ "Выберите размер и стиль для заголовка H1 (это стиль заголовков страниц)"
1745
+
1746
+ # @ virtue
1747
+ #~ msgid "Choose Size and Style for h2"
1748
+ #~ msgstr "Выберите размер и стиль для заголовка H2"
1749
+
1750
+ # @ virtue
1751
+ #~ msgid "Choose Size and Style for h3"
1752
+ #~ msgstr "Выберите размер и стиль для заголовка H3"
1753
+
1754
+ # @ virtue
1755
+ #~ msgid "Choose Size and Style for h4"
1756
+ #~ msgstr "Выберите размер и стиль для заголовка H4"
1757
+
1758
+ # @ virtue
1759
+ #~ msgid "Choose Size and Style for h5"
1760
+ #~ msgstr "Выберите размер и стиль для заголовка H5"
1761
+
1762
+ # @ virtue
1763
+ #~ msgid "Choose Size and Style for paragraphs"
1764
+ #~ msgstr "Выберите размер и стиль для отображения текста параграфов"
1765
+
1766
+ # @ virtue
1767
+ #~ msgid "Choose Size and Style for primary menu"
1768
+ #~ msgstr "Выберите размер и стиль для главного меню"
1769
+
1770
+ # @ virtue
1771
+ #~ msgid ""
1772
+ #~ "Choose Size and Style for product titles on category and archive pages."
1773
+ #~ msgstr ""
1774
+ #~ "Выберите размер и стиль для заголовков продуктов на страницах Каталога и "
1775
+ #~ "архивов"
1776
+
1777
+ # @ virtue
1778
+ #~ msgid "Choose Size and Style for secondary menu"
1779
+ #~ msgstr "Выберите размер и стиль для дополнительного меню"
1780
+
1781
+ # @ virtue
1782
+ #~ msgid "Choose a Home Image Slider"
1783
+ #~ msgstr "Выберите слайдер домашней страницы"
1784
+
1785
+ # @ virtue
1786
+ #~ msgid "Choose a Sidebar for your Home Page"
1787
+ #~ msgstr "Выберите боковую панель для вашей домашней страницы"
1788
+
1789
+ # @ virtue
1790
+ #~ msgid "Choose a Sidebar for your shop page"
1791
+ #~ msgstr "Выберите боковую панель для страницы Магазина."
1792
+
1793
+ # @ virtue
1794
+ #~ msgid "Choose a Slider for Mobile"
1795
+ #~ msgstr "Выберите слайдер для мобильной версии сайта"
1796
+
1797
+ # @ virtue
1798
+ #~ msgid "Choose a transition type"
1799
+ #~ msgstr "Выберите тип перехода"
1800
+
1801
+ # @ virtue
1802
+ #~ msgid "Choose an option"
1803
+ #~ msgstr "Выберите вариант"
1804
+
1805
+ # @ virtue
1806
+ #~ msgid "Choose how many portfolio items are in carousel"
1807
+ #~ msgstr "Укажите, сколько элементов размещается в карусели"
1808
+
1809
+ # @ virtue
1810
+ #~ msgid "Choose how the portfolio items should be ordered in the carousel."
1811
+ #~ msgstr ""
1812
+ #~ "Выберите в каком порядке будут сортироваться элементы карусели портфолио"
1813
+
1814
+ # @ virtue
1815
+ #~ msgid "Choose how you want your logo to be laid out"
1816
+ #~ msgstr "Выберите каким образом должен быть размещен логотип"
1817
+
1818
+ # @ virtue
1819
+ #~ msgid "Choose if layout is fullwidth or sidebar"
1820
+ #~ msgstr "Укажите, тип страницы: во всю ширину или с боковой панелью"
1821
+
1822
+ # @ virtue
1823
+ #~ msgid ""
1824
+ #~ "Choose if you would like to show a different slider on your home page for "
1825
+ #~ "your mobile visitors."
1826
+ #~ msgstr ""
1827
+ #~ "Укажите, если вы хотите отображать специальный слайдер на домашней "
1828
+ #~ "странице для ваших мобильных посетителей."
1829
+
1830
+ # @ virtue
1831
+ #~ msgid "Choose size and style your site tagline"
1832
+ #~ msgstr "Выберите размер и стиль шрифта для строки описания сайта"
1833
+
1834
+ # @ virtue
1835
+ #~ msgid "Choose size and style your sitename, if you don't use an image logo."
1836
+ #~ msgstr ""
1837
+ #~ "Выберите размер и стиль шрифта для текстового логотипа, если вы не "
1838
+ #~ "используете графический логотип."
1839
+
1840
+ # @ virtue
1841
+ #~ msgid "Choose the default Highlight color for your site."
1842
+ #~ msgstr "Выберите цвет выделения по умолчанию для вашего сайта."
1843
+
1844
+ # @ virtue
1845
+ #~ msgid "Choose to show or hide author icon under post title."
1846
+ #~ msgstr "Выберите обображать или нет иконку автора под заголовком записи."
1847
+
1848
+ # @ virtue
1849
+ #~ msgid "Choose to show or hide captions"
1850
+ #~ msgstr "Выберите отображать подписи или нет"
1851
+
1852
+ # @ virtue
1853
+ #~ msgid "Choose to show or hide comments closed alert below posts."
1854
+ #~ msgstr ""
1855
+ #~ "Выберите отображать или нет предупреждение о закрытии возможности "
1856
+ #~ "оставлять комментарии внизу страницы записи."
1857
+
1858
+ # @ virtue
1859
+ #~ msgid "Choose to show or hide image border"
1860
+ #~ msgstr "Выберите отображать или нет границы изображений"
1861
+
1862
+ # @ virtue
1863
+ #~ msgid "Choose to show or hide search in topbar"
1864
+ #~ msgstr "Укажите, отображать поле поиска в меню чердака или нет"
1865
+
1866
+ # @ virtue
1867
+ #~ msgid "Choose to show or hide topbar"
1868
+ #~ msgstr "Укажите, использовать чердак или нет"
1869
+
1870
+ # @ virtue
1871
+ #~ msgid "Choose to show or hide topbar icon Menu"
1872
+ #~ msgstr "Укажите, отображать или нет иконки меню чердака"
1873
+
1874
+ # @ virtue
1875
+ #~ msgid "Choose which slider you would like to show for mobile viewers."
1876
+ #~ msgstr ""
1877
+ #~ "Укажите какой слайдер вы хотите использовать для мобильной версии сайта."
1878
+
1879
+ # @ virtue
1880
+ #~ msgid "Choose your icons for the icon menu."
1881
+ #~ msgstr "Выберите иконки для меню иконок"
1882
+
1883
+ # @ virtue
1884
+ #~ msgid "Choose your icons for the topbar icon menu."
1885
+ #~ msgstr "Выберите иконки для меню чердака."
1886
+
1887
+ # @ virtue
1888
+ #~ msgid "City"
1889
+ #~ msgstr "Город"
1890
+
1891
+ # @ virtue
1892
+ #~ msgid "City/Locality:"
1893
+ #~ msgstr "Город:"
1894
+
1895
+ # @ virtue
1896
+ #~ msgid "Clear selection"
1897
+ #~ msgstr "Очистить выбор"
1898
+
1899
+ # @ virtue
1900
+ #~ msgid "Comments are closed."
1901
+ #~ msgstr "Добавление комментариев закрыто."
1902
+
1903
+ # @ virtue
1904
+ #~ msgid "Company Name:"
1905
+ #~ msgstr "Название компании:"
1906
+
1907
+ # @ virtue
1908
+ #~ msgid "Continued"
1909
+ #~ msgstr "Читать далее"
1910
+
1911
+ # @ virtue
1912
+ #~ msgid "Copy and Paste this code into the theme options import feature"
1913
+ #~ msgstr "Скопируйте и вставьте этот код в поле импорта настроек темы"
1914
+
1915
+ # @ virtue
1916
+ #~ msgid "Coupon"
1917
+ #~ msgstr "Купон"
1918
+
1919
+ # @ virtue
1920
+ #~ msgid "Coupon code"
1921
+ #~ msgstr "Код купона"
1922
+
1923
+ # @ virtue
1924
+ #~ msgid "Create Custom Sidebars"
1925
+ #~ msgstr "Создать нестандартные боковые панели"
1926
+
1927
+ # @ virtue
1928
+ #~ msgid "Create Sidebars"
1929
+ #~ msgstr "Создать боковую панель"
1930
+
1931
+ # @ virtue
1932
+ #~ msgid "Create a more lightweight home slider for your mobile visitors."
1933
+ #~ msgstr ""
1934
+ #~ "Создайте более легкий слайдер домашней страницы для мобильной версии "
1935
+ #~ "сайта."
1936
+
1937
+ # @ virtue
1938
+ #~ msgid "Custom CSS"
1939
+ #~ msgstr "Пользовательский CSS"
1940
+
1941
+ # @ virtue
1942
+ #~ msgid "Custom CSS Box"
1943
+ #~ msgstr "Пользовательский стиль CSS"
1944
+
1945
+ # @ virtue
1946
+ #~ msgid "Custom Favicon"
1947
+ #~ msgstr "Настройка иконки сайта."
1948
+
1949
+ # @ virtue
1950
+ #~ msgid "Customer details"
1951
+ #~ msgstr "Реквизиты клиента"
1952
+
1953
+ # @ virtue
1954
+ #~ msgid "Daily Archives: %s"
1955
+ #~ msgstr "Архивы за день: %s"
1956
+
1957
+ # @ virtue
1958
+ #~ msgid "Date:"
1959
+ #~ msgstr "Дата:"
1960
+
1961
+ # @ virtue
1962
+ #~ msgid "Default sorting"
1963
+ #~ msgstr "Сортировка по умолчанию"
1964
+
1965
+ # @ virtue
1966
+ #~ msgid ""
1967
+ #~ "Disable this if using a plugin to customize galleries, for example "
1968
+ #~ "jetpack tiled gallery."
1969
+ #~ msgstr ""
1970
+ #~ "Выключите это опцию если вы используете плагин для нестандартных галерей, "
1971
+ #~ "например галерею картинок JetPack."
1972
+
1973
+ # @ virtue
1974
+ #~ msgid "Dismiss"
1975
+ #~ msgstr "Отклонить"
1976
+
1977
+ # @ virtue
1978
+ #~ msgid "Dismiss this notice"
1979
+ #~ msgstr "Убрать это уведомление"
1980
+
1981
+ # @ virtue
1982
+ #~ msgid "Display Portfolio Types under Title"
1983
+ #~ msgstr "Отображать тип элемента портфолио под заголовком"
1984
+
1985
+ # @ virtue
1986
+ #~ msgid "Display Post Content as:"
1987
+ #~ msgstr "Отобразить содержимое поста как:"
1988
+
1989
+ # @ virtue
1990
+ #~ msgid "Display Search in Topbar?"
1991
+ #~ msgstr "Отображать Поиск в меню чердака?"
1992
+
1993
+ # @ virtue
1994
+ #~ msgid "Display Sidebar?"
1995
+ #~ msgstr "Показать боковую панель?"
1996
+
1997
+ # @ virtue
1998
+ #~ msgid "Display a carousel with similar or recent posts?"
1999
+ #~ msgstr "Отображать карусель похожих или недавних постов?"
2000
+
2001
+ # @ virtue
2002
+ #~ msgid "Display a sidebar on the Home Page?"
2003
+ #~ msgstr "Отображать боковую панель на домашней странице?"
2004
+
2005
+ # @ virtue
2006
+ #~ msgid "Display an author info box?"
2007
+ #~ msgstr "Отображать информацию об авторе?"
2008
+
2009
+ # @ virtue
2010
+ #~ msgid "Display product tabs?"
2011
+ #~ msgstr "Отображать закладки продуктов?"
2012
+
2013
+ # @ virtue
2014
+ #~ msgid "Display related products?"
2015
+ #~ msgstr "Отображать связанные продукты?"
2016
+
2017
+ # @ virtue
2018
+ #~ msgid "Display the sidebar on shop archives?"
2019
+ #~ msgstr "Отображать боковую панель на странице архива Магазина?"
2020
+
2021
+ # @ virtue
2022
+ #~ msgid "Download file%s"
2023
+ #~ msgstr "Скачать файл %s"
2024
+
2025
+ # @ virtue
2026
+ #~ msgid ""
2027
+ #~ "Downloading install package from <span class=\"code\">%s</span>&#8230;"
2028
+ #~ msgstr ""
2029
+ #~ "Загружаем установочный пакет с <span class=\"code\">%s</span>&#8230;"
2030
+
2031
+ # @ virtue
2032
+ #~ msgid "Dribbble:"
2033
+ #~ msgstr "Dribbble:"
2034
+
2035
+ # @ virtue
2036
+ #~ msgid "Email (will not be published)"
2037
+ #~ msgstr "Эл.почта (не публикуется)"
2038
+
2039
+ # @ virtue
2040
+ #~ msgid "Email you used during checkout."
2041
+ #~ msgstr "Адрес электронной почты, указанный при оформлении заказа."
2042
+
2043
+ # @ virtue
2044
+ #~ msgid "Enable Product Image Crop on Catalog pages"
2045
+ #~ msgstr "Включить обрезку изображений продукта на страницах Каталога"
2046
+
2047
+ # @ virtue
2048
+ #~ msgid "Enable Product Image Crop on product Page"
2049
+ #~ msgstr "Включить обрезку изображений на странице продукта"
2050
+
2051
+ # @ virtue
2052
+ #~ msgid "Enable Virtue Galleries to override Wordpress"
2053
+ #~ msgstr "Включите галереи Virtue вместо галерей WordPress"
2054
+
2055
+ # @ virtue
2056
+ #~ msgid "Enable widget area in right of Topbar?"
2057
+ #~ msgstr "Активировать область виджетов в правой части чердака?"
2058
+
2059
+ # @ virtue
2060
+ #~ msgid "Error 404"
2061
+ #~ msgstr "Ошибка 404"
2062
+
2063
+ # @ virtue
2064
+ #~ msgid "Expand"
2065
+ #~ msgstr "Развернуть"
2066
+
2067
+ # @ virtue
2068
+ #~ msgid "External Link"
2069
+ #~ msgstr "Внешняя ссылка"
2070
+
2071
+ # @ virtue
2072
+ #~ msgid "Extra Sidebar"
2073
+ #~ msgstr "Дополнительные боковые панели"
2074
+
2075
+ # @ virtue
2076
+ #~ msgid "Facebook:"
2077
+ #~ msgstr "Facebook:"
2078
+
2079
+ # @ virtue
2080
+ #~ msgid "Feature Page Slider Images"
2081
+ #~ msgstr "Изображения для слайдера страницы описания"
2082
+
2083
+ # @ virtue
2084
+ #~ msgid "Featured Projects"
2085
+ #~ msgstr "Избранные проекты"
2086
+
2087
+ # @ virtue
2088
+ #~ msgid "Fixed or Scroll"
2089
+ #~ msgstr "Фиксированный или прокручиваемый"
2090
+
2091
+ # @ virtue
2092
+ #~ msgid "Flickr:"
2093
+ #~ msgstr "Flickr:"
2094
+
2095
+ # @ virtue
2096
+ #~ msgid "Footer Background"
2097
+ #~ msgstr "Фон подвала"
2098
+
2099
+ # @ virtue
2100
+ #~ msgid "Footer Column 1"
2101
+ #~ msgstr "Столбец подвала 1"
2102
+
2103
+ # @ virtue
2104
+ #~ msgid "Footer Column 2"
2105
+ #~ msgstr "Столбец подвала 2"
2106
+
2107
+ # @ virtue
2108
+ #~ msgid "Footer Column 3"
2109
+ #~ msgstr "Столбец подвала 3"
2110
+
2111
+ # @ virtue
2112
+ #~ msgid "Footer Column 4"
2113
+ #~ msgstr "Столбец подвала 4"
2114
+
2115
+ # @ virtue
2116
+ #~ msgid "Footer Copyright Text"
2117
+ #~ msgstr "Текст сообщения об авторских правах для подвала"
2118
+
2119
+ # @ virtue
2120
+ #~ msgid "Footer Font Color"
2121
+ #~ msgstr "Цвет шрифтов подвала"
2122
+
2123
+ # @ virtue
2124
+ #~ msgid "Footer Navigation"
2125
+ #~ msgstr "Навигация для подвала"
2126
+
2127
+ # @ virtue
2128
+ #~ msgid "Footer Widget Layout"
2129
+ #~ msgstr "Макет виджета подвала"
2130
+
2131
+ # @ virtue
2132
+ #~ msgid "For support please visit"
2133
+ #~ msgstr "Для получения поддержки перейдите по ссылке"
2134
+
2135
+ # @ virtue
2136
+ #~ msgid "For theme documentation visit"
2137
+ #~ msgstr "Для просмотра документации перейдите по ссылке"
2138
+
2139
+ # @ virtue
2140
+ #~ msgid "Found in your order confirmation email."
2141
+ #~ msgstr "Указан в сообщении о подтверждении заказа."
2142
+
2143
+ # @ virtue
2144
+ #~ msgid "From "
2145
+ #~ msgstr "От"
2146
+
2147
+ # @ virtue
2148
+ #~ msgid "Full"
2149
+ #~ msgstr "Полностью:"
2150
+
2151
+ # @ virtue
2152
+ #~ msgid "Good"
2153
+ #~ msgstr "Хороший"
2154
+
2155
+ # @ virtue
2156
+ #~ msgid "GooglePlus:"
2157
+ #~ msgstr "GooglePlus:"
2158
+
2159
+ # @ virtue
2160
+ #~ msgid "Grid Choice:"
2161
+ #~ msgstr "Выбор таблицы:"
2162
+
2163
+ # @ virtue
2164
+ #~ msgid "H1 Headings"
2165
+ #~ msgstr "Заголовок H1"
2166
+
2167
+ # @ virtue
2168
+ #~ msgid "H2 Headings"
2169
+ #~ msgstr "Заголовок Н2"
2170
+
2171
+ # @ virtue
2172
+ #~ msgid "H3 Headings"
2173
+ #~ msgstr "Заголовок Н3"
2174
+
2175
+ # @ virtue
2176
+ #~ msgid "H4 Headings"
2177
+ #~ msgstr "Заголовок Н4"
2178
+
2179
+ # @ virtue
2180
+ #~ msgid "H5 Headings"
2181
+ #~ msgstr "Заголовок Н5"
2182
+
2183
+ # @ virtue
2184
+ #~ msgid "Header Background"
2185
+ #~ msgstr "Фон заголовков"
2186
+
2187
+ # @ virtue
2188
+ #~ msgid "Hide Details"
2189
+ #~ msgstr "Скрыть подробности"
2190
+
2191
+ # @ virtue
2192
+ #~ msgid "Hide Image Border"
2193
+ #~ msgstr "Скрыть границы изображений"
2194
+
2195
+ # @ virtue
2196
+ #~ msgid "Hints"
2197
+ #~ msgstr "Советы"
2198
+
2199
+ # @ virtue
2200
+ #~ msgid "Home Blog Settings"
2201
+ #~ msgstr "Настройки записей блога для домашней страницы"
2202
+
2203
+ # @ virtue
2204
+ #~ msgid "Home Blog Title"
2205
+ #~ msgstr "Название блога домашней страницы"
2206
+
2207
+ # @ virtue
2208
+ #~ msgid "Home Icon Menu"
2209
+ #~ msgstr "Меню иконок домашней страницы"
2210
+
2211
+ # @ virtue
2212
+ #~ msgid "Home Layout"
2213
+ #~ msgstr "Макет домашней страницы"
2214
+
2215
+ # @ virtue
2216
+ #~ msgid "Home Page Slider Options"
2217
+ #~ msgstr "Настройки слайдера домашней страницы"
2218
+
2219
+ # @ virtue
2220
+ #~ msgid "Home Portfolio Carousel Settings"
2221
+ #~ msgstr "Настройки карусели портфолио для домашней страницы"
2222
+
2223
+ # @ virtue
2224
+ #~ msgid "Home Portfolio Carousel title"
2225
+ #~ msgstr "Заголовок карусели портфолио домашней страницы"
2226
+
2227
+ # @ virtue
2228
+ #~ msgid "How Many Posts Per Page"
2229
+ #~ msgstr "Количество постов на странице"
2230
+
2231
+ # @ virtue
2232
+ #~ msgid "How long for slide transitions, in milliseconds."
2233
+ #~ msgstr "Как долго происходит смена слайдов, миллисекунды."
2234
+
2235
+ # @ virtue
2236
+ #~ msgid "How long to pause on each slide, in milliseconds."
2237
+ #~ msgstr "Как долго отображается один слайд, миллисекунды."
2238
+
2239
+ # @ virtue
2240
+ #~ msgid "How many products per page"
2241
+ #~ msgstr "Количество продуктов на страницу"
2242
+
2243
+ # @ virtue
2244
+ #~ msgid "Icon Menu"
2245
+ #~ msgstr "Меню иконок"
2246
+
2247
+ # @ virtue
2248
+ #~ msgid "If Portfolio - Choose Type (Optional):"
2249
+ #~ msgstr "Если портфолио - выберите тип (опция):"
2250
+
2251
+ # @ virtue
2252
+ #~ msgid "If Post - Choose Category (Optional):"
2253
+ #~ msgstr "Если пост - выберите категорию (опция):"
2254
+
2255
+ # @ virtue
2256
+ #~ msgid ""
2257
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2258
+ #~ "recommended width: 270px for Catalog Images"
2259
+ #~ msgstr ""
2260
+ #~ "Если выключено, размер изображений будет установлен настройками плагина "
2261
+ #~ "WooCommerce на основании рекомендованных: 270 пикселов для изображений в "
2262
+ #~ "каталоге."
2263
+
2264
+ # @ virtue
2265
+ #~ msgid ""
2266
+ #~ "If turned off image dimensions are set by woocommerce settings - "
2267
+ #~ "recommended width: 468px for Single Product Image"
2268
+ #~ msgstr ""
2269
+ #~ "Если выключено, размер изображений будет установлен настройками плагина "
2270
+ #~ "WooCommerce на основании рекомендованных: 486 пикселов для единичного "
2271
+ #~ "изображения продукта."
2272
+
2273
+ # @ virtue
2274
+ #~ msgid ""
2275
+ #~ "If updating from version 1.5.6 or earlier use this script to update your "
2276
+ #~ "theme options."
2277
+ #~ msgstr ""
2278
+ #~ "Если вы обновляетесь с версии 1.5.6 или более ранней, используйте этот "
2279
+ #~ "скрипт для обновления настроек вашей темы."
2280
+
2281
+ # @ virtue
2282
+ #~ msgid "If using a child theme enter child theme folder"
2283
+ #~ msgstr "Если используется дочерняя тема укажите путь к каталогу темы."
2284
+
2285
+ # @ virtue
2286
+ #~ msgid "If you don't want an image slider on your home page choose none."
2287
+ #~ msgstr ""
2288
+ #~ "Если вы не хотите использовать слайдер на домашней странице укажите "
2289
+ #~ "\"никакой\"."
2290
+
2291
+ # @ virtue
2292
+ #~ msgid ""
2293
+ #~ "If your titles are long increase this to help align your products height."
2294
+ #~ msgstr ""
2295
+ #~ "Если названия продуктов длинные, увеличтьте этот параметр для улучшения "
2296
+ #~ "выравнивания высоты продуктов."
2297
+
2298
+ # @ virtue
2299
+ #~ msgid "If your using a video on the home page place video embed code here."
2300
+ #~ msgstr ""
2301
+ #~ "Если вы используете видео на главной странице разместите код "
2302
+ #~ "встраиваемого видео здесь."
2303
+
2304
+ # @ virtue
2305
+ #~ msgid "Instagram:"
2306
+ #~ msgstr "Instagram:"
2307
+
2308
+ # @ virtue
2309
+ #~ msgid "Install"
2310
+ #~ msgstr "Установить"
2311
+
2312
+ # @ virtue
2313
+ #~ msgid "Install Plugins"
2314
+ #~ msgstr "Установить плагины"
2315
+
2316
+ # @ virtue
2317
+ #~ msgid "Install Required Plugins"
2318
+ #~ msgstr "Установите требуемые плагины"
2319
+
2320
+ # @ virtue
2321
+ #~ msgid "Install package not available."
2322
+ #~ msgstr "Пакет установки недоступен."
2323
+
2324
+ # @ virtue
2325
+ #~ msgid "Installed But Not Activated"
2326
+ #~ msgstr "Установлен, но не активирован"
2327
+
2328
+ # @ virtue
2329
+ #~ msgid "Installing Plugin %1$s (%2$d/%3$d)"
2330
+ #~ msgstr "Устанавливаем плагин %1$s (%2$d/%3$d)"
2331
+
2332
+ # @ virtue
2333
+ #~ msgid "Installing Plugin: %s"
2334
+ #~ msgstr "Устанавливаем плагин: %s"
2335
+
2336
+ # @ virtue
2337
+ #~ msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
2338
+ #~ msgstr "Устанавливаем и активируем плагин %1$s (%2$d/%3$d)"
2339
+
2340
+ # @ virtue
2341
+ #~ msgid "Installing the plugin&#8230;"
2342
+ #~ msgstr "Устанавливаем плагин&#8230;"
2343
+
2344
+ # @ virtue
2345
+ #~ msgid "It looks like this was the result of either:"
2346
+ #~ msgstr "Похоже, что это явилось результатом одного из:"
2347
+
2348
+ # @ virtue
2349
+ #~ msgid "Latest Blog Posts"
2350
+ #~ msgstr "Самые свежие записи блога"
2351
+
2352
+ # @ virtue
2353
+ #~ msgid "Latest Post Display"
2354
+ #~ msgstr "Отображение самых свежих записей"
2355
+
2356
+ # @ virtue
2357
+ #~ msgid "Latest Posts"
2358
+ #~ msgstr "Свежие посты"
2359
+
2360
+ # @ virtue
2361
+ #~ msgid "Latest from the Blog"
2362
+ #~ msgstr "Самое новое из блога"
2363
+
2364
+ # @ virtue
2365
+ #~ msgid "Latest posts from"
2366
+ #~ msgstr "Самые свежие посты от"
2367
+
2368
+ # @ virtue
2369
+ #~ msgid "Leave a Reply"
2370
+ #~ msgstr "Оставить ответ"
2371
+
2372
+ # @ virtue
2373
+ #~ msgid "Leave a Reply to %s"
2374
+ #~ msgstr "Оставить ответ на %s"
2375
+
2376
+ # @ virtue
2377
+ #~ msgid "Leave blank to select all"
2378
+ #~ msgstr "Оставьте пустым для отображения всех записей"
2379
+
2380
+ # @ virtue
2381
+ #~ msgid "Leave blank to select all types"
2382
+ #~ msgstr "Оставьте пустым для отображения всех категорий"
2383
+
2384
+ # @ virtue
2385
+ #~ msgid "Left Spacing"
2386
+ #~ msgstr "Отступ логотипа слева"
2387
+
2388
+ # @ virtue
2389
+ #~ msgid "Limit posts to a Category"
2390
+ #~ msgstr "Ограничить записи категорией"
2391
+
2392
+ # @ virtue
2393
+ #~ msgid "Limit to Catagory (Optional):"
2394
+ #~ msgstr "Ограничить категорией (опция):"
2395
+
2396
+ # @ virtue
2397
+ #~ msgid "Linkedin:"
2398
+ #~ msgstr "Linkedin:"
2399
+
2400
+ # @ virtue
2401
+ #~ msgid "Log out &raquo;"
2402
+ #~ msgstr "Выйти &raquo;"
2403
+
2404
+ # @ virtue
2405
+ #~ msgid "Log out of this account"
2406
+ #~ msgstr "Выйти из этой учетной записи"
2407
+
2408
+ # @ virtue
2409
+ #~ msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
2410
+ #~ msgstr "Авторизован как <a href=\"%s/wp-admin/profile.php\">%s</a>."
2411
+
2412
+ # @ virtue
2413
+ #~ msgid "Login"
2414
+ #~ msgstr "Войти"
2415
+
2416
+ # @ virtue
2417
+ #~ msgid "Logo"
2418
+ #~ msgstr "Логотип"
2419
+
2420
+ # @ virtue
2421
+ #~ msgid "Logo Layout"
2422
+ #~ msgstr "Расположение логотипа"
2423
+
2424
+ # @ virtue
2425
+ #~ msgid "Logo Options"
2426
+ #~ msgstr "Настройки логотипа"
2427
+
2428
+ # @ virtue
2429
+ #~ msgid "Logo Spacing"
2430
+ #~ msgstr "Отступы логотипа"
2431
+
2432
+ # @ virtue
2433
+ #~ msgid "Lost Password?"
2434
+ #~ msgstr "Забыли пароль?"
2435
+
2436
+ # @ virtue
2437
+ #~ msgid "Main Content Background"
2438
+ #~ msgstr "Цвет фона основного содержимого"
2439
+
2440
+ # @ virtue
2441
+ #~ msgid "Main Settings"
2442
+ #~ msgstr "Основные настройки"
2443
+
2444
+ # @ virtue
2445
+ #~ msgid "Menu"
2446
+ #~ msgstr "Меню"
2447
+
2448
+ # @ virtue
2449
+ #~ msgid "Menu Settings"
2450
+ #~ msgstr "Настройки меню"
2451
+
2452
+ # @ virtue
2453
+ #~ msgid "Misc Settings"
2454
+ #~ msgstr "Прочие настройки"
2455
+
2456
+ # @ virtue
2457
+ #~ msgid "Mobile Menu Background"
2458
+ #~ msgstr "Фон мобильного меню"
2459
+
2460
+ # @ virtue
2461
+ #~ msgid "Mobile Menu Font"
2462
+ #~ msgstr "Шрифт мобильного меню"
2463
+
2464
+ # @ virtue
2465
+ #~ msgid "Mobile Menu Options"
2466
+ #~ msgstr "Настройки мобильного меню"
2467
+
2468
+ # @ virtue
2469
+ #~ msgid "Mobile Navigation"
2470
+ #~ msgstr "Мобильная навигация"
2471
+
2472
+ # @ virtue
2473
+ #~ msgid "Mobile Slider"
2474
+ #~ msgstr "Мобильный слайдер"
2475
+
2476
+ # @ virtue
2477
+ #~ msgid "Monthly Archives: %s"
2478
+ #~ msgstr "Архивы за месяц: %s"
2479
+
2480
+ # @ virtue
2481
+ #~ msgid "My Account"
2482
+ #~ msgstr "Моя запись"
2483
+
2484
+ # @ virtue
2485
+ #~ msgid "N/A"
2486
+ #~ msgstr "Н/Д"
2487
+
2488
+ # @ virtue
2489
+ #~ msgid "Newer comments &rarr;"
2490
+ #~ msgstr "Более свежие комментарии &rarr; "
2491
+
2492
+ # @ virtue
2493
+ #~ msgid "Newer posts &rarr;"
2494
+ #~ msgstr "Более свежие посты &rarr;"
2495
+
2496
+ # @ virtue
2497
+ #~ msgid "Next Post"
2498
+ #~ msgstr "Следующий пост"
2499
+
2500
+ # @ virtue
2501
+ #~ msgid ""
2502
+ #~ "No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
2503
+ #~ "Dashboard\">Return to the Dashboard</a>"
2504
+ #~ msgstr ""
2505
+ #~ "Не найдено плагинов для установки или активации. <a href=\"%1$s\" title="
2506
+ #~ "\"Return to the Dashboard\">Вернуться в консоль</a>"
2507
+
2508
+ # @ virtue
2509
+ #~ msgid "No products found which match your selection."
2510
+ #~ msgstr "Не найдено ни одного продукта удовлетворяющего критериям выбора."
2511
+
2512
+ # @ virtue
2513
+ #~ msgid "Not Found"
2514
+ #~ msgstr "Не найдено"
2515
+
2516
+ # @ virtue
2517
+ #~ msgid "Not Installed"
2518
+ #~ msgstr "Не установлен"
2519
+
2520
+ # @ virtue
2521
+ #~ msgid "Not that bad"
2522
+ #~ msgstr "Неплохой"
2523
+
2524
+ # @ virtue
2525
+ #~ msgid ""
2526
+ #~ "Note this will hide remove search (you can re-enable it my adding it to "
2527
+ #~ "the widget area)"
2528
+ #~ msgstr ""
2529
+ #~ "Внимание, это скроет (уберет) поле поиска (вы можете его восстановить "
2530
+ #~ "добавив в область виджетов)"
2531
+
2532
+ # @ virtue
2533
+ #~ msgid ""
2534
+ #~ "Note* changes made in options panel will override this stylesheet. "
2535
+ #~ "Example: Colors set in typography."
2536
+ #~ msgstr ""
2537
+ #~ "Внимание: изменения, сделанные в настройках темы имеют больший приоритет "
2538
+ #~ "чем указанные в странице стилей. Например: цвета установленные в разделе "
2539
+ #~ "Типография."
2540
+
2541
+ # @ virtue
2542
+ #~ msgid ""
2543
+ #~ "Note: Shipping and taxes are estimated%s and will be updated during "
2544
+ #~ "checkout based on your billing and shipping information."
2545
+ #~ msgstr ""
2546
+ #~ "Внимание: Доставка и налоги оцениваются в %s и будут обновлены во время "
2547
+ #~ "оформления заказа на основании ваших данных для выставления счета и "
2548
+ #~ "доставки."
2549
+
2550
+ # @ virtue
2551
+ #~ msgid "Note: does not work if images are smaller than max."
2552
+ #~ msgstr ""
2553
+ #~ "Внимание: не используется если размер изображений меньше максимального "
2554
+ #~ "размера слайдера."
2555
+
2556
+ # @ virtue
2557
+ #~ msgid "Number of images to show:"
2558
+ #~ msgstr "Количество отображаемых изображений:"
2559
+
2560
+ # @ virtue
2561
+ #~ msgid "Number of posts to show:"
2562
+ #~ msgstr "Количество отображаемых постов:"
2563
+
2564
+ # @ virtue
2565
+ #~ msgid "Occupation"
2566
+ #~ msgstr "Род занятий"
2567
+
2568
+ # @ virtue
2569
+ #~ msgid "One Response "
2570
+ #~ msgid_plural "%1$s Responses "
2571
+ #~ msgstr[0] "Один ответ"
2572
+ #~ msgstr[1] "%1$s ответа"
2573
+ #~ msgstr[2] "%1$s ответов"
2574
+
2575
+ # @ virtue
2576
+ #~ msgid ""
2577
+ #~ "Only logged in customers who have purchased this product may leave a "
2578
+ #~ "review."
2579
+ #~ msgstr ""
2580
+ #~ "Только авторизованные пользователи, которые приобрели продукт, могут "
2581
+ #~ "оставлять отзыв."
2582
+
2583
+ # @ virtue
2584
+ #~ msgid "Options"
2585
+ #~ msgstr "Опции"
2586
+
2587
+ # @ virtue
2588
+ #~ msgid "Order Again"
2589
+ #~ msgstr "Повторный заказ"
2590
+
2591
+ # @ virtue
2592
+ #~ msgid "Order Details"
2593
+ #~ msgstr "Реквизиты заказа"
2594
+
2595
+ # @ virtue
2596
+ #~ msgid "Order ID"
2597
+ #~ msgstr "ID Заказа"
2598
+
2599
+ # @ virtue
2600
+ #~ msgid "Order Total"
2601
+ #~ msgstr "Итого заказа"
2602
+
2603
+ # @ virtue
2604
+ #~ msgid "Order:"
2605
+ #~ msgstr "Заказ:"
2606
+
2607
+ # @ virtue
2608
+ #~ msgid "Page"
2609
+ #~ msgstr "Страница"
2610
+
2611
+ # @ virtue
2612
+ #~ msgid "Page Content"
2613
+ #~ msgstr "Содержимое страницы"
2614
+
2615
+ # @ virtue
2616
+ #~ msgid "Page Content Options"
2617
+ #~ msgstr "Настройки содержимого страницы"
2618
+
2619
+ # @ virtue
2620
+ #~ msgid "Pages:"
2621
+ #~ msgstr "Страницы:"
2622
+
2623
+ # @ virtue
2624
+ #~ msgid "Pay"
2625
+ #~ msgstr "Оплатить"
2626
+
2627
+ # @ virtue
2628
+ #~ msgid "Payment method:"
2629
+ #~ msgstr "Метод оплаты:"
2630
+
2631
+ # @ virtue
2632
+ #~ msgid "Perfect"
2633
+ #~ msgstr "Замечательный"
2634
+
2635
+ # @ virtue
2636
+ #~ msgid "Pinterest:"
2637
+ #~ msgstr "Pinterest:"
2638
+
2639
+ # @ virtue
2640
+ #~ msgid "Please attempt your purchase again or go to your account page."
2641
+ #~ msgstr ""
2642
+ #~ "Пожалуйста, повторите попытку еще раз или перейдите на страницу настроек "
2643
+ #~ "вашей учетной записи."
2644
+
2645
+ # @ virtue
2646
+ #~ msgid "Please attempt your purchase again."
2647
+ #~ msgstr "Пожалуйста, повторите попытку еще раз."
2648
+
2649
+ # @ virtue
2650
+ #~ msgid "Please enter your Dribbble url. (be sure to include http://)"
2651
+ #~ msgstr ""
2652
+ #~ "Пожалуйста, введите ваш Dribble адрес. (обязательно включайте http://)"
2653
+
2654
+ # @ virtue
2655
+ #~ msgid "Please enter your Facebook url. (be sure to include http://)"
2656
+ #~ msgstr ""
2657
+ #~ "Пожалуйста, введите ваш Facebook адрес. (обязательно включайте http://)"
2658
+
2659
+ # @ virtue
2660
+ #~ msgid "Please enter your Flickr url. (be sure to include http://)"
2661
+ #~ msgstr ""
2662
+ #~ "Пожалуйста, введите ваш Flikr адрес. (обязательно включайте http://)"
2663
+
2664
+ # @ virtue
2665
+ #~ msgid "Please enter your Google Plus url. (be sure to include http://)"
2666
+ #~ msgstr ""
2667
+ #~ "Пожалуйста, введите ваш Google Plus адрес. (обязательно включайте http://)"
2668
+
2669
+ # @ virtue
2670
+ #~ msgid "Please enter your Instagram url. (be sure to include http://)"
2671
+ #~ msgstr ""
2672
+ #~ "Пожалуйста, введите ваш Instagram адрес. (обязательно включайте http://)"
2673
+
2674
+ # @ virtue
2675
+ #~ msgid "Please enter your Linkedin url. (be sure to include http://)"
2676
+ #~ msgstr ""
2677
+ #~ "Пожалуйста, введите ваш Linkedin адрес. (обязательно включайте http://)"
2678
+
2679
+ # @ virtue
2680
+ #~ msgid "Please enter your Occupation."
2681
+ #~ msgstr "Пожалуйста, укажите род ваших занятий."
2682
+
2683
+ # @ virtue
2684
+ #~ msgid "Please enter your Pinterest url. (be sure to include http://)"
2685
+ #~ msgstr ""
2686
+ #~ "Пожалуйста, введите ваш Pinterest адрес. (обязательно включайте http://)"
2687
+
2688
+ # @ virtue
2689
+ #~ msgid "Please enter your Twitter username."
2690
+ #~ msgstr "Пожалуйста, введите ваше Twitter имя."
2691
+
2692
+ # @ virtue
2693
+ #~ msgid "Plugin"
2694
+ #~ msgstr "Плагин"
2695
+
2696
+ # @ virtue
2697
+ #~ msgid "Plugin activated successfully."
2698
+ #~ msgstr "Плагин успешно активирован."
2699
+
2700
+ # @ virtue
2701
+ #~ msgid "Plugin activation failed."
2702
+ #~ msgstr "Неудачная активация плагина."
2703
+
2704
+ # @ virtue
2705
+ #~ msgid "Plugin install failed."
2706
+ #~ msgstr "Неудачная установка плагина."
2707
+
2708
+ # @ virtue
2709
+ #~ msgid "Plugin installed successfully."
2710
+ #~ msgstr "Плагин успешно установлен."
2711
+
2712
+ # @ virtue
2713
+ #~ msgid "Portfolio Carousel Category Type"
2714
+ #~ msgstr "Тип категории для карусели портфолио"
2715
+
2716
+ # @ virtue
2717
+ #~ msgid "Portfolio Carousel Order by"
2718
+ #~ msgstr "Порядок сортировки элементов карусели"
2719
+
2720
+ # @ virtue
2721
+ #~ msgid "Post Slider Images"
2722
+ #~ msgstr "Разместить изображения слайдера"
2723
+
2724
+ # @ virtue
2725
+ #~ msgid "Postcode / Zip"
2726
+ #~ msgstr "Индекс"
2727
+
2728
+ # @ virtue
2729
+ #~ msgid "Posts Carousel"
2730
+ #~ msgstr "Карусель постов"
2731
+
2732
+ # @ virtue
2733
+ #~ msgid "Posts tagged &ldquo;"
2734
+ #~ msgstr "Записи с тэгами &ldquo;"
2735
+
2736
+ # @ virtue
2737
+ #~ msgid "Pre-Packaged"
2738
+ #~ msgstr "Пре-упакованные"
2739
+
2740
+ # @ virtue
2741
+ #~ msgid "Previous Post"
2742
+ #~ msgstr "Предыдущий пост"
2743
+
2744
+ # @ virtue
2745
+ #~ msgid "Price"
2746
+ #~ msgstr "Цена"
2747
+
2748
+ # @ virtue
2749
+ #~ msgid "Primary Menu Font"
2750
+ #~ msgstr "Шрифт главного меню"
2751
+
2752
+ # @ virtue
2753
+ #~ msgid "Primary Menu Options"
2754
+ #~ msgstr "Главное меню"
2755
+
2756
+ # @ virtue
2757
+ #~ msgid "Primary Menu Spacing"
2758
+ #~ msgstr "Отступы Главного меню"
2759
+
2760
+ # @ virtue
2761
+ #~ msgid "Primary Navigation"
2762
+ #~ msgstr "Основная навигация"
2763
+
2764
+ # @ virtue
2765
+ #~ msgid "Primary Sidebar"
2766
+ #~ msgstr "Основная боковая панель"
2767
+
2768
+ # @ virtue
2769
+ #~ msgid "Private Repository"
2770
+ #~ msgstr "Частный репозиторий"
2771
+
2772
+ # @ virtue
2773
+ #~ msgid "Product"
2774
+ #~ msgstr "Продукт"
2775
+
2776
+ # @ virtue
2777
+ #~ msgid "Product Description"
2778
+ #~ msgstr "Описание продукта"
2779
+
2780
+ # @ virtue
2781
+ #~ msgid "Product Image Sizes"
2782
+ #~ msgstr "Размер изображений продуктов"
2783
+
2784
+ # @ virtue
2785
+ #~ msgid "Product Page Settings"
2786
+ #~ msgstr "Настройка страницы продукта"
2787
+
2788
+ # @ virtue
2789
+ #~ msgid "Product title Min Height"
2790
+ #~ msgstr "Минимальная высота заголовка продукта"
2791
+
2792
+ # @ virtue
2793
+ #~ msgid "Products tagged &ldquo;"
2794
+ #~ msgstr "Продукты с тэгами &ldquo;"
2795
+
2796
+ # @ virtue
2797
+ #~ msgid "Quantity"
2798
+ #~ msgstr "Количество"
2799
+
2800
+ # @ virtue
2801
+ #~ msgid "Quickly add some CSS to your theme by adding it to this block."
2802
+ #~ msgstr "Быстро добавьте код CSS к вашей теме добавляя его в этот блок кода."
2803
+
2804
+ # @ virtue
2805
+ #~ msgid "READ MORE"
2806
+ #~ msgstr "Читать далее"
2807
+
2808
+ # @ virtue
2809
+ #~ msgid "RSS:"
2810
+ #~ msgstr "RSS:"
2811
+
2812
+ # @ virtue
2813
+ #~ msgid "Rate&hellip;"
2814
+ #~ msgstr "Рейтинг&hellip;"
2815
+
2816
+ # @ virtue
2817
+ #~ msgid "Rated %d out of 5"
2818
+ #~ msgstr "Рейтинг %d из 5"
2819
+
2820
+ # @ virtue
2821
+ #~ msgid "Rated %s out of 5"
2822
+ #~ msgstr "Рейтинг %s из 5"
2823
+
2824
+ # @ virtue
2825
+ #~ msgid "Recent Posts"
2826
+ #~ msgstr "Свежие посты"
2827
+
2828
+ # @ virtue
2829
+ #~ msgid "Recent Projects"
2830
+ #~ msgstr "Свежие проекты"
2831
+
2832
+ # @ virtue
2833
+ #~ msgid "Recommended"
2834
+ #~ msgstr "Рекомендуемый"
2835
+
2836
+ # @ virtue
2837
+ #~ msgid "Redux Framework"
2838
+ #~ msgstr "Redux Framework"
2839
+
2840
+ # @ virtue
2841
+ #~ msgid "Remove this item"
2842
+ #~ msgstr "Удалить этот элемент"
2843
+
2844
+ # @ virtue
2845
+ #~ msgid "Required"
2846
+ #~ msgstr "Требуемый"
2847
+
2848
+ # @ virtue
2849
+ #~ msgid "Reset All"
2850
+ #~ msgstr "Очистить всё"
2851
+
2852
+ # @ virtue
2853
+ #~ msgid "Return to Required Plugins Installer"
2854
+ #~ msgstr "Вернуться к устанвке необходимых плагинов"
2855
+
2856
+ # @ virtue
2857
+ #~ msgid "Return to the Dashboard"
2858
+ #~ msgstr "Вернуться в консоль"
2859
+
2860
+ # @ virtue
2861
+ #~ msgid "Return to the dashboard"
2862
+ #~ msgstr "Вернуться в консоль"
2863
+
2864
+ # @ virtue
2865
+ #~ msgid "Reviews"
2866
+ #~ msgstr "Отзывы"
2867
+
2868
+ # @ virtue
2869
+ #~ msgid "Right Spacing"
2870
+ #~ msgstr "Отступ логотипа справа"
2871
+
2872
+ # @ virtue
2873
+ #~ msgid "Sale!"
2874
+ #~ msgstr "Распродажа!"
2875
+
2876
+ # @ virtue
2877
+ #~ msgid "Save Changes"
2878
+ #~ msgstr "Сохранить изменения"
2879
+
2880
+ # @ virtue
2881
+ #~ msgid "Search Results for %s"
2882
+ #~ msgstr "Результаты поиска по запросу %s"
2883
+
2884
+ # @ virtue
2885
+ #~ msgid "Search for:"
2886
+ #~ msgstr "Искать:"
2887
+
2888
+ # @ virtue
2889
+ #~ msgid "Search results for &ldquo;"
2890
+ #~ msgstr "Результаты поиска &ldquo;"
2891
+
2892
+ # @ virtue
2893
+ #~ msgid "Secondary Menu Background"
2894
+ #~ msgstr "Фон дополнительного меню"
2895
+
2896
+ # @ virtue
2897
+ #~ msgid "Secondary Menu Font"
2898
+ #~ msgstr "Шрифт дополнительного меню"
2899
+
2900
+ # @ virtue
2901
+ #~ msgid "Secondary Menu Options"
2902
+ #~ msgstr "Настройки дополнительного меню"
2903
+
2904
+ # @ virtue
2905
+ #~ msgid "Secondary Navigation"
2906
+ #~ msgstr "Дополнительная навигация"
2907
+
2908
+ # @ virtue
2909
+ #~ msgid "Section Defaults Restored!"
2910
+ #~ msgstr "Настройки секции восстановлены по умолчанию!"
2911
+
2912
+ # @ virtue
2913
+ #~ msgid "Select Boxed or Wide Site Layout Style"
2914
+ #~ msgstr "Выберите Широкий или Рамочный макет сайта"
2915
+
2916
+ # @ virtue
2917
+ #~ msgid "Select a country&hellip;"
2918
+ #~ msgstr "Выберите страну&hellip;"
2919
+
2920
+ # @ virtue
2921
+ #~ msgid "Select all blog posts or a specific category to show"
2922
+ #~ msgstr "Выберите все посты или категорию постов для отображения"
2923
+
2924
+ # @ virtue
2925
+ #~ msgid "Select how many columns for footer widgets"
2926
+ #~ msgstr "Выберите количество колонок для виджета подвала"
2927
+
2928
+ # @ virtue
2929
+ #~ msgid "Set Product Title to Uppercase?"
2930
+ #~ msgstr "Перевести заголовок продукта в ВЕРХНИЙ РЕГИСТР?"
2931
+
2932
+ # @ virtue
2933
+ #~ msgid "Sets the email for the contact page email form."
2934
+ #~ msgstr "Устанавливает адрес электронной почты для контактной формы."
2935
+
2936
+ # @ virtue
2937
+ #~ msgid "Settings Imported!"
2938
+ #~ msgstr "Настройки импортированы!"
2939
+
2940
+ # @ virtue
2941
+ #~ msgid "Settings Saved!"
2942
+ #~ msgstr "Настройки сохранены!"
2943
+
2944
+ # @ virtue
2945
+ #~ msgid "Settings have changed, you should save them!"
2946
+ #~ msgstr "Настройки изменились, не забудьте их сохранить!"
2947
+
2948
+ # @ virtue
2949
+ #~ msgid "Shipping Address"
2950
+ #~ msgstr "Адрес доставки"
2951
+
2952
+ # @ virtue
2953
+ #~ msgid "Shop"
2954
+ #~ msgstr "Магазин"
2955
+
2956
+ # @ virtue
2957
+ #~ msgid "Shop & archive Product title Font"
2958
+ #~ msgstr "Шрифт заголовков страниц Магазина и Продуктов"
2959
+
2960
+ # @ virtue
2961
+ #~ msgid "Shop Archive Page Settings"
2962
+ #~ msgstr "Настройки архива Магазина"
2963
+
2964
+ # @ virtue
2965
+ #~ msgid "Shop Product Title Settings"
2966
+ #~ msgstr "Настройки заголовка Продукта"
2967
+
2968
+ # @ virtue
2969
+ #~ msgid "Shop Settings"
2970
+ #~ msgstr "Настройки Магазина"
2971
+
2972
+ # @ virtue
2973
+ #~ msgid "Should be twice the pixel size of your normal logo."
2974
+ #~ msgstr ""
2975
+ #~ "Должен быть в два раза большего размера в пикселах, чем нормальный логотип"
2976
+
2977
+ # @ virtue
2978
+ #~ msgid "Show Author Icon with posts?"
2979
+ #~ msgstr "Отображать иконку автора в записях?"
2980
+
2981
+ # @ virtue
2982
+ #~ msgid "Show Captions?"
2983
+ #~ msgstr "Отображать подписи?"
2984
+
2985
+ # @ virtue
2986
+ #~ msgid "Show Cart total in topbar?"
2987
+ #~ msgstr "Показывать общие данные корзины в меню чердака?"
2988
+
2989
+ # @ virtue
2990
+ #~ msgid "Show Comments Closed Text?"
2991
+ #~ msgstr "Отображать текст \"Комментарии закрыты\"?"
2992
+
2993
+ # @ virtue
2994
+ #~ msgid "Show Details"
2995
+ #~ msgstr "Показать подробности"
2996
+
2997
+ # @ virtue
2998
+ #~ msgid "Show Previous and Next posts links?"
2999
+ #~ msgstr "Отображать ссылки на предыдущие и последующие посты?"
3000
+
3001
+ # @ virtue
3002
+ #~ msgid "Show Ratings in Shop and Category Pages"
3003
+ #~ msgstr "Отображать рейтинг на страницах Магазина и Каталога"
3004
+
3005
+ # @ virtue
3006
+ #~ msgid "Showing all %d results"
3007
+ #~ msgstr "Все %d результаты"
3008
+
3009
+ # @ virtue
3010
+ #~ msgid "Showing the single result"
3011
+ #~ msgstr "Единственный результат"
3012
+
3013
+ # @ virtue
3014
+ #~ msgid "Sidebar Options"
3015
+ #~ msgstr "Опции боковой панели"
3016
+
3017
+ # @ virtue
3018
+ #~ msgid "Similar Posts"
3019
+ #~ msgstr "Подобные посты"
3020
+
3021
+ # @ virtue
3022
+ #~ msgid "Simple way to add Social Icons"
3023
+ #~ msgstr "Простой способ добавить иконки соцсетей"
3024
+
3025
+ # @ virtue
3026
+ #~ msgid "Site Layout Style"
3027
+ #~ msgstr "Стиль конфигурации сайта"
3028
+
3029
+ # @ virtue
3030
+ #~ msgid "Site Tagline - Below Logo\""
3031
+ #~ msgstr "Описание сайта - размещается под логотипом \""
3032
+
3033
+ # @ virtue
3034
+ #~ msgid "Site Tagline Font"
3035
+ #~ msgstr "Шрифт описания сайта"
3036
+
3037
+ # @ virtue
3038
+ #~ msgid "Sitename Logo Font"
3039
+ #~ msgstr "Шрифт логотипа названия сайта"
3040
+
3041
+ # @ virtue
3042
+ #~ msgid "Sitewide Banner"
3043
+ #~ msgstr "Баннер для размещения на всем сайте"
3044
+
3045
+ # @ virtue
3046
+ #~ msgid "Sitewide Gray Fonts"
3047
+ #~ msgstr "Серые шрифты для сайта"
3048
+
3049
+ # @ virtue
3050
+ #~ msgid "Slider Max Height"
3051
+ #~ msgstr "Максимальная высота слайдера"
3052
+
3053
+ # @ virtue
3054
+ #~ msgid "Slider Pause Time"
3055
+ #~ msgstr "Время паузы слайдера"
3056
+
3057
+ # @ virtue
3058
+ #~ msgid "Slider Settings"
3059
+ #~ msgstr "Настройки слайдера"
3060
+
3061
+ # @ virtue
3062
+ #~ msgid "Slider Transition Time"
3063
+ #~ msgstr "Время перехода"
3064
+
3065
+ # @ virtue
3066
+ #~ msgid "Something went wrong with the plugin API."
3067
+ #~ msgstr "Что-то пошло не так с API плагина."
3068
+
3069
+ # @ virtue
3070
+ #~ msgid "Something went wrong."
3071
+ #~ msgstr "Что-то пошло не так."
3072
+
3073
+ # @ virtue
3074
+ #~ msgid "Sorry, but the page you were trying to view does not exist."
3075
+ #~ msgstr ""
3076
+ #~ "Приносим извинения, но страница, которую вы пытаетесь просмотреть, не "
3077
+ #~ "существует."
3078
+
3079
+ # @ virtue
3080
+ #~ msgid "Sorry, no blog entries found."
3081
+ #~ msgstr "Приносим извинения, записи блога не найдены."
3082
+
3083
+ # @ virtue
3084
+ #~ msgid "Sorry, no portfolio entries found."
3085
+ #~ msgstr "Извините, записей портфолио не найдено."
3086
+
3087
+ # @ virtue
3088
+ #~ msgid ""
3089
+ #~ "Sorry, no products matched your selection. Please choose a different "
3090
+ #~ "combination."
3091
+ #~ msgstr ""
3092
+ #~ "Приносим извинения, нет товаров, соответствующих вашему выбору. "
3093
+ #~ "Пожалуйста, выберите другую комбинацию."
3094
+
3095
+ # @ virtue
3096
+ #~ msgid "Sorry, no results were found."
3097
+ #~ msgstr "Приносим извинения, результаты не найдены."
3098
+
3099
+ # @ virtue
3100
+ #~ msgid ""
3101
+ #~ "Sorry, this product is unavailable. Please choose a different combination."
3102
+ #~ msgstr ""
3103
+ #~ "Приносим извинения, этот товар не доступен. Пожалуйцста, выберите другую "
3104
+ #~ "комбинацию."
3105
+
3106
+ # @ virtue
3107
+ #~ msgid "Sort by average rating"
3108
+ #~ msgstr "По среднему рейтингу"
3109
+
3110
+ # @ virtue
3111
+ #~ msgid "Sort by newness"
3112
+ #~ msgstr "По новизне"
3113
+
3114
+ # @ virtue
3115
+ #~ msgid "Sort by popularity"
3116
+ #~ msgstr "По полулярности"
3117
+
3118
+ # @ virtue
3119
+ #~ msgid "Sort by price: high to low"
3120
+ #~ msgstr "По цене: сначала дорогие"
3121
+
3122
+ # @ virtue
3123
+ #~ msgid "Sort by price: low to high"
3124
+ #~ msgstr "По цене: сначала дешевые"
3125
+
3126
+ # @ virtue
3127
+ #~ msgid "Source"
3128
+ #~ msgstr "Исходник"
3129
+
3130
+ # @ virtue
3131
+ #~ msgid "State / county"
3132
+ #~ msgstr "Страна"
3133
+
3134
+ # @ virtue
3135
+ #~ msgid "State/Region:"
3136
+ #~ msgstr "Область/Регион:"
3137
+
3138
+ # @ virtue
3139
+ #~ msgid "Status"
3140
+ #~ msgstr "Статус"
3141
+
3142
+ # @ virtue
3143
+ #~ msgid "Street Address:"
3144
+ #~ msgstr "Адрес:"
3145
+
3146
+ # @ virtue
3147
+ #~ msgid "Submit Comment"
3148
+ #~ msgstr "Добавить комментарий"
3149
+
3150
+ # @ virtue
3151
+ #~ msgid "Summary"
3152
+ #~ msgstr "Краткое содержание"
3153
+
3154
+ # @ virtue
3155
+ #~ msgid "System Info"
3156
+ #~ msgstr "Системная информация"
3157
+
3158
+ # @ virtue
3159
+ #~ msgid "Telephone:"
3160
+ #~ msgstr "Телефон:"
3161
+
3162
+ # @ virtue
3163
+ #~ msgid "Text"
3164
+ #~ msgstr "Текст"
3165
+
3166
+ # @ virtue
3167
+ #~ msgid ""
3168
+ #~ "Thank you for using the Virtue Theme by <a href=\"http://kadencethemes."
3169
+ #~ "com/\" target=\"_blank\">Kadence Themes</a>."
3170
+ #~ msgstr ""
3171
+ #~ "Благодарим вас за использование Virtue Theme by <a href=\"http://"
3172
+ #~ "kadencethemes.com/\" target=\"_blank\">Kadence Themes</a>."
3173
+
3174
+ # @ virtue
3175
+ #~ msgid "Thank you. Your order has been received."
3176
+ #~ msgstr "Спасибо! Ваш заказ принят."
3177
+
3178
+ # @ virtue
3179
+ #~ msgid "The following plugin was activated successfully:"
3180
+ #~ msgid_plural "The following plugins were activated successfully:"
3181
+ #~ msgstr[0] "Следующий плагин успешно активирован:"
3182
+ #~ msgstr[1] "Следующие плагины успешно активированы:"
3183
+ #~ msgstr[2] "Следующие плагины успешно активированы:"
3184
+
3185
+ # @ virtue
3186
+ #~ msgid ""
3187
+ #~ "The installation and activation process is starting. This process may "
3188
+ #~ "take a while on some hosts, so please be patient."
3189
+ #~ msgstr ""
3190
+ #~ "Начинается процесс установки и активации. Это может занять "
3191
+ #~ "продолжительное время на некоторых системах, пожалуйста, подождите."
3192
+
3193
+ # @ virtue
3194
+ #~ msgid "The installation of %1$s failed."
3195
+ #~ msgstr "Установка %1$s завершилась неудачно."
3196
+
3197
+ # @ virtue
3198
+ #~ msgid ""
3199
+ #~ "The installation process is starting. This process may take a while on "
3200
+ #~ "some hosts, so please be patient."
3201
+ #~ msgstr ""
3202
+ #~ "Начинается процесс установки. Это может занять продолжительное время на "
3203
+ #~ "некоторых системах, пожалуйста, подождите."
3204
+
3205
+ # @ virtue
3206
+ #~ msgid "Theme Options"
3207
+ #~ msgstr "Настройки темы"
3208
+
3209
+ # @ virtue
3210
+ #~ msgid "Theme Skin Stylesheet"
3211
+ #~ msgstr "Страница стилей скина темы"
3212
+
3213
+ # @ virtue
3214
+ #~ msgid "Theme Update Import"
3215
+ #~ msgstr "Импорт обновлений темы"
3216
+
3217
+ # @ virtue
3218
+ #~ msgid "There are no previous options"
3219
+ #~ msgstr "Нет ранее сохраненных настроек"
3220
+
3221
+ # @ virtue
3222
+ #~ msgid "This allows for an image and a simple about text."
3223
+ #~ msgstr "Позволяет разместить изображение и краткое текстовое описание."
3224
+
3225
+ # @ virtue
3226
+ #~ msgid "This determines if a slider automatically scrolls"
3227
+ #~ msgstr "Это определеяет, прокручивается ли слайдер автоматически."
3228
+
3229
+ # @ virtue
3230
+ #~ msgid "This determines if product tabs are displayed"
3231
+ #~ msgstr "Это определяет будут ли отображаться закладки для продуктов"
3232
+
3233
+ # @ virtue
3234
+ #~ msgid ""
3235
+ #~ "This determines if the rating is displayed in the product archive pages"
3236
+ #~ msgstr ""
3237
+ #~ "Это определяет будет ли отображаться рейтинг на странице архива Продуктов"
3238
+
3239
+ # @ virtue
3240
+ #~ msgid "This determines if there is a sidebar on the home page."
3241
+ #~ msgstr ""
3242
+ #~ "Это определяет будет ли отображаться боковая панель на домашней странице."
3243
+
3244
+ # @ virtue
3245
+ #~ msgid ""
3246
+ #~ "This determines if there is a sidebar on the shop and category pages."
3247
+ #~ msgstr ""
3248
+ #~ "Это определяет будет ли отображаться боковая панель на страницах Магазина "
3249
+ #~ "и Каталога."
3250
+
3251
+ # @ virtue
3252
+ #~ msgid "This determines related products are displayed"
3253
+ #~ msgstr "Это определяет будут ли отображаться связанные продукты"
3254
+
3255
+ # @ virtue
3256
+ #~ msgid "This is used for hover effects"
3257
+ #~ msgstr "Этот цвет используется для эффекта подсветки при наведении курсора"
3258
+
3259
+ # @ virtue
3260
+ #~ msgid "This makes your product titles uppercase on Category pages"
3261
+ #~ msgstr ""
3262
+ #~ "Это приведет к отображению заголовков продуктов в Каталоге в ВЕРХНЕМ "
3263
+ #~ "РЕГИСТРЕ."
3264
+
3265
+ # @ virtue
3266
+ #~ msgid "This moves the left items to the right and right items to the left."
3267
+ #~ msgstr "Это поменяет местами правые и левые элементы."
3268
+
3269
+ # @ virtue
3270
+ #~ msgid "This only works if using woocommerce"
3271
+ #~ msgstr "Эта опция работает только с плагином WooCommerce"
3272
+
3273
+ # @ virtue
3274
+ #~ msgid "This product is currently out of stock and unavailable."
3275
+ #~ msgstr "Этот товар на данный момент отсутствует и недоступен."
3276
+
3277
+ # @ virtue
3278
+ #~ msgid ""
3279
+ #~ "This sets the link in every single portfolio page. *note: You still have "
3280
+ #~ "to set the page template to portfolio."
3281
+ #~ msgstr ""
3282
+ #~ "Это установит ссылку на всех страницах каждого элемента портфолио. "
3283
+ #~ "Внимание: вам все равно необходимо установить шаблон страницы для "
3284
+ #~ "портфолио."
3285
+
3286
+ # @ virtue
3287
+ #~ msgid ""
3288
+ #~ "This shows a grid of featured images from recent posts or portfolio items"
3289
+ #~ msgstr ""
3290
+ #~ "Это создаст таблицу изображений из свежих постов или элементов портфолио"
3291
+
3292
+ # @ virtue
3293
+ #~ msgid "This shows the most recent posts on your site with a thumbnail"
3294
+ #~ msgstr "Показывает наиболее свежие посты на вашем сайте с миниатюрой"
3295
+
3296
+ # @ virtue
3297
+ #~ msgid "This theme was developed by"
3298
+ #~ msgstr "Эта тема была разработана"
3299
+
3300
+ # @ virtue
3301
+ #~ msgid "Title:"
3302
+ #~ msgstr "Заголовок:"
3303
+
3304
+ # @ virtue
3305
+ #~ msgid ""
3306
+ #~ "To track your order please enter your Order ID in the box below and press "
3307
+ #~ "return. This was given to you on your receipt and in the confirmation "
3308
+ #~ "email you should have received."
3309
+ #~ msgstr ""
3310
+ #~ "Для отслеживания статуса вашего заказа укажите ID Заказа и нажмите Enter. "
3311
+ #~ "ID Заказа был присвоен при его оформлении и отправлен вам вместе с "
3312
+ #~ "подтверждением заказа по электронной почте."
3313
+
3314
+ # @ virtue
3315
+ #~ msgid "Top Spacing"
3316
+ #~ msgstr "Отступ логотипа сверху"
3317
+
3318
+ # @ virtue
3319
+ #~ msgid "Topbar Background"
3320
+ #~ msgstr "Фон чердака"
3321
+
3322
+ # @ virtue
3323
+ #~ msgid "Topbar Icon Menu"
3324
+ #~ msgstr "Меню иконок чердака"
3325
+
3326
+ # @ virtue
3327
+ #~ msgid "Topbar Layout Switch"
3328
+ #~ msgstr "Переключатель макета чердака"
3329
+
3330
+ # @ virtue
3331
+ #~ msgid "Topbar Navigation"
3332
+ #~ msgstr "Навигация для чердака"
3333
+
3334
+ # @ virtue
3335
+ #~ msgid "Topbar Settings"
3336
+ #~ msgstr "Настройки чердака"
3337
+
3338
+ # @ virtue
3339
+ #~ msgid "Topbar Widget"
3340
+ #~ msgstr "Виджеты чердака"
3341
+
3342
+ # @ virtue
3343
+ #~ msgid "Total"
3344
+ #~ msgstr "Итого"
3345
+
3346
+ # @ virtue
3347
+ #~ msgid "Total:"
3348
+ #~ msgstr "Итого:"
3349
+
3350
+ # @ virtue
3351
+ #~ msgid "Track"
3352
+ #~ msgstr "Отследить"
3353
+
3354
+ # @ virtue
3355
+ #~ msgid "Transition Type"
3356
+ #~ msgstr "Тип перехода."
3357
+
3358
+ # @ virtue
3359
+ #~ msgid "Tumblr:"
3360
+ #~ msgstr "Tumblr"
3361
+
3362
+ # @ virtue
3363
+ #~ msgid "Turn on and save to start script"
3364
+ #~ msgstr "Включите и сохраните для запуска скрипта."
3365
+
3366
+ # @ virtue
3367
+ #~ msgid "Turn on to allow Comments on Portfolio posts"
3368
+ #~ msgstr ""
3369
+ #~ "Включите, чтобы разрешить комментарии на страницах элементов портфолио."
3370
+
3371
+ # @ virtue
3372
+ #~ msgid "Twitter:"
3373
+ #~ msgstr "Twitter:"
3374
+
3375
+ # @ virtue
3376
+ #~ msgid "Type new sidebar name into textbox"
3377
+ #~ msgstr "Введите название новой боковой панели в поле"
3378
+
3379
+ # @ virtue
3380
+ #~ msgid "Typography"
3381
+ #~ msgstr "Типография"
3382
+
3383
+ # @ virtue
3384
+ #~ msgid ""
3385
+ #~ "Unfortunately your order cannot be processed as the originating bank/"
3386
+ #~ "merchant has declined your transaction."
3387
+ #~ msgstr ""
3388
+ #~ "К сожалению, ваш заказ не может быть обработан, поскольку ваш банк / "
3389
+ #~ "платежный агент отказал в проведении операции."
3390
+
3391
+ # @ virtue
3392
+ #~ msgid "Unpacking the package&#8230;"
3393
+ #~ msgstr "Распаковываем пакет&#8230;"
3394
+
3395
+ # @ virtue
3396
+ #~ msgid "Update Cart"
3397
+ #~ msgstr "Обновить корзину"
3398
+
3399
+ # @ virtue
3400
+ #~ msgid "Upload"
3401
+ #~ msgstr "Загрузить"
3402
+
3403
+ # @ virtue
3404
+ #~ msgid "Upload Your @2x Logo for Retina Screens"
3405
+ #~ msgstr "Загрузите ваш логотип @2x для Retina дисплеев"
3406
+
3407
+ # @ virtue
3408
+ #~ msgid ""
3409
+ #~ "Upload a 16px x 16px png/gif/ico image that will represent your website "
3410
+ #~ "favicon."
3411
+ #~ msgstr ""
3412
+ #~ "Загрузите изображение размера 16х16 в формате png/gif/ico для "
3413
+ #~ "использования в качестве иконки вашего сайта."
3414
+
3415
+ # @ virtue
3416
+ #~ msgid "Upload a banner for bottom of header."
3417
+ #~ msgstr "Загрузите баннер для размещения в нижней части области заголоков"
3418
+
3419
+ # @ virtue
3420
+ #~ msgid "Upload background image or texture"
3421
+ #~ msgstr "Загрузите фоновое изображение или текстуру"
3422
+
3423
+ # @ virtue
3424
+ #~ msgid "Upload your Logo. If left blank theme will use site name."
3425
+ #~ msgstr ""
3426
+ #~ "Загрузите ваш логотип. Если его нет, тема будет использовать название "
3427
+ #~ "сайта в качестве логотипа."
3428
+
3429
+ # @ virtue
3430
+ #~ msgid "Use Topbar Icon Menu?"
3431
+ #~ msgstr "Использовать иконное меню чердака?"
3432
+
3433
+ # @ virtue
3434
+ #~ msgid "Use Topbar?"
3435
+ #~ msgstr "Использовать чердак?"
3436
+
3437
+ # @ virtue
3438
+ #~ msgid "Use large images for best results."
3439
+ #~ msgstr "Используйте крупные изображения для лучших результатов."
3440
+
3441
+ # @ virtue
3442
+ #~ msgid "Use this widget to add a Vcard to your site"
3443
+ #~ msgstr "Используйте этот виджет для добавления VCard на ваш сайт"
3444
+
3445
+ # @ virtue
3446
+ #~ msgid "Username or email"
3447
+ #~ msgstr "Имя пользователя или адрес электронной почты"
3448
+
3449
+ # @ virtue
3450
+ #~ msgid "VK:"
3451
+ #~ msgstr "ВКонтакте:"
3452
+
3453
+ # @ virtue
3454
+ #~ msgid "Very Poor"
3455
+ #~ msgstr "Очень плохой"
3456
+
3457
+ # @ virtue
3458
+ #~ msgid "View your shopping cart"
3459
+ #~ msgstr "Посмотреть вашу корзину"
3460
+
3461
+ # @ virtue
3462
+ #~ msgid "Virtue: About with Image"
3463
+ #~ msgstr "Virtue: О себе с изображением"
3464
+
3465
+ # @ virtue
3466
+ #~ msgid "Virtue: Contact/Vcard"
3467
+ #~ msgstr "Virtue: Контакт/Vcard"
3468
+
3469
+ # @ virtue
3470
+ #~ msgid "Virtue: Image Grid"
3471
+ #~ msgstr "Virtue: таблица изображений"
3472
+
3473
+ # @ virtue
3474
+ #~ msgid "Virtue: Recent Posts"
3475
+ #~ msgstr "Virtue: свежие посты"
3476
+
3477
+ # @ virtue
3478
+ #~ msgid "Virtue: Social Links"
3479
+ #~ msgstr "Virtue: Ссылки соцсетей"
3480
+
3481
+ # @ virtue
3482
+ #~ msgid ""
3483
+ #~ "Warning- This options panel will not work properly without javascript!"
3484
+ #~ msgstr ""
3485
+ #~ "Внимание! Эта панель настроек не будет работать корректно без "
3486
+ #~ "подключенного JavaScript!"
3487
+
3488
+ # @ virtue
3489
+ #~ msgid "Website"
3490
+ #~ msgstr "Сайт"
3491
+
3492
+ # @ virtue
3493
+ #~ msgid "Welcome to Virtue Theme Options"
3494
+ #~ msgstr "Добро пожаловать в настройки темы Virtue Theme"
3495
+
3496
+ # @ virtue
3497
+ #~ msgid "WordPress Repository"
3498
+ #~ msgstr "Репозиторий WordPress"
3499
+
3500
+ # @ virtue
3501
+ #~ msgid "Wordpress Galleries"
3502
+ #~ msgstr "Галереи WordPress"
3503
+
3504
+ # @ virtue
3505
+ #~ msgid "Working..."
3506
+ #~ msgstr "Выполняется..."
3507
+
3508
+ # @ virtue
3509
+ #~ msgid "Would you like to use this feature?"
3510
+ #~ msgstr "Хотите использовать эту возможность?"
3511
+
3512
+ # @ virtue
3513
+ #~ msgid ""
3514
+ #~ "Write your own copyright text here. You can use the following shortcodes "
3515
+ #~ "in your footer text: [copyright] [site-name] [the-year]"
3516
+ #~ msgstr ""
3517
+ #~ "Напишите свой текст сообщения об авторских правах. Вы можете использовать "
3518
+ #~ "следующие макросы для вашего текста: [copyright] [site-name] [the-year]"
3519
+
3520
+ # @ virtue
3521
+ #~ msgid "X image placement options"
3522
+ #~ msgstr "Настройка по горизонтали - X"
3523
+
3524
+ # @ virtue
3525
+ #~ msgid "Y image placement options"
3526
+ #~ msgstr "Настройка по верикали - Y"
3527
+
3528
+ # @ virtue
3529
+ #~ msgid "Yearly Archives: %s"
3530
+ #~ msgstr "Годовые архивы: %s"
3531
+
3532
+ # @ virtue
3533
+ #~ msgid "Yes - Display Recent Posts"
3534
+ #~ msgstr "Да - отображать недавние посты"
3535
+
3536
+ # @ virtue
3537
+ #~ msgid "Yes - Display Similar Posts"
3538
+ #~ msgstr "Да - отображать похожие посты"
3539
+
3540
+ # @ virtue
3541
+ #~ msgid ""
3542
+ #~ "You have changes that are not saved. Would you like to save them now?"
3543
+ #~ msgstr "У вас есть несохраненные изменения. Хотите сохранить их сейчас?"
3544
+
3545
+ # @ virtue
3546
+ #~ msgid "You may be interested in&hellip;"
3547
+ #~ msgstr "Вас также может заинтересовать&hellip;"
3548
+
3549
+ # @ virtue
3550
+ #~ msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
3551
+ #~ msgstr ""
3552
+ #~ "Вы должны быть <a href=\"%s\">авторизованы</a>, чтобы оставлять "
3553
+ #~ "комментарии."
3554
+
3555
+ # @ virtue
3556
+ #~ msgid "Your Cart"
3557
+ #~ msgstr "Ваша корзина"
3558
+
3559
+ # @ virtue
3560
+ #~ msgid "Your Review"
3561
+ #~ msgstr "Ваш отзыв"
3562
+
3563
+ # @ virtue
3564
+ #~ msgid "Your comment is awaiting approval"
3565
+ #~ msgstr "Ваш комментарий ожидает одобрения"
3566
+
3567
+ # @ virtue
3568
+ #~ msgid "Your comment is awaiting moderation."
3569
+ #~ msgstr "Ваш комментарий ожидает модерации."
3570
+
3571
+ # @ virtue
3572
+ #~ msgid ""
3573
+ #~ "Your current options will be replaced with the values of this preset. "
3574
+ #~ "Would you like to proceed?"
3575
+ #~ msgstr ""
3576
+ #~ "Ваши текущие настройки будут заменены значениями по умолчанию. Продолжить?"
3577
+
3578
+ # @ virtue
3579
+ #~ msgid "Youtube:"
3580
+ #~ msgstr "Youtube:"
3581
+
3582
+ # @ virtue
3583
+ #~ msgid "Zipcode/Postal Code:"
3584
+ #~ msgstr "Почтовый индекс:"
3585
+
3586
+ # @ virtue
3587
+ #~ msgid "a mistyped address"
3588
+ #~ msgstr "опечатка в адресе"
3589
+
3590
+ # @ virtue
3591
+ #~ msgid "an out-of-date link"
3592
+ #~ msgstr "просроченная ссылка"
3593
+
3594
+ # @ virtue
3595
+ #~ msgid "by"
3596
+ #~ msgstr "кем"
3597
+
3598
+ # @ virtue
3599
+ #~ msgid "error(s) were found!"
3600
+ #~ msgstr "ошибка(и)!"
3601
+
3602
+ # @ virtue
3603
+ #~ msgid "ex. Similar Posts"
3604
+ #~ msgstr "например, Похожие посты"
3605
+
3606
+ # @ virtue
3607
+ #~ msgid "ex: Latest from the blog"
3608
+ #~ msgstr "например: Самое свежее из нашего блога"
3609
+
3610
+ # @ virtue
3611
+ #~ msgid "ex: Portfolio Carousel title"
3612
+ #~ msgstr "например: Наше портфолио"
3613
+
3614
+ # @ virtue
3615
+ #~ msgid "on Dribbble"
3616
+ #~ msgstr "на Dribbble"
3617
+
3618
+ # @ virtue
3619
+ #~ msgid "on Facebook"
3620
+ #~ msgstr "на Facebook"
3621
+
3622
+ # @ virtue
3623
+ #~ msgid "on Flickr"
3624
+ #~ msgstr "на Flickr"
3625
+
3626
+ # @ virtue
3627
+ #~ msgid "on Google Plus"
3628
+ #~ msgstr "на Google Plus"
3629
+
3630
+ # @ virtue
3631
+ #~ msgid "on Instagram"
3632
+ #~ msgstr "на Instagram"
3633
+
3634
+ # @ virtue
3635
+ #~ msgid "on Pinterest"
3636
+ #~ msgstr "на Pinterest"
3637
+
3638
+ # @ virtue
3639
+ #~ msgid "on Twitter"
3640
+ #~ msgstr "на Twitter"
3641
+
3642
+ # @ virtue
3643
+ #~ msgid "on Vimeo"
3644
+ #~ msgstr "на Vimeo"
3645
+
3646
+ # @ virtue
3647
+ #~ msgid "on linkedin"
3648
+ #~ msgstr "на linkedin"
3649
+
3650
+ # @ virtue
3651
+ #~ msgid "out of 5"
3652
+ #~ msgstr "из 5"
3653
+
3654
+ # @ virtue
3655
+ #~ msgid "posted in:"
3656
+ #~ msgstr "размещено в:"
3657
+
3658
+ # @ virtue
3659
+ #~ msgid "vCard"
3660
+ #~ msgstr "vCard"
3661
+
3662
+ # @ virtue
3663
+ #~ msgid "verified owner"
3664
+ #~ msgstr "подтвержденный владелец"
3665
+
3666
+ # @ virtue
3667
+ #~ msgid "warning(s) were found!"
3668
+ #~ msgstr "предупреждение(ия)!"
3669
+
3670
+ # @ virtue
3671
+ #~ msgid "| (Edit)"
3672
+ #~ msgstr "| (Изменить)"
metaboxes.php ADDED
@@ -0,0 +1,1122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Build Metaboxs for gallery
3
+ function kad_gallery_field( $field, $meta ) {
4
+ echo '<div class="kad-gallery kad_widget_image_gallery">';
5
+ echo '<div class="gallery_images">';
6
+ $attachments = array_filter( explode( ',', $meta ) );
7
+ if ( $attachments )
8
+ foreach ( $attachments as $attachment_id ) {
9
+ $img = wp_get_attachment_image_src($attachment_id, 'thumbnail');
10
+ $imgfull = wp_get_attachment_image_src($attachment_id, 'full');
11
+ echo '<a class="of-uploaded-image" target="_blank" rel="external" href="' . esc_url($imgfull[0]) . '">';
12
+ echo '<img class="gallery-widget-image" id="gallery_widget_image_'.esc_attr($attachment_id). '" src="' . esc_url($img[0]) . '" />';
13
+ echo '</a>';
14
+ }
15
+ echo '</div>';
16
+ echo ' <input type="hidden" id="' . esc_attr($field['id']) . '" name="' . esc_attr($field['id']) . '" class="gallery_values" value="' . esc_attr($meta) . '" />';
17
+ echo '<a href="#" onclick="return false;" id="edit-gallery" class="gallery-attachments button button-primary">' . __('Add/Edit Gallery', 'kadencetoolkit') . '</a>';
18
+ echo '<a href="#" onclick="return false;" id="clear-gallery" class="gallery-attachments button">' . __('Clear Gallery', 'kadencetoolkit') . '</a>';
19
+ echo '</div>';
20
+
21
+ if ( ! empty( $field['desc'] ) ) echo '<p class="cmb_metabox_description">' . $field['desc'] . '</p>';
22
+ }
23
+ add_filter( 'cmb_render_kad_gallery', 'kad_gallery_field', 10, 2 );
24
+
25
+ function kad_gallery_field_sanitise( $field, $meta ) {
26
+ if ( empty( $meta ) ) {
27
+ $meta = '';
28
+ } else {
29
+ $meta = $meta;
30
+ }
31
+ return $meta;
32
+ }
33
+ $the_theme = wp_get_theme();
34
+ if( ($the_theme->get( 'Name' ) == 'Pinnacle' || $the_theme->get( 'Template') == 'pinnacle') && ( $the_theme->get( 'Version') >= '1.0.6' ) ) {
35
+ add_filter( 'cmb_meta_boxes', 'kadence_pinnacletoolkit_metaboxes', 100 );
36
+ }
37
+
38
+ function kadence_pinnacletoolkit_metaboxes( array $meta_boxes ) {
39
+
40
+ // Start with an underscore to hide fields from custom fields list
41
+ $prefix = '_kad_';
42
+ $meta_boxes[] = array(
43
+ 'id' => 'subtitle_metabox',
44
+ 'title' => __( "Page Title and Subtitle", 'kadencetoolkit' ),
45
+ 'pages' => array( 'page' ), // Post type
46
+ 'context' => 'normal',
47
+ 'priority' => 'default',
48
+ 'show_names' => true, // Show field names on the left
49
+ 'fields' => array(
50
+ array(
51
+ 'name' => __( "Subtitle", 'kadencetoolkit' ),
52
+ 'desc' => __( "Subtitle will go below page title", 'kadencetoolkit' ),
53
+ 'id' => $prefix . 'subtitle',
54
+ 'type' => 'textarea_code',
55
+ ),
56
+ array(
57
+ 'name' => __("Hide Page Title", 'kadencetoolkit' ),
58
+ 'desc' => '',
59
+ 'id' => $prefix . 'pagetitle_hide',
60
+ 'type' => 'select',
61
+ 'options' => array(
62
+ array( 'name' => __("Default", 'kadencetoolkit' ), 'value' => 'default', ),
63
+ array( 'name' => __("Show", 'kadencetoolkit' ), 'value' => 'show', ),
64
+ array( 'name' => __("Hide", 'kadencetoolkit' ), 'value' => 'hide', ),
65
+ ),
66
+ ),
67
+ array(
68
+ 'name' => __("Page Title background behind Header", 'kadencetoolkit' ),
69
+ 'desc' => '',
70
+ 'id' => $prefix . 'pagetitle_behind_head',
71
+ 'type' => 'select',
72
+ 'options' => array(
73
+ array( 'name' => __("Default", 'kadencetoolkit' ), 'value' => 'default', ),
74
+ array( 'name' => __("Place behind Header", 'kadencetoolkit' ), 'value' => 'true', ),
75
+ array( 'name' => __("Don't place behind Header", 'kadencetoolkit' ), 'value' => 'false', ),
76
+ ),
77
+ ),
78
+ )
79
+ );
80
+ $meta_boxes[] = array(
81
+ 'id' => 'subtitle_metabox',
82
+ 'title' => __( "Post Title and Subtitle", 'kadencetoolkit' ),
83
+ 'pages' => array( 'product', 'post', 'portfolio'), // Post type
84
+ 'context' => 'normal',
85
+ 'priority' => 'default',
86
+ 'show_names' => true, // Show field names on the left
87
+ 'fields' => array(
88
+ array(
89
+ 'name' => __( "Post Header Title", 'kadencetoolkit' ),
90
+ 'desc' => __( "Post Header Title", 'kadencetoolkit' ),
91
+ 'id' => $prefix . 'post_header_title',
92
+ 'type' => 'textarea_code',
93
+ ),
94
+ array(
95
+ 'name' => __( "Subtitle", 'kadencetoolkit' ),
96
+ 'desc' => __( "Subtitle will go below post title", 'kadencetoolkit' ),
97
+ 'id' => $prefix . 'subtitle',
98
+ 'type' => 'textarea_code',
99
+ ),
100
+ array(
101
+ 'name' => __("Hide Page Title", 'kadencetoolkit' ),
102
+ 'desc' => '',
103
+ 'id' => $prefix . 'pagetitle_hide',
104
+ 'type' => 'select',
105
+ 'options' => array(
106
+ array( 'name' => __("Default", 'kadencetoolkit' ), 'value' => 'default', ),
107
+ array( 'name' => __("Show", 'kadencetoolkit' ), 'value' => 'show', ),
108
+ array( 'name' => __("Hide", 'kadencetoolkit' ), 'value' => 'hide', ),
109
+ ),
110
+ ),
111
+ array(
112
+ 'name' => __("Page Title background behind Header", 'kadencetoolkit' ),
113
+ 'desc' => '',
114
+ 'id' => $prefix . 'pagetitle_behind_head',
115
+ 'type' => 'select',
116
+ 'options' => array(
117
+ array( 'name' => __("Default", 'kadencetoolkit' ), 'value' => 'default', ),
118
+ array( 'name' => __("Place behind Header", 'kadencetoolkit' ), 'value' => 'true', ),
119
+ array( 'name' => __("Don't place behind Header", 'kadencetoolkit' ), 'value' => 'false', ),
120
+ ),
121
+ ),
122
+ )
123
+ );
124
+ $meta_boxes[] = array(
125
+ 'id' => 'gallery_post_metabox',
126
+ 'title' => __("Gallery Post Options", 'kadencetoolkit'),
127
+ 'pages' => array( 'post',), // Post type
128
+ //'show_on' => array( 'key' => 'format', 'value' => 'standard'),
129
+ 'context' => 'normal',
130
+ 'priority' => 'high',
131
+ 'show_names' => true, // Show field names on the left
132
+ 'fields' => array(
133
+
134
+ array(
135
+ 'name' => __("Post Head Content", 'kadencetoolkit' ),
136
+ 'desc' => '',
137
+ 'id' => $prefix . 'gallery_blog_head',
138
+ 'type' => 'select',
139
+ 'options' => array(
140
+ array( 'name' => __("Gallery Post Default", 'kadencetoolkit' ), 'value' => 'default', ),
141
+ array( 'name' => __("Image Slider - (Flex Slider)", 'kadencetoolkit' ), 'value' => 'flex', ),
142
+ array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", 'kadencetoolkit' ), 'value' => 'carouselslider', ),
143
+ array( 'name' => __("None", 'kadencetoolkit' ), 'value' => 'none', ),
144
+ ),
145
+ ),
146
+ array(
147
+ 'name' => __("Post Slider Gallery", 'kadencetoolkit' ),
148
+ 'desc' => __("Add images for gallery here", 'kadencetoolkit' ),
149
+ 'id' => $prefix . 'image_gallery',
150
+ 'type' => 'kad_gallery',
151
+ ),
152
+ array(
153
+ 'name' => __("Max Slider Height", 'kadencetoolkit' ),
154
+ 'desc' => __("Default is: 400 (Note: just input number, example: 350)", 'kadencetoolkit' ),
155
+ 'id' => $prefix . 'gallery_posthead_height',
156
+ 'type' => 'text_small',
157
+ ),
158
+ array(
159
+ 'name' => __("Max Slider Width", 'kadencetoolkit' ),
160
+ 'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, only applys to Image Slider)", 'kadencetoolkit' ),
161
+ 'id' => $prefix . 'gallery_posthead_width',
162
+ 'type' => 'text_small',
163
+ ),
164
+ array(
165
+ 'name' => __("Post Summary", 'kadencetoolkit' ),
166
+ 'desc' => '',
167
+ 'id' => $prefix . 'gallery_post_summery',
168
+ 'type' => 'select',
169
+ 'options' => array(
170
+ array( 'name' => __('Gallery Post Default', 'kadencetoolkit' ), 'value' => 'default', ),
171
+ array( 'name' => __('Portrait Image (feature image)', 'kadencetoolkit'), 'value' => 'img_portrait', ),
172
+ array( 'name' => __('Landscape Image (feature image)', 'kadencetoolkit'), 'value' => 'img_landscape', ),
173
+ array( 'name' => __('Portrait Image Slider', 'kadencetoolkit'), 'value' => 'slider_portrait', ),
174
+ array( 'name' => __('Landscape Image Slider', 'kadencetoolkit'), 'value' => 'slider_landscape', ),
175
+ ),
176
+ ),
177
+ ),
178
+ );
179
+ $meta_boxes[] = array(
180
+ 'id' => 'video_post_metabox',
181
+ 'title' => __("Video Post Options", 'kadencetoolkit'),
182
+ 'pages' => array( 'post',), // Post type
183
+ //'show_on' => array( 'key' => 'format', 'value' => 'standard'),
184
+ 'context' => 'normal',
185
+ 'priority' => 'high',
186
+ 'show_names' => true, // Show field names on the left
187
+ 'fields' => array(
188
+
189
+ array(
190
+ 'name' => __("Post Head Content", 'kadencetoolkit' ),
191
+ 'desc' => '',
192
+ 'id' => $prefix . 'video_blog_head',
193
+ 'type' => 'select',
194
+ 'options' => array(
195
+ array( 'name' => __("Video Post Default", 'kadencetoolkit' ), 'value' => 'default', ),
196
+ array( 'name' => __("Video", 'kadencetoolkit' ), 'value' => 'video', ),
197
+ array( 'name' => __("None", 'kadencetoolkit' ), 'value' => 'none', ),
198
+ ),
199
+ ),
200
+ array(
201
+ 'name' => __('Video Post embed code', 'kadencetoolkit'),
202
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo. (Use the featured image for screen shot)', 'kadencetoolkit'),
203
+ 'id' => $prefix . 'post_video',
204
+ 'type' => 'textarea_code',
205
+ ),
206
+ array(
207
+ 'name' => __("Max Video Width", 'kadencetoolkit' ),
208
+ 'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", 'kadencetoolkit' ),
209
+ 'id' => $prefix . 'video_posthead_width',
210
+ 'type' => 'text_small',
211
+ ),
212
+ array(
213
+ 'name' => __("Post Summary", 'kadencetoolkit' ),
214
+ 'desc' => '',
215
+ 'id' => $prefix . 'video_post_summery',
216
+ 'type' => 'select',
217
+ 'options' => array(
218
+ array( 'name' => __('Video Post Default', 'kadencetoolkit' ), 'value' => 'default', ),
219
+ array( 'name' => __('Video - (when possible)', 'kadencetoolkit'), 'value' => 'video', ),
220
+ array( 'name' => __('Portrait Image (feature image)', 'kadencetoolkit'), 'value' => 'img_portrait', ),
221
+ array( 'name' => __('Landscape Image (feature image)', 'kadencetoolkit'), 'value' => 'img_landscape', ),
222
+ ),
223
+ ),
224
+ ),
225
+ );
226
+ $meta_boxes[] = array(
227
+ 'id' => 'portfolio_post_metabox',
228
+ 'title' => __('Portfolio Post Options', 'kadencetoolkit'),
229
+ 'pages' => array( 'portfolio' ), // Post type
230
+ 'context' => 'normal',
231
+ 'priority' => 'high',
232
+ 'show_names' => true, // Show field names on the left
233
+ 'fields' => array(
234
+
235
+ array(
236
+ 'name' => __('Project Layout', 'kadencetoolkit'),
237
+ 'desc' => '<a href="http://docs.kadencethemes.com/pinnacle/#portfolio_posts" target="_blank" >Whats the difference?</a>',
238
+ 'id' => $prefix . 'ppost_layout',
239
+ 'type' => 'radio_inline',
240
+ 'options' => array(
241
+ array( 'name' => __('Beside 40%', 'kadencetoolkit'), 'value' => 'beside', ),
242
+ array( 'name' => __('Beside 33%', 'kadencetoolkit'), 'value' => 'besidesmall', ),
243
+ array( 'name' => __('Above', 'kadencetoolkit'), 'value' => 'above', ),
244
+ array( 'name' => __('Three Rows', 'kadencetoolkit'), 'value' => 'three', ),
245
+ ),
246
+ ),
247
+ array(
248
+ 'name' => __('Project Options', 'kadencetoolkit'),
249
+ 'desc' => '',
250
+ 'id' => $prefix . 'ppost_type',
251
+ 'type' => 'select',
252
+ 'options' => array(
253
+ array( 'name' => __('Image', 'kadencetoolkit'), 'value' => 'image', ),
254
+ array( 'name' => __('Image Slider (Flex Slider)', 'kadencetoolkit'), 'value' => 'flex', ),
255
+ array( 'name' => __('Carousel Slider', 'kadencetoolkit'), 'value' => 'carousel', ),
256
+ array( 'name' => __('Video', 'kadencetoolkit'), 'value' => 'video', ),
257
+ array( 'name' => __('None', 'kadencetoolkit'), 'value' => 'none', ),
258
+ ),
259
+ ),
260
+ array(
261
+ 'name' => __("Portfolio Slider/Images", 'kadencetoolkit' ),
262
+ 'desc' => __("Add images for post here", 'kadencetoolkit' ),
263
+ 'id' => $prefix . 'image_gallery',
264
+ 'type' => 'kad_gallery',
265
+ ),
266
+ array(
267
+ 'name' => __("Max Image/Slider Height", 'kadencetoolkit' ),
268
+ 'desc' => __("Default is: 450 (Note: just input number, example: 350)", 'kadencetoolkit' ),
269
+ 'id' => $prefix . 'posthead_height',
270
+ 'type' => 'text_small',
271
+ ),
272
+ array(
273
+ 'name' => __("Max Image/Slider Width", 'kadencetoolkit' ),
274
+ 'desc' => __("Default is: 670 or 1140 on above or three row layouts (Note: just input number, example: 650)", 'kadencetoolkit' ),
275
+ 'id' => $prefix . 'posthead_width',
276
+ 'type' => 'text_small',
277
+ ),
278
+ array(
279
+ 'name' => __('Value 01 Title', 'kadencetoolkit'),
280
+ 'desc' => __('ex. Project Type:', 'kadencetoolkit'),
281
+ 'id' => $prefix . 'project_val01_title',
282
+ 'type' => 'text_medium',
283
+ ),
284
+ array(
285
+ 'name' => __('Value 01 Description', 'kadencetoolkit'),
286
+ 'desc' => __('ex. Character Illustration', 'kadencetoolkit'),
287
+ 'id' => $prefix . 'project_val01_description',
288
+ 'type' => 'text_medium',
289
+ ),
290
+ array(
291
+ 'name' => __('Value 02 Title', 'kadencetoolkit'),
292
+ 'desc' => __('ex. Skills Needed:', 'kadencetoolkit'),
293
+ 'id' => $prefix . 'project_val02_title',
294
+ 'type' => 'text_medium',
295
+ ),
296
+ array(
297
+ 'name' => __('Value 02 Description', 'kadencetoolkit'),
298
+ 'desc' => __('ex. Photoshop, Illustrator', 'kadencetoolkit'),
299
+ 'id' => $prefix . 'project_val02_description',
300
+ 'type' => 'text_medium',
301
+ ),
302
+ array(
303
+ 'name' => __('Value 03 Title', 'kadencetoolkit'),
304
+ 'desc' => __('ex. Customer:', 'kadencetoolkit'),
305
+ 'id' => $prefix . 'project_val03_title',
306
+ 'type' => 'text_medium',
307
+ ),
308
+ array(
309
+ 'name' => __('Value 03 Description', 'kadencetoolkit'),
310
+ 'desc' => __('ex. Example Inc', 'kadencetoolkit'),
311
+ 'id' => $prefix . 'project_val03_description',
312
+ 'type' => 'text_medium',
313
+ ),
314
+ array(
315
+ 'name' => __('Value 04 Title', 'kadencetoolkit'),
316
+ 'desc' => __('ex. Project Year:', 'kadencetoolkit'),
317
+ 'id' => $prefix . 'project_val04_title',
318
+ 'type' => 'text_medium',
319
+ ),
320
+ array(
321
+ 'name' => __('Value 04 Description', 'kadencetoolkit'),
322
+ 'desc' => __('ex. 2013', 'kadencetoolkit'),
323
+ 'id' => $prefix . 'project_val04_description',
324
+ 'type' => 'text_medium',
325
+ ),
326
+ array(
327
+ 'name' => __('External Website', 'kadencetoolkit'),
328
+ 'desc' => __('ex. Website:', 'kadencetoolkit'),
329
+ 'id' => $prefix . 'project_val05_title',
330
+ 'type' => 'text_medium',
331
+ ),
332
+ array(
333
+ 'name' => __('Website Address', 'kadencetoolkit'),
334
+ 'desc' => __('ex. http://www.example.com', 'kadencetoolkit'),
335
+ 'id' => $prefix . 'project_val05_description',
336
+ 'type' => 'text_medium',
337
+ ),
338
+ array(
339
+ 'name' => __('If Video Project', 'kadencetoolkit'),
340
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'kadencetoolkit'),
341
+ 'id' => $prefix . 'post_video',
342
+ 'type' => 'textarea_code',
343
+ ),
344
+
345
+ ),
346
+ );
347
+ $meta_boxes[] = array(
348
+ 'id' => 'portfolio_post_carousel_metabox',
349
+ 'title' => __('Bottom Carousel Options', 'kadencetoolkit'),
350
+ 'pages' => array( 'portfolio' ), // Post type
351
+ 'context' => 'normal',
352
+ 'priority' => 'high',
353
+ 'show_names' => true, // Show field names on the left
354
+ 'fields' => array(
355
+ array(
356
+ 'name' => __('Carousel Title', 'kadencetoolkit'),
357
+ 'desc' => __('ex. Similar Projects', 'kadencetoolkit'),
358
+ 'id' => $prefix . 'portfolio_carousel_title',
359
+ 'type' => 'text_medium',
360
+ ),
361
+ array(
362
+ 'name' => __('Bottom Portfolio Carousel', 'kadencetoolkit'),
363
+ 'desc' => __('Display a carousel with portfolio items below project?', 'kadencetoolkit'),
364
+ 'id' => $prefix . 'portfolio_carousel_recent',
365
+ 'type' => 'select',
366
+ 'options' => array(
367
+ array( 'name' => __('Default', 'kadencetoolkit'), 'value' => 'defualt', ),
368
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
369
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
370
+ ),
371
+ ),
372
+ array(
373
+ 'name' => __('Carousel Items', 'kadencetoolkit'),
374
+ 'desc' => '',
375
+ 'id' => $prefix . 'portfolio_carousel_group',
376
+ 'type' => 'select',
377
+ 'options' => array(
378
+ array( 'name' => __('Default', 'kadencetoolkit'), 'value' => 'defualt', ),
379
+ array( 'name' => __('All Portfolio Posts', 'kadencetoolkit'), 'value' => 'all', ),
380
+ array( 'name' => __('Only of same Portfolio Type', 'kadencetoolkit'), 'value' => 'cat', ),
381
+ ),
382
+ ),
383
+ array(
384
+ 'name' => __('Carousel Order', 'kadencetoolkit'),
385
+ 'desc' => '',
386
+ 'id' => $prefix . 'portfolio_carousel_order',
387
+ 'type' => 'select',
388
+ 'options' => array(
389
+ array( 'name' => __('Menu Order', 'kadencetoolkit'), 'value' => 'menu_order', ),
390
+ array( 'name' => __('Title', 'kadencetoolkit'), 'value' => 'title', ),
391
+ array( 'name' => __('Date', 'kadencetoolkit'), 'value' => 'date', ),
392
+ array( 'name' => __('Random', 'kadencetoolkit'), 'value' => 'rand', ),
393
+ ),
394
+ ),
395
+
396
+ ),
397
+ );
398
+ $meta_boxes[] = array(
399
+ 'id' => 'portfolio_metabox',
400
+ 'title' => __('Portfolio Page Options', 'kadencetoolkit'),
401
+ 'pages' => array( 'page' ), // Post type
402
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'template-portfolio-grid.php')),
403
+ 'context' => 'normal',
404
+ 'priority' => 'high',
405
+ 'show_names' => true, // Show field names on the left
406
+ 'fields' => array(
407
+ array(
408
+ 'name' => __('Style', 'kadencetoolkit'),
409
+ 'desc' => '',
410
+ 'id' => $prefix . 'portfolio_style',
411
+ 'type' => 'select',
412
+ 'options' => array(
413
+ array( 'name' => __('Default', 'kadencetoolkit'), 'value' => 'default', ),
414
+ array( 'name' => __('Post Boxes', 'kadencetoolkit'), 'value' => 'padded_style', ),
415
+ array( 'name' => __('Flat with Margin', 'kadencetoolkit'), 'value' => 'flat-w-margin', ),
416
+ ),
417
+ ),
418
+ array(
419
+ 'name' => __('Hover Style', 'kadencetoolkit'),
420
+ 'desc' => '',
421
+ 'id' => $prefix . 'portfolio_hover_style',
422
+ 'type' => 'select',
423
+ 'options' => array(
424
+ array( 'name' => __('Default', 'kadencetoolkit'), 'value' => 'default', ),
425
+ array( 'name' => __('Light', 'kadencetoolkit'), 'value' => 'p_lightstyle', ),
426
+ array( 'name' => __('Dark', 'kadencetoolkit'), 'value' => 'p_darkstyle', ),
427
+ array( 'name' => __('Primary Color', 'kadencetoolkit'), 'value' => 'p_primarystyle', ),
428
+ ),
429
+ ),
430
+ array(
431
+ 'name' => __('Columns', 'kadencetoolkit'),
432
+ 'desc' => '',
433
+ 'id' => $prefix . 'portfolio_columns',
434
+ 'type' => 'select',
435
+ 'options' => array(
436
+ array( 'name' => __('Four Column', 'kadencetoolkit'), 'value' => '4', ),
437
+ array( 'name' => __('Three Column', 'kadencetoolkit'), 'value' => '3', ),
438
+ array( 'name' => __('Two Column', 'kadencetoolkit'), 'value' => '2', ),
439
+ array( 'name' => __('Five Column', 'kadencetoolkit'), 'value' => '5', ),
440
+ ),
441
+ ),
442
+ array(
443
+ 'name' => __('Portfolio Work Types', 'kadencetoolkit'),
444
+ 'id' => $prefix .'portfolio_type',
445
+ 'type' => 'imag_select_taxonomy',
446
+ 'taxonomy' => 'portfolio-type',
447
+ ),
448
+ array(
449
+ 'name' => __('Order Items By', 'kadencetoolkit'),
450
+ 'desc' => '',
451
+ 'id' => $prefix . 'portfolio_order',
452
+ 'type' => 'select',
453
+ 'options' => array(
454
+ array( 'name' => __('Menu Order', 'kadencetoolkit'), 'value' => 'menu_order', ),
455
+ array( 'name' => __('Title', 'kadencetoolkit'), 'value' => 'title', ),
456
+ array( 'name' => __('Date', 'kadencetoolkit'), 'value' => 'date', ),
457
+ array( 'name' => __('Random', 'kadencetoolkit'), 'value' => 'rand', ),
458
+ ),
459
+ ),
460
+ array(
461
+ 'name' => __('Items per Page', 'kadencetoolkit'),
462
+ 'desc' => __('How many portfolio items per page', 'kadencetoolkit'),
463
+ 'id' => $prefix . 'portfolio_items',
464
+ 'type' => 'select',
465
+ 'options' => array(
466
+ array( 'name' => __('All', 'kadencetoolkit'), 'value' => 'all', ),
467
+ array( 'name' => '3', 'value' => '3', ),
468
+ array( 'name' => '4', 'value' => '4', ),
469
+ array( 'name' => '5', 'value' => '5', ),
470
+ array( 'name' => '6', 'value' => '6', ),
471
+ array( 'name' => '7', 'value' => '7', ),
472
+ array( 'name' => '8', 'value' => '8', ),
473
+ array( 'name' => '9', 'value' => '9', ),
474
+ array( 'name' => '10', 'value' => '10', ),
475
+ array( 'name' => '11', 'value' => '11', ),
476
+ array( 'name' => '12', 'value' => '12', ),
477
+ array( 'name' => '13', 'value' => '13', ),
478
+ array( 'name' => '14', 'value' => '14', ),
479
+ array( 'name' => '15', 'value' => '15', ),
480
+ array( 'name' => '16', 'value' => '16', ),
481
+ ),
482
+ ),
483
+ array(
484
+ 'name' => __('Image Ratio?', 'kadencetoolkit'),
485
+ 'desc' => '',
486
+ 'id' => $prefix . 'portfolio_img_ratio',
487
+ 'type' => 'select',
488
+ 'options' => array(
489
+ array( 'name' => __('Default', 'kadencetoolkit'), 'value' => 'default', ),
490
+ array( 'name' => __('Square 1:1', 'kadencetoolkit'), 'value' => 'square', ),
491
+ array( 'name' => __('Portrait 3:4', 'kadencetoolkit'), 'value' => 'portrait', ),
492
+ array( 'name' => __('Landscape 4:3', 'kadencetoolkit'), 'value' => 'landscape', ),
493
+ array( 'name' => __('Wide Landscape 4:2', 'kadencetoolkit'), 'value' => 'widelandscape', ),
494
+ ),
495
+ ),
496
+ array(
497
+ 'name' => __('Display Item Work Types', 'kadencetoolkit'),
498
+ 'desc' => '',
499
+ 'id' => $prefix . 'portfolio_item_types',
500
+ 'type' => 'checkbox',
501
+ ),
502
+ array(
503
+ 'name' => __('Display Item Excerpt', 'kadencetoolkit'),
504
+ 'desc' => '',
505
+ 'id' => $prefix . 'portfolio_item_excerpt',
506
+ 'type' => 'checkbox',
507
+ ),
508
+ array(
509
+ 'name' => __('Add Lightbox link in each item', 'kadencetoolkit'),
510
+ 'desc' => '',
511
+ 'id' => $prefix . 'portfolio_lightbox',
512
+ 'type' => 'checkbox',
513
+ ),
514
+
515
+ ));
516
+ $meta_boxes[] = array(
517
+ 'id' => 'pagefeature_metabox',
518
+ 'title' => __('Feature Page Options', 'kadencetoolkit'),
519
+ 'pages' => array( 'page' ), // Post type
520
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'template-feature.php')),
521
+ 'context' => 'normal',
522
+ 'priority' => 'high',
523
+ 'show_names' => true, // Show field names on the left
524
+ 'fields' => array(
525
+
526
+ array(
527
+ 'name' => __('Header Options', 'kadencetoolkit'),
528
+ 'desc' => __('If image slider make sure images uploaded are at-least 1170px wide.', 'kadencetoolkit'),
529
+ 'id' => $prefix . 'page_head',
530
+ 'type' => 'select',
531
+ 'defualt' => 'pagetitle',
532
+ 'options' => array(
533
+ array( 'name' => __('Page Title', 'kadencetoolkit'), 'value' => 'pagetitle', ),
534
+ array( 'name' => __('Image Slider (Flex Slider)', 'kadencetoolkit'), 'value' => 'flex', ),
535
+ array( 'name' => __('Carousel Slider', 'kadencetoolkit'), 'value' => 'carousel', ),
536
+ array( 'name' => __('Video', 'kadencetoolkit'), 'value' => 'video', ),
537
+ ),
538
+ ),
539
+ array(
540
+ 'name' => __("Slider Images", 'kadencetoolkit' ),
541
+ 'desc' => __("Add for flex, carousel, and image carousel.", 'kadencetoolkit' ),
542
+ 'id' => $prefix . 'image_gallery',
543
+ 'type' => 'kad_gallery',
544
+ ),
545
+ array(
546
+ 'name' => __('If Cyclone Slider', 'kadencetoolkit'),
547
+ 'desc' => __('Paste Cyclone slider shortcode here (example: [cycloneslider id="slider1"])', 'kadencetoolkit'),
548
+ 'id' => $prefix . 'shortcode_slider',
549
+ 'type' => 'textarea_code',
550
+ ),
551
+ array(
552
+ 'name' => __('Max Image/Slider Height', 'kadencetoolkit'),
553
+ 'desc' => __('Default is: 400 (Note: just input number, example: 350)', 'kadencetoolkit'),
554
+ 'id' => $prefix . 'posthead_height',
555
+ 'type' => 'text_small',
556
+ ),
557
+ array(
558
+ 'name' => __("Max Image/Slider Width", 'kadencetoolkit' ),
559
+ 'desc' => __("Default is: 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to Carousel slider)", 'kadencetoolkit' ),
560
+ 'id' => $prefix . 'posthead_width',
561
+ 'type' => 'text_small',
562
+ ),
563
+ array(
564
+ 'name' => __('If Video Post', 'kadencetoolkit'),
565
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'kadencetoolkit'),
566
+ 'id' => $prefix . 'post_video',
567
+ 'type' => 'textarea_code',
568
+ ),
569
+
570
+ ));
571
+ $meta_boxes[] = array(
572
+ 'id' => 'contact_metabox',
573
+ 'title' => __('Contact Page Options', 'kadencetoolkit'),
574
+ 'pages' => array( 'page' ), // Post type
575
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'template-contact.php')),
576
+ 'context' => 'normal',
577
+ 'priority' => 'high',
578
+ 'show_names' => true, // Show field names on the left
579
+ 'fields' => array(
580
+
581
+ array(
582
+ 'name' => __('Use Contact Form', 'kadencetoolkit'),
583
+ 'desc' => '',
584
+ 'id' => $prefix .'contact_form',
585
+ 'type' => 'select',
586
+ 'options' => array(
587
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
588
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
589
+ ),
590
+ ),
591
+ array(
592
+ 'name' => __('Contact Form Title', 'kadencetoolkit'),
593
+ 'desc' => __('ex. Send us an Email', 'kadencetoolkit'),
594
+ 'id' => $prefix . 'contact_form_title',
595
+ 'type' => 'text',
596
+ ),
597
+ array(
598
+ 'name' => __('Contact Form Email Recipient', 'kadencetoolkit'),
599
+ 'desc' => __('ex. joe@gmail.com', 'kadencetoolkit'),
600
+ 'id' => $prefix . 'contact_form_email',
601
+ 'type' => 'text',
602
+ ),
603
+ array(
604
+ 'name' => __('Use Simple Math Question', 'kadencetoolkit'),
605
+ 'desc' => 'Adds a simple math question to form.',
606
+ 'id' => $prefix .'contact_form_math',
607
+ 'type' => 'select',
608
+ 'options' => array(
609
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
610
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
611
+ ),
612
+ ),
613
+ array(
614
+ 'name' => __('Use Map', 'kadencetoolkit'),
615
+ 'desc' => '',
616
+ 'id' => $prefix .'contact_map',
617
+ 'type' => 'select',
618
+ 'options' => array(
619
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
620
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
621
+ ),
622
+ ),
623
+ array(
624
+ 'name' => __('Address', 'kadencetoolkit'),
625
+ 'desc' => __('Enter your Location', 'kadencetoolkit'),
626
+ 'id' => $prefix . 'contact_address',
627
+ 'type' => 'text',
628
+ ),
629
+ array(
630
+ 'name' => __('Map Type', 'kadencetoolkit'),
631
+ 'desc' => '',
632
+ 'id' => $prefix . 'contact_maptype',
633
+ 'type' => 'select',
634
+ 'options' => array(
635
+ array( 'name' => __('ROADMAP', 'kadencetoolkit'), 'value' => 'ROADMAP', ),
636
+ array( 'name' => __('HYBRID', 'kadencetoolkit'), 'value' => 'HYBRID', ),
637
+ array( 'name' => __('TERRAIN', 'kadencetoolkit'), 'value' => 'TERRAIN', ),
638
+ array( 'name' => __('SATELLITE', 'kadencetoolkit'), 'value' => 'SATELLITE', ),
639
+ ),
640
+ ),
641
+ array(
642
+ 'name' => __('Map Zoom Level', 'kadencetoolkit'),
643
+ 'desc' => __('A good place to start is 15', 'kadencetoolkit'),
644
+ 'id' => $prefix . 'contact_zoom',
645
+ 'std' => '15',
646
+ 'type' => 'select',
647
+ 'options' => array(
648
+ array( 'name' => __('1 (World View)', 'kadencetoolkit'), 'value' => '1', ),
649
+ array( 'name' => '2', 'value' => '2', ),
650
+ array( 'name' => '3', 'value' => '3', ),
651
+ array( 'name' => '4', 'value' => '4', ),
652
+ array( 'name' => '5', 'value' => '5', ),
653
+ array( 'name' => '6', 'value' => '6', ),
654
+ array( 'name' => '7', 'value' => '7', ),
655
+ array( 'name' => '8', 'value' => '8', ),
656
+ array( 'name' => '9', 'value' => '9', ),
657
+ array( 'name' => '10', 'value' => '10', ),
658
+ array( 'name' => '11', 'value' => '11', ),
659
+ array( 'name' => '12', 'value' => '12', ),
660
+ array( 'name' => '13', 'value' => '13', ),
661
+ array( 'name' => '14', 'value' => '14', ),
662
+ array( 'name' => '15', 'value' => '15', ),
663
+ array( 'name' => '16', 'value' => '16', ),
664
+ array( 'name' => '17', 'value' => '17', ),
665
+ array( 'name' => '18', 'value' => '18', ),
666
+ array( 'name' => '19', 'value' => '19', ),
667
+ array( 'name' => '20', 'value' => '20', ),
668
+ array( 'name' => __('21 (Street View)', 'kadencetoolkit'), 'value' => '21', ),
669
+ ),
670
+ ),
671
+ array(
672
+ 'name' => __('Map Height', 'kadencetoolkit'),
673
+ 'desc' => __('Default is 300', 'kadencetoolkit'),
674
+ 'id' => $prefix . 'contact_mapheight',
675
+ 'type' => 'text_small',
676
+ ),
677
+ ));
678
+
679
+ return $meta_boxes;
680
+ }
681
+
682
+
683
+ $the_theme = wp_get_theme();
684
+ if( ($the_theme->get( 'Name' ) == 'Virtue' || $the_theme->get( 'Template') == 'virtue') && ( $the_theme->get( 'Version') >= '2.3.5' ) ) {
685
+ add_filter( 'cmb_meta_boxes', 'kadence_virtuetoolkit_metaboxes', 100 );
686
+ }
687
+ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
688
+
689
+ // Start with an underscore to hide fields from custom fields list
690
+ $prefix = '_kad_';
691
+ $meta_boxes[] = array(
692
+ 'id' => 'post_video_metabox',
693
+ 'title' => __('Post Video Box', 'kadencetoolkit'),
694
+ 'pages' => array( 'post',), // Post type
695
+ 'context' => 'normal',
696
+ 'priority' => 'high',
697
+ 'show_names' => true,
698
+ 'fields' => array(
699
+
700
+ array(
701
+ 'name' => __('If Video Post', 'kadencetoolkit'),
702
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'kadencetoolkit'),
703
+ 'id' => $prefix . 'post_video',
704
+ 'type' => 'textarea_code',
705
+ ),
706
+ ),
707
+ );
708
+ $meta_boxes[] = array(
709
+ 'id' => 'portfolio_post_metabox',
710
+ 'title' => __('Portfolio Post Options', 'kadencetoolkit'),
711
+ 'pages' => array( 'portfolio' ), // Post type
712
+ 'context' => 'normal',
713
+ 'priority' => 'high',
714
+ 'show_names' => true, // Show field names on the left
715
+ 'fields' => array(
716
+
717
+ array(
718
+ 'name' => __('Project Layout', 'kadencetoolkit'),
719
+ 'desc' => '<a href="http://docs.kadencethemes.com/virtue/#portfolio_posts" target="_new" >Whats the difference?</a>',
720
+ 'id' => $prefix . 'ppost_layout',
721
+ 'type' => 'radio_inline',
722
+ 'options' => array(
723
+ array( 'name' => __('Beside', 'kadencetoolkit'), 'value' => 'beside', ),
724
+ array( 'name' => __('Above', 'kadencetoolkit'), 'value' => 'above', ),
725
+ array( 'name' => __('Three Rows', 'kadencetoolkit'), 'value' => 'three', ),
726
+ ),
727
+ ),
728
+ array(
729
+ 'name' => __('Project Options', 'kadencetoolkit'),
730
+ 'desc' => '',
731
+ 'id' => $prefix . 'ppost_type',
732
+ 'type' => 'select',
733
+ 'options' => array(
734
+ array( 'name' => __('Image', 'kadencetoolkit'), 'value' => 'image', ),
735
+ array( 'name' => __('Image Slider', 'kadencetoolkit'), 'value' => 'flex', ),
736
+ array( 'name' => __('Carousel Slider', 'kadencetoolkit'), 'value' => 'carousel', ),
737
+ array( 'name' => __('Video', 'kadencetoolkit'), 'value' => 'video', ),
738
+ array( 'name' => __('None', 'kadencetoolkit'), 'value' => 'none', ),
739
+ ),
740
+ ),
741
+ array(
742
+ 'name' => __("Max Image/Slider Height", 'kadencetoolkit' ),
743
+ 'desc' => __("Default is: 450 <b>(Note: just input number, example: 350)</b>", 'kadencetoolkit' ),
744
+ 'id' => $prefix . 'posthead_height',
745
+ 'type' => 'text_small',
746
+ ),
747
+ array(
748
+ 'name' => __("Max Image/Slider Width", 'kadencetoolkit' ),
749
+ 'desc' => __("Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: just input number, example: 650)</b>", 'kadencetoolkit' ),
750
+ 'id' => $prefix . 'posthead_width',
751
+ 'type' => 'text_small',
752
+ ),
753
+ array(
754
+ 'name' => __('Auto Play Slider?', 'kadencetoolkit'),
755
+ 'desc' => '',
756
+ 'id' => $prefix . 'portfolio_autoplay',
757
+ 'type' => 'select',
758
+ 'options' => array(
759
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'Yes', ),
760
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
761
+ ),
762
+ ),
763
+ array(
764
+ 'name' => __('Value 01 Title', 'kadencetoolkit'),
765
+ 'desc' => __('ex. Project Type:', 'kadencetoolkit'),
766
+ 'id' => $prefix . 'project_val01_title',
767
+ 'type' => 'text_medium',
768
+ ),
769
+ array(
770
+ 'name' => __('Value 01 Description', 'kadencetoolkit'),
771
+ 'desc' => __('ex. Character Illustration', 'kadencetoolkit'),
772
+ 'id' => $prefix . 'project_val01_description',
773
+ 'type' => 'text_medium',
774
+ ),
775
+ array(
776
+ 'name' => __('Value 02 Title', 'kadencetoolkit'),
777
+ 'desc' => __('ex. Skills Needed:', 'kadencetoolkit'),
778
+ 'id' => $prefix . 'project_val02_title',
779
+ 'type' => 'text_medium',
780
+ ),
781
+ array(
782
+ 'name' => __('Value 02 Description', 'kadencetoolkit'),
783
+ 'desc' => __('ex. Photoshop, Illustrator', 'kadencetoolkit'),
784
+ 'id' => $prefix . 'project_val02_description',
785
+ 'type' => 'text_medium',
786
+ ),
787
+ array(
788
+ 'name' => __('Value 03 Title', 'kadencetoolkit'),
789
+ 'desc' => __('ex. Customer:', 'kadencetoolkit'),
790
+ 'id' => $prefix . 'project_val03_title',
791
+ 'type' => 'text_medium',
792
+ ),
793
+ array(
794
+ 'name' => __('Value 03 Description', 'kadencetoolkit'),
795
+ 'desc' => __('ex. Example Inc', 'kadencetoolkit'),
796
+ 'id' => $prefix . 'project_val03_description',
797
+ 'type' => 'text_medium',
798
+ ),
799
+ array(
800
+ 'name' => __('Value 04 Title', 'kadencetoolkit'),
801
+ 'desc' => __('ex. Project Year:', 'kadencetoolkit'),
802
+ 'id' => $prefix . 'project_val04_title',
803
+ 'type' => 'text_medium',
804
+ ),
805
+ array(
806
+ 'name' => __('Value 04 Description', 'kadencetoolkit'),
807
+ 'desc' => __('ex. 2013', 'kadencetoolkit'),
808
+ 'id' => $prefix . 'project_val04_description',
809
+ 'type' => 'text_medium',
810
+ ),
811
+ array(
812
+ 'name' => __('External Website', 'kadencetoolkit'),
813
+ 'desc' => __('ex. Website:', 'kadencetoolkit'),
814
+ 'id' => $prefix . 'project_val05_title',
815
+ 'type' => 'text_medium',
816
+ ),
817
+ array(
818
+ 'name' => __('Website Address', 'kadencetoolkit'),
819
+ 'desc' => __('ex. http://www.example.com', 'kadencetoolkit'),
820
+ 'id' => $prefix . 'project_val05_description',
821
+ 'type' => 'text_medium',
822
+ ),
823
+ array(
824
+ 'name' => __('If Video Project', 'kadencetoolkit'),
825
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'kadencetoolkit'),
826
+ 'id' => $prefix . 'post_video',
827
+ 'type' => 'textarea_code',
828
+ ),
829
+ array(
830
+ 'name' => __('Similar Portfolio Item Carousel', 'kadencetoolkit'),
831
+ 'desc' => __('Display a carousel with similar portfolio items below project?', 'kadencetoolkit'),
832
+ 'id' => $prefix . 'portfolio_carousel_recent',
833
+ 'type' => 'select',
834
+ 'options' => array(
835
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
836
+ array( 'name' => __('Yes - Display Recent Projects', 'kadencetoolkit'), 'value' => 'recent', ),
837
+ ),
838
+ ),
839
+ array(
840
+ 'name' => __('Carousel Title', 'kadencetoolkit'),
841
+ 'desc' => __('ex. Similar Projects', 'kadencetoolkit'),
842
+ 'id' => $prefix . 'portfolio_carousel_title',
843
+ 'type' => 'text_medium',
844
+ ),
845
+
846
+ ),
847
+ );
848
+ $meta_boxes[] = array(
849
+ 'id' => 'portfolio_metabox',
850
+ 'title' => __('Portfolio Page Options', 'kadencetoolkit'),
851
+ 'pages' => array( 'page' ), // Post type
852
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'page-portfolio.php' )),
853
+ 'context' => 'normal',
854
+ 'priority' => 'high',
855
+ 'show_names' => true, // Show field names on the left
856
+ 'fields' => array(
857
+
858
+ array(
859
+ 'name' => __('Columns', 'kadencetoolkit'),
860
+ 'desc' => '',
861
+ 'id' => $prefix . 'portfolio_columns',
862
+ 'type' => 'select',
863
+ 'options' => array(
864
+ array( 'name' => __('Four Column', 'kadencetoolkit'), 'value' => '4', ),
865
+ array( 'name' => __('Three Column', 'kadencetoolkit'), 'value' => '3', ),
866
+ array( 'name' => __('Two Column', 'kadencetoolkit'), 'value' => '2', ),
867
+ ),
868
+ ),
869
+ array(
870
+ 'name' => __('Portfolio Work Types', 'kadencetoolkit'),
871
+ 'desc' => '',
872
+ 'id' => $prefix .'portfolio_type',
873
+ 'type' => 'imag_select_taxonomy',
874
+ 'taxonomy' => 'portfolio-type',
875
+ ),
876
+ array(
877
+ 'name' => __('Order Items By', 'kadencetoolkit'),
878
+ 'desc' => '',
879
+ 'id' => $prefix . 'portfolio_order',
880
+ 'type' => 'select',
881
+ 'options' => array(
882
+ array( 'name' => __('Menu Order', 'kadencetoolkit'), 'value' => 'menu_order', ),
883
+ array( 'name' => __('Title', 'kadencetoolkit'), 'value' => 'title', ),
884
+ array( 'name' => __('Date', 'kadencetoolkit'), 'value' => 'date', ),
885
+ array( 'name' => __('Random', 'kadencetoolkit'), 'value' => 'rand', ),
886
+ ),
887
+ ),
888
+ array(
889
+ 'name' => __('Items per Page', 'kadencetoolkit'),
890
+ 'desc' => __('How many portfolio items per page', 'kadencetoolkit'),
891
+ 'id' => $prefix . 'portfolio_items',
892
+ 'type' => 'select',
893
+ 'options' => array(
894
+ array( 'name' => __('All', 'kadencetoolkit'), 'value' => 'all', ),
895
+ array( 'name' => '3', 'value' => '3', ),
896
+ array( 'name' => '4', 'value' => '4', ),
897
+ array( 'name' => '5', 'value' => '5', ),
898
+ array( 'name' => '6', 'value' => '6', ),
899
+ array( 'name' => '7', 'value' => '7', ),
900
+ array( 'name' => '8', 'value' => '8', ),
901
+ array( 'name' => '9', 'value' => '9', ),
902
+ array( 'name' => '10', 'value' => '10', ),
903
+ array( 'name' => '11', 'value' => '11', ),
904
+ array( 'name' => '12', 'value' => '12', ),
905
+ array( 'name' => '13', 'value' => '13', ),
906
+ array( 'name' => '14', 'value' => '14', ),
907
+ array( 'name' => '15', 'value' => '15', ),
908
+ array( 'name' => '16', 'value' => '16', ),
909
+ ),
910
+ ),
911
+ array(
912
+ 'name' => __('Set image height', 'kadencetoolkit'),
913
+ 'desc' => __('Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>', 'kadencetoolkit'),
914
+ 'id' => $prefix . 'portfolio_img_crop',
915
+ 'type' => 'text_small',
916
+ ),
917
+ array(
918
+ 'name' => __('Display Item Work Types', 'kadencetoolkit'),
919
+ 'desc' => '',
920
+ 'id' => $prefix . 'portfolio_item_types',
921
+ 'type' => 'checkbox',
922
+ 'std' => '1'
923
+ ),
924
+ array(
925
+ 'name' => __('Display Item Excerpt', 'kadencetoolkit'),
926
+ 'desc' => '',
927
+ 'id' => $prefix . 'portfolio_item_excerpt',
928
+ 'type' => 'checkbox',
929
+ 'std' => '1'
930
+ ),
931
+ array(
932
+ 'name' => __('Add Lightbox link in the top right of each item', 'kadencetoolkit'),
933
+ 'desc' => '',
934
+ 'id' => $prefix . 'portfolio_lightbox',
935
+ 'type' => 'select',
936
+ 'options' => array(
937
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
938
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
939
+ ),
940
+ ),
941
+
942
+ ));
943
+ $meta_boxes[] = array(
944
+ 'id' => 'pagefeature_metabox',
945
+ 'title' => __('Feature Page Options', 'kadencetoolkit'),
946
+ 'pages' => array( 'page' ), // Post type
947
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'page-feature.php', 'page-feature-sidebar.php')),
948
+ 'context' => 'normal',
949
+ 'priority' => 'high',
950
+ 'show_names' => true, // Show field names on the left
951
+ 'fields' => array(
952
+
953
+ array(
954
+ 'name' => __('Feature Options', 'kadencetoolkit'),
955
+ 'desc' => __('If image slider make sure images uploaded are at least 1140px wide.', 'kadencetoolkit'),
956
+ 'id' => $prefix . 'page_head',
957
+ 'type' => 'select',
958
+ 'options' => array(
959
+ array( 'name' => __('Image Slider', 'kadencetoolkit'), 'value' => 'flex', ),
960
+ array( 'name' => __('Video', 'kadencetoolkit'), 'value' => 'video', ),
961
+ array( 'name' => __('Image', 'kadencetoolkit'), 'value' => 'image', ),
962
+ ),
963
+ ),
964
+ array(
965
+ 'name' => __('Max Image/Slider Height', 'kadencetoolkit'),
966
+ 'desc' => __('Default is: 400 <b>(Note: just input number, example: 350)</b>', 'kadencetoolkit'),
967
+ 'id' => $prefix . 'posthead_height',
968
+ 'type' => 'text_small',
969
+ ),
970
+ array(
971
+ 'name' => __("Max Image/Slider Width", 'kadencetoolkit' ),
972
+ 'desc' => __("Default is: 1140 <b>(Note: just input number, example: 650, does not apply to Carousel slider)</b>", 'kadencetoolkit' ),
973
+ 'id' => $prefix . 'posthead_width',
974
+ 'type' => 'text_small',
975
+ ),
976
+ array(
977
+ 'name' => __('Use Lightbox for Feature Image', 'kadencetoolkit'),
978
+ 'desc' => __("If feature option is set to image, choose to use lightbox link with image.", 'kadencetoolkit' ),
979
+ 'id' => $prefix . 'feature_img_lightbox',
980
+ 'type' => 'select',
981
+ 'options' => array(
982
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
983
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
984
+ ),
985
+ ),
986
+ array(
987
+ 'name' => __('If Video Post', 'kadencetoolkit'),
988
+ 'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'kadencetoolkit'),
989
+ 'id' => $prefix . 'post_video',
990
+ 'type' => 'textarea_code',
991
+ ),
992
+
993
+ ));
994
+ $meta_boxes[] = array(
995
+ 'id' => 'contact_metabox',
996
+ 'title' => __('Contact Page Options', 'kadencetoolkit'),
997
+ 'pages' => array( 'page' ), // Post type
998
+ 'show_on' => array('key' => 'page-template', 'value' => array( 'page-contact.php')),
999
+ 'context' => 'normal',
1000
+ 'priority' => 'high',
1001
+ 'show_names' => true, // Show field names on the left
1002
+ 'fields' => array(
1003
+
1004
+ array(
1005
+ 'name' => __('Use Contact Form', 'kadencetoolkit'),
1006
+ 'desc' => '',
1007
+ 'id' => $prefix .'contact_form',
1008
+ 'type' => 'select',
1009
+ 'options' => array(
1010
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
1011
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
1012
+ ),
1013
+ ),
1014
+ array(
1015
+ 'name' => __('Contact Form Title', 'kadencetoolkit'),
1016
+ 'desc' => __('ex. Send us an Email', 'kadencetoolkit'),
1017
+ 'id' => $prefix . 'contact_form_title',
1018
+ 'type' => 'text',
1019
+ ),
1020
+ array(
1021
+ 'name' => __('Use Simple Math Question', 'kadencetoolkit'),
1022
+ 'desc' => 'Adds a simple math question to form.',
1023
+ 'id' => $prefix .'contact_form_math',
1024
+ 'type' => 'select',
1025
+ 'options' => array(
1026
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
1027
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
1028
+ ),
1029
+ ),
1030
+ array(
1031
+ 'name' => __('Use Map', 'kadencetoolkit'),
1032
+ 'desc' => '',
1033
+ 'id' => $prefix .'contact_map',
1034
+ 'type' => 'select',
1035
+ 'options' => array(
1036
+ array( 'name' => __('No', 'kadencetoolkit'), 'value' => 'no', ),
1037
+ array( 'name' => __('Yes', 'kadencetoolkit'), 'value' => 'yes', ),
1038
+ ),
1039
+ ),
1040
+ array(
1041
+ 'name' => __('Address', 'kadencetoolkit'),
1042
+ 'desc' => __('Enter your Location', 'kadencetoolkit'),
1043
+ 'id' => $prefix . 'contact_address',
1044
+ 'type' => 'text',
1045
+ ),
1046
+ array(
1047
+ 'name' => __('Map Type', 'kadencetoolkit'),
1048
+ 'desc' => '',
1049
+ 'id' => $prefix . 'contact_maptype',
1050
+ 'type' => 'select',
1051
+ 'options' => array(
1052
+ array( 'name' => __('ROADMAP', 'kadencetoolkit'), 'value' => 'ROADMAP', ),
1053
+ array( 'name' => __('HYBRID', 'kadencetoolkit'), 'value' => 'HYBRID', ),
1054
+ array( 'name' => __('TERRAIN', 'kadencetoolkit'), 'value' => 'TERRAIN', ),
1055
+ array( 'name' => __('SATELLITE', 'kadencetoolkit'), 'value' => 'SATELLITE', ),
1056
+ ),
1057
+ ),
1058
+ array(
1059
+ 'name' => __('Map Zoom Level', 'kadencetoolkit'),
1060
+ 'desc' => __('A good place to start is 15', 'kadencetoolkit'),
1061
+ 'id' => $prefix . 'contact_zoom',
1062
+ 'std' => '15',
1063
+ 'type' => 'select',
1064
+ 'options' => array(
1065
+ array( 'name' => __('1 (World View)', 'kadencetoolkit'), 'value' => '1', ),
1066
+ array( 'name' => '2', 'value' => '2', ),
1067
+ array( 'name' => '3', 'value' => '3', ),
1068
+ array( 'name' => '4', 'value' => '4', ),
1069
+ array( 'name' => '5', 'value' => '5', ),
1070
+ array( 'name' => '6', 'value' => '6', ),
1071
+ array( 'name' => '7', 'value' => '7', ),
1072
+ array( 'name' => '8', 'value' => '8', ),
1073
+ array( 'name' => '9', 'value' => '9', ),
1074
+ array( 'name' => '10', 'value' => '10', ),
1075
+ array( 'name' => '11', 'value' => '11', ),
1076
+ array( 'name' => '12', 'value' => '12', ),
1077
+ array( 'name' => '13', 'value' => '13', ),
1078
+ array( 'name' => '14', 'value' => '14', ),
1079
+ array( 'name' => '15', 'value' => '15', ),
1080
+ array( 'name' => '16', 'value' => '16', ),
1081
+ array( 'name' => '17', 'value' => '17', ),
1082
+ array( 'name' => '18', 'value' => '18', ),
1083
+ array( 'name' => '19', 'value' => '19', ),
1084
+ array( 'name' => '20', 'value' => '20', ),
1085
+ array( 'name' => __('21 (Street View)', 'kadencetoolkit'), 'value' => '21', ),
1086
+ ),
1087
+ ),
1088
+ array(
1089
+ 'name' => __('Map Height', 'kadencetoolkit'),
1090
+ 'desc' => __('Default is 300', 'kadencetoolkit'),
1091
+ 'id' => $prefix . 'contact_mapheight',
1092
+ 'type' => 'text_small',
1093
+ ),
1094
+
1095
+ ));
1096
+ $meta_boxes[] = array(
1097
+ 'id' => 'virtue_post_gallery',
1098
+ 'title' => __("Slider Images", 'kadencetoolkit'),
1099
+ 'pages' => array( 'post', 'page', 'portfolio'), // Post type
1100
+ 'context' => 'normal',
1101
+ 'priority' => 'high',
1102
+ 'show_names' => true, // Show field names on the left
1103
+ 'fields' => array(
1104
+ array(
1105
+ 'name' => __("Slider Gallery", 'kadencetoolkit' ),
1106
+ 'desc' => __("Add images for gallery here", 'kadencetoolkit' ),
1107
+ 'id' => $prefix . 'image_gallery',
1108
+ 'type' => 'kad_gallery',
1109
+ ),
1110
+ ));
1111
+
1112
+ return $meta_boxes;
1113
+ }
1114
+
1115
+ add_action( 'init', 'initialize_kadence_toolkit_meta_boxes', 10 );
1116
+ function initialize_kadence_toolkit_meta_boxes() {
1117
+
1118
+ if ( ! class_exists( 'cmb_Meta_Box' ) ) {
1119
+ require_once 'cmb/init.php';
1120
+ }
1121
+
1122
+ }
page-contact.php ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Template Name: Contact
4
+ */
5
+ ?>
6
+ <?php global $virtue, $post;
7
+ $map = get_post_meta( $post->ID, '_kad_contact_map', true );
8
+ $form_math = get_post_meta( $post->ID, '_kad_contact_form_math', true );
9
+ $contactformtitle = get_post_meta( $post->ID, '_kad_contact_form_title', true );
10
+ $form = get_post_meta( $post->ID, '_kad_contact_form', true ); ?>
11
+ <script type="text/javascript">jQuery(document).ready(function ($) {$.extend($.validator.messages, {
12
+ required: "<?php echo __('This field is required.', 'kadencetoolkit'); ?>",
13
+ email: "<?php echo __('Please enter a valid email address.', 'kadencetoolkit'); ?>",
14
+ });
15
+ $("#contactForm").validate();
16
+ });</script>
17
+ <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/assets/js/jquery.validate.js"></script>
18
+
19
+ <?php if ($map == 'yes') { ?>
20
+ <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script>
21
+ <?php $address = get_post_meta( $post->ID, '_kad_contact_address', true );
22
+ $maptype = get_post_meta( $post->ID, '_kad_contact_maptype', true );
23
+ $height = get_post_meta( $post->ID, '_kad_contact_mapheight', true );
24
+ $mapzoom = get_post_meta( $post->ID, '_kad_contact_zoom', true );
25
+
26
+ if(!empty($height)) {
27
+ $mapheight = $height;
28
+ } else {
29
+ $mapheight = 300;
30
+ }
31
+ if(!empty($mapzoom)) {
32
+ $zoom = $mapzoom;
33
+ } else {
34
+ $zoom = 15;
35
+ } ?>
36
+ <script type="text/javascript">
37
+ jQuery(window).load(function() {
38
+ jQuery('#map_address').gmap3({
39
+ map: {
40
+ address:"<?php echo $address;?>",
41
+ options: {
42
+ zoom:<?php echo $zoom;?>,
43
+ draggable: true,
44
+ mapTypeControl: true,
45
+ mapTypeId: google.maps.MapTypeId.<?php echo esc_attr($maptype);?>,
46
+ scrollwheel: false,
47
+ panControl: true,
48
+ rotateControl: false,
49
+ scaleControl: true,
50
+ streetViewControl: true,
51
+ zoomControl: true
52
+ }
53
+ },
54
+ marker:{
55
+ values:[
56
+ {address: "<?php echo $address;?>",
57
+ data:"<div class='mapinfo'>'<?php echo $address;?>'</div>",
58
+ },
59
+ ],
60
+ options:{
61
+ draggable: false,
62
+ },
63
+ events:{
64
+ click: function(marker, event, context){
65
+ var map = jQuery(this).gmap3("get"),
66
+ infowindow = jQuery(this).gmap3({get:{name:"infowindow"}});
67
+ if (infowindow){
68
+ infowindow.open(map, marker);
69
+ infowindow.setContent(context.data);
70
+ } else {
71
+ jQuery(this).gmap3({
72
+ infowindow:{
73
+ anchor:marker,
74
+ options:{content: context.data}
75
+ }
76
+ });
77
+ }
78
+ },
79
+ closeclick: function(){
80
+ var infowindow = jQuery(this).gmap3({get:{name:"infowindow"}});
81
+ if (infowindow){
82
+ infowindow.close();
83
+ }
84
+ }
85
+ }
86
+ }
87
+ });
88
+ });
89
+ </script>
90
+ <?php echo '<style type="text/css" media="screen">#map_address {height:'.esc_attr($mapheight).'px; margin-bottom:20px;}</style>';
91
+ }
92
+
93
+ if(isset($_POST['submitted'])) {
94
+ if(isset($form_math) && $form_math == 'yes') {
95
+ if(md5($_POST['kad_captcha']) != $_POST['hval']) {
96
+ $kad_captchaError = __('Check your math.', 'kadencetoolkit');
97
+ $hasError = true;
98
+ }
99
+ }
100
+ if(trim($_POST['contactName']) === '') {
101
+ $nameError = __('Please enter your name.', 'kadencetoolkit');
102
+ $hasError = true;
103
+ } else {
104
+ $name = trim($_POST['contactName']);
105
+ }
106
+
107
+ if(trim($_POST['email']) === '') {
108
+ $emailError = __('Please enter your email address.', 'kadencetoolkit');
109
+ $hasError = true;
110
+ } else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
111
+ $emailError = __('You entered an invalid email address.', 'kadencetoolkit');
112
+ $hasError = true;
113
+ } else {
114
+ $email = trim($_POST['email']);
115
+ }
116
+
117
+ if(trim($_POST['comments']) === '') {
118
+ $commentError = __('Please enter a message.', 'kadencetoolkit');
119
+ $hasError = true;
120
+ } else {
121
+ if(function_exists('stripslashes')) {
122
+ $comments = stripslashes(trim($_POST['comments']));
123
+ } else {
124
+ $comments = trim($_POST['comments']);
125
+ }
126
+ }
127
+
128
+ if(!isset($hasError)) {
129
+ if (isset($virtue['contact_email'])) {
130
+ $emailTo = $virtue['contact_email'];
131
+ } else {
132
+ $emailTo = get_option('admin_email');
133
+ }
134
+ $sitename = get_bloginfo('name');
135
+ $subject = '['.esc_html($sitename) . ' ' . __("Contact", "virtue").'] '. __("From", "virtue") . ' ' . esc_html($name);
136
+ $body = __('Name', 'kadencetoolkit').": $name \n\n";
137
+ $body .= __('Email', 'kadencetoolkit').": $email \n\n";
138
+ $body .= __('Comments', 'kadencetoolkit').":\n $comments";
139
+ $headers = 'Reply-To: ' . esc_html($name) . '<' . $email . '>' . "\r\n";
140
+
141
+ wp_mail($emailTo, $subject, $body, $headers);
142
+ $emailSent = true;
143
+ }
144
+
145
+ } ?>
146
+ <div id="pageheader" class="titleclass">
147
+ <div class="container">
148
+ <?php get_template_part('templates/page', 'header'); ?>
149
+ </div><!--container-->
150
+ </div><!--titleclass-->
151
+ <?php if ($map == 'yes') { ?>
152
+ <div id="mapheader" class="titleclass">
153
+ <div class="container">
154
+ <div id="map_address">
155
+ </div>
156
+ </div><!--container-->
157
+ </div><!--titleclass-->
158
+ <?php } ?>
159
+ <div id="content" class="container">
160
+ <div class="row">
161
+ <?php if ($form == 'yes') { ?>
162
+ <div id="main" class="main col-md-6" role="main">
163
+ <?php } else { ?>
164
+ <div id="main" class="main col-md-12" role="main">
165
+ <?php } ?>
166
+ <?php get_template_part('templates/content', 'page'); ?>
167
+ </div>
168
+
169
+ <?php if ($form == 'yes') { ?>
170
+ <div class="contactformcase col-md-6">
171
+ <?php if (!empty($contactformtitle)) {
172
+ echo '<h3>'. esc_html($contactformtitle).'</h3>';
173
+ }
174
+ if(isset($emailSent) && $emailSent == true) { ?>
175
+ <div class="thanks">
176
+ <p><?php _e('Thanks, your email was sent successfully.', 'kadencetoolkit');?></p>
177
+ </div>
178
+ <?php } else {
179
+
180
+ if(isset($hasError) || isset($captchaError)) { ?>
181
+ <p class="error"><?php _e('Sorry, an error occured.', 'kadencetoolkit');?><p>
182
+ <?php } ?>
183
+
184
+ <form action="<?php the_permalink(); ?>" id="contactForm" method="post">
185
+ <div class="contactform">
186
+ <p>
187
+ <label for="contactName"><b><?php _e('Name:', 'kadencetoolkit'); ?></b></label>
188
+ <?php if(isset($nameError)) { ?>
189
+ <span class="error"><?php echo esc_html($nameError);?></span>
190
+ <?php } ?>
191
+ <input type="text" name="contactName" id="contactName" value="<?php if(isset($_POST['contactName'])) echo $_POST['contactName'];?>" class="required requiredField full" />
192
+ </p>
193
+
194
+ <p>
195
+ <label for="email"><b><?php _e('Email: ', 'kadencetoolkit'); ?></b></label>
196
+ <?php if(isset($emailError)) { ?>
197
+ <span class="error"><?php echo esc_html($emailError);?></span>
198
+ <?php } ?>
199
+ <input type="text" name="email" id="email" value="<?php if(isset($_POST['email'])) echo $_POST['email'];?>" class="required requiredField email full" />
200
+ </p>
201
+
202
+ <p>
203
+ <label for="commentsText"><b><?php _e('Message: ', 'kadencetoolkit'); ?></b></label>
204
+ <?php if(isset($commentError)) { ?>
205
+ <span class="error"><?php echo esc_html($commentError);?></span>
206
+ <?php } ?>
207
+ <textarea name="comments" id="commentsText" rows="10" class="required requiredField"><?php if(isset($_POST['comments'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['comments']); } else { echo $_POST['comments']; } } ?></textarea>
208
+ </p>
209
+ <?php if(isset($form_math) && $form_math == 'yes') {
210
+ $one = rand(5, 50);
211
+ $two = rand(1, 9);
212
+ $result = md5($one + $two); ?>
213
+ <p>
214
+ <label for="kad_captcha"><b><?php echo $one.' + '.$two; ?> = </b></label>
215
+ <input type="text" name="kad_captcha" id="kad_captcha" class="required requiredField kad_captcha kad-quarter" />
216
+ <?php if(isset($kad_captchaError)) { ?>
217
+ <label class="error"><?php echo esc_html($kad_captchaError);?></label>
218
+ <?php } ?>
219
+ <input type="hidden" name="hval" id="hval" value="<?php echo esc_attr($result);?>" />
220
+ </p>
221
+ <?php } ?>
222
+ <p>
223
+ <input type="submit" class="kad-btn kad-btn-primary" id="submit" value="<?php _e('Send Email', 'kadencetoolkit'); ?>"></input>
224
+ </p>
225
+ </div><!-- /.contactform-->
226
+ <input type="hidden" name="submitted" id="submitted" value="true" />
227
+ </form>
228
+ <?php } ?>
229
+ </div><!--contactform-->
230
+ <?php } ?>
pagetemplater.php ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Kadence_Page_Templater_Pinnacle {
4
+
5
+
6
+ protected $plugin_slug;
7
+ private static $instance;
8
+ protected $templates;
9
+
10
+ public static function get_instance() {
11
+
12
+ if( null == self::$instance ) {
13
+ self::$instance = new Kadence_Page_Templater_Pinnacle();
14
+ }
15
+ return self::$instance;
16
+ }
17
+ private function __construct() {
18
+
19
+ $this->templates = array();
20
+
21
+ add_filter('page_attributes_dropdown_pages_args', array( $this, 'register_project_templates' ) );
22
+
23
+ add_filter('wp_insert_post_data', array( $this, 'register_project_templates' ) );
24
+
25
+ add_filter('template_include', array( $this, 'view_project_template') );
26
+
27
+ $this->templates = array(
28
+ 'template-contact.php' => __('Contact', 'kadencetoolkit'),
29
+ );
30
+
31
+ }
32
+
33
+ public function register_project_templates( $atts ) {
34
+
35
+ // Create the key used for the themes cache
36
+ $cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );
37
+
38
+ $templates = wp_get_theme()->get_page_templates();
39
+
40
+ if ( empty( $templates ) ) {
41
+ $templates = array();
42
+ }
43
+ // New cache, therefore remove the old one
44
+ wp_cache_delete( $cache_key , 'themes');
45
+
46
+ // Now add our template to the list of templates by merging our templates
47
+ // with the existing templates array from the cache.
48
+ $templates = array_merge( $templates, $this->templates );
49
+
50
+ // Add the modified cache to allow WordPress to pick it up for listing
51
+ // available templates
52
+ wp_cache_add( $cache_key, $templates, 'themes', 1800 );
53
+
54
+ return $atts;
55
+
56
+ }
57
+
58
+ /**
59
+ * Checks if the template is assigned to the page
60
+ */
61
+ public function view_project_template( $template ) {
62
+
63
+ global $post;
64
+
65
+ if (!isset($this->templates[get_post_meta( $post->ID, '_wp_page_template', true )] ) ) {
66
+
67
+ return $template;
68
+
69
+ }
70
+
71
+ $file = plugin_dir_path(__FILE__). get_post_meta( $post->ID, '_wp_page_template', true );
72
+
73
+ // Just to be safe, we check if the file exist first
74
+ if( file_exists( $file ) ) {
75
+ return $file;
76
+ } else {
77
+ echo $file;
78
+ }
79
+
80
+ return $template;
81
+
82
+ }
83
+
84
+ }
85
+ $the_theme = wp_get_theme();
86
+ if( ($the_theme->get( 'Name' ) == 'Pinnacle' || $the_theme->get( 'Template') == 'pinnacle') && ( $the_theme->get( 'Version') >= '1.0.6' ) ) {
87
+ add_action( 'plugins_loaded', array( 'Kadence_Page_Templater_Pinnacle', 'get_instance' ) );
88
+ }
89
+ class Kadence_Page_Templater_Virtue {
90
+
91
+
92
+ protected $plugin_slug;
93
+ private static $instance;
94
+ protected $templates;
95
+
96
+ public static function get_instance() {
97
+
98
+ if( null == self::$instance ) {
99
+ self::$instance = new Kadence_Page_Templater_Virtue();
100
+ }
101
+ return self::$instance;
102
+ }
103
+ private function __construct() {
104
+
105
+ $this->templates = array();
106
+
107
+ add_filter('page_attributes_dropdown_pages_args', array( $this, 'register_project_templates' ) );
108
+
109
+ add_filter('wp_insert_post_data', array( $this, 'register_project_templates' ) );
110
+
111
+ add_filter('template_include', array( $this, 'view_project_template') );
112
+
113
+ $this->templates = array(
114
+ 'page-contact.php' => __('Contact', 'kadencetoolkit'),
115
+ );
116
+
117
+ }
118
+
119
+ public function register_project_templates( $atts ) {
120
+
121
+ // Create the key used for the themes cache
122
+ $cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );
123
+
124
+ $templates = wp_get_theme()->get_page_templates();
125
+
126
+ if ( empty( $templates ) ) {
127
+ $templates = array();
128
+ }
129
+ // New cache, therefore remove the old one
130
+ wp_cache_delete( $cache_key , 'themes');
131
+
132
+ // Now add our template to the list of templates by merging our templates
133
+ // with the existing templates array from the cache.
134
+ $templates = array_merge( $templates, $this->templates );
135
+
136
+ // Add the modified cache to allow WordPress to pick it up for listing
137
+ // available templates
138
+ wp_cache_add( $cache_key, $templates, 'themes', 1800 );
139
+
140
+ return $atts;
141
+
142
+ }
143
+
144
+ /**
145
+ * Checks if the template is assigned to the page
146
+ */
147
+ public function view_project_template( $template ) {
148
+
149
+ global $post;
150
+
151
+ if (!isset($this->templates[get_post_meta( $post->ID, '_wp_page_template', true )] ) ) {
152
+
153
+ return $template;
154
+
155
+ }
156
+
157
+ $file = plugin_dir_path(__FILE__). get_post_meta( $post->ID, '_wp_page_template', true );
158
+
159
+ // Just to be safe, we check if the file exist first
160
+ if( file_exists( $file ) ) {
161
+ return $file;
162
+ } else {
163
+ echo $file;
164
+ }
165
+
166
+ return $template;
167
+
168
+ }
169
+
170
+ }
171
+ $the_theme = wp_get_theme();
172
+ if( ($the_theme->get( 'Name' ) == 'Virtue' || $the_theme->get( 'Template') == 'virtue') && ( $the_theme->get( 'Version') >= '2.3.5' ) ) {
173
+ add_action( 'plugins_loaded', array( 'Kadence_Page_Templater_Virtue', 'get_instance' ) );
174
+ }
post-types.php CHANGED
@@ -1,20 +1,20 @@
1
  <?php
2
  // Custom post types
3
- function portfolio_post_init() {
4
  $portfoliolabels =
1
  <?php
2
  // Custom post types
3
+ function kad_portfolio_post_init() {
4
  $portfoliolabels =