Advanced Custom Fields - Version 4.4.1

Version Description

  • Taxonomy field: Added compatibility for upcoming 'term splitting' in WP 4.2
  • Taxonomy field: Major improvement to save/load setting allowing for different values on multiple sub fields
  • Core: Minor fixes and improvements
Download this release

Release Info

Developer elliotcondon
Plugin Icon 128x128 Advanced Custom Fields
Version 4.4.1
Comparing to
See all releases

Code changes from version 4.4.0 to 4.4.1

acf.php CHANGED
@@ -2,8 +2,8 @@
2
  /*
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
- Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerful API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
6
- Version: 4.4.0
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
@@ -43,7 +43,7 @@ class acf
43
  'path' => apply_filters('acf/helpers/get_path', __FILE__),
44
  'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
45
  'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
46
- 'version' => '4.4.0',
47
  'upgrade_version' => '3.4.1',
48
  'include_3rd_party' => false
49
  );
2
  /*
3
  Plugin Name: Advanced Custom Fields
4
  Plugin URI: http://www.advancedcustomfields.com/
5
+ Description: Customise WordPress with powerful, professional and intuitive fields
6
+ Version: 4.4.1
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
43
  'path' => apply_filters('acf/helpers/get_path', __FILE__),
44
  'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
45
  'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
46
+ 'version' => '4.4.1',
47
  'upgrade_version' => '3.4.1',
48
  'include_3rd_party' => false
49
  );
core/api.php CHANGED
@@ -1483,6 +1483,113 @@ function acf_convert_field_names_to_keys( $value, $field )
1483
  }
1484
 
1485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1486
 
1487
  /*
1488
  * Depreceated Functions
1483
  }
1484
 
1485
 
1486
+ /*
1487
+ * acf_force_type_array
1488
+ *
1489
+ * This function will force a variable to become an array
1490
+ *
1491
+ * @type function
1492
+ * @date 4/02/2014
1493
+ * @since 5.0.0
1494
+ *
1495
+ * @param $var (mixed)
1496
+ * @return (array)
1497
+ */
1498
+
1499
+ function acf_force_type_array( $var ) {
1500
+
1501
+ // is array?
1502
+ if( is_array($var) ) {
1503
+
1504
+ return $var;
1505
+
1506
+ }
1507
+
1508
+
1509
+ // bail early if empty
1510
+ if( empty($var) && !is_numeric($var) ) {
1511
+
1512
+ return array();
1513
+
1514
+ }
1515
+
1516
+
1517
+ // string
1518
+ if( is_string($var) ) {
1519
+
1520
+ return explode(',', $var);
1521
+
1522
+ }
1523
+
1524
+
1525
+ // place in array
1526
+ return array( $var );
1527
+ }
1528
+
1529
+
1530
+ /*
1531
+ * acf_get_valid_terms
1532
+ *
1533
+ * This function will replace old terms with new split term ids
1534
+ *
1535
+ * @type function
1536
+ * @date 27/02/2015
1537
+ * @since 5.1.5
1538
+ *
1539
+ * @param $terms (int|array)
1540
+ * @param $taxonomy (string)
1541
+ * @return $terms
1542
+ */
1543
+
1544
+ function acf_get_valid_terms( $terms = false, $taxonomy = 'category' ) {
1545
+
1546
+ // bail early if function does not yet exist or
1547
+ if( !function_exists('wp_get_split_term') || empty($terms) ) {
1548
+
1549
+ return $terms;
1550
+
1551
+ }
1552
+
1553
+
1554
+ // vars
1555
+ $is_array = is_array($terms);
1556
+
1557
+
1558
+ // force into array
1559
+ $terms = acf_force_type_array( $terms );
1560
+
1561
+
1562
+ // force ints
1563
+ $terms = array_map('intval', $terms);
1564
+
1565
+
1566
+ // attempt to find new terms
1567
+ foreach( $terms as $i => $term_id ) {
1568
+
1569
+ $new_term_id = wp_get_split_term($term_id, $taxonomy);
1570
+
1571
+ if( $new_term_id ) {
1572
+
1573
+ $terms[ $i ] = $new_term_id;
1574
+
1575
+ }
1576
+
1577
+ }
1578
+
1579
+
1580
+ // revert array if needed
1581
+ if( !$is_array ) {
1582
+
1583
+ $terms = $terms[0];
1584
+
1585
+ }
1586
+
1587
+
1588
+ // return
1589
+ return $terms;
1590
+
1591
+ }
1592
+
1593
 
1594
  /*
1595
  * Depreceated Functions
core/fields/google-map.php CHANGED
@@ -234,6 +234,37 @@ class acf_field_google_map extends acf_field
234
  <?php
235
 
236
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  }
238
 
239
  new acf_field_google_map();
234
  <?php
235
 
236
  }
237
+
238
+
239
+ /*
240
+ * update_value()
241
+ *
242
+ * This filter is appied to the $value before it is updated in the db
243
+ *
244
+ * @type filter
245
+ * @since 3.6
246
+ * @date 23/01/13
247
+ *
248
+ * @param $value - the value which will be saved in the database
249
+ * @param $post_id - the $post_id of which the value will be saved
250
+ * @param $field - the field array holding all the field options
251
+ *
252
+ * @return $value - the modified value
253
+ */
254
+
255
+ function update_value( $value, $post_id, $field ) {
256
+
257
+ if( empty($value) || empty($value['lat']) || empty($value['lng']) ) {
258
+
259
+ return false;
260
+
261
+ }
262
+
263
+
264
+ // return
265
+ return $value;
266
+ }
267
+
268
  }
269
 
270
  new acf_field_google_map();
core/fields/taxonomy.php CHANGED
@@ -33,6 +33,49 @@ class acf_field_taxonomy extends acf_field
33
  }
34
 
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /*
37
  * load_value()
38
  *
@@ -49,23 +92,50 @@ class acf_field_taxonomy extends acf_field
49
  * @return $value - the value to be saved in te database
50
  */
51
 
52
- function load_value( $value, $post_id, $field )
53
- {
54
- if( $field['load_save_terms'] )
55
- {
56
- $value = array();
 
 
 
 
 
 
 
 
 
 
57
 
58
- $terms = get_the_terms( $post_id, $field['taxonomy'] );
59
 
60
- if( is_array($terms) ){ foreach( $terms as $term ){
 
 
 
 
 
 
 
 
61
 
62
- $value[] = $term->term_id;
63
 
64
- }}
 
 
 
 
 
 
 
 
 
65
 
66
  }
67
 
68
 
 
69
  return $value;
70
  }
71
 
@@ -86,25 +156,102 @@ class acf_field_taxonomy extends acf_field
86
  * @return $value - the modified value
87
  */
88
 
89
- function update_value( $value, $post_id, $field )
90
- {
91
  // vars
92
- if( is_array($value) )
93
- {
94
  $value = array_filter($value);
 
95
  }
96
 
97
 
98
- if( $field['load_save_terms'] )
99
- {
100
- // Parse values
101
- $value = apply_filters( 'acf/parse_types', $value );
102
-
103
- wp_set_object_terms( $post_id, $value, $field['taxonomy'], false );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  }
105
 
106
 
 
107
  return $value;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  }
109
 
110
 
@@ -124,42 +271,43 @@ class acf_field_taxonomy extends acf_field
124
  * @return $value - the modified value
125
  */
126
 
127
- function format_value_for_api( $value, $post_id, $field )
128
- {
129
- // no value?
130
- if( !$value )
131
- {
132
  return $value;
 
133
  }
134
 
135
 
136
- // temp convert to array
137
- $is_array = true;
138
 
139
- if( !is_array($value) )
140
- {
141
- $is_array = false;
142
- $value = array( $value );
143
- }
144
 
 
 
 
 
 
 
 
 
 
 
145
 
146
- // format
147
- if( $field['return_format'] == 'object' )
148
- {
149
- foreach( $value as $k => $v )
150
- {
151
- $value[ $k ] = get_term( $v, $field['taxonomy'] );
152
- }
153
  }
154
 
155
 
156
- // de-convert from array
157
- if( !$is_array && isset($value[0]) )
158
- {
159
- $value = $value[0];
 
160
  }
161
 
162
- // Note: This function can be removed if not used
 
163
  return $value;
164
  }
165
 
33
  }
34
 
35
 
36
+ /*
37
+ * get_terms
38
+ *
39
+ * This function will return an array of terms for a given field value
40
+ *
41
+ * @type function
42
+ * @date 13/06/2014
43
+ * @since 5.0.0
44
+ *
45
+ * @param $value (array)
46
+ * @return $value
47
+ */
48
+
49
+ function get_terms( $value, $taxonomy = 'category' ) {
50
+
51
+ // load terms in 1 query to save multiple DB calls from following code
52
+ if( count($value) > 1 ) {
53
+
54
+ $terms = get_terms($taxonomy, array(
55
+ 'hide_empty' => false,
56
+ 'include' => $value,
57
+ ));
58
+
59
+ }
60
+
61
+
62
+ // update value to include $post
63
+ foreach( array_keys($value) as $i ) {
64
+
65
+ $value[ $i ] = get_term( $value[ $i ], $taxonomy );
66
+
67
+ }
68
+
69
+
70
+ // filter out null values
71
+ $value = array_filter($value);
72
+
73
+
74
+ // return
75
+ return $value;
76
+ }
77
+
78
+
79
  /*
80
  * load_value()
81
  *
92
  * @return $value - the value to be saved in te database
93
  */
94
 
95
+ function load_value( $value, $post_id, $field ) {
96
+
97
+ // get valid terms
98
+ $value = acf_get_valid_terms($value, $field['taxonomy']);
99
+
100
+
101
+ // load/save
102
+ if( $field['load_save_terms'] ) {
103
+
104
+ // bail early if no value
105
+ if( empty($value) ) {
106
+
107
+ return $value;
108
+
109
+ }
110
 
 
111
 
112
+ // get current ID's
113
+ $term_ids = wp_get_object_terms($post_id, $field['taxonomy'], array('fields' => 'ids', 'orderby' => 'none'));
114
+
115
+
116
+ // case
117
+ if( empty($term_ids) ) {
118
+
119
+ // 1. no terms for this post
120
+ return null;
121
 
122
+ } elseif( is_array($value) ) {
123
 
124
+ // 2. remove metadata terms which are no longer for this post
125
+ $value = array_map('intval', $value);
126
+ $value = array_intersect( $value, $term_ids );
127
+
128
+ } elseif( !in_array($value, $term_ids)) {
129
+
130
+ // 3. term is no longer for this post
131
+ return null;
132
+
133
+ }
134
 
135
  }
136
 
137
 
138
+ // return
139
  return $value;
140
  }
141
 
156
  * @return $value - the modified value
157
  */
158
 
159
+ function update_value( $value, $post_id, $field ) {
160
+
161
  // vars
162
+ if( is_array($value) ) {
163
+
164
  $value = array_filter($value);
165
+
166
  }
167
 
168
 
169
+ // load_save_terms
170
+ if( $field['load_save_terms'] ) {
171
+
172
+ // vars
173
+ $taxonomy = $field['taxonomy'];
174
+
175
+
176
+ // force value to array
177
+ $term_ids = acf_force_type_array( $value );
178
+
179
+
180
+ // convert to int
181
+ $term_ids = array_map('intval', $term_ids);
182
+
183
+
184
+ // bypass $this->set_terms if called directly from update_field
185
+ if( !did_action('acf/save_post') ) {
186
+
187
+ wp_set_object_terms( $post_id, $term_ids, $taxonomy, false );
188
+
189
+ return $value;
190
+
191
+ }
192
+
193
+
194
+ // initialize
195
+ if( empty($this->set_terms) ) {
196
+
197
+ // create holder
198
+ $this->set_terms = array();
199
+
200
+
201
+ // add action
202
+ add_action('acf/save_post', array($this, 'set_terms'), 15, 1);
203
+
204
+ }
205
+
206
+
207
+ // append
208
+ if( empty($this->set_terms[ $taxonomy ]) ) {
209
+
210
+ $this->set_terms[ $taxonomy ] = array();
211
+
212
+ }
213
+
214
+ $this->set_terms[ $taxonomy ] = array_merge($this->set_terms[ $taxonomy ], $term_ids);
215
+
216
  }
217
 
218
 
219
+ // return
220
  return $value;
221
+
222
+ }
223
+
224
+
225
+ /*
226
+ * set_terms
227
+ *
228
+ * description
229
+ *
230
+ * @type function
231
+ * @date 26/11/2014
232
+ * @since 5.0.9
233
+ *
234
+ * @param $post_id (int)
235
+ * @return $post_id (int)
236
+ */
237
+
238
+ function set_terms( $post_id ) {
239
+
240
+ // bail ealry if no terms
241
+ if( empty($this->set_terms) ) {
242
+
243
+ return;
244
+
245
+ }
246
+
247
+
248
+ // loop over terms
249
+ foreach( $this->set_terms as $taxonomy => $term_ids ){
250
+
251
+ wp_set_object_terms( $post_id, $term_ids, $taxonomy, false );
252
+
253
+ }
254
+
255
  }
256
 
257
 
271
  * @return $value - the modified value
272
  */
273
 
274
+ function format_value_for_api( $value, $post_id, $field ) {
275
+
276
+ // bail early if no value
277
+ if( empty($value) ) {
278
+
279
  return $value;
280
+
281
  }
282
 
283
 
284
+ // force value to array
285
+ $value = acf_force_type_array( $value );
286
 
 
 
 
 
 
287
 
288
+ // convert values to int
289
+ $value = array_map('intval', $value);
290
+
291
+
292
+ // load posts if needed
293
+ if( $field['return_format'] == 'object' ) {
294
+
295
+
296
+ // get posts
297
+ $value = $this->get_terms( $value, $field["taxonomy"] );
298
 
 
 
 
 
 
 
 
299
  }
300
 
301
 
302
+ // convert back from array if neccessary
303
+ if( $field['field_type'] == 'select' || $field['field_type'] == 'radio' ) {
304
+
305
+ $value = array_shift($value);
306
+
307
  }
308
 
309
+
310
+ // return
311
  return $value;
312
  }
313
 
core/fields/wysiwyg.php CHANGED
@@ -13,7 +13,7 @@ add_filter( 'acf_the_content', 'convert_smilies' );
13
  add_filter( 'acf_the_content', 'convert_chars' );
14
  add_filter( 'acf_the_content', 'wpautop' );
15
  add_filter( 'acf_the_content', 'shortcode_unautop' );
16
- add_filter( 'acf_the_content', 'prepend_attachment' );
17
  add_filter( 'acf_the_content', 'do_shortcode', 11);
18
 
19
 
13
  add_filter( 'acf_the_content', 'convert_chars' );
14
  add_filter( 'acf_the_content', 'wpautop' );
15
  add_filter( 'acf_the_content', 'shortcode_unautop' );
16
+ //add_filter( 'acf_the_content', 'prepend_attachment' ); *should only be for the_content (causes double image on attachment page)
17
  add_filter( 'acf_the_content', 'do_shortcode', 11);
18
 
19
 
js/input.js CHANGED
@@ -1,9 +1,5 @@
1
 
2
 
