Version Description
- Core: Fixed depreciated warnings
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.4.0 |
Comparing to | |
See all releases |
Code changes from version 4.3.9 to 4.4.0
- acf.php +2 -2
- core/fields/post_object.php +31 -19
- core/fields/relationship.php +105 -118
- core/views/meta_box_fields.php +0 -1
- lang/acf-fa_IR.mo +0 -0
- lang/acf-fa_IR.po +779 -2021
- lang/acf-it_IT.mo +0 -0
- lang/acf-it_IT.po +0 -0
- lang/acf-nl_NL.po +0 -0
- lang/acf-pt_BR.mo +0 -0
- lang/acf-pt_BR.po +0 -0
- lang/acf-ru_RU.mo +0 -0
- lang/acf-ru_RU.po +0 -0
- readme.txt +5 -3
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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.
|
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.
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
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 |
'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 |
);
|
core/fields/post_object.php
CHANGED
@@ -180,33 +180,45 @@ class acf_field_post_object extends acf_field
|
|
180 |
}
|
181 |
|
182 |
|
183 |
-
if($posts)
|
184 |
-
|
185 |
-
foreach( $posts as $p )
|
186 |
-
|
187 |
-
//
|
188 |
-
$title =
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
}
|
197 |
-
$title .= ' ' . apply_filters( 'the_title', $p->post_title, $p->ID );
|
198 |
|
199 |
|
200 |
// status
|
201 |
-
if( $p->
|
202 |
-
|
203 |
-
$title .=
|
|
|
204 |
}
|
205 |
|
|
|
206 |
// WPML
|
207 |
-
if( defined('ICL_LANGUAGE_CODE') )
|
208 |
-
|
209 |
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
|
|
210 |
}
|
211 |
|
212 |
|
180 |
}
|
181 |
|
182 |
|
183 |
+
if($posts) {
|
184 |
+
|
185 |
+
foreach( $posts as $p ) {
|
186 |
+
|
187 |
+
// title
|
188 |
+
$title = get_the_title( $p->ID );
|
189 |
+
|
190 |
+
|
191 |
+
// empty
|
192 |
+
if( $title === '' ) {
|
193 |
+
|
194 |
+
$title = __('(no title)', 'acf');
|
195 |
+
|
196 |
+
}
|
197 |
+
|
198 |
+
|
199 |
+
// ancestors
|
200 |
+
if( $p->post_type != 'attachment' ) {
|
201 |
+
|
202 |
+
$ancestors = get_ancestors( $p->ID, $p->post_type );
|
203 |
+
|
204 |
+
$title = str_repeat('- ', count($ancestors)) . $title;
|
205 |
+
|
206 |
}
|
|
|
207 |
|
208 |
|
209 |
// status
|
210 |
+
if( get_post_status( $p->ID ) != "publish" ) {
|
211 |
+
|
212 |
+
$title .= ' (' . get_post_status( $p->ID ) . ')';
|
213 |
+
|
214 |
}
|
215 |
|
216 |
+
|
217 |
// WPML
|
218 |
+
if( defined('ICL_LANGUAGE_CODE') ) {
|
219 |
+
|
220 |
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
221 |
+
|
222 |
}
|
223 |
|
224 |
|
core/fields/relationship.php
CHANGED
@@ -98,25 +98,100 @@ class acf_field_relationship extends acf_field
|
|
98 |
// return
|
99 |
return $field;
|
100 |
}
|
101 |
-
|
102 |
-
|
103 |
/*
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
|
122 |
|
@@ -238,17 +313,6 @@ class acf_field_relationship extends acf_field
|
|
238 |
unset( $options['taxonomy'] );
|
239 |
|
240 |
|
241 |
-
// search
|
242 |
-
if( $options['s'] )
|
243 |
-
{
|
244 |
-
$options['like_title'] = $options['s'];
|
245 |
-
|
246 |
-
add_filter( 'posts_where', array($this, 'posts_where'), 10, 2 );
|
247 |
-
}
|
248 |
-
|
249 |
-
unset( $options['s'] );
|
250 |
-
|
251 |
-
|
252 |
// load field
|
253 |
$field = array();
|
254 |
if( $options['ancestor'] )
|
@@ -281,66 +345,30 @@ class acf_field_relationship extends acf_field
|
|
281 |
|
282 |
|
283 |
// loop
|
284 |
-
while( $wp_query->have_posts() )
|
285 |
-
{
|
286 |
-
$wp_query->the_post();
|
287 |
-
|
288 |
-
|
289 |
-
// right aligned info
|
290 |
-
$title = '<span class="relationship-item-info">';
|
291 |
-
|
292 |
-
if( in_array('post_type', $field['result_elements']) )
|
293 |
-
{
|
294 |
-
$post_type_object = get_post_type_object( get_post_type() );
|
295 |
-
$title .= $post_type_object->labels->singular_name;
|
296 |
-
}
|
297 |
-
|
298 |
-
// WPML
|
299 |
-
if( $options['lang'] )
|
300 |
-
{
|
301 |
-
$title .= ' (' . $options['lang'] . ')';
|
302 |
-
}
|
303 |
-
|
304 |
-
$title .= '</span>';
|
305 |
-
|
306 |
-
|
307 |
-
// featured_image
|
308 |
-
if( in_array('featured_image', $field['result_elements']) )
|
309 |
-
{
|
310 |
-
$image = get_the_post_thumbnail( get_the_ID(), array(21, 21) );
|
311 |
-
|
312 |
-
$title .= '<div class="result-thumbnail">' . $image . '</div>';
|
313 |
-
}
|
314 |
|
|
|
315 |
|
316 |
-
// title
|
317 |
-
$title .= get_the_title();
|
318 |
|
319 |
-
|
320 |
-
|
321 |
-
if( get_post_status() != "publish" )
|
322 |
-
{
|
323 |
-
$title .= ' (' . get_post_status() . ')';
|
324 |
-
}
|
325 |
-
|
326 |
-
|
327 |
-
// filters
|
328 |
-
$title = apply_filters('acf/fields/relationship/result', $title, $post, $field, $the_post);
|
329 |
-
$title = apply_filters('acf/fields/relationship/result/name=' . $field['_name'] , $title, $post, $field, $the_post);
|
330 |
-
$title = apply_filters('acf/fields/relationship/result/key=' . $field['key'], $title, $post, $field, $the_post);
|
331 |
|
332 |
|
333 |
// update html
|
334 |
-
$r['html'] .= '<li><a href="' . get_permalink() . '" data-post_id="' .
|
|
|
335 |
}
|
336 |
|
337 |
|
338 |
-
|
339 |
-
{
|
|
|
340 |
$r['next_page_exists'] = 0;
|
|
|
341 |
}
|
342 |
|
343 |
|
|
|
344 |
wp_reset_postdata();
|
345 |
|
346 |
|
@@ -487,48 +515,7 @@ class acf_field_relationship extends acf_field
|
|
487 |
{
|
488 |
foreach( $field['value'] as $p )
|
489 |
{
|
490 |
-
|
491 |
-
$title = '<span class="relationship-item-info">';
|
492 |
-
|
493 |
-
if( in_array('post_type', $field['result_elements']) )
|
494 |
-
{
|
495 |
-
$post_type_object = get_post_type_object( get_post_type($p) );
|
496 |
-
$title .= $post_type_object->labels->singular_name;
|
497 |
-
}
|
498 |
-
|
499 |
-
|
500 |
-
// WPML
|
501 |
-
if( defined('ICL_LANGUAGE_CODE') )
|
502 |
-
{
|
503 |
-
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
504 |
-
}
|
505 |
-
|
506 |
-
$title .= '</span>';
|
507 |
-
|
508 |
-
|
509 |
-
// featured_image
|
510 |
-
if( in_array('featured_image', $field['result_elements']) )
|
511 |
-
{
|
512 |
-
$image = get_the_post_thumbnail( $p->ID, array(21, 21) );
|
513 |
-
|
514 |
-
$title .= '<div class="result-thumbnail">' . $image . '</div>';
|
515 |
-
}
|
516 |
-
|
517 |
-
|
518 |
-
// find title. Could use get_the_title, but that uses get_post(), so I think this uses less Memory
|
519 |
-
$title .= apply_filters( 'the_title', $p->post_title, $p->ID );
|
520 |
-
|
521 |
-
// status
|
522 |
-
if($p->post_status != "publish")
|
523 |
-
{
|
524 |
-
$title .= " ($p->post_status)";
|
525 |
-
}
|
526 |
-
|
527 |
-
|
528 |
-
// filters
|
529 |
-
$title = apply_filters('acf/fields/relationship/result', $title, $p, $field, $post);
|
530 |
-
$title = apply_filters('acf/fields/relationship/result/name=' . $field['_name'] , $title, $p, $field, $post);
|
531 |
-
$title = apply_filters('acf/fields/relationship/result/key=' . $field['key'], $title, $p, $field, $post);
|
532 |
|
533 |
|
534 |
echo '<li>
|
98 |
// return
|
99 |
return $field;
|
100 |
}
|
101 |
+
|
102 |
+
|
103 |
/*
|
104 |
+
* get_result
|
105 |
+
*
|
106 |
+
* description
|
107 |
+
*
|
108 |
+
* @type function
|
109 |
+
* @date 5/02/2015
|
110 |
+
* @since 5.1.5
|
111 |
+
*
|
112 |
+
* @param $post_id (int)
|
113 |
+
* @return $post_id (int)
|
114 |
+
*/
|
115 |
+
|
116 |
+
function get_result( $post, $field, $the_post, $options = array() ) {
|
117 |
+
|
118 |
+
// right aligned info
|
119 |
+
$title = '<span class="relationship-item-info">';
|
120 |
+
|
121 |
+
if( in_array('post_type', $field['result_elements']) ) {
|
122 |
+
|
123 |
+
$post_type_object = get_post_type_object( $post->post_type );
|
124 |
+
$title .= $post_type_object->labels->singular_name;
|
125 |
+
|
126 |
+
}
|
127 |
+
|
128 |
+
|
129 |
+
// WPML
|
130 |
+
if( !empty($options['lang']) ) {
|
131 |
+
|
132 |
+
$title .= ' (' . $options['lang'] . ')';
|
133 |
+
|
134 |
+
} elseif( defined('ICL_LANGUAGE_CODE') ) {
|
135 |
+
|
136 |
+
$title .= ' (' . ICL_LANGUAGE_CODE . ')';
|
137 |
+
|
138 |
+
}
|
139 |
+
|
140 |
+
$title .= '</span>';
|
141 |
+
|
142 |
+
|
143 |
+
// featured_image
|
144 |
+
if( in_array('featured_image', $field['result_elements']) ) {
|
145 |
+
|
146 |
+
$image = '';
|
147 |
+
|
148 |
+
if( $post->post_type == 'attachment' ) {
|
149 |
+
|
150 |
+
$image = wp_get_attachment_image( $post->ID, array(21, 21) );
|
151 |
+
|
152 |
+
} else {
|
153 |
+
|
154 |
+
$image = get_the_post_thumbnail( $post->ID, array(21, 21) );
|
155 |
+
|
156 |
+
}
|
157 |
+
|
158 |
+
$title .= '<div class="result-thumbnail">' . $image . '</div>';
|
159 |
+
|
160 |
+
}
|
161 |
+
|
162 |
+
|
163 |
+
// title
|
164 |
+
$post_title = get_the_title( $post->ID );
|
165 |
+
|
166 |
+
|
167 |
+
// empty
|
168 |
+
if( $post_title === '' ) {
|
169 |
+
|
170 |
+
$post_title = __('(no title)', 'acf');
|
171 |
+
|
172 |
+
}
|
173 |
+
|
174 |
+
|
175 |
+
$title .= $post_title;
|
176 |
+
|
177 |
+
|
178 |
+
// status
|
179 |
+
if( get_post_status( $post->ID ) != "publish" ) {
|
180 |
+
|
181 |
+
$title .= ' (' . get_post_status( $post->ID ) . ')';
|
182 |
+
|
183 |
+
}
|
184 |
+
|
185 |
+
|
186 |
+
// filters
|
187 |
+
$title = apply_filters('acf/fields/relationship/result', $title, $post, $field, $the_post);
|
188 |
+
$title = apply_filters('acf/fields/relationship/result/name=' . $field['_name'] , $title, $post, $field, $the_post);
|
189 |
+
$title = apply_filters('acf/fields/relationship/result/key=' . $field['key'], $title, $post, $field, $the_post);
|
190 |
+
|
191 |
+
|
192 |
+
// return
|
193 |
+
return $title;
|
194 |
+
|
195 |
}
|
196 |
|
197 |
|
313 |
unset( $options['taxonomy'] );
|
314 |
|
315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
// load field
|
317 |
$field = array();
|
318 |
if( $options['ancestor'] )
|
345 |
|
346 |
|
347 |
// loop
|
348 |
+
while( $wp_query->have_posts() ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
|
350 |
+
$wp_query->the_post();
|
351 |
|
|
|
|
|
352 |
|
353 |
+
// get title
|
354 |
+
$title = $this->get_result($post, $field, $the_post, $options);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
|
356 |
|
357 |
// update html
|
358 |
+
$r['html'] .= '<li><a href="' . get_permalink($post->ID) . '" data-post_id="' . $post->ID . '">' . $title . '<span class="acf-button-add"></span></a></li>';
|
359 |
+
|
360 |
}
|
361 |
|
362 |
|
363 |
+
// next page
|
364 |
+
if( (int)$options['paged'] >= $wp_query->max_num_pages ) {
|
365 |
+
|
366 |
$r['next_page_exists'] = 0;
|
367 |
+
|
368 |
}
|
369 |
|
370 |
|
371 |
+
// reset
|
372 |
wp_reset_postdata();
|
373 |
|
374 |
|
515 |
{
|
516 |
foreach( $field['value'] as $p )
|
517 |
{
|
518 |
+
$title = $this->get_result($p, $field, $post);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
|
520 |
|
521 |
echo '<li>
|
core/views/meta_box_fields.php
CHANGED
@@ -106,7 +106,6 @@ $error_field_type = '<b>' . __('Error', 'acf') . '</b> ' . __('Field type does n
|
|
106 |
</strong>
|
107 |
<div class="row_options">
|
108 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
109 |
-
<span><a title="<?php _e("Read documentation for this field",'acf'); ?>" href="http://www.advancedcustomfields.com/resources/#field-types" target="_blank"><?php _e("Docs",'acf'); ?></a> | </span>
|
110 |
<span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
|
111 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
|
112 |
</div>
|
106 |
</strong>
|
107 |
<div class="row_options">
|
108 |
<span><a class="acf_edit_field" title="<?php _e("Edit this Field",'acf'); ?>" href="javascript:;"><?php _e("Edit",'acf'); ?></a> | </span>
|
|
|
109 |
<span><a class="acf_duplicate_field" title="<?php _e("Duplicate this Field",'acf'); ?>" href="javascript:;"><?php _e("Duplicate",'acf'); ?></a> | </span>
|
110 |
<span><a class="acf_delete_field" title="<?php _e("Delete this Field",'acf'); ?>" href="javascript:;"><?php _e("Delete",'acf'); ?></a></span>
|
111 |
</div>
|
lang/acf-fa_IR.mo
CHANGED
Binary file
|
lang/acf-fa_IR.po
CHANGED
@@ -2,285 +2,218 @@
|
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
-
"PO-Revision-Date: 2014-
|
9 |
"Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
|
10 |
-
"Language-Team:
|
11 |
-
"Language: fa_IR\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 1.
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
-
"
|
|
|
19 |
|
20 |
-
#:
|
21 |
msgid "Field Groups"
|
22 |
msgstr "گروه های زمینه"
|
23 |
|
24 |
-
#:
|
25 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:214
|
26 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:214
|
27 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:214
|
28 |
msgid "Advanced Custom Fields"
|
29 |
msgstr "زمینه های دلخواه پیشرفته"
|
30 |
|
31 |
-
#:
|
32 |
msgid "Add New"
|
33 |
msgstr "افزودن"
|
34 |
|
35 |
-
#:
|
36 |
msgid "Add New Field Group"
|
37 |
msgstr "افزودن گروه زمینه جدید"
|
38 |
|
39 |
-
#:
|
40 |
msgid "Edit Field Group"
|
41 |
msgstr "ویرایش گروه زمینه"
|
42 |
|
43 |
-
#:
|
44 |
msgid "New Field Group"
|
45 |
msgstr "گروه زمینه جدید"
|
46 |
|
47 |
-
#:
|
48 |
msgid "View Field Group"
|
49 |
msgstr "مشاهده گروه زمینه"
|
50 |
|
51 |
-
#:
|
52 |
msgid "Search Field Groups"
|
53 |
msgstr "جستجوی گروه های زمینه"
|
54 |
|
55 |
-
#:
|
56 |
msgid "No Field Groups found"
|
57 |
-
msgstr "گروه زمینه ای یافت
|
58 |
|
59 |
-
#:
|
60 |
msgid "No Field Groups found in Trash"
|
61 |
-
msgstr "گروه زمینه ای در زباله دان یافت
|
62 |
|
63 |
-
#:
|
64 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:99
|
65 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:99
|
66 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:99
|
67 |
msgid "Custom Fields"
|
68 |
msgstr "زمینه های دلخواه"
|
69 |
|
70 |
-
#:
|
71 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:600
|
72 |
msgid "Field group updated."
|
73 |
-
msgstr "گروه زمینه بروز
|
74 |
|
75 |
-
#:
|
76 |
msgid "Custom field updated."
|
77 |
-
msgstr "زمینه دلخواه بروز
|
78 |
|
79 |
-
#:
|
80 |
msgid "Custom field deleted."
|
81 |
-
msgstr "زمینه دلخواه حذف
|
82 |
|
83 |
-
#:
|
84 |
#, php-format
|
85 |
msgid "Field group restored to revision from %s"
|
86 |
msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
|
87 |
|
88 |
-
#:
|
89 |
msgid "Field group published."
|
90 |
msgstr "گروه زمینه انتشار یافت."
|
91 |
|
92 |
-
#:
|
93 |
msgid "Field group saved."
|
94 |
msgstr "گروه زمینه ذخیره شد."
|
95 |
|
96 |
-
#:
|
97 |
msgid "Field group submitted."
|
98 |
msgstr "گروه زمینه ارسال شد."
|
99 |
|
100 |
-
#:
|
101 |
msgid "Field group scheduled for."
|
102 |
-
msgstr "گروه زمینه برنامه ریزی
|
103 |
|
104 |
-
#:
|
105 |
msgid "Field group draft updated."
|
106 |
msgstr "پیش نویش گروه زمینه بروز شد."
|
107 |
|
108 |
-
#:
|
109 |
msgid "Thumbnail"
|
110 |
msgstr "تصویر بندانگشتی"
|
111 |
|
112 |
-
#:
|
113 |
msgid "Medium"
|
114 |
msgstr "متوسط"
|
115 |
|
116 |
-
#:
|
117 |
msgid "Large"
|
118 |
msgstr "بزرگ"
|
119 |
|
120 |
-
#:
|
121 |
msgid "Full"
|
122 |
msgstr "کامل"
|
123 |
|
124 |
-
#:
|
125 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:58
|
126 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/actions/export.php:26
|
127 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:58
|
128 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\actions/export.php:26
|
129 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:58
|
130 |
-
msgid "Error"
|
131 |
-
msgstr "خطا"
|
132 |
-
|
133 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/actions/export.php:33
|
134 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/actions/export.php:33
|
135 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\actions/export.php:33
|
136 |
-
msgid "No ACF groups selected"
|
137 |
-
msgstr "هیچ گروه زمینه دلخواه پیشرفته انتخاب نشده است."
|
138 |
-
|
139 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/api.php:1171
|
140 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/api.php:1171
|
141 |
msgid "Update"
|
142 |
msgstr "بروزرسانی"
|
143 |
|
144 |
-
#:
|
145 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/api.php:1172
|
146 |
msgid "Post updated"
|
147 |
msgstr "نوشته بروز شد."
|
148 |
|
149 |
-
#:
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
#:
|
154 |
-
|
|
|
|
|
|
|
155 |
msgid "Add-ons"
|
156 |
msgstr "افزودنی ها"
|
157 |
|
158 |
-
#:
|
159 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:429
|
160 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:130
|
161 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:429
|
162 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:130
|
163 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:429
|
164 |
msgid "Repeater Field"
|
165 |
msgstr "تکرار کننده زمینه"
|
166 |
|
167 |
-
#:
|
168 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:131
|
169 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:131
|
170 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
171 |
msgstr ""
|
172 |
-
"ایجاد
|
173 |
-
|
174 |
-
|
175 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:137
|
176 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:437
|
177 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:137
|
178 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:437
|
179 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:137
|
180 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:437
|
181 |
msgid "Gallery Field"
|
182 |
msgstr "زمینه گالری"
|
183 |
|
184 |
-
#:
|
185 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:138
|
186 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:138
|
187 |
msgid "Create image galleries in a simple and intuitive interface!"
|
188 |
msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
|
189 |
|
190 |
-
#:
|
191 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:445
|
192 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:144
|
193 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:445
|
194 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:144
|
195 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:445
|
196 |
msgid "Options Page"
|
197 |
msgstr "برگه تنظیمات"
|
198 |
|
199 |
-
#:
|
200 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:145
|
201 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:145
|
202 |
msgid "Create global data to use throughout your website!"
|
203 |
-
msgstr "ایجاد داده
|
204 |
|
205 |
-
#:
|
206 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:151
|
207 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:151
|
208 |
msgid "Flexible Content Field"
|
209 |
msgstr "زمینه محتوای انعطاف پذیر"
|
210 |
|
211 |
-
#:
|
212 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:152
|
213 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:152
|
214 |
msgid "Create unique designs with a flexible content layout manager!"
|
215 |
-
msgstr "ایجاد طرح های
|
216 |
|
217 |
-
#:
|
218 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:161
|
219 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:161
|
220 |
msgid "Gravity Forms Field"
|
221 |
-
msgstr "زمینه
|
222 |
|
223 |
-
#:
|
224 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:162
|
225 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:162
|
226 |
msgid "Creates a select field populated with Gravity Forms!"
|
227 |
-
msgstr "
|
|
|
|
|
228 |
|
229 |
-
#:
|
230 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:168
|
231 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:168
|
232 |
msgid "Date & Time Picker"
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#:
|
236 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:169
|
237 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:169
|
238 |
msgid "jQuery date & time picker"
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#:
|
242 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:175
|
243 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:175
|
244 |
msgid "Location Field"
|
245 |
-
msgstr "زمینه مکان"
|
246 |
|
247 |
-
#:
|
248 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:176
|
249 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:176
|
250 |
msgid "Find addresses and coordinates of a desired location"
|
251 |
-
msgstr "یافتن آدرس و
|
252 |
|
253 |
-
#:
|
254 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:182
|
255 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:182
|
256 |
msgid "Contact Form 7 Field"
|
257 |
msgstr "زمینه فرم تماس (Contact Form 7)"
|
258 |
|
259 |
-
#:
|
260 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:183
|
261 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:183
|
262 |
msgid "Assign one or more contact form 7 forms to a post"
|
263 |
msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته"
|
264 |
|
265 |
-
#:
|
266 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:193
|
267 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:193
|
268 |
msgid "Advanced Custom Fields Add-Ons"
|
269 |
msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
|
270 |
|
271 |
-
#:
|
272 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:196
|
273 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:196
|
274 |
msgid ""
|
275 |
"The following Add-ons are available to increase the functionality of the "
|
276 |
"Advanced Custom Fields plugin."
|
277 |
msgstr ""
|
278 |
-
"افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته
|
279 |
-
"
|
280 |
|
281 |
-
#:
|
282 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:197
|
283 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:197
|
284 |
msgid ""
|
285 |
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
286 |
"included in your theme (does not receive updates)."
|
@@ -288,90 +221,47 @@ msgstr ""
|
|
288 |
"هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
|
289 |
"پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
290 |
|
291 |
-
#:
|
292 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:240
|
293 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:219
|
294 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:240
|
295 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:219
|
296 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:240
|
297 |
msgid "Installed"
|
298 |
msgstr "نصب شده"
|
299 |
|
300 |
-
#:
|
301 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:221
|
302 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:221
|
303 |
msgid "Purchase & Install"
|
304 |
msgstr "خرید و نصب"
|
305 |
|
306 |
-
#:
|
307 |
-
#:
|
308 |
-
#:
|
309 |
-
#:
|
310 |
-
#:
|
311 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:455
|
312 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:242
|
313 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:422
|
314 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:431
|
315 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:439
|
316 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:447
|
317 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:455
|
318 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:242
|
319 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:422
|
320 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:431
|
321 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:439
|
322 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:447
|
323 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:455
|
324 |
msgid "Download"
|
325 |
-
msgstr "
|
326 |
-
|
327 |
-
#:
|
328 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:159
|
329 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:50
|
330 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:159
|
331 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:50
|
332 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:159
|
333 |
msgid "Export"
|
334 |
msgstr "برون بری"
|
335 |
|
336 |
-
#:
|
337 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:216
|
338 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:216
|
339 |
msgid "Export Field Groups"
|
340 |
msgstr "برون بری گروه های زمینه"
|
341 |
|
342 |
-
#:
|
343 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:221
|
344 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:221
|
345 |
msgid "Field Groups"
|
346 |
msgstr "گروه های زمینه"
|
347 |
|
348 |
-
#:
|
349 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:222
|
350 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:222
|
351 |
msgid "Select the field groups to be exported"
|
352 |
-
msgstr "
|
353 |
-
|
354 |
-
#:
|
355 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:252
|
356 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:239
|
357 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:252
|
358 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:239
|
359 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:252
|
360 |
msgid "Export to XML"
|
361 |
msgstr "برون بری به فرمت XML"
|
362 |
|
363 |
-
#:
|
364 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:267
|
365 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:242
|
366 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:267
|
367 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:242
|
368 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:267
|
369 |
msgid "Export to PHP"
|
370 |
msgstr "برون بری به فرمت PHP"
|
371 |
|
372 |
-
#:
|
373 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:253
|
374 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:253
|
375 |
msgid ""
|
376 |
"ACF will create a .xml export file which is compatible with the native WP "
|
377 |
"import plugin."
|
@@ -379,787 +269,475 @@ msgstr ""
|
|
379 |
"افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
|
380 |
"با افزونه Wordpress Importer سازگار است."
|
381 |
|
382 |
-
#:
|
383 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:254
|
384 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:254
|
385 |
msgid ""
|
386 |
"Imported field groups <b>will</b> appear in the list of editable field "
|
387 |
"groups. This is useful for migrating fields groups between Wp websites."
|
388 |
msgstr ""
|
389 |
-
"گروه های زمینه درون ریزی شده در لیست گروه های زمینه
|
390 |
-
"
|
391 |
"مفید است."
|
392 |
|
393 |
-
#:
|
394 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:256
|
395 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:256
|
396 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
397 |
msgstr ""
|
398 |
-
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML
|
399 |
-
"کلیک
|
400 |
|
401 |
-
#:
|
402 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:257
|
403 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:257
|
404 |
msgid "Save the .xml file when prompted"
|
405 |
-
msgstr "
|
406 |
|
407 |
-
#:
|
408 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:258
|
409 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:258
|
410 |
msgid "Navigate to Tools » Import and select WordPress"
|
411 |
-
msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس
|
412 |
|
413 |
-
#:
|
414 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:259
|
415 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:259
|
416 |
msgid "Install WP import plugin if prompted"
|
417 |
-
msgstr "
|
418 |
|
419 |
-
#:
|
420 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:260
|
421 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:260
|
422 |
msgid "Upload and import your exported .xml file"
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#:
|
426 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:261
|
427 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:261
|
428 |
msgid "Select your user and ignore Import Attachments"
|
429 |
-
msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را
|
430 |
|
431 |
-
#:
|
432 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:262
|
433 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:262
|
434 |
msgid "That's it! Happy WordPressing"
|
435 |
-
msgstr "
|
436 |
|
437 |
-
#:
|
438 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:268
|
439 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:268
|
440 |
msgid "ACF will create the PHP code to include in your theme."
|
441 |
msgstr ""
|
442 |
-
"افزونه زمینه های دلخواه پیشرفته کد
|
443 |
-
"
|
444 |
-
|
445 |
-
#:
|
446 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:310
|
447 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:269
|
448 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:310
|
449 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:269
|
450 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:310
|
451 |
msgid ""
|
452 |
"Registered field groups <b>will not</b> appear in the list of editable field "
|
453 |
"groups. This is useful for including fields in themes."
|
454 |
msgstr ""
|
455 |
-
"گروه های زمینه
|
456 |
-
"
|
457 |
-
|
458 |
-
|
459 |
-
#:
|
460 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:270
|
461 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:311
|
462 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:270
|
463 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:311
|
464 |
msgid ""
|
465 |
"Please note that if you export and register field groups within the same WP, "
|
466 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
467 |
"the original field group to the trash or remove the code from your functions."
|
468 |
"php file."
|
469 |
msgstr ""
|
470 |
-
"لطفا توجه
|
471 |
-
"
|
472 |
-
"برای
|
473 |
-
"از
|
474 |
-
|
475 |
-
#:
|
476 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:272
|
477 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:272
|
478 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
479 |
msgstr ""
|
480 |
-
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت
|
481 |
-
"کلیک
|
482 |
-
|
483 |
-
#:
|
484 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:302
|
485 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:273
|
486 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:302
|
487 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:273
|
488 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:302
|
489 |
msgid "Copy the PHP code generated"
|
490 |
-
msgstr "
|
491 |
-
|
492 |
-
#:
|
493 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:303
|
494 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:274
|
495 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:303
|
496 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:274
|
497 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:303
|
498 |
msgid "Paste into your functions.php file"
|
499 |
-
msgstr "
|
500 |
-
|
501 |
-
#:
|
502 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:304
|
503 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:275
|
504 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:304
|
505 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:275
|
506 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:304
|
507 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
508 |
-
msgstr ""
|
509 |
-
"برای فعالسازی افزودنی ها، کد را ویرایش کنید و از آن در اولین خطوط استفاده "
|
510 |
-
"کنید."
|
511 |
|
512 |
-
#:
|
513 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:295
|
514 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:295
|
515 |
msgid "Export Field Groups to PHP"
|
516 |
-
msgstr "برون بری گروه های زمینه به
|
517 |
-
|
518 |
-
#:
|
519 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:65
|
520 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:300
|
521 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:65
|
522 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:300
|
523 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:65
|
524 |
msgid "Instructions"
|
525 |
msgstr "دستورالعمل ها"
|
526 |
|
527 |
-
#:
|
528 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:309
|
529 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:309
|
530 |
msgid "Notes"
|
531 |
msgstr "نکته ها"
|
532 |
|
533 |
-
#:
|
534 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:316
|
535 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:316
|
536 |
msgid "Include in theme"
|
537 |
msgstr "قرار دادن در پوسته"
|
538 |
|
539 |
-
#:
|
540 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:317
|
541 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:317
|
542 |
msgid ""
|
543 |
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
544 |
"move the ACF plugin inside your theme and add the following code to your "
|
545 |
"functions.php file:"
|
546 |
msgstr ""
|
547 |
"افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار بگیرد. "
|
548 |
-
"برای انجام این کار، افزونه را
|
549 |
"به پرونده functions.php اضافه کنید:"
|
550 |
|
551 |
-
#:
|
552 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:323
|
553 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:323
|
554 |
msgid ""
|
555 |
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
556 |
"to enable lite mode. Add the following code to your functions.php file "
|
557 |
"<b>before</b> the include_once code:"
|
558 |
msgstr ""
|
559 |
-
"برای حذف همه رابط های بصری از افزونه زمینه های دلخواه
|
560 |
-
"
|
561 |
-
"functions.php خود <b>قبل از</b> تابع
|
|
|
562 |
|
563 |
-
#:
|
564 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:331
|
565 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:331
|
566 |
msgid "Back to export"
|
567 |
msgstr "بازگشت به برون بری"
|
568 |
|
569 |
-
#:
|
570 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/export.php:400
|
571 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/export.php:400
|
572 |
msgid "No field groups were selected"
|
573 |
-
msgstr "گروه زمینه ای انتخاب نشده
|
574 |
|
575 |
-
#:
|
576 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:358
|
577 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:358
|
578 |
msgid "Move to trash. Are you sure?"
|
579 |
msgstr "انتقال به زباله دان، آیا شما مطمئنید؟"
|
580 |
|
581 |
-
#:
|
582 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:359
|
583 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:359
|
584 |
msgid "checked"
|
585 |
msgstr "انتخاب شده"
|
586 |
|
587 |
-
#:
|
588 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:360
|
589 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:360
|
590 |
msgid "No toggle fields available"
|
591 |
-
msgstr "هیچ زمینه
|
592 |
|
593 |
-
#:
|
594 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:361
|
595 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:361
|
596 |
msgid "Field group title is required"
|
597 |
-
msgstr "عنوان گروه زمینه
|
598 |
|
599 |
-
#:
|
600 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:362
|
601 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:362
|
602 |
msgid "copy"
|
603 |
msgstr "کپی"
|
604 |
|
605 |
-
#:
|
606 |
-
#:
|
607 |
-
#:
|
608 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:363
|
609 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:62
|
610 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:159
|
611 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:363
|
612 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:62
|
613 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:159
|
614 |
msgid "or"
|
615 |
msgstr "یا"
|
616 |
|
617 |
-
#:
|
618 |
-
#:
|
619 |
-
#:
|
620 |
-
#:
|
621 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:364
|
622 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:395
|
623 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:457
|
624 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:148
|
625 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:364
|
626 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:395
|
627 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:457
|
628 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:148
|
629 |
msgid "Fields"
|
630 |
msgstr "زمینه ها"
|
631 |
|
632 |
-
#:
|
633 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:365
|
634 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:365
|
635 |
msgid "Parent fields"
|
636 |
msgstr "زمینه های مادر"
|
637 |
|
638 |
-
#:
|
639 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:366
|
640 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:366
|
641 |
msgid "Sibling fields"
|
642 |
-
msgstr "زمینه های
|
643 |
|
644 |
-
#:
|
645 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:367
|
646 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:367
|
647 |
msgid "Hide / Show All"
|
648 |
msgstr "مخفی کردن / نمایش همه"
|
649 |
|
650 |
-
#:
|
651 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:396
|
652 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:396
|
653 |
msgid "Location"
|
654 |
msgstr "مکان"
|
655 |
|
656 |
-
#:
|
657 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:397
|
658 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:397
|
659 |
msgid "Options"
|
660 |
msgstr "تنظیمات"
|
661 |
|
662 |
-
#:
|
663 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:459
|
664 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:459
|
665 |
msgid "Show Field Key:"
|
666 |
msgstr "نمایش کلید زمینه:"
|
667 |
|
668 |
-
#:
|
669 |
-
#:
|
670 |
-
#:
|
671 |
-
#:
|
672 |
-
#:
|
673 |
-
#:
|
674 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:243
|
675 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:347
|
676 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:332
|
677 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:335
|
678 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:196
|
679 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:219
|
680 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:460
|
681 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:138
|
682 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:159
|
683 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:328
|
684 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:349
|
685 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:224
|
686 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:243
|
687 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:347
|
688 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:332
|
689 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:335
|
690 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:196
|
691 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:219
|
692 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:460
|
693 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:138
|
694 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:159
|
695 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:328
|
696 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:349
|
697 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:224
|
698 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:243
|
699 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:347
|
700 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:332
|
701 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:335
|
702 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:196
|
703 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:219
|
704 |
msgid "No"
|
705 |
msgstr "خیر"
|
706 |
|
707 |
-
#:
|
708 |
-
#:
|
709 |
-
#:
|
710 |
-
#:
|
711 |
-
#:
|
712 |
-
#:
|
713 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:242
|
714 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:346
|
715 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:331
|
716 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:334
|
717 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:195
|
718 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:218
|
719 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:461
|
720 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:137
|
721 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:158
|
722 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:327
|
723 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:348
|
724 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:223
|
725 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:242
|
726 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:346
|
727 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:331
|
728 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:334
|
729 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:195
|
730 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:218
|
731 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:461
|
732 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:137
|
733 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:158
|
734 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:327
|
735 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:348
|
736 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:223
|
737 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:242
|
738 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:346
|
739 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:331
|
740 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:334
|
741 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:195
|
742 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:218
|
743 |
msgid "Yes"
|
744 |
msgstr "بله"
|
745 |
|
746 |
-
#:
|
747 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:633
|
748 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:633
|
749 |
msgid "Front Page"
|
750 |
-
msgstr "برگه
|
751 |
|
752 |
-
#:
|
753 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:634
|
754 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:634
|
755 |
msgid "Posts Page"
|
756 |
-
msgstr "برگه نوشته ها"
|
757 |
|
758 |
-
#:
|
759 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:635
|
760 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:635
|
761 |
msgid "Top Level Page (parent of 0)"
|
762 |
-
msgstr "بالاترین سطح برگه (
|
763 |
|
764 |
-
#:
|
765 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:636
|
766 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:636
|
767 |
msgid "Parent Page (has children)"
|
768 |
-
msgstr "برگه مادر (دارای
|
769 |
|
770 |
-
#:
|
771 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:637
|
772 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:637
|
773 |
msgid "Child Page (has parent)"
|
774 |
-
msgstr "برگه
|
775 |
|
776 |
-
#:
|
777 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:645
|
778 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:645
|
779 |
msgid "Default Template"
|
780 |
msgstr "پوسته پیش فرض"
|
781 |
|
782 |
-
#:
|
783 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:723
|
784 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:723
|
785 |
msgid "Publish"
|
786 |
msgstr "انتشار"
|
787 |
|
788 |
-
#:
|
789 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:724
|
790 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:724
|
791 |
msgid "Pending Review"
|
792 |
msgstr "در انتظار بررسی"
|
793 |
|
794 |
-
#:
|
795 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:725
|
796 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:725
|
797 |
msgid "Draft"
|
798 |
msgstr "پیش نویس"
|
799 |
|
800 |
-
#:
|
801 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:726
|
802 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:726
|
803 |
msgid "Future"
|
804 |
msgstr "شاخص"
|
805 |
|
806 |
-
#:
|
807 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:727
|
808 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:727
|
809 |
msgid "Private"
|
810 |
msgstr "خصوصی"
|
811 |
|
812 |
-
#:
|
813 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:728
|
814 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:728
|
815 |
msgid "Revision"
|
816 |
msgstr "بازنگری"
|
817 |
|
818 |
-
#:
|
819 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:729
|
820 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:729
|
821 |
msgid "Trash"
|
822 |
msgstr "زباله دان"
|
823 |
|
824 |
-
#:
|
825 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:742
|
826 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:742
|
827 |
msgid "Super Admin"
|
828 |
msgstr "مدیرکل"
|
829 |
|
830 |
-
#:
|
831 |
-
#:
|
832 |
-
#:
|
833 |
-
#:
|
834 |
-
#:
|
835 |
-
#:
|
836 |
-
#:
|
837 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:298
|
838 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:601
|
839 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:625
|
840 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:276
|
841 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:757
|
842 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:778
|
843 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_group.php:785
|
844 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:186
|
845 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:170
|
846 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:109
|
847 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:274
|
848 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:298
|
849 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:601
|
850 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:625
|
851 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:276
|
852 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:757
|
853 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:778
|
854 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_group.php:785
|
855 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:186
|
856 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:170
|
857 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:109
|
858 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:274
|
859 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:298
|
860 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:601
|
861 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:625
|
862 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:276
|
863 |
msgid "All"
|
864 |
msgstr "همه"
|
865 |
|
866 |
-
#:
|
867 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:147
|
868 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:147
|
869 |
msgid "Title"
|
870 |
msgstr "عنوان"
|
871 |
|
872 |
-
#:
|
873 |
-
#:
|
874 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:216
|
875 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:253
|
876 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:216
|
877 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:253
|
878 |
msgid "Changelog"
|
879 |
msgstr "تغییرات"
|
880 |
|
881 |
-
#:
|
882 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:217
|
883 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:217
|
884 |
msgid "See what's new in"
|
885 |
-
msgstr "
|
886 |
|
887 |
-
#:
|
888 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:217
|
889 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:217
|
890 |
msgid "version"
|
891 |
msgstr "نسخه"
|
892 |
|
893 |
-
#:
|
894 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:219
|
895 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:219
|
896 |
msgid "Resources"
|
897 |
msgstr "منابع"
|
898 |
|
899 |
-
#:
|
900 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:221
|
901 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:221
|
902 |
msgid "Getting Started"
|
903 |
-
msgstr "شروع"
|
904 |
|
905 |
-
#:
|
906 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:222
|
907 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:222
|
908 |
msgid "Field Types"
|
909 |
msgstr "انواع زمینه"
|
910 |
|
911 |
-
#:
|
912 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:223
|
913 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:223
|
914 |
msgid "Functions"
|
915 |
msgstr "توابع"
|
916 |
|
917 |
-
#:
|
918 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:224
|
919 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:224
|
920 |
msgid "Actions"
|
921 |
-
msgstr "
|
922 |
-
|
923 |
-
#:
|
924 |
-
#:
|
925 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:225
|
926 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:644
|
927 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:225
|
928 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:644
|
929 |
msgid "Filters"
|
930 |
msgstr "فیلترها"
|
931 |
|
932 |
-
#:
|
933 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:226
|
934 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:226
|
935 |
msgid "'How to' guides"
|
936 |
-
msgstr "راهنماهای کوتاه (نمونه کدها برای کدنویسی
|
937 |
|
938 |
-
#:
|
939 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:227
|
940 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:227
|
941 |
msgid "Tutorials"
|
942 |
msgstr "آموزش ها"
|
943 |
|
944 |
-
#:
|
945 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:232
|
946 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:232
|
947 |
msgid "Created by"
|
948 |
-
msgstr "
|
949 |
|
950 |
-
#:
|
951 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:244
|
952 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:244
|
953 |
msgid "Welcome to Advanced Custom Fields"
|
954 |
msgstr "به افزونه زمینه های دلخواه پیشرفته خوش آمدید!"
|
955 |
|
956 |
-
#:
|
957 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:245
|
958 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:245
|
959 |
msgid "Thank you for updating to the latest version!"
|
960 |
-
msgstr "از شما برای بروزرسانی به آخرین نسخه
|
961 |
|
962 |
-
#:
|
963 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:245
|
964 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:245
|
965 |
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
966 |
msgstr ""
|
967 |
-
"
|
968 |
-
"
|
969 |
-
"شده است، دوست داشته باشید."
|
970 |
|
971 |
-
#:
|
972 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:252
|
973 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:252
|
974 |
msgid "What’s New"
|
975 |
msgstr "چه چیزی جدید است؟"
|
976 |
|
977 |
-
#:
|
978 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:255
|
979 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:255
|
980 |
msgid "Download Add-ons"
|
981 |
-
msgstr "
|
982 |
|
983 |
-
#:
|
984 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:309
|
985 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:309
|
986 |
msgid "Activation codes have grown into plugins!"
|
987 |
msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
|
988 |
|
989 |
-
#:
|
990 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:310
|
991 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:310
|
992 |
msgid ""
|
993 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
994 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
995 |
"each Add-on will continue to receive updates in the usual way."
|
996 |
msgstr ""
|
997 |
-
"افزودنی ها
|
998 |
-
"افزونه ها در مخزن وردپرس پشتیبانی نخواهند
|
999 |
-
"
|
1000 |
|
1001 |
-
#:
|
1002 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:316
|
1003 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:316
|
1004 |
msgid "All previous Add-ons have been successfully installed"
|
1005 |
-
msgstr "تمام افزونه های قبلی با موفقیت نصب شده
|
1006 |
|
1007 |
-
#:
|
1008 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:320
|
1009 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:320
|
1010 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
1011 |
-
msgstr "این سایت از افزودنی های
|
1012 |
|
1013 |
-
#:
|
1014 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:320
|
1015 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:320
|
1016 |
msgid "Download your activated Add-ons"
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
-
#:
|
1020 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:325
|
1021 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:325
|
1022 |
msgid ""
|
1023 |
"This website does not use premium Add-ons and will not be affected by this "
|
1024 |
"change."
|
1025 |
msgstr ""
|
1026 |
"این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
|
1027 |
-
"نخواهد
|
1028 |
|
1029 |
-
#:
|
1030 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:335
|
1031 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:335
|
1032 |
msgid "Easier Development"
|
1033 |
msgstr "توسعه آسانتر"
|
1034 |
|
1035 |
-
#:
|
1036 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:337
|
1037 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:337
|
1038 |
msgid "New Field Types"
|
1039 |
msgstr "انواع زمینه جدید"
|
1040 |
|
1041 |
-
#:
|
1042 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:339
|
1043 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:339
|
1044 |
msgid "Taxonomy Field"
|
1045 |
msgstr "زمینه طبقه بندی"
|
1046 |
|
1047 |
-
#:
|
1048 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:340
|
1049 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:340
|
1050 |
msgid "User Field"
|
1051 |
msgstr "زمینه کاربر"
|
1052 |
|
1053 |
-
#:
|
1054 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:341
|
1055 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:341
|
1056 |
msgid "Email Field"
|
1057 |
msgstr "زمینه پست الکترونیکی"
|
1058 |
|
1059 |
-
#:
|
1060 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:342
|
1061 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:342
|
1062 |
msgid "Password Field"
|
1063 |
msgstr "زمینه رمزعبور"
|
1064 |
|
1065 |
-
#:
|
1066 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:344
|
1067 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:344
|
1068 |
msgid "Custom Field Types"
|
1069 |
msgstr "انواع زمینه دلخواه"
|
1070 |
|
1071 |
-
#:
|
1072 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:345
|
1073 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:345
|
1074 |
msgid ""
|
1075 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
1076 |
"field types are not compatible with version 4."
|
1077 |
msgstr ""
|
1078 |
-
"
|
1079 |
-
"نسخه 4 سازگار نیستند."
|
1080 |
|
1081 |
-
#:
|
1082 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:346
|
1083 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:346
|
1084 |
msgid "Migrating your field types is easy, please"
|
1085 |
-
msgstr ""
|
1086 |
-
"مهاجرت انواع زمینه آسان است. پس لطفا افزونه خود را بروزرسانی کنید. برای کسب "
|
1087 |
-
"اطلاعات بیشتر"
|
1088 |
|
1089 |
-
#:
|
1090 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:346
|
1091 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:346
|
1092 |
msgid "follow this tutorial"
|
1093 |
-
msgstr "این آموزش"
|
1094 |
|
1095 |
-
#:
|
1096 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:346
|
1097 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:346
|
1098 |
msgid "to learn more."
|
1099 |
-
msgstr "
|
1100 |
|
1101 |
-
#:
|
1102 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:348
|
1103 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:348
|
1104 |
msgid "Actions & Filters"
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
-
#:
|
1108 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:349
|
1109 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:349
|
1110 |
msgid ""
|
1111 |
"All actions & filters have received a major facelift to make customizing ACF "
|
1112 |
"even easier! Please"
|
1113 |
msgstr ""
|
1114 |
-
"همه
|
1115 |
-
"
|
1116 |
-
"نام گذاری بروزشده"
|
1117 |
|
1118 |
-
#:
|
1119 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:349
|
1120 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:349
|
1121 |
msgid "read this guide"
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
-
#:
|
1125 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:349
|
1126 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:349
|
1127 |
msgid "to find the updated naming convention."
|
1128 |
-
msgstr "را
|
1129 |
|
1130 |
-
#:
|
1131 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:351
|
1132 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:351
|
1133 |
msgid "Preview draft is now working!"
|
1134 |
-
msgstr "پیش نمایش پیش
|
1135 |
|
1136 |
-
#:
|
1137 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:352
|
1138 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:352
|
1139 |
msgid "This bug has been squashed along with many other little critters!"
|
1140 |
msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!"
|
1141 |
|
1142 |
-
#:
|
1143 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:352
|
1144 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:352
|
1145 |
msgid "See the full changelog"
|
1146 |
msgstr "مشاهده تغییرات کامل"
|
1147 |
|
1148 |
-
#:
|
1149 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:356
|
1150 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:356
|
1151 |
msgid "Important"
|
1152 |
msgstr "مهم"
|
1153 |
|
1154 |
-
#:
|
1155 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:358
|
1156 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:358
|
1157 |
msgid "Database Changes"
|
1158 |
msgstr "تغییرات پایگاه داده"
|
1159 |
|
1160 |
-
#:
|
1161 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:359
|
1162 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:359
|
1163 |
msgid ""
|
1164 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
1165 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
@@ -1168,72 +746,52 @@ msgstr ""
|
|
1168 |
"<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
|
1169 |
"این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
|
1170 |
|
1171 |
-
#:
|
1172 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:361
|
1173 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:361
|
1174 |
msgid "Potential Issues"
|
1175 |
msgstr "مسائل بالقوه"
|
1176 |
|
1177 |
-
#:
|
1178 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:362
|
1179 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:362
|
1180 |
msgid ""
|
1181 |
"Do to the sizable changes surounding Add-ons, field types and action/"
|
1182 |
"filters, your website may not operate correctly. It is important that you "
|
1183 |
"read the full"
|
1184 |
msgstr ""
|
1185 |
-
"با
|
1186 |
-
"سایت شما به درستی عمل نکند.
|
1187 |
|
1188 |
-
#:
|
1189 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:362
|
1190 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:362
|
1191 |
msgid "Migrating from v3 to v4"
|
1192 |
-
msgstr "مهاجرت از نسخه 3 به نسخه 4"
|
1193 |
|
1194 |
-
#:
|
1195 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:362
|
1196 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:362
|
1197 |
msgid "guide to view the full list of changes."
|
1198 |
msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات"
|
1199 |
|
1200 |
-
#:
|
1201 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:365
|
1202 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:365
|
1203 |
msgid "Really Important!"
|
1204 |
msgstr "واقعا مهم!"
|
1205 |
|
1206 |
-
#:
|
1207 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:365
|
1208 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:365
|
1209 |
msgid ""
|
1210 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
1211 |
"please roll back to the latest"
|
1212 |
msgstr ""
|
1213 |
"اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
|
1214 |
-
"تغییرات بروزرسانی کردید، لطفا به
|
1215 |
|
1216 |
-
#:
|
1217 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:365
|
1218 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:365
|
1219 |
msgid "version 3"
|
1220 |
msgstr "نسخه 3"
|
1221 |
|
1222 |
-
#:
|
1223 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:365
|
1224 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:365
|
1225 |
msgid "of this plugin."
|
1226 |
msgstr "از این افزونه."
|
1227 |
|
1228 |
-
#:
|
1229 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:370
|
1230 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:370
|
1231 |
msgid "Thank You"
|
1232 |
msgstr "از شما متشکرم"
|
1233 |
|
1234 |
-
#:
|
1235 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:371
|
1236 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:371
|
1237 |
msgid ""
|
1238 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
1239 |
"4 beta and for all the support I have received."
|
@@ -1242,1792 +800,1016 @@ msgstr ""
|
|
1242 |
"کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
|
1243 |
"شما متشکرم."
|
1244 |
|
1245 |
-
#:
|
1246 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:372
|
1247 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:372
|
1248 |
msgid "Without you all, this release would not have been possible!"
|
1249 |
-
msgstr ""
|
1250 |
-
"بدون همه شما فارسی سازی و انتشار این نسخه امکان پذیر نبود! با تشکر ((قائم "
|
1251 |
-
"امیدی)) و ((Elliot Condon))"
|
1252 |
|
1253 |
-
#:
|
1254 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:376
|
1255 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:376
|
1256 |
msgid "Changelog for"
|
1257 |
msgstr "تغییرات برای"
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:393
|
1261 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:393
|
1262 |
msgid "Learn more"
|
1263 |
msgstr "اطلاعات بیشتر"
|
1264 |
|
1265 |
-
#:
|
1266 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:399
|
1267 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:399
|
1268 |
msgid "Overview"
|
1269 |
msgstr "بازنگری"
|
1270 |
|
1271 |
-
#:
|
1272 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:401
|
1273 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:401
|
1274 |
msgid ""
|
1275 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
1276 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
1277 |
"need to be individually downloaded, installed and updated."
|
1278 |
msgstr ""
|
1279 |
-
"پیش از این، همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از
|
1280 |
-
"افزودنی
|
1281 |
-
"
|
1282 |
-
|
1283 |
-
|
1284 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:403
|
1285 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:403
|
1286 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:403
|
1287 |
msgid ""
|
1288 |
"This page will assist you in downloading and installing each available Add-"
|
1289 |
"on."
|
1290 |
msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
|
1291 |
|
1292 |
-
#:
|
1293 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:405
|
1294 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:405
|
1295 |
msgid "Available Add-ons"
|
1296 |
msgstr "افزودنی های موجود"
|
1297 |
|
1298 |
-
#:
|
1299 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:407
|
1300 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:407
|
1301 |
msgid "The following Add-ons have been detected as activated on this website."
|
1302 |
-
msgstr "افزودنی های زیر
|
1303 |
-
|
1304 |
-
#:
|
1305 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:109
|
1306 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:420
|
1307 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:109
|
1308 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:420
|
1309 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:109
|
1310 |
msgid "Name"
|
1311 |
msgstr "نام"
|
1312 |
|
1313 |
-
#:
|
1314 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:421
|
1315 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:421
|
1316 |
msgid "Activation Code"
|
1317 |
msgstr "کد فعالسازی"
|
1318 |
|
1319 |
-
#:
|
1320 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:453
|
1321 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:453
|
1322 |
msgid "Flexible Content"
|
1323 |
msgstr "محتوای انعطاف پذیر"
|
1324 |
|
1325 |
-
#:
|
1326 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:463
|
1327 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:463
|
1328 |
msgid "Installation"
|
1329 |
msgstr "نصب"
|
1330 |
|
1331 |
-
#:
|
1332 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:465
|
1333 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:465
|
1334 |
msgid "For each Add-on available, please perform the following:"
|
1335 |
msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:"
|
1336 |
|
1337 |
-
#:
|
1338 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:467
|
1339 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:467
|
1340 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
1341 |
-
msgstr "
|
1342 |
|
1343 |
-
#:
|
1344 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:468
|
1345 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:468
|
1346 |
msgid "Navigate to"
|
1347 |
-
msgstr "
|
1348 |
|
1349 |
-
#:
|
1350 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:468
|
1351 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:468
|
1352 |
msgid "Plugins > Add New > Upload"
|
1353 |
msgstr "افزونه ها > افزودن > بارگذاری"
|
1354 |
|
1355 |
-
#:
|
1356 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:469
|
1357 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:469
|
1358 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
1359 |
msgstr ""
|
1360 |
-
"از بارگذار برای
|
1361 |
-
"
|
1362 |
|
1363 |
-
#:
|
1364 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:470
|
1365 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:470
|
1366 |
msgid ""
|
1367 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
1368 |
"link"
|
1369 |
msgstr ""
|
1370 |
-
"هنگامی که یک افزونه دریافت و نصب شده است، روی لینک ((
|
1371 |
-
"کلیک
|
1372 |
|
1373 |
-
#:
|
1374 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:471
|
1375 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:471
|
1376 |
msgid "The Add-on is now installed and activated!"
|
1377 |
msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
|
1378 |
|
1379 |
-
#:
|
1380 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:485
|
1381 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:485
|
1382 |
msgid "Awesome. Let's get to work"
|
1383 |
-
msgstr "شگفت انگیزه، نه؟ پس بیا
|
1384 |
|
1385 |
-
#:
|
1386 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/input.php:63
|
1387 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/input.php:63
|
1388 |
msgid "Expand Details"
|
1389 |
-
msgstr "
|
1390 |
|
1391 |
-
#:
|
1392 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/input.php:64
|
1393 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/input.php:64
|
1394 |
msgid "Collapse Details"
|
1395 |
-
msgstr "
|
1396 |
|
1397 |
-
#:
|
1398 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/input.php:67
|
1399 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/input.php:67
|
1400 |
msgid "Validation Failed. One or more fields below are required."
|
1401 |
-
msgstr ""
|
1402 |
-
"اعتبارسنجی شکست خورد. از زمینه های زیر یک یا چند زمینه مورد نیاز هستند."
|
1403 |
|
1404 |
-
#:
|
1405 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/upgrade.php:74
|
1406 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/upgrade.php:74
|
1407 |
msgid "Upgrade"
|
1408 |
msgstr "بروزرسانی"
|
1409 |
|
1410 |
-
#:
|
1411 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/upgrade.php:596
|
1412 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/upgrade.php:596
|
1413 |
msgid "Modifying field group options 'show on page'"
|
1414 |
-
msgstr "گزینه های
|
1415 |
|
1416 |
-
#:
|
1417 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/upgrade.php:650
|
1418 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/upgrade.php:650
|
1419 |
msgid "Modifying field option 'taxonomy'"
|
1420 |
-
msgstr "گزینه
|
1421 |
|
1422 |
-
#:
|
1423 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/upgrade.php:747
|
1424 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/upgrade.php:747
|
1425 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
1426 |
-
msgstr "
|
1427 |
-
|
1428 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/_base.php:124
|
1429 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:74
|
1430 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/_base.php:124
|
1431 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:74
|
1432 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/_base.php:124
|
1433 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:74
|
1434 |
-
msgid "Basic"
|
1435 |
-
msgstr "پایه"
|
1436 |
|
1437 |
-
#:
|
1438 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:323
|
1439 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:19
|
1440 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:323
|
1441 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:19
|
1442 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:323
|
1443 |
msgid "Checkbox"
|
1444 |
-
msgstr "جعبه انتخاب"
|
1445 |
-
|
1446 |
-
#:
|
1447 |
-
#:
|
1448 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:19
|
1449 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/true_false.php:20
|
1450 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:20
|
1451 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:19
|
1452 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:19
|
1453 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/true_false.php:20
|
1454 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:20
|
1455 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:19
|
1456 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:19
|
1457 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/true_false.php:20
|
1458 |
msgid "Choice"
|
1459 |
-
msgstr "
|
1460 |
-
|
1461 |
-
#:
|
1462 |
-
#:
|
1463 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:177
|
1464 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:146
|
1465 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:147
|
1466 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:177
|
1467 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:146
|
1468 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:147
|
1469 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:177
|
1470 |
msgid "Choices"
|
1471 |
-
msgstr "
|
1472 |
-
|
1473 |
-
#:
|
1474 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:178
|
1475 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:147
|
1476 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:178
|
1477 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:147
|
1478 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:178
|
1479 |
msgid "Enter each choice on a new line."
|
1480 |
-
msgstr "هر
|
1481 |
-
|
1482 |
-
#:
|
1483 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:179
|
1484 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:148
|
1485 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:179
|
1486 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:148
|
1487 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:179
|
1488 |
msgid "For more control, you may specify both a value and label like this:"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
|
1492 |
-
#:
|
1493 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:153
|
1494 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:180
|
1495 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:149
|
1496 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:153
|
1497 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:180
|
1498 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:149
|
1499 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:153
|
1500 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:180
|
1501 |
msgid "red : Red"
|
1502 |
-
msgstr "
|
1503 |
-
|
1504 |
-
#:
|
1505 |
-
#:
|
1506 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:180
|
1507 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:149
|
1508 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:154
|
1509 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:180
|
1510 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:149
|
1511 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:154
|
1512 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:180
|
1513 |
msgid "blue : Blue"
|
1514 |
-
msgstr "
|
1515 |
-
|
1516 |
-
#:
|
1517 |
-
#:
|
1518 |
-
#:
|
1519 |
-
#:
|
1520 |
-
#:
|
1521 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:197
|
1522 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:116
|
1523 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:103
|
1524 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/true_false.php:94
|
1525 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:277
|
1526 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:166
|
1527 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/color_picker.php:89
|
1528 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:106
|
1529 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:116
|
1530 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:196
|
1531 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:197
|
1532 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:116
|
1533 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:103
|
1534 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/true_false.php:94
|
1535 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:277
|
1536 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:166
|
1537 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/color_picker.php:89
|
1538 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:106
|
1539 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:116
|
1540 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:196
|
1541 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:197
|
1542 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:116
|
1543 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:103
|
1544 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/true_false.php:94
|
1545 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:277
|
1546 |
msgid "Default Value"
|
1547 |
msgstr "مقدار پیش فرض"
|
1548 |
|
1549 |
-
#:
|
1550 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:198
|
1551 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:167
|
1552 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:198
|
1553 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:167
|
1554 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:198
|
1555 |
msgid "Enter each default value on a new line"
|
1556 |
-
msgstr "هر مقدار پیش فرض را در یک خط جدید وارد
|
1557 |
-
|
1558 |
-
#:
|
1559 |
-
#:
|
1560 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:212
|
1561 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:20
|
1562 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:183
|
1563 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/message.php:20
|
1564 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:212
|
1565 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:20
|
1566 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:183
|
1567 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/message.php:20
|
1568 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:212
|
1569 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:20
|
1570 |
msgid "Layout"
|
1571 |
msgstr "چیدمان"
|
1572 |
|
1573 |
-
#:
|
1574 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:223
|
1575 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:194
|
1576 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:223
|
1577 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:194
|
1578 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:223
|
1579 |
msgid "Vertical"
|
1580 |
msgstr "عمودی"
|
1581 |
|
1582 |
-
#:
|
1583 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:224
|
1584 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/checkbox.php:195
|
1585 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:224
|
1586 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/checkbox.php:195
|
1587 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:224
|
1588 |
msgid "Horizontal"
|
1589 |
msgstr "افقی"
|
1590 |
|
1591 |
-
#:
|
1592 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/color_picker.php:19
|
1593 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/color_picker.php:19
|
1594 |
msgid "Color Picker"
|
1595 |
-
msgstr "انتخاب
|
1596 |
-
|
1597 |
-
#:
|
1598 |
-
#:
|
1599 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:19
|
1600 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/color_picker.php:20
|
1601 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:20
|
1602 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:19
|
1603 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/color_picker.php:20
|
1604 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:20
|
1605 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:19
|
1606 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:20
|
1607 |
msgid "jQuery"
|
1608 |
msgstr "جی کوئری"
|
1609 |
|
1610 |
-
#:
|
1611 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:19
|
1612 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:19
|
1613 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:19
|
1614 |
-
msgid "Date Picker"
|
1615 |
-
msgstr "انتخاب کننده تاریخ"
|
1616 |
-
|
1617 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:55
|
1618 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:55
|
1619 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:55
|
1620 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:55
|
1621 |
-
msgid "Done"
|
1622 |
-
msgstr "انجام شده"
|
1623 |
-
|
1624 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:56
|
1625 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:56
|
1626 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:56
|
1627 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:56
|
1628 |
-
msgid "Today"
|
1629 |
-
msgstr "امروز"
|
1630 |
-
|
1631 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:59
|
1632 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:59
|
1633 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:59
|
1634 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:59
|
1635 |
-
msgid "Show a different month"
|
1636 |
-
msgstr "نمایش یک ماه مختلف"
|
1637 |
-
|
1638 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:126
|
1639 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:126
|
1640 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:126
|
1641 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:126
|
1642 |
-
msgid "Save format"
|
1643 |
-
msgstr "فرمت ذخیره"
|
1644 |
-
|
1645 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:127
|
1646 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:127
|
1647 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:127
|
1648 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:127
|
1649 |
-
msgid ""
|
1650 |
-
"This format will determin the value saved to the database and returned via "
|
1651 |
-
"the API"
|
1652 |
-
msgstr ""
|
1653 |
-
"این فرمت مقدار ذخیره شده را برای پایگاه داده تعیین خواهد کرد و از طریق رابط "
|
1654 |
-
"برنامه نویسی (API) برمی گردد."
|
1655 |
-
|
1656 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:128
|
1657 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:128
|
1658 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:128
|
1659 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:128
|
1660 |
-
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1661 |
-
msgstr "(روز/ماه/سال) بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر:"
|
1662 |
-
|
1663 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:128
|
1664 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:144
|
1665 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:128
|
1666 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:144
|
1667 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:128
|
1668 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:144
|
1669 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:128
|
1670 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:144
|
1671 |
-
msgid "jQuery date formats"
|
1672 |
-
msgstr "قالب های تاریخ جی کوئری"
|
1673 |
-
|
1674 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:142
|
1675 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:142
|
1676 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:142
|
1677 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:142
|
1678 |
-
msgid "Display format"
|
1679 |
-
msgstr "فرمت نمایش"
|
1680 |
-
|
1681 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:143
|
1682 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:143
|
1683 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:143
|
1684 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:143
|
1685 |
-
msgid "This format will be seen by the user when entering a value"
|
1686 |
-
msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد."
|
1687 |
-
|
1688 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:144
|
1689 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:144
|
1690 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:144
|
1691 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:144
|
1692 |
-
msgid ""
|
1693 |
-
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1694 |
-
"about"
|
1695 |
-
msgstr ""
|
1696 |
-
"(روز/ماه/سال) و (ماه/روز/سال) پر استفاده ترین قالب های نمایش تاریخ می باشند. "
|
1697 |
-
"اطلاعات بیشتر:"
|
1698 |
-
|
1699 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:158
|
1700 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/date_picker/date_picker.php:158
|
1701 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/date_picker/date_picker.php:158
|
1702 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields\date_picker/date_picker.php:158
|
1703 |
-
msgid "Week Starts On"
|
1704 |
-
msgstr "هفته شروع می شود در"
|
1705 |
-
|
1706 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/dummy.php:19
|
1707 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/dummy.php:19
|
1708 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/dummy.php:19
|
1709 |
msgid "Dummy"
|
1710 |
msgstr "ساختگی"
|
1711 |
|
1712 |
-
#:
|
1713 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:19
|
1714 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:19
|
1715 |
msgid "Email"
|
1716 |
msgstr "پست الکترونیکی"
|
1717 |
|
1718 |
-
#:
|
1719 |
-
#:
|
1720 |
-
#:
|
1721 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:104
|
1722 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:278
|
1723 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:107
|
1724 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:117
|
1725 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:117
|
1726 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:104
|
1727 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:278
|
1728 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:107
|
1729 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:117
|
1730 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:117
|
1731 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:104
|
1732 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:278
|
1733 |
msgid "Appears when creating a new post"
|
1734 |
-
msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می
|
1735 |
-
|
1736 |
-
#:
|
1737 |
-
#:
|
1738 |
-
#:
|
1739 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:131
|
1740 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:118
|
1741 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:123
|
1742 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:133
|
1743 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:105
|
1744 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:131
|
1745 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:118
|
1746 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:123
|
1747 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:133
|
1748 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:105
|
1749 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:131
|
1750 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:118
|
1751 |
msgid "Placeholder Text"
|
1752 |
msgstr "نگهدارنده مکان متن"
|
1753 |
|
1754 |
-
#:
|
1755 |
-
#:
|
1756 |
-
#:
|
1757 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:132
|
1758 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:119
|
1759 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:124
|
1760 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:134
|
1761 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:106
|
1762 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:132
|
1763 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:119
|
1764 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:124
|
1765 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:134
|
1766 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:106
|
1767 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:132
|
1768 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:119
|
1769 |
msgid "Appears within the input"
|
1770 |
-
msgstr "در داخل ورودی نمایش داده می
|
1771 |
-
|
1772 |
-
#:
|
1773 |
-
#:
|
1774 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:120
|
1775 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:146
|
1776 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:138
|
1777 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:148
|
1778 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:120
|
1779 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:146
|
1780 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:138
|
1781 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:148
|
1782 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:120
|
1783 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:146
|
1784 |
msgid "Prepend"
|
1785 |
-
msgstr "
|
1786 |
-
|
1787 |
-
#:
|
1788 |
-
#:
|
1789 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:121
|
1790 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:147
|
1791 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:139
|
1792 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:149
|
1793 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:121
|
1794 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:147
|
1795 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:139
|
1796 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:149
|
1797 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:121
|
1798 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:147
|
1799 |
msgid "Appears before the input"
|
1800 |
-
msgstr "قبل از ورودی نمایش داده می
|
1801 |
-
|
1802 |
-
#:
|
1803 |
-
#:
|
1804 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:135
|
1805 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:161
|
1806 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:153
|
1807 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:163
|
1808 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:135
|
1809 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:161
|
1810 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:153
|
1811 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:163
|
1812 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:135
|
1813 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:161
|
1814 |
msgid "Append"
|
1815 |
-
msgstr "
|
1816 |
-
|
1817 |
-
#:
|
1818 |
-
#:
|
1819 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:136
|
1820 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:162
|
1821 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/email.php:154
|
1822 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:164
|
1823 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:136
|
1824 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:162
|
1825 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/email.php:154
|
1826 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:164
|
1827 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:136
|
1828 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:162
|
1829 |
msgid "Appears after the input"
|
1830 |
-
msgstr "بعد از ورودی نمایش داده می
|
1831 |
|
1832 |
-
#:
|
1833 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:19
|
1834 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:19
|
1835 |
msgid "File"
|
1836 |
msgstr "پرونده"
|
1837 |
|
1838 |
-
#:
|
1839 |
-
#:
|
1840 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:37
|
1841 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:20
|
1842 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:20
|
1843 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:37
|
1844 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:20
|
1845 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:20
|
1846 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:37
|
1847 |
msgid "Content"
|
1848 |
msgstr "محتوا"
|
1849 |
|
1850 |
-
#:
|
1851 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:26
|
1852 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:26
|
1853 |
msgid "Select File"
|
1854 |
msgstr "انتخاب پرونده"
|
1855 |
|
1856 |
-
#:
|
1857 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:27
|
1858 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:27
|
1859 |
msgid "Edit File"
|
1860 |
msgstr "ویرایش پرونده"
|
1861 |
|
1862 |
-
#:
|
1863 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:28
|
1864 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:28
|
1865 |
msgid "Update File"
|
1866 |
msgstr "بروزرسانی پرونده"
|
1867 |
|
1868 |
-
#:
|
1869 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:30
|
1870 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:29
|
1871 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:30
|
1872 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:29
|
1873 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:30
|
1874 |
msgid "uploaded to this post"
|
1875 |
msgstr "بارگذاری شده در این نوشته"
|
1876 |
|
1877 |
-
#:
|
1878 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:113
|
1879 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:113
|
1880 |
msgid "Size"
|
1881 |
msgstr "اندازه"
|
1882 |
|
1883 |
-
#:
|
1884 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:123
|
1885 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:123
|
1886 |
msgid "No File Selected"
|
1887 |
-
msgstr "هیچ پرونده ای انتخاب نشده
|
1888 |
|
1889 |
-
#:
|
1890 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:123
|
1891 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:123
|
1892 |
msgid "Add File"
|
1893 |
msgstr "افزودن پرونده"
|
1894 |
|
1895 |
-
#:
|
1896 |
-
#:
|
1897 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:371
|
1898 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:153
|
1899 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:118
|
1900 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:371
|
1901 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:153
|
1902 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:118
|
1903 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:371
|
1904 |
msgid "Return Value"
|
1905 |
msgstr "مقدار بازگشت"
|
1906 |
|
1907 |
-
#:
|
1908 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:164
|
1909 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:164
|
1910 |
msgid "File Object"
|
1911 |
-
msgstr "
|
1912 |
|
1913 |
-
#:
|
1914 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:165
|
1915 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:165
|
1916 |
msgid "File URL"
|
1917 |
msgstr "آدرس پرونده"
|
1918 |
|
1919 |
-
#:
|
1920 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:166
|
1921 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:166
|
1922 |
msgid "File ID"
|
1923 |
-
msgstr "شناسه پرونده"
|
1924 |
-
|
1925 |
-
#:
|
1926 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:158
|
1927 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:175
|
1928 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:158
|
1929 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:175
|
1930 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:158
|
1931 |
msgid "Library"
|
1932 |
msgstr "کتابخانه"
|
1933 |
|
1934 |
-
#:
|
1935 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:171
|
1936 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/file.php:187
|
1937 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:171
|
1938 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/file.php:187
|
1939 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:171
|
1940 |
msgid "Uploaded to post"
|
1941 |
msgstr "بارگذاری شده در نوشته"
|
1942 |
|
1943 |
-
#:
|
1944 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:18
|
1945 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:18
|
1946 |
msgid "Google Map"
|
1947 |
msgstr "نقشه گوگل"
|
1948 |
|
1949 |
-
#:
|
1950 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:33
|
1951 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:33
|
1952 |
msgid "Locating"
|
1953 |
msgstr "مکان یابی"
|
1954 |
|
1955 |
-
#:
|
1956 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:34
|
1957 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:34
|
1958 |
msgid "Sorry, this browser does not support geolocation"
|
1959 |
-
msgstr "با عرض پوزش، این مرورگر از
|
1960 |
|
1961 |
-
#:
|
1962 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:120
|
1963 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:120
|
1964 |
msgid "Clear location"
|
1965 |
-
msgstr "
|
1966 |
|
1967 |
-
#:
|
1968 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:125
|
1969 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:125
|
1970 |
msgid "Find current location"
|
1971 |
msgstr "پیدا کردن مکان فعلی"
|
1972 |
|
1973 |
-
#:
|
1974 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:126
|
1975 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:126
|
1976 |
msgid "Search for address..."
|
1977 |
msgstr "جستجو برای آدرس . . ."
|
1978 |
|
1979 |
-
#:
|
1980 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:162
|
1981 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:162
|
1982 |
msgid "Center"
|
1983 |
msgstr "مرکز"
|
1984 |
|
1985 |
-
#:
|
1986 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:163
|
1987 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:163
|
1988 |
msgid "Center the initial map"
|
1989 |
-
msgstr "
|
1990 |
|
1991 |
-
#:
|
1992 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:199
|
1993 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:199
|
1994 |
msgid "Zoom"
|
1995 |
msgstr "بزرگنمایی"
|
1996 |
|
1997 |
-
#:
|
1998 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:200
|
1999 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:200
|
2000 |
msgid "Set the initial zoom level"
|
2001 |
-
msgstr "
|
2002 |
|
2003 |
-
#:
|
2004 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:217
|
2005 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:217
|
2006 |
msgid "Height"
|
2007 |
msgstr "ارتفاع"
|
2008 |
|
2009 |
-
#:
|
2010 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/google-map.php:218
|
2011 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/google-map.php:218
|
2012 |
msgid "Customise the map height"
|
2013 |
msgstr "سفارشی کردن ارتفاع نقشه"
|
2014 |
|
2015 |
-
#:
|
2016 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:19
|
2017 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:19
|
2018 |
msgid "Image"
|
2019 |
msgstr "تصویر"
|
2020 |
|
2021 |
-
#:
|
2022 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:27
|
2023 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:27
|
2024 |
msgid "Select Image"
|
2025 |
msgstr "انتخاب تصویر"
|
2026 |
|
2027 |
-
#:
|
2028 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:28
|
2029 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:28
|
2030 |
msgid "Edit Image"
|
2031 |
msgstr "ویرایش تصویر"
|
2032 |
|
2033 |
-
#:
|
2034 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:29
|
2035 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:29
|
2036 |
msgid "Update Image"
|
2037 |
msgstr "بروزرسانی تصویر"
|
2038 |
|
2039 |
-
#:
|
2040 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:83
|
2041 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:83
|
2042 |
msgid "Remove"
|
2043 |
-
msgstr "
|
2044 |
-
|
2045 |
-
#:
|
2046 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:108
|
2047 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:84
|
2048 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:108
|
2049 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:84
|
2050 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:108
|
2051 |
msgid "Edit"
|
2052 |
msgstr "ویرایش"
|
2053 |
|
2054 |
-
#:
|
2055 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:90
|
2056 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:90
|
2057 |
msgid "No image selected"
|
2058 |
-
msgstr "هیچ تصویری انتخاب نشده
|
2059 |
|
2060 |
-
#:
|
2061 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:90
|
2062 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:90
|
2063 |
msgid "Add Image"
|
2064 |
msgstr "افزودن تصویر"
|
2065 |
|
2066 |
-
#:
|
2067 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:576
|
2068 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:119
|
2069 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:576
|
2070 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:119
|
2071 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:576
|
2072 |
msgid "Specify the returned value on front end"
|
2073 |
-
msgstr "
|
2074 |
|
2075 |
-
#:
|
2076 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:129
|
2077 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:129
|
2078 |
msgid "Image Object"
|
2079 |
-
msgstr "
|
2080 |
|
2081 |
-
#:
|
2082 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:130
|
2083 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:130
|
2084 |
msgid "Image URL"
|
2085 |
msgstr "آدرس تصویر"
|
2086 |
|
2087 |
-
#:
|
2088 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:131
|
2089 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:131
|
2090 |
msgid "Image ID"
|
2091 |
-
msgstr "شناسه تصویر"
|
2092 |
|
2093 |
-
#:
|
2094 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:139
|
2095 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:139
|
2096 |
msgid "Preview Size"
|
2097 |
-
msgstr "
|
2098 |
|
2099 |
-
#:
|
2100 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:140
|
2101 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:140
|
2102 |
msgid "Shown when entering data"
|
2103 |
-
msgstr "هنگام وارد کردن داده ها نمایش داده
|
2104 |
|
2105 |
-
#:
|
2106 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/image.php:159
|
2107 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/image.php:159
|
2108 |
msgid "Limit the media library choice"
|
2109 |
-
msgstr "محدود کردن
|
2110 |
-
|
2111 |
-
#:
|
2112 |
-
#:
|
2113 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/true_false.php:79
|
2114 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/message.php:19
|
2115 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/message.php:70
|
2116 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/true_false.php:79
|
2117 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/message.php:19
|
2118 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/message.php:70
|
2119 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/true_false.php:79
|
2120 |
msgid "Message"
|
2121 |
msgstr "پیام"
|
2122 |
|
2123 |
-
#:
|
2124 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/message.php:71
|
2125 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/message.php:71
|
2126 |
msgid "Text & HTML entered here will appear inline with the fields"
|
2127 |
msgstr ""
|
2128 |
-
"متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد
|
2129 |
|
2130 |
-
#:
|
2131 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/message.php:72
|
2132 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/message.php:72
|
2133 |
msgid "Please note that all text will first be passed through the wp function "
|
2134 |
-
msgstr ""
|
2135 |
-
"لطفا توجه داشته باشید که برای اولین بار تمام متن را از طریق تابع وردپرس "
|
2136 |
-
"انتقال دهید."
|
2137 |
|
2138 |
-
#:
|
2139 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:19
|
2140 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:19
|
2141 |
msgid "Number"
|
2142 |
msgstr "شماره"
|
2143 |
|
2144 |
-
#:
|
2145 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:178
|
2146 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:178
|
2147 |
msgid "Minimum Value"
|
2148 |
msgstr "حداقل مقدار"
|
2149 |
|
2150 |
-
#:
|
2151 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:194
|
2152 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:194
|
2153 |
msgid "Maximum Value"
|
2154 |
msgstr "حداکثر مقدار"
|
2155 |
|
2156 |
-
#:
|
2157 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/number.php:210
|
2158 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/number.php:210
|
2159 |
msgid "Step Size"
|
2160 |
msgstr "اندازه مرحله"
|
2161 |
|
2162 |
-
#:
|
2163 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:18
|
2164 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:18
|
2165 |
msgid "Page Link"
|
2166 |
-
msgstr "پیوند
|
2167 |
-
|
2168 |
-
#:
|
2169 |
-
#:
|
2170 |
-
#:
|
2171 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:19
|
2172 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:19
|
2173 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:19
|
2174 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:19
|
2175 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:19
|
2176 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:19
|
2177 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:19
|
2178 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:19
|
2179 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:19
|
2180 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:19
|
2181 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:19
|
2182 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:19
|
2183 |
msgid "Relational"
|
2184 |
-
msgstr "
|
2185 |
|
2186 |
-
#:
|
2187 |
-
#:
|
2188 |
-
#:
|
2189 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:674
|
2190 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:75
|
2191 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:103
|
2192 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:268
|
2193 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:595
|
2194 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:674
|
2195 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:75
|
2196 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:103
|
2197 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:268
|
2198 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:595
|
2199 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:674
|
2200 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:75
|
2201 |
msgid "Post Type"
|
2202 |
msgstr "نوع نوشته"
|
2203 |
|
2204 |
-
#:
|
2205 |
-
#:
|
2206 |
-
#:
|
2207 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:337
|
2208 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:322
|
2209 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:127
|
2210 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:317
|
2211 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:214
|
2212 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:337
|
2213 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:322
|
2214 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:127
|
2215 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:317
|
2216 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:214
|
2217 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:337
|
2218 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:322
|
2219 |
msgid "Allow Null?"
|
2220 |
-
msgstr "آیا
|
2221 |
-
|
2222 |
-
#:
|
2223 |
-
#:
|
2224 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:233
|
2225 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/page_link.php:148
|
2226 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:338
|
2227 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:233
|
2228 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/page_link.php:148
|
2229 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:338
|
2230 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:233
|
2231 |
msgid "Select multiple values?"
|
2232 |
msgstr "آیا چندین مقدار انتخاب شوند؟"
|
2233 |
|
2234 |
-
#:
|
2235 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/password.php:19
|
2236 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/password.php:19
|
2237 |
msgid "Password"
|
2238 |
msgstr "رمزعبور"
|
2239 |
|
2240 |
-
#:
|
2241 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:18
|
2242 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:18
|
2243 |
msgid "Post Object"
|
2244 |
-
msgstr "
|
2245 |
-
|
2246 |
-
#:
|
2247 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:619
|
2248 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/post_object.php:292
|
2249 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:619
|
2250 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/post_object.php:292
|
2251 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:619
|
2252 |
msgid "Filter from Taxonomy"
|
2253 |
-
msgstr "فیلتر
|
2254 |
|
2255 |
-
#:
|
2256 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:18
|
2257 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:18
|
2258 |
msgid "Radio Button"
|
2259 |
msgstr "دکمه رادیویی"
|
2260 |
|
2261 |
-
#:
|
2262 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:91
|
2263 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:105
|
2264 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:91
|
2265 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:105
|
2266 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:91
|
2267 |
msgid "Other"
|
2268 |
msgstr "دیگر"
|
2269 |
|
2270 |
-
#:
|
2271 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:148
|
2272 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:148
|
2273 |
msgid "Enter your choices one per line"
|
2274 |
-
msgstr "
|
2275 |
|
2276 |
-
#:
|
2277 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:150
|
2278 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:150
|
2279 |
msgid "Red"
|
2280 |
msgstr "قرمز"
|
2281 |
|
2282 |
-
#:
|
2283 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:151
|
2284 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:151
|
2285 |
msgid "Blue"
|
2286 |
msgstr "آبی"
|
2287 |
|
2288 |
-
#:
|
2289 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:175
|
2290 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:175
|
2291 |
msgid "Add 'other' choice to allow for custom values"
|
2292 |
-
msgstr "افزودن گزینه
|
2293 |
|
2294 |
-
#:
|
2295 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/radio.php:187
|
2296 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/radio.php:187
|
2297 |
msgid "Save 'other' values to the field's choices"
|
2298 |
-
msgstr "ذخیره مقادیر دیگر
|
2299 |
|
2300 |
-
#:
|
2301 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:18
|
2302 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:18
|
2303 |
msgid "Relationship"
|
2304 |
msgstr "ارتباط"
|
2305 |
|
2306 |
-
#:
|
2307 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:29
|
2308 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:29
|
2309 |
msgid "Maximum values reached ( {max} values )"
|
2310 |
-
msgstr "مقادیر به حداکثر رسیده اند {
|
2311 |
|
2312 |
-
#:
|
2313 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:429
|
2314 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:429
|
2315 |
msgid "Search..."
|
2316 |
msgstr "جستجو . . ."
|
2317 |
|
2318 |
-
#:
|
2319 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:440
|
2320 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:440
|
2321 |
msgid "Filter by post type"
|
2322 |
-
msgstr "فیلتر
|
2323 |
|
2324 |
-
#:
|
2325 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:575
|
2326 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:575
|
2327 |
msgid "Return Format"
|
2328 |
msgstr "فرمت بازگشت"
|
2329 |
|
2330 |
-
#:
|
2331 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:586
|
2332 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:586
|
2333 |
msgid "Post Objects"
|
2334 |
-
msgstr "
|
2335 |
|
2336 |
-
#:
|
2337 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:587
|
2338 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:587
|
2339 |
msgid "Post IDs"
|
2340 |
-
msgstr "شناسه های نوشته"
|
2341 |
|
2342 |
-
#:
|
2343 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:653
|
2344 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:653
|
2345 |
msgid "Search"
|
2346 |
msgstr "جستجو"
|
2347 |
|
2348 |
-
#:
|
2349 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:654
|
2350 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:654
|
2351 |
msgid "Post Type Select"
|
2352 |
msgstr "انتخاب نوع نوشته"
|
2353 |
|
2354 |
-
#:
|
2355 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:662
|
2356 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:662
|
2357 |
msgid "Elements"
|
2358 |
msgstr "عناصر"
|
2359 |
|
2360 |
-
#:
|
2361 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:663
|
2362 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:663
|
2363 |
msgid "Selected elements will be displayed in each result"
|
2364 |
-
msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند
|
2365 |
-
|
2366 |
-
#:
|
2367 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:106
|
2368 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:672
|
2369 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:106
|
2370 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:672
|
2371 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:106
|
2372 |
msgid "Featured Image"
|
2373 |
msgstr "تصویر شاخص"
|
2374 |
|
2375 |
-
#:
|
2376 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:673
|
2377 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:673
|
2378 |
msgid "Post Title"
|
2379 |
msgstr "عنوان نوشته"
|
2380 |
|
2381 |
-
#:
|
2382 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/relationship.php:685
|
2383 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/relationship.php:685
|
2384 |
msgid "Maximum posts"
|
2385 |
-
msgstr "حداکثر نوشته ها"
|
2386 |
-
|
2387 |
-
#:
|
2388 |
-
#:
|
2389 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:328
|
2390 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:313
|
2391 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:18
|
2392 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/select.php:109
|
2393 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:328
|
2394 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:313
|
2395 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:18
|
2396 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/select.php:109
|
2397 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:328
|
2398 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:313
|
2399 |
msgid "Select"
|
2400 |
-
msgstr "انتخاب"
|
2401 |
|
2402 |
-
#:
|
2403 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:19
|
2404 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:19
|
2405 |
msgid "Tab"
|
2406 |
msgstr "تب"
|
2407 |
|
2408 |
-
#:
|
2409 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:68
|
2410 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:68
|
2411 |
msgid ""
|
2412 |
"Use \"Tab Fields\" to better organize your edit screen by grouping your "
|
2413 |
"fields together under separate tab headings."
|
2414 |
msgstr ""
|
2415 |
-
"
|
2416 |
-
"
|
2417 |
|
2418 |
-
#:
|
2419 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:69
|
2420 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:69
|
2421 |
msgid ""
|
2422 |
"All the fields following this \"tab field\" (or until another \"tab field\" "
|
2423 |
"is defined) will be grouped together."
|
2424 |
msgstr ""
|
2425 |
-
"همه زمینه های
|
2426 |
-
"
|
2427 |
|
2428 |
-
#:
|
2429 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/tab.php:70
|
2430 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/tab.php:70
|
2431 |
msgid "Use multiple tabs to divide your fields into sections."
|
2432 |
msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید."
|
2433 |
|
2434 |
-
#:
|
2435 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:278
|
2436 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:18
|
2437 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:278
|
2438 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:18
|
2439 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:278
|
2440 |
msgid "Taxonomy"
|
2441 |
msgstr "طبقه بندی"
|
2442 |
|
2443 |
-
#:
|
2444 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:231
|
2445 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:222
|
2446 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:231
|
2447 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:222
|
2448 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:231
|
2449 |
msgid "None"
|
2450 |
msgstr "هیچ"
|
2451 |
|
2452 |
-
#:
|
2453 |
-
#:
|
2454 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:77
|
2455 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:159
|
2456 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:312
|
2457 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:298
|
2458 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:77
|
2459 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:159
|
2460 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:312
|
2461 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:298
|
2462 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:77
|
2463 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:159
|
2464 |
msgid "Field Type"
|
2465 |
msgstr "نوع زمینه"
|
2466 |
|
2467 |
-
#:
|
2468 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:307
|
2469 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:322
|
2470 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:307
|
2471 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:322
|
2472 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:307
|
2473 |
msgid "Multiple Values"
|
2474 |
msgstr "چندین مقدار"
|
2475 |
|
2476 |
-
#:
|
2477 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:309
|
2478 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:324
|
2479 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:309
|
2480 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:324
|
2481 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:309
|
2482 |
msgid "Multi Select"
|
2483 |
msgstr "چندین انتخاب"
|
2484 |
|
2485 |
-
#:
|
2486 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:311
|
2487 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:326
|
2488 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:311
|
2489 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:326
|
2490 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:311
|
2491 |
msgid "Single Value"
|
2492 |
msgstr "تک مقدار"
|
2493 |
|
2494 |
-
#:
|
2495 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:327
|
2496 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:327
|
2497 |
msgid "Radio Buttons"
|
2498 |
msgstr "دکمه های رادیویی"
|
2499 |
|
2500 |
-
#:
|
2501 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:356
|
2502 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:356
|
2503 |
msgid "Load & Save Terms to Post"
|
2504 |
-
msgstr "
|
2505 |
|
2506 |
-
#:
|
2507 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:364
|
2508 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:364
|
2509 |
msgid ""
|
2510 |
"Load value based on the post's terms and update the post's terms on save"
|
2511 |
msgstr ""
|
2512 |
-
"
|
|
|
2513 |
|
2514 |
-
#:
|
2515 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:381
|
2516 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:381
|
2517 |
msgid "Term Object"
|
2518 |
-
msgstr "
|
2519 |
|
2520 |
-
#:
|
2521 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/taxonomy.php:382
|
2522 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/taxonomy.php:382
|
2523 |
msgid "Term ID"
|
2524 |
-
msgstr "شناسه
|
2525 |
|
2526 |
-
#:
|
2527 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:19
|
2528 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:19
|
2529 |
msgid "Text"
|
2530 |
msgstr "متن"
|
2531 |
|
2532 |
-
#:
|
2533 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:164
|
2534 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:176
|
2535 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:164
|
2536 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:176
|
2537 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:164
|
2538 |
msgid "Formatting"
|
2539 |
msgstr "قالب بندی"
|
2540 |
|
2541 |
-
#:
|
2542 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:165
|
2543 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:177
|
2544 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:165
|
2545 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:177
|
2546 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:165
|
2547 |
msgid "Effects value on front end"
|
2548 |
-
msgstr "
|
2549 |
-
|
2550 |
-
#:
|
2551 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:174
|
2552 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:186
|
2553 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:174
|
2554 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:186
|
2555 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:174
|
2556 |
msgid "No formatting"
|
2557 |
msgstr "بدون قالب بندی"
|
2558 |
|
2559 |
-
#:
|
2560 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:176
|
2561 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:187
|
2562 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:176
|
2563 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:187
|
2564 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:176
|
2565 |
msgid "Convert HTML into tags"
|
2566 |
-
msgstr "تبدیل HTML به
|
2567 |
-
|
2568 |
-
#:
|
2569 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:133
|
2570 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:195
|
2571 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:133
|
2572 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:195
|
2573 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:133
|
2574 |
msgid "Character Limit"
|
2575 |
-
msgstr "محدودیت
|
2576 |
-
|
2577 |
-
#:
|
2578 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:134
|
2579 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/text.php:196
|
2580 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:134
|
2581 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/text.php:196
|
2582 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:134
|
2583 |
msgid "Leave blank for no limit"
|
2584 |
msgstr "برای نامحدود بودن این بخش را خالی بگذارید."
|
2585 |
|
2586 |
-
#:
|
2587 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:19
|
2588 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:19
|
2589 |
msgid "Text Area"
|
2590 |
-
msgstr "
|
2591 |
|
2592 |
-
#:
|
2593 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:148
|
2594 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:148
|
2595 |
msgid "Rows"
|
2596 |
-
msgstr "
|
2597 |
|
2598 |
-
#:
|
2599 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:149
|
2600 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:149
|
2601 |
msgid "Sets the textarea height"
|
2602 |
-
msgstr "
|
2603 |
|
2604 |
-
#:
|
2605 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/textarea.php:175
|
2606 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/textarea.php:175
|
2607 |
msgid "Convert new lines into <br /> tags"
|
2608 |
msgstr "تبدیل خط های جدید به برچسب ها"
|
2609 |
|
2610 |
-
#:
|
2611 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/true_false.php:19
|
2612 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/true_false.php:19
|
2613 |
msgid "True / False"
|
2614 |
msgstr "صحیح / غلط"
|
2615 |
|
2616 |
-
#:
|
2617 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/true_false.php:80
|
2618 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/true_false.php:80
|
2619 |
msgid "eg. Show extra content"
|
2620 |
msgstr "به عنوان مثال: نمایش محتوای اضافی"
|
2621 |
|
2622 |
-
#:
|
2623 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:94
|
2624 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:18
|
2625 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:94
|
2626 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:18
|
2627 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:94
|
2628 |
msgid "User"
|
2629 |
msgstr "کاربر"
|
2630 |
|
2631 |
-
#:
|
2632 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/user.php:271
|
2633 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/user.php:271
|
2634 |
msgid "Filter by role"
|
2635 |
-
msgstr "
|
2636 |
|
2637 |
-
#:
|
2638 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:36
|
2639 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:36
|
2640 |
msgid "Wysiwyg Editor"
|
2641 |
msgstr "ویرایشگر دیداری"
|
2642 |
|
2643 |
-
#:
|
2644 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:292
|
2645 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:292
|
2646 |
msgid "Toolbar"
|
2647 |
msgstr "نوار ابزار"
|
2648 |
|
2649 |
-
#:
|
2650 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/fields/wysiwyg.php:324
|
2651 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\fields/wysiwyg.php:324
|
2652 |
msgid "Show Media Upload Buttons?"
|
2653 |
-
msgstr "آیا دکمه های بارگذاری رسانه
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2654 |
|
2655 |
-
#:
|
2656 |
-
#:
|
2657 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2658 |
msgid "New Field"
|
2659 |
msgstr "زمینه جدید"
|
2660 |
|
2661 |
-
#:
|
2662 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:58
|
2663 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:58
|
2664 |
msgid "Field type does not exist"
|
2665 |
-
msgstr "نوع زمینه وجود
|
2666 |
|
2667 |
-
#:
|
2668 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:74
|
2669 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:74
|
2670 |
msgid "Field Order"
|
2671 |
-
msgstr "
|
2672 |
-
|
2673 |
-
#:
|
2674 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:127
|
2675 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:75
|
2676 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:127
|
2677 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:75
|
2678 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:127
|
2679 |
msgid "Field Label"
|
2680 |
msgstr "برچسب زمینه"
|
2681 |
|
2682 |
-
#:
|
2683 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:143
|
2684 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:76
|
2685 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:143
|
2686 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:76
|
2687 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:143
|
2688 |
msgid "Field Name"
|
2689 |
msgstr "نام زمینه"
|
2690 |
|
2691 |
-
#:
|
2692 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:78
|
2693 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:78
|
2694 |
msgid "Field Key"
|
2695 |
msgstr "کلید زمینه"
|
2696 |
|
2697 |
-
#:
|
2698 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:90
|
2699 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:90
|
2700 |
msgid ""
|
2701 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
2702 |
"first field."
|
2703 |
msgstr ""
|
2704 |
-
"هیچ زمینه ای وجود ندارد. روی
|
2705 |
-
"
|
2706 |
-
|
2707 |
-
#:
|
2708 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:108
|
2709 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:105
|
2710 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:108
|
2711 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:105
|
2712 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:108
|
2713 |
msgid "Edit this Field"
|
2714 |
msgstr "ویرایش این زمینه"
|
2715 |
|
2716 |
-
#:
|
2717 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:109
|
2718 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:109
|
2719 |
msgid "Read documentation for this field"
|
2720 |
-
msgstr "مستندات را برای این زمینه
|
2721 |
|
2722 |
-
#:
|
2723 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:109
|
2724 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:109
|
2725 |
msgid "Docs"
|
2726 |
-
msgstr "
|
2727 |
|
2728 |
-
#:
|
2729 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:110
|
2730 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:110
|
2731 |
msgid "Duplicate this Field"
|
2732 |
msgstr "تکثیر این زمینه"
|
2733 |
|
2734 |
-
#:
|
2735 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:110
|
2736 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:110
|
2737 |
msgid "Duplicate"
|
2738 |
msgstr "تکثیر"
|
2739 |
|
2740 |
-
#:
|
2741 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:111
|
2742 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:111
|
2743 |
msgid "Delete this Field"
|
2744 |
msgstr "حذف این زمینه"
|
2745 |
|
2746 |
-
#:
|
2747 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:111
|
2748 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:111
|
2749 |
msgid "Delete"
|
2750 |
msgstr "حذف"
|
2751 |
|
2752 |
-
#:
|
2753 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:128
|
2754 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:128
|
2755 |
msgid "This is the name which will appear on the EDIT page"
|
2756 |
-
msgstr "این نامی است که در
|
2757 |
|
2758 |
-
#:
|
2759 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:144
|
2760 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:144
|
2761 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
2762 |
-
msgstr "تک کلمه، بدون
|
2763 |
|
2764 |
-
#:
|
2765 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:173
|
2766 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:173
|
2767 |
msgid "Field Instructions"
|
2768 |
msgstr "دستورالعمل های زمینه"
|
2769 |
|
2770 |
-
#:
|
2771 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:174
|
2772 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:174
|
2773 |
msgid "Instructions for authors. Shown when submitting data"
|
2774 |
-
msgstr ""
|
2775 |
-
"دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند."
|
2776 |
|
2777 |
-
#:
|
2778 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:187
|
2779 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:187
|
2780 |
msgid "Required?"
|
2781 |
msgstr "لازم است؟"
|
2782 |
|
2783 |
-
#:
|
2784 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:210
|
2785 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:210
|
2786 |
msgid "Conditional Logic"
|
2787 |
msgstr "منطق شرطی"
|
2788 |
|
2789 |
-
#:
|
2790 |
-
#:
|
2791 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:261
|
2792 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:117
|
2793 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:261
|
2794 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:117
|
2795 |
msgid "is equal to"
|
2796 |
-
msgstr "برابر
|
2797 |
-
|
2798 |
-
#:
|
2799 |
-
#:
|
2800 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:262
|
2801 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:118
|
2802 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:262
|
2803 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:118
|
2804 |
msgid "is not equal to"
|
2805 |
-
msgstr "برابر
|
2806 |
|
2807 |
-
#:
|
2808 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:280
|
2809 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:280
|
2810 |
msgid "Show this field when"
|
2811 |
msgstr "نمایش این زمینه موقعی که"
|
2812 |
|
2813 |
-
#:
|
2814 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:286
|
2815 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:286
|
2816 |
msgid "all"
|
2817 |
msgstr "همه"
|
2818 |
|
2819 |
-
#:
|
2820 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:287
|
2821 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:287
|
2822 |
msgid "any"
|
2823 |
-
msgstr "
|
2824 |
|
2825 |
-
#:
|
2826 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:290
|
2827 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:290
|
2828 |
msgid "these rules are met"
|
2829 |
-
msgstr "این قوانین
|
2830 |
|
2831 |
-
#:
|
2832 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:304
|
2833 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:304
|
2834 |
msgid "Close Field"
|
2835 |
msgstr "بستن زمینه"
|
2836 |
|
2837 |
-
#:
|
2838 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:317
|
2839 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:317
|
2840 |
msgid "Drag and drop to reorder"
|
2841 |
-
msgstr "
|
2842 |
|
2843 |
-
#:
|
2844 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:318
|
2845 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:318
|
2846 |
msgid "+ Add Field"
|
2847 |
msgstr "+ افزودن زمینه"
|
2848 |
|
2849 |
-
#:
|
2850 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:48
|
2851 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:48
|
2852 |
msgid "Rules"
|
2853 |
msgstr "قوانین"
|
2854 |
|
2855 |
-
#:
|
2856 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:49
|
2857 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:49
|
2858 |
msgid ""
|
2859 |
"Create a set of rules to determine which edit screens will use these "
|
2860 |
"advanced custom fields"
|
2861 |
msgstr ""
|
2862 |
-
"
|
2863 |
-
"سفارشی
|
2864 |
|
2865 |
-
#:
|
2866 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:60
|
2867 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:60
|
2868 |
msgid "Show this field group if"
|
2869 |
msgstr "نمایش این گروه زمینه اگر"
|
2870 |
|
2871 |
-
#:
|
2872 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:76
|
2873 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:76
|
2874 |
msgid "Logged in User Type"
|
2875 |
-
msgstr "وارد شده
|
2876 |
-
|
2877 |
-
#:
|
2878 |
-
#:
|
2879 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:78
|
2880 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:79
|
2881 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:78
|
2882 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:79
|
2883 |
msgid "Post"
|
2884 |
msgstr "نوشته"
|
2885 |
|
2886 |
-
#:
|
2887 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:80
|
2888 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:80
|
2889 |
msgid "Post Category"
|
2890 |
msgstr "دسته بندی نوشته"
|
2891 |
|
2892 |
-
#:
|
2893 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:81
|
2894 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:81
|
2895 |
msgid "Post Format"
|
2896 |
msgstr "فرمت نوشته"
|
2897 |
|
2898 |
-
#:
|
2899 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:82
|
2900 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:82
|
2901 |
msgid "Post Status"
|
2902 |
msgstr "وضعیت نوشته"
|
2903 |
|
2904 |
-
#:
|
2905 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:83
|
2906 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:83
|
2907 |
msgid "Post Taxonomy"
|
2908 |
msgstr "طبقه بندی نوشته"
|
2909 |
|
2910 |
-
#:
|
2911 |
-
#:
|
2912 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:85
|
2913 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:86
|
2914 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:85
|
2915 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:86
|
2916 |
msgid "Page"
|
2917 |
msgstr "برگه"
|
2918 |
|
2919 |
-
#:
|
2920 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:87
|
2921 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:87
|
2922 |
msgid "Page Type"
|
2923 |
msgstr "نوع برگه"
|
2924 |
|
2925 |
-
#:
|
2926 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:88
|
2927 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:88
|
2928 |
msgid "Page Parent"
|
2929 |
msgstr "برگه مادر"
|
2930 |
|
2931 |
-
#:
|
2932 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:89
|
2933 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:89
|
2934 |
msgid "Page Template"
|
2935 |
-
msgstr "
|
2936 |
|
2937 |
-
#:
|
2938 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:92
|
2939 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:92
|
2940 |
msgid "Attachment"
|
2941 |
msgstr "پیوست"
|
2942 |
|
2943 |
-
#:
|
2944 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:93
|
2945 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:93
|
2946 |
msgid "Taxonomy Term"
|
2947 |
-
msgstr "
|
2948 |
|
2949 |
-
#:
|
2950 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:146
|
2951 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:146
|
2952 |
msgid "and"
|
2953 |
msgstr "و"
|
2954 |
|
2955 |
-
#:
|
2956 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_location.php:161
|
2957 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_location.php:161
|
2958 |
msgid "Add rule group"
|
2959 |
-
msgstr "افزودن قانون"
|
2960 |
|
2961 |
-
#:
|
2962 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:25
|
2963 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:25
|
2964 |
msgid "Order No."
|
2965 |
-
msgstr "شماره
|
2966 |
|
2967 |
-
#:
|
2968 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:26
|
2969 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:26
|
2970 |
msgid "Field groups are created in order <br />from lowest to highest"
|
2971 |
msgstr ""
|
2972 |
-
"گروه های زمینه از کوچکترین شماره تا بزرگترین شماره
|
|
|
2973 |
|
2974 |
-
#:
|
2975 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:42
|
2976 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:42
|
2977 |
msgid "Position"
|
2978 |
msgstr "موقعیت"
|
2979 |
|
2980 |
-
#:
|
2981 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:52
|
2982 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:52
|
2983 |
msgid "High (after title)"
|
2984 |
msgstr "بالا (بعد از عنوان)"
|
2985 |
|
2986 |
-
#:
|
2987 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:53
|
2988 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:53
|
2989 |
msgid "Normal (after content)"
|
2990 |
-
msgstr "معمولی (بعد از
|
2991 |
|
2992 |
-
#:
|
2993 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:54
|
2994 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:54
|
2995 |
msgid "Side"
|
2996 |
msgstr "کنار"
|
2997 |
|
2998 |
-
#:
|
2999 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:64
|
3000 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:64
|
3001 |
msgid "Style"
|
3002 |
-
msgstr "
|
3003 |
|
3004 |
-
#:
|
3005 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:74
|
3006 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:74
|
3007 |
msgid "Seamless (no metabox)"
|
3008 |
-
msgstr "بدون
|
3009 |
|
3010 |
-
#:
|
3011 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:75
|
3012 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:75
|
3013 |
msgid "Standard (WP metabox)"
|
3014 |
-
msgstr "استاندارد (متاباکس
|
3015 |
|
3016 |
-
#:
|
3017 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:84
|
3018 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:84
|
3019 |
msgid "Hide on screen"
|
3020 |
-
msgstr "مخفی
|
3021 |
|
3022 |
-
#:
|
3023 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:85
|
3024 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:85
|
3025 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
3026 |
msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
|
3027 |
|
3028 |
-
#:
|
3029 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:86
|
3030 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:86
|
3031 |
msgid ""
|
3032 |
"If multiple field groups appear on an edit screen, the first field group's "
|
3033 |
"options will be used. (the one with the lowest order number)"
|
@@ -3035,75 +1817,51 @@ msgstr ""
|
|
3035 |
"اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
|
3036 |
"زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
3037 |
|
3038 |
-
#:
|
3039 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:96
|
3040 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:96
|
3041 |
msgid "Permalink"
|
3042 |
msgstr "پیوند یکتا"
|
3043 |
|
3044 |
-
#:
|
3045 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:97
|
3046 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:97
|
3047 |
msgid "Content Editor"
|
3048 |
-
msgstr "
|
3049 |
|
3050 |
-
#:
|
3051 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:98
|
3052 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:98
|
3053 |
msgid "Excerpt"
|
3054 |
msgstr "چکیده"
|
3055 |
|
3056 |
-
#:
|
3057 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:100
|
3058 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:100
|
3059 |
msgid "Discussion"
|
3060 |
msgstr "گفتگو"
|
3061 |
|
3062 |
-
#:
|
3063 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:101
|
3064 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:101
|
3065 |
msgid "Comments"
|
3066 |
msgstr "دیدگاه ها"
|
3067 |
|
3068 |
-
#:
|
3069 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:102
|
3070 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:102
|
3071 |
msgid "Revisions"
|
3072 |
msgstr "بازنگری ها"
|
3073 |
|
3074 |
-
#:
|
3075 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:103
|
3076 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:103
|
3077 |
msgid "Slug"
|
3078 |
msgstr "نامک"
|
3079 |
|
3080 |
-
#:
|
3081 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:104
|
3082 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:104
|
3083 |
msgid "Author"
|
3084 |
msgstr "نویسنده"
|
3085 |
|
3086 |
-
#:
|
3087 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:105
|
3088 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:105
|
3089 |
msgid "Format"
|
3090 |
msgstr "فرمت"
|
3091 |
|
3092 |
-
#:
|
3093 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:107
|
3094 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:107
|
3095 |
msgid "Categories"
|
3096 |
msgstr "دسته ها"
|
3097 |
|
3098 |
-
#:
|
3099 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:108
|
3100 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:108
|
3101 |
msgid "Tags"
|
3102 |
msgstr "برچسب ها"
|
3103 |
|
3104 |
-
#:
|
3105 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_options.php:109
|
3106 |
-
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_options.php:109
|
3107 |
msgid "Send Trackbacks"
|
3108 |
msgstr "ارسال بازتاب ها"
|
3109 |
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2014-09-29 08:09+0330\n"
|
8 |
+
"PO-Revision-Date: 2014-09-30 14:51+0330\n"
|
9 |
"Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
|
10 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.5.7\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
+
#: ../acf.php:485
|
21 |
msgid "Field Groups"
|
22 |
msgstr "گروه های زمینه"
|
23 |
|
24 |
+
#: ../acf.php:486 ../core/controllers/field_groups.php:214
|
|
|
|
|
|
|
25 |
msgid "Advanced Custom Fields"
|
26 |
msgstr "زمینه های دلخواه پیشرفته"
|
27 |
|
28 |
+
#: ../acf.php:487
|
29 |
msgid "Add New"
|
30 |
msgstr "افزودن"
|
31 |
|
32 |
+
#: ../acf.php:488
|
33 |
msgid "Add New Field Group"
|
34 |
msgstr "افزودن گروه زمینه جدید"
|
35 |
|
36 |
+
#: ../acf.php:489
|
37 |
msgid "Edit Field Group"
|
38 |
msgstr "ویرایش گروه زمینه"
|
39 |
|
40 |
+
#: ../acf.php:490
|
41 |
msgid "New Field Group"
|
42 |
msgstr "گروه زمینه جدید"
|
43 |
|
44 |
+
#: ../acf.php:491
|
45 |
msgid "View Field Group"
|
46 |
msgstr "مشاهده گروه زمینه"
|
47 |
|
48 |
+
#: ../acf.php:492
|
49 |
msgid "Search Field Groups"
|
50 |
msgstr "جستجوی گروه های زمینه"
|
51 |
|
52 |
+
#: ../acf.php:493
|
53 |
msgid "No Field Groups found"
|
54 |
+
msgstr "گروه زمینه ای یافت نشد"
|
55 |
|
56 |
+
#: ../acf.php:494
|
57 |
msgid "No Field Groups found in Trash"
|
58 |
+
msgstr "گروه زمینه ای در زباله دان یافت نشد"
|
59 |
|
60 |
+
#: ../acf.php:579 ../core/views/meta_box_options.php:99
|
|
|
|
|
|
|
61 |
msgid "Custom Fields"
|
62 |
msgstr "زمینه های دلخواه"
|
63 |
|
64 |
+
#: ../acf.php:597 ../acf.php:600
|
|
|
65 |
msgid "Field group updated."
|
66 |
+
msgstr "گروه زمینه بروز شد"
|
67 |
|
68 |
+
#: ../acf.php:598
|
69 |
msgid "Custom field updated."
|
70 |
+
msgstr "زمینه دلخواه بروز شد"
|
71 |
|
72 |
+
#: ../acf.php:599
|
73 |
msgid "Custom field deleted."
|
74 |
+
msgstr "زمینه دلخواه حذف شد"
|
75 |
|
76 |
+
#: ../acf.php:602
|
77 |
#, php-format
|
78 |
msgid "Field group restored to revision from %s"
|
79 |
msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
|
80 |
|
81 |
+
#: ../acf.php:603
|
82 |
msgid "Field group published."
|
83 |
msgstr "گروه زمینه انتشار یافت."
|
84 |
|
85 |
+
#: ../acf.php:604
|
86 |
msgid "Field group saved."
|
87 |
msgstr "گروه زمینه ذخیره شد."
|
88 |
|
89 |
+
#: ../acf.php:605
|
90 |
msgid "Field group submitted."
|
91 |
msgstr "گروه زمینه ارسال شد."
|
92 |
|
93 |
+
#: ../acf.php:606
|
94 |
msgid "Field group scheduled for."
|
95 |
+
msgstr "گروه زمینه برنامه ریزی انتشار پیدا کرده برای"
|
96 |
|
97 |
+
#: ../acf.php:607
|
98 |
msgid "Field group draft updated."
|
99 |
msgstr "پیش نویش گروه زمینه بروز شد."
|
100 |
|
101 |
+
#: ../acf.php:742
|
102 |
msgid "Thumbnail"
|
103 |
msgstr "تصویر بندانگشتی"
|
104 |
|
105 |
+
#: ../acf.php:743
|
106 |
msgid "Medium"
|
107 |
msgstr "متوسط"
|
108 |
|
109 |
+
#: ../acf.php:744
|
110 |
msgid "Large"
|
111 |
msgstr "بزرگ"
|
112 |
|
113 |
+
#: ../acf.php:745
|
114 |
msgid "Full"
|
115 |
msgstr "کامل"
|
116 |
|
117 |
+
#: ../core/api.php:1171
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Update"
|
119 |
msgstr "بروزرسانی"
|
120 |
|
121 |
+
#: ../core/api.php:1172
|
|
|
122 |
msgid "Post updated"
|
123 |
msgstr "نوشته بروز شد."
|
124 |
|
125 |
+
#: ../core/actions/export.php:26 ../core/views/meta_box_fields.php:58
|
126 |
+
msgid "Error"
|
127 |
+
msgstr "خطا"
|
128 |
+
|
129 |
+
#: ../core/actions/export.php:33
|
130 |
+
msgid "No ACF groups selected"
|
131 |
+
msgstr "هیچ گروه زمینه دلخواه پیشرفته ای انتخاب نشده است."
|
132 |
+
|
133 |
+
#: ../core/controllers/addons.php:42 ../core/controllers/field_groups.php:307
|
134 |
msgid "Add-ons"
|
135 |
msgstr "افزودنی ها"
|
136 |
|
137 |
+
#: ../core/controllers/addons.php:130 ../core/controllers/field_groups.php:429
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "Repeater Field"
|
139 |
msgstr "تکرار کننده زمینه"
|
140 |
|
141 |
+
#: ../core/controllers/addons.php:131
|
|
|
|
|
142 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
143 |
msgstr ""
|
144 |
+
"ایجاد بی نهایت سطر از داده های تکرار شونده به وسیله این زمینه چند منظوره!"
|
145 |
+
|
146 |
+
#: ../core/controllers/addons.php:137 ../core/controllers/field_groups.php:437
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
msgid "Gallery Field"
|
148 |
msgstr "زمینه گالری"
|
149 |
|
150 |
+
#: ../core/controllers/addons.php:138
|
|
|
|
|
151 |
msgid "Create image galleries in a simple and intuitive interface!"
|
152 |
msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
|
153 |
|
154 |
+
#: ../core/controllers/addons.php:144 ../core/controllers/field_groups.php:445
|
|
|
|
|
|
|
|
|
|
|
155 |
msgid "Options Page"
|
156 |
msgstr "برگه تنظیمات"
|
157 |
|
158 |
+
#: ../core/controllers/addons.php:145
|
|
|
|
|
159 |
msgid "Create global data to use throughout your website!"
|
160 |
+
msgstr "ایجاد داده فراگیر برای استفاده در همه جای سایت شما!"
|
161 |
|
162 |
+
#: ../core/controllers/addons.php:151
|
|
|
|
|
163 |
msgid "Flexible Content Field"
|
164 |
msgstr "زمینه محتوای انعطاف پذیر"
|
165 |
|
166 |
+
#: ../core/controllers/addons.php:152
|
|
|
|
|
167 |
msgid "Create unique designs with a flexible content layout manager!"
|
168 |
+
msgstr "ایجاد طرح های منحصر به فرد با زمینه محتوای انعطاف پذیر!"
|
169 |
|
170 |
+
#: ../core/controllers/addons.php:161
|
|
|
|
|
171 |
msgid "Gravity Forms Field"
|
172 |
+
msgstr "زمینه افزونه GravityForms"
|
173 |
|
174 |
+
#: ../core/controllers/addons.php:162
|
|
|
|
|
175 |
msgid "Creates a select field populated with Gravity Forms!"
|
176 |
+
msgstr ""
|
177 |
+
"زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms که "
|
178 |
+
"ساخته اید را از آن انتخاب کنید"
|
179 |
|
180 |
+
#: ../core/controllers/addons.php:168
|
|
|
|
|
181 |
msgid "Date & Time Picker"
|
182 |
+
msgstr "تاریخ و زمان"
|
183 |
|
184 |
+
#: ../core/controllers/addons.php:169
|
|
|
|
|
185 |
msgid "jQuery date & time picker"
|
186 |
+
msgstr "تاریخ و زمان جی کوئری"
|
187 |
|
188 |
+
#: ../core/controllers/addons.php:175
|
|
|
|
|
189 |
msgid "Location Field"
|
190 |
+
msgstr "زمینه مکان(نقشه)"
|
191 |
|
192 |
+
#: ../core/controllers/addons.php:176
|
|
|
|
|
193 |
msgid "Find addresses and coordinates of a desired location"
|
194 |
+
msgstr "یافتن آدرس و مختصات مکان مورد نظر"
|
195 |
|
196 |
+
#: ../core/controllers/addons.php:182
|
|
|
|
|
197 |
msgid "Contact Form 7 Field"
|
198 |
msgstr "زمینه فرم تماس (Contact Form 7)"
|
199 |
|
200 |
+
#: ../core/controllers/addons.php:183
|
|
|
|
|
201 |
msgid "Assign one or more contact form 7 forms to a post"
|
202 |
msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته"
|
203 |
|
204 |
+
#: ../core/controllers/addons.php:193
|
|
|
|
|
205 |
msgid "Advanced Custom Fields Add-Ons"
|
206 |
msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
|
207 |
|
208 |
+
#: ../core/controllers/addons.php:196
|
|
|
|
|
209 |
msgid ""
|
210 |
"The following Add-ons are available to increase the functionality of the "
|
211 |
"Advanced Custom Fields plugin."
|
212 |
msgstr ""
|
213 |
+
"افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته قابل "
|
214 |
+
"استفاده هستند."
|
215 |
|
216 |
+
#: ../core/controllers/addons.php:197
|
|
|
|
|
217 |
msgid ""
|
218 |
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
219 |
"included in your theme (does not receive updates)."
|
221 |
"هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
|
222 |
"پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
223 |
|
224 |
+
#: ../core/controllers/addons.php:219 ../core/controllers/addons.php:240
|
|
|
|
|
|
|
|
|
|
|
225 |
msgid "Installed"
|
226 |
msgstr "نصب شده"
|
227 |
|
228 |
+
#: ../core/controllers/addons.php:221
|
|
|
|
|
229 |
msgid "Purchase & Install"
|
230 |
msgstr "خرید و نصب"
|
231 |
|
232 |
+
#: ../core/controllers/addons.php:242 ../core/controllers/field_groups.php:422
|
233 |
+
#: ../core/controllers/field_groups.php:431
|
234 |
+
#: ../core/controllers/field_groups.php:439
|
235 |
+
#: ../core/controllers/field_groups.php:447
|
236 |
+
#: ../core/controllers/field_groups.php:455
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
msgid "Download"
|
238 |
+
msgstr "دانلود"
|
239 |
+
|
240 |
+
#: ../core/controllers/export.php:50 ../core/controllers/export.php:159
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Export"
|
242 |
msgstr "برون بری"
|
243 |
|
244 |
+
#: ../core/controllers/export.php:216
|
|
|
|
|
245 |
msgid "Export Field Groups"
|
246 |
msgstr "برون بری گروه های زمینه"
|
247 |
|
248 |
+
#: ../core/controllers/export.php:221
|
|
|
|
|
249 |
msgid "Field Groups"
|
250 |
msgstr "گروه های زمینه"
|
251 |
|
252 |
+
#: ../core/controllers/export.php:222
|
|
|
|
|
253 |
msgid "Select the field groups to be exported"
|
254 |
+
msgstr "گروه های زمینه را برای برون بری انتخاب کنید"
|
255 |
+
|
256 |
+
#: ../core/controllers/export.php:239 ../core/controllers/export.php:252
|
|
|
|
|
|
|
|
|
|
|
257 |
msgid "Export to XML"
|
258 |
msgstr "برون بری به فرمت XML"
|
259 |
|
260 |
+
#: ../core/controllers/export.php:242 ../core/controllers/export.php:267
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "Export to PHP"
|
262 |
msgstr "برون بری به فرمت PHP"
|
263 |
|
264 |
+
#: ../core/controllers/export.php:253
|
|
|
|
|
265 |
msgid ""
|
266 |
"ACF will create a .xml export file which is compatible with the native WP "
|
267 |
"import plugin."
|
269 |
"افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
|
270 |
"با افزونه Wordpress Importer سازگار است."
|
271 |
|
272 |
+
#: ../core/controllers/export.php:254
|
|
|
|
|
273 |
msgid ""
|
274 |
"Imported field groups <b>will</b> appear in the list of editable field "
|
275 |
"groups. This is useful for migrating fields groups between Wp websites."
|
276 |
msgstr ""
|
277 |
+
"گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش داده "
|
278 |
+
"<b>خواهند شد</b>. این روش برای انتقال گروه های زمینه در بین سایت های وردپرسی "
|
279 |
"مفید است."
|
280 |
|
281 |
+
#: ../core/controllers/export.php:256
|
|
|
|
|
282 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
283 |
msgstr ""
|
284 |
+
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML)) "
|
285 |
+
"کلیک کنید"
|
286 |
|
287 |
+
#: ../core/controllers/export.php:257
|
|
|
|
|
288 |
msgid "Save the .xml file when prompted"
|
289 |
+
msgstr "فایل .xml را وقتی آماده شد، ذخیره کنید"
|
290 |
|
291 |
+
#: ../core/controllers/export.php:258
|
|
|
|
|
292 |
msgid "Navigate to Tools » Import and select WordPress"
|
293 |
+
msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس را انتخاب کنید."
|
294 |
|
295 |
+
#: ../core/controllers/export.php:259
|
|
|
|
|
296 |
msgid "Install WP import plugin if prompted"
|
297 |
+
msgstr "افزونه درون ریزی وردپرس را در صورت درخواست نصب نمایید"
|
298 |
|
299 |
+
#: ../core/controllers/export.php:260
|
|
|
|
|
300 |
msgid "Upload and import your exported .xml file"
|
301 |
+
msgstr "فایل .xml خود را آپلود و درون ریزی کنید"
|
302 |
|
303 |
+
#: ../core/controllers/export.php:261
|
|
|
|
|
304 |
msgid "Select your user and ignore Import Attachments"
|
305 |
+
msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را نا دیده بگیرید"
|
306 |
|
307 |
+
#: ../core/controllers/export.php:262
|
|
|
|
|
308 |
msgid "That's it! Happy WordPressing"
|
309 |
+
msgstr "همین ! از وردپرس لذت ببرید"
|
310 |
|
311 |
+
#: ../core/controllers/export.php:268
|
|
|
|
|
312 |
msgid "ACF will create the PHP code to include in your theme."
|
313 |
msgstr ""
|
314 |
+
"افزونه زمینه های دلخواه پیشرفته کد های PHP برای اضافه کردن در پوسته در "
|
315 |
+
"اختیاران قرار می دهد"
|
316 |
+
|
317 |
+
#: ../core/controllers/export.php:269 ../core/controllers/export.php:310
|
|
|
|
|
|
|
|
|
|
|
318 |
msgid ""
|
319 |
"Registered field groups <b>will not</b> appear in the list of editable field "
|
320 |
"groups. This is useful for including fields in themes."
|
321 |
msgstr ""
|
322 |
+
"گروه های زمینه ساخته خواهند شد ولی قابل ویرایش <b>نخواهند بود</b>.یعنی در "
|
323 |
+
"لیست افزونه برای ویرایش دیده نمی شوند. این روش برای قرار دادن زمینه ها در "
|
324 |
+
"پوسته ها (برای مشتری) مفید است."
|
325 |
+
|
326 |
+
#: ../core/controllers/export.php:270 ../core/controllers/export.php:311
|
|
|
|
|
|
|
|
|
327 |
msgid ""
|
328 |
"Please note that if you export and register field groups within the same WP, "
|
329 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
330 |
"the original field group to the trash or remove the code from your functions."
|
331 |
"php file."
|
332 |
msgstr ""
|
333 |
+
"لطفا توجه کنید که اگر از هر دو روش ذکر شما در یک وردپرس به صورت هم زمان "
|
334 |
+
"استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح است "
|
335 |
+
"که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای php را "
|
336 |
+
"از پوسته و احتمالا functions.php حذف کنید."
|
337 |
+
|
338 |
+
#: ../core/controllers/export.php:272
|
|
|
|
|
339 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
340 |
msgstr ""
|
341 |
+
"گروه های زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت "
|
342 |
+
"PHP)) کلیک کنید"
|
343 |
+
|
344 |
+
#: ../core/controllers/export.php:273 ../core/controllers/export.php:302
|
|
|
|
|
|
|
|
|
|
|
345 |
msgid "Copy the PHP code generated"
|
346 |
+
msgstr "کدهای PHP تولید شده را کپی کنید"
|
347 |
+
|
348 |
+
#: ../core/controllers/export.php:274 ../core/controllers/export.php:303
|
|
|
|
|
|
|
|
|
|
|
349 |
msgid "Paste into your functions.php file"
|
350 |
+
msgstr "در فایل functions.php پوسته خود قرار دهید"
|
351 |
+
|
352 |
+
#: ../core/controllers/export.php:275 ../core/controllers/export.php:304
|
|
|
|
|
|
|
|
|
|
|
353 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
354 |
+
msgstr "برای فعالسازی افزودنی ها،چند سطر اول کدها را ویرایش و استفاده کنید"
|
|
|
|
|
355 |
|
356 |
+
#: ../core/controllers/export.php:295
|
|
|
|
|
357 |
msgid "Export Field Groups to PHP"
|
358 |
+
msgstr "برون بری گروه های زمینه به PHP"
|
359 |
+
|
360 |
+
#: ../core/controllers/export.php:300 ../core/fields/tab.php:65
|
|
|
|
|
|
|
|
|
|
|
361 |
msgid "Instructions"
|
362 |
msgstr "دستورالعمل ها"
|
363 |
|
364 |
+
#: ../core/controllers/export.php:309
|
|
|
|
|
365 |
msgid "Notes"
|
366 |
msgstr "نکته ها"
|
367 |
|
368 |
+
#: ../core/controllers/export.php:316
|
|
|
|
|
369 |
msgid "Include in theme"
|
370 |
msgstr "قرار دادن در پوسته"
|
371 |
|
372 |
+
#: ../core/controllers/export.php:317
|
|
|
|
|
373 |
msgid ""
|
374 |
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
375 |
"move the ACF plugin inside your theme and add the following code to your "
|
376 |
"functions.php file:"
|
377 |
msgstr ""
|
378 |
"افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار بگیرد. "
|
379 |
+
"برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و کدهای زیر را "
|
380 |
"به پرونده functions.php اضافه کنید:"
|
381 |
|
382 |
+
#: ../core/controllers/export.php:323
|
|
|
|
|
383 |
msgid ""
|
384 |
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
385 |
"to enable lite mode. Add the following code to your functions.php file "
|
386 |
"<b>before</b> the include_once code:"
|
387 |
msgstr ""
|
388 |
+
"برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته (دیده نشدن "
|
389 |
+
"افزونه)، می توانید از یک ثابت (کانستنت) برای فعال سازی حالت سبک (lite) "
|
390 |
+
"استفاده کنید. کد زیر را به پرونده functions.php خود <b>قبل از</b> تابع "
|
391 |
+
"include_once اضافه کنید:"
|
392 |
|
393 |
+
#: ../core/controllers/export.php:331
|
|
|
|
|
394 |
msgid "Back to export"
|
395 |
msgstr "بازگشت به برون بری"
|
396 |
|
397 |
+
#: ../core/controllers/export.php:400
|
|
|
|
|
398 |
msgid "No field groups were selected"
|
399 |
+
msgstr "گروه زمینه ای انتخاب نشده است"
|
400 |
|
401 |
+
#: ../core/controllers/field_group.php:358
|
|
|
|
|
402 |
msgid "Move to trash. Are you sure?"
|
403 |
msgstr "انتقال به زباله دان، آیا شما مطمئنید؟"
|
404 |
|
405 |
+
#: ../core/controllers/field_group.php:359
|
|
|
|
|
406 |
msgid "checked"
|
407 |
msgstr "انتخاب شده"
|
408 |
|
409 |
+
#: ../core/controllers/field_group.php:360
|
|
|
|
|
410 |
msgid "No toggle fields available"
|
411 |
+
msgstr "هیچ زمینه شرط پذیری موجود نیست"
|
412 |
|
413 |
+
#: ../core/controllers/field_group.php:361
|
|
|
|
|
414 |
msgid "Field group title is required"
|
415 |
+
msgstr "عنوان گروه زمینه ضروری است"
|
416 |
|
417 |
+
#: ../core/controllers/field_group.php:362
|
|
|
|
|
418 |
msgid "copy"
|
419 |
msgstr "کپی"
|
420 |
|
421 |
+
#: ../core/controllers/field_group.php:363
|
422 |
+
#: ../core/views/meta_box_location.php:62
|
423 |
+
#: ../core/views/meta_box_location.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
msgid "or"
|
425 |
msgstr "یا"
|
426 |
|
427 |
+
#: ../core/controllers/field_group.php:364
|
428 |
+
#: ../core/controllers/field_group.php:395
|
429 |
+
#: ../core/controllers/field_group.php:457
|
430 |
+
#: ../core/controllers/field_groups.php:148
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgid "Fields"
|
432 |
msgstr "زمینه ها"
|
433 |
|
434 |
+
#: ../core/controllers/field_group.php:365
|
|
|
|
|
435 |
msgid "Parent fields"
|
436 |
msgstr "زمینه های مادر"
|
437 |
|
438 |
+
#: ../core/controllers/field_group.php:366
|
|
|
|
|
439 |
msgid "Sibling fields"
|
440 |
+
msgstr "زمینه های هدف"
|
441 |
|
442 |
+
#: ../core/controllers/field_group.php:367
|
|
|
|
|
443 |
msgid "Hide / Show All"
|
444 |
msgstr "مخفی کردن / نمایش همه"
|
445 |
|
446 |
+
#: ../core/controllers/field_group.php:396
|
|
|
|
|
447 |
msgid "Location"
|
448 |
msgstr "مکان"
|
449 |
|
450 |
+
#: ../core/controllers/field_group.php:397
|
|
|
|
|
451 |
msgid "Options"
|
452 |
msgstr "تنظیمات"
|
453 |
|
454 |
+
#: ../core/controllers/field_group.php:459
|
|
|
|
|
455 |
msgid "Show Field Key:"
|
456 |
msgstr "نمایش کلید زمینه:"
|
457 |
|
458 |
+
#: ../core/controllers/field_group.php:460 ../core/fields/page_link.php:138
|
459 |
+
#: ../core/fields/page_link.php:159 ../core/fields/post_object.php:328
|
460 |
+
#: ../core/fields/post_object.php:349 ../core/fields/select.php:224
|
461 |
+
#: ../core/fields/select.php:243 ../core/fields/taxonomy.php:347
|
462 |
+
#: ../core/fields/user.php:332 ../core/fields/wysiwyg.php:335
|
463 |
+
#: ../core/views/meta_box_fields.php:196 ../core/views/meta_box_fields.php:219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
msgid "No"
|
465 |
msgstr "خیر"
|
466 |
|
467 |
+
#: ../core/controllers/field_group.php:461 ../core/fields/page_link.php:137
|
468 |
+
#: ../core/fields/page_link.php:158 ../core/fields/post_object.php:327
|
469 |
+
#: ../core/fields/post_object.php:348 ../core/fields/select.php:223
|
470 |
+
#: ../core/fields/select.php:242 ../core/fields/taxonomy.php:346
|
471 |
+
#: ../core/fields/user.php:331 ../core/fields/wysiwyg.php:334
|
472 |
+
#: ../core/views/meta_box_fields.php:195 ../core/views/meta_box_fields.php:218
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
msgid "Yes"
|
474 |
msgstr "بله"
|
475 |
|
476 |
+
#: ../core/controllers/field_group.php:633
|
|
|
|
|
477 |
msgid "Front Page"
|
478 |
+
msgstr "برگه نخست"
|
479 |
|
480 |
+
#: ../core/controllers/field_group.php:634
|
|
|
|
|
481 |
msgid "Posts Page"
|
482 |
+
msgstr "برگه ی نوشته ها"
|
483 |
|
484 |
+
#: ../core/controllers/field_group.php:635
|
|
|
|
|
485 |
msgid "Top Level Page (parent of 0)"
|
486 |
+
msgstr "بالاترین سطح برگه (parent of 0)"
|
487 |
|
488 |
+
#: ../core/controllers/field_group.php:636
|
|
|
|
|
489 |
msgid "Parent Page (has children)"
|
490 |
+
msgstr "برگه مادر (دارای زیر مجموعه)"
|
491 |
|
492 |
+
#: ../core/controllers/field_group.php:637
|
|
|
|
|
493 |
msgid "Child Page (has parent)"
|
494 |
+
msgstr "برگه زیر مجموعه (دارای مادر)"
|
495 |
|
496 |
+
#: ../core/controllers/field_group.php:645
|
|
|
|
|
497 |
msgid "Default Template"
|
498 |
msgstr "پوسته پیش فرض"
|
499 |
|
500 |
+
#: ../core/controllers/field_group.php:723
|
|
|
|
|
501 |
msgid "Publish"
|
502 |
msgstr "انتشار"
|
503 |
|
504 |
+
#: ../core/controllers/field_group.php:724
|
|
|
|
|
505 |
msgid "Pending Review"
|
506 |
msgstr "در انتظار بررسی"
|
507 |
|
508 |
+
#: ../core/controllers/field_group.php:725
|
|
|
|
|
509 |
msgid "Draft"
|
510 |
msgstr "پیش نویس"
|
511 |
|
512 |
+
#: ../core/controllers/field_group.php:726
|
|
|
|
|
513 |
msgid "Future"
|
514 |
msgstr "شاخص"
|
515 |
|
516 |
+
#: ../core/controllers/field_group.php:727
|
|
|
|
|
517 |
msgid "Private"
|
518 |
msgstr "خصوصی"
|
519 |
|
520 |
+
#: ../core/controllers/field_group.php:728
|
|
|
|
|
521 |
msgid "Revision"
|
522 |
msgstr "بازنگری"
|
523 |
|
524 |
+
#: ../core/controllers/field_group.php:729
|
|
|
|
|
525 |
msgid "Trash"
|
526 |
msgstr "زباله دان"
|
527 |
|
528 |
+
#: ../core/controllers/field_group.php:742
|
|
|
|
|
529 |
msgid "Super Admin"
|
530 |
msgstr "مدیرکل"
|
531 |
|
532 |
+
#: ../core/controllers/field_group.php:757
|
533 |
+
#: ../core/controllers/field_group.php:778
|
534 |
+
#: ../core/controllers/field_group.php:785 ../core/fields/file.php:186
|
535 |
+
#: ../core/fields/image.php:170 ../core/fields/page_link.php:109
|
536 |
+
#: ../core/fields/post_object.php:274 ../core/fields/post_object.php:298
|
537 |
+
#: ../core/fields/relationship.php:601 ../core/fields/relationship.php:625
|
538 |
+
#: ../core/fields/user.php:276
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "All"
|
540 |
msgstr "همه"
|
541 |
|
542 |
+
#: ../core/controllers/field_groups.php:147
|
|
|
|
|
543 |
msgid "Title"
|
544 |
msgstr "عنوان"
|
545 |
|
546 |
+
#: ../core/controllers/field_groups.php:216
|
547 |
+
#: ../core/controllers/field_groups.php:253
|
|
|
|
|
|
|
|
|
548 |
msgid "Changelog"
|
549 |
msgstr "تغییرات"
|
550 |
|
551 |
+
#: ../core/controllers/field_groups.php:217
|
|
|
|
|
552 |
msgid "See what's new in"
|
553 |
+
msgstr "چه چیز جدید است"
|
554 |
|
555 |
+
#: ../core/controllers/field_groups.php:217
|
|
|
|
|
556 |
msgid "version"
|
557 |
msgstr "نسخه"
|
558 |
|
559 |
+
#: ../core/controllers/field_groups.php:219
|
|
|
|
|
560 |
msgid "Resources"
|
561 |
msgstr "منابع"
|
562 |
|
563 |
+
#: ../core/controllers/field_groups.php:221
|
|
|
|
|
564 |
msgid "Getting Started"
|
565 |
+
msgstr "راهنمای شروع"
|
566 |
|
567 |
+
#: ../core/controllers/field_groups.php:222
|
|
|
|
|
568 |
msgid "Field Types"
|
569 |
msgstr "انواع زمینه"
|
570 |
|
571 |
+
#: ../core/controllers/field_groups.php:223
|
|
|
|
|
572 |
msgid "Functions"
|
573 |
msgstr "توابع"
|
574 |
|
575 |
+
#: ../core/controllers/field_groups.php:224
|
|
|
|
|
576 |
msgid "Actions"
|
577 |
+
msgstr "اکشن ها (مربوط به کدنویسی)"
|
578 |
+
|
579 |
+
#: ../core/controllers/field_groups.php:225
|
580 |
+
#: ../core/fields/relationship.php:644
|
|
|
|
|
|
|
|
|
581 |
msgid "Filters"
|
582 |
msgstr "فیلترها"
|
583 |
|
584 |
+
#: ../core/controllers/field_groups.php:226
|
|
|
|
|
585 |
msgid "'How to' guides"
|
586 |
+
msgstr "راهنماهای کوتاه (نمونه کدها برای کدنویسی("
|
587 |
|
588 |
+
#: ../core/controllers/field_groups.php:227
|
|
|
|
|
589 |
msgid "Tutorials"
|
590 |
msgstr "آموزش ها"
|
591 |
|
592 |
+
#: ../core/controllers/field_groups.php:232
|
|
|
|
|
593 |
msgid "Created by"
|
594 |
+
msgstr "برنامه نویسی شده توسط"
|
595 |
|
596 |
+
#: ../core/controllers/field_groups.php:244
|
|
|
|
|
597 |
msgid "Welcome to Advanced Custom Fields"
|
598 |
msgstr "به افزونه زمینه های دلخواه پیشرفته خوش آمدید!"
|
599 |
|
600 |
+
#: ../core/controllers/field_groups.php:245
|
|
|
|
|
601 |
msgid "Thank you for updating to the latest version!"
|
602 |
+
msgstr "از شما برای بروزرسانی به آخرین نسخه ممنون هستیم"
|
603 |
|
604 |
+
#: ../core/controllers/field_groups.php:245
|
|
|
|
|
605 |
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
606 |
msgstr ""
|
607 |
+
"افزونه بیش از گذشته لذت بخش و بهینه شده است. امیدواریم شما هم از آن لذت "
|
608 |
+
"ببرید."
|
|
|
609 |
|
610 |
+
#: ../core/controllers/field_groups.php:252
|
|
|
|
|
611 |
msgid "What’s New"
|
612 |
msgstr "چه چیزی جدید است؟"
|
613 |
|
614 |
+
#: ../core/controllers/field_groups.php:255
|
|
|
|
|
615 |
msgid "Download Add-ons"
|
616 |
+
msgstr "دانلود افزودنی ها"
|
617 |
|
618 |
+
#: ../core/controllers/field_groups.php:309
|
|
|
|
|
619 |
msgid "Activation codes have grown into plugins!"
|
620 |
msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
|
621 |
|
622 |
+
#: ../core/controllers/field_groups.php:310
|
|
|
|
|
623 |
msgid ""
|
624 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
625 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
626 |
"each Add-on will continue to receive updates in the usual way."
|
627 |
msgstr ""
|
628 |
+
"افزودنی ها الان با دریافت و نصب افزونه های جداگانه فعال می شوند. با اینکه "
|
629 |
+
"این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت معمول "
|
630 |
+
"به روز رسانی را دریافت خواهد کرد."
|
631 |
|
632 |
+
#: ../core/controllers/field_groups.php:316
|
|
|
|
|
633 |
msgid "All previous Add-ons have been successfully installed"
|
634 |
+
msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند"
|
635 |
|
636 |
+
#: ../core/controllers/field_groups.php:320
|
|
|
|
|
637 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
638 |
+
msgstr "این سایت از افزودنی های پولی استفاده می کند که لازم است دانلود شوند"
|
639 |
|
640 |
+
#: ../core/controllers/field_groups.php:320
|
|
|
|
|
641 |
msgid "Download your activated Add-ons"
|
642 |
+
msgstr "افزودنی های فعال شده ی خود را دانلود کنید"
|
643 |
|
644 |
+
#: ../core/controllers/field_groups.php:325
|
|
|
|
|
645 |
msgid ""
|
646 |
"This website does not use premium Add-ons and will not be affected by this "
|
647 |
"change."
|
648 |
msgstr ""
|
649 |
"این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
|
650 |
+
"نخواهد گرفت"
|
651 |
|
652 |
+
#: ../core/controllers/field_groups.php:335
|
|
|
|
|
653 |
msgid "Easier Development"
|
654 |
msgstr "توسعه آسانتر"
|
655 |
|
656 |
+
#: ../core/controllers/field_groups.php:337
|
|
|
|
|
657 |
msgid "New Field Types"
|
658 |
msgstr "انواع زمینه جدید"
|
659 |
|
660 |
+
#: ../core/controllers/field_groups.php:339
|
|
|
|
|
661 |
msgid "Taxonomy Field"
|
662 |
msgstr "زمینه طبقه بندی"
|
663 |
|
664 |
+
#: ../core/controllers/field_groups.php:340
|
|
|
|
|
665 |
msgid "User Field"
|
666 |
msgstr "زمینه کاربر"
|
667 |
|
668 |
+
#: ../core/controllers/field_groups.php:341
|
|
|
|
|
669 |
msgid "Email Field"
|
670 |
msgstr "زمینه پست الکترونیکی"
|
671 |
|
672 |
+
#: ../core/controllers/field_groups.php:342
|
|
|
|
|
673 |
msgid "Password Field"
|
674 |
msgstr "زمینه رمزعبور"
|
675 |
|
676 |
+
#: ../core/controllers/field_groups.php:344
|
|
|
|
|
677 |
msgid "Custom Field Types"
|
678 |
msgstr "انواع زمینه دلخواه"
|
679 |
|
680 |
+
#: ../core/controllers/field_groups.php:345
|
|
|
|
|
681 |
msgid ""
|
682 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
683 |
"field types are not compatible with version 4."
|
684 |
msgstr ""
|
685 |
+
"ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، انواع "
|
686 |
+
"زمینه های نسخه 3 با نسخه 4 سازگار نیستند."
|
687 |
|
688 |
+
#: ../core/controllers/field_groups.php:346
|
|
|
|
|
689 |
msgid "Migrating your field types is easy, please"
|
690 |
+
msgstr "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید."
|
|
|
|
|
691 |
|
692 |
+
#: ../core/controllers/field_groups.php:346
|
|
|
|
|
693 |
msgid "follow this tutorial"
|
694 |
+
msgstr "این آموزش را دنبال کنید"
|
695 |
|
696 |
+
#: ../core/controllers/field_groups.php:346
|
|
|
|
|
697 |
msgid "to learn more."
|
698 |
+
msgstr "تا بیشتر بیاموزید"
|
699 |
|
700 |
+
#: ../core/controllers/field_groups.php:348
|
|
|
|
|
701 |
msgid "Actions & Filters"
|
702 |
+
msgstr "اکشن ها و فیلترها"
|
703 |
|
704 |
+
#: ../core/controllers/field_groups.php:349
|
|
|
|
|
705 |
msgid ""
|
706 |
"All actions & filters have received a major facelift to make customizing ACF "
|
707 |
"even easier! Please"
|
708 |
msgstr ""
|
709 |
+
"همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از قبل "
|
710 |
+
"آسانتر شود"
|
|
|
711 |
|
712 |
+
#: ../core/controllers/field_groups.php:349
|
|
|
|
|
713 |
msgid "read this guide"
|
714 |
+
msgstr "لطفا راهنما را مطالعه فرمایید"
|
715 |
|
716 |
+
#: ../core/controllers/field_groups.php:349
|
|
|
|
|
717 |
msgid "to find the updated naming convention."
|
718 |
+
msgstr "تا نامگذاری های جدید را متوجه شوید"
|
719 |
|
720 |
+
#: ../core/controllers/field_groups.php:351
|
|
|
|
|
721 |
msgid "Preview draft is now working!"
|
722 |
+
msgstr "پیش نمایش پیش نویس اکنون کار می کند"
|
723 |
|
724 |
+
#: ../core/controllers/field_groups.php:352
|
|
|
|
|
725 |
msgid "This bug has been squashed along with many other little critters!"
|
726 |
msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!"
|
727 |
|
728 |
+
#: ../core/controllers/field_groups.php:352
|
|
|
|
|
729 |
msgid "See the full changelog"
|
730 |
msgstr "مشاهده تغییرات کامل"
|
731 |
|
732 |
+
#: ../core/controllers/field_groups.php:356
|
|
|
|
|
733 |
msgid "Important"
|
734 |
msgstr "مهم"
|
735 |
|
736 |
+
#: ../core/controllers/field_groups.php:358
|
|
|
|
|
737 |
msgid "Database Changes"
|
738 |
msgstr "تغییرات پایگاه داده"
|
739 |
|
740 |
+
#: ../core/controllers/field_groups.php:359
|
|
|
|
|
741 |
msgid ""
|
742 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
743 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
746 |
"<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
|
747 |
"این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
|
748 |
|
749 |
+
#: ../core/controllers/field_groups.php:361
|
|
|
|
|
750 |
msgid "Potential Issues"
|
751 |
msgstr "مسائل بالقوه"
|
752 |
|
753 |
+
#: ../core/controllers/field_groups.php:362
|
|
|
|
|
754 |
msgid ""
|
755 |
"Do to the sizable changes surounding Add-ons, field types and action/"
|
756 |
"filters, your website may not operate correctly. It is important that you "
|
757 |
"read the full"
|
758 |
msgstr ""
|
759 |
+
"با توجه به تغییرات افزودنی ها، انواع زمینه ها و اکشن ها/فیلترها، ممکن است "
|
760 |
+
"سایت شما به درستی عمل نکند. پس لازم است راهنمای کامل "
|
761 |
|
762 |
+
#: ../core/controllers/field_groups.php:362
|
|
|
|
|
763 |
msgid "Migrating from v3 to v4"
|
764 |
+
msgstr "مهاجرت از نسخه 3 به نسخه 4 را مطالعه کنید"
|
765 |
|
766 |
+
#: ../core/controllers/field_groups.php:362
|
|
|
|
|
767 |
msgid "guide to view the full list of changes."
|
768 |
msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات"
|
769 |
|
770 |
+
#: ../core/controllers/field_groups.php:365
|
|
|
|
|
771 |
msgid "Really Important!"
|
772 |
msgstr "واقعا مهم!"
|
773 |
|
774 |
+
#: ../core/controllers/field_groups.php:365
|
|
|
|
|
775 |
msgid ""
|
776 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
777 |
"please roll back to the latest"
|
778 |
msgstr ""
|
779 |
"اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
|
780 |
+
"تغییرات بروزرسانی کردید، لطفا به نسخه قبل برگردید "
|
781 |
|
782 |
+
#: ../core/controllers/field_groups.php:365
|
|
|
|
|
783 |
msgid "version 3"
|
784 |
msgstr "نسخه 3"
|
785 |
|
786 |
+
#: ../core/controllers/field_groups.php:365
|
|
|
|
|
787 |
msgid "of this plugin."
|
788 |
msgstr "از این افزونه."
|
789 |
|
790 |
+
#: ../core/controllers/field_groups.php:370
|
|
|
|
|
791 |
msgid "Thank You"
|
792 |
msgstr "از شما متشکرم"
|
793 |
|
794 |
+
#: ../core/controllers/field_groups.php:371
|
|
|
|
|
795 |
msgid ""
|
796 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
797 |
"4 beta and for all the support I have received."
|
800 |
"کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
|
801 |
"شما متشکرم."
|
802 |
|
803 |
+
#: ../core/controllers/field_groups.php:372
|
|
|
|
|
804 |
msgid "Without you all, this release would not have been possible!"
|
805 |
+
msgstr "بدون همه شما انتشار این نسخه امکان پذیر نبود!"
|
|
|
|
|
806 |
|
807 |
+
#: ../core/controllers/field_groups.php:376
|
|
|
|
|
808 |
msgid "Changelog for"
|
809 |
msgstr "تغییرات برای"
|
810 |
|
811 |
+
#: ../core/controllers/field_groups.php:393
|
|
|
|
|
812 |
msgid "Learn more"
|
813 |
msgstr "اطلاعات بیشتر"
|
814 |
|
815 |
+
#: ../core/controllers/field_groups.php:399
|
|
|
|
|
816 |
msgid "Overview"
|
817 |
msgstr "بازنگری"
|
818 |
|
819 |
+
#: ../core/controllers/field_groups.php:401
|
|
|
|
|
820 |
msgid ""
|
821 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
822 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
823 |
"need to be individually downloaded, installed and updated."
|
824 |
msgstr ""
|
825 |
+
"پیش از این، قفل همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از "
|
826 |
+
"فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی های "
|
827 |
+
"جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند."
|
828 |
+
|
829 |
+
#: ../core/controllers/field_groups.php:403
|
|
|
|
|
|
|
830 |
msgid ""
|
831 |
"This page will assist you in downloading and installing each available Add-"
|
832 |
"on."
|
833 |
msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
|
834 |
|
835 |
+
#: ../core/controllers/field_groups.php:405
|
|
|
|
|
836 |
msgid "Available Add-ons"
|
837 |
msgstr "افزودنی های موجود"
|
838 |
|
839 |
+
#: ../core/controllers/field_groups.php:407
|
|
|
|
|
840 |
msgid "The following Add-ons have been detected as activated on this website."
|
841 |
+
msgstr "افزودنی های زیر به صورت فعال در این سایت شناسایی شده اند"
|
842 |
+
|
843 |
+
#: ../core/controllers/field_groups.php:420 ../core/fields/file.php:109
|
|
|
|
|
|
|
|
|
|
|
844 |
msgid "Name"
|
845 |
msgstr "نام"
|
846 |
|
847 |
+
#: ../core/controllers/field_groups.php:421
|
|
|
|
|
848 |
msgid "Activation Code"
|
849 |
msgstr "کد فعالسازی"
|
850 |
|
851 |
+
#: ../core/controllers/field_groups.php:453
|
|
|
|
|
852 |
msgid "Flexible Content"
|
853 |
msgstr "محتوای انعطاف پذیر"
|
854 |
|
855 |
+
#: ../core/controllers/field_groups.php:463
|
|
|
|
|
856 |
msgid "Installation"
|
857 |
msgstr "نصب"
|
858 |
|
859 |
+
#: ../core/controllers/field_groups.php:465
|
|
|
|
|
860 |
msgid "For each Add-on available, please perform the following:"
|
861 |
msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:"
|
862 |
|
863 |
+
#: ../core/controllers/field_groups.php:467
|
|
|
|
|
864 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
865 |
+
msgstr "دانلود افزونه افزودنی (پرونده ZIP) در کامپیوتر خود"
|
866 |
|
867 |
+
#: ../core/controllers/field_groups.php:468
|
|
|
|
|
868 |
msgid "Navigate to"
|
869 |
+
msgstr "رفتن به"
|
870 |
|
871 |
+
#: ../core/controllers/field_groups.php:468
|
|
|
|
|
872 |
msgid "Plugins > Add New > Upload"
|
873 |
msgstr "افزونه ها > افزودن > بارگذاری"
|
874 |
|
875 |
+
#: ../core/controllers/field_groups.php:469
|
|
|
|
|
876 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
877 |
msgstr ""
|
878 |
+
"از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب "
|
879 |
+
"و نصب نمایید"
|
880 |
|
881 |
+
#: ../core/controllers/field_groups.php:470
|
|
|
|
|
882 |
msgid ""
|
883 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
884 |
"link"
|
885 |
msgstr ""
|
886 |
+
"هنگامی که یک افزونه دریافت و نصب شده است، روی لینک (( فعال کردن افزونه)) "
|
887 |
+
"کلیک کنید"
|
888 |
|
889 |
+
#: ../core/controllers/field_groups.php:471
|
|
|
|
|
890 |
msgid "The Add-on is now installed and activated!"
|
891 |
msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
|
892 |
|
893 |
+
#: ../core/controllers/field_groups.php:485
|
|
|
|
|
894 |
msgid "Awesome. Let's get to work"
|
895 |
+
msgstr "شگفت انگیزه، نه؟ پس بیا شروع به کار کنیم."
|
896 |
|
897 |
+
#: ../core/controllers/input.php:63
|
|
|
|
|
898 |
msgid "Expand Details"
|
899 |
+
msgstr "نمایش جزئیات"
|
900 |
|
901 |
+
#: ../core/controllers/input.php:64
|
|
|
|
|
902 |
msgid "Collapse Details"
|
903 |
+
msgstr "عدم نمایش جزئیات"
|
904 |
|
905 |
+
#: ../core/controllers/input.php:67
|
|
|
|
|
906 |
msgid "Validation Failed. One or more fields below are required."
|
907 |
+
msgstr "یک یا چند مورد از گزینه های زیر را لازم است تکمیل نمایید"
|
|
|
908 |
|
909 |
+
#: ../core/controllers/upgrade.php:74
|
|
|
|
|
910 |
msgid "Upgrade"
|
911 |
msgstr "بروزرسانی"
|
912 |
|
913 |
+
#: ../core/controllers/upgrade.php:596
|
|
|
|
|
914 |
msgid "Modifying field group options 'show on page'"
|
915 |
+
msgstr "اصلاح گزینه های 'نمایش در برگه' ی گروه زمینه"
|
916 |
|
917 |
+
#: ../core/controllers/upgrade.php:650
|
|
|
|
|
918 |
msgid "Modifying field option 'taxonomy'"
|
919 |
+
msgstr "اصلاح گزینه 'صبقه بندی' زمینه"
|
920 |
|
921 |
+
#: ../core/controllers/upgrade.php:747
|
|
|
|
|
922 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
923 |
+
msgstr "انتقال زمینه های دلخواه کاربر از wp_options به wp_usermeta"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
|
925 |
+
#: ../core/fields/checkbox.php:19 ../core/fields/taxonomy.php:323
|
|
|
|
|
|
|
|
|
|
|
926 |
msgid "Checkbox"
|
927 |
+
msgstr "جعبه انتخاب(چک باکس)"
|
928 |
+
|
929 |
+
#: ../core/fields/checkbox.php:20 ../core/fields/radio.php:19
|
930 |
+
#: ../core/fields/select.php:19 ../core/fields/true_false.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
msgid "Choice"
|
932 |
+
msgstr "انتخاب"
|
933 |
+
|
934 |
+
#: ../core/fields/checkbox.php:146 ../core/fields/radio.php:147
|
935 |
+
#: ../core/fields/select.php:177
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
msgid "Choices"
|
937 |
+
msgstr "انتخاب ها"
|
938 |
+
|
939 |
+
#: ../core/fields/checkbox.php:147 ../core/fields/select.php:178
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Enter each choice on a new line."
|
941 |
+
msgstr "هر انتخاب را در یک خط جدید وارد کنید."
|
942 |
+
|
943 |
+
#: ../core/fields/checkbox.php:148 ../core/fields/select.php:179
|
|
|
|
|
|
|
|
|
|
|
944 |
msgid "For more control, you may specify both a value and label like this:"
|
945 |
+
msgstr "برای کنترل بیشتر، ممکن است هر دو مقدار و برچسب را مانند زیر مشخص کنید:"
|
946 |
+
|
947 |
+
#: ../core/fields/checkbox.php:149 ../core/fields/radio.php:153
|
948 |
+
#: ../core/fields/select.php:180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
msgid "red : Red"
|
950 |
+
msgstr "red : قرمز"
|
951 |
+
|
952 |
+
#: ../core/fields/checkbox.php:149 ../core/fields/radio.php:154
|
953 |
+
#: ../core/fields/select.php:180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
954 |
msgid "blue : Blue"
|
955 |
+
msgstr "blue : آبی"
|
956 |
+
|
957 |
+
#: ../core/fields/checkbox.php:166 ../core/fields/color_picker.php:89
|
958 |
+
#: ../core/fields/email.php:106 ../core/fields/number.php:116
|
959 |
+
#: ../core/fields/radio.php:196 ../core/fields/select.php:197
|
960 |
+
#: ../core/fields/text.php:116 ../core/fields/textarea.php:103
|
961 |
+
#: ../core/fields/true_false.php:94 ../core/fields/wysiwyg.php:277
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
msgid "Default Value"
|
963 |
msgstr "مقدار پیش فرض"
|
964 |
|
965 |
+
#: ../core/fields/checkbox.php:167 ../core/fields/select.php:198
|
|
|
|
|
|
|
|
|
|
|
966 |
msgid "Enter each default value on a new line"
|
967 |
+
msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید"
|
968 |
+
|
969 |
+
#: ../core/fields/checkbox.php:183 ../core/fields/message.php:20
|
970 |
+
#: ../core/fields/radio.php:212 ../core/fields/tab.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
971 |
msgid "Layout"
|
972 |
msgstr "چیدمان"
|
973 |
|
974 |
+
#: ../core/fields/checkbox.php:194 ../core/fields/radio.php:223
|
|
|
|
|
|
|
|
|
|
|
975 |
msgid "Vertical"
|
976 |
msgstr "عمودی"
|
977 |
|
978 |
+
#: ../core/fields/checkbox.php:195 ../core/fields/radio.php:224
|
|
|
|
|
|
|
|
|
|
|
979 |
msgid "Horizontal"
|
980 |
msgstr "افقی"
|
981 |
|
982 |
+
#: ../core/fields/color_picker.php:19
|
|
|
|
|
983 |
msgid "Color Picker"
|
984 |
+
msgstr "انتخاب رنگ"
|
985 |
+
|
986 |
+
#: ../core/fields/color_picker.php:20 ../core/fields/google-map.php:19
|
987 |
+
#: ../core/fields/date_picker/date_picker.php:20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "jQuery"
|
989 |
msgstr "جی کوئری"
|
990 |
|
991 |
+
#: ../core/fields/dummy.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
msgid "Dummy"
|
993 |
msgstr "ساختگی"
|
994 |
|
995 |
+
#: ../core/fields/email.php:19
|
|
|
|
|
996 |
msgid "Email"
|
997 |
msgstr "پست الکترونیکی"
|
998 |
|
999 |
+
#: ../core/fields/email.php:107 ../core/fields/number.php:117
|
1000 |
+
#: ../core/fields/text.php:117 ../core/fields/textarea.php:104
|
1001 |
+
#: ../core/fields/wysiwyg.php:278
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
msgid "Appears when creating a new post"
|
1003 |
+
msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود"
|
1004 |
+
|
1005 |
+
#: ../core/fields/email.php:123 ../core/fields/number.php:133
|
1006 |
+
#: ../core/fields/password.php:105 ../core/fields/text.php:131
|
1007 |
+
#: ../core/fields/textarea.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1008 |
msgid "Placeholder Text"
|
1009 |
msgstr "نگهدارنده مکان متن"
|
1010 |
|
1011 |
+
#: ../core/fields/email.php:124 ../core/fields/number.php:134
|
1012 |
+
#: ../core/fields/password.php:106 ../core/fields/text.php:132
|
1013 |
+
#: ../core/fields/textarea.php:119
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "Appears within the input"
|
1015 |
+
msgstr "در داخل ورودی نمایش داده می شود"
|
1016 |
+
|
1017 |
+
#: ../core/fields/email.php:138 ../core/fields/number.php:148
|
1018 |
+
#: ../core/fields/password.php:120 ../core/fields/text.php:146
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid "Prepend"
|
1020 |
+
msgstr "پیشوند"
|
1021 |
+
|
1022 |
+
#: ../core/fields/email.php:139 ../core/fields/number.php:149
|
1023 |
+
#: ../core/fields/password.php:121 ../core/fields/text.php:147
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
msgid "Appears before the input"
|
1025 |
+
msgstr "قبل از ورودی نمایش داده می شود"
|
1026 |
+
|
1027 |
+
#: ../core/fields/email.php:153 ../core/fields/number.php:163
|
1028 |
+
#: ../core/fields/password.php:135 ../core/fields/text.php:161
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgid "Append"
|
1030 |
+
msgstr "پسوند"
|
1031 |
+
|
1032 |
+
#: ../core/fields/email.php:154 ../core/fields/number.php:164
|
1033 |
+
#: ../core/fields/password.php:136 ../core/fields/text.php:162
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
msgid "Appears after the input"
|
1035 |
+
msgstr "بعد از ورودی نمایش داده می شود"
|
1036 |
|
1037 |
+
#: ../core/fields/file.php:19
|
|
|
|
|
1038 |
msgid "File"
|
1039 |
msgstr "پرونده"
|
1040 |
|
1041 |
+
#: ../core/fields/file.php:20 ../core/fields/image.php:20
|
1042 |
+
#: ../core/fields/wysiwyg.php:37
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1043 |
msgid "Content"
|
1044 |
msgstr "محتوا"
|
1045 |
|
1046 |
+
#: ../core/fields/file.php:26
|
|
|
|
|
1047 |
msgid "Select File"
|
1048 |
msgstr "انتخاب پرونده"
|
1049 |
|
1050 |
+
#: ../core/fields/file.php:27
|
|
|
|
|
1051 |
msgid "Edit File"
|
1052 |
msgstr "ویرایش پرونده"
|
1053 |
|
1054 |
+
#: ../core/fields/file.php:28
|
|
|
|
|
1055 |
msgid "Update File"
|
1056 |
msgstr "بروزرسانی پرونده"
|
1057 |
|
1058 |
+
#: ../core/fields/file.php:29 ../core/fields/image.php:30
|
|
|
|
|
|
|
|
|
|
|
1059 |
msgid "uploaded to this post"
|
1060 |
msgstr "بارگذاری شده در این نوشته"
|
1061 |
|
1062 |
+
#: ../core/fields/file.php:113
|
|
|
|
|
1063 |
msgid "Size"
|
1064 |
msgstr "اندازه"
|
1065 |
|
1066 |
+
#: ../core/fields/file.php:123
|
|
|
|
|
1067 |
msgid "No File Selected"
|
1068 |
+
msgstr "هیچ پرونده ای انتخاب نشده"
|
1069 |
|
1070 |
+
#: ../core/fields/file.php:123
|
|
|
|
|
1071 |
msgid "Add File"
|
1072 |
msgstr "افزودن پرونده"
|
1073 |
|
1074 |
+
#: ../core/fields/file.php:153 ../core/fields/image.php:118
|
1075 |
+
#: ../core/fields/taxonomy.php:371
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1076 |
msgid "Return Value"
|
1077 |
msgstr "مقدار بازگشت"
|
1078 |
|
1079 |
+
#: ../core/fields/file.php:164
|
|
|
|
|
1080 |
msgid "File Object"
|
1081 |
+
msgstr "آبجکت پرونده"
|
1082 |
|
1083 |
+
#: ../core/fields/file.php:165
|
|
|
|
|
1084 |
msgid "File URL"
|
1085 |
msgstr "آدرس پرونده"
|
1086 |
|
1087 |
+
#: ../core/fields/file.php:166
|
|
|
|
|
1088 |
msgid "File ID"
|
1089 |
+
msgstr "شناسه(ID) پرونده"
|
1090 |
+
|
1091 |
+
#: ../core/fields/file.php:175 ../core/fields/image.php:158
|
|
|
|
|
|
|
|
|
|
|
1092 |
msgid "Library"
|
1093 |
msgstr "کتابخانه"
|
1094 |
|
1095 |
+
#: ../core/fields/file.php:187 ../core/fields/image.php:171
|
|
|
|
|
|
|
|
|
|
|
1096 |
msgid "Uploaded to post"
|
1097 |
msgstr "بارگذاری شده در نوشته"
|
1098 |
|
1099 |
+
#: ../core/fields/google-map.php:18
|
|
|
|
|
1100 |
msgid "Google Map"
|
1101 |
msgstr "نقشه گوگل"
|
1102 |
|
1103 |
+
#: ../core/fields/google-map.php:33
|
|
|
|
|
1104 |
msgid "Locating"
|
1105 |
msgstr "مکان یابی"
|
1106 |
|
1107 |
+
#: ../core/fields/google-map.php:34
|
|
|
|
|
1108 |
msgid "Sorry, this browser does not support geolocation"
|
1109 |
+
msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند"
|
1110 |
|
1111 |
+
#: ../core/fields/google-map.php:120
|
|
|
|
|
1112 |
msgid "Clear location"
|
1113 |
+
msgstr "حذف مکان"
|
1114 |
|
1115 |
+
#: ../core/fields/google-map.php:125
|
|
|
|
|
1116 |
msgid "Find current location"
|
1117 |
msgstr "پیدا کردن مکان فعلی"
|
1118 |
|
1119 |
+
#: ../core/fields/google-map.php:126
|
|
|
|
|
1120 |
msgid "Search for address..."
|
1121 |
msgstr "جستجو برای آدرس . . ."
|
1122 |
|
1123 |
+
#: ../core/fields/google-map.php:162
|
|
|
|
|
1124 |
msgid "Center"
|
1125 |
msgstr "مرکز"
|
1126 |
|
1127 |
+
#: ../core/fields/google-map.php:163
|
|
|
|
|
1128 |
msgid "Center the initial map"
|
1129 |
+
msgstr "تقشه اولیه را وسط قرار بده"
|
1130 |
|
1131 |
+
#: ../core/fields/google-map.php:199
|
|
|
|
|
1132 |
msgid "Zoom"
|
1133 |
msgstr "بزرگنمایی"
|
1134 |
|
1135 |
+
#: ../core/fields/google-map.php:200
|
|
|
|
|
1136 |
msgid "Set the initial zoom level"
|
1137 |
+
msgstr "تعین مقدار بزرگنمایی اولیه"
|
1138 |
|
1139 |
+
#: ../core/fields/google-map.php:217
|
|
|
|
|
1140 |
msgid "Height"
|
1141 |
msgstr "ارتفاع"
|
1142 |
|
1143 |
+
#: ../core/fields/google-map.php:218
|
|
|
|
|
1144 |
msgid "Customise the map height"
|
1145 |
msgstr "سفارشی کردن ارتفاع نقشه"
|
1146 |
|
1147 |
+
#: ../core/fields/image.php:19
|
|
|
|
|
1148 |
msgid "Image"
|
1149 |
msgstr "تصویر"
|
1150 |
|
1151 |
+
#: ../core/fields/image.php:27
|
|
|
|
|
1152 |
msgid "Select Image"
|
1153 |
msgstr "انتخاب تصویر"
|
1154 |
|
1155 |
+
#: ../core/fields/image.php:28
|
|
|
|
|
1156 |
msgid "Edit Image"
|
1157 |
msgstr "ویرایش تصویر"
|
1158 |
|
1159 |
+
#: ../core/fields/image.php:29
|
|
|
|
|
1160 |
msgid "Update Image"
|
1161 |
msgstr "بروزرسانی تصویر"
|
1162 |
|
1163 |
+
#: ../core/fields/image.php:83
|
|
|
|
|
1164 |
msgid "Remove"
|
1165 |
+
msgstr "حذف"
|
1166 |
+
|
1167 |
+
#: ../core/fields/image.php:84 ../core/views/meta_box_fields.php:108
|
|
|
|
|
|
|
|
|
|
|
1168 |
msgid "Edit"
|
1169 |
msgstr "ویرایش"
|
1170 |
|
1171 |
+
#: ../core/fields/image.php:90
|
|
|
|
|
1172 |
msgid "No image selected"
|
1173 |
+
msgstr "هیچ تصویری انتخاب نشده"
|
1174 |
|
1175 |
+
#: ../core/fields/image.php:90
|
|
|
|
|
1176 |
msgid "Add Image"
|
1177 |
msgstr "افزودن تصویر"
|
1178 |
|
1179 |
+
#: ../core/fields/image.php:119 ../core/fields/relationship.php:576
|
|
|
|
|
|
|
|
|
|
|
1180 |
msgid "Specify the returned value on front end"
|
1181 |
+
msgstr "مقدار برگشتی در نمایش نهایی را تعیین کنید"
|
1182 |
|
1183 |
+
#: ../core/fields/image.php:129
|
|
|
|
|
1184 |
msgid "Image Object"
|
1185 |
+
msgstr "آبجکت تصویر"
|
1186 |
|
1187 |
+
#: ../core/fields/image.php:130
|
|
|
|
|
1188 |
msgid "Image URL"
|
1189 |
msgstr "آدرس تصویر"
|
1190 |
|
1191 |
+
#: ../core/fields/image.php:131
|
|
|
|
|
1192 |
msgid "Image ID"
|
1193 |
+
msgstr "شناسه(ID) تصویر"
|
1194 |
|
1195 |
+
#: ../core/fields/image.php:139
|
|
|
|
|
1196 |
msgid "Preview Size"
|
1197 |
+
msgstr "اندازه پیش نمایش"
|
1198 |
|
1199 |
+
#: ../core/fields/image.php:140
|
|
|
|
|
1200 |
msgid "Shown when entering data"
|
1201 |
+
msgstr "هنگام وارد کردن داده ها نمایش داده می شود"
|
1202 |
|
1203 |
+
#: ../core/fields/image.php:159
|
|
|
|
|
1204 |
msgid "Limit the media library choice"
|
1205 |
+
msgstr "محدود کردن انتخاب کتابخانه چندرسانه ای"
|
1206 |
+
|
1207 |
+
#: ../core/fields/message.php:19 ../core/fields/message.php:70
|
1208 |
+
#: ../core/fields/true_false.php:79
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1209 |
msgid "Message"
|
1210 |
msgstr "پیام"
|
1211 |
|
1212 |
+
#: ../core/fields/message.php:71
|
|
|
|
|
1213 |
msgid "Text & HTML entered here will appear inline with the fields"
|
1214 |
msgstr ""
|
1215 |
+
"متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد"
|
1216 |
|
1217 |
+
#: ../core/fields/message.php:72
|
|
|
|
|
1218 |
msgid "Please note that all text will first be passed through the wp function "
|
1219 |
+
msgstr "دقت کنید که نکاک متن ها اول از تابع وردپرس عبور خواهند کرد"
|
|
|
|
|
1220 |
|
1221 |
+
#: ../core/fields/number.php:19
|
|
|
|
|
1222 |
msgid "Number"
|
1223 |
msgstr "شماره"
|
1224 |
|
1225 |
+
#: ../core/fields/number.php:178
|
|
|
|
|
1226 |
msgid "Minimum Value"
|
1227 |
msgstr "حداقل مقدار"
|
1228 |
|
1229 |
+
#: ../core/fields/number.php:194
|
|
|
|
|
1230 |
msgid "Maximum Value"
|
1231 |
msgstr "حداکثر مقدار"
|
1232 |
|
1233 |
+
#: ../core/fields/number.php:210
|
|
|
|
|
1234 |
msgid "Step Size"
|
1235 |
msgstr "اندازه مرحله"
|
1236 |
|
1237 |
+
#: ../core/fields/page_link.php:18
|
|
|
|
|
1238 |
msgid "Page Link"
|
1239 |
+
msgstr "پیوند (لینک) برگه/نوشته"
|
1240 |
+
|
1241 |
+
#: ../core/fields/page_link.php:19 ../core/fields/post_object.php:19
|
1242 |
+
#: ../core/fields/relationship.php:19 ../core/fields/taxonomy.php:19
|
1243 |
+
#: ../core/fields/user.php:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1244 |
msgid "Relational"
|
1245 |
+
msgstr "رابطه"
|
1246 |
|
1247 |
+
#: ../core/fields/page_link.php:103 ../core/fields/post_object.php:268
|
1248 |
+
#: ../core/fields/relationship.php:595 ../core/fields/relationship.php:674
|
1249 |
+
#: ../core/views/meta_box_location.php:75
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1250 |
msgid "Post Type"
|
1251 |
msgstr "نوع نوشته"
|
1252 |
|
1253 |
+
#: ../core/fields/page_link.php:127 ../core/fields/post_object.php:317
|
1254 |
+
#: ../core/fields/select.php:214 ../core/fields/taxonomy.php:337
|
1255 |
+
#: ../core/fields/user.php:322
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
msgid "Allow Null?"
|
1257 |
+
msgstr "آیا Null مجاز است؟"
|
1258 |
+
|
1259 |
+
#: ../core/fields/page_link.php:148 ../core/fields/post_object.php:338
|
1260 |
+
#: ../core/fields/select.php:233
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1261 |
msgid "Select multiple values?"
|
1262 |
msgstr "آیا چندین مقدار انتخاب شوند؟"
|
1263 |
|
1264 |
+
#: ../core/fields/password.php:19
|
|
|
|
|
1265 |
msgid "Password"
|
1266 |
msgstr "رمزعبور"
|
1267 |
|
1268 |
+
#: ../core/fields/post_object.php:18
|
|
|
|
|
1269 |
msgid "Post Object"
|
1270 |
+
msgstr "آبجکت یک نوشته"
|
1271 |
+
|
1272 |
+
#: ../core/fields/post_object.php:292 ../core/fields/relationship.php:619
|
|
|
|
|
|
|
|
|
|
|
1273 |
msgid "Filter from Taxonomy"
|
1274 |
+
msgstr "فیلتر از طبقه بندی"
|
1275 |
|
1276 |
+
#: ../core/fields/radio.php:18
|
|
|
|
|
1277 |
msgid "Radio Button"
|
1278 |
msgstr "دکمه رادیویی"
|
1279 |
|
1280 |
+
#: ../core/fields/radio.php:105 ../core/views/meta_box_location.php:91
|
|
|
|
|
|
|
|
|
|
|
1281 |
msgid "Other"
|
1282 |
msgstr "دیگر"
|
1283 |
|
1284 |
+
#: ../core/fields/radio.php:148
|
|
|
|
|
1285 |
msgid "Enter your choices one per line"
|
1286 |
+
msgstr "انتخاب ها را در هر خط وارد کنید"
|
1287 |
|
1288 |
+
#: ../core/fields/radio.php:150
|
|
|
|
|
1289 |
msgid "Red"
|
1290 |
msgstr "قرمز"
|
1291 |
|
1292 |
+
#: ../core/fields/radio.php:151
|
|
|
|
|
1293 |
msgid "Blue"
|
1294 |
msgstr "آبی"
|
1295 |
|
1296 |
+
#: ../core/fields/radio.php:175
|
|
|
|
|
1297 |
msgid "Add 'other' choice to allow for custom values"
|
1298 |
+
msgstr "افزودن گزینه 'دیگر' برای ثبت مقادیر دلخواه"
|
1299 |
|
1300 |
+
#: ../core/fields/radio.php:187
|
|
|
|
|
1301 |
msgid "Save 'other' values to the field's choices"
|
1302 |
+
msgstr "ذخیره مقادیر دیگر در انتخاب های زمینه"
|
1303 |
|
1304 |
+
#: ../core/fields/relationship.php:18
|
|
|
|
|
1305 |
msgid "Relationship"
|
1306 |
msgstr "ارتباط"
|
1307 |
|
1308 |
+
#: ../core/fields/relationship.php:29
|
|
|
|
|
1309 |
msgid "Maximum values reached ( {max} values )"
|
1310 |
+
msgstr "مقادیر به حداکثر رسیده اند ( {حداکثر} مقادیر )"
|
1311 |
|
1312 |
+
#: ../core/fields/relationship.php:429
|
|
|
|
|
1313 |
msgid "Search..."
|
1314 |
msgstr "جستجو . . ."
|
1315 |
|
1316 |
+
#: ../core/fields/relationship.php:440
|
|
|
|
|
1317 |
msgid "Filter by post type"
|
1318 |
+
msgstr "فیلتر توسط نوع نوشته"
|
1319 |
|
1320 |
+
#: ../core/fields/relationship.php:575
|
|
|
|
|
1321 |
msgid "Return Format"
|
1322 |
msgstr "فرمت بازگشت"
|
1323 |
|
1324 |
+
#: ../core/fields/relationship.php:586
|
|
|
|
|
1325 |
msgid "Post Objects"
|
1326 |
+
msgstr "آبجکت های نوشته ها"
|
1327 |
|
1328 |
+
#: ../core/fields/relationship.php:587
|
|
|
|
|
1329 |
msgid "Post IDs"
|
1330 |
+
msgstr "شناسه(ID) های نوشته ها"
|
1331 |
|
1332 |
+
#: ../core/fields/relationship.php:653
|
|
|
|
|
1333 |
msgid "Search"
|
1334 |
msgstr "جستجو"
|
1335 |
|
1336 |
+
#: ../core/fields/relationship.php:654
|
|
|
|
|
1337 |
msgid "Post Type Select"
|
1338 |
msgstr "انتخاب نوع نوشته"
|
1339 |
|
1340 |
+
#: ../core/fields/relationship.php:662
|
|
|
|
|
1341 |
msgid "Elements"
|
1342 |
msgstr "عناصر"
|
1343 |
|
1344 |
+
#: ../core/fields/relationship.php:663
|
|
|
|
|
1345 |
msgid "Selected elements will be displayed in each result"
|
1346 |
+
msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد"
|
1347 |
+
|
1348 |
+
#: ../core/fields/relationship.php:672 ../core/views/meta_box_options.php:106
|
|
|
|
|
|
|
|
|
|
|
1349 |
msgid "Featured Image"
|
1350 |
msgstr "تصویر شاخص"
|
1351 |
|
1352 |
+
#: ../core/fields/relationship.php:673
|
|
|
|
|
1353 |
msgid "Post Title"
|
1354 |
msgstr "عنوان نوشته"
|
1355 |
|
1356 |
+
#: ../core/fields/relationship.php:685
|
|
|
|
|
1357 |
msgid "Maximum posts"
|
1358 |
+
msgstr "حداکثر تعداد نوشته ها"
|
1359 |
+
|
1360 |
+
#: ../core/fields/select.php:18 ../core/fields/select.php:109
|
1361 |
+
#: ../core/fields/taxonomy.php:328 ../core/fields/user.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1362 |
msgid "Select"
|
1363 |
+
msgstr "انتخاب(دراپ باکس)"
|
1364 |
|
1365 |
+
#: ../core/fields/tab.php:19
|
|
|
|
|
1366 |
msgid "Tab"
|
1367 |
msgstr "تب"
|
1368 |
|
1369 |
+
#: ../core/fields/tab.php:68
|
|
|
|
|
1370 |
msgid ""
|
1371 |
"Use \"Tab Fields\" to better organize your edit screen by grouping your "
|
1372 |
"fields together under separate tab headings."
|
1373 |
msgstr ""
|
1374 |
+
"از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر تب "
|
1375 |
+
"ها استفاده کنید. "
|
1376 |
|
1377 |
+
#: ../core/fields/tab.php:69
|
|
|
|
|
1378 |
msgid ""
|
1379 |
"All the fields following this \"tab field\" (or until another \"tab field\" "
|
1380 |
"is defined) will be grouped together."
|
1381 |
msgstr ""
|
1382 |
+
"همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه بندی "
|
1383 |
+
"می شوند."
|
1384 |
|
1385 |
+
#: ../core/fields/tab.php:70
|
|
|
|
|
1386 |
msgid "Use multiple tabs to divide your fields into sections."
|
1387 |
msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید."
|
1388 |
|
1389 |
+
#: ../core/fields/taxonomy.php:18 ../core/fields/taxonomy.php:278
|
|
|
|
|
|
|
|
|
|
|
1390 |
msgid "Taxonomy"
|
1391 |
msgstr "طبقه بندی"
|
1392 |
|
1393 |
+
#: ../core/fields/taxonomy.php:222 ../core/fields/taxonomy.php:231
|
|
|
|
|
|
|
|
|
|
|
1394 |
msgid "None"
|
1395 |
msgstr "هیچ"
|
1396 |
|
1397 |
+
#: ../core/fields/taxonomy.php:312 ../core/fields/user.php:298
|
1398 |
+
#: ../core/views/meta_box_fields.php:77 ../core/views/meta_box_fields.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1399 |
msgid "Field Type"
|
1400 |
msgstr "نوع زمینه"
|
1401 |
|
1402 |
+
#: ../core/fields/taxonomy.php:322 ../core/fields/user.php:307
|
|
|
|
|
|
|
|
|
|
|
1403 |
msgid "Multiple Values"
|
1404 |
msgstr "چندین مقدار"
|
1405 |
|
1406 |
+
#: ../core/fields/taxonomy.php:324 ../core/fields/user.php:309
|
|
|
|
|
|
|
|
|
|
|
1407 |
msgid "Multi Select"
|
1408 |
msgstr "چندین انتخاب"
|
1409 |
|
1410 |
+
#: ../core/fields/taxonomy.php:326 ../core/fields/user.php:311
|
|
|
|
|
|
|
|
|
|
|
1411 |
msgid "Single Value"
|
1412 |
msgstr "تک مقدار"
|
1413 |
|
1414 |
+
#: ../core/fields/taxonomy.php:327
|
|
|
|
|
1415 |
msgid "Radio Buttons"
|
1416 |
msgstr "دکمه های رادیویی"
|
1417 |
|
1418 |
+
#: ../core/fields/taxonomy.php:356
|
|
|
|
|
1419 |
msgid "Load & Save Terms to Post"
|
1420 |
+
msgstr "خواندن و ذخیره دسته(ترم)ها برای نوشته"
|
1421 |
|
1422 |
+
#: ../core/fields/taxonomy.php:364
|
|
|
|
|
1423 |
msgid ""
|
1424 |
"Load value based on the post's terms and update the post's terms on save"
|
1425 |
msgstr ""
|
1426 |
+
"مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام ذخیره "
|
1427 |
+
"به روز رسانی کند"
|
1428 |
|
1429 |
+
#: ../core/fields/taxonomy.php:381
|
|
|
|
|
1430 |
msgid "Term Object"
|
1431 |
+
msgstr "به صورت آبجکت"
|
1432 |
|
1433 |
+
#: ../core/fields/taxonomy.php:382
|
|
|
|
|
1434 |
msgid "Term ID"
|
1435 |
+
msgstr "شناسه(ID) آیتم(ترم)"
|
1436 |
|
1437 |
+
#: ../core/fields/text.php:19
|
|
|
|
|
1438 |
msgid "Text"
|
1439 |
msgstr "متن"
|
1440 |
|
1441 |
+
#: ../core/fields/text.php:176 ../core/fields/textarea.php:164
|
|
|
|
|
|
|
|
|
|
|
1442 |
msgid "Formatting"
|
1443 |
msgstr "قالب بندی"
|
1444 |
|
1445 |
+
#: ../core/fields/text.php:177 ../core/fields/textarea.php:165
|
|
|
|
|
|
|
|
|
|
|
1446 |
msgid "Effects value on front end"
|
1447 |
+
msgstr "موثر بر شیوه نمایش در سایت اصلی"
|
1448 |
+
|
1449 |
+
#: ../core/fields/text.php:186 ../core/fields/textarea.php:174
|
|
|
|
|
|
|
|
|
|
|
1450 |
msgid "No formatting"
|
1451 |
msgstr "بدون قالب بندی"
|
1452 |
|
1453 |
+
#: ../core/fields/text.php:187 ../core/fields/textarea.php:176
|
|
|
|
|
|
|
|
|
|
|
1454 |
msgid "Convert HTML into tags"
|
1455 |
+
msgstr "تبدیل HTML به تگ ها"
|
1456 |
+
|
1457 |
+
#: ../core/fields/text.php:195 ../core/fields/textarea.php:133
|
|
|
|
|
|
|
|
|
|
|
1458 |
msgid "Character Limit"
|
1459 |
+
msgstr "محدودیت کاراکتر"
|
1460 |
+
|
1461 |
+
#: ../core/fields/text.php:196 ../core/fields/textarea.php:134
|
|
|
|
|
|
|
|
|
|
|
1462 |
msgid "Leave blank for no limit"
|
1463 |
msgstr "برای نامحدود بودن این بخش را خالی بگذارید."
|
1464 |
|
1465 |
+
#: ../core/fields/textarea.php:19
|
|
|
|
|
1466 |
msgid "Text Area"
|
1467 |
+
msgstr "باکس متن (متن چند خطی)"
|
1468 |
|
1469 |
+
#: ../core/fields/textarea.php:148
|
|
|
|
|
1470 |
msgid "Rows"
|
1471 |
+
msgstr "سطرها"
|
1472 |
|
1473 |
+
#: ../core/fields/textarea.php:149
|
|
|
|
|
1474 |
msgid "Sets the textarea height"
|
1475 |
+
msgstr "تعیین ارتفاع باکس متن"
|
1476 |
|
1477 |
+
#: ../core/fields/textarea.php:175
|
|
|
|
|
1478 |
msgid "Convert new lines into <br /> tags"
|
1479 |
msgstr "تبدیل خط های جدید به برچسب ها"
|
1480 |
|
1481 |
+
#: ../core/fields/true_false.php:19
|
|
|
|
|
1482 |
msgid "True / False"
|
1483 |
msgstr "صحیح / غلط"
|
1484 |
|
1485 |
+
#: ../core/fields/true_false.php:80
|
|
|
|
|
1486 |
msgid "eg. Show extra content"
|
1487 |
msgstr "به عنوان مثال: نمایش محتوای اضافی"
|
1488 |
|
1489 |
+
#: ../core/fields/user.php:18 ../core/views/meta_box_location.php:94
|
|
|
|
|
|
|
|
|
|
|
1490 |
msgid "User"
|
1491 |
msgstr "کاربر"
|
1492 |
|
1493 |
+
#: ../core/fields/user.php:271
|
|
|
|
|
1494 |
msgid "Filter by role"
|
1495 |
+
msgstr "تفکیک با نقش"
|
1496 |
|
1497 |
+
#: ../core/fields/wysiwyg.php:36
|
|
|
|
|
1498 |
msgid "Wysiwyg Editor"
|
1499 |
msgstr "ویرایشگر دیداری"
|
1500 |
|
1501 |
+
#: ../core/fields/wysiwyg.php:292
|
|
|
|
|
1502 |
msgid "Toolbar"
|
1503 |
msgstr "نوار ابزار"
|
1504 |
|
1505 |
+
#: ../core/fields/wysiwyg.php:324
|
|
|
|
|
1506 |
msgid "Show Media Upload Buttons?"
|
1507 |
+
msgstr "آیا دکمه های بارگذاری رسانه نمایش داده شوند؟"
|
1508 |
+
|
1509 |
+
#: ../core/fields/_base.php:124 ../core/views/meta_box_location.php:74
|
1510 |
+
msgid "Basic"
|
1511 |
+
msgstr "پایه"
|
1512 |
+
|
1513 |
+
#: ../core/fields/date_picker/date_picker.php:19
|
1514 |
+
msgid "Date Picker"
|
1515 |
+
msgstr "تاریخ"
|
1516 |
+
|
1517 |
+
#: ../core/fields/date_picker/date_picker.php:55
|
1518 |
+
msgid "Done"
|
1519 |
+
msgstr "انجام شده"
|
1520 |
+
|
1521 |
+
#: ../core/fields/date_picker/date_picker.php:56
|
1522 |
+
msgid "Today"
|
1523 |
+
msgstr "امروز"
|
1524 |
+
|
1525 |
+
#: ../core/fields/date_picker/date_picker.php:59
|
1526 |
+
msgid "Show a different month"
|
1527 |
+
msgstr "نمایش یک ماه دیگر"
|
1528 |
+
|
1529 |
+
#: ../core/fields/date_picker/date_picker.php:126
|
1530 |
+
msgid "Save format"
|
1531 |
+
msgstr "فرمت ذخیره"
|
1532 |
+
|
1533 |
+
#: ../core/fields/date_picker/date_picker.php:127
|
1534 |
+
msgid ""
|
1535 |
+
"This format will determin the value saved to the database and returned via "
|
1536 |
+
"the API"
|
1537 |
+
msgstr ""
|
1538 |
+
"این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل "
|
1539 |
+
"خواندن است"
|
1540 |
+
|
1541 |
+
#: ../core/fields/date_picker/date_picker.php:128
|
1542 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1543 |
+
msgstr "\"yymmdd\" بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر"
|
1544 |
|
1545 |
+
#: ../core/fields/date_picker/date_picker.php:128
|
1546 |
+
#: ../core/fields/date_picker/date_picker.php:144
|
1547 |
+
msgid "jQuery date formats"
|
1548 |
+
msgstr "فرمت های تاریخ جی کوئری"
|
1549 |
+
|
1550 |
+
#: ../core/fields/date_picker/date_picker.php:142
|
1551 |
+
msgid "Display format"
|
1552 |
+
msgstr "فرمت نمایش"
|
1553 |
+
|
1554 |
+
#: ../core/fields/date_picker/date_picker.php:143
|
1555 |
+
msgid "This format will be seen by the user when entering a value"
|
1556 |
+
msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد"
|
1557 |
+
|
1558 |
+
#: ../core/fields/date_picker/date_picker.php:144
|
1559 |
+
msgid ""
|
1560 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1561 |
+
"about"
|
1562 |
+
msgstr ""
|
1563 |
+
"\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می باشند. "
|
1564 |
+
"اطلاعات بیشتر"
|
1565 |
+
|
1566 |
+
#: ../core/fields/date_picker/date_picker.php:158
|
1567 |
+
msgid "Week Starts On"
|
1568 |
+
msgstr "اولین روز هفته"
|
1569 |
+
|
1570 |
+
#: ../core/views/meta_box_fields.php:24
|
1571 |
msgid "New Field"
|
1572 |
msgstr "زمینه جدید"
|
1573 |
|
1574 |
+
#: ../core/views/meta_box_fields.php:58
|
|
|
|
|
1575 |
msgid "Field type does not exist"
|
1576 |
+
msgstr "نوع زمینه وجود ندارد"
|
1577 |
|
1578 |
+
#: ../core/views/meta_box_fields.php:74
|
|
|
|
|
1579 |
msgid "Field Order"
|
1580 |
+
msgstr "ترتیب زمینه"
|
1581 |
+
|
1582 |
+
#: ../core/views/meta_box_fields.php:75 ../core/views/meta_box_fields.php:127
|
|
|
|
|
|
|
|
|
|
|
1583 |
msgid "Field Label"
|
1584 |
msgstr "برچسب زمینه"
|
1585 |
|
1586 |
+
#: ../core/views/meta_box_fields.php:76 ../core/views/meta_box_fields.php:143
|
|
|
|
|
|
|
|
|
|
|
1587 |
msgid "Field Name"
|
1588 |
msgstr "نام زمینه"
|
1589 |
|
1590 |
+
#: ../core/views/meta_box_fields.php:78
|
|
|
|
|
1591 |
msgid "Field Key"
|
1592 |
msgstr "کلید زمینه"
|
1593 |
|
1594 |
+
#: ../core/views/meta_box_fields.php:90
|
|
|
|
|
1595 |
msgid ""
|
1596 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1597 |
"first field."
|
1598 |
msgstr ""
|
1599 |
+
"هیچ زمینه ای وجود ندارد. روی دکمه<strong>+ افزودن زمینه</strong> کلیک کنید "
|
1600 |
+
"تا اولین زمینه خود را بسازید."
|
1601 |
+
|
1602 |
+
#: ../core/views/meta_box_fields.php:105 ../core/views/meta_box_fields.php:108
|
|
|
|
|
|
|
|
|
|
|
1603 |
msgid "Edit this Field"
|
1604 |
msgstr "ویرایش این زمینه"
|
1605 |
|
1606 |
+
#: ../core/views/meta_box_fields.php:109
|
|
|
|
|
1607 |
msgid "Read documentation for this field"
|
1608 |
+
msgstr "مستندات را برای این زمینه بخوانید"
|
1609 |
|
1610 |
+
#: ../core/views/meta_box_fields.php:109
|
|
|
|
|
1611 |
msgid "Docs"
|
1612 |
+
msgstr "توضیحات"
|
1613 |
|
1614 |
+
#: ../core/views/meta_box_fields.php:110
|
|
|
|
|
1615 |
msgid "Duplicate this Field"
|
1616 |
msgstr "تکثیر این زمینه"
|
1617 |
|
1618 |
+
#: ../core/views/meta_box_fields.php:110
|
|
|
|
|
1619 |
msgid "Duplicate"
|
1620 |
msgstr "تکثیر"
|
1621 |
|
1622 |
+
#: ../core/views/meta_box_fields.php:111
|
|
|
|
|
1623 |
msgid "Delete this Field"
|
1624 |
msgstr "حذف این زمینه"
|
1625 |
|
1626 |
+
#: ../core/views/meta_box_fields.php:111
|
|
|
|
|
1627 |
msgid "Delete"
|
1628 |
msgstr "حذف"
|
1629 |
|
1630 |
+
#: ../core/views/meta_box_fields.php:128
|
|
|
|
|
1631 |
msgid "This is the name which will appear on the EDIT page"
|
1632 |
+
msgstr "این نامی است که در صفحه \"ویرایش\" نمایش داده خواهد شد."
|
1633 |
|
1634 |
+
#: ../core/views/meta_box_fields.php:144
|
|
|
|
|
1635 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1636 |
+
msgstr "تک کلمه، بدون فاصله. خط زیرین و خط تیره ها مجازاند"
|
1637 |
|
1638 |
+
#: ../core/views/meta_box_fields.php:173
|
|
|
|
|
1639 |
msgid "Field Instructions"
|
1640 |
msgstr "دستورالعمل های زمینه"
|
1641 |
|
1642 |
+
#: ../core/views/meta_box_fields.php:174
|
|
|
|
|
1643 |
msgid "Instructions for authors. Shown when submitting data"
|
1644 |
+
msgstr "دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند"
|
|
|
1645 |
|
1646 |
+
#: ../core/views/meta_box_fields.php:187
|
|
|
|
|
1647 |
msgid "Required?"
|
1648 |
msgstr "لازم است؟"
|
1649 |
|
1650 |
+
#: ../core/views/meta_box_fields.php:210
|
|
|
|
|
1651 |
msgid "Conditional Logic"
|
1652 |
msgstr "منطق شرطی"
|
1653 |
|
1654 |
+
#: ../core/views/meta_box_fields.php:261
|
1655 |
+
#: ../core/views/meta_box_location.php:117
|
|
|
|
|
|
|
|
|
1656 |
msgid "is equal to"
|
1657 |
+
msgstr "برابر شود با"
|
1658 |
+
|
1659 |
+
#: ../core/views/meta_box_fields.php:262
|
1660 |
+
#: ../core/views/meta_box_location.php:118
|
|
|
|
|
|
|
|
|
1661 |
msgid "is not equal to"
|
1662 |
+
msgstr "برابر نشود با"
|
1663 |
|
1664 |
+
#: ../core/views/meta_box_fields.php:280
|
|
|
|
|
1665 |
msgid "Show this field when"
|
1666 |
msgstr "نمایش این زمینه موقعی که"
|
1667 |
|
1668 |
+
#: ../core/views/meta_box_fields.php:286
|
|
|
|
|
1669 |
msgid "all"
|
1670 |
msgstr "همه"
|
1671 |
|
1672 |
+
#: ../core/views/meta_box_fields.php:287
|
|
|
|
|
1673 |
msgid "any"
|
1674 |
+
msgstr "هرکدام از"
|
1675 |
|
1676 |
+
#: ../core/views/meta_box_fields.php:290
|
|
|
|
|
1677 |
msgid "these rules are met"
|
1678 |
+
msgstr "این قوانین تلاقی کردند"
|
1679 |
|
1680 |
+
#: ../core/views/meta_box_fields.php:304
|
|
|
|
|
1681 |
msgid "Close Field"
|
1682 |
msgstr "بستن زمینه"
|
1683 |
|
1684 |
+
#: ../core/views/meta_box_fields.php:317
|
|
|
|
|
1685 |
msgid "Drag and drop to reorder"
|
1686 |
+
msgstr "با گرفتن و کشیدن مرتب سازی کنید"
|
1687 |
|
1688 |
+
#: ../core/views/meta_box_fields.php:318
|
|
|
|
|
1689 |
msgid "+ Add Field"
|
1690 |
msgstr "+ افزودن زمینه"
|
1691 |
|
1692 |
+
#: ../core/views/meta_box_location.php:48
|
|
|
|
|
1693 |
msgid "Rules"
|
1694 |
msgstr "قوانین"
|
1695 |
|
1696 |
+
#: ../core/views/meta_box_location.php:49
|
|
|
|
|
1697 |
msgid ""
|
1698 |
"Create a set of rules to determine which edit screens will use these "
|
1699 |
"advanced custom fields"
|
1700 |
msgstr ""
|
1701 |
+
"مجموعه ای از قوانین را بسازید تا مشخص کنید در کدام صفحه ویرایش ، این زمینه "
|
1702 |
+
"های دلخواه سفارشی نمایش داده شوند."
|
1703 |
|
1704 |
+
#: ../core/views/meta_box_location.php:60
|
|
|
|
|
1705 |
msgid "Show this field group if"
|
1706 |
msgstr "نمایش این گروه زمینه اگر"
|
1707 |
|
1708 |
+
#: ../core/views/meta_box_location.php:76
|
|
|
|
|
1709 |
msgid "Logged in User Type"
|
1710 |
+
msgstr "نوع کاربر وارد شده"
|
1711 |
+
|
1712 |
+
#: ../core/views/meta_box_location.php:78
|
1713 |
+
#: ../core/views/meta_box_location.php:79
|
|
|
|
|
|
|
|
|
1714 |
msgid "Post"
|
1715 |
msgstr "نوشته"
|
1716 |
|
1717 |
+
#: ../core/views/meta_box_location.php:80
|
|
|
|
|
1718 |
msgid "Post Category"
|
1719 |
msgstr "دسته بندی نوشته"
|
1720 |
|
1721 |
+
#: ../core/views/meta_box_location.php:81
|
|
|
|
|
1722 |
msgid "Post Format"
|
1723 |
msgstr "فرمت نوشته"
|
1724 |
|
1725 |
+
#: ../core/views/meta_box_location.php:82
|
|
|
|
|
1726 |
msgid "Post Status"
|
1727 |
msgstr "وضعیت نوشته"
|
1728 |
|
1729 |
+
#: ../core/views/meta_box_location.php:83
|
|
|
|
|
1730 |
msgid "Post Taxonomy"
|
1731 |
msgstr "طبقه بندی نوشته"
|
1732 |
|
1733 |
+
#: ../core/views/meta_box_location.php:85
|
1734 |
+
#: ../core/views/meta_box_location.php:86
|
|
|
|
|
|
|
|
|
1735 |
msgid "Page"
|
1736 |
msgstr "برگه"
|
1737 |
|
1738 |
+
#: ../core/views/meta_box_location.php:87
|
|
|
|
|
1739 |
msgid "Page Type"
|
1740 |
msgstr "نوع برگه"
|
1741 |
|
1742 |
+
#: ../core/views/meta_box_location.php:88
|
|
|
|
|
1743 |
msgid "Page Parent"
|
1744 |
msgstr "برگه مادر"
|
1745 |
|
1746 |
+
#: ../core/views/meta_box_location.php:89
|
|
|
|
|
1747 |
msgid "Page Template"
|
1748 |
+
msgstr "قالب برگه"
|
1749 |
|
1750 |
+
#: ../core/views/meta_box_location.php:92
|
|
|
|
|
1751 |
msgid "Attachment"
|
1752 |
msgstr "پیوست"
|
1753 |
|
1754 |
+
#: ../core/views/meta_box_location.php:93
|
|
|
|
|
1755 |
msgid "Taxonomy Term"
|
1756 |
+
msgstr "آیتم طبقه بندی"
|
1757 |
|
1758 |
+
#: ../core/views/meta_box_location.php:146
|
|
|
|
|
1759 |
msgid "and"
|
1760 |
msgstr "و"
|
1761 |
|
1762 |
+
#: ../core/views/meta_box_location.php:161
|
|
|
|
|
1763 |
msgid "Add rule group"
|
1764 |
+
msgstr "افزودن گروه قانون"
|
1765 |
|
1766 |
+
#: ../core/views/meta_box_options.php:25
|
|
|
|
|
1767 |
msgid "Order No."
|
1768 |
+
msgstr "شماره ترتیب"
|
1769 |
|
1770 |
+
#: ../core/views/meta_box_options.php:26
|
|
|
|
|
1771 |
msgid "Field groups are created in order <br />from lowest to highest"
|
1772 |
msgstr ""
|
1773 |
+
"گروه های زمینه به ترتیب از کوچکترین شماره تا بزرگترین شماره نمایش داده می "
|
1774 |
+
"شوند."
|
1775 |
|
1776 |
+
#: ../core/views/meta_box_options.php:42
|
|
|
|
|
1777 |
msgid "Position"
|
1778 |
msgstr "موقعیت"
|
1779 |
|
1780 |
+
#: ../core/views/meta_box_options.php:52
|
|
|
|
|
1781 |
msgid "High (after title)"
|
1782 |
msgstr "بالا (بعد از عنوان)"
|
1783 |
|
1784 |
+
#: ../core/views/meta_box_options.php:53
|
|
|
|
|
1785 |
msgid "Normal (after content)"
|
1786 |
+
msgstr "معمولی (بعد از ادیتور متن)"
|
1787 |
|
1788 |
+
#: ../core/views/meta_box_options.php:54
|
|
|
|
|
1789 |
msgid "Side"
|
1790 |
msgstr "کنار"
|
1791 |
|
1792 |
+
#: ../core/views/meta_box_options.php:64
|
|
|
|
|
1793 |
msgid "Style"
|
1794 |
+
msgstr "شیوه نمایش"
|
1795 |
|
1796 |
+
#: ../core/views/meta_box_options.php:74
|
|
|
|
|
1797 |
msgid "Seamless (no metabox)"
|
1798 |
+
msgstr "بدون متاباکس"
|
1799 |
|
1800 |
+
#: ../core/views/meta_box_options.php:75
|
|
|
|
|
1801 |
msgid "Standard (WP metabox)"
|
1802 |
+
msgstr "استاندارد (دارای متاباکس)"
|
1803 |
|
1804 |
+
#: ../core/views/meta_box_options.php:84
|
|
|
|
|
1805 |
msgid "Hide on screen"
|
1806 |
+
msgstr "مخفی کردن در صفحه"
|
1807 |
|
1808 |
+
#: ../core/views/meta_box_options.php:85
|
|
|
|
|
1809 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1810 |
msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
|
1811 |
|
1812 |
+
#: ../core/views/meta_box_options.php:86
|
|
|
|
|
1813 |
msgid ""
|
1814 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1815 |
"options will be used. (the one with the lowest order number)"
|
1817 |
"اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
|
1818 |
"زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
1819 |
|
1820 |
+
#: ../core/views/meta_box_options.php:96
|
|
|
|
|
1821 |
msgid "Permalink"
|
1822 |
msgstr "پیوند یکتا"
|
1823 |
|
1824 |
+
#: ../core/views/meta_box_options.php:97
|
|
|
|
|
1825 |
msgid "Content Editor"
|
1826 |
+
msgstr "ویرایش گر محتوا(ادیتور اصلی)"
|
1827 |
|
1828 |
+
#: ../core/views/meta_box_options.php:98
|
|
|
|
|
1829 |
msgid "Excerpt"
|
1830 |
msgstr "چکیده"
|
1831 |
|
1832 |
+
#: ../core/views/meta_box_options.php:100
|
|
|
|
|
1833 |
msgid "Discussion"
|
1834 |
msgstr "گفتگو"
|
1835 |
|
1836 |
+
#: ../core/views/meta_box_options.php:101
|
|
|
|
|
1837 |
msgid "Comments"
|
1838 |
msgstr "دیدگاه ها"
|
1839 |
|
1840 |
+
#: ../core/views/meta_box_options.php:102
|
|
|
|
|
1841 |
msgid "Revisions"
|
1842 |
msgstr "بازنگری ها"
|
1843 |
|
1844 |
+
#: ../core/views/meta_box_options.php:103
|
|
|
|
|
1845 |
msgid "Slug"
|
1846 |
msgstr "نامک"
|
1847 |
|
1848 |
+
#: ../core/views/meta_box_options.php:104
|
|
|
|
|
1849 |
msgid "Author"
|
1850 |
msgstr "نویسنده"
|
1851 |
|
1852 |
+
#: ../core/views/meta_box_options.php:105
|
|
|
|
|
1853 |
msgid "Format"
|
1854 |
msgstr "فرمت"
|
1855 |
|
1856 |
+
#: ../core/views/meta_box_options.php:107
|
|
|
|
|
1857 |
msgid "Categories"
|
1858 |
msgstr "دسته ها"
|
1859 |
|
1860 |
+
#: ../core/views/meta_box_options.php:108
|
|
|
|
|
1861 |
msgid "Tags"
|
1862 |
msgstr "برچسب ها"
|
1863 |
|
1864 |
+
#: ../core/views/meta_box_options.php:109
|
|
|
|
|
1865 |
msgid "Send Trackbacks"
|
1866 |
msgstr "ارسال بازتاب ها"
|
1867 |
|
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
@@ -6,8 +6,7 @@ Tested up to: 4.1
|
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
9 |
-
|
10 |
-
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -22,7 +21,7 @@ Advanced Custom Fields is the perfect solution for any wordpress website which n
|
|
22 |
|
23 |
= Field Types =
|
24 |
* Text (type text, api returns text)
|
25 |
-
* Text Area (type text, api returns text
|
26 |
* Number (type number, api returns integer)
|
27 |
* Email (type email, api returns text)
|
28 |
* Password (type password, api returns text)
|
@@ -107,6 +106,9 @@ http://support.advancedcustomfields.com/
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
110 |
= 4.3.9 =
|
111 |
* Core: Added compatibility for WP4 media grid
|
112 |
* Relationship field: Fixed bug showing incorrect post type
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
9 |
+
Customise WordPress with powerful, professional and intuitive fields
|
|
|
10 |
|
11 |
== Description ==
|
12 |
|
21 |
|
22 |
= Field Types =
|
23 |
* Text (type text, api returns text)
|
24 |
+
* Text Area (type text, api returns text)
|
25 |
* Number (type number, api returns integer)
|
26 |
* Email (type email, api returns text)
|
27 |
* Password (type password, api returns text)
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 4.4.0 =
|
110 |
+
* Core: Fixed depreciated warnings
|
111 |
+
|
112 |
= 4.3.9 =
|
113 |
* Core: Added compatibility for WP4 media grid
|
114 |
* Relationship field: Fixed bug showing incorrect post type
|