3
- /* **********************************************
4
- Begin acf.js
5
- ********************************************** */
6
-
7
  /*
8
  * input.js
9
  *
@@ -947,10 +943,6 @@ var acf = {
947
 
948
  })(jQuery);
949
 
950
- /* **********************************************
951
- Begin ajax.js
952
- ********************************************** */
953
-
954
  (function($){
955
 
956
 
@@ -1215,7 +1207,7 @@ var acf = {
1215
  // validate acf
1216
  if( $(this).closest('.acf-taxonomy-field').exists() )
1217
  {
1218
- if( $(this).closest('.acf-taxonomy-field').attr('data-save') == '0' )
1219
  {
1220
  return;
1221
  }
@@ -1277,10 +1269,6 @@ var acf = {
1277
 
1278
  })(jQuery);
1279
 
1280
- /* **********************************************
1281
- Begin color-picker.js
1282
- ********************************************** */
1283
-
1284
  (function($){
1285
 
1286
  /*
@@ -1361,10 +1349,6 @@ var acf = {
1361
 
1362
  })(jQuery);
1363
 
1364
- /* **********************************************
1365
- Begin date-picker.js
1366
- ********************************************** */
1367
-
1368
  (function($){
1369
 
1370
  /*
@@ -1500,10 +1484,6 @@ var acf = {
1500
 
1501
  })(jQuery);
1502
 
1503
- /* **********************************************
1504
- Begin file.js
1505
- ********************************************** */
1506
-
1507
  (function($){
1508
 
1509
  /*
@@ -1878,10 +1858,6 @@ var acf = {
1878
 
1879
  })(jQuery);
1880
 
1881
- /* **********************************************
1882
- Begin google-map.js
1883
- ********************************************** */
1884
-
1885
  (function($){
1886
 
1887
  /*
@@ -2422,10 +2398,6 @@ var acf = {
2422
 
2423
  })(jQuery);
2424
 
2425
- /* **********************************************
2426
- Begin image.js
2427
- ********************************************** */
2428
-
2429
  (function($){
2430
 
2431
  /*
@@ -2843,10 +2815,6 @@ var acf = {
2843
 
2844
  })(jQuery);
2845
 
2846
- /* **********************************************
2847
- Begin radio.js
2848
- ********************************************** */
2849
-
2850
  (function($){
2851
 
2852
  /*
@@ -2918,10 +2886,6 @@ var acf = {
2918
 
2919
  })(jQuery);
2920
 
2921
- /* **********************************************
2922
- Begin relationship.js
2923
- ********************************************** */
2924
-
2925
  (function($){
2926
 
2927
  /*
@@ -3284,10 +3248,6 @@ var acf = {
3284
 
3285
  })(jQuery);
3286
 
3287
- /* **********************************************
3288
- Begin tab.js
3289
- ********************************************** */
3290
-
3291
  (function($){
3292
 
3293
  acf.fields.tab = {
@@ -3569,10 +3529,6 @@ var acf = {
3569
 
3570
  })(jQuery);
3571
 
3572
- /* **********************************************
3573
- Begin validation.js
3574
- ********************************************** */
3575
-
3576
  (function($){
3577
 
3578
 
@@ -3925,10 +3881,6 @@ var acf = {
3925
 
3926
  })(jQuery);
3927
 
3928
- /* **********************************************
3929
- Begin wysiwyg.js
3930
- ********************************************** */
3931
-
3932
  (function($){
3933
 
3934
  /*
@@ -4484,4 +4436,5 @@ var acf = {
4484
  });
4485
 
4486
 
4487
- })(jQuery);
 
1
 
2
 
 
 
 
 
3
  /*
4
  * input.js
5
  *
943
 
944
  })(jQuery);
945
 
 
 
 
 
946
  (function($){
947
 
948
 
1207
  // validate acf
1208
  if( $(this).closest('.acf-taxonomy-field').exists() )
1209
  {
1210
+ if( $(this).closest('.acf-taxonomy-field').attr('data-load_save') == '0' )
1211
  {
1212
  return;
1213
  }
1269
 
1270
  })(jQuery);
1271
 
 
 
 
 
1272
  (function($){
1273
 
1274
  /*
1349
 
1350
  })(jQuery);
1351
 
 
 
 
 
1352
  (function($){
1353
 
1354
  /*
1484
 
1485
  })(jQuery);
1486
 
 
 
 
 
1487
  (function($){
1488
 
1489
  /*
1858
 
1859
  })(jQuery);
1860
 
 
 
 
 
1861
  (function($){
1862
 
1863
  /*
2398
 
2399
  })(jQuery);
2400
 
 
 
 
 
2401
  (function($){
2402
 
2403
  /*
2815
 
2816
  })(jQuery);
2817
 
 
 
 
 
2818
  (function($){
2819
 
2820
  /*
2886
 
2887
  })(jQuery);
2888
 
 
 
 
 
2889
  (function($){
2890
 
2891
  /*
3248
 
3249
  })(jQuery);
3250
 
 
 
 
 
3251
  (function($){
3252
 
3253
  acf.fields.tab = {
3529
 
3530
  })(jQuery);
3531
 
 
 
 
 
3532
  (function($){
3533
 
3534
 
3881
 
3882
  })(jQuery);
3883
 
 
 
 
 
3884
  (function($){
3885
 
3886
  /*
4436
  });
4437
 
4438
 
4439
+ })(jQuery);
4440
+
js/input.min.js CHANGED
@@ -1,2 +1,2 @@
1
- var acf={ajaxurl:"",admin_url:"",wp_version:"",post_id:0,nonce:"",l10n:null,o:null,helpers:{get_atts:null,version_compare:null,uniqid:null,sortable:null,add_message:null,is_clone_field:null,url_to_object:null},validation:null,conditional_logic:null,media:null,fields:{date_picker:null,color_picker:null,Image:null,file:null,wysiwyg:null,gallery:null,relationship:null}};!function(e){acf.helpers.isset=function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;t>i;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},acf.helpers.get_atts=function(t){var i={};return e.each(t[0].attributes,function(e,t){"data-"==t.name.substr(0,5)&&(i[t.name.replace("data-","")]=t.value)}),i},acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;for(var i=e.split("."),a=t.split("."),n=0,s=Math.max(i.length,a.length);s>n;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])<parseInt(a[n]))return-1}return 0},acf.helpers.uniqid=function(){var e=new Date;return e.getTime()},acf.helpers.url_to_object=function(e){var t={},a=e.split("&");for(i in a){var n=a[i].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return t},acf.helpers.sortable=function(t,i){return i.children().each(function(){e(this).width(e(this).width())}),i},acf.helpers.is_clone_field=function(e){return e.attr("name")&&-1!=e.attr("name").indexOf("[acfcloneindex]")?!0:!1},acf.helpers.add_message=function(t,i){var t=e('<div class="acf-message-wrapper"><div class="message updated"><p>'+t+"</p></div></div>");i.prepend(t),setTimeout(function(){t.animate({opacity:0},250,function(){t.remove()})},1500)},e.fn.exists=function(){return e(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var t=wp.media.view.AttachmentCompat.prototype;t.orig_render=t.render,t.orig_dispose=t.dispose,t.className="compat-item acf_postbox no_box",t.render=function(){var t=this;return t.ignore_render?this:(this.orig_render(),setTimeout(function(){var i=t.$el.closest(".media-modal");if(!i.hasClass("acf-media-modal")&&!i.find(".media-frame-router .acf-expand-details").exists()){var a=e(['<a href="#" class="acf-expand-details">','<span class="icon"></span>','<span class="is-closed">'+acf.l10n.core.expand_details+"</span>",'<span class="is-open">'+acf.l10n.core.collapse_details+"</span>","</a>"].join(""));a.on("click",function(e){e.preventDefault(),i.hasClass("acf-expanded")?i.removeClass("acf-expanded"):i.addClass("acf-expanded")}),i.find(".media-frame-router").append(a)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){e(document).trigger("acf/setup_fields",[t.$el])},50),this)},t.dispose=function(){e(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},t.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var t=this;e(document).on("change",".field input, .field textarea, .field select",function(){e("#acf-has-changed").exists()&&e("#acf-has-changed").val(1),t.change(e(this))}),e(document).on("acf/setup_fields",function(i,a){t.refresh(e(a))}),t.refresh()},change:function(t){var i=this,a=t.closest(".field"),n=a.attr("data-field_key");e.each(this.items,function(t,a){e.each(a.rules,function(e,t){t.field==n&&i.refresh_field(a)})})},refresh_field:function(t){var i=this,a=e(".field_key-"+t.field);a.each(function(){var a=!0;"any"==t.allorany&&(a=!1);var n=e(this),s=!0;e.each(t.rules,function(o,l){var r=e(".field_key-"+l.field);r.hasClass("sub_field")&&(r=n.siblings(".field_key-"+l.field),s=!1,r.exists()||(n.parents("tr").each(function(){return r=e(this).find(".field_key-"+l.field),r.exists()?!1:void 0}),s=!0));var c=n.parent("tr").parent().parent("table").parent(".layout");c.exists()&&(s=!0,n.is("th")&&r.is("th")&&(r=n.closest(".layout").find("td.field_key-"+l.field)));var c=n.parent("tr").parent().parent("table").parent(".repeater");c.exists()&&"1"==c.attr("data-max_rows")&&(s=!0,n.is("th")&&r.is("th")&&(r=n.closest("table").find("td.field_key-"+l.field)));var d=i.calculate(l,r,n);if("all"==t.allorany){if(0==d)return a=!1,!1}else if(1==d)return a=!0,!1}),n.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),a?(n.find("input, textarea, select").removeAttr("disabled"),n.addClass("acf-conditional_logic-show"),e(document).trigger("acf/conditional_logic/show",[n,t])):(n.find("input, textarea, select").attr("disabled","disabled"),n.addClass("acf-conditional_logic-hide"),s||n.addClass("acf-show-blank"),e(document).trigger("acf/conditional_logic/hide",[n,t]))})},refresh:function(t){t=t||e("body");var i=this;e.each(this.items,function(a,n){e.each(n.rules,function(e,a){t.find('.field[data-field_key="'+n.field+'"]').exists()&&i.refresh_field(n)})})},calculate:function(t,i,a){var n=!1;if(i.hasClass("field_type-true_false")||i.hasClass("field_type-checkbox")||i.hasClass("field_type-radio")){var s=i.find('input[value="'+t.value+'"]:checked').exists();"=="==t.operator?s&&(n=!0):s||(n=!0)}else{var o=i.find("input, textarea, select").last().val();e.isArray(o)||(o=[o]),"=="==t.operator?e.inArray(t.value,o)>-1&&(n=!0):e.inArray(t.value,o)<0&&(n=!0)}return n}},e(document).ready(function(){acf.conditional_logic.init(),e(".acf_postbox > .inside > .options").each(function(){e(this).closest(".acf_postbox").addClass(e(this).attr("data-layout"))}),e('#metakeyselect option[value^="field_"]').remove()}),e(window).load(function(){acf.media.init(),setTimeout(function(){try{e.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(t){}e(document).trigger("acf/setup_fields",[e("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function(e){function t(){var t=[];e(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){e(this).is(":hidden")||e(this).is(":disabled")||e(this).closest(".media-frame").exists()||e(this).closest(".acf-taxonomy-field").exists()&&"0"==e(this).closest(".acf-taxonomy-field").attr("data-save")||-1===t.indexOf(e(this).val())&&t.push(e(this).val())}),acf.screen.post_category=t,acf.screen.taxonomy=t,e(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},e(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,e("#icl-als-first").length>0){var t=e("#icl-als-first").children("a").attr("href"),i=new RegExp("lang=([^&#]*)"),a=i.exec(t);acf.screen.lang=a[1]}}),e(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&e.isNumeric(acf.screen.post_id)?void e.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(t){return t?(e(".acf_postbox").addClass("acf-hidden"),e(".acf_postbox-toggle").addClass("acf-hidden"),0==t.length?!1:(e.each(t,function(t,i){var a=e("#acf_"+i),n=e('#adv-settings .acf_postbox-toggle[for="acf_'+i+'-hide"]');a.removeClass("acf-hidden hide-if-js"),n.removeClass("acf-hidden"),n.find('input[type="checkbox"]').attr("checked","checked"),a.find(".acf-replace-with-fields").each(function(){var t=e(this);e.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:i,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(i){t.replaceWith(i),e(document).trigger("acf/setup_fields",a)}})})}),void e.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:t[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e("#acf_style").html(t)}}))):!1}}):!1}),e(document).on("change","#page_template",function(){acf.screen.page_template=e(this).val(),e(document).trigger("acf/update_field_groups")}),e(document).on("change","#parent_id",function(){var t=e(this).val();""!=t?(acf.screen.page_type="child",acf.screen.page_parent=t):(acf.screen.page_type="parent",acf.screen.page_parent=0),e(document).trigger("acf/update_field_groups")}),e(document).on("change",'#post-formats-select input[type="radio"]',function(){var t=e(this).val();"0"==t&&(t="standard"),acf.screen.post_format=t,e(document).trigger("acf/update_field_groups")}),e(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){e(this).closest(".acf-taxonomy-field").exists()&&"0"==e(this).closest(".acf-taxonomy-field").attr("data-save")||e(this).closest(".media-frame").exists()||setTimeout(function(){t()},1)})}(jQuery),function(e){var t=acf.fields.color_picker={$el:null,$input:null,set:function(t){return e.extend(this,t),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};e(document).on("acf/setup_fields",function(i,a){e(a).find(".acf-color_picker").each(function(){t.set({$el:e(this)}).init()})})}(jQuery),function(e){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(t){return e.extend(this,t),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var t=e.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(t),this.$input.datepicker("option","dateFormat",this.o.display_format),e("body > #ui-datepicker-div").length>0&&e("#ui-datepicker-div").wrap('<div class="ui-acf" />')}},blur:function(){this.$input.val()||this.$hidden.val("")}},e(document).on("acf/setup_fields",function(t,i){e(i).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:e(this)}).init()})}),e(document).on("blur",'.acf-date_picker input[type="text"]',function(t){acf.fields.date_picker.set({$el:e(this).parent()}).blur()})}(jQuery),function(e){var t=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(t){return e.extend(this,t),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(e){var i=t.div;i.find(".acf-file-icon").attr("src",e.icon),i.find(".acf-file-title").text(e.title),i.find(".acf-file-name").text(e.name).attr("href",e.url),i.find(".acf-file-size").text(e.size),i.find(".acf-file-value").val(e.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var i=this.$input.val();t.div=this.$el,t.clear_frame(),t.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),t.frame.on("open",function(){"browse"!=t.frame.content._mode&&t.frame.content.mode("browse"),t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var a=t.frame.state().get("selection"),n=wp.media.attachment(i);e.isEmptyObject(n.changed)&&n.fetch(),a.add(n)}),t.frame.on("close",function(){t.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var i=this;return t.div=this.$el,t.clear_frame(),t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(i.o.query),multiple:i.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var t=null,a=null;try{t=acf.media.frame.content.get().toolbar,a=t.get("filters")}catch(n){}return a?void("uploadedTo"==i.o.library&&(a.$el.find('option[value="uploaded"]').remove(),a.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>"),e.each(a.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=t.frame.state().get("selection")){var e=0;selection.each(function(i){if(e++,e>1){var a=t.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),t.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},e(document).on("click",".acf-file-uploader .acf-button-edit",function(t){t.preventDefault(),acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).edit()}),e(document).on("click",".acf-file-uploader .acf-button-delete",function(t){t.preventDefault(),acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).remove()}),e(document).on("click",".acf-file-uploader .add-file",function(t){t.preventDefault(),acf.fields.file.set({$el:e(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function(e){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(t){return e.extend(this,t),this.$input=this.$el.find(".value"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},e(document).on("acf/setup_fields",function(t,i){$fields=e(i).find(".acf-google-map"),$fields.exists()&&("undefined"==typeof google?e.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:e(this)}).init()})}})}):google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:e(this)}).init()})}}))}),e(document).on("click",".acf-google-map .acf-sprite-remove",function(t){t.preventDefault(),acf.fields.google_map.set({$el:e(this).closest(".acf-google-map")}).clear(),e(this).blur()}),e(document).on("click",".acf-google-map .acf-sprite-locate",function(t){t.preventDefault(),acf.fields.google_map.set({$el:e(this).closest(".acf-google-map")}).locate(),e(this).blur()}),e(document).on("click",".acf-google-map .title h4",function(t){t.preventDefault(),acf.fields.google_map.set({$el:e(this).closest(".acf-google-map")}).edit()}),e(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),e(document).on("blur",".acf-google-map .search",function(t){var i=e(this).closest(".acf-google-map");i.find(".input-lat").val()&&i.addClass("active")}),e(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function(e){var t=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(t){return e.extend(this,t),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(e){var i=t.div;i.find(".acf-image-image").attr("src",e.url),i.find(".acf-image-value").val(e.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var i=this.$input.val();t.div=this.$el,t.clear_frame(),t.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),t.frame.on("open",function(){"browse"!=t.frame.content._mode&&t.frame.content.mode("browse"),t.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var a=t.frame.state().get("selection"),n=wp.media.attachment(i);e.isEmptyObject(n.changed)&&n.fetch(),a.add(n)}),t.frame.on("close",function(){t.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var i=this;return t.div=this.$el,t.clear_frame(),t.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(i.o.query),multiple:i.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var t=null,a=null;try{t=acf.media.frame.content.get().toolbar,a=t.get("filters")}catch(n){}return a?(e.each(a.filters,function(e,t){t.props.type="image"}),"uploadedTo"==i.o.library&&(a.$el.find('option[value="uploaded"]').remove(),a.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>"),e.each(a.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),a.$el.find("option").each(function(){var t=e(this).attr("value");("uploaded"!=t||"all"!=i.o.library)&&-1===t.indexOf("image")&&e(this).remove()}),void a.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=t.frame.state().get("selection")){var e=0;selection.each(function(a){if(e++,e>1){var n=t.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),t.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[i.o.preview_size]&&(c.url=a.attributes.sizes[i.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},e(document).on("click",".acf-image-uploader .acf-button-edit",function(t){t.preventDefault(),acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).edit()}),e(document).on("click",".acf-image-uploader .acf-button-delete",function(t){t.preventDefault(),acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).remove()}),e(document).on("click",".acf-image-uploader .add-image",function(t){t.preventDefault(),acf.fields.image.set({$el:e(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function(e){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(t){return e.extend(this,t),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},e(document).on("change",'.acf-radio-list input[type="radio"]',function(t){acf.fields.radio.set({$el:e(this).closest(".acf-radio-list")}).change()})}(jQuery),function(e){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(t){return e.extend(this,t),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var t=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){t.$input.trigger("change")}});var i=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(a){if(!i.hasClass("loading")&&!i.hasClass("no-results")&&e(this).scrollTop()+e(this).innerHeight()>=e(this).get(0).scrollHeight){var n=parseInt(i.attr("data-paged"));i.attr("data-paged",n+1),t.set({$el:i}).fetch()}}),this.fetch()}},fetch:function(){var t=this,i=this.$el;i.addClass("loading"),e.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:e.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(e){t.set({$el:i}).render(e)}})},render:function(t){var i=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),t&&t.html?(this.$el.find(".relationship_left .load-more").before(t.html),t.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var t=e(this).attr("data-post_id");i.$right.find('a[data-post_id="'+t+'"]').exists()&&e(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},n=_.template(acf.l10n.relationship.tmpl_li,a);this.$right.find(".relationship_list").append(n),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},e(document).on("acf/setup_fields",function(t,i){e(i).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:e(this)}).init()})}),e(document).on("change",".acf_relationship .select-post_type",function(t){var i=e(this).val(),a=e(this).closest(".acf_relationship");a.attr("data-post_type",i),a.attr("data-paged",1),acf.fields.relationship.set({$el:a}).fetch()}),e(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(t){t.preventDefault(),acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).add(e(this)),e(this).blur()}),e(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(t){t.preventDefault(),acf.fields.relationship.set({$el:e(this).closest(".acf_relationship")}).remove(e(this)),e(this).blur()}),e(document).on("keyup",".acf_relationship input.relationship_search",function(t){var i=e(this).val(),a=e(this).closest(".acf_relationship");a.attr("data-s",i),a.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:a}).fetch()},500)}),e(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function(e){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="hl clearfix acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap"><ul class="hl clearfix acf-tab-group"></ul></div>',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('<li><a class="acf-tab-button" href="#" data-key="'+a+'">'+n+"</a></li>")},toggle:function(t){var i=this,a=t.closest(".acf-tab-wrap").parent(),n=t.attr("data-key");t.parent("li").addClass("active").siblings("li").removeClass("active"),a.children(".field_type-tab").each(function(){var t=e(this);t.attr("data-field_key")==n?i.show_tab_fields(e(this)):i.hide_tab_fields(e(this))})},show_tab_fields:function(t){t.nextUntil(".field_type-tab").each(function(){e(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),e(document).trigger("acf/fields/tab/show",[e(this)])})},hide_tab_fields:function(t){t.nextUntil(".field_type-tab").each(function(){e(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),e(document).trigger("acf/fields/tab/hide",[e(this)])})},refresh:function(t){var i=this;t.find(".acf-tab-group").each(function(){e(this).find(".acf-tab-button:first").each(function(){i.toggle(e(this))})})}},e(document).on("acf/setup_fields",function(t,i){e(i).find(".acf-tab").each(function(){acf.fields.tab.add_tab(e(this))}),acf.fields.tab.refresh(e(i))}),e(document).on("click",".acf-tab-button",function(t){t.preventDefault(),acf.fields.tab.toggle(e(this)),e(this).trigger("blur")}),e(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),e(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function(e){acf.validation={status:!0,disabled:!1,run:function(){var t=this;t.status=!0,e(".field.required, .form-field.required").each(function(){t.validate(e(this))})},validate:function(t){var i=!1,a=null;if(t.data("validation",!0),t.is(":hidden")&&(i=!0,t.hasClass("acf-tab_group-hide"))){i=!1;var n=t.prevAll(".field_type-tab:first"),s=t.prevAll(".acf-tab-wrap:first");n.hasClass("acf-conditional_logic-hide")?i=!0:a=s.find('.acf-tab-button[data-key="'+n.attr("data-field_key")+'"]')}if(t.hasClass("acf-conditional_logic-hide")&&(i=!0),t.closest(".postbox.acf-hidden").exists()&&(i=!0),!i){if(""==t.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&t.data("validation",!1),t.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){t.data("validation",!0);var o=t.find(".wp-editor-area").attr("id"),l=tinyMCE.get(o);l&&!l.getContent()&&t.data("validation",!1)}if(t.find("select").exists()&&(t.data("validation",!0),"null"!=t.find("select").val()&&t.find("select").val()||t.data("validation",!1)),t.find('input[type="radio"]').exists()&&(t.data("validation",!1),t.find('input[type="radio"]:checked').exists()&&t.data("validation",!0)),t.find('input[type="checkbox"]').exists()&&(t.data("validation",!1),t.find('input[type="checkbox"]:checked').exists()&&t.data("validation",!0)),t.find(".acf_relationship").exists()&&(t.data("validation",!1),t.find(".acf_relationship .relationship_right input").exists()&&t.data("validation",!0)),t.find(".repeater").exists()&&(t.data("validation",!1),t.find(".repeater tr.row").exists()&&t.data("validation",!0)),t.find(".acf-gallery").exists()&&(t.data("validation",!1),t.find(".acf-gallery .thumbnail").exists()&&t.data("validation",!0)),e(document).trigger("acf/validate_field",[t]),!t.data("validation")){if(this.status=!1,t.closest(".field").addClass("error"),t.data("validation_message")){var r=t.find("p.label:first"),c=null;r.children(".acf-error-message").remove(),r.append('<span class="acf-error-message"><i class="bit"></i>'+t.data("validation_message")+"</span>")}a&&a.trigger("click")}}}},e(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(t){e(this).closest(".field").removeClass("error")}),e(document).on("click","#save-post",function(){acf.validation.disabled=!0}),e(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;if(acf.validation.run(),!acf.validation.status){var t=e(this);return t.siblings("#message").remove(),t.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>"),e("#submitdiv").exists()&&(e("#submitdiv").find(".disabled").removeClass("disabled"),e("#submitdiv").find(".button-disabled").removeClass("button-disabled"),e("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),e("#submitdiv .spinner").hide()),!1
2
- }return e(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function(e){var t=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(t){return e.extend(this,t),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var t=this.get_toolbar(),i="mceAddControl",a="theme_advanced_buttons{i}",n=e.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(i="mceAddEditor",a="toolbar{i}"),t)for(var s=1;5>s;s++){var o="";acf.helpers.isset(t,"theme_advanced_buttons"+s)&&(o=t["theme_advanced_buttons"+s]),tinyMCE.settings[a.replace("{i}",s)]=o}tinyMCE.execCommand(i,!1,this.o.id),e(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=n,wpActiveEditor=null}},add_events:function(){var t=this.o.id,i=tinyMCE.get(t);if(i){var a=e("#wp-"+t+"-wrap"),n=e(i.getBody());a.on("click",function(){e(document).trigger("acf/wysiwyg/click",t)}),n.on("focus",function(){e(document).trigger("acf/wysiwyg/focus",t)}),n.on("blur",function(){e(document).trigger("acf/wysiwyg/blur",t)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};e(document).on("acf/setup_fields",function(i,a){t.has_tinymce()&&(e(a).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()}),setTimeout(function(){e(a).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})},0))}),e(document).on("acf/remove_fields",function(i,a){t.has_tinymce()&&a.find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})}),e(document).on("acf/wysiwyg/click",function(t,i){wpActiveEditor=i,container=e("#wp-"+i+"-wrap").closest(".field").removeClass("error")}),e(document).on("acf/wysiwyg/focus",function(t,i){wpActiveEditor=i,container=e("#wp-"+i+"-wrap").closest(".field").removeClass("error")}),e(document).on("acf/wysiwyg/blur",function(t,i){wpActiveEditor=null;var a=tinyMCE.get(i);if(a){var n=a.getElement();a.save(),e(n).trigger("change")}}),e(document).on("acf/sortable_start",function(i,a){t.has_tinymce()&&e(a).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).destroy()})}),e(document).on("acf/sortable_stop",function(i,a){t.has_tinymce()&&e(a).find(".acf_wysiwyg").each(function(){t.set({$el:e(this)}).init()})}),e(window).load(function(){if(t.has_tinymce()){var i=e("#wp-content-wrap").exists(),a=e("#wp-acf_settings-wrap").exists();mode="tmce",a&&e("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){a&&"html"==mode&&e("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){a&&"html"==mode&&e("#acf_settings-html").trigger("click"),i&&t.set({$el:e("#wp-content-wrap")}).add_events()},11)}}),e(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var t=e(this).closest(".acf_wysiwyg"),i=t.attr("data-upload");"no"==i&&e("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery);
1
+ var acf={ajaxurl:"",admin_url:"",wp_version:"",post_id:0,nonce:"",l10n:null,o:null,helpers:{get_atts:null,version_compare:null,uniqid:null,sortable:null,add_message:null,is_clone_field:null,url_to_object:null},validation:null,conditional_logic:null,media:null,fields:{date_picker:null,color_picker:null,Image:null,file:null,wysiwyg:null,gallery:null,relationship:null}};!function($){acf.helpers.isset=function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;i<t;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},acf.helpers.get_atts=function(e){var t={};return $.each(e[0].attributes,function(e,i){"data-"==i.name.substr(0,5)&&(t[i.name.replace("data-","")]=i.value)}),t},acf.helpers.version_compare=function(e,t){if(typeof e+typeof t!="stringstring")return!1;for(var i=e.split("."),a=t.split("."),n=0,s=Math.max(i.length,a.length);s>n;n++){if(i[n]&&!a[n]&&parseInt(i[n])>0||parseInt(i[n])>parseInt(a[n]))return 1;if(a[n]&&!i[n]&&parseInt(a[n])>0||parseInt(i[n])<parseInt(a[n]))return-1}return 0},acf.helpers.uniqid=function(){var e=new Date;return e.getTime()},acf.helpers.url_to_object=function(e){var t={},a=e.split("&");for(i in a){var n=a[i].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1])}return t},acf.helpers.sortable=function(e,t){return t.children().each(function(){$(this).width($(this).width())}),t},acf.helpers.is_clone_field=function(e){return e.attr("name")&&-1!=e.attr("name").indexOf("[acfcloneindex]")?!0:!1},acf.helpers.add_message=function(e,t){var e=$('<div class="acf-message-wrapper"><div class="message updated"><p>'+e+"</p></div></div>");t.prepend(e),setTimeout(function(){e.animate({opacity:0},250,function(){e.remove()})},1500)},$.fn.exists=function(){return $(this).length>0},acf.media={div:null,frame:null,render_timout:null,clear_frame:function(){this.frame&&(this.frame.detach(),this.frame.dispose(),this.frame=null)},type:function(){var e="thickbox";return"undefined"!=typeof wp&&(e="backbone"),e},init:function(){if("backbone"!==this.type())return!1;if(!acf.helpers.isset(wp,"media","view","AttachmentCompat","prototype"))return!1;var e=wp.media.view.AttachmentCompat.prototype;e.orig_render=e.render,e.orig_dispose=e.dispose,e.className="compat-item acf_postbox no_box",e.render=function(){var e=this;return e.ignore_render?this:(this.orig_render(),setTimeout(function(){var t=e.$el.closest(".media-modal");if(!t.hasClass("acf-media-modal")&&!t.find(".media-frame-router .acf-expand-details").exists()){var i=$(['<a href="#" class="acf-expand-details">','<span class="icon"></span>','<span class="is-closed">'+acf.l10n.core.expand_details+"</span>",'<span class="is-open">'+acf.l10n.core.collapse_details+"</span>","</a>"].join(""));i.on("click",function(e){e.preventDefault(),t.hasClass("acf-expanded")?t.removeClass("acf-expanded"):t.addClass("acf-expanded")}),t.find(".media-frame-router").append(i)}},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){$(document).trigger("acf/setup_fields",[e.$el])},50),this)},e.dispose=function(){$(document).trigger("acf/remove_fields",[this.$el]),this.orig_dispose()},e.save=function(e){var t={},i={};e&&e.preventDefault(),_.each(this.$el.serializeArray(),function(e){"[]"===e.name.slice(-2)&&(e.name=e.name.replace("[]",""),"undefined"==typeof i[e.name]&&(i[e.name]=-1),i[e.name]++,e.name+="["+i[e.name]+"]"),t[e.name]=e.value}),this.ignore_render=!0,this.model.saveCompat(t)}}},acf.conditional_logic={items:[],init:function(){var e=this;$(document).on("change",".field input, .field textarea, .field select",function(){$("#acf-has-changed").exists()&&$("#acf-has-changed").val(1),e.change($(this))}),$(document).on("acf/setup_fields",function(t,i){e.refresh($(i))}),e.refresh()},change:function(e){var t=this,i=e.closest(".field"),a=i.attr("data-field_key");$.each(this.items,function(e,i){$.each(i.rules,function(e,n){n.field==a&&t.refresh_field(i)})})},refresh_field:function(e){var t=this,i=$(".field_key-"+e.field);i.each(function(){var i=!0;"any"==e.allorany&&(i=!1);var a=$(this),n=!0;$.each(e.rules,function(s,o){var l=$(".field_key-"+o.field);l.hasClass("sub_field")&&(l=a.siblings(".field_key-"+o.field),n=!1,l.exists()||(a.parents("tr").each(function(){return l=$(this).find(".field_key-"+o.field),l.exists()?!1:void 0}),n=!0));var r=a.parent("tr").parent().parent("table").parent(".layout");r.exists()&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest(".layout").find("td.field_key-"+o.field)));var r=a.parent("tr").parent().parent("table").parent(".repeater");r.exists()&&"1"==r.attr("data-max_rows")&&(n=!0,a.is("th")&&l.is("th")&&(l=a.closest("table").find("td.field_key-"+o.field)));var c=t.calculate(o,l,a);if("all"==e.allorany){if(0==c)return i=!1,!1}else if(1==c)return i=!0,!1}),a.removeClass("acf-conditional_logic-hide acf-conditional_logic-show acf-show-blank"),i?(a.find("input, textarea, select").removeAttr("disabled"),a.addClass("acf-conditional_logic-show"),$(document).trigger("acf/conditional_logic/show",[a,e])):(a.find("input, textarea, select").attr("disabled","disabled"),a.addClass("acf-conditional_logic-hide"),n||a.addClass("acf-show-blank"),$(document).trigger("acf/conditional_logic/hide",[a,e]))})},refresh:function(e){e=e||$("body");var t=this;$.each(this.items,function(i,a){$.each(a.rules,function(i,n){e.find('.field[data-field_key="'+a.field+'"]').exists()&&t.refresh_field(a)})})},calculate:function(e,t,i){var a=!1;if(t.hasClass("field_type-true_false")||t.hasClass("field_type-checkbox")||t.hasClass("field_type-radio")){var n=t.find('input[value="'+e.value+'"]:checked').exists();"=="==e.operator?n&&(a=!0):n||(a=!0)}else{var s=t.find("input, textarea, select").last().val();$.isArray(s)||(s=[s]),"=="==e.operator?$.inArray(e.value,s)>-1&&(a=!0):$.inArray(e.value,s)<0&&(a=!0)}return a}},$(document).ready(function(){acf.conditional_logic.init(),$(".acf_postbox > .inside > .options").each(function(){$(this).closest(".acf_postbox").addClass($(this).attr("data-layout"))}),$('#metakeyselect option[value^="field_"]').remove()}),$(window).load(function(){acf.media.init(),setTimeout(function(){try{$.isNumeric(acf.o.post_id)&&(wp.media.view.settings.post.id=acf.o.post_id)}catch(e){}$(document).trigger("acf/setup_fields",[$("#poststuff")])},10)}),acf.fields.gallery={add:function(){},edit:function(){},update_count:function(){},hide_selected_items:function(){},text:{title_add:"Select Images"}}}(jQuery),function($){function e(){var e=[];$(".categorychecklist input:checked, .acf-taxonomy-field input:checked, .acf-taxonomy-field option:selected").each(function(){$(this).is(":hidden")||$(this).is(":disabled")||$(this).closest(".media-frame").exists()||$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-load_save")||-1===e.indexOf($(this).val())&&e.push($(this).val())}),acf.screen.post_category=e,acf.screen.taxonomy=e,$(document).trigger("acf/update_field_groups")}acf.screen={action:"acf/location/match_field_groups_ajax",post_id:0,page_template:0,page_parent:0,page_type:0,post_category:0,post_format:0,taxonomy:0,lang:0,nonce:0},$(document).ready(function(){if(acf.screen.post_id=acf.o.post_id,acf.screen.nonce=acf.o.nonce,$("#icl-als-first").length>0){var e=$("#icl-als-first").children("a").attr("href"),t=new RegExp("lang=([^&#]*)"),i=t.exec(e);acf.screen.lang=i[1]}}),$(document).on("acf/update_field_groups",function(){return acf.screen.post_id&&$.isNumeric(acf.screen.post_id)?void $.ajax({url:ajaxurl,data:acf.screen,type:"post",dataType:"json",success:function(e){return e?($(".acf_postbox").addClass("acf-hidden"),$(".acf_postbox-toggle").addClass("acf-hidden"),0==e.length?!1:($.each(e,function(e,t){var i=$("#acf_"+t),a=$('#adv-settings .acf_postbox-toggle[for="acf_'+t+'-hide"]');i.removeClass("acf-hidden hide-if-js"),a.removeClass("acf-hidden"),a.find('input[type="checkbox"]').attr("checked","checked"),i.find(".acf-replace-with-fields").each(function(){var e=$(this);$.ajax({url:ajaxurl,data:{action:"acf/post/render_fields",acf_id:t,post_id:acf.o.post_id,nonce:acf.o.nonce},type:"post",dataType:"html",success:function(t){e.replaceWith(t),$(document).trigger("acf/setup_fields",i)}})})}),void $.ajax({url:ajaxurl,data:{action:"acf/post/get_style",acf_id:e[0],nonce:acf.o.nonce},type:"post",dataType:"html",success:function(e){$("#acf_style").html(e)}}))):!1}}):!1}),$(document).on("change","#page_template",function(){acf.screen.page_template=$(this).val(),$(document).trigger("acf/update_field_groups")}),$(document).on("change","#parent_id",function(){var e=$(this).val();""!=e?(acf.screen.page_type="child",acf.screen.page_parent=e):(acf.screen.page_type="parent",acf.screen.page_parent=0),$(document).trigger("acf/update_field_groups")}),$(document).on("change",'#post-formats-select input[type="radio"]',function(){var e=$(this).val();"0"==e&&(e="standard"),acf.screen.post_format=e,$(document).trigger("acf/update_field_groups")}),$(document).on("change",".categorychecklist input, .acf-taxonomy-field input, .acf-taxonomy-field select",function(){$(this).closest(".acf-taxonomy-field").exists()&&"0"==$(this).closest(".acf-taxonomy-field").attr("data-save")||$(this).closest(".media-frame").exists()||setTimeout(function(){e()},1)})}(jQuery),function($){var e=acf.fields.color_picker={$el:null,$input:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this},init:function(){var e=this.$input;acf.helpers.is_clone_field(e)||this.$input.wpColorPicker()}};$(document).on("acf/setup_fields",function(t,i){$(i).find(".acf-color_picker").each(function(){e.set({$el:$(this)}).init()})})}(jQuery),function($){acf.fields.date_picker={$el:null,$input:null,$hidden:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this},init:function(){if(!acf.helpers.is_clone_field(this.$hidden)){this.$input.val(this.$hidden.val());var e=$.extend({},acf.l10n.date_picker,{dateFormat:this.o.save_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day});this.$input.addClass("active").datepicker(e),this.$input.datepicker("option","dateFormat",this.o.display_format),$("body > #ui-datepicker-div").length>0&&$("#ui-datepicker-div").wrap('<div class="ui-acf" />')}},blur:function(){this.$input.val()||this.$hidden.val("")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-date_picker").each(function(){acf.fields.date_picker.set({$el:$(this)}).init()})}),$(document).on("blur",'.acf-date_picker input[type="text"]',function(e){acf.fields.date_picker.set({$el:$(this).parent()}).blur()})}(jQuery),function($){var e=acf.media;acf.fields.file={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-file-icon").attr("src",t.icon),i.find(".acf-file-title").text(t.title),i.find(".acf-file-name").text(t.name).attr("href",t.url),i.find(".acf-file-size").text(t.size),i.find(".acf-file-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.file.edit,multiple:!1,button:{text:acf.l10n.file.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-file-icon").attr("src",""),this.$el.find(".acf-file-title").text(""),this.$el.find(".acf-file-name").text("").attr("href",""),this.$el.find(".acf-file-size").text(""),this.$el.find(".acf-file-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.file.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?void("uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.file.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id}))):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var t=0;selection.each(function(i){if(t++,t>1){var a=e.div.closest("td"),n=a.closest(".row"),s=n.closest(".repeater"),o=a.attr("data-field_key"),l="td .acf-file-uploader:first";o&&(l='td[data-field_key="'+o+'"] .acf-file-uploader'),n.next(".row").exists()||s.find(".add-row-end").trigger("click"),e.div=n.next(".row").find(l)}var r={id:i.id,title:i.attributes.title,name:i.attributes.filename,url:i.attributes.url,icon:i.attributes.icon,size:i.attributes.filesize};acf.fields.file.add(r)})}}),acf.media.frame.open(),!1}},$(document).on("click",".acf-file-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).edit()}),$(document).on("click",".acf-file-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).remove()}),$(document).on("click",".acf-file-uploader .add-file",function(e){e.preventDefault(),acf.fields.file.set({$el:$(this).closest(".acf-file-uploader")}).popup()})}(jQuery),function($){acf.fields.google_map={$el:null,$input:null,o:{},ready:!1,geocoder:!1,map:!1,maps:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find(".value"),this.o=acf.helpers.get_atts(this.$el),this.maps[this.o.id]&&(this.map=this.maps[this.o.id]),this},init:function(){this.geocoder||(this.geocoder=new google.maps.Geocoder),this.ready=!0,acf.helpers.is_clone_field(this.$input)||this.render()},render:function(){var e=this,t=this.$el,i={zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP};this.map=new google.maps.Map(this.$el.find(".canvas")[0],i);var a=new google.maps.places.Autocomplete(this.$el.find(".search")[0]);a.map=this.map,a.bindTo("bounds",this.map),this.map.marker=new google.maps.Marker({draggable:!0,raiseOnDrag:!0,map:this.map}),this.map.$el=this.$el;var n=this.$el.find(".input-lat").val(),s=this.$el.find(".input-lng").val();n&&s&&this.update(n,s).center(),google.maps.event.addListener(a,"place_changed",function(t){var i=this.map.$el,a=i.find(".search").val();i.find(".input-address").val(a),i.find(".title h4").text(a);var n=this.getPlace();if(n.geometry){var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()}else e.geocoder.geocode({address:a},function(t,a){if(a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!t[0])return void console.log("No results found");n=t[0];var s=n.geometry.location.lat(),o=n.geometry.location.lng();e.set({$el:i}).update(s,o).center()})}),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.$el,i=this.map.marker.getPosition(),a=i.lat(),n=i.lng();e.set({$el:t}).update(a,n).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=this.$el,a=t.latLng.lat(),n=t.latLng.lng();e.set({$el:i}).update(a,n).sync()}),this.maps[this.o.id]=this.map},update:function(e,t){var i=new google.maps.LatLng(e,t);return this.$el.find(".input-lat").val(e),this.$el.find(".input-lng").val(t).trigger("change"),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("active"),this.$el.closest(".field").removeClass("error"),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this.$el,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.geocoder.geocode({latLng:i},function(t,i){if(i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.find(".title h4").text(a.formatted_address),e.find(".input-address").val(a.formatted_address).trigger("change")}),this},locate:function(){var e=this,t=this.$el;return navigator.geolocation?(t.find(".title h4").text(acf.l10n.google_map.locating+"..."),t.addClass("active"),void navigator.geolocation.getCurrentPosition(function(i){var a=i.coords.latitude,n=i.coords.longitude;e.set({$el:t}).update(a,n).sync().center()})):(alert(acf.l10n.google_map.browser_support),this)},clear:function(){this.$el.removeClass("active"),this.$el.find(".search").val(""),this.$el.find(".input-address").val(""),this.$el.find(".input-lat").val(""),this.$el.find(".input-lng").val(""),this.map.marker.setVisible(!1)},edit:function(){this.$el.removeClass("active");var e=this.$el.find(".title h4").text();this.$el.find(".search").val(e).focus()},refresh:function(){google.maps.event.trigger(this.map,"resize"),this.center()}},$(document).on("acf/setup_fields",function(e,t){$fields=$(t).find(".acf-google-map"),$fields.exists()&&("undefined"==typeof google?$.getScript("https://www.google.com/jsapi",function(){google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}})}):google.load("maps","3",{other_params:"sensor=false&libraries=places",callback:function(){$fields.each(function(){acf.fields.google_map.set({$el:$(this)}).init()})}}))}),$(document).on("click",".acf-google-map .acf-sprite-remove",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).clear(),$(this).blur()}),$(document).on("click",".acf-google-map .acf-sprite-locate",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).locate(),$(this).blur()}),$(document).on("click",".acf-google-map .title h4",function(e){e.preventDefault(),acf.fields.google_map.set({$el:$(this).closest(".acf-google-map")}).edit()}),$(document).on("keydown",".acf-google-map .search",function(e){return 13==e.which?!1:void 0}),$(document).on("blur",".acf-google-map .search",function(e){var t=$(this).closest(".acf-google-map");t.find(".input-lat").val()&&t.addClass("active")}),$(document).on("acf/fields/tab/show acf/conditional_logic/show",function(e,t){acf.fields.google_map.ready&&"google_map"==t.attr("data-field_type")&&acf.fields.google_map.set({$el:t.find(".acf-google-map")}).refresh()})}(jQuery),function($){var e=acf.media;acf.fields.image={$el:null,$input:null,o:{},set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.helpers.get_atts(this.$el),this.o.multiple=this.$el.closest(".repeater").exists()?!0:!1,this.o.query={type:"image"},"uploadedTo"==this.o.library&&(this.o.query.uploadedTo=acf.o.post_id),this},init:function(){acf.helpers.is_clone_field(this.$input)},add:function(t){var i=e.div;i.find(".acf-image-image").attr("src",t.url),i.find(".acf-image-value").val(t.id).trigger("change"),i.addClass("active"),i.closest(".field").removeClass("error")},edit:function(){var t=this.$input.val();e.div=this.$el,e.clear_frame(),e.frame=wp.media({title:acf.l10n.image.edit,multiple:!1,button:{text:acf.l10n.image.update}}),e.frame.on("open",function(){"browse"!=e.frame.content._mode&&e.frame.content.mode("browse"),e.frame.$el.closest(".media-modal").addClass("acf-media-modal acf-expanded");var i=e.frame.state().get("selection"),a=wp.media.attachment(t);$.isEmptyObject(a.changed)&&a.fetch(),i.add(a)}),e.frame.on("close",function(){e.frame.$el.closest(".media-modal").removeClass("acf-media-modal")}),acf.media.frame.open()},remove:function(){this.$el.find(".acf-image-image").attr("src",""),this.$el.find(".acf-image-value").val("").trigger("change"),this.$el.removeClass("active")},popup:function(){var t=this;return e.div=this.$el,e.clear_frame(),e.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query(t.o.query),multiple:t.o.multiple,title:acf.l10n.image.select,priority:20,filterable:"all"})]}),acf.media.frame.on("content:activate",function(){var e=null,i=null;try{e=acf.media.frame.content.get().toolbar,i=e.get("filters")}catch(a){}return i?($.each(i.filters,function(e,t){t.props.type="image"}),"uploadedTo"==t.o.library&&(i.$el.find('option[value="uploaded"]').remove(),i.$el.after("<span>"+acf.l10n.image.uploadedTo+"</span>"),$.each(i.filters,function(e,t){t.props.uploadedTo=acf.o.post_id})),i.$el.find("option").each(function(){var e=$(this).attr("value");("uploaded"!=e||"all"!=t.o.library)&&-1===e.indexOf("image")&&$(this).remove()}),void i.$el.val("image").trigger("change")):!1}),acf.media.frame.on("select",function(){if(selection=e.frame.state().get("selection"),selection){var i=0;selection.each(function(a){if(i++,i>1){var n=e.div.closest("td"),s=n.closest(".row"),o=s.closest(".repeater"),l=n.attr("data-field_key"),r="td .acf-image-uploader:first";l&&(r='td[data-field_key="'+l+'"] .acf-image-uploader'),s.next(".row").exists()||o.find(".add-row-end").trigger("click"),e.div=s.next(".row").find(r)}var c={id:a.id,url:a.attributes.url};a.attributes.sizes&&a.attributes.sizes[t.o.preview_size]&&(c.url=a.attributes.sizes[t.o.preview_size].url),acf.fields.image.add(c)})}}),acf.media.frame.open(),!1},text:{title_add:"Select Image",title_edit:"Edit Image"}},$(document).on("click",".acf-image-uploader .acf-button-edit",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).edit()}),$(document).on("click",".acf-image-uploader .acf-button-delete",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).remove()}),$(document).on("click",".acf-image-uploader .add-image",function(e){e.preventDefault(),acf.fields.image.set({$el:$(this).closest(".acf-image-uploader")}).popup()})}(jQuery),function($){acf.fields.radio={$el:null,$input:null,$other:null,farbtastic:null,set:function(e){return $.extend(this,e),this.$input=this.$el.find('input[type="radio"]:checked'),this.$other=this.$el.find('input[type="text"]'),this},change:function(){"other"==this.$input.val()?(this.$other.attr("name",this.$input.attr("name")),this.$other.show()):(this.$other.attr("name",""),this.$other.hide())}},$(document).on("change",'.acf-radio-list input[type="radio"]',function(e){acf.fields.radio.set({$el:$(this).closest(".acf-radio-list")}).change()})}(jQuery),function($){acf.fields.relationship={$el:null,$input:null,$left:null,$right:null,o:{},timeout:null,set:function(e){return $.extend(this,e),this.$input=this.$el.children('input[type="hidden"]'),this.$left=this.$el.find(".relationship_left"),this.$right=this.$el.find(".relationship_right"),this.o=acf.helpers.get_atts(this.$el),this},init:function(){var e=this;if(!acf.helpers.is_clone_field(this.$input)){this.$right.find(".relationship_list").height(this.$left.height()-2),this.$right.find(".relationship_list").sortable({axis:"y",items:"> li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){e.$input.trigger("change")}});var t=this.$el;this.$left.find(".relationship_list").scrollTop(0).on("scroll",function(i){if(!t.hasClass("loading")&&!t.hasClass("no-results")&&$(this).scrollTop()+$(this).innerHeight()>=$(this).get(0).scrollHeight){var a=parseInt(t.attr("data-paged"));t.attr("data-paged",a+1),e.set({$el:t}).fetch()}}),this.fetch()}},fetch:function(){var e=this,t=this.$el;t.addClass("loading"),$.ajax({url:acf.o.ajaxurl,type:"post",dataType:"json",data:$.extend({action:"acf/fields/relationship/query_posts",post_id:acf.o.post_id,nonce:acf.o.nonce},this.o),success:function(i){e.set({$el:t}).render(i)}})},render:function(e){var t=this;return this.$el.removeClass("no-results").removeClass("loading"),1==this.o.paged&&this.$el.find(".relationship_left li:not(.load-more)").remove(),e&&e.html?(this.$el.find(".relationship_left .load-more").before(e.html),e.next_page_exists||this.$el.addClass("no-results"),void this.$left.find("a").each(function(){var e=$(this).attr("data-post_id");t.$right.find('a[data-post_id="'+e+'"]').exists()&&$(this).parent().addClass("hide")})):void this.$el.addClass("no-results")},add:function(e){var t=e.attr("data-post_id"),i=e.html();if(this.$right.find("a").length>=this.o.max)return alert(acf.l10n.relationship.max.replace("{max}",this.o.max)),!1;if(e.parent().hasClass("hide"))return!1;e.parent().addClass("hide");var a={post_id:e.attr("data-post_id"),title:e.html(),name:this.$input.attr("name")},n=_.template(acf.l10n.relationship.tmpl_li,a);this.$right.find(".relationship_list").append(n),this.$input.trigger("change"),this.$el.closest(".field").removeClass("error")},remove:function(e){e.parent().remove(),this.$left.find('a[data-post_id="'+e.attr("data-post_id")+'"]').parent("li").removeClass("hide"),this.$input.trigger("change")}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf_relationship").each(function(){acf.fields.relationship.set({$el:$(this)}).init()})}),$(document).on("change",".acf_relationship .select-post_type",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-post_type",t),i.attr("data-paged",1),acf.fields.relationship.set({$el:i}).fetch()}),$(document).on("click",".acf_relationship .relationship_left .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).add($(this)),$(this).blur()}),$(document).on("click",".acf_relationship .relationship_right .relationship_list a",function(e){e.preventDefault(),acf.fields.relationship.set({$el:$(this).closest(".acf_relationship")}).remove($(this)),$(this).blur()}),$(document).on("keyup",".acf_relationship input.relationship_search",function(e){var t=$(this).val(),i=$(this).closest(".acf_relationship");i.attr("data-s",t),i.attr("data-paged",1),clearTimeout(acf.fields.relationship.timeout),acf.fields.relationship.timeout=setTimeout(function(){acf.fields.relationship.set({$el:i}).fetch()},500)}),$(document).on("keypress",".acf_relationship input.relationship_search",function(e){13==e.which&&e.preventDefault()})}(jQuery),function($){acf.fields.tab={add_group:function(e){var t="";t=e.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="hl clearfix acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap"><ul class="hl clearfix acf-tab-group"></ul></div>',e.children(".field_type-tab:first").before(t)},add_tab:function(e){var t=e.closest(".field"),i=t.parent(),a=t.attr("data-field_key"),n=e.text();i.children(".acf-tab-wrap").exists()||this.add_group(i),i.children(".acf-tab-wrap").find(".acf-tab-group").append('<li><a class="acf-tab-button" href="#" data-key="'+a+'">'+n+"</a></li>")},toggle:function(e){var t=this,i=e.closest(".acf-tab-wrap").parent(),a=e.attr("data-key");e.parent("li").addClass("active").siblings("li").removeClass("active"),i.children(".field_type-tab").each(function(){var e=$(this);e.attr("data-field_key")==a?t.show_tab_fields($(this)):t.hide_tab_fields($(this))})},show_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-hide").addClass("acf-tab_group-show"),$(document).trigger("acf/fields/tab/show",[$(this)])})},hide_tab_fields:function(e){e.nextUntil(".field_type-tab").each(function(){$(this).removeClass("acf-tab_group-show").addClass("acf-tab_group-hide"),$(document).trigger("acf/fields/tab/hide",[$(this)])})},refresh:function(e){var t=this;e.find(".acf-tab-group").each(function(){$(this).find(".acf-tab-button:first").each(function(){t.toggle($(this))})})}},$(document).on("acf/setup_fields",function(e,t){$(t).find(".acf-tab").each(function(){acf.fields.tab.add_tab($(this))}),acf.fields.tab.refresh($(t))}),$(document).on("click",".acf-tab-button",function(e){e.preventDefault(),acf.fields.tab.toggle($(this)),$(this).trigger("blur")}),$(document).on("acf/conditional_logic/hide",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');a.is(":hidden")||(a.parent().hide(),a.parent().siblings(":visible").exists()?a.parent().siblings(":visible").first().children("a").trigger("click"):acf.fields.tab.hide_tab_fields(t))}}),$(document).on("acf/conditional_logic/show",function(e,t,i){if("tab"==t.attr("data-field_type")){var a=t.siblings(".acf-tab-wrap").find('a[data-key="'+t.attr("data-field_key")+'"]');if(!a.is(":visible"))return a.parent().show(),a.parent().hasClass("active")?void a.trigger("click"):a.parent().siblings(".active").is(":hidden")?void a.trigger("click"):void 0}})}(jQuery),function($){acf.validation={status:!0,disabled:!1,run:function(){var e=this;e.status=!0,$(".field.required, .form-field.required").each(function(){e.validate($(this))})},validate:function(e){var t=!1,i=null;if(e.data("validation",!0),e.is(":hidden")&&(t=!0,e.hasClass("acf-tab_group-hide"))){t=!1;var a=e.prevAll(".field_type-tab:first"),n=e.prevAll(".acf-tab-wrap:first");a.hasClass("acf-conditional_logic-hide")?t=!0:i=n.find('.acf-tab-button[data-key="'+a.attr("data-field_key")+'"]')}if(e.hasClass("acf-conditional_logic-hide")&&(t=!0),e.closest(".postbox.acf-hidden").exists()&&(t=!0),!t){if(""==e.find('input[type="text"], input[type="email"], input[type="number"], input[type="hidden"], textarea').val()&&e.data("validation",!1),e.find(".acf_wysiwyg").exists()&&"object"==typeof tinyMCE){e.data("validation",!0);var s=e.find(".wp-editor-area").attr("id"),o=tinyMCE.get(s);o&&!o.getContent()&&e.data("validation",!1)}if(e.find("select").exists()&&(e.data("validation",!0),"null"!=e.find("select").val()&&e.find("select").val()||e.data("validation",!1)),e.find('input[type="radio"]').exists()&&(e.data("validation",!1),e.find('input[type="radio"]:checked').exists()&&e.data("validation",!0)),e.find('input[type="checkbox"]').exists()&&(e.data("validation",!1),e.find('input[type="checkbox"]:checked').exists()&&e.data("validation",!0)),e.find(".acf_relationship").exists()&&(e.data("validation",!1),e.find(".acf_relationship .relationship_right input").exists()&&e.data("validation",!0)),e.find(".repeater").exists()&&(e.data("validation",!1),e.find(".repeater tr.row").exists()&&e.data("validation",!0)),e.find(".acf-gallery").exists()&&(e.data("validation",!1),e.find(".acf-gallery .thumbnail").exists()&&e.data("validation",!0)),$(document).trigger("acf/validate_field",[e]),!e.data("validation")){if(this.status=!1,e.closest(".field").addClass("error"),e.data("validation_message")){var l=e.find("p.label:first"),r=null;l.children(".acf-error-message").remove(),l.append('<span class="acf-error-message"><i class="bit"></i>'+e.data("validation_message")+"</span>")}i&&i.trigger("click")}}}},$(document).on("focus click",".field.required input, .field.required textarea, .field.required select",function(e){$(this).closest(".field").removeClass("error")}),$(document).on("click","#save-post",function(){acf.validation.disabled=!0}),$(document).on("submit","#post",function(){if(acf.validation.disabled)return!0;if(acf.validation.run(),!acf.validation.status){var e=$(this);return e.siblings("#message").remove(),e.before('<div id="message" class="error"><p>'+acf.l10n.validation.error+"</p></div>"),$("#submitdiv").exists()&&($("#submitdiv").find(".disabled").removeClass("disabled"),$("#submitdiv").find(".button-disabled").removeClass("button-disabled"),$("#submitdiv").find(".button-primary-disabled").removeClass("button-primary-disabled"),$("#submitdiv .spinner").hide()),!1
2
+ }return $(".acf_postbox.acf-hidden").remove(),!0})}(jQuery),function($){var e=acf.fields.wysiwyg={$el:null,$textarea:null,o:{},set:function(e){return $.extend(this,e),this.$textarea=this.$el.find("textarea"),this.o=acf.helpers.get_atts(this.$el),this.o.id=this.$textarea.attr("id"),this},has_tinymce:function(){var e=!1;return"object"==typeof tinyMCE&&(e=!0),e},get_toolbar:function(){return acf.helpers.isset(this,"toolbars",this.o.toolbar)?this.toolbars[this.o.toolbar]:!1},init:function(){if(!acf.helpers.is_clone_field(this.$textarea)){var e=this.get_toolbar(),t="mceAddControl",i="theme_advanced_buttons{i}",a=$.extend({},tinyMCE.settings);if(4==tinymce.majorVersion&&(t="mceAddEditor",i="toolbar{i}"),e)for(var n=1;5>n;n++){var s="";acf.helpers.isset(e,"theme_advanced_buttons"+n)&&(s=e["theme_advanced_buttons"+n]),tinyMCE.settings[i.replace("{i}",n)]=s}tinyMCE.execCommand(t,!1,this.o.id),$(document).trigger("acf/wysiwyg/load",this.o.id),this.add_events(),tinyMCE.settings=a,wpActiveEditor=null}},add_events:function(){var e=this.o.id,t=tinyMCE.get(e);if(t){var i=$("#wp-"+e+"-wrap"),a=$(t.getBody());i.on("click",function(){$(document).trigger("acf/wysiwyg/click",e)}),a.on("focus",function(){$(document).trigger("acf/wysiwyg/focus",e)}),a.on("blur",function(){$(document).trigger("acf/wysiwyg/blur",e)})}},destroy:function(){var e=this.o.id,t="mceRemoveControl";try{var i=tinyMCE.get(e);if(!i)return;4==tinymce.majorVersion&&(t="mceRemoveEditor");var a=i.getContent();tinyMCE.execCommand(t,!1,e),this.$textarea.val(a)}catch(n){}wpActiveEditor=null}};$(document).on("acf/setup_fields",function(t,i){e.has_tinymce()&&($(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()}),setTimeout(function(){$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})},0))}),$(document).on("acf/remove_fields",function(t,i){e.has_tinymce()&&i.find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/wysiwyg/click",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/focus",function(e,t){wpActiveEditor=t,container=$("#wp-"+t+"-wrap").closest(".field").removeClass("error")}),$(document).on("acf/wysiwyg/blur",function(e,t){wpActiveEditor=null;var i=tinyMCE.get(t);if(i){var a=i.getElement();i.save(),$(a).trigger("change")}}),$(document).on("acf/sortable_start",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).destroy()})}),$(document).on("acf/sortable_stop",function(t,i){e.has_tinymce()&&$(i).find(".acf_wysiwyg").each(function(){e.set({$el:$(this)}).init()})}),$(window).load(function(){if(e.has_tinymce()){var t=$("#wp-content-wrap").exists(),i=$("#wp-acf_settings-wrap").exists();mode="tmce",i&&$("#wp-acf_settings-wrap").hasClass("html-active")&&(mode="html"),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-tmce").trigger("click")},1),setTimeout(function(){i&&"html"==mode&&$("#acf_settings-html").trigger("click"),t&&e.set({$el:$("#wp-content-wrap")}).add_events()},11)}}),$(document).on("click",".acf_wysiwyg a.mce_fullscreen",function(){var e=$(this).closest(".acf_wysiwyg"),t=e.attr("data-upload");"no"==t&&$("#mce_fullscreen_container td.mceToolbar .mce_add_media").remove()})}(jQuery);
lang/acf-he_IL.mo CHANGED
Binary file
lang/acf-he_IL.po CHANGED
@@ -1,1803 +1,2817 @@
1
- # Copyright (C) 2014
2
- # This file is distributed under the same license as the package.
 
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: acf he_IL\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
7
- "POT-Creation-Date: 2014-01-05 07:41:49+00:00\n"
8
- "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-03-26 12:13+0200\n"
12
- "Last-Translator: erez lieberman <erez2613@gmail.com>\n"
13
- "Language-Team: Erez Lieberman <mail@studio-hitchadshut.co.il>\n"
14
- "X-Generator: Poedit 1.6.3\n"
15
- "Language: he_IL\n"
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- #: acf.php:455
18
- msgid "Field&nbsp;Groups"
19
- msgstr "קבוצות&nbsp;שדה"
 
 
 
20
 
21
- #: acf.php:456 core/controllers/field_groups.php:214
22
- msgid "Advanced Custom Fields"
23
- msgstr "אדבנסד קוסטם פילדס"
 
 
 
24
 
25
- #: acf.php:457
26
- msgid "Add New"
27
- msgstr "הוסף חדש"
 
 
 
28
 
29
- #: acf.php:458
30
- msgid "Add New Field Group"
31
- msgstr "הוסף קבוצת שדות חדשה"
 
 
 
32
 
33
- #: acf.php:459
34
- msgid "Edit Field Group"
35
- msgstr "ערוך קבוצתת שדות"
 
 
 
36
 
37
- #: acf.php:460
38
- msgid "New Field Group"
39
- msgstr "קבוצת שדות חדשה"
 
 
 
40
 
41
- #: acf.php:461
42
- msgid "View Field Group"
43
- msgstr "צפה בקבוצת שדות"
 
 
 
44
 
45
- #: acf.php:462
46
- msgid "Search Field Groups"
47
- msgstr "חפש קבוצת שדות"
 
 
 
48
 
49
- #: acf.php:463
50
- msgid "No Field Groups found"
51
- msgstr "שום קבוצת שדות לא נמצאה"
 
 
 
52
 
53
- #: acf.php:464
54
- msgid "No Field Groups found in Trash"
55
- msgstr "שום קבוצת שדות לא נמצאה באשפה"
 
 
 
56
 
57
- #: acf.php:567 core/views/meta_box_options.php:99
58
- msgid "Custom Fields"
59
- msgstr "קסטם פילדס"
 
 
 
60
 
61
- #: acf.php:585 acf.php:588
 
 
 
62
  msgid "Field group updated."
63
  msgstr "קבוצת שדות עודכנה"
64
 
65
- #: acf.php:586
66
- msgid "Custom field updated."
67
- msgstr "שדה אישי עודכן"
 
 
 
68
 
69
- #: acf.php:587
70
- msgid "Custom field deleted."
71
- msgstr "שדה אישי נמחק"
 
 
 
72
 
73
- #. translators: %s: date and time of the revision
74
- #: acf.php:590
75
- msgid "Field group restored to revision from %s"
76
- msgstr "קבוצת שדות שוחזרה לגרסה מ% s"
 
 
77
 
78
- #: acf.php:591
79
- msgid "Field group published."
80
- msgstr " קבוצת שדות פורסמה"
 
 
 
81
 
82
- #: acf.php:592
83
- msgid "Field group saved."
84
- msgstr "קבוצת שדות נשמרה"
 
 
 
85
 
86
- #: acf.php:593
87
- msgid "Field group submitted."
88
- msgstr "קבוצת שדות נשלחה"
 
 
 
89
 
90
- #: acf.php:594
91
- msgid "Field group scheduled for."
92
- msgstr "קבוצת שדות מתוכננת ל"
 
 
 
93
 
94
- #: acf.php:595
95
- msgid "Field group draft updated."
96
- msgstr "טיוטת קבוצת שדות עודכנה"
 
 
 
97
 
98
- #: acf.php:730
99
- msgid "Thumbnail"
100
- msgstr "תמונה ממוזערת"
 
 
 
101
 
102
- #: acf.php:731
103
- msgid "Medium"
104
- msgstr "בינוני"
 
 
 
 
 
 
 
 
 
 
105
 
106
- #: acf.php:732
107
- msgid "Large"
108
- msgstr "גדול"
 
 
 
109
 
110
- #: acf.php:733
111
- msgid "Full"
112
- msgstr "מלא"
 
 
 
113
 
114
- #: core/actions/export.php:26 core/views/meta_box_fields.php:58
115
- msgid "Error"
116
- msgstr "תקלה"
 
 
 
117
 
118
- #: core/actions/export.php:33
119
- msgid "No ACF groups selected"
120
- msgstr "שום קבוצות שדות acf לא נבחרה"
 
 
 
121
 
122
- #: core/api.php:1162
123
- msgid "Update"
124
- msgstr "לעדכן"
 
 
 
125
 
126
- #: core/api.php:1163
127
- msgid "Post updated"
128
- msgstr "פוסט עודכן"
 
 
 
129
 
130
- #: core/controllers/addons.php:42 core/controllers/field_groups.php:307
131
- msgid "Add-ons"
132
- msgstr "הרחבות"
 
 
 
133
 
134
- #: core/controllers/addons.php:130 core/controllers/field_groups.php:429
135
- msgid "Repeater Field"
136
- msgstr "שדה ריפיטר"
 
 
 
137
 
138
- #: core/controllers/addons.php:131
139
- msgid "Create infinite rows of repeatable data with this versatile interface!"
140
- msgstr "צור עמודות ללא הגבלה של מידע שחוזר על עצמו עם ממשק פשוט ונח"
 
 
 
141
 
142
- #: core/controllers/addons.php:137 core/controllers/field_groups.php:437
143
- msgid "Gallery Field"
144
- msgstr "שדה גלריה"
 
 
 
145
 
146
- #: core/controllers/addons.php:138
147
- msgid "Create image galleries in a simple and intuitive interface!"
148
- msgstr "יצירת גלריות תמונות בממשק פשוט ואינטואיטיבי!"
 
 
 
149
 
150
- #: core/controllers/addons.php:144 core/controllers/field_groups.php:445
151
- msgid "Options Page"
152
- msgstr "עמוד אפשרויות"
 
 
 
153
 
154
- #: core/controllers/addons.php:145
155
- msgid "Create global data to use throughout your website!"
156
- msgstr "צור עמוד אפשרויות אישי לשימוש באתר שלך!"
 
 
 
157
 
158
- #: core/controllers/addons.php:151
159
- msgid "Flexible Content Field"
160
- msgstr "שדה תוכן גמיש"
 
 
 
161
 
162
- #: core/controllers/addons.php:152
163
- msgid "Create unique designs with a flexible content layout manager!"
164
- msgstr "צור עיצובים ייחודיים עם מנהל פריסת תוכן גמיש ונח!"
 
 
 
165
 
166
- #: core/controllers/addons.php:161
167
- msgid "Gravity Forms Field"
168
- msgstr "שדה גרביטי פורמס"
 
 
 
169
 
170
- #: core/controllers/addons.php:162
171
- msgid "Creates a select field populated with Gravity Forms!"
172
- msgstr "צור רשימה מותאמת לטפסי הgravity forms שלך!"
 
 
 
173
 
174
- #: core/controllers/addons.php:168
175
- msgid "Date & Time Picker"
176
- msgstr "פיקר תאריך וזמן"
 
 
 
177
 
178
- #: core/controllers/addons.php:169
179
- msgid "jQuery date & time picker"
180
- msgstr "פיקר תאריך וזמן בjQuary"
 
 
 
181
 
182
- #: core/controllers/addons.php:175
183
- msgid "Location Field"
184
- msgstr "שדה מיקום"
 
 
 
185
 
186
- #: core/controllers/addons.php:176
187
- msgid "Find addresses and coordinates of a desired location"
188
- msgstr "מצא את הכתובות והקואורדינטות של המיקום הרצוי"
 
 
 
189
 
190
- #: core/controllers/addons.php:182
191
- msgid "Contact Form 7 Field"
192
- msgstr "שדה contact form 7"
 
 
 
193
 
194
- #: core/controllers/addons.php:183
195
- msgid "Assign one or more contact form 7 forms to a post"
196
- msgstr "הקצאת טופס contact form 7 אחד או יותר לפוסט"
 
 
 
197
 
198
- #: core/controllers/addons.php:193
199
- msgid "Advanced Custom Fields Add-Ons"
200
- msgstr "הרחבות אדבנסד קוסטם פילדס"
 
 
 
201
 
202
- #: core/controllers/addons.php:196
203
- msgid ""
204
- "The following Add-ons are available to increase the functionality of the "
205
- "Advanced Custom Fields plugin."
206
- msgstr "ההרחבות הבאות זמינות כדי להגביר את הפונקציונליות של התוסף ACF."
 
207
 
208
- #: core/controllers/addons.php:197
209
- msgid ""
210
- "Each Add-on can be installed as a separate plugin (receives updates) or "
211
- "included in your theme (does not receive updates)."
212
- msgstr ""
213
- "כל הרחבה(add-on) יכולה להיות מותקנת בתור תוסף נפרד (שמקבל עדכונים) או מוטמעת "
214
- "בתור חלק מהתבנית(לא מקבלת עדכונים)."
215
 
216
- #: core/controllers/addons.php:219 core/controllers/addons.php:240
217
- msgid "Installed"
218
- msgstr "הותקן"
 
 
 
219
 
220
- #: core/controllers/addons.php:221
221
- msgid "Purchase & Install"
222
- msgstr "לרכוש ולהתקין"
 
 
 
223
 
224
- #: core/controllers/addons.php:242 core/controllers/field_groups.php:422
225
- #: core/controllers/field_groups.php:431 core/controllers/field_groups.php:439
226
- #: core/controllers/field_groups.php:447 core/controllers/field_groups.php:455
227
- msgid "Download"
228
- msgstr "הורדה"
 
229
 
230
- #: core/controllers/export.php:50 core/controllers/export.php:159
231
- msgid "Export"
232
- msgstr "יצוא"
 
 
 
233
 
234
- #: core/controllers/export.php:216
235
- msgid "Export Field Groups"
236
- msgstr "יצא קבוצות שדות"
 
 
 
237
 
238
- #: core/controllers/export.php:221
239
- msgid "Field Groups"
240
- msgstr "קבוצות שדות"
 
 
 
241
 
242
- #: core/controllers/export.php:222
243
- msgid "Select the field groups to be exported"
244
- msgstr "בחר את קבוצת השדות שברצונך ליצא"
 
 
 
245
 
246
- #: core/controllers/export.php:239 core/controllers/export.php:252
247
- msgid "Export to XML"
248
- msgstr "יצוא לxml"
 
 
 
249
 
250
- #: core/controllers/export.php:242 core/controllers/export.php:267
251
- msgid "Export to PHP"
252
- msgstr "יצוא לphp"
 
 
 
253
 
254
- #: core/controllers/export.php:253
255
- msgid ""
256
- "ACF will create a .xml export file which is compatible with the native WP "
257
- "import plugin."
258
- msgstr ""
259
- "ACF יצור קובץ יצוא מסוג .xml שמתאים לתוסף היבוא הרשמי של וורדפרס(WP import "
260
- "plugin)"
261
 
262
- #: core/controllers/export.php:254
263
- msgid ""
264
- "Imported field groups <b>will</b> appear in the list of editable field "
265
- "groups. This is useful for migrating fields groups between Wp websites."
266
- msgstr ""
267
- "קבוצות שדה מיובאות יופיעו ברשימה של קבוצות שדה הניתנות לעריכה. האפשרות הזו "
268
- "שימושית להעברת קבוצות שדות בין אתרי WP שונים."
269
 
270
- #: core/controllers/export.php:256
271
- msgid "Select field group(s) from the list and click \"Export XML\""
272
- msgstr "בחר קבוצת או קבוצות שדות מתוך הרשימה ולחץ על - יצא לxml"
 
 
 
273
 
274
- #: core/controllers/export.php:257
275
- msgid "Save the .xml file when prompted"
276
- msgstr "שמור את הקובץ הxml כאשר תתבקש"
 
 
 
277
 
278
- #: core/controllers/export.php:258
279
- msgid "Navigate to Tools &raquo; Import and select WordPress"
280
- msgstr "נווט אל כלים »יבוא ובחר וורדפרס "
 
 
 
281
 
282
- #: core/controllers/export.php:259
283
- msgid "Install WP import plugin if prompted"
284
- msgstr "התקן את תוסף יבוא WP, אם תתבקש"
 
 
 
285
 
286
- #: core/controllers/export.php:260
287
- msgid "Upload and import your exported .xml file"
288
- msgstr "להעלות ולייבא את קובץ ה-XML שיצאת."
 
 
 
289
 
290
- #: core/controllers/export.php:261
291
- msgid "Select your user and ignore Import Attachments"
292
- msgstr "בחר את המשתמש שלך והתעלם מיבוא קבצים מצורפים"
 
 
 
293
 
294
- #: core/controllers/export.php:262
295
- msgid "That's it! Happy WordPressing"
296
- msgstr "זהו! כתיבה נעימה"
 
 
 
297
 
298
- #: core/controllers/export.php:268
299
- msgid "ACF will create the PHP code to include in your theme."
300
- msgstr "ACF יצור את קוד הphp שתטמיע בתבנית שלך."
 
 
 
301
 
302
- #: core/controllers/export.php:269 core/controllers/export.php:310
303
- msgid ""
304
- "Registered field groups <b>will not</b> appear in the list of editable field "
305
- "groups. This is useful for including fields in themes."
306
- msgstr ""
307
- "קבוצות שדה רשומים לא יופיעו ברשימה של קבוצות שדות הניתנות לעריכה. זה מאוד "
308
- "שימושי כאשר מטמיעים שדות בתבניות."
309
 
310
- #: core/controllers/export.php:270 core/controllers/export.php:311
311
- msgid ""
312
- "Please note that if you export and register field groups within the same WP, "
313
- "you will see duplicate fields on your edit screens. To fix this, please move "
314
- "the original field group to the trash or remove the code from your functions."
315
- "php file."
316
- msgstr ""
317
- "שים לב שאם אתה מייצא ומגדיר קבוצות שדות באותו אתר, אתה תראה שדות כפולים במסך "
318
- "העריכה שלך. כדי לתקן זאת, בבקשה העבר את קבוצת השדה המקורית לפח או הסר את "
319
- "הקוד מקובץ functions.php שלך."
320
 
321
- #: core/controllers/export.php:272
322
- msgid "Select field group(s) from the list and click \"Create PHP\""
323
- msgstr "בחר קבוצת או קבוצות שדות מתוך הרשימה ולחץ על צור php"
 
 
 
324
 
325
- #: core/controllers/export.php:273 core/controllers/export.php:302
326
- msgid "Copy the PHP code generated"
327
- msgstr "העתק את קוד הphp שנוצר"
 
 
 
328
 
329
- #: core/controllers/export.php:274 core/controllers/export.php:303
330
- msgid "Paste into your functions.php file"
331
- msgstr "הדבק לקובץ function.php שלך"
 
 
 
332
 
333
- #: core/controllers/export.php:275 core/controllers/export.php:304
334
- msgid "To activate any Add-ons, edit and use the code in the first few lines."
335
- msgstr "כדי להפעיל כל הרחבה, לערוך ולהשתמש בקוד בכמה השורות הראשונות."
 
 
 
336
 
337
- #: core/controllers/export.php:295
338
- msgid "Export Field Groups to PHP"
339
- msgstr "יצא קבוצות שדות לphp"
 
 
 
 
 
 
 
 
 
 
340
 
341
- #: core/controllers/export.php:300 core/fields/tab.php:65
342
- msgid "Instructions"
343
- msgstr "הוראות"
 
 
 
344
 
345
- #: core/controllers/export.php:309
346
- msgid "Notes"
347
- msgstr "הודעות"
 
 
 
348
 
349
- #: core/controllers/export.php:316
350
- msgid "Include in theme"
351
- msgstr "להטמיע בתבנית"
 
 
 
352
 
353
- #: core/controllers/export.php:317
354
- msgid ""
355
- "The Advanced Custom Fields plugin can be included within a theme. To do so, "
356
- "move the ACF plugin inside your theme and add the following code to your "
357
- "functions.php file:"
358
- msgstr ""
359
- "התוסף ACF יכול להיות כלול בתוך התבנית. לשם כך, הזז את תוסף ACF אל תוך התבנית "
360
- "שלך והוסף את הקוד הבא לקובץ functions.php שלך:"
361
 
362
- #: core/controllers/export.php:323
363
- msgid ""
364
- "To remove all visual interfaces from the ACF plugin, you can use a constant "
365
- "to enable lite mode. Add the following code to your functions.php file "
366
- "<b>before</b> the include_once code:"
367
- msgstr ""
368
- "כדי להסיר את כל הממשקים החזותיים מתוסף ACF, אתה יכול להשתמש קבוע כדי לאפשר "
369
- "מצב לייט. הוסף את הקוד הבא לקובץ functions.php לפני הקוד include_once:"
370
 
371
- #: core/controllers/export.php:331
372
- msgid "Back to export"
373
- msgstr "חזרה ליצוא"
 
 
 
374
 
375
- #: core/controllers/export.php:400
376
- msgid "No field groups were selected"
377
- msgstr "שום קבוצת שדות לא נבחרה"
 
 
 
378
 
379
- #: core/controllers/field_group.php:358
380
- msgid "Move to trash. Are you sure?"
381
- msgstr "מועבר לאשפה. האם אתה בטוח?"
 
 
 
382
 
383
- #: core/controllers/field_group.php:359
384
- msgid "checked"
385
- msgstr "מסומן"
 
 
 
386
 
387
- #: core/controllers/field_group.php:360
388
- msgid "No toggle fields available"
389
- msgstr "אין שדות toggle זמינים"
 
 
 
390
 
391
- #: core/controllers/field_group.php:361
392
- msgid "Field group title is required"
393
- msgstr "כותרת קבוצת שדות - חובה"
 
 
 
394
 
395
- #: core/controllers/field_group.php:362
396
- msgid "copy"
397
- msgstr "העתק"
 
 
 
398
 
399
- #: core/controllers/field_group.php:363 core/views/meta_box_location.php:62
400
- #: core/views/meta_box_location.php:159
401
- msgid "or"
402
- msgstr "או"
 
 
403
 
404
- #: core/controllers/field_group.php:364 core/controllers/field_group.php:395
405
- #: core/controllers/field_group.php:457 core/controllers/field_groups.php:148
406
- msgid "Fields"
407
- msgstr "שדות"
 
 
408
 
409
- #: core/controllers/field_group.php:365
410
- msgid "Parent fields"
411
- msgstr "שדות הורים"
 
 
 
412
 
413
- #: core/controllers/field_group.php:366
414
- msgid "Sibling fields"
415
- msgstr "שדות אחים"
 
 
 
416
 
417
- #: core/controllers/field_group.php:367
418
- msgid "Hide / Show All"
419
- msgstr "הצג/הסתר הכל"
 
 
 
420
 
421
- #: core/controllers/field_group.php:396
422
- msgid "Location"
423
- msgstr "מיקום"
 
 
 
424
 
425
- #: core/controllers/field_group.php:397
426
- msgid "Options"
427
- msgstr "אפשרויות"
 
 
 
428
 
429
- #: core/controllers/field_group.php:459
430
- msgid "Show Field Key:"
431
- msgstr "הצג מפתח שדה:"
 
 
 
432
 
433
- #: core/controllers/field_group.php:460 core/fields/page_link.php:138
434
- #: core/fields/page_link.php:159 core/fields/post_object.php:328
435
- #: core/fields/post_object.php:349 core/fields/select.php:224
436
- #: core/fields/select.php:243 core/fields/taxonomy.php:343
437
- #: core/fields/user.php:285 core/fields/wysiwyg.php:256
438
- #: core/views/meta_box_fields.php:195 core/views/meta_box_fields.php:218
439
- msgid "No"
440
- msgstr "לא"
441
 
442
- #: core/controllers/field_group.php:461 core/fields/page_link.php:137
443
- #: core/fields/page_link.php:158 core/fields/post_object.php:327
444
- #: core/fields/post_object.php:348 core/fields/select.php:223
445
- #: core/fields/select.php:242 core/fields/taxonomy.php:342
446
- #: core/fields/user.php:284 core/fields/wysiwyg.php:255
447
- #: core/views/meta_box_fields.php:194 core/views/meta_box_fields.php:217
448
- msgid "Yes"
449
- msgstr "כן"
450
 
451
- #: core/controllers/field_group.php:645
452
- msgid "Front Page"
453
- msgstr "עמוד ראשי"
 
 
 
454
 
455
- #: core/controllers/field_group.php:646
456
- msgid "Posts Page"
457
- msgstr "עמוד פוסטים"
 
 
 
458
 
459
- #: core/controllers/field_group.php:647
460
- msgid "Top Level Page (parent of 0)"
461
- msgstr "דף ברמה הגבוהה ביותר - טופ לבל פייג"
 
 
 
462
 
463
- #: core/controllers/field_group.php:648
464
- msgid "Parent Page (has children)"
465
- msgstr "עמוד הורה - יש לו עמודים ילדים"
 
 
 
466
 
467
- #: core/controllers/field_group.php:649
468
- msgid "Child Page (has parent)"
469
- msgstr "דף ילד(יש לו דף אב)"
 
 
 
470
 
471
- #: core/controllers/field_group.php:657
472
- msgid "Default Template"
473
- msgstr "טמפלט ברירת המחדל"
 
 
 
474
 
475
- #: core/controllers/field_group.php:734
476
- msgid "Publish"
477
- msgstr "פורסם"
 
 
 
478
 
479
- #: core/controllers/field_group.php:735
480
- msgid "Pending Review"
481
- msgstr "ממתין לסקירה"
 
 
 
482
 
483
- #: core/controllers/field_group.php:736
484
- msgid "Draft"
485
- msgstr "טיוטה"
 
 
 
486
 
487
- #: core/controllers/field_group.php:737
488
- msgid "Future"
489
- msgstr "עתידי"
 
 
 
490
 
491
- #: core/controllers/field_group.php:738
492
- msgid "Private"
493
- msgstr "פרטי"
 
 
 
494
 
495
- #: core/controllers/field_group.php:739
496
- msgid "Revision"
497
- msgstr "גרסת עריכה"
 
 
 
498
 
499
- #: core/controllers/field_group.php:740
500
- msgid "Trash"
501
- msgstr "אשפה"
 
 
 
502
 
503
- #: core/controllers/field_group.php:753
504
- msgid "Super Admin"
505
- msgstr "סופר אדמין"
 
 
 
506
 
507
- #: core/controllers/field_group.php:768 core/controllers/field_group.php:789
508
- #: core/controllers/field_group.php:796 core/fields/file.php:186
509
- #: core/fields/image.php:170 core/fields/page_link.php:109
510
- #: core/fields/post_object.php:274 core/fields/post_object.php:298
511
- #: core/fields/relationship.php:598 core/fields/relationship.php:622
512
- #: core/fields/user.php:229
513
- msgid "All"
514
- msgstr "כל"
515
 
516
- #: core/controllers/field_groups.php:147
517
- msgid "Title"
518
- msgstr "כותרת"
 
 
 
 
 
 
 
 
 
 
519
 
520
- #: core/controllers/field_groups.php:216 core/controllers/field_groups.php:253
521
- msgid "Changelog"
522
- msgstr "גרסאות"
 
 
 
523
 
524
- #: core/controllers/field_groups.php:217
525
- msgid "See what's new in"
526
- msgstr "בואו לראות מה חדש ב"
 
 
 
527
 
528
- #: core/controllers/field_groups.php:217
529
- msgid "version"
530
- msgstr "גרסה"
 
 
 
531
 
532
- #: core/controllers/field_groups.php:219
533
- msgid "Resources"
534
- msgstr "משאבים"
 
 
 
535
 
536
- #: core/controllers/field_groups.php:221
537
- msgid "Getting Started"
538
- msgstr "תחילת עבודה"
 
 
 
539
 
540
- #: core/controllers/field_groups.php:222
541
- msgid "Field Types"
542
- msgstr "סוגי שדה"
 
 
 
543
 
544
- #: core/controllers/field_groups.php:223
545
- msgid "Functions"
546
- msgstr "פונקציות"
 
 
 
547
 
548
- #: core/controllers/field_groups.php:224
549
- msgid "Actions"
550
- msgstr "פעולות"
 
 
 
551
 
552
- #: core/controllers/field_groups.php:225 core/fields/relationship.php:641
553
- msgid "Filters"
554
- msgstr "מסננים"
 
 
 
555
 
556
- #: core/controllers/field_groups.php:226
557
- msgid "'How to' guides"
558
- msgstr "מדריכים"
 
 
 
559
 
560
- #: core/controllers/field_groups.php:227
561
- msgid "Tutorials"
562
- msgstr "הדרכות"
 
 
 
563
 
564
- #: core/controllers/field_groups.php:232
565
- msgid "Created by"
566
- msgstr "נוצר בידי"
 
 
 
567
 
568
- #: core/controllers/field_groups.php:244
569
- msgid "Welcome to Advanced Custom Fields"
570
- msgstr "ברוכים הבאים לאדבנסד קוסטם פילדס"
 
 
 
571
 
572
- #: core/controllers/field_groups.php:245
573
- msgid "Thank you for updating to the latest version!"
574
- msgstr "תודה על עדכון לגרסה העדכנית ביותר!"
 
 
 
575
 
576
- #: core/controllers/field_groups.php:245
577
- msgid "is more polished and enjoyable than ever before. We hope you like it."
578
- msgstr "הוא יותר מלוטש ומהנה יותר מאי פעם. אנו מקווים שאתה אוהב את זה."
 
 
 
579
 
580
- #: core/controllers/field_groups.php:252
581
- msgid "What’s New"
582
- msgstr "מה חדש"
 
 
 
583
 
584
- #: core/controllers/field_groups.php:255
585
- msgid "Download Add-ons"
586
- msgstr "הורדת הרחבות"
 
 
 
587
 
588
- #: core/controllers/field_groups.php:309
589
- msgid "Activation codes have grown into plugins!"
590
- msgstr "קודי הפעלה גדלו לתוך התוספים"
 
 
 
591
 
592
- #: core/controllers/field_groups.php:310
593
- msgid ""
594
- "Add-ons are now activated by downloading and installing individual plugins. "
595
- "Although these plugins will not be hosted on the wordpress.org repository, "
596
- "each Add-on will continue to receive updates in the usual way."
597
- msgstr ""
598
- "הרחבות עכשיו מופעלות על ידי הורדה וההתקנה של תוספים בודדים. למרות שהתוספים "
599
- "האלה לא מתארחים במאגר wordpress.org כל אחת מההרחבות תמשיך לקבל עדכונים בדרך "
600
- "הרגילה."
601
 
602
- #: core/controllers/field_groups.php:316
603
- msgid "All previous Add-ons have been successfully installed"
604
- msgstr "כל הההרחבות הקודמות הותקנו בהצלחה"
 
 
 
605
 
606
- #: core/controllers/field_groups.php:320
607
- msgid "This website uses premium Add-ons which need to be downloaded"
608
- msgstr "אתר זה משתמש בהרחבות פרימיום שצריך להוריד ולהתקין."
 
 
 
609
 
610
- #: core/controllers/field_groups.php:320
611
- msgid "Download your activated Add-ons"
612
- msgstr "הורד את ההרחבות הפעילות שלך"
613
-
614
- #: core/controllers/field_groups.php:325
615
- msgid ""
616
- "This website does not use premium Add-ons and will not be affected by this "
617
- "change."
618
- msgstr "אתר זה אינו משתמש בהרחבות פרימיום ולא יושפע משינוי זה."
619
-
620
- #: core/controllers/field_groups.php:335
621
- msgid "Easier Development"
622
- msgstr "פיתוח קל יותר"
623
-
624
- #: core/controllers/field_groups.php:337
625
- msgid "New Field Types"
626
- msgstr "סוג שדה חדש"
627
-
628
- #: core/controllers/field_groups.php:339
629
- msgid "Taxonomy Field"
630
- msgstr "שדה טקסונמיה"
631
-
632
- #: core/controllers/field_groups.php:340
633
- msgid "User Field"
634
- msgstr "שדה משתמש"
635
 
636
- #: core/controllers/field_groups.php:341
637
- msgid "Email Field"
638
- msgstr "שדה מייל"
 
 
 
639
 
640
- #: core/controllers/field_groups.php:342
641
- msgid "Password Field"
642
- msgstr "שדה סיסמה"
 
 
 
643
 
644
- #: core/controllers/field_groups.php:344
645
- msgid "Custom Field Types"
646
- msgstr "סוגי קסטם פילדס"
 
 
 
647
 
648
- #: core/controllers/field_groups.php:345
649
- msgid ""
650
- "Creating your own field type has never been easier! Unfortunately, version 3 "
651
- "field types are not compatible with version 4."
652
- msgstr ""
653
- "יצירת סוג השדה משלך מעולם לא הייתה קלה! למרבה הצער, סוגי השדות בגרסה 3 אינם "
654
- "תואמים לגרסה 4."
655
 
656
- #: core/controllers/field_groups.php:346
657
- msgid "Migrating your field types is easy, please"
658
- msgstr "שינוי סוגים של השדות שלך הוא קל, בבקשה"
 
 
 
659
 
660
- #: core/controllers/field_groups.php:346
661
- msgid "follow this tutorial"
662
- msgstr "עקוב אחרי המדריך הזה"
 
 
 
663
 
664
- #: core/controllers/field_groups.php:346
665
- msgid "to learn more."
666
- msgstr "כדי ללמוד עוד."
 
 
 
667
 
668
- #: core/controllers/field_groups.php:348
669
- msgid "Actions &amp; Filters"
670
- msgstr "פעולות &amp; פילטרים"
 
 
 
671
 
672
- #: core/controllers/field_groups.php:349
673
- msgid ""
674
- "All actions & filters have received a major facelift to make customizing ACF "
675
- "even easier! Please"
676
- msgstr ""
677
- "כל הפעולות והמסננים קיבלו מתיחת פנים משמעותיות כדי להפוך את ההתאמה האישית של "
678
- "ACF לאפילו יותר קלה!"
679
 
680
- #: core/controllers/field_groups.php:349
681
- msgid "read this guide"
682
- msgstr "לקרוא את המדריך הזה"
 
 
 
683
 
684
- #: core/controllers/field_groups.php:349
685
- msgid "to find the updated naming convention."
686
- msgstr "י למצוא את מוסכמה למתן שמות המעודכנת."
 
 
 
687
 
688
- #: core/controllers/field_groups.php:351
689
- msgid "Preview draft is now working!"
690
- msgstr "תצוגה מקדימה עבור טיוטה עובדת עכשיו!"
 
 
 
691
 
692
- #: core/controllers/field_groups.php:352
693
- msgid "This bug has been squashed along with many other little critters!"
694
- msgstr "הבאג הזה כבר מעוך יחד עם היצורים קטנים רבים אחרים!"
 
 
 
 
 
 
 
 
 
 
695
 
696
- #: core/controllers/field_groups.php:352
697
- msgid "See the full changelog"
698
- msgstr "ראה רשימת שינויים מלאים"
 
 
 
699
 
700
- #: core/controllers/field_groups.php:356
701
- msgid "Important"
702
- msgstr "חשוב"
 
 
 
703
 
704
- #: core/controllers/field_groups.php:358
705
- msgid "Database Changes"
706
- msgstr "בסיס הנתונים השתנה"
 
 
 
707
 
708
- #: core/controllers/field_groups.php:359
709
- msgid ""
710
- "Absolutely <strong>no</strong> changes have been made to the database "
711
- "between versions 3 and 4. This means you can roll back to version 3 without "
712
- "any issues."
713
- msgstr ""
714
- "לא נעשו שינויים בבסיס הנתונים בין גרסאות 3 ו -4. זה אומר שאתה יכול לחזור "
715
- "לגרסה 3 ללא בעיות."
716
 
717
- #: core/controllers/field_groups.php:361
718
- msgid "Potential Issues"
719
- msgstr "בעיות פוטנציאליות"
 
 
 
720
 
721
- #: core/controllers/field_groups.php:362
722
- msgid ""
723
- "Do to the sizable changes surounding Add-ons, field types and action/"
724
- "filters, your website may not operate correctly. It is important that you "
725
- "read the full"
726
- msgstr ""
727
- "האם לשינויים ניכרים surounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך "
728
- "לא יפעל בצורה נכונה. זה חשוב שתקרא מלא"
729
 
730
- #: core/controllers/field_groups.php:362
731
- msgid "Migrating from v3 to v4"
732
- msgstr "מעבר מ-גרסה 3 לגרסה 4"
 
 
 
733
 
734
- #: core/controllers/field_groups.php:362
735
- msgid "guide to view the full list of changes."
736
- msgstr "מדריך כדי להציג את הרשימה המלאה של שינויים."
 
 
 
737
 
738
- #: core/controllers/field_groups.php:365
739
- msgid "Really Important!"
740
- msgstr "באמת חשוב!"
 
 
 
741
 
742
- #: core/controllers/field_groups.php:365
743
- msgid ""
744
- "If you updated the ACF plugin without prior knowledge of such changes, "
745
- "please roll back to the latest"
746
- msgstr "אם עדכנת את תוסף ACF ללא ידיעה מוקדמת של השינויים , בבקשה לחזור אחורה"
 
747
 
748
- #: core/controllers/field_groups.php:365
749
- msgid "version 3"
750
- msgstr "גרסה 3"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
 
752
- #: core/controllers/field_groups.php:365
753
- msgid "of this plugin."
754
- msgstr "של התוסף הזה"
 
 
 
755
 
756
- #: core/controllers/field_groups.php:370
757
- msgid "Thank You"
758
- msgstr "תודה"
 
 
 
759
 
760
- #: core/controllers/field_groups.php:371
761
- msgid ""
762
- "A <strong>BIG</strong> thank you to everyone who has helped test the version "
763
- "4 beta and for all the support I have received."
764
- msgstr "תודה רבה לכל מי שעזר לבדוק את גרסה 4 ועבור כל התמיכה שקיבלתי"
 
765
 
766
- #: core/controllers/field_groups.php:372
767
- msgid "Without you all, this release would not have been possible!"
768
- msgstr "בלי כולכם, גרסה זו לא הייתה אפשרית!"
 
 
 
769
 
770
- #: core/controllers/field_groups.php:376
771
- msgid "Changelog for"
772
- msgstr "עדכון גרסאות עבור"
 
 
 
773
 
774
- #: core/controllers/field_groups.php:393
775
- msgid "Learn more"
776
- msgstr "למד עוד"
 
 
 
777
 
778
- #: core/controllers/field_groups.php:399
779
- msgid "Overview"
780
- msgstr "סקירה"
 
 
 
 
 
 
 
 
 
 
781
 
782
- #: core/controllers/field_groups.php:401
783
- msgid ""
784
- "Previously, all Add-ons were unlocked via an activation code (purchased from "
785
- "the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
786
- "need to be individually downloaded, installed and updated."
787
- msgstr ""
788
- "בעבר, כל הההרחבות היו נעולות באמצעות קוד הפעלה (שנרכש מחנות ההרחבות של .ACF "
789
- "חדש בגרסה 4 - כל ההרחבות מגיעות כתוספים נפרדים אשר צריכים להיות מורדים,"
790
- "מותקנים ומעודכנים בנפרד."
791
 
792
- #: core/controllers/field_groups.php:403
793
- msgid ""
794
- "This page will assist you in downloading and installing each available Add-"
795
- "on."
796
- msgstr "דף זה יסייע לך בהורדת והתקנת כל הרחבה זמינה."
 
797
 
798
- #: core/controllers/field_groups.php:405
799
- msgid "Available Add-ons"
800
- msgstr "הרחבות זמינות"
 
 
 
801
 
802
- #: core/controllers/field_groups.php:407
803
- msgid "The following Add-ons have been detected as activated on this website."
804
- msgstr "ההרחבות הבאות זוהו כפעילות באתר זה."
 
 
 
805
 
806
- #: core/controllers/field_groups.php:420
807
- msgid "Name"
808
- msgstr "שם"
 
 
 
809
 
810
- #: core/controllers/field_groups.php:421
811
- msgid "Activation Code"
812
- msgstr "קוד הפעלה"
 
 
 
813
 
814
- #: core/controllers/field_groups.php:453
815
- msgid "Flexible Content"
816
- msgstr "תוכן גמיש"
 
 
 
817
 
818
- #: core/controllers/field_groups.php:463
819
- msgid "Installation"
820
- msgstr "התקנה"
 
 
 
821
 
822
- #: core/controllers/field_groups.php:465
823
- msgid "For each Add-on available, please perform the following:"
824
- msgstr "עבור כל הרחבה זמינה, בצע את הפעולות הבאות:"
 
 
 
825
 
826
- #: core/controllers/field_groups.php:467
827
- msgid "Download the Add-on plugin (.zip file) to your desktop"
828
- msgstr "הורד את ההרחבה בתור פלאגאין לשולחן העבודה שלך"
 
 
 
829
 
830
- #: core/controllers/field_groups.php:468
831
- msgid "Navigate to"
832
- msgstr "נווט ל"
 
 
 
833
 
834
- #: core/controllers/field_groups.php:468
835
- msgid "Plugins > Add New > Upload"
836
- msgstr "תוספים> תוסף חדש> העלאה"
 
 
 
837
 
838
- #: core/controllers/field_groups.php:469
839
- msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
840
- msgstr "השתמש במעלה הקבצים כדי לדפדף, בחר והתקן את ההרחבות שלך - קובץ zip "
 
 
 
841
 
842
- #: core/controllers/field_groups.php:470
843
- msgid ""
844
- "Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
845
- "link"
846
- msgstr "ברגע שהתוסף הועלה ומותקן, לחץ על הקישור 'הפעל תוסף'"
 
847
 
848
- #: core/controllers/field_groups.php:471
849
- msgid "The Add-on is now installed and activated!"
850
- msgstr "ההרחבה כעת מותקנת ומופעלת!"
 
 
 
851
 
852
- #: core/controllers/field_groups.php:485
853
- msgid "Awesome. Let's get to work"
854
- msgstr "מגניב! בא נעוף על זה"
 
 
 
855
 
856
- #: core/controllers/input.php:63
857
- msgid "Expand Details"
858
- msgstr "להרחיב פרטים"
 
 
 
859
 
860
- #: core/controllers/input.php:64
861
- msgid "Collapse Details"
862
- msgstr "סגור פרטים"
 
 
 
863
 
864
- #: core/controllers/input.php:67
865
- msgid "Validation Failed. One or more fields below are required."
866
- msgstr "אימות נכשל. שדה אחד או יותר הם שדות חובה."
 
 
 
867
 
868
- #: core/controllers/upgrade.php:86
869
- msgid "Upgrade"
870
- msgstr "שדרוג"
 
 
 
871
 
872
- #: core/controllers/upgrade.php:139
873
- msgid "What's new"
874
- msgstr "מה חדש"
 
 
 
875
 
876
- #: core/controllers/upgrade.php:150
877
- msgid "credits"
878
- msgstr "קרדיטים"
 
 
 
879
 
880
- #: core/controllers/upgrade.php:684
881
- msgid "Modifying field group options 'show on page'"
882
- msgstr "לשנות אפשרות נראות עבור קבוצת השדה"
 
 
 
883
 
884
- #: core/controllers/upgrade.php:738
885
- msgid "Modifying field option 'taxonomy'"
886
- msgstr "שינוי אפשרויות שדה 'טקסונומיה'"
 
 
 
887
 
888
- #: core/controllers/upgrade.php:835
889
- msgid "Moving user custom fields from wp_options to wp_usermeta'"
890
- msgstr "הזזת שדות מותאמים אישית מ - wp_options ל - wp_usermeta"
 
 
 
891
 
892
- #: core/fields/_base.php:124 core/views/meta_box_location.php:74
893
- msgid "Basic"
894
- msgstr "בסיסי"
 
 
 
895
 
896
- #: core/fields/checkbox.php:19 core/fields/taxonomy.php:319
 
 
 
897
  msgid "Checkbox"
898
  msgstr "תיבת סימון"
899
 
900
- #: core/fields/checkbox.php:20 core/fields/radio.php:19
901
- #: core/fields/select.php:19 core/fields/true_false.php:20
902
- msgid "Choice"
903
- msgstr "בחירה"
 
 
904
 
905
- #: core/fields/checkbox.php:146 core/fields/radio.php:147
906
- #: core/fields/select.php:177
907
- msgid "Choices"
908
- msgstr "בחירות"
 
 
909
 
910
- #: core/fields/checkbox.php:147 core/fields/select.php:178
911
- msgid "Enter each choice on a new line."
912
- msgstr "הזן את כל בחירה בשורה חדשה."
 
 
 
913
 
914
- #: core/fields/checkbox.php:148 core/fields/select.php:179
 
 
 
915
  msgid "For more control, you may specify both a value and label like this:"
916
  msgstr "ליותר שליטה, אתה יכול לציין את הערך ואת התווית בצורה הבאה:"
917
 
918
- #: core/fields/checkbox.php:149 core/fields/radio.php:153
919
- #: core/fields/select.php:180
920
- msgid "red : Red"
921
- msgstr "red : אדום "
922
-
923
- #: core/fields/checkbox.php:149 core/fields/radio.php:154
924
- #: core/fields/select.php:180
925
- msgid "blue : Blue"
926
- msgstr "blue: כחול"
927
-
928
- #: core/fields/checkbox.php:166 core/fields/color_picker.php:89
929
- #: core/fields/email.php:106 core/fields/number.php:116
930
- #: core/fields/radio.php:196 core/fields/select.php:197
931
- #: core/fields/text.php:116 core/fields/textarea.php:96
932
- #: core/fields/true_false.php:94 core/fields/wysiwyg.php:198
933
- msgid "Default Value"
934
- msgstr "ערך ברירת המחדל"
935
-
936
- #: core/fields/checkbox.php:167 core/fields/select.php:198
937
- msgid "Enter each default value on a new line"
938
- msgstr "הזן כל ערך ברירת מחדל בשורה חדשה"
939
-
940
- #: core/fields/checkbox.php:183 core/fields/message.php:20
941
- #: core/fields/radio.php:212 core/fields/tab.php:20
942
- msgid "Layout"
943
- msgstr "לייאוט"
944
-
945
- #: core/fields/checkbox.php:194 core/fields/radio.php:223
946
- msgid "Vertical"
947
- msgstr "אנכי"
948
-
949
- #: core/fields/checkbox.php:195 core/fields/radio.php:224
950
- msgid "Horizontal"
951
- msgstr "מאוזן"
952
-
953
- #: core/fields/color_picker.php:19
954
- msgid "Color Picker"
955
- msgstr "דוגם צבע"
956
-
957
- #: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
958
- #: core/fields/google-map.php:19
959
- msgid "jQuery"
960
- msgstr "jQuery"
961
-
962
- #: core/fields/date_picker/date_picker.php:19
963
- msgid "Date Picker"
964
- msgstr "פיקר תאריך"
965
-
966
- #: core/fields/date_picker/date_picker.php:55
967
- msgid "Done"
968
- msgstr "בוצע"
969
-
970
- #: core/fields/date_picker/date_picker.php:56
971
- msgid "Today"
972
- msgstr "היום"
973
-
974
- #: core/fields/date_picker/date_picker.php:59
975
- msgid "Show a different month"
976
- msgstr "הצג חודש אחר"
977
-
978
- #: core/fields/date_picker/date_picker.php:126
979
- msgid "Save format"
980
- msgstr "פורמט שמירה"
981
-
982
- #: core/fields/date_picker/date_picker.php:127
983
- msgid ""
984
- "This format will determin the value saved to the database and returned via "
985
- "the API"
986
- msgstr "הפורמט הזה יקבע את הערך הנשמר לבסיס הנתונים ויוחזר דרך הAPI."
987
-
988
- #: core/fields/date_picker/date_picker.php:128
989
- msgid "\"yymmdd\" is the most versatile save format. Read more about"
990
- msgstr "הוא פורמט השמירה הרב צדדי ביותר.קרא עוד אודות זה"
991
 
992
- #: core/fields/date_picker/date_picker.php:128
993
- #: core/fields/date_picker/date_picker.php:144
994
- msgid "jQuery date formats"
995
- msgstr "פורמט תאריך jQuary "
 
 
996
 
997
- #: core/fields/date_picker/date_picker.php:142
998
- msgid "Display format"
999
- msgstr "פורמט תצוגה"
 
 
 
1000
 
1001
- #: core/fields/date_picker/date_picker.php:143
1002
- msgid "This format will be seen by the user when entering a value"
1003
- msgstr "הפורמט הזה יראה על ידי המשתמש בעת הזנת ערך"
 
 
 
1004
 
1005
- #: core/fields/date_picker/date_picker.php:144
1006
- msgid ""
1007
- "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
1008
- "about"
1009
- msgstr ""
1010
- "\"dd/mm/yy\" או \"mm/dd/yy\" הם הפורמטים הנפוצים ביותר.קרא עוד אודות זה"
1011
 
1012
- #: core/fields/date_picker/date_picker.php:158
1013
- msgid "Week Starts On"
1014
- msgstr "השבוע מתחיל ביום"
 
 
 
 
 
 
 
 
 
 
1015
 
1016
- #: core/fields/dummy.php:19
1017
- msgid "Dummy"
1018
- msgstr "זבל"
 
 
 
1019
 
1020
- #: core/fields/email.php:19
1021
- msgid "Email"
1022
- msgstr "מייל"
 
 
 
1023
 
1024
- #: core/fields/email.php:107 core/fields/number.php:117
1025
- #: core/fields/text.php:117 core/fields/textarea.php:97
1026
- #: core/fields/wysiwyg.php:199
1027
- msgid "Appears when creating a new post"
1028
- msgstr "מופיי כאשר יוצרים פוסט חדש"
 
1029
 
1030
- #: core/fields/email.php:123 core/fields/number.php:133
1031
- #: core/fields/password.php:105 core/fields/text.php:131
1032
- #: core/fields/textarea.php:111
1033
- msgid "Placeholder Text"
1034
- msgstr "טקסט 'פלייסהולדר'"
 
1035
 
1036
- #: core/fields/email.php:124 core/fields/number.php:134
1037
- #: core/fields/password.php:106 core/fields/text.php:132
1038
- #: core/fields/textarea.php:112
1039
- msgid "Appears within the input"
1040
- msgstr "מופיע בתוך הinput"
 
1041
 
1042
- #: core/fields/email.php:138 core/fields/number.php:148
1043
- #: core/fields/password.php:120 core/fields/text.php:146
1044
- msgid "Prepend"
1045
- msgstr "צרף בתחילת שורה"
 
 
1046
 
1047
- #: core/fields/email.php:139 core/fields/number.php:149
1048
- #: core/fields/password.php:121 core/fields/text.php:147
1049
- msgid "Appears before the input"
1050
- msgstr "מופיע לפני input"
 
 
1051
 
1052
- #: core/fields/email.php:153 core/fields/number.php:163
1053
- #: core/fields/password.php:135 core/fields/text.php:161
1054
- msgid "Append"
1055
- msgstr "להוסיף"
 
 
1056
 
1057
- #: core/fields/email.php:154 core/fields/number.php:164
1058
- #: core/fields/password.php:136 core/fields/text.php:162
 
 
1059
  msgid "Appears after the input"
1060
  msgstr "מופיע לאחר input"
1061
 
1062
- #: core/fields/file.php:19
1063
- msgid "File"
1064
- msgstr "קובץ"
1065
-
1066
- #: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:36
1067
- msgid "Content"
1068
- msgstr "תוכן"
1069
-
1070
- #: core/fields/file.php:26
1071
- msgid "Select File"
1072
- msgstr "בחר קובץ"
1073
-
1074
- #: core/fields/file.php:27
1075
- msgid "Edit File"
1076
- msgstr "ערוך קובץ"
1077
-
1078
- #: core/fields/file.php:28
1079
- msgid "Update File"
1080
- msgstr "עדכן קובץ"
1081
-
1082
- #: core/fields/file.php:29 core/fields/image.php:30
1083
- msgid "uploaded to this post"
1084
- msgstr "העלה לפוסט הזה"
1085
-
1086
- #: core/fields/file.php:123
1087
- msgid "No File Selected"
1088
- msgstr "לא נבחר קובץ"
1089
-
1090
- #: core/fields/file.php:123
1091
- msgid "Add File"
1092
- msgstr "הוסף קובץ"
1093
-
1094
- #: core/fields/file.php:153 core/fields/image.php:118
1095
- #: core/fields/taxonomy.php:367
1096
- msgid "Return Value"
1097
- msgstr "ערך חוזר"
1098
-
1099
- #: core/fields/file.php:164
1100
- msgid "File Object"
1101
- msgstr "אוביקט קובץ"
1102
-
1103
- #: core/fields/file.php:165
1104
- msgid "File URL"
1105
- msgstr "URL של קובץ"
1106
-
1107
- #: core/fields/file.php:166
1108
- msgid "File ID"
1109
- msgstr "id של קובץ"
1110
-
1111
- #: core/fields/file.php:175 core/fields/image.php:158
1112
- msgid "Library"
1113
- msgstr "ספריה"
1114
-
1115
- #: core/fields/file.php:187 core/fields/image.php:171
1116
- msgid "Uploaded to post"
1117
- msgstr "העלה לפוסט"
1118
 
1119
- #: core/fields/google-map.php:18
1120
- msgid "Google Map"
1121
- msgstr "מפות גוגל"
 
 
 
1122
 
1123
- #: core/fields/google-map.php:33
1124
- msgid "Locating"
1125
- msgstr "איתור"
 
 
 
1126
 
1127
- #: core/fields/google-map.php:34
1128
- msgid "Sorry, this browser does not support geolocation"
1129
- msgstr "מצטערים, דפדפן זה אינו תומך במיקום גיאוגרפי"
 
 
 
1130
 
1131
- #: core/fields/google-map.php:120
1132
- msgid "Clear location"
1133
- msgstr "נקה מיקום"
 
 
 
1134
 
1135
- #: core/fields/google-map.php:125
1136
- msgid "Find current location"
1137
- msgstr "מצא את המיקום הנוכחי"
 
 
 
1138
 
1139
- #: core/fields/google-map.php:126
1140
- msgid "Search for address..."
1141
- msgstr "חפש כתובת..."
 
 
 
1142
 
1143
- #: core/fields/google-map.php:162
1144
- msgid "Center"
1145
- msgstr "מרכז"
 
 
 
1146
 
1147
- #: core/fields/google-map.php:163
1148
- msgid "Center the initial map"
1149
- msgstr "מרכז את המפה הראשונית"
 
 
 
1150
 
1151
- #: core/fields/google-map.php:199
1152
- msgid "Zoom"
1153
- msgstr "זום"
 
 
 
1154
 
1155
- #: core/fields/google-map.php:200
 
 
 
1156
  msgid "Set the initial zoom level"
1157
  msgstr "הגדר את רמת הזום הראשונית"
1158
 
1159
- #: core/fields/google-map.php:217
1160
- msgid "Height"
1161
- msgstr "גובה"
 
 
 
1162
 
1163
- #: core/fields/google-map.php:218
1164
- msgid "Customise the map height"
1165
- msgstr "קבע בצורה אישית את גובה המפה"
 
 
 
1166
 
1167
- #: core/fields/image.php:19
1168
- msgid "Image"
1169
- msgstr "תמונה"
 
 
 
1170
 
1171
- #: core/fields/image.php:27
1172
- msgid "Select Image"
1173
- msgstr "בחר תמונה"
 
 
 
1174
 
1175
- #: core/fields/image.php:28
1176
- msgid "Edit Image"
1177
- msgstr "ערוך תמונה"
 
 
 
1178
 
1179
- #: core/fields/image.php:29
1180
- msgid "Update Image"
1181
- msgstr "עדכן תמונה"
 
 
 
1182
 
1183
- #: core/fields/image.php:83
1184
- msgid "Remove"
1185
- msgstr "הסר"
 
 
 
1186
 
1187
- #: core/fields/image.php:84 core/views/meta_box_fields.php:108
1188
- msgid "Edit"
1189
- msgstr "ערוך"
 
 
 
1190
 
1191
- #: core/fields/image.php:90
1192
- msgid "No image selected"
1193
- msgstr "לא נבחרה תמונה"
 
 
 
1194
 
1195
- #: core/fields/image.php:90
1196
- msgid "Add Image"
1197
- msgstr "הוסף תמונה"
 
 
 
1198
 
1199
- #: core/fields/image.php:119 core/fields/relationship.php:573
1200
- msgid "Specify the returned value on front end"
1201
- msgstr "ציין את הערך המוחזרבפרונט"
 
 
 
1202
 
1203
- #: core/fields/image.php:129
1204
- msgid "Image Object"
1205
- msgstr "אוביקט תמונה"
 
 
 
1206
 
1207
- #: core/fields/image.php:130
1208
- msgid "Image URL"
1209
- msgstr "URL לתמונה"
 
 
 
1210
 
1211
- #: core/fields/image.php:131
1212
- msgid "Image ID"
1213
- msgstr "מזהה יחודי לתמונה"
 
 
 
1214
 
1215
- #: core/fields/image.php:139
1216
- msgid "Preview Size"
1217
- msgstr "גודל תצוגה"
 
 
 
1218
 
1219
- #: core/fields/image.php:140
1220
- msgid "Shown when entering data"
1221
- msgstr "מוצג בעת הזנת נתונים"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1222
 
1223
- #: core/fields/image.php:159
1224
- msgid "Limit the media library choice"
1225
- msgstr "הגבל את בחירת ספריית המדיה"
 
 
 
1226
 
1227
- #: core/fields/message.php:19 core/fields/message.php:70
1228
- #: core/fields/true_false.php:79
1229
- msgid "Message"
1230
- msgstr "הודעה"
 
 
1231
 
1232
- #: core/fields/message.php:71
1233
- msgid "Text &amp; HTML entered here will appear inline with the fields"
1234
- msgstr "טקסט &amp; HTML שנכנס כאן יופיע בשורה עם השדות"
 
 
 
1235
 
1236
- #: core/fields/message.php:72
1237
- msgid "Please note that all text will first be passed through the wp function "
1238
- msgstr "שים לב שכל הטקסט יועבר דרך הwp function- "
 
 
 
1239
 
1240
- #: core/fields/number.php:19
1241
- msgid "Number"
1242
- msgstr "מספר"
 
 
 
1243
 
1244
- #: core/fields/number.php:178
1245
- msgid "Minimum Value"
1246
- msgstr "ערך מינימום"
 
 
 
1247
 
1248
- #: core/fields/number.php:194
1249
- msgid "Maximum Value"
1250
- msgstr "ערך מקסימום"
 
 
 
1251
 
1252
- #: core/fields/number.php:210
1253
- msgid "Step Size"
1254
- msgstr " גודל שלב"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1255
 
1256
- #: core/fields/page_link.php:18
1257
- msgid "Page Link"
1258
- msgstr "קישור לעמוד"
 
 
 
1259
 
1260
- #: core/fields/page_link.php:19 core/fields/post_object.php:19
1261
- #: core/fields/relationship.php:19 core/fields/taxonomy.php:19
1262
- #: core/fields/user.php:19
1263
- msgid "Relational"
1264
- msgstr "יחסים"
 
1265
 
1266
- #: core/fields/page_link.php:103 core/fields/post_object.php:268
1267
- #: core/fields/relationship.php:592 core/fields/relationship.php:671
1268
- #: core/views/meta_box_location.php:75
1269
- msgid "Post Type"
1270
- msgstr "סוג פוסט"
 
1271
 
1272
- #: core/fields/page_link.php:127 core/fields/post_object.php:317
1273
- #: core/fields/select.php:214 core/fields/taxonomy.php:333
1274
- #: core/fields/user.php:275
1275
- msgid "Allow Null?"
1276
- msgstr "לאפשר Null?"
 
1277
 
1278
- #: core/fields/page_link.php:148 core/fields/post_object.php:338
1279
- #: core/fields/select.php:233
1280
- msgid "Select multiple values?"
1281
- msgstr "בחר ערכים מרובים?"
 
 
1282
 
1283
- #: core/fields/password.php:19
1284
- msgid "Password"
1285
- msgstr "סיסמה"
 
 
 
1286
 
1287
- #: core/fields/post_object.php:18
1288
- msgid "Post Object"
1289
- msgstr "אוביקט פוסט"
 
 
 
1290
 
1291
- #: core/fields/post_object.php:292 core/fields/relationship.php:616
1292
- msgid "Filter from Taxonomy"
1293
- msgstr "סנן על פי טקסונומיה"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1294
 
1295
- #: core/fields/radio.php:18
1296
- msgid "Radio Button"
1297
- msgstr "כפתור רדיו"
 
 
 
1298
 
1299
- #: core/fields/radio.php:105 core/views/meta_box_location.php:91
1300
- msgid "Other"
1301
- msgstr "אחר"
 
 
 
1302
 
1303
- #: core/fields/radio.php:148
1304
- msgid "Enter your choices one per line"
1305
- msgstr "הזן את הבחירות שלך, אחת בכל שורה"
 
 
 
1306
 
1307
- #: core/fields/radio.php:150
1308
- msgid "Red"
1309
- msgstr "אדום"
 
 
 
1310
 
1311
- #: core/fields/radio.php:151
1312
- msgid "Blue"
1313
- msgstr "כחול"
 
 
 
1314
 
1315
- #: core/fields/radio.php:175
1316
- msgid "Add 'other' choice to allow for custom values"
1317
- msgstr "הוסף אפשרות 'אחר' כדי לאפשר ערכים אישיים"
 
 
 
1318
 
1319
- #: core/fields/radio.php:187
1320
- msgid "Save 'other' values to the field's choices"
1321
- msgstr "שמירת ערכים 'אחרים' לבחירותיו של השדה"
 
 
 
1322
 
1323
- #: core/fields/relationship.php:18
1324
- msgid "Relationship"
1325
- msgstr "קשר"
 
 
 
1326
 
1327
- #: core/fields/relationship.php:29
1328
- msgid "Maximum values reached ( {max} values )"
1329
- msgstr "ערכים מרביים הגיעו (ערכי {max})"
 
 
 
1330
 
1331
- #: core/fields/relationship.php:428
1332
- msgid "Search..."
1333
- msgstr "חפש..."
 
 
 
1334
 
1335
- #: core/fields/relationship.php:439
1336
- msgid "Filter by post type"
1337
- msgstr "סנן על פי סוג פוסט"
 
 
 
1338
 
1339
- #: core/fields/relationship.php:572
1340
- msgid "Return Format"
1341
- msgstr "פורמט חזור"
 
 
 
1342
 
1343
- #: core/fields/relationship.php:583
1344
- msgid "Post Objects"
1345
- msgstr "אוביקטים פוסט"
 
 
 
1346
 
1347
- #: core/fields/relationship.php:584
1348
- msgid "Post IDs"
1349
- msgstr "מזהה יחודי לפוסט"
 
 
 
1350
 
1351
- #: core/fields/relationship.php:650
1352
- msgid "Search"
1353
- msgstr "חפש"
 
 
 
1354
 
1355
- #: core/fields/relationship.php:651
1356
- msgid "Post Type Select"
1357
- msgstr "סוג פוסט נבחר"
 
 
 
1358
 
1359
- #: core/fields/relationship.php:659
1360
- msgid "Elements"
1361
- msgstr "אלמנטים"
 
 
 
1362
 
1363
- #: core/fields/relationship.php:660
1364
- msgid "Selected elements will be displayed in each result"
1365
- msgstr "האלמנטים הנבחרים יוצגו בכל תוצאה"
 
 
 
1366
 
1367
- #: core/fields/relationship.php:669 core/views/meta_box_options.php:106
1368
- msgid "Featured Image"
1369
- msgstr "פיטרד אימג'"
 
 
 
1370
 
1371
- #: core/fields/relationship.php:670
1372
- msgid "Post Title"
1373
- msgstr "כותרת פוסט"
 
 
 
1374
 
1375
- #: core/fields/relationship.php:682
1376
- msgid "Maximum posts"
1377
- msgstr "מקסימום פוסטים"
 
 
 
 
 
 
 
 
 
 
1378
 
1379
- #: core/fields/select.php:18 core/fields/select.php:109
1380
- #: core/fields/taxonomy.php:324 core/fields/user.php:266
1381
- msgid "Select"
1382
- msgstr "בחירה"
 
 
1383
 
1384
- #: core/fields/tab.php:19
1385
- msgid "Tab"
1386
- msgstr "טב"
 
 
 
1387
 
1388
- #: core/fields/tab.php:68
1389
- msgid ""
1390
- "Use \"Tab Fields\" to better organize your edit screen by grouping your "
1391
- "fields together under separate tab headings."
1392
- msgstr ""
1393
- "השתמששדות טאב כדי לארגן את מסך העריכה שלך טוב יותר על ידי קיבוץ השדות שלך "
1394
- "יחד תחת טאבים נפרדים."
1395
 
1396
- #: core/fields/tab.php:69
1397
- msgid ""
1398
- "All the fields following this \"tab field\" (or until another \"tab field\" "
1399
- "is defined) will be grouped together."
1400
- msgstr "כל השדות הבאים יהיו מקובצים יחד."
 
1401
 
1402
- #: core/fields/tab.php:70
1403
- msgid "Use multiple tabs to divide your fields into sections."
1404
- msgstr "השתמש בטאבים רבים כדי לחלק את השדות שלך למקטעים."
 
 
 
1405
 
1406
- #: core/fields/taxonomy.php:18 core/fields/taxonomy.php:278
1407
- msgid "Taxonomy"
1408
- msgstr "טקסונמיה"
 
 
 
1409
 
1410
- #: core/fields/taxonomy.php:222 core/fields/taxonomy.php:231
1411
- msgid "None"
1412
- msgstr "None"
 
 
 
1413
 
1414
- #: core/fields/taxonomy.php:308 core/fields/user.php:251
1415
- #: core/views/meta_box_fields.php:77 core/views/meta_box_fields.php:159
1416
- msgid "Field Type"
1417
- msgstr "סוג שדה"
 
 
1418
 
1419
- #: core/fields/taxonomy.php:318 core/fields/user.php:260
1420
- msgid "Multiple Values"
1421
- msgstr "ערכים מרובים"
 
 
 
1422
 
1423
- #: core/fields/taxonomy.php:320 core/fields/user.php:262
1424
- msgid "Multi Select"
1425
- msgstr "בחירה מרובה"
 
 
 
1426
 
1427
- #: core/fields/taxonomy.php:322 core/fields/user.php:264
1428
- msgid "Single Value"
1429
- msgstr "ערך יחיד"
 
 
 
1430
 
1431
- #: core/fields/taxonomy.php:323
1432
- msgid "Radio Buttons"
1433
- msgstr "כפתורי רדיו"
 
 
 
 
 
 
 
 
 
 
1434
 
1435
- #: core/fields/taxonomy.php:352
1436
- msgid "Load & Save Terms to Post"
1437
- msgstr "טען & שמור תנאים לפוסט"
 
 
 
 
 
 
 
 
 
 
1438
 
1439
- #: core/fields/taxonomy.php:360
1440
- msgid ""
1441
- "Load value based on the post's terms and update the post's terms on save"
1442
- msgstr "טען ערך המבוסס על המונחים של הפוסט ועדכן את התנאים של הפוסט בשמירה"
 
 
1443
 
1444
- #: core/fields/taxonomy.php:377
1445
- msgid "Term Object"
1446
- msgstr "אוביקט טרם"
 
 
 
1447
 
1448
- #: core/fields/taxonomy.php:378
1449
- msgid "Term ID"
1450
- msgstr "מזהה יחודי לטרם"
 
 
 
1451
 
1452
- #: core/fields/text.php:19
1453
- msgid "Text"
1454
- msgstr "טקסט"
 
 
 
1455
 
1456
- #: core/fields/text.php:176 core/fields/textarea.php:141
1457
- msgid "Formatting"
1458
- msgstr "עיצוב"
 
 
 
1459
 
1460
- #: core/fields/text.php:177 core/fields/textarea.php:142
1461
- msgid "Effects value on front end"
1462
- msgstr "ערך השפעה על הפרונט אנד"
 
 
 
1463
 
1464
- #: core/fields/text.php:186 core/fields/textarea.php:151
1465
- msgid "No formatting"
1466
- msgstr "ללא עיצוב"
 
 
 
 
 
 
 
 
 
 
1467
 
1468
- #: core/fields/text.php:187 core/fields/textarea.php:153
1469
- msgid "Convert HTML into tags"
1470
- msgstr "להמיר HTML לתגים"
 
 
 
1471
 
1472
- #: core/fields/text.php:195 core/fields/textarea.php:126
1473
- msgid "Character Limit"
1474
- msgstr "הגבלת מספר תוים"
 
 
 
1475
 
1476
- #: core/fields/text.php:196 core/fields/textarea.php:127
1477
- msgid "Leave blank for no limit"
1478
- msgstr "השאר ריק כדי להגדיר כ-ללא הגבלה"
 
 
 
1479
 
1480
- #: core/fields/textarea.php:19
1481
- msgid "Text Area"
1482
- msgstr "אזור טקסט"
 
 
 
 
 
 
 
 
 
 
1483
 
1484
- #: core/fields/textarea.php:152
1485
- msgid "Convert new lines into &lt;br /&gt; tags"
1486
- msgstr "המרת שורות חדשות לתגים &lt;br /&gt;"
 
 
 
1487
 
1488
- #: core/fields/true_false.php:19
1489
- msgid "True / False"
1490
- msgstr "אמת / שקר"
 
 
 
1491
 
1492
- #: core/fields/true_false.php:80
1493
- msgid "eg. Show extra content"
1494
- msgstr "למשל. הצג תוכן נוסף"
 
 
 
1495
 
1496
- #: core/fields/user.php:18 core/views/meta_box_location.php:94
1497
- msgid "User"
1498
- msgstr "משתמש"
 
 
 
1499
 
1500
- #: core/fields/user.php:224
1501
- msgid "Filter by role"
1502
- msgstr "סנן על פי כלל"
 
 
 
1503
 
1504
- #: core/fields/wysiwyg.php:35
1505
- msgid "Wysiwyg Editor"
1506
- msgstr "עורך Wysiwyg"
 
 
 
1507
 
1508
- #: core/fields/wysiwyg.php:213
1509
- msgid "Toolbar"
1510
- msgstr "סרגל כלים"
 
 
 
1511
 
1512
- #: core/fields/wysiwyg.php:245
1513
- msgid "Show Media Upload Buttons?"
1514
- msgstr "הצג כפתור העלה מדיה?"
 
 
 
1515
 
1516
- #: core/views/meta_box_fields.php:24
1517
- msgid "New Field"
1518
- msgstr "שדה חדש"
 
 
 
1519
 
1520
- #: core/views/meta_box_fields.php:58
1521
- msgid "Field type does not exist"
1522
- msgstr "סוג שדה לא נמצא"
 
 
 
1523
 
1524
- #: core/views/meta_box_fields.php:74
1525
- msgid "Field Order"
1526
- msgstr "סדר שדה"
 
 
 
 
 
 
 
 
 
 
1527
 
1528
- #: core/views/meta_box_fields.php:75 core/views/meta_box_fields.php:127
1529
- msgid "Field Label"
1530
- msgstr "תווית שדה"
 
 
 
1531
 
1532
- #: core/views/meta_box_fields.php:76 core/views/meta_box_fields.php:143
1533
- msgid "Field Name"
1534
- msgstr "שם שדה"
 
 
 
 
 
 
 
 
 
 
1535
 
1536
- #: core/views/meta_box_fields.php:78
1537
- msgid "Field Key"
1538
- msgstr "מפתח שדה"
 
 
 
1539
 
1540
- #: core/views/meta_box_fields.php:90
1541
- msgid ""
1542
- "No fields. Click the <strong>+ Add Field</strong> button to create your "
1543
- "first field."
1544
- msgstr "אין שדות. - לחץ על הוסף שדה כדי ליצור את השדה הראשון שלך."
 
1545
 
1546
- #: core/views/meta_box_fields.php:105 core/views/meta_box_fields.php:108
1547
- msgid "Edit this Field"
1548
- msgstr "ערוך את השדה הזה"
 
 
 
1549
 
1550
- #: core/views/meta_box_fields.php:109
1551
- msgid "Read documentation for this field"
1552
- msgstr "קראו תיעוד לסוג השדה הזה"
 
 
 
1553
 
1554
- #: core/views/meta_box_fields.php:109
1555
- msgid "Docs"
1556
- msgstr "מסמכים"
 
 
 
1557
 
1558
- #: core/views/meta_box_fields.php:110
1559
- msgid "Duplicate this Field"
1560
- msgstr "שכפל את השדה הזה"
 
 
 
1561
 
1562
- #: core/views/meta_box_fields.php:110
1563
- msgid "Duplicate"
1564
- msgstr "שכפל"
 
 
 
1565
 
1566
- #: core/views/meta_box_fields.php:111
1567
- msgid "Delete this Field"
1568
- msgstr "מחק את השדה הזה"
 
 
 
1569
 
1570
- #: core/views/meta_box_fields.php:111
1571
- msgid "Delete"
1572
- msgstr "מחק"
 
 
 
1573
 
1574
- #: core/views/meta_box_fields.php:128
1575
- msgid "This is the name which will appear on the EDIT page"
1576
- msgstr "זהו השם שיופיע בעמוד עריכה"
 
 
 
1577
 
1578
- #: core/views/meta_box_fields.php:144
1579
- msgid "Single word, no spaces. Underscores and dashes allowed"
1580
- msgstr "מילה אחת, ללא רווחים. אנדרסקור ומקפים מותרים"
 
 
 
1581
 
1582
- #: core/views/meta_box_fields.php:173
1583
- msgid "Field Instructions"
1584
- msgstr "הוראות שדה"
 
 
 
1585
 
1586
- #: core/views/meta_box_fields.php:174
1587
- msgid "Instructions for authors. Shown when submitting data"
1588
- msgstr "הוראות למחברים. מוצג בעת הגשת נתונים"
 
 
 
1589
 
1590
- #: core/views/meta_box_fields.php:186
1591
- msgid "Required?"
1592
- msgstr "חובה?"
 
 
 
1593
 
1594
- #: core/views/meta_box_fields.php:209
1595
- msgid "Conditional Logic"
1596
- msgstr "תנאים לוגים"
 
 
 
1597
 
1598
- #: core/views/meta_box_fields.php:260 core/views/meta_box_location.php:117
1599
- msgid "is equal to"
1600
- msgstr "שווה ל"
 
 
 
1601
 
1602
- #: core/views/meta_box_fields.php:261 core/views/meta_box_location.php:118
1603
- msgid "is not equal to"
1604
- msgstr "לא שווה ל"
 
 
 
1605
 
1606
- #: core/views/meta_box_fields.php:279
1607
- msgid "Show this field when"
1608
- msgstr "הצג את השדה הזה כש"
 
 
 
1609
 
1610
- #: core/views/meta_box_fields.php:285
1611
- msgid "all"
1612
- msgstr "כל"
 
 
 
 
 
 
 
 
 
 
1613
 
1614
- #: core/views/meta_box_fields.php:286
1615
- msgid "any"
1616
- msgstr "כל"
 
 
 
1617
 
1618
- #: core/views/meta_box_fields.php:289
1619
- msgid "these rules are met"
1620
- msgstr "הכללים האלה מתקיימים"
 
 
 
1621
 
1622
- #: core/views/meta_box_fields.php:303
1623
- msgid "Close Field"
1624
- msgstr "סגור שדה"
 
 
 
1625
 
1626
- #: core/views/meta_box_fields.php:316
1627
- msgid "Drag and drop to reorder"
1628
- msgstr "גרור והשלך כדי לשנות את הסדר"
 
 
 
1629
 
1630
- #: core/views/meta_box_fields.php:317
1631
- msgid "+ Add Field"
1632
- msgstr "+ הוסף שדה"
 
 
 
1633
 
1634
- #: core/views/meta_box_location.php:48
1635
- msgid "Rules"
1636
- msgstr "כללים"
 
 
 
1637
 
1638
- #: core/views/meta_box_location.php:49
1639
- msgid ""
1640
- "Create a set of rules to determine which edit screens will use these "
1641
- "advanced custom fields"
1642
- msgstr ""
1643
- "יצירת מערכת של כללים כדי לקבוע אילו מסכי עריכה ישמשו את הקסטם פילדס האלו"
1644
 
1645
- #: core/views/meta_box_location.php:60
1646
- msgid "Show this field group if"
1647
- msgstr "הצג את קבוצת השדות הזו בתנאי ש"
 
 
 
1648
 
1649
- #: core/views/meta_box_location.php:76
1650
- msgid "Logged in User Type"
1651
- msgstr "סוג משתמש מחובר"
 
 
 
1652
 
1653
- #: core/views/meta_box_location.php:78 core/views/meta_box_location.php:79
1654
- msgid "Page"
1655
- msgstr "עמוד"
 
 
 
1656
 
1657
- #: core/views/meta_box_location.php:80
1658
- msgid "Page Type"
1659
- msgstr "סוג עמוד"
 
 
 
1660
 
1661
- #: core/views/meta_box_location.php:81
1662
- msgid "Page Parent"
1663
- msgstr "עמוד הורה"
 
 
 
1664
 
1665
- #: core/views/meta_box_location.php:82
1666
- msgid "Page Template"
1667
- msgstr "תבנית עמוד"
 
 
 
1668
 
1669
- #: core/views/meta_box_location.php:84 core/views/meta_box_location.php:85
1670
- msgid "Post"
1671
- msgstr "פוסט"
 
 
 
1672
 
1673
- #: core/views/meta_box_location.php:86
1674
- msgid "Post Category"
1675
- msgstr "קטגורית פוסטים"
 
 
 
1676
 
1677
- #: core/views/meta_box_location.php:87
1678
- msgid "Post Format"
1679
- msgstr "פורמט פוסט"
 
 
 
1680
 
1681
- #: core/views/meta_box_location.php:88
1682
- msgid "Post Status"
1683
- msgstr "סטטוס פוסט"
 
 
 
1684
 
1685
- #: core/views/meta_box_location.php:89
1686
- msgid "Post Taxonomy"
1687
- msgstr "טקסונמית פוסטים"
 
 
 
1688
 
1689
- #: core/views/meta_box_location.php:92
1690
- msgid "Attachment"
1691
- msgstr "מצורף"
 
 
 
1692
 
1693
- #: core/views/meta_box_location.php:93
1694
- msgid "Taxonomy Term"
1695
- msgstr "טרם בטקסונמיה"
 
 
 
1696
 
1697
- #: core/views/meta_box_location.php:146
1698
- msgid "and"
1699
- msgstr "ו"
 
 
 
1700
 
1701
- #: core/views/meta_box_location.php:161
1702
- msgid "Add rule group"
1703
- msgstr "הוסף קבוצת כללים"
 
 
 
1704
 
1705
- #: core/views/meta_box_options.php:25
1706
- msgid "Order No."
1707
- msgstr "סדר"
 
 
 
1708
 
1709
- #: core/views/meta_box_options.php:26
1710
- msgid "Field groups are created in order <br />from lowest to highest"
1711
- msgstr "קבוצות שדה נוצרות ומסודרת<br /> מהנמוך ביותר לגבוה ביותר"
 
 
 
1712
 
1713
- #: core/views/meta_box_options.php:42
1714
- msgid "Position"
1715
- msgstr "עמדה"
 
 
 
1716
 
1717
- #: core/views/meta_box_options.php:52
1718
- msgid "High (after title)"
1719
- msgstr "גבוה (אחרי הכותרת)"
 
 
 
1720
 
1721
- #: core/views/meta_box_options.php:53
1722
- msgid "Normal (after content)"
1723
- msgstr "רגיל - אחרי תוכן"
 
 
 
1724
 
1725
- #: core/views/meta_box_options.php:54
1726
- msgid "Side"
1727
- msgstr "צד"
 
 
 
1728
 
1729
- #: core/views/meta_box_options.php:64
1730
- msgid "Style"
1731
- msgstr "סגנון"
 
 
 
1732
 
1733
- #: core/views/meta_box_options.php:74
1734
- msgid "Seamless (no metabox)"
1735
- msgstr "חלקה"
 
 
 
1736
 
1737
- #: core/views/meta_box_options.php:75
1738
- msgid "Standard (WP metabox)"
1739
- msgstr "רגיל - metabox WP"
 
 
 
1740
 
1741
- #: core/views/meta_box_options.php:84
1742
- msgid "Hide on screen"
1743
- msgstr "הסתר במסך"
 
 
 
1744
 
1745
- #: core/views/meta_box_options.php:85
1746
- msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1747
- msgstr "בחר פריטים שלא יוצגו במסך העריכה"
 
 
 
1748
 
1749
- #: core/views/meta_box_options.php:86
1750
- msgid ""
1751
- "If multiple field groups appear on an edit screen, the first field group's "
1752
- "options will be used. (the one with the lowest order number)"
1753
- msgstr ""
1754
- "אם קבוצות שדות רבות מופיעות על מסך עריכה, תשמש האפשרויות של קבוצת השדות "
1755
- "הראשונה. (זאת עם מספר האורדר הנמוך ביותר)"
1756
 
1757
- #: core/views/meta_box_options.php:96
1758
- msgid "Permalink"
1759
- msgstr "קישור"
 
 
 
1760
 
1761
- #: core/views/meta_box_options.php:97
1762
- msgid "Content Editor"
1763
- msgstr "עורך תוכן"
 
 
 
1764
 
1765
- #: core/views/meta_box_options.php:98
1766
- msgid "Excerpt"
1767
- msgstr "תקציר"
 
 
 
1768
 
1769
- #: core/views/meta_box_options.php:100
1770
- msgid "Discussion"
1771
- msgstr "דיון"
 
 
 
1772
 
1773
- #: core/views/meta_box_options.php:101
1774
- msgid "Comments"
1775
- msgstr "הערות"
 
 
 
1776
 
1777
- #: core/views/meta_box_options.php:102
1778
- msgid "Revisions"
1779
- msgstr "גרסאות עריכה"
 
 
 
1780
 
1781
- #: core/views/meta_box_options.php:103
1782
- msgid "Slug"
1783
- msgstr "סלאג"
 
 
 
1784
 
1785
- #: core/views/meta_box_options.php:104
1786
- msgid "Author"
1787
- msgstr "מחבר"
 
 
 
1788
 
1789
- #: core/views/meta_box_options.php:105
1790
- msgid "Format"
1791
- msgstr "פורמט"
 
 
 
1792
 
1793
- #: core/views/meta_box_options.php:107
1794
- msgid "Categories"
1795
- msgstr "קטגוריות"
 
 
 
1796
 
1797
- #: core/views/meta_box_options.php:108
1798
- msgid "Tags"
1799
- msgstr "תגיות"
 
 
 
1800
 
1801
- #: core/views/meta_box_options.php:109
1802
- msgid "Send Trackbacks"
1803
- msgstr "שלח Trackbacks"
 
 
 
1
+ # This file was generated by WPML
2
+ # WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
3
+ # http://wpml.org
4
  msgid ""
5
  msgstr ""
 
 
 
 
6
  "Content-Type: text/plain; charset=UTF-8\n"
7
  "Content-Transfer-Encoding: 8bit\n"
8
+ "Project-Id-Version: advanced-custom-fields\n"
9
+ "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: \n"
11
+ "Last-Translator: Ahrale <contact@atar4u.com>\n"
12
+ "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: he\n"
16
+ "X-Generator: Poedit 1.7.4\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+
19
+ # 'large' => __("Large",'acf'),
20
+ # 'full' => __("Full",'acf')
21
+ # ));
22
+ # wpml-name: bbd47109890259c0127154db1af26c75
23
+ msgid "Full"
24
+ msgstr "מלא"
25
 
26
+ # 'medium' => __("Medium",'acf'),
27
+ # 'large' => __("Large",'acf'),
28
+ # 'full' => __("Full",'acf')
29
+ # wpml-name: 3a69b34ce86dacb205936a8094f6c743
30
+ msgid "Large"
31
+ msgstr "גדול"
32
 
33
+ # 'thumbnail' => __("Thumbnail",'acf'),
34
+ # 'medium' => __("Medium",'acf'),
35
+ # 'large' => __("Large",'acf'),
36
+ # wpml-name: 87f8a6ab85c9ced3702b4ea641ad4bb5
37
+ msgid "Medium"
38
+ msgstr "בינוני"
39
 
40
+ # $sizes = array_merge($sizes, array(
41
+ # 'thumbnail' => __("Thumbnail",'acf'),
42
+ # 'medium' => __("Medium",'acf'),
43
+ # wpml-name: b7c161bb87bb0308fb25e6f68d0a5632
44
+ msgid "Thumbnail"
45
+ msgstr "תמונה ממוזערת"
46
 
47
+ # 9 => __('Field group scheduled for.', 'acf'),
48
+ # 10 => __('Field group draft updated.', 'acf'),
49
+ # );
50
+ # wpml-name: 54dc8d92f12359e791740e0fa3c99e3f
51
+ msgid "Field group draft updated."
52
+ msgstr "טיוטת קבוצת שדות עודכנה"
53
 
54
+ # 8 => __('Field group submitted.', 'acf'),
55
+ # 9 => __('Field group scheduled for.', 'acf'),
56
+ # 10 => __('Field group draft updated.', 'acf'),
57
+ # wpml-name: 724d275d58a544c8035e1cce48aac143
58
+ msgid "Field group scheduled for."
59
+ msgstr "קבוצת שדות מתוכננת ל"
60
 
61
+ # 7 => __('Field group saved.', 'acf'),
62
+ # 8 => __('Field group submitted.', 'acf'),
63
+ # 9 => __('Field group scheduled for.', 'acf'),
64
+ # wpml-name: 831b7f98529112789d4bd85a1328767f
65
+ msgid "Field group submitted."
66
+ msgstr "קבוצת שדות נשלחה"
67
 
68
+ # 6 => __('Field group published.', 'acf'),
69
+ # 7 => __('Field group saved.', 'acf'),
70
+ # 8 => __('Field group submitted.', 'acf'),
71
+ # wpml-name: 5025d19b6f103c982817e14ee903e960
72
+ msgid "Field group saved."
73
+ msgstr "קבוצת שדות נשמרה"
74
 
75
+ # 5 => isset($_GET['revision']) ? sprintf( __('Field group restored to revision from %s', 'acf'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
76
+ # 6 => __('Field group published.', 'acf'),
77
+ # 7 => __('Field group saved.', 'acf'),
78
+ # wpml-name: 6490ea996df4e5752db4deb2d7ef4b36
79
+ msgid "Field group published."
80
+ msgstr " קבוצת שדות פורסמה"
81
 
82
+ # /* translators: %s: date and time of the revision */
83
+ # 5 => isset($_GET['revision']) ? sprintf( __('Field group restored to revision from %s', 'acf'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
84
+ # 6 => __('Field group published.', 'acf'),
85
+ # wpml-name: 9ef389cb80c8712b901bec8e35c5cdb6
86
+ msgid "Field group restored to revision from %s"
87
+ msgstr "קבוצת שדות שוחזרה לגרסה מ% s"
88
 
89
+ # 2 => __('Custom field updated.', 'acf'),
90
+ # 3 => __('Custom field deleted.', 'acf'),
91
+ # 4 => __('Field group updated.', 'acf'),
92
+ # wpml-name: 37725a1c8a05e443b8088a3dcd29ae96
93
+ msgid "Custom field deleted."
94
+ msgstr "שדה אישי נמחק"
95
 
96
+ # 1 => __('Field group updated.', 'acf'),
97
+ # 2 => __('Custom field updated.', 'acf'),
98
+ # 3 => __('Custom field deleted.', 'acf'),
99
+ # wpml-name: 039675c3e3a29a035723dac4a2e40761
100
+ msgid "Custom field updated."
101
+ msgstr "שדה אישי עודכן"
102
 
103
+ # 3 => __('Custom field deleted.', 'acf'),
104
+ # 4 => __('Field group updated.', 'acf'),
105
+ # /* translators: %s: date and time of the revision */
106
+ # wpml-name: 589d56dc4bf0ac5902b8a093b391c2fc
107
  msgid "Field group updated."
108
  msgstr "קבוצת שדות עודכנה"
109
 
110
+ # 'not_found' => __('No Field Groups found', 'acf'),
111
+ # 'not_found_in_trash' => __('No Field Groups found in Trash', 'acf'),
112
+ # );
113
+ # wpml-name: 54c02417e99e58341ba15223b5ad77a0
114
+ msgid "No Field Groups found in Trash"
115
+ msgstr "שום קבוצת שדות לא נמצאה באשפה"
116
 
117
+ # 'search_items' => __('Search Field Groups', 'acf'),
118
+ # 'not_found' => __('No Field Groups found', 'acf'),
119
+ # 'not_found_in_trash' => __('No Field Groups found in Trash', 'acf'),
120
+ # wpml-name: bf7e5cc656b7ee3c4418d9ca7d32609b
121
+ msgid "No Field Groups found"
122
+ msgstr "שום קבוצת שדות לא נמצאה"
123
 
124
+ # 'view_item' => __('View Field Group', 'acf'),
125
+ # 'search_items' => __('Search Field Groups', 'acf'),
126
+ # 'not_found' => __('No Field Groups found', 'acf'),
127
+ # wpml-name: 4a6dc3b9277f09ae6a59946409a27986
128
+ msgid "Search Field Groups"
129
+ msgstr "חפש קבוצת שדות"
130
 
131
+ # 'new_item' => __( 'New Field Group' , 'acf' ),
132
+ # 'view_item' => __('View Field Group', 'acf'),
133
+ # 'search_items' => __('Search Field Groups', 'acf'),
134
+ # wpml-name: 8fdc5b8942704380b7aa7d91481b9395
135
+ msgid "View Field Group"
136
+ msgstr "צפה בקבוצת שדות"
137
 
138
+ # 'edit_item' => __( 'Edit Field Group' , 'acf' ),
139
+ # 'new_item' => __( 'New Field Group' , 'acf' ),
140
+ # 'view_item' => __('View Field Group', 'acf'),
141
+ # wpml-name: 89b9a0e270095b950b31d0155b275691
142
+ msgid "New Field Group"
143
+ msgstr "קבוצת שדות חדשה"
144
 
145
+ # 'add_new_item' => __( 'Add New Field Group' , 'acf' ),
146
+ # 'edit_item' => __( 'Edit Field Group' , 'acf' ),
147
+ # 'new_item' => __( 'New Field Group' , 'acf' ),
148
+ # wpml-name: 4a6b757977057b0d17437eb7b9620fae
149
+ msgid "Edit Field Group"
150
+ msgstr "ערוך קבוצתת שדות"
151
 
152
+ # 'add_new' => __( 'Add New' , 'acf' ),
153
+ # 'add_new_item' => __( 'Add New Field Group' , 'acf' ),
154
+ # 'edit_item' => __( 'Edit Field Group' , 'acf' ),
155
+ # wpml-name: 079fc751375525c516e42875f0ec8d47
156
+ msgid "Add New Field Group"
157
+ msgstr "הוסף קבוצת שדות חדשה"
158
 
159
+ # 'singular_name' => __( 'Advanced Custom Fields', 'acf' ),
160
+ # 'add_new' => __( 'Add New' , 'acf' ),
161
+ # 'add_new_item' => __( 'Add New Field Group' , 'acf' ),
162
+ # wpml-name: de9ced9bf5e9829de4a93ad8c9d7a170
163
+ msgid "Add New"
164
+ msgstr "הוסף חדש"
165
 
166
+ # $labels = array(
167
+ # 'name' => __( 'Field&nbsp;Groups', 'acf' ),
168
+ # 'singular_name' => __( 'Advanced Custom Fields', 'acf' ),
169
+ # wpml-name: 043adcf51997a0a2a9bf9872571a3eaa
170
+ msgid "Field&nbsp;Groups"
171
+ msgstr "קבוצות&nbsp;שדה"
172
 
173
+ # <p class="description"><?php _e("<b>Select</b> items to <b>hide</b> them from the edit screen",'acf'); ?></p>
174
+ # <p class="description"><?php _e("If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)",'acf'); ?></p>
175
+ # </td>
176
+ # wpml-name: d88fabfcad55fa2748bb4860e7946ddd
177
+ msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
178
+ msgstr "אם קבוצות שדות רבות מופיעות על מסך עריכה, תשמש האפשרויות של קבוצת השדות הראשונה. (זאת עם מספר האורדר הנמוך ביותר)"
179
+
180
+ # <label for="post_type"><?php _e("Hide on screen",'acf'); ?></label>
181
+ # <p class="description"><?php _e("<b>Select</b> items to <b>hide</b> them from the edit screen",'acf'); ?></p>
182
+ # <p class="description"><?php _e("If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)",'acf'); ?></p>
183
+ # wpml-name: 0a16c9f6e933eb978661683b077b2c68
184
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
185
+ msgstr "בחר פריטים שלא יוצגו במסך העריכה"
186
 
187
+ # <td class="label">
188
+ # <label for="post_type"><?php _e("Hide on screen",'acf'); ?></label>
189
+ # <p class="description"><?php _e("<b>Select</b> items to <b>hide</b> them from the edit screen",'acf'); ?></p>
190
+ # wpml-name: af66d0e277d28cd47540fe2ef0a6b3f2
191
+ msgid "Hide on screen"
192
+ msgstr "הסתר במסך"
193
 
194
+ # <td class="label">
195
+ # <label for="post_type"><?php _e("Style",'acf'); ?></label>
196
+ # </td>
197
+ # wpml-name: ae284f900f9d6e21ba69144cfc91e41b
198
+ msgid "Style"
199
+ msgstr "סגנון"
200
 
201
+ # <td class="label">
202
+ # <label for=""><?php _e("Position",'acf'); ?></label>
203
+ # </td>
204
+ # wpml-name: 52f5e0bc3859bc5f5e25130b6c7e8881
205
+ msgid "Position"
206
+ msgstr "עמדה"
207
 
208
+ # <label for=""><?php _e("Order No.",'acf'); ?></label>
209
+ # <p class="description"><?php _e("Field groups are created in order <br />from lowest to highest",'acf'); ?></p>
210
+ # </td>
211
+ # wpml-name: b784f61def7aa1ed1c69533dca60a7b3
212
+ msgid "Field groups are created in order <br />from lowest to highest"
213
+ msgstr "קבוצות שדה נוצרות ומסודרת<br /> מהנמוך ביותר לגבוה ביותר"
214
 
215
+ # <td class="label">
216
+ # <label for=""><?php _e("Order No.",'acf'); ?></label>
217
+ # <p class="description"><?php _e("Field groups are created in order <br />from lowest to highest",'acf'); ?></p>
218
+ # wpml-name: 87dcb72ef896c13c9767da5dbcefc32f
219
+ msgid "Order No."
220
+ msgstr "סדר"
221
 
222
+ # 'tags' => __("Tags", 'acf'),
223
+ # 'send-trackbacks' => __("Send Trackbacks", 'acf'),
224
+ # )
225
+ # wpml-name: 76e10f755c0d0528adf02932ea500746
226
+ msgid "Send Trackbacks"
227
+ msgstr "שלח Trackbacks"
228
 
229
+ # 'categories' => __("Categories", 'acf'),
230
+ # 'tags' => __("Tags", 'acf'),
231
+ # 'send-trackbacks' => __("Send Trackbacks", 'acf'),
232
+ # wpml-name: 189f63f277cd73395561651753563065
233
+ msgid "Tags"
234
+ msgstr "תגיות"
235
 
236
+ # 'featured_image' => __("Featured Image", 'acf'),
237
+ # 'categories' => __("Categories", 'acf'),
238
+ # 'tags' => __("Tags", 'acf'),
239
+ # wpml-name: af1b98adf7f686b84cd0b443e022b7a0
240
+ msgid "Categories"
241
+ msgstr "קטגוריות"
242
 
243
+ # 'author' => __("Author", 'acf'),
244
+ # 'format' => __("Format", 'acf'),
245
+ # 'featured_image' => __("Featured Image", 'acf'),
246
+ # wpml-name: 520d0db389f362bf79ef56ca0af3dcab
247
+ msgid "Format"
248
+ msgstr "פורמט"
249
 
250
+ # 'slug' => __("Slug", 'acf'),
251
+ # 'author' => __("Author", 'acf'),
252
+ # 'format' => __("Format", 'acf'),
253
+ # wpml-name: a517747c3d12f99244ae598910d979c5
254
+ msgid "Author"
255
+ msgstr "מחבר"
256
 
257
+ # 'revisions' => __("Revisions", 'acf'),
258
+ # 'slug' => __("Slug", 'acf'),
259
+ # 'author' => __("Author", 'acf'),
260
+ # wpml-name: 0c908588520b3ef787bce443fc2b507c
261
+ msgid "Slug"
262
+ msgstr "סלאג"
263
 
264
+ # 'comments' => __("Comments", 'acf'),
265
+ # 'revisions' => __("Revisions", 'acf'),
266
+ # 'slug' => __("Slug", 'acf'),
267
+ # wpml-name: fd88b11cfde6aa5e3c7ff0553b534885
268
+ msgid "Revisions"
269
+ msgstr "גרסאות עריכה"
270
 
271
+ # 'discussion' => __("Discussion", 'acf'),
272
+ # 'comments' => __("Comments", 'acf'),
273
+ # 'revisions' => __("Revisions", 'acf'),
274
+ # wpml-name: 8413c683b4b27cc3f4dbd4c90329d8ba
275
+ msgid "Comments"
276
+ msgstr "הערות"
277
 
278
+ # 'custom_fields' => __("Custom Fields", 'acf'),
279
+ # 'discussion' => __("Discussion", 'acf'),
280
+ # 'comments' => __("Comments", 'acf'),
281
+ # wpml-name: eed9474fd944d045ff056d20004acaa3
282
+ msgid "Discussion"
283
+ msgstr "דיון"
284
 
285
+ # {
286
+ # add_menu_page(__("Custom Fields",'acf'), __("Custom Fields",'acf'), 'manage_options', 'edit.php?post_type=acf', false, false, '80.025');
287
+ # }
288
+ # wpml-name: 833956a760d996ae61ea8b385e9fb6f0
289
+ msgid "Custom Fields"
290
+ msgstr "קסטם פילדס"
291
 
292
+ # 'the_content' => __("Content Editor",'acf'),
293
+ # 'excerpt' => __("Excerpt", 'acf'),
294
+ # 'custom_fields' => __("Custom Fields", 'acf'),
295
+ # wpml-name: 6ca8bf4766b9dc7b1ea8b69562faac3f
296
+ msgid "Excerpt"
297
+ msgstr "תקציר"
298
 
299
+ # 'permalink' => __("Permalink", 'acf'),
300
+ # 'the_content' => __("Content Editor",'acf'),
301
+ # 'excerpt' => __("Excerpt", 'acf'),
302
+ # wpml-name: d2f9cc6daad1a88e27e909031211c3a8
303
+ msgid "Content Editor"
304
+ msgstr "עורך תוכן"
305
 
306
+ # 'choices' => array(
307
+ # 'permalink' => __("Permalink", 'acf'),
308
+ # 'the_content' => __("Content Editor",'acf'),
309
+ # wpml-name: 8725214cdd9f9af24e914b5da135793d
310
+ msgid "Permalink"
311
+ msgstr "קישור"
312
 
313
+ # 'no_box' => __("Seamless (no metabox)",'acf'),
314
+ # 'default' => __("Standard (WP metabox)",'acf'),
315
+ # )
316
+ # wpml-name: 6921541f80203c3729bf0a67acd1fcdb
317
+ msgid "Standard (WP metabox)"
318
+ msgstr "רגיל - metabox WP"
319
 
320
+ # 'choices' => array(
321
+ # 'no_box' => __("Seamless (no metabox)",'acf'),
322
+ # 'default' => __("Standard (WP metabox)",'acf'),
323
+ # wpml-name: 5433032ac6e365a89318b3147c0cf286
324
+ msgid "Seamless (no metabox)"
325
+ msgstr "חלקה"
326
 
327
+ # 'normal' => __("Normal (after content)",'acf'),
328
+ # 'side' => __("Side",'acf'),
329
+ # ),
330
+ # wpml-name: c142a73b77f3c3df40777af2651f4915
331
+ msgid "Side"
332
+ msgstr "צד"
333
 
334
+ # 'acf_after_title' => __("High (after title)",'acf'),
335
+ # 'normal' => __("Normal (after content)",'acf'),
336
+ # 'side' => __("Side",'acf'),
337
+ # wpml-name: 4ea9cd0f791f44fa4d1568f747576132
338
+ msgid "Normal (after content)"
339
+ msgstr "רגיל - אחרי תוכן"
340
 
341
+ # 'choices' => array(
342
+ # 'acf_after_title' => __("High (after title)",'acf'),
343
+ # 'normal' => __("Normal (after content)",'acf'),
344
+ # wpml-name: 6818fe3f9fe05f9b83c1fec3206fdbae
345
+ msgid "High (after title)"
346
+ msgstr "גבוה (אחרי הכותרת)"
347
 
348
+ # <div class="order_message"><?php _e('Drag and drop to reorder','acf'); ?></div>
349
+ # <a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Field','acf'); ?></a>
350
+ # </div>
351
+ # wpml-name: fd035cbb46742519790c587fe6cc2070
352
+ msgid "+ Add Field"
353
+ msgstr "+ הוסף שדה"
354
 
355
+ # <div class="table_footer">
356
+ # <div class="order_message"><?php _e('Drag and drop to reorder','acf'); ?></div>
357
+ # <a href="javascript:;" id="add_field" class="acf-button"><?php _e('+ Add Field','acf'); ?></a>
358
+ # wpml-name: 76f636bbc38832fd93e1d2c3cb38e404
359
+ msgid "Drag and drop to reorder"
360
+ msgstr "גרור והשלך כדי לשנות את הסדר"
361
 
362
+ # <li>
363
+ # <a class="acf_edit_field acf-button grey" title="<?php _e("Close Field",'acf'); ?>" href="javascript:;"><?php _e("Close Field",'acf'); ?></a>
364
+ # </li>
365
+ # wpml-name: 70d52c6429b290e5d8e9c3f0e835b1a5
366
+ msgid "Close Field"
367
+ msgstr "סגור שדה"
 
368
 
369
+ # )); ?></li>
370
+ # <li style="padding:4px 0 0 4px;"><?php _e("these rules are met",'acf'); ?></li>
371
+ # </ul>
372
+ # wpml-name: ee80b9ebf2c2d2ad25644415c84b38d4
373
+ msgid "these rules are met"
374
+ msgstr "הכללים האלה מתקיימים"
375
 
376
+ # <ul class="hl clearfix">
377
+ # <li style="padding:4px 4px 0 0;"><?php _e("Show this field when",'acf'); ?></li>
378
+ # <li><?php do_action('acf/create_field', array(
379
+ # wpml-name: b9a7e16a1fd5d010e462f8633287d777
380
+ msgid "Show this field when"
381
+ msgstr "הצג את השדה הזה כש"
382
 
383
+ # <tr class="conditional-logic" data-field_name="<?php echo $field['key']; ?>">
384
+ # <td class="label"><label><?php _e("Conditional Logic",'acf'); ?></label></td>
385
+ # <td>
386
+ # wpml-name: a3476e52de60342ba76ca7551c19c7ae
387
+ msgid "Conditional Logic"
388
+ msgstr "תנאים לוגים"
389
 
390
+ # <tr class="required">
391
+ # <td class="label"><label><?php _e("Required?",'acf'); ?></label></td>
392
+ # <td>
393
+ # wpml-name: 6e18e908568ef24580d93bfd3e0f40d7
394
+ msgid "Required?"
395
+ msgstr "חובה?"
396
 
397
+ # <td class="label"><label><?php _e("Field Instructions",'acf'); ?></label>
398
+ # <p class="description"><?php _e("Instructions for authors. Shown when submitting data",'acf'); ?></p></td>
399
+ # <td>
400
+ # wpml-name: d4798a4dc9ba5da5302e5c02779c910f
401
+ msgid "Instructions for authors. Shown when submitting data"
402
+ msgstr "הוראות למחברים. מוצג בעת הגשת נתונים"
403
 
404
+ # <tr class="field_instructions">
405
+ # <td class="label"><label><?php _e("Field Instructions",'acf'); ?></label>
406
+ # <p class="description"><?php _e("Instructions for authors. Shown when submitting data",'acf'); ?></p></td>
407
+ # wpml-name: 3b6814f581ce44458452b7b17ae1efa5
408
+ msgid "Field Instructions"
409
+ msgstr "הוראות שדה"
410
 
411
+ # <label><?php _e("Field Name",'acf'); ?><span class="required">*</span></label>
412
+ # <p class="description"><?php _e("Single word, no spaces. Underscores and dashes allowed",'acf'); ?></p>
413
+ # </td>
414
+ # wpml-name: e7b8f83099c3240d6ed1cc15ce03040b
415
+ msgid "Single word, no spaces. Underscores and dashes allowed"
416
+ msgstr "מילה אחת, ללא רווחים. אנדרסקור ומקפים מותרים"
417
 
418
+ # <label><?php _e("Field Label",'acf'); ?><span class="required">*</span></label>
419
+ # <p class="description"><?php _e("This is the name which will appear on the EDIT page",'acf'); ?></p>
420
+ # </td>
421
+ # wpml-name: 41a295d7ddda13906f2fb0d7a79d8373
422
+ msgid "This is the name which will appear on the EDIT page"
423
+ msgstr "זהו השם שיופיע בעמוד עריכה"
424
 
425
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
426
+ # <span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
427
+ # </div>
428
+ # wpml-name: f2a6c498fb90ee345d997f888fce3b18
429
+ msgid "Delete"
430
+ msgstr "מחק"
431
 
432
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
433
+ # <span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
434
+ # </div>
435
+ # wpml-name: 784f844a282ce4bd15009d4d7c55f282
436
+ msgid "Delete this Field"
437
+ msgstr "מחק את השדה הזה"
 
438
 
439
+ # <span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
440
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
441
+ # <span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
442
+ # wpml-name: ed75712b0eb1913c28a3872731ffd48d
443
+ msgid "Duplicate"
444
+ msgstr "שכפל"
 
445
 
446
+ # <span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
447
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
448
+ # <span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
449
+ # wpml-name: 2ffc464eef6e0648738519e4a2f90ee7
450
+ msgid "Duplicate this Field"
451
+ msgstr "שכפל את השדה הזה"
452
 
453
+ # <div class="row_options">
454
+ # <span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
455
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
456
+ # wpml-name: 8e4f0c248ef0044c2090624d7de61812
457
+ msgid "Edit this Field"
458
+ msgstr "ערוך את השדה הזה"
459
 
460
+ # <div class="no_fields_message" <?php if(count($fields) > 1){ echo 'style="display:none;"'; } ?>>
461
+ # <?php _e("No fields. Click the <strong>+ Add Field</strong> button to create your first field.",'acf'); ?>
462
+ # </div>
463
+ # wpml-name: 191ae84c430a782cea8bf6006c916a8b
464
+ msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
465
+ msgstr "אין שדות. - לחץ על הוסף שדה כדי ליצור את השדה הראשון שלך."
466
 
467
+ # <th class="field_type"><?php _e('Field Type','acf'); ?></th>
468
+ # <th class="field_key"><?php _e('Field Key','acf'); ?></th>
469
+ # </tr>
470
+ # wpml-name: 3444a1f36b43837679e3d56d439eb710
471
+ msgid "Field Key"
472
+ msgstr "מפתח שדה"
473
 
474
+ # <td class="label">
475
+ # <label><?php _e("Field Name",'acf'); ?><span class="required">*</span></label>
476
+ # <p class="description"><?php _e("Single word, no spaces. Underscores and dashes allowed",'acf'); ?></p>
477
+ # wpml-name: ee9b2f3cf31c23c944b15fb0b33d6a77
478
+ msgid "Field Name"
479
+ msgstr "שם שדה"
480
 
481
+ # <td class="label">
482
+ # <label><?php _e("Field Label",'acf'); ?><span class="required">*</span></label>
483
+ # <p class="description"><?php _e("This is the name which will appear on the EDIT page",'acf'); ?></p>
484
+ # wpml-name: b2cec57accc4259bf740533f0f20e4cd
485
+ msgid "Field Label"
486
+ msgstr "תווית שדה"
487
 
488
+ # <tr>
489
+ # <th class="field_order"><?php _e('Field Order','acf'); ?></th>
490
+ # <th class="field_label"><?php _e('Field Label','acf'); ?></th>
491
+ # wpml-name: 113bd68f1bbb779b2c860877092a7d12
492
+ msgid "Field Order"
493
+ msgstr "סדר שדה"
494
 
495
+ # 'all' => __("all",'acf'),
496
+ # 'any' => __("any",'acf'),
497
+ # ),
498
+ # wpml-name: 100b8cad7cf2a56f6df78f171f97a1ec
499
+ msgid "any"
500
+ msgstr "כל"
501
 
502
+ # 'choices' => array(
503
+ # 'all' => __("all",'acf'),
504
+ # 'any' => __("any",'acf'),
505
+ # wpml-name: a181a603769c1f98ad927e7367c7aa51
506
+ msgid "all"
507
+ msgstr "כל"
 
508
 
509
+ #
510
+ # $error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
511
+ #
512
+ # wpml-name: 7602b04953434f4912c311c2015007aa
513
+ msgid "Field type does not exist"
514
+ msgstr "סוג שדה לא נמצא"
 
 
 
 
515
 
516
+ # 'key' => 'field_clone',
517
+ # 'label' => __("New Field",'acf'),
518
+ # 'name' => 'new_field',
519
+ # wpml-name: 98388828c53ad830cd48bd79824b6660
520
+ msgid "New Field"
521
+ msgstr "שדה חדש"
522
 
523
+ #
524
+ # <a class="button location-add-group" href="#"><?php _e("Add rule group",'acf'); ?></a>
525
+ #
526
+ # wpml-name: 084e87681dae8714acbcf36b5f75fb99
527
+ msgid "Add rule group"
528
+ msgstr "הוסף קבוצת כללים"
529
 
530
+ # <td class="add">
531
+ # <a href="#" class="location-add-rule button"><?php _e("and",'acf'); ?></a>
532
+ # </td>
533
+ # wpml-name: be5d5d37542d75f93a87094459f76678
534
+ msgid "and"
535
+ msgstr "ו"
536
 
537
+ # <?php if( $group_id == 'group_0' ): ?>
538
+ # <h4><?php _e("Show this field group if",'acf'); ?></h4>
539
+ # <?php else: ?>
540
+ # wpml-name: 0850f3e54c04621241538b7ce01f3bc5
541
+ msgid "Show this field group if"
542
+ msgstr "הצג את קבוצת השדות הזו בתנאי ש"
543
 
544
+ # <label for="post_type"><?php _e("Rules",'acf'); ?></label>
545
+ # <p class="description"><?php _e("Create a set of rules to determine which edit screens will use these advanced custom fields",'acf'); ?></p>
546
+ # </td>
547
+ # wpml-name: eab2c196b5ac449313828ac8ed1d7b8e
548
+ msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
549
+ msgstr "יצירת מערכת של כללים כדי לקבוע אילו מסכי עריכה ישמשו את הקסטם פילדס האלו"
550
+
551
+ # <td class="label">
552
+ # <label for="post_type"><?php _e("Rules",'acf'); ?></label>
553
+ # <p class="description"><?php _e("Create a set of rules to determine which edit screens will use these advanced custom fields",'acf'); ?></p>
554
+ # wpml-name: 1f4da964f8eab62e96e8cfe406e44364
555
+ msgid "Rules"
556
+ msgstr "כללים"
557
 
558
+ # '==' => __("is equal to",'acf'),
559
+ # '!=' => __("is not equal to",'acf'),
560
+ # ),
561
+ # wpml-name: 3eeb5a3ec5ad5cb66199a7e30c037233
562
+ msgid "is not equal to"
563
+ msgstr "לא שווה ל"
564
 
565
+ # 'choices' => array(
566
+ # '==' => __("is equal to",'acf'),
567
+ # '!=' => __("is not equal to",'acf'),
568
+ # wpml-name: 6cea751d1a0e9f1fea9002df9168b424
569
+ msgid "is equal to"
570
+ msgstr "שווה ל"
571
 
572
+ # 'ef_media' => __("Attachment",'acf'),
573
+ # 'ef_taxonomy' => __("Taxonomy Term",'acf'),
574
+ # 'ef_user' => __("User",'acf'),
575
+ # wpml-name: cd04986fed9f2447e44dcf509c121e72
576
+ msgid "Taxonomy Term"
577
+ msgstr "טרם בטקסונמיה"
578
 
579
+ # __("Other",'acf') => array(
580
+ # 'ef_media' => __("Attachment",'acf'),
581
+ # 'ef_taxonomy' => __("Taxonomy Term",'acf'),
582
+ # wpml-name: e9cb217697088a98b1937d111d936281
583
+ msgid "Attachment"
584
+ msgstr "מצורף"
 
 
585
 
586
+ # 'page_parent' => __("Page Parent",'acf'),
587
+ # 'page_template' => __("Page Template",'acf'),
588
+ # ),
589
+ # wpml-name: ec2fd1d4b88e244960104512b85ab31c
590
+ msgid "Page Template"
591
+ msgstr "תבנית עמוד"
 
 
592
 
593
+ # 'page_type' => __("Page Type",'acf'),
594
+ # 'page_parent' => __("Page Parent",'acf'),
595
+ # 'page_template' => __("Page Template",'acf'),
596
+ # wpml-name: a7c15cd62e93c45909794f55736febb3
597
+ msgid "Page Parent"
598
+ msgstr "עמוד הורה"
599
 
600
+ # 'page' => __("Page",'acf'),
601
+ # 'page_type' => __("Page Type",'acf'),
602
+ # 'page_parent' => __("Page Parent",'acf'),
603
+ # wpml-name: 6a5b847af3d97df722040debdbccfbed
604
+ msgid "Page Type"
605
+ msgstr "סוג עמוד"
606
 
607
+ # __("Page",'acf') => array(
608
+ # 'page' => __("Page",'acf'),
609
+ # 'page_type' => __("Page Type",'acf'),
610
+ # wpml-name: 193cfc9be3b995831c6af2fea6650e60
611
+ msgid "Page"
612
+ msgstr "עמוד"
613
 
614
+ # 'post_status' => __("Post Status",'acf'),
615
+ # 'taxonomy' => __("Post Taxonomy",'acf'),
616
+ # ),
617
+ # wpml-name: b8d0d324efb4dd437db0009a17ce4cc8
618
+ msgid "Post Taxonomy"
619
+ msgstr "טקסונמית פוסטים"
620
 
621
+ # 'post_format' => __("Post Format",'acf'),
622
+ # 'post_status' => __("Post Status",'acf'),
623
+ # 'taxonomy' => __("Post Taxonomy",'acf'),
624
+ # wpml-name: bb2e4b1b9eb8f37985ca01a6effc4357
625
+ msgid "Post Status"
626
+ msgstr "סטטוס פוסט"
627
 
628
+ # 'post_category' => __("Post Category",'acf'),
629
+ # 'post_format' => __("Post Format",'acf'),
630
+ # 'post_status' => __("Post Status",'acf'),
631
+ # wpml-name: b2162de16f16a02287aab900cfa04463
632
+ msgid "Post Format"
633
+ msgstr "פורמט פוסט"
634
 
635
+ # 'post' => __("Post",'acf'),
636
+ # 'post_category' => __("Post Category",'acf'),
637
+ # 'post_format' => __("Post Format",'acf'),
638
+ # wpml-name: e99e809ae161f1d8f2376f726252b8d0
639
+ msgid "Post Category"
640
+ msgstr "קטגורית פוסטים"
641
 
642
+ # __("Post",'acf') => array(
643
+ # 'post' => __("Post",'acf'),
644
+ # 'post_category' => __("Post Category",'acf'),
645
+ # wpml-name: 03d947a2158373c3b9d74325850cb8b9
646
+ msgid "Post"
647
+ msgstr "פוסט"
648
 
649
+ # 'post_type' => __("Post Type",'acf'),
650
+ # 'user_type' => __("Logged in User Type",'acf'),
651
+ # ),
652
+ # wpml-name: 25f78e7f7dac5c2eb2fe523446073be4
653
+ msgid "Logged in User Type"
654
+ msgstr "סוג משתמש מחובר"
655
 
656
+ # {
657
+ # wp_die(__("No ACF groups selected",'acf'));
658
+ # }
659
+ # wpml-name: 041accf7138aa1d64101cc91b95d0073
660
+ msgid "No ACF groups selected"
661
+ msgstr "שום קבוצות שדות acf לא נבחרה"
662
 
663
+ #
664
+ # $error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does not exist', 'acf');
665
+ #
666
+ # wpml-name: 902b0d55fddef6f8d651fe1035b7d4bd
667
+ msgid "Error"
668
+ msgstr "תקלה"
669
 
670
+ # <td class="label">
671
+ # <label><?php _e( "Filter by role", 'acf' ); ?></label>
672
+ # </td>
673
+ # wpml-name: 4a49167c423fab80b22db2b551813a81
674
+ msgid "Filter by role"
675
+ msgstr "סנן על פי כלל"
676
 
677
+ # 'ef_taxonomy' => __("Taxonomy Term",'acf'),
678
+ # 'ef_user' => __("User",'acf'),
679
+ # )
680
+ # wpml-name: 8f9bfe9d1345237cb3b2b205864da075
681
+ msgid "User"
682
+ msgstr "משתמש"
683
 
684
+ # <label><?php _e("Message",'acf'); ?></label>
685
+ # <p class="description"><?php _e("eg. Show extra content",'acf'); ?></a></p>
686
+ # </td>
687
+ # wpml-name: 2869814c2eeecf4a14f4d6e17b0b6973
688
+ msgid "eg. Show extra content"
689
+ msgstr "למשל. הצג תוכן נוסף"
690
 
691
+ # $this->name = 'true_false';
692
+ # $this->label = __("True / False",'acf');
693
+ # $this->category = __("Choice",'acf');
694
+ # wpml-name: 4b0a1c341e3a99edf8d555ed3ff2386b
695
+ msgid "True / False"
696
+ msgstr "אמת / שקר"
697
 
698
+ # $choices = array(
699
+ # __("Basic",'acf') => array(
700
+ # 'post_type' => __("Post Type",'acf'),
701
+ # wpml-name: 972e73b7a882d0802a4e3a16946a2f94
702
+ msgid "Basic"
703
+ msgstr "בסיסי"
 
 
704
 
705
+ # <td class="label">
706
+ # <label><?php _e("Maximum posts",'acf'); ?></label>
707
+ # </td>
708
+ # wpml-name: ff3721ddacc010e2d6eceb1a4d608433
709
+ msgid "Maximum posts"
710
+ msgstr "מקסימום פוסטים"
 
 
711
 
712
+ # <label><?php _e("Elements",'acf'); ?></label>
713
+ # <p><?php _e("Selected elements will be displayed in each result",'acf') ?></p>
714
+ # </td>
715
+ # wpml-name: 37c2b0a13a47094b81dc8ffdbd6f53b5
716
+ msgid "Selected elements will be displayed in each result"
717
+ msgstr "האלמנטים הנבחרים יוצגו בכל תוצאה"
718
 
719
+ # <td class="label">
720
+ # <label><?php _e("Elements",'acf'); ?></label>
721
+ # <p><?php _e("Selected elements will be displayed in each result",'acf') ?></p>
722
+ # wpml-name: aa56a2e65d8106aef3c61e4f6bf94fdb
723
+ msgid "Elements"
724
+ msgstr "אלמנטים"
725
 
726
+ # <td class="label">
727
+ # <label><?php _e("Return Format",'acf'); ?></label>
728
+ # <p><?php _e("Specify the returned value on front end",'acf') ?></p>
729
+ # wpml-name: cbeffd494cdc79380e2b4782323dc849
730
+ msgid "Return Format"
731
+ msgstr "פורמט חזור"
732
 
733
+ # <th>
734
+ # <input class="relationship_search" placeholder="<?php _e("Search...",'acf'); ?>" type="text" id="relationship_<?php echo $field['name']; ?>" />
735
+ # </th>
736
+ # wpml-name: 2a37324bb4c331c859044121df3f576b
737
+ msgid "Search..."
738
+ msgstr "חפש..."
739
 
740
+ # 'featured_image' => __("Featured Image",'acf'),
741
+ # 'post_title' => __("Post Title",'acf'),
742
+ # 'post_type' => __("Post Type",'acf'),
743
+ # wpml-name: e4d99041f9e5af92b38767d09947600e
744
+ msgid "Post Title"
745
+ msgstr "כותרת פוסט"
746
 
747
+ # 'format' => __("Format", 'acf'),
748
+ # 'featured_image' => __("Featured Image", 'acf'),
749
+ # 'categories' => __("Categories", 'acf'),
750
+ # wpml-name: c9344eb2ff26e96823cc252a90f77de8
751
+ msgid "Featured Image"
752
+ msgstr "פיטרד אימג'"
753
 
754
+ # 'search' => __("Search",'acf'),
755
+ # 'post_type' => __("Post Type Select",'acf'),
756
+ # )
757
+ # wpml-name: ad2e3f5bd47597ee6a9e0078be1c080c
758
+ msgid "Post Type Select"
759
+ msgstr "סוג פוסט נבחר"
760
 
761
+ # 'choices' => array(
762
+ # 'search' => __("Search",'acf'),
763
+ # 'post_type' => __("Post Type Select",'acf'),
764
+ # wpml-name: 13348442cc6a27032d2b4aa28b75a5d3
765
+ msgid "Search"
766
+ msgstr "חפש"
767
 
768
+ # 'object' => __("Post Objects",'acf'),
769
+ # 'id' => __("Post IDs",'acf')
770
+ # )
771
+ # wpml-name: 7cda28f67549fced32c4c9d98688c9db
772
+ msgid "Post IDs"
773
+ msgstr "מזהה יחודי לפוסט"
774
 
775
+ # 'choices' => array(
776
+ # 'object' => __("Post Objects",'acf'),
777
+ # 'id' => __("Post IDs",'acf')
778
+ # wpml-name: 25a1fb1a2a68932e3f4734aab5ec0dc5
779
+ msgid "Post Objects"
780
+ msgstr "אוביקטים פוסט"
781
 
782
+ # $choices = array(
783
+ # 'all' => __("Filter by post type",'acf')
784
+ # );
785
+ # wpml-name: cf97d5b5c4a419d15c0d6d215dcc9ef2
786
+ msgid "Filter by post type"
787
+ msgstr "סנן על פי סוג פוסט"
788
 
789
+ # $this->l10n = array(
790
+ # 'max' => __("Maximum values reached ( {max} values )",'acf'),
791
+ # 'tmpl_li' => '
792
+ # wpml-name: 94fdb529c741e1791663f390ffbf751f
793
+ msgid "Maximum values reached ( {max} values )"
794
+ msgstr "ערכים מרביים הגיעו (ערכי {max})"
795
 
796
+ # $this->name = 'relationship';
797
+ # $this->label = __("Relationship",'acf');
798
+ # $this->category = __("Relational",'acf');
799
+ # wpml-name: fbc97786af4bf30dc5b07809a950792c
800
+ msgid "Relationship"
801
+ msgstr "קשר"
802
 
803
+ # <p><?php _e("All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together.",'acf'); ?></p>
804
+ # <p><?php _e("Use multiple tabs to divide your fields into sections.",'acf'); ?></p>
805
+ # </td>
806
+ # wpml-name: 4b0403aebe6112054d8385ab9a0a5266
807
+ msgid "Use multiple tabs to divide your fields into sections."
808
+ msgstr "השתמש בטאבים רבים כדי לחלק את השדות שלך למקטעים."
809
 
810
+ # <p><?php _e("Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings.",'acf'); ?></p>
811
+ # <p><?php _e("All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together.",'acf'); ?></p>
812
+ # <p><?php _e("Use multiple tabs to divide your fields into sections.",'acf'); ?></p>
813
+ # wpml-name: 98263a758550153aeff711226e2a929e
814
+ msgid "All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together."
815
+ msgstr "כל השדות הבאים יהיו מקובצים יחד."
 
 
816
 
817
+ # <td>
818
+ # <p><?php _e("Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings.",'acf'); ?></p>
819
+ # <p><?php _e("All the fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together.",'acf'); ?></p>
820
+ # wpml-name: b7f9769e46c4830e37c5fa0b8388df0b
821
+ msgid "Use \"Tab Fields\" to better organize your edit screen by grouping your fields together under separate tab headings."
822
+ msgstr "השתמששדות טאב כדי לארגן את מסך העריכה שלך טוב יותר על ידי קיבוץ השדות שלך יחד תחת טאבים נפרדים."
823
+
824
+ # $this->name = 'tab';
825
+ # $this->label = __("Tab",'acf');
826
+ # $this->category = __("Layout",'acf');
827
+ # wpml-name: 5c6ba25104401c9ee0650230fc6ba413
828
+ msgid "Tab"
829
+ msgstr "טב"
830
 
831
+ # $this->name = 'text';
832
+ # $this->label = __("Text",'acf');
833
+ # $this->defaults = array(
834
+ # wpml-name: 9dffbf69ffba8bc38bc4e01abf4b1675
835
+ msgid "Text"
836
+ msgstr "טקסט"
837
 
838
+ # <label><?php _e("Library",'acf'); ?></label>
839
+ # <p><?php _e("Limit the media library choice",'acf') ?></p>
840
+ # </td>
841
+ # wpml-name: 4199f20ffed3ad3f0ffce458d11d71f8
842
+ msgid "Limit the media library choice"
843
+ msgstr "הגבל את בחירת ספריית המדיה"
844
 
845
+ # <label><?php _e("Preview Size",'acf'); ?></label>
846
+ # <p><?php _e("Shown when entering data",'acf') ?></p>
847
+ # </td>
848
+ # wpml-name: a2e2551dd197aac1bf812efb15e8626c
849
+ msgid "Shown when entering data"
850
+ msgstr "מוצג בעת הזנת נתונים"
851
 
852
+ # <td class="label">
853
+ # <label><?php _e("Preview Size",'acf'); ?></label>
854
+ # <p><?php _e("Shown when entering data",'acf') ?></p>
855
+ # wpml-name: 35963872e7481f2a24ae7cf63008c02c
856
+ msgid "Preview Size"
857
+ msgstr "גודל תצוגה"
858
 
859
+ # <label><?php _e("Return Format",'acf'); ?></label>
860
+ # <p><?php _e("Specify the returned value on front end",'acf') ?></p>
861
+ # </td>
862
+ # wpml-name: c77c7529a51f56355c0af60c83d8c66a
863
+ msgid "Specify the returned value on front end"
864
+ msgstr "ציין את הערך המוחזרבפרונט"
865
 
866
+ # <div class="no-image">
867
+ # <p><?php _e('No image selected','acf'); ?> <input type="button" class="button add-image" value="<?php _e('Add Image','acf'); ?>" />
868
+ # </div>
869
+ # wpml-name: b9c49611cfda3259a2b837b39489e650
870
+ msgid "Add Image"
871
+ msgstr "הוסף תמונה"
872
 
873
+ # <div class="no-image">
874
+ # <p><?php _e('No image selected','acf'); ?> <input type="button" class="button add-image" value="<?php _e('Add Image','acf'); ?>" />
875
+ # </div>
876
+ # wpml-name: 58d5915670251752ab1fa739206370fc
877
+ msgid "No image selected"
878
+ msgstr "לא נבחרה תמונה"
879
 
880
+ # <div class="row_options">
881
+ # <span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
882
+ # <span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
883
+ # wpml-name: 7dce122004969d56ae2e0245cb754d35
884
+ msgid "Edit"
885
+ msgstr "ערוך"
886
 
887
+ # <ul class="bl">
888
+ # <li><a class="acf-button-delete ir" href="#"><?php _e("Remove",'acf'); ?></a></li>
889
+ # <li><a class="acf-button-edit ir" href="#"><?php _e("Edit",'acf'); ?></a></li>
890
+ # wpml-name: 1063e38cb53d94d386f21227fcd84717
891
+ msgid "Remove"
892
+ msgstr "הסר"
893
 
894
+ # 'url' => __("Image URL",'acf'),
895
+ # 'id' => __("Image ID",'acf')
896
+ # )
897
+ # wpml-name: 0fc487dde1adcfdc078ba05c3acbd7b9
898
+ msgid "Image ID"
899
+ msgstr "מזהה יחודי לתמונה"
900
 
901
+ # 'object' => __("Image Object",'acf'),
902
+ # 'url' => __("Image URL",'acf'),
903
+ # 'id' => __("Image ID",'acf')
904
+ # wpml-name: 427b6d816d7fdd86cabe48d8180a3cc9
905
+ msgid "Image URL"
906
+ msgstr "URL לתמונה"
907
 
908
+ # 'choices' => array(
909
+ # 'object' => __("Image Object",'acf'),
910
+ # 'url' => __("Image URL",'acf'),
911
+ # wpml-name: 2fc14077f7647e7eb268b72b3eafe14b
912
+ msgid "Image Object"
913
+ msgstr "אוביקט תמונה"
914
 
915
+ # 'edit' => __("Edit Image",'acf'),
916
+ # 'update' => __("Update Image",'acf'),
917
+ # 'uploadedTo' => __("uploaded to this post",'acf'),
918
+ # wpml-name: 9e3c5f97717a2e0757845fefe0ffcfd1
919
+ msgid "Update Image"
920
+ msgstr "עדכן תמונה"
921
 
922
+ # 'select' => __("Select Image",'acf'),
923
+ # 'edit' => __("Edit Image",'acf'),
924
+ # 'update' => __("Update Image",'acf'),
925
+ # wpml-name: 03274f27f51f0c39e06e0e6cd07e01a9
926
+ msgid "Edit Image"
927
+ msgstr "ערוך תמונה"
928
 
929
+ # $this->l10n = array(
930
+ # 'select' => __("Select Image",'acf'),
931
+ # 'edit' => __("Edit Image",'acf'),
932
+ # wpml-name: 446a6000511ab6fb0711400379a62a04
933
+ msgid "Select Image"
934
+ msgstr "בחר תמונה"
935
 
936
+ # $this->name = 'image';
937
+ # $this->label = __("Image",'acf');
938
+ # $this->category = __("Content",'acf');
939
+ # wpml-name: be53a0541a6d36f6ecb879fa2c584b08
940
+ msgid "Image"
941
+ msgstr "תמונה"
942
 
943
+ # $this->name = 'password';
944
+ # $this->label = __("Password",'acf');
945
+ # $this->defaults = array(
946
+ # wpml-name: dc647eb65e6711e155375218212b3964
947
+ msgid "Password"
948
+ msgstr "סיסמה"
949
 
950
+ # <td class="label">
951
+ # <label><?php _e("Load & Save Terms to Post",'acf'); ?></label>
952
+ # </td>
953
+ # wpml-name: 1bd1684e6adaaa07e30ba7c8bdef98ab
954
+ msgid "Load & Save Terms to Post"
955
+ msgstr "טען & שמור תנאים לפוסט"
956
 
957
+ # <td class="label">
958
+ # <label><?php _e("Field Type",'acf'); ?><span class="required">*</span></label>
959
+ # </td>
960
+ # wpml-name: 189efd19c4153526994a6d7ea5f6f068
961
+ msgid "Field Type"
962
+ msgstr "סוג שדה"
 
 
 
963
 
964
+ # <label class="selectit">
965
+ # <input type="<?php echo $field['field_type']; ?>" name="<?php echo $field['name']; ?>" value="" /> <?php _e("None", 'acf'); ?>
966
+ # </label>
967
+ # wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
968
+ msgid "None"
969
+ msgstr "None"
970
 
971
+ # 'object' => __("Term Object",'acf'),
972
+ # 'id' => __("Term ID",'acf')
973
+ # )
974
+ # wpml-name: fde9b4af01ce22774f4a6ae6b71ed06a
975
+ msgid "Term ID"
976
+ msgstr "מזהה יחודי לטרם"
977
 
978
+ # 'choices' => array(
979
+ # 'object' => __("Term Object",'acf'),
980
+ # 'id' => __("Term ID",'acf')
981
+ # wpml-name: ca7b9ad0fbe6631806c41e30d7c177f9
982
+ msgid "Term Object"
983
+ msgstr "אוביקט טרם"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
984
 
985
+ # 'value' => $field['load_save_terms'],
986
+ # 'message' => __("Load value based on the post's terms and update the post's terms on save",'acf')
987
+ # ));
988
+ # wpml-name: 057dbdd9c6432166df901c43f24c26fd
989
+ msgid "Load value based on the post's terms and update the post's terms on save"
990
+ msgstr "טען ערך המבוסס על המונחים של הפוסט ועדכן את התנאים של הפוסט בשמירה"
991
 
992
+ # __("Single Value",'acf') => array(
993
+ # 'radio' => __('Radio Buttons', 'acf'),
994
+ # 'select' => __('Select', 'acf')
995
+ # wpml-name: 7041d69f9024a46791714e59812fa68f
996
+ msgid "Radio Buttons"
997
+ msgstr "כפתורי רדיו"
998
 
999
+ # ),
1000
+ # __("Single Value",'acf') => array(
1001
+ # //'radio' => __('Radio Buttons', 'acf'),
1002
+ # wpml-name: fa67106e821a61cda66be8ccf72994a4
1003
+ msgid "Single Value"
1004
+ msgstr "ערך יחיד"
1005
 
1006
+ # //'checkbox' => __('Checkbox', 'acf'),
1007
+ # 'multi_select' => __('Multi Select', 'acf')
1008
+ # ),
1009
+ # wpml-name: d7175d19d528991028cc7fe6970fd592
1010
+ msgid "Multi Select"
1011
+ msgstr "בחירה מרובה"
 
1012
 
1013
+ # 'choices' => array(
1014
+ # __("Multiple Values",'acf') => array(
1015
+ # //'checkbox' => __('Checkbox', 'acf'),
1016
+ # wpml-name: 9feee6e037e14f3c592cb4d3b6131e8a
1017
+ msgid "Multiple Values"
1018
+ msgstr "ערכים מרובים"
1019
 
1020
+ # <td class="label">
1021
+ # <label><?php _e("Taxonomy",'acf'); ?></label>
1022
+ # </td>
1023
+ # wpml-name: 30d10883c017c4fd6751c8982e20dae1
1024
+ msgid "Taxonomy"
1025
+ msgstr "טקסונמיה"
1026
 
1027
+ # $this->name = 'email';
1028
+ # $this->label = __("Email",'acf');
1029
+ # $this->defaults = array(
1030
+ # wpml-name: ce8ae9da5b7cd6c3df2929543a9af92d
1031
+ msgid "Email"
1032
+ msgstr "מייל"
1033
 
1034
+ # $this->name = 'color_picker';
1035
+ # $this->label = __("Color Picker",'acf');
1036
+ # $this->category = __("jQuery",'acf');
1037
+ # wpml-name: 55fb1b11cc3dbb67782af12731c07206
1038
+ msgid "Color Picker"
1039
+ msgstr "דוגם צבע"
1040
 
1041
+ # <td class="label">
1042
+ # <label><?php _e("Library",'acf'); ?></label>
1043
+ # <p><?php _e("Limit the media library choice",'acf') ?></p>
1044
+ # wpml-name: 4d70254b3a8e2bc38b6147fa6ee813be
1045
+ msgid "Library"
1046
+ msgstr "ספריה"
 
1047
 
1048
+ # <td class="label">
1049
+ # <label><?php _e("Return Value",'acf'); ?></label>
1050
+ # <p><?php _e("Specify the returned value on front end",'acf') ?></p>
1051
+ # wpml-name: 64fca1d7535c8577dbca08ae619281a8
1052
+ msgid "Return Value"
1053
+ msgstr "ערך חוזר"
1054
 
1055
+ # <li>
1056
+ # <span><?php _e('No File Selected','acf'); ?></span>. <a href="#" class="button add-file"><?php _e('Add File','acf'); ?></a>
1057
+ # </li>
1058
+ # wpml-name: a171685506a8a29bc313111ec696ff79
1059
+ msgid "Add File"
1060
+ msgstr "הוסף קובץ"
1061
 
1062
+ # <li>
1063
+ # <span><?php _e('No File Selected','acf'); ?></span>. <a href="#" class="button add-file"><?php _e('Add File','acf'); ?></a>
1064
+ # </li>
1065
+ # wpml-name: b35321ec82a704ff5d97a5bf1110abea
1066
+ msgid "No File Selected"
1067
+ msgstr "לא נבחר קובץ"
1068
 
1069
+ # <p>
1070
+ # <strong><?php _e('Size', 'acf'); ?>:</strong>
1071
+ # <span class="acf-file-size"><?php echo $o['size']; ?></span>
1072
+ # wpml-name: 6f6cb72d544962fa333e2e34ce64f719
1073
+ msgid "Size"
1074
+ msgstr "גודל"
1075
+
1076
+ # 'all' => __('All', 'acf'),
1077
+ # 'uploadedTo' => __('Uploaded to post', 'acf')
1078
+ # )
1079
+ # wpml-name: d2e1da41404345deeba95b4e9d6d3ee6
1080
+ msgid "Uploaded to post"
1081
+ msgstr "העלה לפוסט"
1082
 
1083
+ # 'url' => __("File URL",'acf'),
1084
+ # 'id' => __("File ID",'acf')
1085
+ # )
1086
+ # wpml-name: dca2936bfdbe4c533d75e2fd15d41b16
1087
+ msgid "File ID"
1088
+ msgstr "id של קובץ"
1089
 
1090
+ # 'object' => __("File Object",'acf'),
1091
+ # 'url' => __("File URL",'acf'),
1092
+ # 'id' => __("File ID",'acf')
1093
+ # wpml-name: b3d2db69feecaedff30f1e0bc60206d6
1094
+ msgid "File URL"
1095
+ msgstr "URL של קובץ"
1096
 
1097
+ # 'choices' => array(
1098
+ # 'object' => __("File Object",'acf'),
1099
+ # 'url' => __("File URL",'acf'),
1100
+ # wpml-name: e576a06844b13541700775aa748ca81d
1101
+ msgid "File Object"
1102
+ msgstr "אוביקט קובץ"
1103
 
1104
+ # 'update' => __("Update Image",'acf'),
1105
+ # 'uploadedTo' => __("uploaded to this post",'acf'),
1106
+ # );
1107
+ # wpml-name: 9a3c9f8a74a67339e1e44ec868e477d5
1108
+ msgid "uploaded to this post"
1109
+ msgstr "העלה לפוסט הזה"
 
 
1110
 
1111
+ # 'edit' => __("Edit File",'acf'),
1112
+ # 'update' => __("Update File",'acf'),
1113
+ # 'uploadedTo' => __("uploaded to this post",'acf'),
1114
+ # wpml-name: e9812bb9eba65f60200270a20c9aa460
1115
+ msgid "Update File"
1116
+ msgstr "עדכן קובץ"
1117
 
1118
+ # 'select' => __("Select File",'acf'),
1119
+ # 'edit' => __("Edit File",'acf'),
1120
+ # 'update' => __("Update File",'acf'),
1121
+ # wpml-name: 29e095aae77598f33a93481a0d8ff02a
1122
+ msgid "Edit File"
1123
+ msgstr "ערוך קובץ"
 
 
1124
 
1125
+ # $this->l10n = array(
1126
+ # 'select' => __("Select File",'acf'),
1127
+ # 'edit' => __("Edit File",'acf'),
1128
+ # wpml-name: 1aa14e9f377b528b5537d70fbd35c6a2
1129
+ msgid "Select File"
1130
+ msgstr "בחר קובץ"
1131
 
1132
+ # $this->name = 'file';
1133
+ # $this->label = __("File",'acf');
1134
+ # $this->category = __("Content",'acf');
1135
+ # wpml-name: 0b27918290ff5323bea1e3b78a9cf04e
1136
+ msgid "File"
1137
+ msgstr "קובץ"
1138
 
1139
+ # <label><?php _e("Formatting",'acf'); ?></label>
1140
+ # <p><?php _e("Effects value on front end",'acf') ?></p>
1141
+ # </td>
1142
+ # wpml-name: 5881d23e5578bda6b39632adb3d9a5cf
1143
+ msgid "Effects value on front end"
1144
+ msgstr "ערך השפעה על הפרונט אנד"
1145
 
1146
+ # <td class="label">
1147
+ # <label><?php _e("Formatting",'acf'); ?></label>
1148
+ # <p><?php _e("Effects value on front end",'acf') ?></p>
1149
+ # wpml-name: 767042e4dbdd6d8f737786f122d66d4f
1150
+ msgid "Formatting"
1151
+ msgstr "עיצוב"
1152
 
1153
+ # <label><?php _e("Rows",'acf'); ?></label>
1154
+ # <p><?php _e("Sets the textarea height",'acf') ?></p>
1155
+ # </td>
1156
+ # wpml-name: 6d9a430be5aa8935c83827988b01e55c
1157
+ msgid "Sets the textarea height"
1158
+ msgstr "מגדיר את גודל אזור הטקסט"
1159
+
1160
+ # <td class="label">
1161
+ # <label><?php _e("Rows",'acf'); ?></label>
1162
+ # <p><?php _e("Sets the textarea height",'acf') ?></p>
1163
+ # wpml-name: 530f488f7a9800411efc6926ab189708
1164
+ msgid "Rows"
1165
+ msgstr "שורות"
1166
+
1167
+ # <label><?php _e("Character Limit",'acf'); ?></label>
1168
+ # <p><?php _e("Leave blank for no limit",'acf') ?></p>
1169
+ # </td>
1170
+ # wpml-name: 84c1700703a6d58793c0e03794acf504
1171
+ msgid "Leave blank for no limit"
1172
+ msgstr "השאר ריק כדי להגדיר כ-ללא הגבלה"
1173
 
1174
+ # <td class="label">
1175
+ # <label><?php _e("Character Limit",'acf'); ?></label>
1176
+ # <p><?php _e("Leave blank for no limit",'acf') ?></p>
1177
+ # wpml-name: 52c66fc8cbb9b58536298bb86b44b17d
1178
+ msgid "Character Limit"
1179
+ msgstr "הגבלת מספר תוים"
1180
 
1181
+ # 'none' => __("No formatting",'acf'),
1182
+ # 'html' => __("Convert HTML into tags",'acf')
1183
+ # )
1184
+ # wpml-name: e25b6f3bcaa16f4048dd53aa191adb63
1185
+ msgid "Convert HTML into tags"
1186
+ msgstr "להמיר HTML לתגים"
1187
 
1188
+ # 'none' => __("No formatting",'acf'),
1189
+ # 'br' => __("Convert new lines into &lt;br /&gt; tags",'acf'),
1190
+ # 'html' => __("Convert HTML into tags",'acf')
1191
+ # wpml-name: ffebf782d1b5c084d288cd227beb3bc6
1192
+ msgid "Convert new lines into &lt;br /&gt; tags"
1193
+ msgstr "המרת שורות חדשות לתגים &lt;br /&gt;"
1194
 
1195
+ # 'choices' => array(
1196
+ # 'none' => __("No formatting",'acf'),
1197
+ # 'html' => __("Convert HTML into tags",'acf')
1198
+ # wpml-name: c54e5b847748f25df8c8bcea1f83e044
1199
+ msgid "No formatting"
1200
+ msgstr "ללא עיצוב"
1201
 
1202
+ # $this->name = 'textarea';
1203
+ # $this->label = __("Text Area",'acf');
1204
+ # $this->defaults = array(
1205
+ # wpml-name: 9bdbf046d28d07c9fefa1b965ac0cdcb
1206
+ msgid "Text Area"
1207
+ msgstr "אזור טקסט"
1208
 
1209
+ # <td class="label">
1210
+ # <label for=""><?php _e("Week Starts On",'acf'); ?></label>
1211
+ # </td>
1212
+ # wpml-name: 35795c660739fc1e0a43f922eedbdded
1213
+ msgid "Week Starts On"
1214
+ msgstr "השבוע מתחיל ביום"
1215
 
1216
+ # <p class="description"><?php _e("This format will be seen by the user when entering a value",'acf'); ?></p>
1217
+ # <p><?php _e("\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate" target="_blank"><?php _e("jQuery date formats",'acf'); ?></a></p>
1218
+ # </td>
1219
+ # wpml-name: a9521d29b7ce7ed2d4f9ec92402f9574
1220
+ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about"
1221
+ msgstr "\"dd/mm/yy\" או \"mm/dd/yy\" הם הפורמטים הנפוצים ביותר.קרא עוד אודות זה"
1222
+
1223
+ # <label><?php _e("Display format",'acf'); ?></label>
1224
+ # <p class="description"><?php _e("This format will be seen by the user when entering a value",'acf'); ?></p>
1225
+ # <p><?php _e("\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate" target="_blank"><?php _e("jQuery date formats",'acf'); ?></a></p>
1226
+ # wpml-name: 1dbb5cefeeb908a2417d424a1e5815a9
1227
+ msgid "This format will be seen by the user when entering a value"
1228
+ msgstr "הפורמט הזה יראה על ידי המשתמש בעת הזנת ערך"
1229
 
1230
+ # <td class="label">
1231
+ # <label><?php _e("Display format",'acf'); ?></label>
1232
+ # <p class="description"><?php _e("This format will be seen by the user when entering a value",'acf'); ?></p>
1233
+ # wpml-name: 0123e71b7304a4c4484c9bd19d7ce072
1234
+ msgid "Display format"
1235
+ msgstr "פורמט תצוגה"
 
 
 
1236
 
1237
+ # <p class="description"><?php _e("This format will be seen by the user when entering a value",'acf'); ?></p>
1238
+ # <p><?php _e("\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate" target="_blank"><?php _e("jQuery date formats",'acf'); ?></a></p>
1239
+ # </td>
1240
+ # wpml-name: 0a9de1bf8916fd16af23876e16367590
1241
+ msgid "jQuery date formats"
1242
+ msgstr "פורמט תאריך jQuary "
1243
 
1244
+ # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1245
+ # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1246
+ # </td>
1247
+ # wpml-name: 859b701b589225e84b65246501039279
1248
+ msgid "\"yymmdd\" is the most versatile save format. Read more about"
1249
+ msgstr "הוא פורמט השמירה הרב צדדי ביותר.קרא עוד אודות זה"
1250
 
1251
+ # <label><?php _e("Save format",'acf'); ?></label>
1252
+ # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1253
+ # <p><?php _e("\"yymmdd\" is the most versatile save format. Read more about",'acf'); ?> <a href="http://docs.jquery.com/UI/Datepicker/formatDate"><?php _e("jQuery date formats",'acf'); ?></a></p>
1254
+ # wpml-name: b32d3e0433f5fbc2fc5b2593d5129cfc
1255
+ msgid "This format will determin the value saved to the database and returned via the API"
1256
+ msgstr "הפורמט הזה יקבע את הערך הנשמר לבסיס הנתונים ויוחזר דרך הAPI."
1257
 
1258
+ # <td class="label">
1259
+ # <label><?php _e("Save format",'acf'); ?></label>
1260
+ # <p class="description"><?php _e("This format will determin the value saved to the database and returned via the API",'acf'); ?></p>
1261
+ # wpml-name: d3db150cd06127a833ecd279debf7729
1262
+ msgid "Save format"
1263
+ msgstr "פורמט שמירה"
1264
 
1265
+ # 'monthNamesShort' => array_values( $wp_locale->month_abbrev ),
1266
+ # 'monthStatus' => __( 'Show a different month', 'acf' ),
1267
+ # 'dayNames' => array_values( $wp_locale->weekday ),
1268
+ # wpml-name: 2c9b6824ec7e318ec1eed5fa84ad4774
1269
+ msgid "Show a different month"
1270
+ msgstr "הצג חודש אחר"
1271
 
1272
+ # 'closeText' => __( 'Done', 'acf' ),
1273
+ # 'currentText' => __( 'Today', 'acf' ),
1274
+ # 'monthNames' => array_values( $wp_locale->month ),
1275
+ # wpml-name: 1dd1c5fb7f25cd41b291d43a89e3aefd
1276
+ msgid "Today"
1277
+ msgstr "היום"
1278
 
1279
+ # $this->l10n = array(
1280
+ # 'closeText' => __( 'Done', 'acf' ),
1281
+ # 'currentText' => __( 'Today', 'acf' ),
1282
+ # wpml-name: f92965e2c8a7afb3c1b9a5c09a263636
1283
+ msgid "Done"
1284
+ msgstr "בוצע"
1285
 
1286
+ # $this->name = 'date_picker';
1287
+ # $this->label = __("Date Picker",'acf');
1288
+ # $this->category = __("jQuery",'acf');
1289
+ # wpml-name: 566235c7913fdded5a84d4578758515f
1290
+ msgid "Date Picker"
1291
+ msgstr "פיקר תאריך"
1292
 
1293
+ # <td class="label">
1294
+ # <label><?php _e("Show Media Upload Buttons?",'acf'); ?></label>
1295
+ # </td>
1296
+ # wpml-name: b9e4279bef4972a4455cf85b3f8f9972
1297
+ msgid "Show Media Upload Buttons?"
1298
+ msgstr "הצג כפתור העלה מדיה?"
1299
 
1300
+ # <td class="label">
1301
+ # <label><?php _e("Toolbar",'acf'); ?></label>
1302
+ # </td>
1303
+ # wpml-name: ef05c8098cdb2b34e39c80515fc037bd
1304
+ msgid "Toolbar"
1305
+ msgstr "סרגל כלים"
1306
 
1307
+ # $this->label = __("Image",'acf');
1308
+ # $this->category = __("Content",'acf');
1309
+ # $this->defaults = array(
1310
+ # wpml-name: f15c1cae7882448b3fb0404682e17e61
1311
+ msgid "Content"
1312
+ msgstr "תוכן"
1313
 
1314
+ # $this->name = 'wysiwyg';
1315
+ # $this->label = __("Wysiwyg Editor",'acf');
1316
+ # $this->category = __("Content",'acf');
1317
+ # wpml-name: 532114b899e30adfc7549a7fb9a181ba
1318
+ msgid "Wysiwyg Editor"
1319
+ msgstr "עורך Wysiwyg"
1320
 
1321
+ # <p class="description"><?php _e("Text &amp; HTML entered here will appear inline with the fields",'acf'); ?><br /><br />
1322
+ # <?php _e("Please note that all text will first be passed through the wp function ",'acf'); ?><a href="http://codex.wordpress.org/Function_Reference/wpautop" target="_blank">wpautop</a></p>
1323
+ # </td>
1324
+ # wpml-name: 643f16a729a8488ec1dbb7e9f113f0b7
1325
+ msgid "Please note that all text will first be passed through the wp function "
1326
+ msgstr "שים לב שכל הטקסט יועבר דרך הwp function- "
1327
 
1328
+ # <label for=""><?php _e("Message",'acf'); ?></label>
1329
+ # <p class="description"><?php _e("Text &amp; HTML entered here will appear inline with the fields",'acf'); ?><br /><br />
1330
+ # <?php _e("Please note that all text will first be passed through the wp function ",'acf'); ?><a href="http://codex.wordpress.org/Function_Reference/wpautop" target="_blank">wpautop</a></p>
1331
+ # wpml-name: 8ccb749a042d4bbb426213f6bbef2751
1332
+ msgid "Text &amp; HTML entered here will appear inline with the fields"
1333
+ msgstr "טקסט &amp; HTML שנכנס כאן יופיע בשורה עם השדות"
1334
 
1335
+ # <td class="label">
1336
+ # <label><?php _e("Message",'acf'); ?></label>
1337
+ # <p class="description"><?php _e("eg. Show extra content",'acf'); ?></a></p>
1338
+ # wpml-name: 4c2a8fe7eaf24721cc7a9f0175115bd4
1339
+ msgid "Message"
1340
+ msgstr "הודעה"
1341
 
1342
+ # <?php _e("Red",'acf'); ?><br />
1343
+ # <?php _e("Blue",'acf'); ?><br />
1344
+ # <br />
1345
+ # wpml-name: 9594eec95be70e7b1710f730fdda33d9
1346
+ msgid "Blue"
1347
+ msgstr "כחול"
1348
 
1349
+ # <br />
1350
+ # <?php _e("Red",'acf'); ?><br />
1351
+ # <?php _e("Blue",'acf'); ?><br />
1352
+ # wpml-name: ee38e4d5dd68c4e440825018d549cb47
1353
+ msgid "Red"
1354
+ msgstr "אדום"
1355
 
1356
+ # <label for=""><?php _e("Choices",'acf'); ?></label>
1357
+ # <p class="description"><?php _e("Enter your choices one per line",'acf'); ?><br />
1358
+ # <br />
1359
+ # wpml-name: f0fb6fa08c470e67be28c1eb1770542f
1360
+ msgid "Enter your choices one per line"
1361
+ msgstr "הזן את הבחירות שלך, אחת בכל שורה"
1362
 
1363
+ # 'value' => $field['save_other_choice'],
1364
+ # 'message' => __("Save 'other' values to the field's choices", 'acf')
1365
+ # ));
1366
+ # wpml-name: 1cc64a7698a8664e88f95dad21e0cc46
1367
+ msgid "Save 'other' values to the field's choices"
1368
+ msgstr "שמירת ערכים 'אחרים' לבחירותיו של השדה"
1369
 
1370
+ # 'value' => $field['other_choice'],
1371
+ # 'message' => __("Add 'other' choice to allow for custom values", 'acf')
1372
+ # ));
1373
+ # wpml-name: 4d020559f8ce4e0eddb8c565ba56f1dc
1374
+ msgid "Add 'other' choice to allow for custom values"
1375
+ msgstr "הוסף אפשרות 'אחר' כדי לאפשר ערכים אישיים"
1376
 
1377
+ # ),
1378
+ # __("Other",'acf') => array(
1379
+ # 'ef_media' => __("Attachment",'acf'),
1380
+ # wpml-name: 6311ae17c1ee52b36e68aaf4ad066387
1381
+ msgid "Other"
1382
+ msgstr "אחר"
1383
 
1384
+ # $this->name = 'radio';
1385
+ # $this->label = __("Radio Button",'acf');
1386
+ # $this->category = __("Choice",'acf');
1387
+ # wpml-name: 0b9ddc9a494526f2fbba84612d970329
1388
+ msgid "Radio Button"
1389
+ msgstr "כפתור רדיו"
1390
 
1391
+ # $this->label = __("Tab",'acf');
1392
+ # $this->category = __("Layout",'acf');
1393
+ #
1394
+ # wpml-name: ebd9bec4d70abc789d439c1f136b0538
1395
+ msgid "Layout"
1396
+ msgstr "לייאוט"
1397
 
1398
+ # 'vertical' => __("Vertical",'acf'),
1399
+ # 'horizontal' => __("Horizontal",'acf')
1400
+ # )
1401
+ # wpml-name: c1b5fa03ecdb95d4a45dd1c40b02527f
1402
+ msgid "Horizontal"
1403
+ msgstr "מאוזן"
1404
 
1405
+ # 'choices' => array(
1406
+ # 'vertical' => __("Vertical",'acf'),
1407
+ # 'horizontal' => __("Horizontal",'acf')
1408
+ # wpml-name: 06ce2a25e5d12c166a36f654dbea6012
1409
+ msgid "Vertical"
1410
+ msgstr "אנכי"
1411
 
1412
+ # __("Multiple Values",'acf') => array(
1413
+ # 'checkbox' => __('Checkbox', 'acf'),
1414
+ # 'multi_select' => __('Multi Select', 'acf')
1415
+ # wpml-name: 4f8222964f9a317cef99dddc23a121bd
1416
  msgid "Checkbox"
1417
  msgstr "תיבת סימון"
1418
 
1419
+ # <label><?php _e("Default Value",'acf'); ?></label>
1420
+ # <p class="description"><?php _e("Enter each default value on a new line",'acf'); ?></p>
1421
+ # </td>
1422
+ # wpml-name: 382c7fd732194cf2945fc7877ea0b4de
1423
+ msgid "Enter each default value on a new line"
1424
+ msgstr "הזן כל ערך ברירת מחדל בשורה חדשה"
1425
 
1426
+ # <?php _e("red : Red",'acf'); ?><br />
1427
+ # <?php _e("blue : Blue",'acf'); ?><br />
1428
+ # </p>
1429
+ # wpml-name: 31f5cd61edd368f993450b83b897e8a2
1430
+ msgid "blue : Blue"
1431
+ msgstr "blue: כחול"
1432
 
1433
+ # <br />
1434
+ # <?php _e("red : Red",'acf'); ?><br />
1435
+ # <?php _e("blue : Blue",'acf'); ?><br />
1436
+ # wpml-name: 832173ba7d64b50f6fc0453368133ea8
1437
+ msgid "red : Red"
1438
+ msgstr "red : אדום "
1439
 
1440
+ # <p><?php _e("Enter each choice on a new line.",'acf'); ?></p>
1441
+ # <p><?php _e("For more control, you may specify both a value and label like this:",'acf'); ?></p>
1442
+ # <p><?php _e("red : Red",'acf'); ?><br /><?php _e("blue : Blue",'acf'); ?></p>
1443
+ # wpml-name: ce721738d02e9ef31985a926848df03c
1444
  msgid "For more control, you may specify both a value and label like this:"
1445
  msgstr "ליותר שליטה, אתה יכול לציין את הערך ואת התווית בצורה הבאה:"
1446
 
1447
+ # <label for=""><?php _e("Choices",'acf'); ?></label>
1448
+ # <p><?php _e("Enter each choice on a new line.",'acf'); ?></p>
1449
+ # <p><?php _e("For more control, you may specify both a value and label like this:",'acf'); ?></p>
1450
+ # wpml-name: 21836fc2a6eec49bde6ab7a5e7d4cf34
1451
+ msgid "Enter each choice on a new line."
1452
+ msgstr "הזן את כל בחירה בשורה חדשה."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1453
 
1454
+ # <td class="label">
1455
+ # <label for=""><?php _e("Choices",'acf'); ?></label>
1456
+ # <p class="description"><?php _e("Enter your choices one per line",'acf'); ?><br />
1457
+ # wpml-name: 6ef697f11922be2e4de0971f7d70997f
1458
+ msgid "Choices"
1459
+ msgstr "בחירות"
1460
 
1461
+ # $this->label = __("True / False",'acf');
1462
+ # $this->category = __("Choice",'acf');
1463
+ # $this->defaults = array(
1464
+ # wpml-name: 458b9dcc0921f46b1192427426d59c10
1465
+ msgid "Choice"
1466
+ msgstr "בחירה"
1467
 
1468
+ # //'radio' => __('Radio Buttons', 'acf'),
1469
+ # 'select' => __('Select', 'acf')
1470
+ # )
1471
+ # wpml-name: e0626222614bdee31951d84c64e5e9ff
1472
+ msgid "Select"
1473
+ msgstr "בחירה"
1474
 
1475
+ # <td class="label">
1476
+ # <label><?php _e("Filter from Taxonomy",'acf'); ?></label>
1477
+ # </td>
1478
+ # wpml-name: af2978fbac801eab7557e5e5b45dfa5f
1479
+ msgid "Filter from Taxonomy"
1480
+ msgstr "סנן על פי טקסונומיה"
1481
 
1482
+ #
1483
+ # $post_title = __('(no title)', 'acf');
1484
+ #
1485
+ # wpml-name: 2e46eab92bf73b409799a8baaa13f8f2
1486
+ msgid "(no title)"
1487
+ msgstr "(ללא כותרת)"
1488
+
1489
+ # $this->name = 'post_object';
1490
+ # $this->label = __("Post Object",'acf');
1491
+ # $this->category = __("Relational",'acf');
1492
+ # wpml-name: 251a1a540529e67afa01a92b855c5eed
1493
+ msgid "Post Object"
1494
+ msgstr "אוביקט פוסט"
1495
 
1496
+ # <td class="label">
1497
+ # <label><?php _e("Select multiple values?",'acf'); ?></label>
1498
+ # </td>
1499
+ # wpml-name: eae2cc755261b9e45a0988ffb46bf670
1500
+ msgid "Select multiple values?"
1501
+ msgstr "בחר ערכים מרובים?"
1502
 
1503
+ # <td class="label">
1504
+ # <label><?php _e("Allow Null?",'acf'); ?></label>
1505
+ # </td>
1506
+ # wpml-name: 92b7dd7223e5a79bc4df347d63619618
1507
+ msgid "Allow Null?"
1508
+ msgstr "לאפשר Null?"
1509
 
1510
+ # __("Basic",'acf') => array(
1511
+ # 'post_type' => __("Post Type",'acf'),
1512
+ # 'user_type' => __("Logged in User Type",'acf'),
1513
+ # wpml-name: 4079b1ca4a9a54e6f13cf806b063c622
1514
+ msgid "Post Type"
1515
+ msgstr "סוג פוסט"
1516
 
1517
+ # $this->label = __("User",'acf');
1518
+ # $this->category = __("Relational",'acf');
1519
+ # $this->defaults = array(
1520
+ # wpml-name: 14ecfbc5403b00fa4432000ad75d6e92
1521
+ msgid "Relational"
1522
+ msgstr "יחסים"
1523
 
1524
+ # $this->name = 'page_link';
1525
+ # $this->label = __("Page Link",'acf');
1526
+ # $this->category = __("Relational",'acf');
1527
+ # wpml-name: 22e7abd375ed471f31ca00cfcff3cccf
1528
+ msgid "Page Link"
1529
+ msgstr "קישור לעמוד"
1530
 
1531
+ # <td class="label">
1532
+ # <label><?php _e("Step Size",'acf'); ?></label>
1533
+ # </td>
1534
+ # wpml-name: 130c702e7104684c3c43c95251f1ee55
1535
+ msgid "Step Size"
1536
+ msgstr " גודל שלב"
1537
 
1538
+ # <td class="label">
1539
+ # <label><?php _e("Maximum Value",'acf'); ?></label>
1540
+ # </td>
1541
+ # wpml-name: 48b0ece3cdd23c3605c8d7ee617c43ca
1542
+ msgid "Maximum Value"
1543
+ msgstr "ערך מקסימום"
1544
 
1545
+ # <td class="label">
1546
+ # <label><?php _e("Minimum Value",'acf'); ?></label>
1547
+ # </td>
1548
+ # wpml-name: 702a538a7348a9e52b08913558867f70
1549
+ msgid "Minimum Value"
1550
+ msgstr "ערך מינימום"
1551
 
1552
+ # <label><?php _e("Append",'acf'); ?></label>
1553
+ # <p><?php _e("Appears after the input",'acf') ?></p>
1554
+ # </td>
1555
+ # wpml-name: db607e9ca082ba3d5867facc46afccf9
1556
  msgid "Appears after the input"
1557
  msgstr "מופיע לאחר input"
1558
 
1559
+ # <td class="label">
1560
+ # <label><?php _e("Append",'acf'); ?></label>
1561
+ # <p><?php _e("Appears after the input",'acf') ?></p>
1562
+ # wpml-name: 3ac4692f3935a49a0b243eecf529faa9
1563
+ msgid "Append"
1564
+ msgstr "להוסיף"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1565
 
1566
+ # <label><?php _e("Prepend",'acf'); ?></label>
1567
+ # <p><?php _e("Appears before the input",'acf') ?></p>
1568
+ # </td>
1569
+ # wpml-name: 07be83ff94ddf16e065043e703d584c9
1570
+ msgid "Appears before the input"
1571
+ msgstr "מופיע לפני input"
1572
 
1573
+ # <td class="label">
1574
+ # <label><?php _e("Prepend",'acf'); ?></label>
1575
+ # <p><?php _e("Appears before the input",'acf') ?></p>
1576
+ # wpml-name: c8bc2f88eeb64f1a0c9ec31ec452432c
1577
+ msgid "Prepend"
1578
+ msgstr "צרף בתחילת שורה"
1579
 
1580
+ # <label><?php _e("Placeholder Text",'acf'); ?></label>
1581
+ # <p><?php _e("Appears within the input",'acf') ?></p>
1582
+ # </td>
1583
+ # wpml-name: 7928b4d48111164c292b983f16641ee8
1584
+ msgid "Appears within the input"
1585
+ msgstr "מופיע בתוך הinput"
1586
 
1587
+ # <td class="label">
1588
+ # <label><?php _e("Placeholder Text",'acf'); ?></label>
1589
+ # <p><?php _e("Appears within the input",'acf') ?></p>
1590
+ # wpml-name: 6485c7641245873388f0170f472183c6
1591
+ msgid "Placeholder Text"
1592
+ msgstr "טקסט 'פלייסהולדר'"
1593
 
1594
+ # <label><?php _e("Default Value",'acf'); ?></label>
1595
+ # <p><?php _e("Appears when creating a new post",'acf') ?></p>
1596
+ # </td>
1597
+ # wpml-name: e0ab548ec5ac3ba46f81712afe67edf6
1598
+ msgid "Appears when creating a new post"
1599
+ msgstr "מופיי כאשר יוצרים פוסט חדש"
1600
 
1601
+ # <td class="label">
1602
+ # <label><?php _e("Default Value",'acf'); ?></label>
1603
+ # <p><?php _e("Appears when creating a new post",'acf') ?></p>
1604
+ # wpml-name: 6b66a61fa66288a9a7ad6474d2e686ec
1605
+ msgid "Default Value"
1606
+ msgstr "ערך ברירת המחדל"
1607
 
1608
+ # $this->name = 'number';
1609
+ # $this->label = __("Number",'acf');
1610
+ # $this->defaults = array(
1611
+ # wpml-name: b2ee912b91d69b435159c7c3f6df7f5f
1612
+ msgid "Number"
1613
+ msgstr "מספר"
1614
 
1615
+ # <label><?php _e("Height",'acf'); ?></label>
1616
+ # <p class="description"><?php _e('Customise the map height','acf'); ?></p>
1617
+ # </td>
1618
+ # wpml-name: f0919023ce4e547d5635145818c6a0ea
1619
+ msgid "Customise the map height"
1620
+ msgstr "קבע בצורה אישית את גובה המפה"
1621
 
1622
+ # <td class="label">
1623
+ # <label><?php _e("Height",'acf'); ?></label>
1624
+ # <p class="description"><?php _e('Customise the map height','acf'); ?></p>
1625
+ # wpml-name: eec6c4bdbd339edf8cbea68becb85244
1626
+ msgid "Height"
1627
+ msgstr "גובה"
1628
 
1629
+ # <label><?php _e("Zoom",'acf'); ?></label>
1630
+ # <p class="description"><?php _e('Set the initial zoom level','acf'); ?></p>
1631
+ # </td>
1632
+ # wpml-name: 339b27f9f9e90c4178c52d42cd98a6ad
1633
  msgid "Set the initial zoom level"
1634
  msgstr "הגדר את רמת הזום הראשונית"
1635
 
1636
+ # <td class="label">
1637
+ # <label><?php _e("Zoom",'acf'); ?></label>
1638
+ # <p class="description"><?php _e('Set the initial zoom level','acf'); ?></p>
1639
+ # wpml-name: 4252b72e6ebcd4d4b4c2e46a786f03d2
1640
+ msgid "Zoom"
1641
+ msgstr "זום"
1642
 
1643
+ # <label><?php _e("Center",'acf'); ?></label>
1644
+ # <p class="description"><?php _e('Center the initial map','acf'); ?></p>
1645
+ # </td>
1646
+ # wpml-name: c7f429b55d6bf16368a79985901d8271
1647
+ msgid "Center the initial map"
1648
+ msgstr "מרכז את המפה הראשונית"
1649
 
1650
+ # <td class="label">
1651
+ # <label><?php _e("Center",'acf'); ?></label>
1652
+ # <p class="description"><?php _e('Center the initial map','acf'); ?></p>
1653
+ # wpml-name: 4f1f6016fc9f3f2353c0cc7c67b292bd
1654
+ msgid "Center"
1655
+ msgstr "מרכז"
1656
 
1657
+ # <a href="#" class="acf-sprite-locate ir" title="<?php _e("Find current location",'acf'); ?>">Locate</a>
1658
+ # <input type="text" placeholder="<?php _e("Search for address...",'acf'); ?>" class="search" />
1659
+ # </div>
1660
+ # wpml-name: a9e87227cadc8ed525dee4855826e2f4
1661
+ msgid "Search for address..."
1662
+ msgstr "חפש כתובת..."
1663
 
1664
+ # <div class="no-value">
1665
+ # <a href="#" class="acf-sprite-locate ir" title="<?php _e("Find current location",'acf'); ?>">Locate</a>
1666
+ # <input type="text" placeholder="<?php _e("Search for address...",'acf'); ?>" class="search" />
1667
+ # wpml-name: 85ee180bf5ed100667defae7296a9d6c
1668
+ msgid "Find current location"
1669
+ msgstr "מצא את המיקום הנוכחי"
1670
 
1671
+ # <div class="has-value">
1672
+ # <a href="#" class="acf-sprite-remove ir" title="<?php _e("Clear location",'acf'); ?>">Remove</a>
1673
+ # <h4><?php echo $field['value']['address']; ?></h4>
1674
+ # wpml-name: 7f17a7b7aee890e65feb5775888f4ed8
1675
+ msgid "Clear location"
1676
+ msgstr "נקה מיקום"
1677
 
1678
+ # 'locating' => __("Locating",'acf'),
1679
+ # 'browser_support' => __("Sorry, this browser does not support geolocation",'acf'),
1680
+ # );
1681
+ # wpml-name: 8f62413b4dc87565fa8c9a5f8ef4753c
1682
+ msgid "Sorry, this browser does not support geolocation"
1683
+ msgstr "מצטערים, דפדפן זה אינו תומך במיקום גיאוגרפי"
1684
 
1685
+ # $this->l10n = array(
1686
+ # 'locating' => __("Locating",'acf'),
1687
+ # 'browser_support' => __("Sorry, this browser does not support geolocation",'acf'),
1688
+ # wpml-name: edcab0c472ca7ca173cf4738a22704b6
1689
+ msgid "Locating"
1690
+ msgstr "איתור"
1691
 
1692
+ # $this->label = __("Color Picker",'acf');
1693
+ # $this->category = __("jQuery",'acf');
1694
+ # $this->defaults = array(
1695
+ # wpml-name: f590b4fda2c30be28dd3c8c3caf5c77b
1696
+ msgid "jQuery"
1697
+ msgstr "jQuery"
1698
 
1699
+ # $this->name = 'google_map';
1700
+ # $this->label = __("Google Map",'acf');
1701
+ # $this->category = __("jQuery",'acf');
1702
+ # wpml-name: 235072af42d72915159f0e6c9d6a870c
1703
+ msgid "Google Map"
1704
+ msgstr "מפות גוגל"
1705
 
1706
+ # 'validation' => array(
1707
+ # 'error' => __("Validation Failed. One or more fields below are required.",'acf')
1708
+ # )
1709
+ # wpml-name: bb029de2bac4f7c2971453d6e41f5d99
1710
+ msgid "Validation Failed. One or more fields below are required."
1711
+ msgstr "אימות נכשל. שדה אחד או יותר הם שדות חובה."
1712
 
1713
+ # 'expand_details' => __("Expand Details",'acf'),
1714
+ # 'collapse_details' => __("Collapse Details",'acf')
1715
+ # ),
1716
+ # wpml-name: 337ee808f30c202f9bf219d668914696
1717
+ msgid "Collapse Details"
1718
+ msgstr "סגור פרטים"
1719
 
1720
+ # 'core' => array(
1721
+ # 'expand_details' => __("Expand Details",'acf'),
1722
+ # 'collapse_details' => __("Collapse Details",'acf')
1723
+ # wpml-name: a10702aa75d99deb79c11b036b7074a7
1724
+ msgid "Expand Details"
1725
+ msgstr "להרחיב פרטים"
1726
 
1727
+ # {
1728
+ # _e("No field groups were selected",'acf');
1729
+ # }
1730
+ # wpml-name: 0513d66f18dca4bddd16068bf8757fa5
1731
+ msgid "No field groups were selected"
1732
+ msgstr "שום קבוצת שדות לא נבחרה"
1733
 
1734
+ #
1735
+ # <p><a href="">&laquo; <?php _e("Back to export",'acf'); ?></a></p>
1736
+ # </td>
1737
+ # wpml-name: dacc6d8d86ae8bbee85dd8e4f76ed2f7
1738
+ msgid "Back to export"
1739
+ msgstr "חזרה ליצוא"
1740
 
1741
+ #
1742
+ # <p><?php _e("To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:",'acf'); ?></p>
1743
+ #
1744
+ # wpml-name: 295afbc2600af729f5610f5fd19a9863
1745
+ msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
1746
+ msgstr "כדי להסיר את כל הממשקים החזותיים מתוסף ACF, אתה יכול להשתמש קבוע כדי לאפשר מצב לייט. הוסף את הקוד הבא לקובץ functions.php לפני הקוד include_once:"
1747
+
1748
+ # <h3><?php _e("Include in theme",'acf'); ?></h3>
1749
+ # <p><?php _e("The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:",'acf'); ?></p>
1750
+ #
1751
+ # wpml-name: 2de212ae736ae0c4e3b75477ecafbc54
1752
+ msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
1753
+ msgstr "התוסף ACF יכול להיות כלול בתוך התבנית. לשם כך, הזז את תוסף ACF אל תוך התבנית שלך והוסף את הקוד הבא לקובץ functions.php שלך:"
1754
+
1755
+ #
1756
+ # <h3><?php _e("Include in theme",'acf'); ?></h3>
1757
+ # <p><?php _e("The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:",'acf'); ?></p>
1758
+ # wpml-name: a332d03c067d46d8ab62aa57da4fb600
1759
+ msgid "Include in theme"
1760
+ msgstr "להטמיע בתבנית"
1761
 
1762
+ #
1763
+ # <h3><?php _e("Notes",'acf'); ?></h3>
1764
+ # <p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
1765
+ # wpml-name: f4c6f851b00d5518bf888815de279aba
1766
+ msgid "Notes"
1767
+ msgstr "הודעות"
1768
 
1769
+ # <td class="label">
1770
+ # <label><?php _e("Instructions",'acf'); ?></label>
1771
+ # </td>
1772
+ # wpml-name: 49cc8e6220245b65cd7d20fc6ccc74f5
1773
+ msgid "Instructions"
1774
+ msgstr "הוראות"
1775
 
1776
+ # <div class="title">
1777
+ # <h3><?php _e("Export Field Groups to PHP",'acf'); ?></h3>
1778
+ # </div>
1779
+ # wpml-name: c7152d24b394227f2e17467e1dd8801e
1780
+ msgid "Export Field Groups to PHP"
1781
+ msgstr "יצא קבוצות שדות לphp"
1782
 
1783
+ # <li><?php _e("Paste into your functions.php file",'acf'); ?></li>
1784
+ # <li><?php _e("To activate any Add-ons, edit and use the code in the first few lines.",'acf'); ?></li>
1785
+ # </ol>
1786
+ # wpml-name: fd163cb7ed1c906a09527b449386ddba
1787
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
1788
+ msgstr "כדי להפעיל כל הרחבה, לערוך ולהשתמש בקוד בכמה השורות הראשונות."
1789
 
1790
+ # <li><?php _e("Copy the PHP code generated",'acf'); ?></li>
1791
+ # <li><?php _e("Paste into your functions.php file",'acf'); ?></li>
1792
+ # <li><?php _e("To activate any Add-ons, edit and use the code in the first few lines.",'acf'); ?></li>
1793
+ # wpml-name: a8022d342c362cc1d3da166eecf3acb2
1794
+ msgid "Paste into your functions.php file"
1795
+ msgstr "הדבק לקובץ function.php שלך"
1796
 
1797
+ # <ol>
1798
+ # <li><?php _e("Copy the PHP code generated",'acf'); ?></li>
1799
+ # <li><?php _e("Paste into your functions.php file",'acf'); ?></li>
1800
+ # wpml-name: 534aa6a9910df0280e8d1ab6e770e412
1801
+ msgid "Copy the PHP code generated"
1802
+ msgstr "העתק את קוד הphp שנוצר"
1803
 
1804
+ # <ol>
1805
+ # <li><?php _e("Select field group(s) from the list and click \"Create PHP\"",'acf'); ?></li>
1806
+ # <li><?php _e("Copy the PHP code generated",'acf'); ?></li>
1807
+ # wpml-name: b06b3348b46936c60235117e635fb208
1808
+ msgid "Select field group(s) from the list and click \"Create PHP\""
1809
+ msgstr "בחר קבוצת או קבוצות שדות מתוך הרשימה ולחץ על צור php"
1810
 
1811
+ # <p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
1812
+ # <p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file.",'acf'); ?></p>
1813
+ #
1814
+ # wpml-name: 405b3fb5cb9ef55d6db6391bbcb62a6a
1815
+ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
1816
+ msgstr "שים לב שאם אתה מייצא ומגדיר קבוצות שדות באותו אתר, אתה תראה שדות כפולים במסך העריכה שלך. כדי לתקן זאת, בבקשה העבר את קבוצת השדה המקורית לפח או הסר את הקוד מקובץ functions.php שלך."
1817
+
1818
+ # <h3><?php _e("Notes",'acf'); ?></h3>
1819
+ # <p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
1820
+ # <p><?php _e("Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file.",'acf'); ?></p>
1821
+ # wpml-name: a9e5736f2815a2cd3cae31cdddd05313
1822
+ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
1823
+ msgstr "קבוצות שדה רשומים לא יופיעו ברשימה של קבוצות שדות הניתנות לעריכה. זה מאוד שימושי כאשר מטמיעים שדות בתבניות."
1824
+
1825
+ # <h3><?php _e("Export to PHP",'acf'); ?></h3>
1826
+ # <p><?php _e("ACF will create the PHP code to include in your theme.",'acf'); ?></p>
1827
+ # <p><?php _e("Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes.",'acf'); ?></p>
1828
+ # wpml-name: 61036db4366f354e69279d08b585ada0
1829
+ msgid "ACF will create the PHP code to include in your theme."
1830
+ msgstr "ACF יצור את קוד הphp שתטמיע בתבנית שלך."
1831
 
1832
+ # <li><?php _e("Select your user and ignore Import Attachments",'acf'); ?></li>
1833
+ # <li><?php _e("That's it! Happy WordPressing",'acf'); ?></li>
1834
+ # </ol>
1835
+ # wpml-name: 9bd9bda8cfd4ba3e39fa056290180439
1836
+ msgid "That's it! Happy WordPressing"
1837
+ msgstr "זהו! כתיבה נעימה"
1838
 
1839
+ # <li><?php _e("Upload and import your exported .xml file",'acf'); ?></li>
1840
+ # <li><?php _e("Select your user and ignore Import Attachments",'acf'); ?></li>
1841
+ # <li><?php _e("That's it! Happy WordPressing",'acf'); ?></li>
1842
+ # wpml-name: c162ff78c14a568c9bb4f31cb48eb407
1843
+ msgid "Select your user and ignore Import Attachments"
1844
+ msgstr "בחר את המשתמש שלך והתעלם מיבוא קבצים מצורפים"
1845
 
1846
+ # <li><?php _e("Install WP import plugin if prompted",'acf'); ?></li>
1847
+ # <li><?php _e("Upload and import your exported .xml file",'acf'); ?></li>
1848
+ # <li><?php _e("Select your user and ignore Import Attachments",'acf'); ?></li>
1849
+ # wpml-name: fd214508e366d7e000d4245ee0169226
1850
+ msgid "Upload and import your exported .xml file"
1851
+ msgstr "להעלות ולייבא את קובץ ה-XML שיצאת."
1852
 
1853
+ # <li><?php _e("Navigate to Tools &raquo; Import and select WordPress",'acf'); ?></li>
1854
+ # <li><?php _e("Install WP import plugin if prompted",'acf'); ?></li>
1855
+ # <li><?php _e("Upload and import your exported .xml file",'acf'); ?></li>
1856
+ # wpml-name: ecd9680a028505f002e8fe964ddb3554
1857
+ msgid "Install WP import plugin if prompted"
1858
+ msgstr "התקן את תוסף יבוא WP, אם תתבקש"
1859
 
1860
+ # <li><?php _e("Save the .xml file when prompted",'acf'); ?></li>
1861
+ # <li><?php _e("Navigate to Tools &raquo; Import and select WordPress",'acf'); ?></li>
1862
+ # <li><?php _e("Install WP import plugin if prompted",'acf'); ?></li>
1863
+ # wpml-name: eabef8971475437230cabb2905c2ecc9
1864
+ msgid "Navigate to Tools &raquo; Import and select WordPress"
1865
+ msgstr "נווט אל כלים »יבוא ובחר וורדפרס "
1866
 
1867
+ # <li><?php _e("Select field group(s) from the list and click \"Export XML\"",'acf'); ?></li>
1868
+ # <li><?php _e("Save the .xml file when prompted",'acf'); ?></li>
1869
+ # <li><?php _e("Navigate to Tools &raquo; Import and select WordPress",'acf'); ?></li>
1870
+ # wpml-name: 937a5ccc64b21bb1872bf72b974252c4
1871
+ msgid "Save the .xml file when prompted"
1872
+ msgstr "שמור את הקובץ הxml כאשר תתבקש"
1873
 
1874
+ # <ol>
1875
+ # <li><?php _e("Select field group(s) from the list and click \"Export XML\"",'acf'); ?></li>
1876
+ # <li><?php _e("Save the .xml file when prompted",'acf'); ?></li>
1877
+ # wpml-name: 08ea3af180447e0ae1bb88b5ebd67b50
1878
+ msgid "Select field group(s) from the list and click \"Export XML\""
1879
+ msgstr "בחר קבוצת או קבוצות שדות מתוך הרשימה ולחץ על - יצא לxml"
1880
 
1881
+ # <p><?php _e("ACF will create a .xml export file which is compatible with the native WP import plugin.",'acf'); ?></p>
1882
+ # <p><?php _e("Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites.",'acf'); ?></p>
1883
+ # <ol>
1884
+ # wpml-name: 2d598c617ba7e9aaadf624956f2b6451
1885
+ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
1886
+ msgstr "קבוצות שדה מיובאות יופיעו ברשימה של קבוצות שדה הניתנות לעריכה. האפשרות הזו שימושית להעברת קבוצות שדות בין אתרי WP שונים."
1887
+
1888
+ # <h3><?php _e("Export to XML",'acf'); ?></h3>
1889
+ # <p><?php _e("ACF will create a .xml export file which is compatible with the native WP import plugin.",'acf'); ?></p>
1890
+ # <p><?php _e("Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites.",'acf'); ?></p>
1891
+ # wpml-name: 9106283b94f37a7597b28546f7a7cc3a
1892
+ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
1893
+ msgstr "ACF יצור קובץ יצוא מסוג .xml שמתאים לתוסף היבוא הרשמי של וורדפרס(WP import plugin)"
1894
+
1895
+ #
1896
+ # <h3><?php _e("Export to PHP",'acf'); ?></h3>
1897
+ # <p><?php _e("ACF will create the PHP code to include in your theme.",'acf'); ?></p>
1898
+ # wpml-name: c5b506060b09ff939ee3eb5ef42f728a
1899
+ msgid "Export to PHP"
1900
+ msgstr "יצוא לphp"
1901
 
1902
+ # <p><br /></p>
1903
+ # <h3><?php _e("Export to XML",'acf'); ?></h3>
1904
+ # <p><?php _e("ACF will create a .xml export file which is compatible with the native WP import plugin.",'acf'); ?></p>
1905
+ # wpml-name: c3a1e64f8bc811dc48882fb811e8f150
1906
+ msgid "Export to XML"
1907
+ msgstr "יצוא לxml"
1908
 
1909
+ # <label><?php _e("Field Groups",'acf'); ?></label>
1910
+ # <p class="description"><?php _e("Select the field groups to be exported",'acf'); ?></p>
1911
+ # </td>
1912
+ # wpml-name: 3ee5bd10fbb65b9a7223312311d6861d
1913
+ msgid "Select the field groups to be exported"
1914
+ msgstr "בחר את קבוצת השדות שברצונך ליצא"
1915
 
1916
+ # <td class="label">
1917
+ # <label><?php _e("Field Groups",'acf'); ?></label>
1918
+ # <p class="description"><?php _e("Select the field groups to be exported",'acf'); ?></p>
1919
+ # wpml-name: e421aca86d19c15e7c8bdb435844cbe2
1920
+ msgid "Field Groups"
1921
+ msgstr "קבוצות שדות"
1922
 
1923
+ # <div class="title">
1924
+ # <h3><?php _e("Export Field Groups",'acf'); ?></h3>
1925
+ # </div>
1926
+ # wpml-name: 70f5dc10df539e724c054463c0e49a05
1927
+ msgid "Export Field Groups"
1928
+ msgstr "יצא קבוצות שדות"
1929
 
1930
+ # <div class="icon32" id="icon-acf"><br></div>
1931
+ # <h2 style="margin: 4px 0 25px;"><?php _e("Export",'acf'); ?></h2>
1932
+ # <?php
1933
+ # wpml-name: 0095a9fa74d1713e43e370a7d7846224
1934
+ msgid "Export"
1935
+ msgstr "יצוא"
1936
 
1937
+ # <ul class="hl clearfix">
1938
+ # <li><a class="acf-button acf-button-big" href="<?php echo admin_url('edit.php?post_type=acf'); ?>"><?php _e("Awesome. Let's get to work",'acf'); ?></a></li>
1939
+ # </ul>
1940
+ # wpml-name: 556af2c0b71781d022e0b81f4b850990
1941
+ msgid "Awesome. Let's get to work"
1942
+ msgstr "מגניב! בא נעוף על זה"
1943
 
1944
+ # <li><?php _e("Once the plugin has been uploaded and installed, click the 'Activate Plugin' link",'acf'); ?></li>
1945
+ # <li><?php _e("The Add-on is now installed and activated!",'acf'); ?></li>
1946
+ # </ol>
1947
+ # wpml-name: 1197a6bec617e68f158315ec8e8df2f0
1948
+ msgid "The Add-on is now installed and activated!"
1949
+ msgstr "ההרחבה כעת מותקנת ומופעלת!"
1950
 
1951
+ # <li><?php _e("Use the uploader to browse, select and install your Add-on (.zip file)",'acf'); ?></li>
1952
+ # <li><?php _e("Once the plugin has been uploaded and installed, click the 'Activate Plugin' link",'acf'); ?></li>
1953
+ # <li><?php _e("The Add-on is now installed and activated!",'acf'); ?></li>
1954
+ # wpml-name: 6145be0647783b197a8c630f7124d0b9
1955
+ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
1956
+ msgstr "ברגע שהתוסף הועלה ומותקן, לחץ על הקישור 'הפעל תוסף'"
1957
 
1958
+ # <li><?php _e("Navigate to",'acf'); ?> <a target="_blank" href="<?php echo admin_url('plugin-install.php?tab=upload'); ?>"><?php _e("Plugins > Add New > Upload",'acf'); ?></a></li>
1959
+ # <li><?php _e("Use the uploader to browse, select and install your Add-on (.zip file)",'acf'); ?></li>
1960
+ # <li><?php _e("Once the plugin has been uploaded and installed, click the 'Activate Plugin' link",'acf'); ?></li>
1961
+ # wpml-name: 3ecac055444d813971f09f57bb37a666
1962
+ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
1963
+ msgstr "השתמש במעלה הקבצים כדי לדפדף, בחר והתקן את ההרחבות שלך - קובץ zip "
1964
 
1965
+ # <li><?php _e("Download the Add-on plugin (.zip file) to your desktop",'acf'); ?></li>
1966
+ # <li><?php _e("Navigate to",'acf'); ?> <a target="_blank" href="<?php echo admin_url('plugin-install.php?tab=upload'); ?>"><?php _e("Plugins > Add New > Upload",'acf'); ?></a></li>
1967
+ # <li><?php _e("Use the uploader to browse, select and install your Add-on (.zip file)",'acf'); ?></li>
1968
+ # wpml-name: c9df72d936366390fb0c53d06b6fc4e0
1969
+ msgid "Plugins > Add New > Upload"
1970
+ msgstr "תוספים> תוסף חדש> העלאה"
1971
 
1972
+ # <li><?php _e("Download the Add-on plugin (.zip file) to your desktop",'acf'); ?></li>
1973
+ # <li><?php _e("Navigate to",'acf'); ?> <a target="_blank" href="<?php echo admin_url('plugin-install.php?tab=upload'); ?>"><?php _e("Plugins > Add New > Upload",'acf'); ?></a></li>
1974
+ # <li><?php _e("Use the uploader to browse, select and install your Add-on (.zip file)",'acf'); ?></li>
1975
+ # wpml-name: 61d6c99cb39cc44e081ff44770bb138e
1976
+ msgid "Navigate to"
1977
+ msgstr "נווט ל"
1978
 
1979
+ # <ol>
1980
+ # <li><?php _e("Download the Add-on plugin (.zip file) to your desktop",'acf'); ?></li>
1981
+ # <li><?php _e("Navigate to",'acf'); ?> <a target="_blank" href="<?php echo admin_url('plugin-install.php?tab=upload'); ?>"><?php _e("Plugins > Add New > Upload",'acf'); ?></a></li>
1982
+ # wpml-name: 3c3dc3525362e36ec119120d7fbfc1ff
1983
+ msgid "Download the Add-on plugin (.zip file) to your desktop"
1984
+ msgstr "הורד את ההרחבה בתור פלאגאין לשולחן העבודה שלך"
1985
 
1986
+ #
1987
+ # <p><?php _e("For each Add-on available, please perform the following:",'acf'); ?></p>
1988
+ # <ol>
1989
+ # wpml-name: 00770b93522ff8baefb0b3ae8a151905
1990
+ msgid "For each Add-on available, please perform the following:"
1991
+ msgstr "עבור כל הרחבה זמינה, בצע את הפעולות הבאות:"
1992
 
1993
+ #
1994
+ # <h3><?php _e("Installation",'acf'); ?></h3>
1995
+ #
1996
+ # wpml-name: 7cd8fb6e31cc946c078d2740c76a9899
1997
+ msgid "Installation"
1998
+ msgstr "התקנה"
1999
 
2000
+ # <td><img src="<?php echo $dir; ?>images/add-ons/flexible-content-field-thumb.jpg" /></td>
2001
+ # <th><?php _e("Flexible Content",'acf'); ?></th>
2002
+ # <td>XXXX-XXXX-XXXX-<?php echo substr($ac_flexible_content,-4); ?></td>
2003
+ # wpml-name: df16fc815df46c78e16d387f8b78cdb6
2004
+ msgid "Flexible Content"
2005
+ msgstr "תוכן גמיש"
2006
 
2007
+ # <th colspan="2"><?php _e("Name",'acf'); ?></th>
2008
+ # <th><?php _e("Activation Code",'acf'); ?></th>
2009
+ # <th><?php _e("Download",'acf'); ?></th>
2010
+ # wpml-name: 6a122e5c7cb7d36caaef7457e1f6034d
2011
+ msgid "Activation Code"
2012
+ msgstr "קוד הפעלה"
2013
 
2014
+ # <p>
2015
+ # <strong><?php _e('Name', 'acf'); ?>:</strong>
2016
+ # <a class="acf-file-name" href="<?php echo $o['url']; ?>" target="_blank"><?php echo $o['name']; ?></a>
2017
+ # wpml-name: 49ee3087348e8d44e1feda1917443987
2018
+ msgid "Name"
2019
+ msgstr "שם"
2020
 
2021
+ #
2022
+ # <p><?php _e("The following Add-ons have been detected as activated on this website.",'acf'); ?></p>
2023
+ #
2024
+ # wpml-name: 58561dd8714ec6d93a020a60b1ed0c44
2025
+ msgid "The following Add-ons have been detected as activated on this website."
2026
+ msgstr "ההרחבות הבאות זוהו כפעילות באתר זה."
2027
 
2028
+ #
2029
+ # <h3><?php _e("Available Add-ons",'acf'); ?></h3>
2030
+ #
2031
+ # wpml-name: 3ca7f40aed676807c86c695508a51263
2032
+ msgid "Available Add-ons"
2033
+ msgstr "הרחבות זמינות"
2034
 
2035
+ #
2036
+ # <p><?php _e("This page will assist you in downloading and installing each available Add-on.",'acf'); ?></p>
2037
+ #
2038
+ # wpml-name: ce59cd05f4a3d714d92aa2cea56685ad
2039
+ msgid "This page will assist you in downloading and installing each available Add-on."
2040
+ msgstr "דף זה יסייע לך בהורדת והתקנת כל הרחבה זמינה."
2041
 
2042
+ #
2043
+ # <p><?php _e("Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated.",'acf'); ?></p>
2044
+ #
2045
+ # wpml-name: 2897b87886da5cd761d1cb1aaceb8e2d
2046
+ msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
2047
+ msgstr "בעבר, כל הההרחבות היו נעולות באמצעות קוד הפעלה (שנרכש מחנות ההרחבות של .ACF חדש בגרסה 4 - כל ההרחבות מגיעות כתוספים נפרדים אשר צריכים להיות מורדים,מותקנים ומעודכנים בנפרד."
2048
+
2049
+ #
2050
+ # <h3><?php _e("Overview",'acf'); ?></h3>
2051
+ #
2052
+ # wpml-name: 3b878279a04dc47d60932cb294d96259
2053
+ msgid "Overview"
2054
+ msgstr "סקירה"
2055
 
2056
+ # ?>
2057
+ # <li><?php echo $item[0]; ?><?php if( isset($item[1]) ): ?><a href="http<?php echo $item[1]; ?>" target="_blank"><?php _e("Learn more",'acf'); ?></a><?php endif; ?></li>
2058
+ # <?php endforeach; ?>
2059
+ # wpml-name: d59048f21fd887ad520398ce677be586
2060
+ msgid "Learn more"
2061
+ msgstr "למד עוד"
2062
 
2063
+ #
2064
+ # <h3><?php _e("Changelog for",'acf'); ?> <?php echo $version; ?></h3>
2065
+ # <?php
2066
+ # wpml-name: 3bbc1c20c2595bf067afc81cfdcc6d99
2067
+ msgid "Changelog for"
2068
+ msgstr "עדכון גרסאות עבור"
2069
 
2070
+ # <p><?php _e("A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received.",'acf'); ?></p>
2071
+ # <p><?php _e("Without you all, this release would not have been possible!",'acf'); ?></p>
2072
+ #
2073
+ # wpml-name: dd35ec1a5318deb6310fd9f354ba93e7
2074
+ msgid "Without you all, this release would not have been possible!"
2075
+ msgstr "בלי כולכם, גרסה זו לא הייתה אפשרית!"
 
2076
 
2077
+ # <h3><?php _e("Thank You",'acf'); ?></h3>
2078
+ # <p><?php _e("A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received.",'acf'); ?></p>
2079
+ # <p><?php _e("Without you all, this release would not have been possible!",'acf'); ?></p>
2080
+ # wpml-name: 305395657e76d0f28e8c69436bdd5927
2081
+ msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
2082
+ msgstr "תודה רבה לכל מי שעזר לבדוק את גרסה 4 ועבור כל התמיכה שקיבלתי"
2083
 
2084
+ #
2085
+ # <h3><?php _e("Thank You",'acf'); ?></h3>
2086
+ # <p><?php _e("A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received.",'acf'); ?></p>
2087
+ # wpml-name: b315ed055787c0994d8a7b08b2be9244
2088
+ msgid "Thank You"
2089
+ msgstr "תודה"
2090
 
2091
+ # <div class="acf-alert acf-alert-error">
2092
+ # <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest",'acf'); ?> <a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/"><?php _e("version 3",'acf'); ?></a> <?php _e("of this plugin.",'acf'); ?></p>
2093
+ # </div>
2094
+ # wpml-name: d333d6d12eb811189d501dbb151cdf71
2095
+ msgid "of this plugin."
2096
+ msgstr "של התוסף הזה"
2097
 
2098
+ # <div class="acf-alert acf-alert-error">
2099
+ # <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest",'acf'); ?> <a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/"><?php _e("version 3",'acf'); ?></a> <?php _e("of this plugin.",'acf'); ?></p>
2100
+ # </div>
2101
+ # wpml-name: f66759ca38cb7b8d592fc0849bdec554
2102
+ msgid "version 3"
2103
+ msgstr "גרסה 3"
2104
 
2105
+ # <div class="acf-alert acf-alert-error">
2106
+ # <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest",'acf'); ?> <a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/"><?php _e("version 3",'acf'); ?></a> <?php _e("of this plugin.",'acf'); ?></p>
2107
+ # </div>
2108
+ # wpml-name: bf327762262c7025fa52ff3ebeb6b2a8
2109
+ msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
2110
+ msgstr "אם עדכנת את תוסף ACF ללא ידיעה מוקדמת של השינויים , בבקשה לחזור אחורה"
2111
 
2112
+ # <div class="acf-alert acf-alert-error">
2113
+ # <p><strong><?php _e("Really Important!",'acf'); ?></strong> <?php _e("If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest",'acf'); ?> <a href="http://wordpress.org/extend/plugins/advanced-custom-fields/developers/"><?php _e("version 3",'acf'); ?></a> <?php _e("of this plugin.",'acf'); ?></p>
2114
+ # </div>
2115
+ # wpml-name: 07e3eccc00ebfa6f8c193e878be6c597
2116
+ msgid "Really Important!"
2117
+ msgstr "באמת חשוב!"
2118
 
2119
+ # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2120
+ # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2121
+ #
2122
+ # wpml-name: 4bbc83cd7980cfa0a8172dc3065342c7
2123
+ msgid "guide to view the full list of changes."
2124
+ msgstr "מדריך כדי להציג את הרשימה המלאה של שינויים."
2125
 
2126
+ # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2127
+ # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2128
+ #
2129
+ # wpml-name: 1b239e26fb4421abef5ca328d1357aab
2130
+ msgid "Migrating from v3 to v4"
2131
+ msgstr "מעבר מ-גרסה 3 לגרסה 4"
2132
 
2133
+ # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2134
+ # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2135
+ #
2136
+ # wpml-name: 791934a08992b9d534fc76b7ceb175be
2137
+ msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
2138
+ msgstr "האם לשינויים ניכרים surounding תוספות, סוגי שדות ופעולה / מסננים, האתר שלך לא יפעל בצורה נכונה. זה חשוב שתקרא מלא"
2139
+
2140
+ #
2141
+ # <h4><?php _e("Potential Issues",'acf'); ?></h4>
2142
+ # <p><?php _e("Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("Migrating from v3 to v4",'acf'); ?></a> <?php _e("guide to view the full list of changes.",'acf'); ?></p>
2143
+ # wpml-name: a01d9190e303d23db01632f603c31708
2144
+ msgid "Potential Issues"
2145
+ msgstr "בעיות פוטנציאליות"
2146
 
2147
+ # <h4><?php _e("Database Changes",'acf'); ?></h4>
2148
+ # <p><?php _e("Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues.",'acf'); ?></p>
2149
+ #
2150
+ # wpml-name: 1155cd6f085707c2f96e4f1f5080b562
2151
+ msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
2152
+ msgstr "לא נעשו שינויים בבסיס הנתונים בין גרסאות 3 ו -4. זה אומר שאתה יכול לחזור לגרסה 3 ללא בעיות."
2153
+
2154
+ #
2155
+ # <h4><?php _e("Database Changes",'acf'); ?></h4>
2156
+ # <p><?php _e("Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues.",'acf'); ?></p>
2157
+ # wpml-name: aa99f8c1673c0592400004034cd0e21f
2158
+ msgid "Database Changes"
2159
+ msgstr "בסיס הנתונים השתנה"
2160
 
2161
+ #
2162
+ # <h3><?php _e("Important",'acf'); ?></h3>
2163
+ #
2164
+ # wpml-name: 0ab984d91ab0a037bdf692bf0e73c349
2165
+ msgid "Important"
2166
+ msgstr "חשוב"
2167
 
2168
+ # <h4><?php _e("Preview draft is now working!",'acf'); ?></h4>
2169
+ # <p><?php _e("This bug has been squashed along with many other little critters!",'acf'); ?> <a class="acf-tab-toggle" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>" data-tab="2"><?php _e("See the full changelog",'acf'); ?></a></p>
2170
+ #
2171
+ # wpml-name: 32100ff4659c76aba0307ff1d0d980f4
2172
+ msgid "See the full changelog"
2173
+ msgstr "ראה רשימת שינויים מלאים"
2174
 
2175
+ # <h4><?php _e("Preview draft is now working!",'acf'); ?></h4>
2176
+ # <p><?php _e("This bug has been squashed along with many other little critters!",'acf'); ?> <a class="acf-tab-toggle" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>" data-tab="2"><?php _e("See the full changelog",'acf'); ?></a></p>
2177
+ #
2178
+ # wpml-name: 6c4f4ff79aefd4f423c0524c33fb11da
2179
+ msgid "This bug has been squashed along with many other little critters!"
2180
+ msgstr "הבאג הזה כבר מעוך יחד עם היצורים קטנים רבים אחרים!"
2181
 
2182
+ #
2183
+ # <h4><?php _e("Preview draft is now working!",'acf'); ?></h4>
2184
+ # <p><?php _e("This bug has been squashed along with many other little critters!",'acf'); ?> <a class="acf-tab-toggle" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>" data-tab="2"><?php _e("See the full changelog",'acf'); ?></a></p>
2185
+ # wpml-name: 4efcbe87c6447b995df31c67a951a990
2186
+ msgid "Preview draft is now working!"
2187
+ msgstr "תצוגה מקדימה עבור טיוטה עובדת עכשיו!"
2188
 
2189
+ # <h4><?php _e("Actions &amp; Filters",'acf'); ?></h4>
2190
+ # <p><?php _e("All actions & filters have received a major facelift to make customizing ACF even easier! Please",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("read this guide",'acf'); ?></a> <?php _e("to find the updated naming convention.",'acf'); ?></p>
2191
+ #
2192
+ # wpml-name: ff142ca2fbef20447d5382a4ebbbb95c
2193
+ msgid "to find the updated naming convention."
2194
+ msgstr "י למצוא את מוסכמה למתן שמות המעודכנת."
2195
 
2196
+ # <h4><?php _e("Actions &amp; Filters",'acf'); ?></h4>
2197
+ # <p><?php _e("All actions & filters have received a major facelift to make customizing ACF even easier! Please",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("read this guide",'acf'); ?></a> <?php _e("to find the updated naming convention.",'acf'); ?></p>
2198
+ #
2199
+ # wpml-name: c3a896359b5a1ea6c8a37d2edf912297
2200
+ msgid "read this guide"
2201
+ msgstr "לקרוא את המדריך הזה"
2202
 
2203
+ # <h4><?php _e("Actions &amp; Filters",'acf'); ?></h4>
2204
+ # <p><?php _e("All actions & filters have received a major facelift to make customizing ACF even easier! Please",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("read this guide",'acf'); ?></a> <?php _e("to find the updated naming convention.",'acf'); ?></p>
2205
+ #
2206
+ # wpml-name: d2637694556ec729675535428e227a29
2207
+ msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
2208
+ msgstr "כל הפעולות והמסננים קיבלו מתיחת פנים משמעותיות כדי להפוך את ההתאמה האישית של ACF לאפילו יותר קלה!"
2209
+
2210
+ #
2211
+ # <h4><?php _e("Actions &amp; Filters",'acf'); ?></h4>
2212
+ # <p><?php _e("All actions & filters have received a major facelift to make customizing ACF even easier! Please",'acf'); ?> <a href="http://www.advancedcustomfields.com/resources/getting-started/migrating-from-v3-to-v4/" target="_blank"><?php _e("read this guide",'acf'); ?></a> <?php _e("to find the updated naming convention.",'acf'); ?></p>
2213
+ # wpml-name: d2c05da1ad0c8bb80aaee6a40e5e600b
2214
+ msgid "Actions &amp; Filters"
2215
+ msgstr "פעולות &amp; פילטרים"
2216
 
2217
+ # <p><?php _e("Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4.",'acf'); ?><br />
2218
+ # <?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
2219
+ #
2220
+ # wpml-name: 464c97b94ce34329731f0f41b5f32d96
2221
+ msgid "to learn more."
2222
+ msgstr "כדי ללמוד עוד."
2223
 
2224
+ # <p><?php _e("Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4.",'acf'); ?><br />
2225
+ # <?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
2226
+ #
2227
+ # wpml-name: 056376f4997ce95efa8833936fb1b47d
2228
+ msgid "follow this tutorial"
2229
+ msgstr "עקוב אחרי המדריך הזה"
2230
 
2231
+ # <p><?php _e("Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4.",'acf'); ?><br />
2232
+ # <?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
2233
+ #
2234
+ # wpml-name: 77833ec56c39ef3e65c83d08dad4be37
2235
+ msgid "Migrating your field types is easy, please"
2236
+ msgstr "שינוי סוגים של השדות שלך הוא קל, בבקשה"
2237
 
2238
+ # <h4><?php _e("Custom Field Types",'acf'); ?></h4>
2239
+ # <p><?php _e("Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4.",'acf'); ?><br />
2240
+ # <?php _e("Migrating your field types is easy, please",'acf'); ?> <a href="http://www.advancedcustomfields.com/docs/tutorials/creating-a-new-field-type/" target="_blank"><?php _e("follow this tutorial",'acf'); ?></a> <?php _e("to learn more.",'acf'); ?></p>
2241
+ # wpml-name: 7ff552f51e0f161e09f3e6c8f7290432
2242
+ msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
2243
+ msgstr "יצירת סוג השדה משלך מעולם לא הייתה קלה! למרבה הצער, סוגי השדות בגרסה 3 אינם תואמים לגרסה 4."
2244
+
2245
+ # </ul>
2246
+ # <h4><?php _e("Custom Field Types",'acf'); ?></h4>
2247
+ # <p><?php _e("Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4.",'acf'); ?><br />
2248
+ # wpml-name: fd88c2283c0af4718c4d4e16379dd7ab
2249
+ msgid "Custom Field Types"
2250
+ msgstr "סוגי קסטם פילדס"
2251
 
2252
+ # <li><?php _e("Email Field",'acf'); ?></li>
2253
+ # <li><?php _e("Password Field",'acf'); ?></li>
2254
+ # </ul>
2255
+ # wpml-name: acfbe857ff453e8b9343601912887756
2256
+ msgid "Password Field"
2257
+ msgstr "שדה סיסמה"
2258
 
2259
+ # <li><?php _e("User Field",'acf'); ?></li>
2260
+ # <li><?php _e("Email Field",'acf'); ?></li>
2261
+ # <li><?php _e("Password Field",'acf'); ?></li>
2262
+ # wpml-name: 2b9ad8707b3754ec30fbab20fa697a9f
2263
+ msgid "Email Field"
2264
+ msgstr "שדה מייל"
2265
 
2266
+ # <li><?php _e("Taxonomy Field",'acf'); ?></li>
2267
+ # <li><?php _e("User Field",'acf'); ?></li>
2268
+ # <li><?php _e("Email Field",'acf'); ?></li>
2269
+ # wpml-name: 08d44d829130101a2832496b684caba8
2270
+ msgid "User Field"
2271
+ msgstr "שדה משתמש"
2272
 
2273
+ # <ul>
2274
+ # <li><?php _e("Taxonomy Field",'acf'); ?></li>
2275
+ # <li><?php _e("User Field",'acf'); ?></li>
2276
+ # wpml-name: ea2e8afe68acd81f87d3d84c670396e9
2277
+ msgid "Taxonomy Field"
2278
+ msgstr "שדה טקסונמיה"
2279
 
2280
+ #
2281
+ # <h4><?php _e("New Field Types",'acf'); ?></h4>
2282
+ # <ul>
2283
+ # wpml-name: 6d042586ee423ee75fc87eed7a6c3f6e
2284
+ msgid "New Field Types"
2285
+ msgstr "סוג שדה חדש"
2286
 
2287
+ #
2288
+ # <h3><?php _e("Easier Development",'acf'); ?></h3>
2289
+ #
2290
+ # wpml-name: e27700a8b8ef383d2000c78645e44801
2291
+ msgid "Easier Development"
2292
+ msgstr "פיתוח קל יותר"
2293
 
2294
+ # <div class="acf-alert acf-alert-success">
2295
+ # <p><?php _e("This website does not use premium Add-ons and will not be affected by this change.",'acf'); ?></p>
2296
+ # </div>
2297
+ # wpml-name: 11605c6863390f42935222fdbdb7425f
2298
+ msgid "This website does not use premium Add-ons and will not be affected by this change."
2299
+ msgstr "אתר זה אינו משתמש בהרחבות פרימיום ולא יושפע משינוי זה."
2300
 
2301
+ # <div class="acf-alert acf-alert-success">
2302
+ # <p><?php _e("This website uses premium Add-ons which need to be downloaded",'acf'); ?> <a href="<?php echo admin_url('edit.php?post_type=acf&info=download-add-ons'); ?>" class="acf-button" style="display: inline-block;"><?php _e("Download your activated Add-ons",'acf'); ?></a></p>
2303
+ # </div>
2304
+ # wpml-name: 0279c2fd677122caeab2937555370e17
2305
+ msgid "Download your activated Add-ons"
2306
+ msgstr "הורד את ההרחבות הפעילות שלך"
2307
 
2308
+ # <div class="acf-alert acf-alert-success">
2309
+ # <p><?php _e("This website uses premium Add-ons which need to be downloaded",'acf'); ?> <a href="<?php echo admin_url('edit.php?post_type=acf&info=download-add-ons'); ?>" class="acf-button" style="display: inline-block;"><?php _e("Download your activated Add-ons",'acf'); ?></a></p>
2310
+ # </div>
2311
+ # wpml-name: 013b80a0d5e946669a27e6e3d0e64135
2312
+ msgid "This website uses premium Add-ons which need to be downloaded"
2313
+ msgstr "אתר זה משתמש בהרחבות פרימיום שצריך להוריד ולהתקין."
2314
 
2315
+ # <div class="acf-alert acf-alert-success">
2316
+ # <p><?php _e("All previous Add-ons have been successfully installed",'acf'); ?></p>
2317
+ # </div>
2318
+ # wpml-name: aa41aa357d2bb950deba479170175460
2319
+ msgid "All previous Add-ons have been successfully installed"
2320
+ msgstr "כל הההרחבות הקודמות הותקנו בהצלחה"
2321
 
2322
+ # <h4><?php _e("Activation codes have grown into plugins!",'acf'); ?></h4>
2323
+ # <p><?php _e("Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way.",'acf'); ?></p>
2324
+ #
2325
+ # wpml-name: fd730b7d274dfd17ea611f02580a1c12
2326
+ msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
2327
+ msgstr "הרחבות עכשיו מופעלות על ידי הורדה וההתקנה של תוספים בודדים. למרות שהתוספים האלה לא מתארחים במאגר wordpress.org כל אחת מההרחבות תמשיך לקבל עדכונים בדרך הרגילה."
2328
+
2329
+ #
2330
+ # <h4><?php _e("Activation codes have grown into plugins!",'acf'); ?></h4>
2331
+ # <p><?php _e("Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way.",'acf'); ?></p>
2332
+ # wpml-name: 85057405e5c918f085e4195166fa0a0c
2333
+ msgid "Activation codes have grown into plugins!"
2334
+ msgstr "קודי הפעלה גדלו לתוך התוספים"
2335
 
2336
+ # <?php if( $tab == 'download-add-ons' ): ?>
2337
+ # <a class="acf-tab-toggle nav-tab nav-tab-active" href="<?php echo admin_url('edit.php?post_type=acf&info=download-add-ons'); ?>"><?php _e("Download Add-ons",'acf'); ?></a>
2338
+ # <?php endif; ?>
2339
+ # wpml-name: 83af7a5d5fffdfba3864003415a8778e
2340
+ msgid "Download Add-ons"
2341
+ msgstr "הורדת הרחבות"
2342
 
2343
+ # <h2 class="nav-tab-wrapper">
2344
+ # <a class="acf-tab-toggle nav-tab <?php if( $tab == 'whats-new' ){ echo 'nav-tab-active'; } ?>" href="<?php echo admin_url('edit.php?post_type=acf&info=whats-new'); ?>"><?php _e("What’s New",'acf'); ?></a>
2345
+ # <a class="acf-tab-toggle nav-tab <?php if( $tab == 'changelog' ){ echo 'nav-tab-active'; } ?>" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>"><?php _e("Changelog",'acf'); ?></a>
2346
+ # wpml-name: 5fef629b836b60819e0c0ce49cd2b9d7
2347
+ msgid "What’s New"
2348
+ msgstr "מה חדש"
2349
+
2350
+ # <h1><?php _e("Welcome to Advanced Custom Fields",'acf'); ?> <?php echo $version; ?></h1>
2351
+ # <h2><?php _e("Thank you for updating to the latest version!",'acf'); ?> <br />ACF <?php echo $version; ?> <?php _e("is more polished and enjoyable than ever before. We hope you like it.",'acf'); ?></h2>
2352
+ # </div>
2353
+ # wpml-name: 6670178850fa39ce5336c052365ec48d
2354
+ msgid "is more polished and enjoyable than ever before. We hope you like it."
2355
+ msgstr "הוא יותר מלוטש ומהנה יותר מאי פעם. אנו מקווים שאתה אוהב את זה."
2356
 
2357
+ # <h1><?php _e("Welcome to Advanced Custom Fields",'acf'); ?> <?php echo $version; ?></h1>
2358
+ # <h2><?php _e("Thank you for updating to the latest version!",'acf'); ?> <br />ACF <?php echo $version; ?> <?php _e("is more polished and enjoyable than ever before. We hope you like it.",'acf'); ?></h2>
2359
+ # </div>
2360
+ # wpml-name: 471b31184250782758103a869d085156
2361
+ msgid "Thank you for updating to the latest version!"
2362
+ msgstr "תודה על עדכון לגרסה העדכנית ביותר!"
2363
 
2364
+ # <div class="acf-content-title">
2365
+ # <h1><?php _e("Welcome to Advanced Custom Fields",'acf'); ?> <?php echo $version; ?></h1>
2366
+ # <h2><?php _e("Thank you for updating to the latest version!",'acf'); ?> <br />ACF <?php echo $version; ?> <?php _e("is more polished and enjoyable than ever before. We hope you like it.",'acf'); ?></h2>
2367
+ # wpml-name: 7f469e5b03b4ccd950ac0a94e6448e58
2368
+ msgid "Welcome to Advanced Custom Fields"
2369
+ msgstr "ברוכים הבאים לאדבנסד קוסטם פילדס"
2370
 
2371
+ # <ul class="hl">
2372
+ # <li><?php _e("Created by",'acf'); ?> Elliot Condon</li>
2373
+ # </ul>
2374
+ # wpml-name: c8e6a7ed1489c036564b6bc24c92cca4
2375
+ msgid "Created by"
2376
+ msgstr "נוצר בידי"
2377
 
2378
+ # <li><a href="http://www.advancedcustomfields.com/resources/#how-to" target="_blank"><?php _e("'How to' guides",'acf'); ?></a></li>
2379
+ # <li><a href="http://www.advancedcustomfields.com/resources/#tutorials" target="_blank"><?php _e("Tutorials",'acf'); ?></a></li>
2380
+ # </ul>
2381
+ # wpml-name: 130ddfce9c28453883ccfe2da8b6d5ac
2382
+ msgid "Tutorials"
2383
+ msgstr "הדרכות"
2384
 
2385
+ # <li><a href="http://www.advancedcustomfields.com/resources/#filters" target="_blank"><?php _e("Filters",'acf'); ?></a></li>
2386
+ # <li><a href="http://www.advancedcustomfields.com/resources/#how-to" target="_blank"><?php _e("'How to' guides",'acf'); ?></a></li>
2387
+ # <li><a href="http://www.advancedcustomfields.com/resources/#tutorials" target="_blank"><?php _e("Tutorials",'acf'); ?></a></li>
2388
+ # wpml-name: b2cdcc2a6f513e1569e186532bb3dad5
2389
+ msgid "'How to' guides"
2390
+ msgstr "מדריכים"
2391
 
2392
+ # <td class="label">
2393
+ # <label><?php _e("Filters",'acf'); ?></label>
2394
+ # </td>
2395
+ # wpml-name: f3f43e30c8c7d78c6ac0173515e57a00
2396
+ msgid "Filters"
2397
+ msgstr "מסננים"
2398
 
2399
+ # <li><a href="http://www.advancedcustomfields.com/resources/#functions" target="_blank"><?php _e("Functions",'acf'); ?></a></li>
2400
+ # <li><a href="http://www.advancedcustomfields.com/resources/#actions" target="_blank"><?php _e("Actions",'acf'); ?></a></li>
2401
+ # <li><a href="http://www.advancedcustomfields.com/resources/#filters" target="_blank"><?php _e("Filters",'acf'); ?></a></li>
2402
+ # wpml-name: 06df33001c1d7187fdd81ea1f5b277aa
2403
+ msgid "Actions"
2404
+ msgstr "פעולות"
2405
 
2406
+ # <li><a href="http://www.advancedcustomfields.com/resources/#field-types" target="_blank"><?php _e("Field Types",'acf'); ?></a></li>
2407
+ # <li><a href="http://www.advancedcustomfields.com/resources/#functions" target="_blank"><?php _e("Functions",'acf'); ?></a></li>
2408
+ # <li><a href="http://www.advancedcustomfields.com/resources/#actions" target="_blank"><?php _e("Actions",'acf'); ?></a></li>
2409
+ # wpml-name: e93acb146e114b5dfa6ce2d12dcb96e4
2410
+ msgid "Functions"
2411
+ msgstr "פונקציות"
2412
 
2413
+ # <li><a href="http://www.advancedcustomfields.com/resources/#getting-started" target="_blank"><?php _e("Getting Started",'acf'); ?></a></li>
2414
+ # <li><a href="http://www.advancedcustomfields.com/resources/#field-types" target="_blank"><?php _e("Field Types",'acf'); ?></a></li>
2415
+ # <li><a href="http://www.advancedcustomfields.com/resources/#functions" target="_blank"><?php _e("Functions",'acf'); ?></a></li>
2416
+ # wpml-name: 288c7fce77e2d7b540f5f60507794b55
2417
+ msgid "Field Types"
2418
+ msgstr "סוגי שדה"
2419
 
2420
+ # <ul>
2421
+ # <li><a href="http://www.advancedcustomfields.com/resources/#getting-started" target="_blank"><?php _e("Getting Started",'acf'); ?></a></li>
2422
+ # <li><a href="http://www.advancedcustomfields.com/resources/#field-types" target="_blank"><?php _e("Field Types",'acf'); ?></a></li>
2423
+ # wpml-name: bf647454e36069fd16f1a7a35cf6a865
2424
+ msgid "Getting Started"
2425
+ msgstr "תחילת עבודה"
2426
 
2427
+ #
2428
+ # <h3><?php _e("Resources",'acf'); ?></h3>
2429
+ # <ul>
2430
+ # wpml-name: ddcf50c29294d4414f3f7c1bbc892cb5
2431
+ msgid "Resources"
2432
+ msgstr "משאבים"
2433
 
2434
+ # <h3><?php _e("Changelog",'acf'); ?></h3>
2435
+ # <p><?php _e("See what's new in",'acf'); ?> <a href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>"><?php _e("version",'acf'); ?> <?php echo $version; ?></a>
2436
+ #
2437
+ # wpml-name: 2af72f100c356273d46284f6fd1dfc08
2438
+ msgid "version"
2439
+ msgstr "גרסה"
2440
 
2441
+ # <h3><?php _e("Changelog",'acf'); ?></h3>
2442
+ # <p><?php _e("See what's new in",'acf'); ?> <a href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>"><?php _e("version",'acf'); ?> <?php echo $version; ?></a>
2443
+ #
2444
+ # wpml-name: 643b911d3cf8866dd0100b4d6ed83033
2445
+ msgid "See what's new in"
2446
+ msgstr "בואו לראות מה חדש ב"
2447
 
2448
+ # <a class="acf-tab-toggle nav-tab <?php if( $tab == 'whats-new' ){ echo 'nav-tab-active'; } ?>" href="<?php echo admin_url('edit.php?post_type=acf&info=whats-new'); ?>"><?php _e("What’s New",'acf'); ?></a>
2449
+ # <a class="acf-tab-toggle nav-tab <?php if( $tab == 'changelog' ){ echo 'nav-tab-active'; } ?>" href="<?php echo admin_url('edit.php?post_type=acf&info=changelog'); ?>"><?php _e("Changelog",'acf'); ?></a>
2450
+ # <?php if( $tab == 'download-add-ons' ): ?>
2451
+ # wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
2452
+ msgid "Changelog"
2453
+ msgstr "גרסאות"
2454
 
2455
+ # 'name' => __( 'Field&nbsp;Groups', 'acf' ),
2456
+ # 'singular_name' => __( 'Advanced Custom Fields', 'acf' ),
2457
+ # 'add_new' => __( 'Add New' , 'acf' ),
2458
+ # wpml-name: 68b7d6093820d2ff48397fd5ad7f446b
2459
+ msgid "Advanced Custom Fields"
2460
+ msgstr "אדבנסד קוסטם פילדס"
2461
 
2462
+ # <td>XXXX-XXXX-XXXX-<?php echo substr($ac_options_page,-4); ?></td>
2463
+ # <td><a class="button" href="http://download.advancedcustomfields.com/<?php echo $ac_options_page; ?>/trunk"><?php _e("Download",'acf'); ?></a></td>
2464
+ # </tr>
2465
+ # wpml-name: 801ab24683a4a8c433c6eb40c48bcd9d
2466
+ msgid "Download"
2467
+ msgstr "הורדה"
2468
 
2469
+ # <?php else: ?>
2470
+ # <a target="_blank" href="<?php echo $addon['url']; ?>" class="button"><?php _e("Purchase & Install",'acf'); ?></a>
2471
+ # <?php endif; ?>
2472
+ # wpml-name: 2ed2312f62e98a9d38b7cb5b963b1e11
2473
+ msgid "Purchase & Install"
2474
+ msgstr "לרכוש ולהתקין"
2475
 
2476
+ # <?php if( $addon['active'] ): ?>
2477
+ # <a class="button button-disabled"><span class="acf-sprite-tick"></span><?php _e("Installed",'acf'); ?></a>
2478
+ # <?php else: ?>
2479
+ # wpml-name: 98dd43dfae05b11befe1f140e0ec787a
2480
+ msgid "Installed"
2481
+ msgstr "הותקן"
2482
 
2483
+ # <p style=""><?php _e("The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin.",'acf'); ?><br />
2484
+ # <?php _e("Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates).",'acf'); ?></p>
2485
+ # </div>
2486
+ # wpml-name: e216b5f78746342f96a71ddb016eb845
2487
+ msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
2488
+ msgstr "כל הרחבה(add-on) יכולה להיות מותקנת בתור תוסף נפרד (שמקבל עדכונים) או מוטמעת בתור חלק מהתבנית(לא מקבלת עדכונים)."
2489
+
2490
+ # <div class="acf-alert">
2491
+ # <p style=""><?php _e("The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin.",'acf'); ?><br />
2492
+ # <?php _e("Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates).",'acf'); ?></p>
2493
+ # wpml-name: b364f023309c7993525d89bd14f34f30
2494
+ msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
2495
+ msgstr "ההרחבות הבאות זמינות כדי להגביר את הפונקציונליות של התוסף ACF."
2496
 
2497
+ # <div class="icon32" id="icon-acf"><br></div>
2498
+ # <h2 style="margin: 4px 0 15px;"><?php _e("Advanced Custom Fields Add-Ons",'acf'); ?></h2>
2499
+ #
2500
+ # wpml-name: 9767a313d59b3c46b8ce333ef7708050
2501
+ msgid "Advanced Custom Fields Add-Ons"
2502
+ msgstr "הרחבות אדבנסד קוסטם פילדס"
2503
 
2504
+ # 'title' => __("Contact Form 7 Field",'acf'),
2505
+ # 'description' => __("Assign one or more contact form 7 forms to a post",'acf'),
2506
+ # 'thumbnail' => $dir . 'images/add-ons/cf7-field-thumb.jpg',
2507
+ # wpml-name: 8c9134cc91d32ae0abc5f99ee2ad5ae1
2508
+ msgid "Assign one or more contact form 7 forms to a post"
2509
+ msgstr "הקצאת טופס contact form 7 אחד או יותר לפוסט"
2510
 
2511
+ # $free[] = array(
2512
+ # 'title' => __("Contact Form 7 Field",'acf'),
2513
+ # 'description' => __("Assign one or more contact form 7 forms to a post",'acf'),
2514
+ # wpml-name: 2399485650f3916af8cfe78e694ae1c5
2515
+ msgid "Contact Form 7 Field"
2516
+ msgstr "שדה contact form 7"
2517
 
2518
+ # 'title' => __("Location Field",'acf'),
2519
+ # 'description' => __("Find addresses and coordinates of a desired location",'acf'),
2520
+ # 'thumbnail' => $dir . 'images/add-ons/google-maps-field-thumb.jpg',
2521
+ # wpml-name: cacc9de748b3999d442b4e2c35130b23
2522
+ msgid "Find addresses and coordinates of a desired location"
2523
+ msgstr "מצא את הכתובות והקואורדינטות של המיקום הרצוי"
2524
 
2525
+ # $free[] = array(
2526
+ # 'title' => __("Location Field",'acf'),
2527
+ # 'description' => __("Find addresses and coordinates of a desired location",'acf'),
2528
+ # wpml-name: 430e0370135b9f2b0d0c3b539ee4b851
2529
+ msgid "Location Field"
2530
+ msgstr "שדה מיקום"
2531
 
2532
+ # 'title' => __("Date & Time Picker",'acf'),
2533
+ # 'description' => __("jQuery date & time picker",'acf'),
2534
+ # 'thumbnail' => $dir . 'images/add-ons/date-time-field-thumb.jpg',
2535
+ # wpml-name: 646e60ee68cf7ea7ba25aa9c7445a28f
2536
+ msgid "jQuery date & time picker"
2537
+ msgstr "פיקר תאריך וזמן בjQuary"
2538
 
2539
+ # $free[] = array(
2540
+ # 'title' => __("Date & Time Picker",'acf'),
2541
+ # 'description' => __("jQuery date & time picker",'acf'),
2542
+ # wpml-name: bca6d4f0816092fa039a9c6042ed8259
2543
+ msgid "Date & Time Picker"
2544
+ msgstr "פיקר תאריך וזמן"
2545
 
2546
+ # 'title' => __("Gravity Forms Field",'acf'),
2547
+ # 'description' => __("Creates a select field populated with Gravity Forms!",'acf'),
2548
+ # 'thumbnail' => $dir . 'images/add-ons/gravity-forms-field-thumb.jpg',
2549
+ # wpml-name: 84e04d52ca4dbf3fa65531d37b63f35c
2550
+ msgid "Creates a select field populated with Gravity Forms!"
2551
+ msgstr "צור רשימה מותאמת לטפסי הgravity forms שלך!"
2552
 
2553
+ # $free[] = array(
2554
+ # 'title' => __("Gravity Forms Field",'acf'),
2555
+ # 'description' => __("Creates a select field populated with Gravity Forms!",'acf'),
2556
+ # wpml-name: de48faa2ab62368f20cad96f11e367f0
2557
+ msgid "Gravity Forms Field"
2558
+ msgstr "שדה גרביטי פורמס"
2559
 
2560
+ # 'title' => __("Flexible Content Field",'acf'),
2561
+ # 'description' => __("Create unique designs with a flexible content layout manager!",'acf'),
2562
+ # 'thumbnail' => $dir . 'images/add-ons/flexible-content-field-thumb.jpg',
2563
+ # wpml-name: 07535035a3ee70774863f3fc04ccb8e7
2564
+ msgid "Create unique designs with a flexible content layout manager!"
2565
+ msgstr "צור עיצובים ייחודיים עם מנהל פריסת תוכן גמיש ונח!"
2566
 
2567
+ # $premium[] = array(
2568
+ # 'title' => __("Flexible Content Field",'acf'),
2569
+ # 'description' => __("Create unique designs with a flexible content layout manager!",'acf'),
2570
+ # wpml-name: 67310e4573cce9a2aefe65bedbe4bd57
2571
+ msgid "Flexible Content Field"
2572
+ msgstr "שדה תוכן גמיש"
2573
 
2574
+ # 'title' => __("Options Page",'acf'),
2575
+ # 'description' => __("Create global data to use throughout your website!",'acf'),
2576
+ # 'thumbnail' => $dir . 'images/add-ons/options-page-thumb.jpg',
2577
+ # wpml-name: a22588c378dc115b83678c70e4ae6037
2578
+ msgid "Create global data to use throughout your website!"
2579
+ msgstr "צור עמוד אפשרויות אישי לשימוש באתר שלך!"
2580
 
2581
+ # <td><img src="<?php echo $dir; ?>images/add-ons/options-page-thumb.jpg" /></td>
2582
+ # <th><?php _e("Options Page",'acf'); ?></th>
2583
+ # <td>XXXX-XXXX-XXXX-<?php echo substr($ac_options_page,-4); ?></td>
2584
+ # wpml-name: 835da999dc979b0a12d9106cc9af29b3
2585
+ msgid "Options Page"
2586
+ msgstr "עמוד אפשרויות"
2587
 
2588
+ # 'title' => __("Gallery Field",'acf'),
2589
+ # 'description' => __("Create image galleries in a simple and intuitive interface!",'acf'),
2590
+ # 'thumbnail' => $dir . 'images/add-ons/gallery-field-thumb.jpg',
2591
+ # wpml-name: 6eee3df0e72610fe01563e66eb392092
2592
+ msgid "Create image galleries in a simple and intuitive interface!"
2593
+ msgstr "יצירת גלריות תמונות בממשק פשוט ואינטואיטיבי!"
2594
 
2595
+ # <td><img src="<?php echo $dir; ?>images/add-ons/gallery-field-thumb.jpg" /></td>
2596
+ # <th><?php _e("Gallery Field",'acf'); ?></th>
2597
+ # <td>XXXX-XXXX-XXXX-<?php echo substr($ac_gallery,-4); ?></td>
2598
+ # wpml-name: 002c9d3653a80f3ec79d87d8227e9651
2599
+ msgid "Gallery Field"
2600
+ msgstr "שדה גלריה"
2601
 
2602
+ # 'title' => __("Repeater Field",'acf'),
2603
+ # 'description' => __("Create infinite rows of repeatable data with this versatile interface!",'acf'),
2604
+ # 'thumbnail' => $dir . 'images/add-ons/repeater-field-thumb.jpg',
2605
+ # wpml-name: 3ac0f579215b81db2943e989d4721545
2606
+ msgid "Create infinite rows of repeatable data with this versatile interface!"
2607
+ msgstr "צור עמודות ללא הגבלה של מידע שחוזר על עצמו עם ממשק פשוט ונח"
2608
 
2609
+ # <td class="td-image"><img src="<?php echo $dir; ?>images/add-ons/repeater-field-thumb.jpg" style="width:50px" /></td>
2610
+ # <th class="td-name"><?php _e("Repeater Field",'acf'); ?></th>
2611
+ # <td class="td-code">XXXX-XXXX-XXXX-<?php echo substr($ac_repeater,-4); ?></td>
2612
+ # wpml-name: 94a2f31f267eaf3d5705c99063abb86f
2613
+ msgid "Repeater Field"
2614
+ msgstr "שדה ריפיטר"
2615
 
2616
+ #
2617
+ # <h3><?php _e("Add-ons",'acf'); ?></h3>
2618
+ #
2619
+ # wpml-name: 2ed9fe3318cba954f72a23d9cfa0cf21
2620
+ msgid "Add-ons"
2621
+ msgstr "הרחבות"
2622
 
2623
+ # $choices = array(
2624
+ # 'all' => __("All",'acf')
2625
+ # );
2626
+ # wpml-name: b1c94ca2fbc3e78fc30069c8d0f01680
2627
+ msgid "All"
2628
+ msgstr "הכל"
2629
 
2630
+ # $choices = array(
2631
+ # 'default' => __("Default Template",'acf'),
2632
+ # );
2633
+ # wpml-name: 7fef9dabc73a2b259aba73d88f81292d
2634
+ msgid "Default Template"
2635
+ msgstr "טמפלט ברירת המחדל"
2636
 
2637
+ # 'parent' => __("Parent Page (has children)",'acf'),
2638
+ # 'child' => __("Child Page (has parent)",'acf'),
2639
+ # );
2640
+ # wpml-name: 43d71e0c1efed4b54dda7343ff8c3e3c
2641
+ msgid "Child Page (has parent)"
2642
+ msgstr "דף ילד(יש לו דף אב)"
2643
 
2644
+ # 'top_level' => __("Top Level Page (parent of 0)",'acf'),
2645
+ # 'parent' => __("Parent Page (has children)",'acf'),
2646
+ # 'child' => __("Child Page (has parent)",'acf'),
2647
+ # wpml-name: 7e1dea98bf298a6f7faff62b961dfc59
2648
+ msgid "Parent Page (has children)"
2649
+ msgstr "עמוד הורה - יש לו עמודים ילדים"
2650
 
2651
+ # 'posts_page' => __("Posts Page",'acf'),
2652
+ # 'top_level' => __("Top Level Page (parent of 0)",'acf'),
2653
+ # 'parent' => __("Parent Page (has children)",'acf'),
2654
+ # wpml-name: 9f036b97118bdd8887f9e5369a708135
2655
+ msgid "Top Level Page (parent of 0)"
2656
+ msgstr "דף ברמה הגבוהה ביותר - טופ לבל פייג"
2657
 
2658
+ # 'front_page' => __("Front Page",'acf'),
2659
+ # 'posts_page' => __("Posts Page",'acf'),
2660
+ # 'top_level' => __("Top Level Page (parent of 0)",'acf'),
2661
+ # wpml-name: 228b7c2fcd38be689021f37264dd5bd1
2662
+ msgid "Posts Page"
2663
+ msgstr "עמוד פוסטים"
2664
 
2665
+ # $choices = array(
2666
+ # 'front_page' => __("Front Page",'acf'),
2667
+ # 'posts_page' => __("Posts Page",'acf'),
2668
+ # wpml-name: 7612c0b50754aa23325448056f7f1ec1
2669
+ msgid "Front Page"
2670
+ msgstr "עמוד ראשי"
2671
 
2672
+ # 'choices' => array(
2673
+ # 1 => __("Yes",'acf'),
2674
+ # 0 => __("No",'acf'),
2675
+ # wpml-name: 93cba07454f06a4a960172bbd6e2a435
2676
+ msgid "Yes"
2677
+ msgstr "כן"
2678
 
2679
+ # 1 => __("Yes",'acf'),
2680
+ # 0 => __("No",'acf'),
2681
+ # ),
2682
+ # wpml-name: bafd7322c6e97d25b6299b5d6fe8920b
2683
+ msgid "No"
2684
+ msgstr "לא"
2685
 
2686
+ #
2687
+ # $current .= '<div class="show-field_key">' . __("Show Field Key:",'acf');
2688
+ # $current .= '<label class="show-field_key-no"><input checked="checked" type="radio" value="0" name="show-field_key" />' . __("No",'acf') . '</label>';
2689
+ # wpml-name: 71e82bd6a464dd31b714f9e1fd6eb06e
2690
+ msgid "Show Field Key:"
2691
+ msgstr "הצג מפתח שדה:"
2692
 
2693
+ # add_meta_box('acf_location', __("Location",'acf'), array($this, 'html_location'), 'acf', 'normal', 'high');
2694
+ # add_meta_box('acf_options', __("Options",'acf'), array($this, 'html_options'), 'acf', 'normal', 'high');
2695
+ #
2696
+ # wpml-name: dae8ace18bdcbcc6ae5aece263e14fe8
2697
+ msgid "Options"
2698
+ msgstr "אפשרויות"
2699
 
2700
+ # add_meta_box('acf_fields', __("Fields",'acf'), array($this, 'html_fields'), 'acf', 'normal', 'high');
2701
+ # add_meta_box('acf_location', __("Location",'acf'), array($this, 'html_location'), 'acf', 'normal', 'high');
2702
+ # add_meta_box('acf_options', __("Options",'acf'), array($this, 'html_options'), 'acf', 'normal', 'high');
2703
+ # wpml-name: ce5bf551379459c1c61d2a204061c455
2704
+ msgid "Location"
2705
+ msgstr "מיקום"
2706
 
2707
+ # 'sibling_fields' => __("Sibling fields",'acf'),
2708
+ # 'hide_show_all' => __("Hide / Show All",'acf')
2709
+ # );
2710
+ # wpml-name: 2fca2cbaac18450b5f94bb1b3c013d28
2711
+ msgid "Hide / Show All"
2712
+ msgstr "הצג/הסתר הכל"
2713
 
2714
+ # 'parent_fields' => __("Parent fields",'acf'),
2715
+ # 'sibling_fields' => __("Sibling fields",'acf'),
2716
+ # 'hide_show_all' => __("Hide / Show All",'acf')
2717
+ # wpml-name: 0b5e7409b5578977e74a2a0fb2d38541
2718
+ msgid "Sibling fields"
2719
+ msgstr "שדות אחים"
2720
 
2721
+ # 'fields' => __("Fields",'acf'),
2722
+ # 'parent_fields' => __("Parent fields",'acf'),
2723
+ # 'sibling_fields' => __("Sibling fields",'acf'),
2724
+ # wpml-name: 4fca38a28e805efe41f6acd6a15c3878
2725
+ msgid "Parent fields"
2726
+ msgstr "שדות הורים"
2727
 
2728
+ # 'title' => __("Title"),
2729
+ # 'fields' => __("Fields", 'acf')
2730
+ # );
2731
+ # wpml-name: a4ca5edd20d0b5d502ebece575681f58
2732
+ msgid "Fields"
2733
+ msgstr "שדות"
 
2734
 
2735
+ #
2736
+ # <h4><?php _e("or",'acf'); ?></h4>
2737
+ #
2738
+ # wpml-name: e81c4e4f2b7b93b481e13a8553c2ae1b
2739
+ msgid "or"
2740
+ msgstr "או"
2741
 
2742
+ # 'title' => __("Field group title is required",'acf'),
2743
+ # 'copy' => __("copy",'acf'),
2744
+ # 'or' => __("or",'acf'),
2745
+ # wpml-name: 12cba3ee81cf4a793796a51b6327c678
2746
+ msgid "copy"
2747
+ msgstr "העתק"
2748
 
2749
+ # 'no_fields' => __("No toggle fields available",'acf'),
2750
+ # 'title' => __("Field group title is required",'acf'),
2751
+ # 'copy' => __("copy",'acf'),
2752
+ # wpml-name: 7d7aa877659622908cc6114036f3c53f
2753
+ msgid "Field group title is required"
2754
+ msgstr "כותרת קבוצת שדות - חובה"
2755
 
2756
+ # 'checked' => __("checked",'acf'),
2757
+ # 'no_fields' => __("No toggle fields available",'acf'),
2758
+ # 'title' => __("Field group title is required",'acf'),
2759
+ # wpml-name: 267d27771137d411ce910343807cb604
2760
+ msgid "No toggle fields available"
2761
+ msgstr "אין שדות toggle זמינים"
2762
 
2763
+ # 'move_to_trash' => __("Move to trash. Are you sure?",'acf'),
2764
+ # 'checked' => __("checked",'acf'),
2765
+ # 'no_fields' => __("No toggle fields available",'acf'),
2766
+ # wpml-name: 3793ea52a7be2d7deafd858fda50775c
2767
+ msgid "checked"
2768
+ msgstr "מסומן"
2769
 
2770
+ # $l10n = array(
2771
+ # 'move_to_trash' => __("Move to trash. Are you sure?",'acf'),
2772
+ # 'checked' => __("checked",'acf'),
2773
+ # wpml-name: 784dc36bad575bd6f6cbd4bbccbe601f
2774
+ msgid "Move to trash. Are you sure?"
2775
+ msgstr "מועבר לאשפה. האם אתה בטוח?"
2776
 
2777
+ # // vars
2778
+ # $message = __("Moving user custom fields from wp_options to wp_usermeta'",'acf') . '...';
2779
+ #
2780
+ # wpml-name: 3998c707efbbef7476ba40ec7fea6df6
2781
+ msgid "Moving user custom fields from wp_options to wp_usermeta'"
2782
+ msgstr "הזזת שדות מותאמים אישית מ - wp_options ל - wp_usermeta"
2783
 
2784
+ # // vars
2785
+ # $message = __("Modifying field option 'taxonomy'",'acf') . '...';
2786
+ # $wp_term_taxonomy = $wpdb->prefix.'term_taxonomy';
2787
+ # wpml-name: 194b2879c1b1737e7bc688186af65166
2788
+ msgid "Modifying field option 'taxonomy'"
2789
+ msgstr "שינוי אפשרויות שדה 'טקסונומיה'"
2790
 
2791
+ # // vars
2792
+ # $message = __("Modifying field group options 'show on page'",'acf') . '...';
2793
+ #
2794
+ # wpml-name: bd87231e0cafd2f9b01187b728db5829
2795
+ msgid "Modifying field group options 'show on page'"
2796
+ msgstr "לשנות אפשרות נראות עבור קבוצת השדה"
2797
 
2798
+ # // update admin page
2799
+ # add_submenu_page('edit.php?post_type=acf', __('Upgrade','acf'), __('Upgrade','acf'), 'manage_options','acf-upgrade', array($this,'html') );
2800
+ # }
2801
+ # wpml-name: f683581d3e75f05f9d9215f9b4696cef
2802
+ msgid "Upgrade"
2803
+ msgstr "שדרוג"
2804
 
2805
+ # 'submit_value' => __("Update", 'acf'),
2806
+ # 'updated_message' => __("Post updated", 'acf'),
2807
+ # );
2808
+ # wpml-name: 33d10d146b4f8af30bf95a75c9d73937
2809
+ msgid "Post updated"
2810
+ msgstr "פוסט עודכן"
2811
 
2812
+ # 'html_after_fields' => '',
2813
+ # 'submit_value' => __("Update", 'acf'),
2814
+ # 'updated_message' => __("Post updated", 'acf'),
2815
+ # wpml-name: 06933067aafd48425d67bcb01bba5cb6
2816
+ msgid "Update"
2817
+ msgstr "לעדכן"
lang/acf-it_IT.mo CHANGED
File without changes
lang/acf-it_IT.po CHANGED
File without changes
lang/acf-nl_NL.po CHANGED
File without changes
lang/acf-pt_BR.mo CHANGED
File without changes
lang/acf-pt_BR.po CHANGED
File without changes
lang/acf-ru_RU.mo CHANGED
File without changes
lang/acf-ru_RU.po CHANGED
File without changes
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: elliotcondon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.5.0
5
- Tested up to: 4.1
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
@@ -81,7 +81,7 @@ Your votes really make a difference! Thanks.
81
 
82
  1. Upload 'advanced-custom-fields' to the '/wp-content/plugins/' directory
83
  2. Activate the plugin through the 'Plugins' menu in WordPress
84
- 3. Click on the new menu itme "Custom Fields" and create your first Custom Field Group!
85
  4. Your custom field group will now appear on the page / post / template you specified in the field group's location rules!
86
  5. Read the documentation to display your data:
87
 
@@ -106,6 +106,11 @@ http://support.advancedcustomfields.com/
106
 
107
  == Changelog ==
108
 
 
 
 
 
 
109
  = 4.4.0 =
110
  * Core: Fixed depreciated warnings
111
 
2
  Contributors: elliotcondon
3
  Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
4
  Requires at least: 3.5.0
5
+ Tested up to: 4.2
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
 
81
 
82
  1. Upload 'advanced-custom-fields' to the '/wp-content/plugins/' directory
83
  2. Activate the plugin through the 'Plugins' menu in WordPress
84
+ 3. Click on the new menu item "Custom Fields" and create your first Custom Field Group!
85
  4. Your custom field group will now appear on the page / post / template you specified in the field group's location rules!
86
  5. Read the documentation to display your data:
87
 
106
 
107
  == Changelog ==
108
 
109
+ = 4.4.1 =
110
+ * Taxonomy field: Added compatibility for upcoming 'term splitting' in WP 4.2
111
+ * Taxonomy field: Major improvement to save/load setting allowing for different values on multiple sub fields
112
+ * Core: Minor fixes and improvements
113
+
114
  = 4.4.0 =
115
  * Core: Fixed depreciated warnings
116