Version Description
- Core: Added compatibility for WP4 media grid
- Relationship field: Fixed bug showing incorrect post type
- Language: Added Slovak translations - Thanks to wp.sk
- Language: Added Serbo-Croatian translation - thanks to Borisa Djuraskovic
- Language: Updating Persian translation - Thanks to Ghaem Omidi
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.3.9 |
Comparing to | |
See all releases |
Code changes from version 4.3.8 to 4.3.9
- acf.php +2 -2
- core/controllers/everything_fields.php +11 -3
- core/controllers/field_group.php +10 -6
- core/controllers/upgrade.php +23 -20
- core/fields/relationship.php +1 -1
- css/field-group.css +1 -14
- css/global.css +5 -0
- lang/acf-fa_IR.mo +0 -0
- lang/acf-fa_IR.po +1853 -592
- 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 +8 -1
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.3.
|
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.3.
|
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.3.9
|
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.3.9',
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
core/controllers/everything_fields.php
CHANGED
@@ -200,7 +200,7 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
|
|
200 |
function validate_page()
|
201 |
{
|
202 |
// global
|
203 |
-
global $pagenow;
|
204 |
|
205 |
|
206 |
// vars
|
@@ -221,6 +221,14 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
|
|
221 |
}
|
222 |
|
223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
// return
|
225 |
return $return;
|
226 |
}
|
@@ -321,7 +329,7 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
|
|
321 |
$this->data['option_name'] = "";
|
322 |
|
323 |
}
|
324 |
-
elseif( $pagenow == "media.php" )
|
325 |
{
|
326 |
|
327 |
$this->data['page_type'] = "media";
|
@@ -339,7 +347,7 @@ if( !isset($_POST['acf_nonce']) || !wp_verify_nonce($_POST['acf_nonce'], 'input'
|
|
339 |
$this->data['page_action'] = "edit";
|
340 |
$this->data['option_name'] = $_GET['attachment_id'];
|
341 |
}
|
342 |
-
|
343 |
}
|
344 |
|
345 |
|
200 |
function validate_page()
|
201 |
{
|
202 |
// global
|
203 |
+
global $pagenow, $wp_version;
|
204 |
|
205 |
|
206 |
// vars
|
221 |
}
|
222 |
|
223 |
|
224 |
+
// WP4
|
225 |
+
if( $pagenow === 'upload.php' && version_compare($wp_version, '4.0', '>=') ) {
|
226 |
+
|
227 |
+
$return = true;
|
228 |
+
|
229 |
+
}
|
230 |
+
|
231 |
+
|
232 |
// return
|
233 |
return $return;
|
234 |
}
|
329 |
$this->data['option_name'] = "";
|
330 |
|
331 |
}
|
332 |
+
elseif( $pagenow == "media.php" || $pagenow == 'upload.php' )
|
333 |
{
|
334 |
|
335 |
$this->data['page_type'] = "media";
|
347 |
$this->data['page_action'] = "edit";
|
348 |
$this->data['option_name'] = $_GET['attachment_id'];
|
349 |
}
|
350 |
+
|
351 |
}
|
352 |
|
353 |
|
core/controllers/field_group.php
CHANGED
@@ -701,12 +701,16 @@ class acf_field_group
|
|
701 |
|
702 |
case "post_category" :
|
703 |
|
704 |
-
$
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
|
|
|
|
|
|
|
|
710 |
}
|
711 |
|
712 |
break;
|
701 |
|
702 |
case "post_category" :
|
703 |
|
704 |
+
$terms = get_terms( 'category', array( 'hide_empty' => false ) );
|
705 |
+
|
706 |
+
if( !empty($terms) ) {
|
707 |
+
|
708 |
+
foreach( $terms as $term ) {
|
709 |
+
|
710 |
+
$choices[ $term->term_id ] = $term->name;
|
711 |
+
|
712 |
+
}
|
713 |
+
|
714 |
}
|
715 |
|
716 |
break;
|
core/controllers/upgrade.php
CHANGED
@@ -46,30 +46,33 @@ class acf_upgrade
|
|
46 |
return;
|
47 |
}
|
48 |
|
49 |
-
|
50 |
// vars
|
51 |
-
$
|
52 |
-
$
|
53 |
-
|
54 |
-
|
55 |
-
if
|
56 |
-
{
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
// do nothing, this is a fresh install
|
62 |
-
}
|
63 |
-
elseif( $old_version < '4.0.0' && $new_version >= '4.0.0')
|
64 |
-
{
|
65 |
-
$url = admin_url('edit.php?post_type=acf&info=whats-new');
|
66 |
-
wp_redirect( $url );
|
67 |
-
exit;
|
68 |
-
|
69 |
-
}
|
70 |
}
|
71 |
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
// update admin page
|
74 |
add_submenu_page('edit.php?post_type=acf', __('Upgrade','acf'), __('Upgrade','acf'), 'manage_options','acf-upgrade', array($this,'html') );
|
75 |
}
|
46 |
return;
|
47 |
}
|
48 |
|
49 |
+
|
50 |
// vars
|
51 |
+
$plugin_version = apply_filters('acf/get_info', 'version');
|
52 |
+
$acf_version = get_option('acf_version');
|
53 |
+
|
54 |
+
|
55 |
+
// bail early if a new install
|
56 |
+
if( empty($acf_version) ) {
|
57 |
+
|
58 |
+
update_option('acf_version', $plugin_version );
|
59 |
+
return;
|
60 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
|
63 |
|
64 |
+
// bail early if $acf_version is >= $plugin_version
|
65 |
+
if( version_compare( $acf_version, $plugin_version, '>=') ) {
|
66 |
+
|
67 |
+
return;
|
68 |
+
|
69 |
+
}
|
70 |
+
|
71 |
+
|
72 |
+
// update version
|
73 |
+
update_option('acf_version', $plugin_version );
|
74 |
+
|
75 |
+
|
76 |
// update admin page
|
77 |
add_submenu_page('edit.php?post_type=acf', __('Upgrade','acf'), __('Upgrade','acf'), 'manage_options','acf-upgrade', array($this,'html') );
|
78 |
}
|
core/fields/relationship.php
CHANGED
@@ -492,7 +492,7 @@ class acf_field_relationship extends acf_field
|
|
492 |
|
493 |
if( in_array('post_type', $field['result_elements']) )
|
494 |
{
|
495 |
-
$post_type_object = get_post_type_object( get_post_type() );
|
496 |
$title .= $post_type_object->labels->singular_name;
|
497 |
}
|
498 |
|
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 |
|
css/field-group.css
CHANGED
@@ -39,20 +39,7 @@
|
|
39 |
}
|
40 |
|
41 |
#submitdiv .acf-button {
|
42 |
-
|
43 |
-
}
|
44 |
-
|
45 |
-
#submitdiv #delete-action {
|
46 |
-
float: none;
|
47 |
-
margin: 0 0 5px;
|
48 |
-
}
|
49 |
-
|
50 |
-
#submitdiv #publishing-action {
|
51 |
-
float: none;
|
52 |
-
}
|
53 |
-
|
54 |
-
#submitdiv #publishing-action img {
|
55 |
-
display: none;
|
56 |
}
|
57 |
|
58 |
#delete-action .delete-field-group {
|
39 |
}
|
40 |
|
41 |
#submitdiv .acf-button {
|
42 |
+
margin: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
44 |
|
45 |
#delete-action .delete-field-group {
|
css/global.css
CHANGED
@@ -492,6 +492,11 @@ ul.acf-checkbox-list li input {
|
|
492 |
width: 18px;
|
493 |
border-radius: 9px;
|
494 |
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
|
|
|
|
|
495 |
}
|
496 |
|
497 |
.acf-button-edit,
|
492 |
width: 18px;
|
493 |
border-radius: 9px;
|
494 |
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
|
495 |
+
|
496 |
+
-webkit-transition: none;
|
497 |
+
-moz-transition: none;
|
498 |
+
-o-transition: none;
|
499 |
+
transition: none;
|
500 |
}
|
501 |
|
502 |
.acf-button-edit,
|
lang/acf-fa_IR.mo
CHANGED
Binary file
|
lang/acf-fa_IR.po
CHANGED
@@ -2,209 +2,275 @@
|
|
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:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
|
10 |
-
"Language-Team:
|
|
|
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
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"
|
18 |
-
"X-Poedit-SearchPath-0: ..\n"
|
19 |
|
20 |
-
#:
|
21 |
msgid "Field Groups"
|
22 |
msgstr "گروه های زمینه"
|
23 |
|
24 |
-
#:
|
|
|
|
|
|
|
25 |
msgid "Advanced Custom Fields"
|
26 |
msgstr "زمینه های دلخواه پیشرفته"
|
27 |
|
28 |
-
#:
|
29 |
msgid "Add New"
|
30 |
msgstr "افزودن"
|
31 |
|
32 |
-
#:
|
33 |
msgid "Add New Field Group"
|
34 |
msgstr "افزودن گروه زمینه جدید"
|
35 |
|
36 |
-
#:
|
37 |
msgid "Edit Field Group"
|
38 |
msgstr "ویرایش گروه زمینه"
|
39 |
|
40 |
-
#:
|
41 |
msgid "New Field Group"
|
42 |
msgstr "گروه زمینه جدید"
|
43 |
|
44 |
-
#:
|
45 |
msgid "View Field Group"
|
46 |
msgstr "مشاهده گروه زمینه"
|
47 |
|
48 |
-
#:
|
49 |
msgid "Search Field Groups"
|
50 |
msgstr "جستجوی گروه های زمینه"
|
51 |
|
52 |
-
#:
|
53 |
msgid "No Field Groups found"
|
54 |
msgstr "گروه زمینه ای یافت نشد."
|
55 |
|
56 |
-
#:
|
57 |
msgid "No Field Groups found in Trash"
|
58 |
msgstr "گروه زمینه ای در زباله دان یافت نشد."
|
59 |
|
60 |
-
#:
|
|
|
|
|
|
|
61 |
msgid "Custom Fields"
|
62 |
msgstr "زمینه های دلخواه"
|
63 |
|
64 |
-
#:
|
|
|
65 |
msgid "Field group updated."
|
66 |
msgstr "گروه زمینه بروز شد."
|
67 |
|
68 |
-
#:
|
69 |
msgid "Custom field updated."
|
70 |
msgstr "زمینه دلخواه بروز شد."
|
71 |
|
72 |
-
#:
|
73 |
msgid "Custom field deleted."
|
74 |
msgstr "زمینه دلخواه حذف شد."
|
75 |
|
76 |
-
#:
|
77 |
#, php-format
|
78 |
msgid "Field group restored to revision from %s"
|
79 |
msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
|
80 |
|
81 |
-
#:
|
82 |
msgid "Field group published."
|
83 |
msgstr "گروه زمینه انتشار یافت."
|
84 |
|
85 |
-
#:
|
86 |
msgid "Field group saved."
|
87 |
msgstr "گروه زمینه ذخیره شد."
|
88 |
|
89 |
-
#:
|
90 |
msgid "Field group submitted."
|
91 |
msgstr "گروه زمینه ارسال شد."
|
92 |
|
93 |
-
#:
|
94 |
msgid "Field group scheduled for."
|
95 |
msgstr "گروه زمینه برنامه ریزی شده است برای"
|
96 |
|
97 |
-
#:
|
98 |
msgid "Field group draft updated."
|
99 |
msgstr "پیش نویش گروه زمینه بروز شد."
|
100 |
|
101 |
-
#:
|
102 |
msgid "Thumbnail"
|
103 |
msgstr "تصویر بندانگشتی"
|
104 |
|
105 |
-
#:
|
106 |
msgid "Medium"
|
107 |
msgstr "متوسط"
|
108 |
|
109 |
-
#:
|
110 |
msgid "Large"
|
111 |
msgstr "بزرگ"
|
112 |
|
113 |
-
#:
|
114 |
msgid "Full"
|
115 |
msgstr "کامل"
|
116 |
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
#:
|
122 |
-
|
123 |
-
msgstr "نوشته بروز شد."
|
124 |
-
|
125 |
-
#: ../core/actions/export.php:23 ../core/views/meta_box_fields.php:58
|
126 |
msgid "Error"
|
127 |
msgstr "خطا"
|
128 |
|
129 |
-
#:
|
|
|
|
|
130 |
msgid "No ACF groups selected"
|
131 |
msgstr "هیچ گروه زمینه دلخواه پیشرفته انتخاب نشده است."
|
132 |
|
133 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Add-ons"
|
135 |
msgstr "افزودنی ها"
|
136 |
|
137 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "Repeater Field"
|
139 |
msgstr "تکرار کننده زمینه"
|
140 |
|
141 |
-
#:
|
|
|
|
|
142 |
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
143 |
msgstr ""
|
144 |
"ایجاد ردیف های بی نهایت از داده های تکرار شونده به وسیله این رابط کاربری چند "
|
145 |
"منظوره!"
|
146 |
|
147 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Gallery Field"
|
149 |
msgstr "زمینه گالری"
|
150 |
|
151 |
-
#:
|
|
|
|
|
152 |
msgid "Create image galleries in a simple and intuitive interface!"
|
153 |
msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
|
154 |
|
155 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
156 |
msgid "Options Page"
|
157 |
msgstr "برگه تنظیمات"
|
158 |
|
159 |
-
#:
|
|
|
|
|
160 |
msgid "Create global data to use throughout your website!"
|
161 |
msgstr "ایجاد داده جهانی برای استفاده در سرتاسر سایت شما!"
|
162 |
|
163 |
-
#:
|
|
|
|
|
164 |
msgid "Flexible Content Field"
|
165 |
msgstr "زمینه محتوای انعطاف پذیر"
|
166 |
|
167 |
-
#:
|
|
|
|
|
168 |
msgid "Create unique designs with a flexible content layout manager!"
|
169 |
msgstr "ایجاد طرح های انعطاف پذیر با مدیریت چیدمان محتوای انعطاف پذیر!"
|
170 |
|
171 |
-
#:
|
|
|
|
|
172 |
msgid "Gravity Forms Field"
|
173 |
msgstr "زمینه فرم های جذب افراد"
|
174 |
|
175 |
-
#:
|
|
|
|
|
176 |
msgid "Creates a select field populated with Gravity Forms!"
|
177 |
msgstr "ایجاد زمینه برای انتخاب تعدادی از افراد به وسیله فرم های جذب افراد!"
|
178 |
|
179 |
-
#:
|
|
|
|
|
180 |
msgid "Date & Time Picker"
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#:
|
|
|
|
|
184 |
msgid "jQuery date & time picker"
|
185 |
-
msgstr "
|
186 |
|
187 |
-
#:
|
|
|
|
|
188 |
msgid "Location Field"
|
189 |
msgstr "زمینه مکان"
|
190 |
|
191 |
-
#:
|
|
|
|
|
192 |
msgid "Find addresses and coordinates of a desired location"
|
193 |
msgstr "یافتن آدرس و مشخصات مکان مورد نظر"
|
194 |
|
195 |
-
#:
|
|
|
|
|
196 |
msgid "Contact Form 7 Field"
|
197 |
msgstr "زمینه فرم تماس (Contact Form 7)"
|
198 |
|
199 |
-
#:
|
|
|
|
|
200 |
msgid "Assign one or more contact form 7 forms to a post"
|
201 |
msgstr "اختصاص یک یا چند فرم تماس (Contact Form 7) به یک نوشته"
|
202 |
|
203 |
-
#:
|
|
|
|
|
204 |
msgid "Advanced Custom Fields Add-Ons"
|
205 |
msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
|
206 |
|
207 |
-
#:
|
|
|
|
|
208 |
msgid ""
|
209 |
"The following Add-ons are available to increase the functionality of the "
|
210 |
"Advanced Custom Fields plugin."
|
@@ -212,7 +278,9 @@ msgstr ""
|
|
212 |
"افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته در "
|
213 |
"دسترس هستند."
|
214 |
|
215 |
-
#:
|
|
|
|
|
216 |
msgid ""
|
217 |
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
218 |
"included in your theme (does not receive updates)."
|
@@ -220,47 +288,90 @@ msgstr ""
|
|
220 |
"هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
|
221 |
"پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
222 |
|
223 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
224 |
msgid "Installed"
|
225 |
msgstr "نصب شده"
|
226 |
|
227 |
-
#:
|
|
|
|
|
228 |
msgid "Purchase & Install"
|
229 |
msgstr "خرید و نصب"
|
230 |
|
231 |
-
#:
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
#:
|
235 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Download"
|
237 |
msgstr "دریافت"
|
238 |
|
239 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid "Export"
|
241 |
msgstr "برون بری"
|
242 |
|
243 |
-
#:
|
|
|
|
|
244 |
msgid "Export Field Groups"
|
245 |
msgstr "برون بری گروه های زمینه"
|
246 |
|
247 |
-
#:
|
|
|
|
|
248 |
msgid "Field Groups"
|
249 |
msgstr "گروه های زمینه"
|
250 |
|
251 |
-
#:
|
|
|
|
|
252 |
msgid "Select the field groups to be exported"
|
253 |
msgstr "یک گروه زمینه را برای برون بری انتخاب کنید."
|
254 |
|
255 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
256 |
msgid "Export to XML"
|
257 |
msgstr "برون بری به فرمت XML"
|
258 |
|
259 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid "Export to PHP"
|
261 |
msgstr "برون بری به فرمت PHP"
|
262 |
|
263 |
-
#:
|
|
|
|
|
264 |
msgid ""
|
265 |
"ACF will create a .xml export file which is compatible with the native WP "
|
266 |
"import plugin."
|
@@ -268,7 +379,9 @@ msgstr ""
|
|
268 |
"افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
|
269 |
"با افزونه Wordpress Importer سازگار است."
|
270 |
|
271 |
-
#:
|
|
|
|
|
272 |
msgid ""
|
273 |
"Imported field groups <b>will</b> appear in the list of editable field "
|
274 |
"groups. This is useful for migrating fields groups between Wp websites."
|
@@ -277,43 +390,64 @@ msgstr ""
|
|
277 |
"داده خواهند شد</b>. این برای مهاجرت گروه های زمینه در بین سایت های وردپرسی "
|
278 |
"مفید است."
|
279 |
|
280 |
-
#:
|
|
|
|
|
281 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
282 |
msgstr ""
|
283 |
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML )) "
|
284 |
"کلیک کنید."
|
285 |
|
286 |
-
#:
|
|
|
|
|
287 |
msgid "Save the .xml file when prompted"
|
288 |
msgstr "ذخیره پرونده .xml موقعی که این پرونده درخواست می شود."
|
289 |
|
290 |
-
#:
|
|
|
|
|
291 |
msgid "Navigate to Tools » Import and select WordPress"
|
292 |
msgstr "به ((ابزارها > درون ریزی)) بروید و وردپرس (Wordpress) را انتخاب کنید."
|
293 |
|
294 |
-
#:
|
|
|
|
|
295 |
msgid "Install WP import plugin if prompted"
|
296 |
msgstr "نصب افزونه درون ریز وردپرس (Wordpress Importer) در صورت در خواست شما"
|
297 |
|
298 |
-
#:
|
|
|
|
|
299 |
msgid "Upload and import your exported .xml file"
|
300 |
msgstr "بارگذاری و درون ریزی پرونده XML برون بری شده شما."
|
301 |
|
302 |
-
#:
|
|
|
|
|
303 |
msgid "Select your user and ignore Import Attachments"
|
304 |
msgstr "کاربر خود را انتخاب کنید و درون ریزی پیوست ها را رد کنید."
|
305 |
|
306 |
-
#:
|
|
|
|
|
307 |
msgid "That's it! Happy WordPressing"
|
308 |
msgstr "موفق باشید و با خوشحالی با وردپرس کار کنید!"
|
309 |
|
310 |
-
#:
|
|
|
|
|
311 |
msgid "ACF will create the PHP code to include in your theme."
|
312 |
msgstr ""
|
313 |
"افزونه زمینه های دلخواه پیشرفته کد پی اچ پی (PHP) را در پوسته شما قرار خواهد "
|
314 |
"داد."
|
315 |
|
316 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
317 |
msgid ""
|
318 |
"Registered field groups <b>will not</b> appear in the list of editable field "
|
319 |
"groups. This is useful for including fields in themes."
|
@@ -321,7 +455,12 @@ msgstr ""
|
|
321 |
"گروه های زمینه ثبت نام شده در لیست گروه های زمینه قابل ویرایش <b>نمایش داده "
|
322 |
"نخواهند شد</b>. این برای قرار دادن زمینه ها در پوسته مفید است."
|
323 |
|
324 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
325 |
msgid ""
|
326 |
"Please note that if you export and register field groups within the same WP, "
|
327 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
@@ -333,43 +472,73 @@ msgstr ""
|
|
333 |
"برای تعمیر این، لطفا گروه زمینه اورجینال را به زباله دان حرکت دهید یا کد را "
|
334 |
"از پرونده functions.php خود پاک کنید."
|
335 |
|
336 |
-
#:
|
|
|
|
|
337 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
338 |
msgstr ""
|
339 |
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت PHP )) "
|
340 |
"کلیک کنید."
|
341 |
|
342 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
343 |
msgid "Copy the PHP code generated"
|
344 |
msgstr "کپی کردن کد PHP ساخته شده"
|
345 |
|
346 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
347 |
msgid "Paste into your functions.php file"
|
348 |
msgstr "چسباندن در پرونده functions.php شما"
|
349 |
|
350 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
351 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
352 |
msgstr ""
|
353 |
"برای فعالسازی افزودنی ها، کد را ویرایش کنید و از آن در اولین خطوط استفاده "
|
354 |
"کنید."
|
355 |
|
356 |
-
#:
|
|
|
|
|
357 |
msgid "Export Field Groups to PHP"
|
358 |
msgstr "برون بری گروه های زمینه به فرمت PHP"
|
359 |
|
360 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
361 |
msgid "Instructions"
|
362 |
msgstr "دستورالعمل ها"
|
363 |
|
364 |
-
#:
|
|
|
|
|
365 |
msgid "Notes"
|
366 |
msgstr "نکته ها"
|
367 |
|
368 |
-
#:
|
|
|
|
|
369 |
msgid "Include in theme"
|
370 |
msgstr "قرار دادن در پوسته"
|
371 |
|
372 |
-
#:
|
|
|
|
|
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 "
|
@@ -379,7 +548,9 @@ msgstr ""
|
|
379 |
"برای انجام این کار، افزونه را در کنار پوسته تان انتقال دهید و کدهای زیر را "
|
380 |
"به پرونده functions.php اضافه کنید:"
|
381 |
|
382 |
-
#:
|
|
|
|
|
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 "
|
@@ -389,245 +560,435 @@ msgstr ""
|
|
389 |
"به طور ثابت برای فعال کردن حالت کم استفاده کنید. کد زیر را به پرونده "
|
390 |
"functions.php خود <b>قبل از</b> تابع include_once اضافه کنید:"
|
391 |
|
392 |
-
#:
|
|
|
|
|
393 |
msgid "Back to export"
|
394 |
msgstr "بازگشت به برون بری"
|
395 |
|
396 |
-
#:
|
|
|
|
|
397 |
msgid "No field groups were selected"
|
398 |
msgstr "گروه زمینه ای انتخاب نشده است."
|
399 |
|
400 |
-
#:
|
|
|
|
|
401 |
msgid "Move to trash. Are you sure?"
|
402 |
msgstr "انتقال به زباله دان، آیا شما مطمئنید؟"
|
403 |
|
404 |
-
#:
|
|
|
|
|
405 |
msgid "checked"
|
406 |
msgstr "انتخاب شده"
|
407 |
|
408 |
-
#:
|
|
|
|
|
409 |
msgid "No toggle fields available"
|
410 |
msgstr "هیچ زمینه بازشده ای موجود نیست."
|
411 |
|
412 |
-
#:
|
|
|
|
|
413 |
msgid "Field group title is required"
|
414 |
msgstr "عنوان گروه زمینه مورد نیاز است."
|
415 |
|
416 |
-
#:
|
|
|
|
|
417 |
msgid "copy"
|
418 |
msgstr "کپی"
|
419 |
|
420 |
-
#:
|
421 |
-
#:
|
422 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
msgid "or"
|
424 |
msgstr "یا"
|
425 |
|
426 |
-
#:
|
427 |
-
#:
|
428 |
-
#:
|
429 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
msgid "Fields"
|
431 |
msgstr "زمینه ها"
|
432 |
|
433 |
-
#:
|
|
|
|
|
434 |
msgid "Parent fields"
|
435 |
msgstr "زمینه های مادر"
|
436 |
|
437 |
-
#:
|
|
|
|
|
438 |
msgid "Sibling fields"
|
439 |
msgstr "زمینه های برادر"
|
440 |
|
441 |
-
#:
|
|
|
|
|
442 |
msgid "Hide / Show All"
|
443 |
msgstr "مخفی کردن / نمایش همه"
|
444 |
|
445 |
-
#:
|
|
|
|
|
446 |
msgid "Location"
|
447 |
msgstr "مکان"
|
448 |
|
449 |
-
#:
|
|
|
|
|
450 |
msgid "Options"
|
451 |
msgstr "تنظیمات"
|
452 |
|
453 |
-
#:
|
|
|
|
|
454 |
msgid "Show Field Key:"
|
455 |
msgstr "نمایش کلید زمینه:"
|
456 |
|
457 |
-
#:
|
458 |
-
#:
|
459 |
-
#:
|
460 |
-
#:
|
461 |
-
#:
|
462 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
msgid "No"
|
464 |
msgstr "خیر"
|
465 |
|
466 |
-
#:
|
467 |
-
#:
|
468 |
-
#:
|
469 |
-
#:
|
470 |
-
#:
|
471 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
msgid "Yes"
|
473 |
msgstr "بله"
|
474 |
|
475 |
-
#:
|
|
|
|
|
476 |
msgid "Front Page"
|
477 |
msgstr "برگه جلو"
|
478 |
|
479 |
-
#:
|
|
|
|
|
480 |
msgid "Posts Page"
|
481 |
msgstr "برگه نوشته ها"
|
482 |
|
483 |
-
#:
|
|
|
|
|
484 |
msgid "Top Level Page (parent of 0)"
|
485 |
msgstr "بالاترین سطح برگه (مادر از 0) "
|
486 |
|
487 |
-
#:
|
|
|
|
|
488 |
msgid "Parent Page (has children)"
|
489 |
msgstr "برگه مادر (دارای فرزند)"
|
490 |
|
491 |
-
#:
|
|
|
|
|
492 |
msgid "Child Page (has parent)"
|
493 |
msgstr "برگه فرزند (دارای مادر)"
|
494 |
|
495 |
-
#:
|
|
|
|
|
496 |
msgid "Default Template"
|
497 |
msgstr "پوسته پیش فرض"
|
498 |
|
499 |
-
#:
|
|
|
|
|
500 |
msgid "Publish"
|
501 |
msgstr "انتشار"
|
502 |
|
503 |
-
#:
|
|
|
|
|
504 |
msgid "Pending Review"
|
505 |
msgstr "در انتظار بررسی"
|
506 |
|
507 |
-
#:
|
|
|
|
|
508 |
msgid "Draft"
|
509 |
msgstr "پیش نویس"
|
510 |
|
511 |
-
#:
|
|
|
|
|
512 |
msgid "Future"
|
513 |
msgstr "شاخص"
|
514 |
|
515 |
-
#:
|
|
|
|
|
516 |
msgid "Private"
|
517 |
msgstr "خصوصی"
|
518 |
|
519 |
-
#:
|
|
|
|
|
520 |
msgid "Revision"
|
521 |
msgstr "بازنگری"
|
522 |
|
523 |
-
#:
|
|
|
|
|
524 |
msgid "Trash"
|
525 |
msgstr "زباله دان"
|
526 |
|
527 |
-
#:
|
|
|
|
|
528 |
msgid "Super Admin"
|
529 |
msgstr "مدیرکل"
|
530 |
|
531 |
-
#:
|
532 |
-
#:
|
533 |
-
#:
|
534 |
-
#:
|
535 |
-
#:
|
536 |
-
#:
|
537 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
msgid "All"
|
539 |
msgstr "همه"
|
540 |
|
541 |
-
#:
|
|
|
|
|
542 |
msgid "Title"
|
543 |
msgstr "عنوان"
|
544 |
|
545 |
-
#:
|
546 |
-
#:
|
|
|
|
|
|
|
|
|
547 |
msgid "Changelog"
|
548 |
msgstr "تغییرات"
|
549 |
|
550 |
-
#:
|
|
|
|
|
551 |
msgid "See what's new in"
|
552 |
msgstr "تغییرات"
|
553 |
|
554 |
-
#:
|
|
|
|
|
555 |
msgid "version"
|
556 |
msgstr "نسخه"
|
557 |
|
558 |
-
#:
|
|
|
|
|
559 |
msgid "Resources"
|
560 |
msgstr "منابع"
|
561 |
|
562 |
-
#:
|
|
|
|
|
563 |
msgid "Getting Started"
|
564 |
msgstr "شروع"
|
565 |
|
566 |
-
#:
|
|
|
|
|
567 |
msgid "Field Types"
|
568 |
msgstr "انواع زمینه"
|
569 |
|
570 |
-
#:
|
|
|
|
|
571 |
msgid "Functions"
|
572 |
msgstr "توابع"
|
573 |
|
574 |
-
#:
|
|
|
|
|
575 |
msgid "Actions"
|
576 |
msgstr "اعمال"
|
577 |
|
578 |
-
#:
|
579 |
-
#:
|
|
|
|
|
|
|
|
|
580 |
msgid "Filters"
|
581 |
msgstr "فیلترها"
|
582 |
|
583 |
-
#:
|
|
|
|
|
584 |
msgid "'How to' guides"
|
585 |
msgstr "راهنماهای کوتاه (نمونه کدها برای کدنویسی)"
|
586 |
|
587 |
-
#:
|
|
|
|
|
588 |
msgid "Tutorials"
|
589 |
msgstr "آموزش ها"
|
590 |
|
591 |
-
#:
|
|
|
|
|
592 |
msgid "Created by"
|
593 |
-
msgstr "
|
594 |
-
|
595 |
-
#: ../core/controllers/field_groups.php:235
|
596 |
-
msgid "Vote"
|
597 |
-
msgstr "رأی دادن"
|
598 |
-
|
599 |
-
#: ../core/controllers/field_groups.php:236
|
600 |
-
msgid "Follow"
|
601 |
-
msgstr "دنبال کردن"
|
602 |
|
603 |
-
#:
|
|
|
|
|
604 |
msgid "Welcome to Advanced Custom Fields"
|
605 |
msgstr "به افزونه زمینه های دلخواه پیشرفته خوش آمدید!"
|
606 |
|
607 |
-
#:
|
|
|
|
|
608 |
msgid "Thank you for updating to the latest version!"
|
609 |
msgstr "از شما برای بروزرسانی به آخرین نسخه سپاسگزاریم!"
|
610 |
|
611 |
-
#:
|
|
|
|
|
612 |
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
613 |
msgstr ""
|
614 |
-
"استفاده شما از این افزونه برای ما بهتر و لذت بخش تر از هر زمان دیگری است.
|
615 |
-
"امیدواریم شما این افزونه را که توسط قائم امیدی به زبان شیرین پارسی ترجمه
|
616 |
-
"است، دوست داشته باشید."
|
617 |
|
618 |
-
#:
|
|
|
|
|
619 |
msgid "What’s New"
|
620 |
msgstr "چه چیزی جدید است؟"
|
621 |
|
622 |
-
#:
|
|
|
|
|
623 |
msgid "Download Add-ons"
|
624 |
msgstr "دریافت افزودنی ها"
|
625 |
|
626 |
-
#:
|
|
|
|
|
627 |
msgid "Activation codes have grown into plugins!"
|
628 |
msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
|
629 |
|
630 |
-
#:
|
|
|
|
|
631 |
msgid ""
|
632 |
"Add-ons are now activated by downloading and installing individual plugins. "
|
633 |
"Although these plugins will not be hosted on the wordpress.org repository, "
|
@@ -637,19 +998,27 @@ msgstr ""
|
|
637 |
"افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد. هر افزودنی برای دریافت "
|
638 |
"بروزرسانی ها راه معمول را ادامه خواهد داد."
|
639 |
|
640 |
-
#:
|
|
|
|
|
641 |
msgid "All previous Add-ons have been successfully installed"
|
642 |
msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند."
|
643 |
|
644 |
-
#:
|
|
|
|
|
645 |
msgid "This website uses premium Add-ons which need to be downloaded"
|
646 |
msgstr "این سایت از افزودنی های ویژه استفاده می کند که به دریافت نیاز دارند."
|
647 |
|
648 |
-
#:
|
|
|
|
|
649 |
msgid "Download your activated Add-ons"
|
650 |
msgstr "دریافت افزودنی های فعالسازی شده شما"
|
651 |
|
652 |
-
#:
|
|
|
|
|
653 |
msgid ""
|
654 |
"This website does not use premium Add-ons and will not be affected by this "
|
655 |
"change."
|
@@ -657,96 +1026,140 @@ msgstr ""
|
|
657 |
"این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
|
658 |
"نخواهد گرفت."
|
659 |
|
660 |
-
#:
|
|
|
|
|
661 |
msgid "Easier Development"
|
662 |
msgstr "توسعه آسانتر"
|
663 |
|
664 |
-
#:
|
|
|
|
|
665 |
msgid "New Field Types"
|
666 |
msgstr "انواع زمینه جدید"
|
667 |
|
668 |
-
#:
|
|
|
|
|
669 |
msgid "Taxonomy Field"
|
670 |
msgstr "زمینه طبقه بندی"
|
671 |
|
672 |
-
#:
|
|
|
|
|
673 |
msgid "User Field"
|
674 |
msgstr "زمینه کاربر"
|
675 |
|
676 |
-
#:
|
|
|
|
|
677 |
msgid "Email Field"
|
678 |
msgstr "زمینه پست الکترونیکی"
|
679 |
|
680 |
-
#:
|
|
|
|
|
681 |
msgid "Password Field"
|
682 |
msgstr "زمینه رمزعبور"
|
683 |
|
684 |
-
#:
|
|
|
|
|
685 |
msgid "Custom Field Types"
|
686 |
msgstr "انواع زمینه دلخواه"
|
687 |
|
688 |
-
#:
|
|
|
|
|
689 |
msgid ""
|
690 |
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
691 |
"field types are not compatible with version 4."
|
692 |
msgstr ""
|
693 |
-
"ایجاد نوع زمینه
|
694 |
-
"نسخه
|
695 |
|
696 |
-
#:
|
|
|
|
|
697 |
msgid "Migrating your field types is easy, please"
|
698 |
msgstr ""
|
699 |
-
"مهاجرت انواع زمینه
|
|
|
700 |
|
701 |
-
#:
|
|
|
|
|
702 |
msgid "follow this tutorial"
|
703 |
-
msgstr "
|
704 |
|
705 |
-
#:
|
|
|
|
|
706 |
msgid "to learn more."
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#:
|
|
|
|
|
710 |
msgid "Actions & Filters"
|
711 |
msgstr "اعمال و فیلترها"
|
712 |
|
713 |
-
#:
|
|
|
|
|
714 |
msgid ""
|
715 |
"All actions & filters have received a major facelift to make customizing ACF "
|
716 |
"even easier! Please"
|
717 |
msgstr ""
|
718 |
"همه اعمال و فیلترها مورد قبول یک برنامه نویس بزرگ که افزونه زمینه های دلخواه "
|
719 |
-
"پیشرفته وردپرس را به آسانی شخصی سازی می کند هستند! "
|
|
|
720 |
|
721 |
-
#:
|
|
|
|
|
722 |
msgid "read this guide"
|
723 |
-
msgstr "این راهنما
|
724 |
|
725 |
-
#:
|
|
|
|
|
726 |
msgid "to find the updated naming convention."
|
727 |
-
msgstr "
|
728 |
|
729 |
-
#:
|
|
|
|
|
730 |
msgid "Preview draft is now working!"
|
731 |
msgstr "پیش نمایش پیش نویسی که در حال کار است!"
|
732 |
|
733 |
-
#:
|
|
|
|
|
734 |
msgid "This bug has been squashed along with many other little critters!"
|
735 |
msgstr "این مشکل همراه با بسیاری از مشکلات دیگر برطرف شده اند!"
|
736 |
|
737 |
-
#:
|
|
|
|
|
738 |
msgid "See the full changelog"
|
739 |
msgstr "مشاهده تغییرات کامل"
|
740 |
|
741 |
-
#:
|
|
|
|
|
742 |
msgid "Important"
|
743 |
msgstr "مهم"
|
744 |
|
745 |
-
#:
|
|
|
|
|
746 |
msgid "Database Changes"
|
747 |
msgstr "تغییرات پایگاه داده"
|
748 |
|
749 |
-
#:
|
|
|
|
|
750 |
msgid ""
|
751 |
"Absolutely <strong>no</strong> changes have been made to the database "
|
752 |
"between versions 3 and 4. This means you can roll back to version 3 without "
|
@@ -755,11 +1168,15 @@ msgstr ""
|
|
755 |
"<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
|
756 |
"این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
|
757 |
|
758 |
-
#:
|
|
|
|
|
759 |
msgid "Potential Issues"
|
760 |
msgstr "مسائل بالقوه"
|
761 |
|
762 |
-
#:
|
|
|
|
|
763 |
msgid ""
|
764 |
"Do to the sizable changes surounding Add-ons, field types and action/"
|
765 |
"filters, your website may not operate correctly. It is important that you "
|
@@ -768,19 +1185,27 @@ msgstr ""
|
|
768 |
"با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه ها و عمل/فیلترها، ممکن است "
|
769 |
"سایت شما به درستی عمل نکند. این مهم است که شما راهمای کامل را بخوانید."
|
770 |
|
771 |
-
#:
|
|
|
|
|
772 |
msgid "Migrating from v3 to v4"
|
773 |
msgstr "مهاجرت از نسخه 3 به نسخه 4"
|
774 |
|
775 |
-
#:
|
|
|
|
|
776 |
msgid "guide to view the full list of changes."
|
777 |
msgstr "راهنمایی برای مشاهده لیست کاملی از تغییرات"
|
778 |
|
779 |
-
#:
|
|
|
|
|
780 |
msgid "Really Important!"
|
781 |
msgstr "واقعا مهم!"
|
782 |
|
783 |
-
#:
|
|
|
|
|
784 |
msgid ""
|
785 |
"If you updated the ACF plugin without prior knowledge of such changes, "
|
786 |
"please roll back to the latest"
|
@@ -788,19 +1213,27 @@ msgstr ""
|
|
788 |
"اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
|
789 |
"تغییرات بروزرسانی کردید، لطفا به آخرین نسخه برگردید "
|
790 |
|
791 |
-
#:
|
|
|
|
|
792 |
msgid "version 3"
|
793 |
msgstr "نسخه 3"
|
794 |
|
795 |
-
#:
|
|
|
|
|
796 |
msgid "of this plugin."
|
797 |
msgstr "از این افزونه."
|
798 |
|
799 |
-
#:
|
|
|
|
|
800 |
msgid "Thank You"
|
801 |
msgstr "از شما متشکرم"
|
802 |
|
803 |
-
#:
|
|
|
|
|
804 |
msgid ""
|
805 |
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
806 |
"4 beta and for all the support I have received."
|
@@ -809,25 +1242,35 @@ msgstr ""
|
|
809 |
"کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
|
810 |
"شما متشکرم."
|
811 |
|
812 |
-
#:
|
|
|
|
|
813 |
msgid "Without you all, this release would not have been possible!"
|
814 |
msgstr ""
|
815 |
"بدون همه شما فارسی سازی و انتشار این نسخه امکان پذیر نبود! با تشکر ((قائم "
|
816 |
"امیدی)) و ((Elliot Condon))"
|
817 |
|
818 |
-
#:
|
|
|
|
|
819 |
msgid "Changelog for"
|
820 |
msgstr "تغییرات برای"
|
821 |
|
822 |
-
#:
|
|
|
|
|
823 |
msgid "Learn more"
|
824 |
msgstr "اطلاعات بیشتر"
|
825 |
|
826 |
-
#:
|
|
|
|
|
827 |
msgid "Overview"
|
828 |
msgstr "بازنگری"
|
829 |
|
830 |
-
#:
|
|
|
|
|
831 |
msgid ""
|
832 |
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
833 |
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
@@ -838,59 +1281,88 @@ msgstr ""
|
|
838 |
"این است که همه اعمال افزودنی ها جداگانه است و باید به صورت جدا دریافت، نصب و "
|
839 |
"بروزرسانی شوند."
|
840 |
|
841 |
-
#:
|
|
|
|
|
842 |
msgid ""
|
843 |
"This page will assist you in downloading and installing each available Add-"
|
844 |
"on."
|
845 |
msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
|
846 |
|
847 |
-
#:
|
|
|
|
|
848 |
msgid "Available Add-ons"
|
849 |
msgstr "افزودنی های موجود"
|
850 |
|
851 |
-
#:
|
|
|
|
|
852 |
msgid "The following Add-ons have been detected as activated on this website."
|
853 |
msgstr "افزودنی های زیر شناسایی شده اند تا در این سایت فعالسازی شوند."
|
854 |
|
855 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
856 |
msgid "Name"
|
857 |
msgstr "نام"
|
858 |
|
859 |
-
#:
|
|
|
|
|
860 |
msgid "Activation Code"
|
861 |
msgstr "کد فعالسازی"
|
862 |
|
863 |
-
#:
|
|
|
|
|
864 |
msgid "Flexible Content"
|
865 |
msgstr "محتوای انعطاف پذیر"
|
866 |
|
867 |
-
#:
|
|
|
|
|
868 |
msgid "Installation"
|
869 |
msgstr "نصب"
|
870 |
|
871 |
-
#:
|
|
|
|
|
872 |
msgid "For each Add-on available, please perform the following:"
|
873 |
msgstr "برای هر افزودنی موجود، لطفا کارهای زیر را انجام دهید:"
|
874 |
|
875 |
-
#:
|
|
|
|
|
876 |
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
877 |
msgstr "دریافت افزونه افزودنی (پرونده ZIP) در دسکتاپ شما"
|
878 |
|
879 |
-
#:
|
|
|
|
|
880 |
msgid "Navigate to"
|
881 |
msgstr "ناوبری به"
|
882 |
|
883 |
-
#:
|
|
|
|
|
884 |
msgid "Plugins > Add New > Upload"
|
885 |
msgstr "افزونه ها > افزودن > بارگذاری"
|
886 |
|
887 |
-
#:
|
|
|
|
|
888 |
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
889 |
msgstr ""
|
890 |
"از بارگذار برای کاوش استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب و نصب "
|
891 |
"نمایید."
|
892 |
|
893 |
-
#:
|
|
|
|
|
894 |
msgid ""
|
895 |
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
896 |
"link"
|
@@ -898,487 +1370,1044 @@ msgstr ""
|
|
898 |
"هنگامی که یک افزونه دریافت و نصب شده است، روی لینک ((لینک فعال کردن افزونه)) "
|
899 |
"کلیک کنید."
|
900 |
|
901 |
-
#:
|
|
|
|
|
902 |
msgid "The Add-on is now installed and activated!"
|
903 |
msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
|
904 |
|
905 |
-
#:
|
|
|
|
|
906 |
msgid "Awesome. Let's get to work"
|
907 |
-
msgstr "شگفت انگیزه، نه؟ پس بیا
|
908 |
|
909 |
-
#:
|
|
|
|
|
910 |
msgid "Expand Details"
|
911 |
msgstr "بازکردن جزئیات"
|
912 |
|
913 |
-
#:
|
|
|
|
|
914 |
msgid "Collapse Details"
|
915 |
msgstr "باز کردن جزئیات"
|
916 |
|
917 |
-
#:
|
|
|
|
|
918 |
msgid "Validation Failed. One or more fields below are required."
|
919 |
msgstr ""
|
920 |
"اعتبارسنجی شکست خورد. از زمینه های زیر یک یا چند زمینه مورد نیاز هستند."
|
921 |
|
922 |
-
#:
|
|
|
|
|
923 |
msgid "Upgrade"
|
924 |
msgstr "بروزرسانی"
|
925 |
|
926 |
-
#:
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
#: ../core/controllers/upgrade.php:150
|
931 |
-
msgid "credits"
|
932 |
-
msgstr "اعتبارات"
|
933 |
-
|
934 |
-
#: ../core/controllers/upgrade.php:684
|
935 |
msgid "Modifying field group options 'show on page'"
|
936 |
msgstr "گزینه های اصلاح گروه زمینه (نمایش در برگه)"
|
937 |
|
938 |
-
#:
|
|
|
|
|
939 |
msgid "Modifying field option 'taxonomy'"
|
940 |
msgstr "گزینه های اصلاح زمینه (طبقه بندی)"
|
941 |
|
942 |
-
#:
|
|
|
|
|
943 |
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
944 |
msgstr "حرکت کاربر زمینه های دلخواه از wp_options به wp_usermeta"
|
945 |
|
946 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
msgid "Checkbox"
|
948 |
msgstr "جعبه انتخاب"
|
949 |
|
950 |
-
#:
|
951 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
952 |
msgid "Choice"
|
953 |
msgstr "گزینه"
|
954 |
|
955 |
-
#:
|
956 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgid "Choices"
|
958 |
msgstr "گزینه ها"
|
959 |
|
960 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
961 |
msgid "Enter each choice on a new line."
|
962 |
msgstr "هر گزینه را در یک خط جدید وارد کنید."
|
963 |
|
964 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
965 |
msgid "For more control, you may specify both a value and label like this:"
|
966 |
msgstr ""
|
967 |
"برای کنترل بیشتر، شما ممکن است هر دو مقدار و برچسب را شبیه به این مشخص کنید:"
|
968 |
|
969 |
-
#:
|
970 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
971 |
msgid "red : Red"
|
972 |
msgstr "قرمز : قرمز"
|
973 |
|
974 |
-
#:
|
975 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
msgid "blue : Blue"
|
977 |
msgstr "آبی : آبی"
|
978 |
|
979 |
-
#:
|
980 |
-
#:
|
981 |
-
#:
|
982 |
-
#:
|
983 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
984 |
msgid "Default Value"
|
985 |
msgstr "مقدار پیش فرض"
|
986 |
|
987 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "Enter each default value on a new line"
|
989 |
msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید."
|
990 |
|
991 |
-
#:
|
992 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
msgid "Layout"
|
994 |
msgstr "چیدمان"
|
995 |
|
996 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
997 |
msgid "Vertical"
|
998 |
msgstr "عمودی"
|
999 |
|
1000 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1001 |
msgid "Horizontal"
|
1002 |
msgstr "افقی"
|
1003 |
|
1004 |
-
#:
|
|
|
|
|
1005 |
msgid "Color Picker"
|
1006 |
-
msgstr "
|
1007 |
-
|
1008 |
-
#:
|
1009 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid "jQuery"
|
1011 |
msgstr "جی کوئری"
|
1012 |
|
1013 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
msgid "Dummy"
|
1015 |
msgstr "ساختگی"
|
1016 |
|
1017 |
-
#:
|
|
|
|
|
1018 |
msgid "Email"
|
1019 |
msgstr "پست الکترونیکی"
|
1020 |
|
1021 |
-
#:
|
1022 |
-
#:
|
1023 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
msgid "Appears when creating a new post"
|
1025 |
msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود."
|
1026 |
|
1027 |
-
#:
|
1028 |
-
#:
|
1029 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
msgid "Placeholder Text"
|
1031 |
msgstr "نگهدارنده مکان متن"
|
1032 |
|
1033 |
-
#:
|
1034 |
-
#:
|
1035 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1036 |
msgid "Appears within the input"
|
1037 |
msgstr "در داخل ورودی نمایش داده می شود."
|
1038 |
|
1039 |
-
#:
|
1040 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
msgid "Prepend"
|
1042 |
-
msgstr "
|
1043 |
-
|
1044 |
-
#:
|
1045 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1046 |
msgid "Appears before the input"
|
1047 |
msgstr "قبل از ورودی نمایش داده می شود."
|
1048 |
|
1049 |
-
#:
|
1050 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
msgid "Append"
|
1052 |
-
msgstr "
|
1053 |
-
|
1054 |
-
#:
|
1055 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Appears after the input"
|
1057 |
msgstr "بعد از ورودی نمایش داده می شود."
|
1058 |
|
1059 |
-
#:
|
|
|
|
|
1060 |
msgid "File"
|
1061 |
msgstr "پرونده"
|
1062 |
|
1063 |
-
#:
|
1064 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid "Content"
|
1066 |
msgstr "محتوا"
|
1067 |
|
1068 |
-
#:
|
|
|
|
|
1069 |
msgid "Select File"
|
1070 |
msgstr "انتخاب پرونده"
|
1071 |
|
1072 |
-
#:
|
|
|
|
|
1073 |
msgid "Edit File"
|
1074 |
msgstr "ویرایش پرونده"
|
1075 |
|
1076 |
-
#:
|
|
|
|
|
1077 |
msgid "Update File"
|
1078 |
msgstr "بروزرسانی پرونده"
|
1079 |
|
1080 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1081 |
msgid "uploaded to this post"
|
1082 |
msgstr "بارگذاری شده در این نوشته"
|
1083 |
|
1084 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
msgid "No File Selected"
|
1086 |
msgstr "هیچ پرونده ای انتخاب نشده است."
|
1087 |
|
1088 |
-
#:
|
|
|
|
|
1089 |
msgid "Add File"
|
1090 |
msgstr "افزودن پرونده"
|
1091 |
|
1092 |
-
#:
|
1093 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1094 |
msgid "Return Value"
|
1095 |
msgstr "مقدار بازگشت"
|
1096 |
|
1097 |
-
#:
|
|
|
|
|
1098 |
msgid "File Object"
|
1099 |
msgstr "موضوع پرونده"
|
1100 |
|
1101 |
-
#:
|
|
|
|
|
1102 |
msgid "File URL"
|
1103 |
msgstr "آدرس پرونده"
|
1104 |
|
1105 |
-
#:
|
|
|
|
|
1106 |
msgid "File ID"
|
1107 |
msgstr "شناسه پرونده"
|
1108 |
|
1109 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1110 |
msgid "Library"
|
1111 |
msgstr "کتابخانه"
|
1112 |
|
1113 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1114 |
msgid "Uploaded to post"
|
1115 |
msgstr "بارگذاری شده در نوشته"
|
1116 |
|
1117 |
-
#:
|
|
|
|
|
1118 |
msgid "Google Map"
|
1119 |
msgstr "نقشه گوگل"
|
1120 |
|
1121 |
-
#:
|
|
|
|
|
1122 |
msgid "Locating"
|
1123 |
msgstr "مکان یابی"
|
1124 |
|
1125 |
-
#:
|
|
|
|
|
1126 |
msgid "Sorry, this browser does not support geolocation"
|
1127 |
msgstr "با عرض پوزش، این مرورگر از منطقه جغرافیایی پشتیبانی نمی کند."
|
1128 |
|
1129 |
-
#:
|
|
|
|
|
1130 |
msgid "Clear location"
|
1131 |
msgstr "محل پاک کردن"
|
1132 |
|
1133 |
-
#:
|
|
|
|
|
1134 |
msgid "Find current location"
|
1135 |
msgstr "پیدا کردن مکان فعلی"
|
1136 |
|
1137 |
-
#:
|
|
|
|
|
1138 |
msgid "Search for address..."
|
1139 |
msgstr "جستجو برای آدرس . . ."
|
1140 |
|
1141 |
-
#:
|
|
|
|
|
1142 |
msgid "Center"
|
1143 |
msgstr "مرکز"
|
1144 |
|
1145 |
-
#:
|
|
|
|
|
1146 |
msgid "Center the initial map"
|
1147 |
msgstr "مرکز نقشه اولیه"
|
1148 |
|
1149 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1150 |
msgid "Height"
|
1151 |
msgstr "ارتفاع"
|
1152 |
|
1153 |
-
#:
|
|
|
|
|
1154 |
msgid "Customise the map height"
|
1155 |
msgstr "سفارشی کردن ارتفاع نقشه"
|
1156 |
|
1157 |
-
#:
|
|
|
|
|
1158 |
msgid "Image"
|
1159 |
msgstr "تصویر"
|
1160 |
|
1161 |
-
#:
|
|
|
|
|
1162 |
msgid "Select Image"
|
1163 |
msgstr "انتخاب تصویر"
|
1164 |
|
1165 |
-
#:
|
|
|
|
|
1166 |
msgid "Edit Image"
|
1167 |
msgstr "ویرایش تصویر"
|
1168 |
|
1169 |
-
#:
|
|
|
|
|
1170 |
msgid "Update Image"
|
1171 |
msgstr "بروزرسانی تصویر"
|
1172 |
|
1173 |
-
#:
|
|
|
|
|
1174 |
msgid "Remove"
|
1175 |
msgstr "پاک کردن"
|
1176 |
|
1177 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1178 |
msgid "Edit"
|
1179 |
msgstr "ویرایش"
|
1180 |
|
1181 |
-
#:
|
|
|
|
|
1182 |
msgid "No image selected"
|
1183 |
msgstr "هیچ تصویری انتخاب نشده است."
|
1184 |
|
1185 |
-
#:
|
|
|
|
|
1186 |
msgid "Add Image"
|
1187 |
msgstr "افزودن تصویر"
|
1188 |
|
1189 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1190 |
msgid "Specify the returned value on front end"
|
1191 |
msgstr "تعیین مقدار برگشت داده شده در پایان"
|
1192 |
|
1193 |
-
#:
|
|
|
|
|
1194 |
msgid "Image Object"
|
1195 |
msgstr "موضوع تصویر"
|
1196 |
|
1197 |
-
#:
|
|
|
|
|
1198 |
msgid "Image URL"
|
1199 |
msgstr "آدرس تصویر"
|
1200 |
|
1201 |
-
#:
|
|
|
|
|
1202 |
msgid "Image ID"
|
1203 |
msgstr "شناسه تصویر"
|
1204 |
|
1205 |
-
#:
|
|
|
|
|
1206 |
msgid "Preview Size"
|
1207 |
msgstr "حجم پیش نمایش"
|
1208 |
|
1209 |
-
#:
|
|
|
|
|
1210 |
msgid "Shown when entering data"
|
1211 |
msgstr "هنگام وارد کردن داده ها نمایش داده شود."
|
1212 |
|
1213 |
-
#:
|
|
|
|
|
1214 |
msgid "Limit the media library choice"
|
1215 |
msgstr "محدود کردن گزینه کتابخانه چندرسانه ای"
|
1216 |
|
1217 |
-
#:
|
1218 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
msgid "Message"
|
1220 |
msgstr "پیام"
|
1221 |
|
1222 |
-
#:
|
|
|
|
|
1223 |
msgid "Text & HTML entered here will appear inline with the fields"
|
1224 |
msgstr ""
|
1225 |
"متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد."
|
1226 |
|
1227 |
-
#:
|
|
|
|
|
1228 |
msgid "Please note that all text will first be passed through the wp function "
|
1229 |
msgstr ""
|
1230 |
"لطفا توجه داشته باشید که برای اولین بار تمام متن را از طریق تابع وردپرس "
|
1231 |
"انتقال دهید."
|
1232 |
|
1233 |
-
#:
|
|
|
|
|
1234 |
msgid "Number"
|
1235 |
msgstr "شماره"
|
1236 |
|
1237 |
-
#:
|
|
|
|
|
1238 |
msgid "Minimum Value"
|
1239 |
msgstr "حداقل مقدار"
|
1240 |
|
1241 |
-
#:
|
|
|
|
|
1242 |
msgid "Maximum Value"
|
1243 |
msgstr "حداکثر مقدار"
|
1244 |
|
1245 |
-
#:
|
|
|
|
|
1246 |
msgid "Step Size"
|
1247 |
msgstr "اندازه مرحله"
|
1248 |
|
1249 |
-
#:
|
|
|
|
|
1250 |
msgid "Page Link"
|
1251 |
msgstr "پیوند برگه"
|
1252 |
|
1253 |
-
#:
|
1254 |
-
#:
|
1255 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
msgid "Relational"
|
1257 |
msgstr "ارتباط"
|
1258 |
|
1259 |
-
#:
|
1260 |
-
#:
|
1261 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1262 |
msgid "Post Type"
|
1263 |
msgstr "نوع نوشته"
|
1264 |
|
1265 |
-
#:
|
1266 |
-
#:
|
1267 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1268 |
msgid "Allow Null?"
|
1269 |
-
msgstr "آیا صفر
|
1270 |
-
|
1271 |
-
#:
|
1272 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1273 |
msgid "Select multiple values?"
|
1274 |
msgstr "آیا چندین مقدار انتخاب شوند؟"
|
1275 |
|
1276 |
-
#:
|
|
|
|
|
1277 |
msgid "Password"
|
1278 |
msgstr "رمزعبور"
|
1279 |
|
1280 |
-
#:
|
|
|
|
|
1281 |
msgid "Post Object"
|
1282 |
msgstr "موضوع نوشته"
|
1283 |
|
1284 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1285 |
msgid "Filter from Taxonomy"
|
1286 |
msgstr "فیلتر شده از طبقه بندی"
|
1287 |
|
1288 |
-
#:
|
|
|
|
|
1289 |
msgid "Radio Button"
|
1290 |
msgstr "دکمه رادیویی"
|
1291 |
|
1292 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1293 |
msgid "Other"
|
1294 |
msgstr "دیگر"
|
1295 |
|
1296 |
-
#:
|
|
|
|
|
1297 |
msgid "Enter your choices one per line"
|
1298 |
msgstr "گزینه های خود را در هر خط وارد کنید."
|
1299 |
|
1300 |
-
#:
|
|
|
|
|
1301 |
msgid "Red"
|
1302 |
msgstr "قرمز"
|
1303 |
|
1304 |
-
#:
|
|
|
|
|
1305 |
msgid "Blue"
|
1306 |
msgstr "آبی"
|
1307 |
|
1308 |
-
#:
|
|
|
|
|
1309 |
msgid "Add 'other' choice to allow for custom values"
|
1310 |
msgstr "افزودن گزینه ای دیگر تا برای مقادیر دلخواه اجازه دهد."
|
1311 |
|
1312 |
-
#:
|
|
|
|
|
1313 |
msgid "Save 'other' values to the field's choices"
|
1314 |
msgstr "ذخیره مقادیر دیگر برای گزینه های زمینه"
|
1315 |
|
1316 |
-
#:
|
|
|
|
|
1317 |
msgid "Relationship"
|
1318 |
msgstr "ارتباط"
|
1319 |
|
1320 |
-
#:
|
|
|
|
|
1321 |
msgid "Maximum values reached ( {max} values )"
|
1322 |
msgstr "مقادیر به حداکثر رسیده اند { (حداکثر) مقادیر }."
|
1323 |
|
1324 |
-
#:
|
|
|
|
|
1325 |
msgid "Search..."
|
1326 |
msgstr "جستجو . . ."
|
1327 |
|
1328 |
-
#:
|
|
|
|
|
1329 |
msgid "Filter by post type"
|
1330 |
msgstr "فیلتر شده توسط نوع نوشته"
|
1331 |
|
1332 |
-
#:
|
|
|
|
|
1333 |
msgid "Return Format"
|
1334 |
msgstr "فرمت بازگشت"
|
1335 |
|
1336 |
-
#:
|
|
|
|
|
1337 |
msgid "Post Objects"
|
1338 |
msgstr "موضوعات نوشته"
|
1339 |
|
1340 |
-
#:
|
|
|
|
|
1341 |
msgid "Post IDs"
|
1342 |
msgstr "شناسه های نوشته"
|
1343 |
|
1344 |
-
#:
|
|
|
|
|
1345 |
msgid "Search"
|
1346 |
msgstr "جستجو"
|
1347 |
|
1348 |
-
#:
|
|
|
|
|
1349 |
msgid "Post Type Select"
|
1350 |
msgstr "انتخاب نوع نوشته"
|
1351 |
|
1352 |
-
#:
|
|
|
|
|
1353 |
msgid "Elements"
|
1354 |
msgstr "عناصر"
|
1355 |
|
1356 |
-
#:
|
|
|
|
|
1357 |
msgid "Selected elements will be displayed in each result"
|
1358 |
msgstr "عناصر انتخاب شده در هر نتیجه نمایش داده خواهند شد."
|
1359 |
|
1360 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1361 |
msgid "Featured Image"
|
1362 |
msgstr "تصویر شاخص"
|
1363 |
|
1364 |
-
#:
|
|
|
|
|
1365 |
msgid "Post Title"
|
1366 |
msgstr "عنوان نوشته"
|
1367 |
|
1368 |
-
#:
|
|
|
|
|
1369 |
msgid "Maximum posts"
|
1370 |
msgstr "حداکثر نوشته ها"
|
1371 |
|
1372 |
-
#:
|
1373 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1374 |
msgid "Select"
|
1375 |
msgstr "انتخاب"
|
1376 |
|
1377 |
-
#:
|
|
|
|
|
1378 |
msgid "Tab"
|
1379 |
msgstr "تب"
|
1380 |
|
1381 |
-
#:
|
|
|
|
|
1382 |
msgid ""
|
1383 |
"Use \"Tab Fields\" to better organize your edit screen by grouping your "
|
1384 |
"fields together under separate tab headings."
|
@@ -1386,7 +2415,9 @@ msgstr ""
|
|
1386 |
"استفاده از ((تب زمینه ها)) برای سازماندهی بهتر صفحه ویرایش توسط گروه بندی "
|
1387 |
"زمینه های شما با هم تحت سرفصل تب جدا شده"
|
1388 |
|
1389 |
-
#:
|
|
|
|
|
1390 |
msgid ""
|
1391 |
"All the fields following this \"tab field\" (or until another \"tab field\" "
|
1392 |
"is defined) will be grouped together."
|
@@ -1394,207 +2425,278 @@ msgstr ""
|
|
1394 |
"همه زمینه های تحت این >تب زمینه< (یا تا زمانی دیگر که >تب زمینه< تعریف شده "
|
1395 |
"است) با هم گروه بندی می شوند."
|
1396 |
|
1397 |
-
#:
|
|
|
|
|
1398 |
msgid "Use multiple tabs to divide your fields into sections."
|
1399 |
msgstr "از چندین تب برای تقسیم زمینه های خود به بخش های مختلف استفاده کنید."
|
1400 |
|
1401 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1402 |
msgid "Taxonomy"
|
1403 |
msgstr "طبقه بندی"
|
1404 |
|
1405 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1406 |
msgid "None"
|
1407 |
msgstr "هیچ"
|
1408 |
|
1409 |
-
#:
|
1410 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1411 |
msgid "Field Type"
|
1412 |
msgstr "نوع زمینه"
|
1413 |
|
1414 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1415 |
msgid "Multiple Values"
|
1416 |
msgstr "چندین مقدار"
|
1417 |
|
1418 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1419 |
msgid "Multi Select"
|
1420 |
msgstr "چندین انتخاب"
|
1421 |
|
1422 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1423 |
msgid "Single Value"
|
1424 |
msgstr "تک مقدار"
|
1425 |
|
1426 |
-
#:
|
|
|
|
|
1427 |
msgid "Radio Buttons"
|
1428 |
msgstr "دکمه های رادیویی"
|
1429 |
|
1430 |
-
#:
|
|
|
|
|
1431 |
msgid "Load & Save Terms to Post"
|
1432 |
msgstr "بارگذاری و ذخیره دوره ها برای نوشته"
|
1433 |
|
1434 |
-
#:
|
|
|
|
|
1435 |
msgid ""
|
1436 |
"Load value based on the post's terms and update the post's terms on save"
|
1437 |
msgstr ""
|
1438 |
"بارگذاری مقدار بر اساس شرایط نوشته و بروزرسانی شرایط نوشته در ذخیره کردن"
|
1439 |
|
1440 |
-
#:
|
|
|
|
|
1441 |
msgid "Term Object"
|
1442 |
msgstr "موضوع دوره"
|
1443 |
|
1444 |
-
#:
|
|
|
|
|
1445 |
msgid "Term ID"
|
1446 |
msgstr "شناسه دوره"
|
1447 |
|
1448 |
-
#:
|
|
|
|
|
1449 |
msgid "Text"
|
1450 |
msgstr "متن"
|
1451 |
|
1452 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1453 |
msgid "Formatting"
|
1454 |
msgstr "قالب بندی"
|
1455 |
|
1456 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1457 |
msgid "Effects value on front end"
|
1458 |
msgstr "مقدار افکت ها در پایان"
|
1459 |
|
1460 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1461 |
msgid "No formatting"
|
1462 |
msgstr "بدون قالب بندی"
|
1463 |
|
1464 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1465 |
msgid "Convert HTML into tags"
|
1466 |
msgstr "تبدیل HTML به برچسب ها"
|
1467 |
|
1468 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1469 |
msgid "Character Limit"
|
1470 |
msgstr "محدودیت نویسه"
|
1471 |
|
1472 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1473 |
msgid "Leave blank for no limit"
|
1474 |
msgstr "برای نامحدود بودن این بخش را خالی بگذارید."
|
1475 |
|
1476 |
-
#:
|
|
|
|
|
1477 |
msgid "Text Area"
|
1478 |
-
msgstr "
|
1479 |
-
|
1480 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1481 |
msgid "Convert new lines into <br /> tags"
|
1482 |
msgstr "تبدیل خط های جدید به برچسب ها"
|
1483 |
|
1484 |
-
#:
|
|
|
|
|
1485 |
msgid "True / False"
|
1486 |
msgstr "صحیح / غلط"
|
1487 |
|
1488 |
-
#:
|
|
|
|
|
1489 |
msgid "eg. Show extra content"
|
1490 |
msgstr "به عنوان مثال: نمایش محتوای اضافی"
|
1491 |
|
1492 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1493 |
msgid "User"
|
1494 |
msgstr "کاربر"
|
1495 |
|
1496 |
-
#:
|
|
|
|
|
1497 |
msgid "Filter by role"
|
1498 |
msgstr "فیلتر شده توسط قانون"
|
1499 |
|
1500 |
-
#:
|
|
|
|
|
1501 |
msgid "Wysiwyg Editor"
|
1502 |
msgstr "ویرایشگر دیداری"
|
1503 |
|
1504 |
-
#:
|
|
|
|
|
1505 |
msgid "Toolbar"
|
1506 |
msgstr "نوار ابزار"
|
1507 |
|
1508 |
-
#:
|
|
|
|
|
1509 |
msgid "Show Media Upload Buttons?"
|
1510 |
msgstr "آیا دکمه های بارگذاری رسانه ها نمایش داده شوند؟"
|
1511 |
|
1512 |
-
#:
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
#: ../core/fields/date_picker/date_picker.php:19
|
1517 |
-
msgid "Date Picker"
|
1518 |
-
msgstr "چیننده تاریخ"
|
1519 |
-
|
1520 |
-
#: ../core/fields/date_picker/date_picker.php:55
|
1521 |
-
msgid "Done"
|
1522 |
-
msgstr "انجام شده"
|
1523 |
-
|
1524 |
-
#: ../core/fields/date_picker/date_picker.php:56
|
1525 |
-
msgid "Today"
|
1526 |
-
msgstr "امروز"
|
1527 |
-
|
1528 |
-
#: ../core/fields/date_picker/date_picker.php:59
|
1529 |
-
msgid "Show a different month"
|
1530 |
-
msgstr "نمایش یک ماه مختلف"
|
1531 |
-
|
1532 |
-
#: ../core/fields/date_picker/date_picker.php:126
|
1533 |
-
msgid "Save format"
|
1534 |
-
msgstr "فرمت ذخیره"
|
1535 |
-
|
1536 |
-
#: ../core/fields/date_picker/date_picker.php:127
|
1537 |
-
msgid ""
|
1538 |
-
"This format will determin the value saved to the database and returned via "
|
1539 |
-
"the API"
|
1540 |
-
msgstr ""
|
1541 |
-
"این فرمت مقدار ذخیره شده را برای پایگاه داده تعیین خواهد کرد و از طریق رابط "
|
1542 |
-
"برنامه نویسی (API) برمی گردد."
|
1543 |
-
|
1544 |
-
#: ../core/fields/date_picker/date_picker.php:128
|
1545 |
-
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1546 |
-
msgstr "(روز/ماه/سال) بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر!"
|
1547 |
-
|
1548 |
-
#: ../core/fields/date_picker/date_picker.php:128
|
1549 |
-
#: ../core/fields/date_picker/date_picker.php:144
|
1550 |
-
msgid "jQuery date formats"
|
1551 |
-
msgstr "قالب های تاریخ جی کوئری"
|
1552 |
-
|
1553 |
-
#: ../core/fields/date_picker/date_picker.php:142
|
1554 |
-
msgid "Display format"
|
1555 |
-
msgstr "فرمت نمایش"
|
1556 |
-
|
1557 |
-
#: ../core/fields/date_picker/date_picker.php:143
|
1558 |
-
msgid "This format will be seen by the user when entering a value"
|
1559 |
-
msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد."
|
1560 |
-
|
1561 |
-
#: ../core/fields/date_picker/date_picker.php:144
|
1562 |
-
msgid ""
|
1563 |
-
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1564 |
-
"about"
|
1565 |
-
msgstr ""
|
1566 |
-
"(روز/ماه/سال) و (ماه/روز/سال) پر استفاده ترین قالب های نمایش تاریخ می باشند. "
|
1567 |
-
"اطلاعات بیشتر!"
|
1568 |
-
|
1569 |
-
#: ../core/fields/date_picker/date_picker.php:158
|
1570 |
-
msgid "Week Starts On"
|
1571 |
-
msgstr "هفته شروع می شود در"
|
1572 |
-
|
1573 |
-
#: ../core/views/meta_box_fields.php:24
|
1574 |
msgid "New Field"
|
1575 |
msgstr "زمینه جدید"
|
1576 |
|
1577 |
-
#:
|
|
|
|
|
1578 |
msgid "Field type does not exist"
|
1579 |
msgstr "نوع زمینه وجود ندارد."
|
1580 |
|
1581 |
-
#:
|
|
|
|
|
1582 |
msgid "Field Order"
|
1583 |
msgstr "شماره زمینه"
|
1584 |
|
1585 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1586 |
msgid "Field Label"
|
1587 |
msgstr "برچسب زمینه"
|
1588 |
|
1589 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1590 |
msgid "Field Name"
|
1591 |
msgstr "نام زمینه"
|
1592 |
|
1593 |
-
#:
|
|
|
|
|
1594 |
msgid "Field Key"
|
1595 |
msgstr "کلید زمینه"
|
1596 |
|
1597 |
-
#:
|
|
|
|
|
1598 |
msgid ""
|
1599 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1600 |
"first field."
|
@@ -1602,102 +2704,157 @@ msgstr ""
|
|
1602 |
"هیچ زمینه ای وجود ندارد. روی دکمه <strong> + افزودن زمینه </strong> کلیک "
|
1603 |
"کنید تا اولین زمینه خود را بسازید."
|
1604 |
|
1605 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1606 |
msgid "Edit this Field"
|
1607 |
msgstr "ویرایش این زمینه"
|
1608 |
|
1609 |
-
#:
|
|
|
|
|
1610 |
msgid "Read documentation for this field"
|
1611 |
msgstr "مستندات را برای این زمینه بخوانید."
|
1612 |
|
1613 |
-
#:
|
|
|
|
|
1614 |
msgid "Docs"
|
1615 |
-
msgstr "
|
1616 |
|
1617 |
-
#:
|
|
|
|
|
1618 |
msgid "Duplicate this Field"
|
1619 |
msgstr "تکثیر این زمینه"
|
1620 |
|
1621 |
-
#:
|
|
|
|
|
1622 |
msgid "Duplicate"
|
1623 |
msgstr "تکثیر"
|
1624 |
|
1625 |
-
#:
|
|
|
|
|
1626 |
msgid "Delete this Field"
|
1627 |
msgstr "حذف این زمینه"
|
1628 |
|
1629 |
-
#:
|
|
|
|
|
1630 |
msgid "Delete"
|
1631 |
msgstr "حذف"
|
1632 |
|
1633 |
-
#:
|
|
|
|
|
1634 |
msgid "This is the name which will appear on the EDIT page"
|
1635 |
msgstr "این نامی است که در برگه ویرایش نمایش داده خواهد شد."
|
1636 |
|
1637 |
-
#:
|
|
|
|
|
1638 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1639 |
msgstr "تک کلمه، بدون فاصله، خط زیرین و خط تیره ها قبول هستند."
|
1640 |
|
1641 |
-
#:
|
|
|
|
|
1642 |
msgid "Field Instructions"
|
1643 |
msgstr "دستورالعمل های زمینه"
|
1644 |
|
1645 |
-
#:
|
|
|
|
|
1646 |
msgid "Instructions for authors. Shown when submitting data"
|
1647 |
msgstr ""
|
1648 |
"دستورالعمل هایی برای نویسندگان. هنگام ارسال داده ها نمایش داده می شوند."
|
1649 |
|
1650 |
-
#:
|
|
|
|
|
1651 |
msgid "Required?"
|
1652 |
msgstr "لازم است؟"
|
1653 |
|
1654 |
-
#:
|
|
|
|
|
1655 |
msgid "Conditional Logic"
|
1656 |
msgstr "منطق شرطی"
|
1657 |
|
1658 |
-
#:
|
1659 |
-
#:
|
|
|
|
|
|
|
|
|
1660 |
msgid "is equal to"
|
1661 |
msgstr "برابر است با"
|
1662 |
|
1663 |
-
#:
|
1664 |
-
#:
|
|
|
|
|
|
|
|
|
1665 |
msgid "is not equal to"
|
1666 |
msgstr "برابر نیست با"
|
1667 |
|
1668 |
-
#:
|
|
|
|
|
1669 |
msgid "Show this field when"
|
1670 |
msgstr "نمایش این زمینه موقعی که"
|
1671 |
|
1672 |
-
#:
|
|
|
|
|
1673 |
msgid "all"
|
1674 |
msgstr "همه"
|
1675 |
|
1676 |
-
#:
|
|
|
|
|
1677 |
msgid "any"
|
1678 |
msgstr "هیچ"
|
1679 |
|
1680 |
-
#:
|
|
|
|
|
1681 |
msgid "these rules are met"
|
1682 |
msgstr "این قوانین آشنا هستند."
|
1683 |
|
1684 |
-
#:
|
|
|
|
|
1685 |
msgid "Close Field"
|
1686 |
msgstr "بستن زمینه"
|
1687 |
|
1688 |
-
#:
|
|
|
|
|
1689 |
msgid "Drag and drop to reorder"
|
1690 |
msgstr "بالا و پایین کشیدن برای دوباره مرتب کردن"
|
1691 |
|
1692 |
-
#:
|
|
|
|
|
1693 |
msgid "+ Add Field"
|
1694 |
msgstr "+ افزودن زمینه"
|
1695 |
|
1696 |
-
#:
|
|
|
|
|
1697 |
msgid "Rules"
|
1698 |
msgstr "قوانین"
|
1699 |
|
1700 |
-
#:
|
|
|
|
|
1701 |
msgid ""
|
1702 |
"Create a set of rules to determine which edit screens will use these "
|
1703 |
"advanced custom fields"
|
@@ -1705,114 +2862,172 @@ msgstr ""
|
|
1705 |
"ایجاد مجموعه ای از قوانین برای تعیین این که صفحه ویرایش از این زمینه های "
|
1706 |
"سفارشی پیشرفته استفاده خواهند کرد."
|
1707 |
|
1708 |
-
#:
|
|
|
|
|
1709 |
msgid "Show this field group if"
|
1710 |
msgstr "نمایش این گروه زمینه اگر"
|
1711 |
|
1712 |
-
#:
|
|
|
|
|
1713 |
msgid "Logged in User Type"
|
1714 |
msgstr "وارد شده در نوع کاربر"
|
1715 |
|
1716 |
-
#:
|
1717 |
-
#:
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
#:
|
1722 |
-
msgid "Page Type"
|
1723 |
-
msgstr "نوع برگه"
|
1724 |
-
|
1725 |
-
#: ../core/views/meta_box_location.php:81
|
1726 |
-
msgid "Page Parent"
|
1727 |
-
msgstr "برگه مادر"
|
1728 |
-
|
1729 |
-
#: ../core/views/meta_box_location.php:82
|
1730 |
-
msgid "Page Template"
|
1731 |
-
msgstr "پوسته برگه"
|
1732 |
-
|
1733 |
-
#: ../core/views/meta_box_location.php:84
|
1734 |
-
#: ../core/views/meta_box_location.php:85
|
1735 |
msgid "Post"
|
1736 |
msgstr "نوشته"
|
1737 |
|
1738 |
-
#:
|
|
|
|
|
1739 |
msgid "Post Category"
|
1740 |
msgstr "دسته بندی نوشته"
|
1741 |
|
1742 |
-
#:
|
|
|
|
|
1743 |
msgid "Post Format"
|
1744 |
msgstr "فرمت نوشته"
|
1745 |
|
1746 |
-
#:
|
|
|
|
|
1747 |
msgid "Post Status"
|
1748 |
msgstr "وضعیت نوشته"
|
1749 |
|
1750 |
-
#:
|
|
|
|
|
1751 |
msgid "Post Taxonomy"
|
1752 |
msgstr "طبقه بندی نوشته"
|
1753 |
|
1754 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1755 |
msgid "Attachment"
|
1756 |
msgstr "پیوست"
|
1757 |
|
1758 |
-
#:
|
1759 |
-
|
1760 |
-
|
|
|
|
|
1761 |
|
1762 |
-
#:
|
|
|
|
|
1763 |
msgid "and"
|
1764 |
msgstr "و"
|
1765 |
|
1766 |
-
#:
|
|
|
|
|
1767 |
msgid "Add rule group"
|
1768 |
msgstr "افزودن قانون"
|
1769 |
|
1770 |
-
#:
|
|
|
|
|
1771 |
msgid "Order No."
|
1772 |
msgstr "شماره زمینه"
|
1773 |
|
1774 |
-
#:
|
|
|
|
|
1775 |
msgid "Field groups are created in order <br />from lowest to highest"
|
1776 |
msgstr ""
|
1777 |
"گروه های زمینه از کوچکترین شماره تا بزرگترین شماره <br />ایجاد می شوند."
|
1778 |
|
1779 |
-
#:
|
|
|
|
|
1780 |
msgid "Position"
|
1781 |
msgstr "موقعیت"
|
1782 |
|
1783 |
-
#:
|
|
|
|
|
1784 |
msgid "High (after title)"
|
1785 |
msgstr "بالا (بعد از عنوان)"
|
1786 |
|
1787 |
-
#:
|
|
|
|
|
1788 |
msgid "Normal (after content)"
|
1789 |
msgstr "معمولی (بعد از نوشته)"
|
1790 |
|
1791 |
-
#:
|
|
|
|
|
1792 |
msgid "Side"
|
1793 |
msgstr "کنار"
|
1794 |
|
1795 |
-
#:
|
|
|
|
|
1796 |
msgid "Style"
|
1797 |
msgstr "استایل"
|
1798 |
|
1799 |
-
#:
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
msgid "Hide on screen"
|
1809 |
msgstr "مخفی ماندن در صفحه"
|
1810 |
|
1811 |
-
#:
|
|
|
|
|
1812 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1813 |
msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
|
1814 |
|
1815 |
-
#:
|
|
|
|
|
1816 |
msgid ""
|
1817 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1818 |
"options will be used. (the one with the lowest order number)"
|
@@ -1820,46 +3035,92 @@ msgstr ""
|
|
1820 |
"اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
|
1821 |
"زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
1822 |
|
1823 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1824 |
msgid "Content Editor"
|
1825 |
-
msgstr "
|
1826 |
|
1827 |
-
#:
|
|
|
|
|
1828 |
msgid "Excerpt"
|
1829 |
msgstr "چکیده"
|
1830 |
|
1831 |
-
#:
|
|
|
|
|
1832 |
msgid "Discussion"
|
1833 |
msgstr "گفتگو"
|
1834 |
|
1835 |
-
#:
|
|
|
|
|
1836 |
msgid "Comments"
|
1837 |
msgstr "دیدگاه ها"
|
1838 |
|
1839 |
-
#:
|
|
|
|
|
1840 |
msgid "Revisions"
|
1841 |
msgstr "بازنگری ها"
|
1842 |
|
1843 |
-
#:
|
|
|
|
|
1844 |
msgid "Slug"
|
1845 |
msgstr "نامک"
|
1846 |
|
1847 |
-
#:
|
|
|
|
|
1848 |
msgid "Author"
|
1849 |
msgstr "نویسنده"
|
1850 |
|
1851 |
-
#:
|
|
|
|
|
1852 |
msgid "Format"
|
1853 |
msgstr "فرمت"
|
1854 |
|
1855 |
-
#:
|
|
|
|
|
1856 |
msgid "Categories"
|
1857 |
msgstr "دسته ها"
|
1858 |
|
1859 |
-
#:
|
|
|
|
|
1860 |
msgid "Tags"
|
1861 |
msgstr "برچسب ها"
|
1862 |
|
1863 |
-
#:
|
|
|
|
|
1864 |
msgid "Send Trackbacks"
|
1865 |
msgstr "ارسال بازتاب ها"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ACF 4.3.8\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2014-05-05 15:34+0330\n"
|
8 |
+
"PO-Revision-Date: 2014-05-05 15:35+0330\n"
|
9 |
"Last-Translator: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
|
10 |
+
"Language-Team: Ghaem Omidi <ghaemomidi@yahoo.com>\n"
|
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.6.5\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
19 |
|
20 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:485
|
21 |
msgid "Field Groups"
|
22 |
msgstr "گروه های زمینه"
|
23 |
|
24 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:486
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:487
|
32 |
msgid "Add New"
|
33 |
msgstr "افزودن"
|
34 |
|
35 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:488
|
36 |
msgid "Add New Field Group"
|
37 |
msgstr "افزودن گروه زمینه جدید"
|
38 |
|
39 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:489
|
40 |
msgid "Edit Field Group"
|
41 |
msgstr "ویرایش گروه زمینه"
|
42 |
|
43 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:490
|
44 |
msgid "New Field Group"
|
45 |
msgstr "گروه زمینه جدید"
|
46 |
|
47 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:491
|
48 |
msgid "View Field Group"
|
49 |
msgstr "مشاهده گروه زمینه"
|
50 |
|
51 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:492
|
52 |
msgid "Search Field Groups"
|
53 |
msgstr "جستجوی گروه های زمینه"
|
54 |
|
55 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:493
|
56 |
msgid "No Field Groups found"
|
57 |
msgstr "گروه زمینه ای یافت نشد."
|
58 |
|
59 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:494
|
60 |
msgid "No Field Groups found in Trash"
|
61 |
msgstr "گروه زمینه ای در زباله دان یافت نشد."
|
62 |
|
63 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:579
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:597
|
71 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:600
|
72 |
msgid "Field group updated."
|
73 |
msgstr "گروه زمینه بروز شد."
|
74 |
|
75 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:598
|
76 |
msgid "Custom field updated."
|
77 |
msgstr "زمینه دلخواه بروز شد."
|
78 |
|
79 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:599
|
80 |
msgid "Custom field deleted."
|
81 |
msgstr "زمینه دلخواه حذف شد."
|
82 |
|
83 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:602
|
84 |
#, php-format
|
85 |
msgid "Field group restored to revision from %s"
|
86 |
msgstr "گروه زمینه از %s برای تجدید نظر بازگردانده شد."
|
87 |
|
88 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:603
|
89 |
msgid "Field group published."
|
90 |
msgstr "گروه زمینه انتشار یافت."
|
91 |
|
92 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:604
|
93 |
msgid "Field group saved."
|
94 |
msgstr "گروه زمینه ذخیره شد."
|
95 |
|
96 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:605
|
97 |
msgid "Field group submitted."
|
98 |
msgstr "گروه زمینه ارسال شد."
|
99 |
|
100 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:606
|
101 |
msgid "Field group scheduled for."
|
102 |
msgstr "گروه زمینه برنامه ریزی شده است برای"
|
103 |
|
104 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:607
|
105 |
msgid "Field group draft updated."
|
106 |
msgstr "پیش نویش گروه زمینه بروز شد."
|
107 |
|
108 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:742
|
109 |
msgid "Thumbnail"
|
110 |
msgstr "تصویر بندانگشتی"
|
111 |
|
112 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:743
|
113 |
msgid "Medium"
|
114 |
msgstr "متوسط"
|
115 |
|
116 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:744
|
117 |
msgid "Large"
|
118 |
msgstr "بزرگ"
|
119 |
|
120 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/acf.php:745
|
121 |
msgid "Full"
|
122 |
msgstr "کامل"
|
123 |
|
124 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/actions/export.php:26
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/api.php:1172
|
145 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/api.php:1172
|
146 |
+
msgid "Post updated"
|
147 |
+
msgstr "نوشته بروز شد."
|
148 |
+
|
149 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:42
|
150 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:307
|
151 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/addons.php:42
|
152 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/controllers/field_groups.php:307
|
153 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/addons.php:42
|
154 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\controllers/field_groups.php:307
|
155 |
msgid "Add-ons"
|
156 |
msgstr "افزودنی ها"
|
157 |
|
158 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:130
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:131
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:138
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:144
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:145
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:151
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:152
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:161
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:162
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:168
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:169
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:175
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:176
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:182
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:183
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:193
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:196
|
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."
|
278 |
"افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته در "
|
279 |
"دسترس هستند."
|
280 |
|
281 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:197
|
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 |
"هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در "
|
289 |
"پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
290 |
|
291 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:219
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:221
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/addons.php:242
|
307 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:422
|
308 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:431
|
309 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:439
|
310 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:447
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:50
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:216
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:221
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:222
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:239
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:242
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:253
|
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 |
"افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که "
|
380 |
"با افزونه Wordpress Importer سازگار است."
|
381 |
|
382 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:254
|
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."
|
390 |
"داده خواهند شد</b>. این برای مهاجرت گروه های زمینه در بین سایت های وردپرسی "
|
391 |
"مفید است."
|
392 |
|
393 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:256
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:257
|
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 "ذخیره پرونده .xml موقعی که این پرونده درخواست می شود."
|
406 |
|
407 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:258
|
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 "به ((ابزارها > درون ریزی)) بروید و وردپرس (Wordpress) را انتخاب کنید."
|
412 |
|
413 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:259
|
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 "نصب افزونه درون ریز وردپرس (Wordpress Importer) در صورت در خواست شما"
|
418 |
|
419 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:260
|
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 "بارگذاری و درون ریزی پرونده XML برون بری شده شما."
|
424 |
|
425 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:261
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:262
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:268
|
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 |
"افزونه زمینه های دلخواه پیشرفته کد پی اچ پی (PHP) را در پوسته شما قرار خواهد "
|
443 |
"داد."
|
444 |
|
445 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:269
|
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."
|
455 |
"گروه های زمینه ثبت نام شده در لیست گروه های زمینه قابل ویرایش <b>نمایش داده "
|
456 |
"نخواهند شد</b>. این برای قرار دادن زمینه ها در پوسته مفید است."
|
457 |
|
458 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:270
|
459 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:311
|
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 "
|
472 |
"برای تعمیر این، لطفا گروه زمینه اورجینال را به زباله دان حرکت دهید یا کد را "
|
473 |
"از پرونده functions.php خود پاک کنید."
|
474 |
|
475 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:272
|
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 |
"گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت PHP )) "
|
481 |
"کلیک کنید."
|
482 |
|
483 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:273
|
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 "کپی کردن کد PHP ساخته شده"
|
491 |
|
492 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:274
|
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 "چسباندن در پرونده functions.php شما"
|
500 |
|
501 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:275
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:295
|
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 "برون بری گروه های زمینه به فرمت PHP"
|
517 |
|
518 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:300
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:309
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:316
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:317
|
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 "
|
548 |
"برای انجام این کار، افزونه را در کنار پوسته تان انتقال دهید و کدهای زیر را "
|
549 |
"به پرونده functions.php اضافه کنید:"
|
550 |
|
551 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:323
|
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 "
|
560 |
"به طور ثابت برای فعال کردن حالت کم استفاده کنید. کد زیر را به پرونده "
|
561 |
"functions.php خود <b>قبل از</b> تابع include_once اضافه کنید:"
|
562 |
|
563 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:331
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/export.php:400
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:358
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:359
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:360
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:361
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:362
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:363
|
606 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:62
|
607 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:159
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:364
|
618 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:395
|
619 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:457
|
620 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:148
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:365
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:366
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:367
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:396
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:397
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:459
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:460
|
669 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:138
|
670 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:159
|
671 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:328
|
672 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:349
|
673 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:224
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:461
|
708 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:137
|
709 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:158
|
710 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:327
|
711 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:348
|
712 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:223
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:633
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:634
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:635
|
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 "بالاترین سطح برگه (مادر از 0) "
|
763 |
|
764 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:636
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:637
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:645
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:723
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:724
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:725
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:726
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:727
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:728
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:729
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:742
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:757
|
831 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:778
|
832 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_group.php:785
|
833 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:186
|
834 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:170
|
835 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:109
|
836 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:274
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:147
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:216
|
873 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:253
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:217
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:217
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:219
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:221
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:222
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:223
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:224
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:225
|
924 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:644
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:226
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:227
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:232
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:244
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:245
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:245
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:252
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:255
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:309
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:310
|
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, "
|
998 |
"افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد. هر افزودنی برای دریافت "
|
999 |
"بروزرسانی ها راه معمول را ادامه خواهد داد."
|
1000 |
|
1001 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:316
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:320
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:320
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:325
|
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."
|
1026 |
"این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
|
1027 |
"نخواهد گرفت."
|
1028 |
|
1029 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:335
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:337
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:339
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:340
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:341
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:342
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:344
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:345
|
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 |
+
"ایجاد نوع زمینه هرگز آسان تر نشده است! متأسفانه، انواع زمینه های نسخه 3 با "
|
1079 |
+
"نسخه 4 سازگار نیستند."
|
1080 |
|
1081 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:346
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:346
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:346
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:348
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:349
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:349
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:349
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:351
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:352
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:352
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:356
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:358
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:359
|
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 |
"<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
|
1169 |
"این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
|
1170 |
|
1171 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:361
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:362
|
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 "
|
1185 |
"با ملاحظه تغییرات افزودنی های اطراف، انواع زمینه ها و عمل/فیلترها، ممکن است "
|
1186 |
"سایت شما به درستی عمل نکند. این مهم است که شما راهمای کامل را بخوانید."
|
1187 |
|
1188 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:362
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:362
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:365
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:365
|
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"
|
1213 |
"اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
|
1214 |
"تغییرات بروزرسانی کردید، لطفا به آخرین نسخه برگردید "
|
1215 |
|
1216 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:365
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:365
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:370
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:371
|
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 |
"کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه "
|
1243 |
"شما متشکرم."
|
1244 |
|
1245 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:372
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:376
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:393
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:399
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:401
|
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 "
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:405
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:407
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:420
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:421
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:453
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:463
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:465
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:467
|
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 "دریافت افزونه افزودنی (پرونده ZIP) در دسکتاپ شما"
|
1342 |
|
1343 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:468
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:468
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:469
|
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 |
"از بارگذار برای کاوش استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب و نصب "
|
1361 |
"نمایید."
|
1362 |
|
1363 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:470
|
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"
|
1370 |
"هنگامی که یک افزونه دریافت و نصب شده است، روی لینک ((لینک فعال کردن افزونه)) "
|
1371 |
"کلیک کنید."
|
1372 |
|
1373 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:471
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/field_groups.php:485
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/input.php:63
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/input.php:64
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/input.php:67
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/upgrade.php:74
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/upgrade.php:596
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/upgrade.php:650
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/controllers/upgrade.php:747
|
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 "حرکت کاربر زمینه های دلخواه از wp_options به wp_usermeta"
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:20
|
1447 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:146
|
1462 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:147
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:147
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:148
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:149
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:149
|
1505 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:154
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:166
|
1517 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/color_picker.php:89
|
1518 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:106
|
1519 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:116
|
1520 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:196
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:167
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:183
|
1559 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/message.php:20
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:194
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/checkbox.php:195
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/color_picker.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/color_picker.php:20
|
1598 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:20
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/date_picker/date_picker.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:107
|
1719 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:117
|
1720 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:117
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:123
|
1737 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:133
|
1738 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:105
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:124
|
1755 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:134
|
1756 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:106
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:138
|
1773 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:148
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:139
|
1788 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:149
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:153
|
1803 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:163
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/email.php:154
|
1818 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:164
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:20
|
1839 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:20
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:26
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:27
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:28
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:29
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:113
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:123
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:123
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:153
|
1896 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:118
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:164
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:165
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:166
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:175
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/file.php:187
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:33
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:34
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:120
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:125
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:126
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:162
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:163
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:199
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:200
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:217
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/google-map.php:218
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:27
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:28
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:29
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:83
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:84
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:90
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:90
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:119
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:129
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:130
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:131
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:139
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:140
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/image.php:159
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/message.php:19
|
2112 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/message.php:70
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/message.php:71
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/message.php:72
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:178
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:194
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/number.php:210
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:19
|
2169 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:19
|
2170 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:103
|
2187 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:268
|
2188 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:595
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:127
|
2205 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:317
|
2206 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:214
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/page_link.php:148
|
2223 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:338
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/password.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/post_object.php:292
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:105
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:148
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:150
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:151
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:175
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/radio.php:187
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:29
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:429
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:440
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:575
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:586
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:587
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:653
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:654
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:662
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:663
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:672
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:673
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/relationship.php:685
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:18
|
2388 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/select.php:109
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:68
|
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."
|
2415 |
"استفاده از ((تب زمینه ها)) برای سازماندهی بهتر صفحه ویرایش توسط گروه بندی "
|
2416 |
"زمینه های شما با هم تحت سرفصل تب جدا شده"
|
2417 |
|
2418 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:69
|
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."
|
2425 |
"همه زمینه های تحت این >تب زمینه< (یا تا زمانی دیگر که >تب زمینه< تعریف شده "
|
2426 |
"است) با هم گروه بندی می شوند."
|
2427 |
|
2428 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/tab.php:70
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:222
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:312
|
2453 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:298
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:322
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:324
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:326
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:327
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:356
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:364
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:381
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/taxonomy.php:382
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:176
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:177
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:186
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:187
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:195
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/text.php:196
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:148
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:149
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/textarea.php:175
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/true_false.php:19
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/true_false.php:80
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:18
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/user.php:271
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:36
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:292
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/fields/wysiwyg.php:324
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:24
|
2656 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core/views/meta_box_fields.php:24
|
2657 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields\core\views/meta_box_fields.php:24
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2658 |
msgid "New Field"
|
2659 |
msgstr "زمینه جدید"
|
2660 |
|
2661 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:58
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:74
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:75
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:76
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:78
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:90
|
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."
|
2704 |
"هیچ زمینه ای وجود ندارد. روی دکمه <strong> + افزودن زمینه </strong> کلیک "
|
2705 |
"کنید تا اولین زمینه خود را بسازید."
|
2706 |
|
2707 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:105
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:109
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:109
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:110
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:110
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:111
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:111
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:128
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:144
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:173
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:174
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:187
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:210
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:261
|
2790 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:117
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:262
|
2799 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:118
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:280
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:286
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:287
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:290
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:304
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:317
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_fields.php:318
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:48
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:49
|
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"
|
2862 |
"ایجاد مجموعه ای از قوانین برای تعیین این که صفحه ویرایش از این زمینه های "
|
2863 |
"سفارشی پیشرفته استفاده خواهند کرد."
|
2864 |
|
2865 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:60
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:76
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:78
|
2878 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:79
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:80
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:81
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:82
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:83
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:85
|
2911 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:86
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:87
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:88
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:89
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:92
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:93
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:146
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_location.php:161
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:25
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:26
|
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 |
"گروه های زمینه از کوچکترین شماره تا بزرگترین شماره <br />ایجاد می شوند."
|
2973 |
|
2974 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:42
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:52
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:53
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:54
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:64
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:74
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:75
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:84
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:85
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:86
|
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 |
"اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود، اولین تنظیمات گروه "
|
3036 |
"زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
3037 |
|
3038 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:96
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:97
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:98
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:100
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:101
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:102
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:103
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:104
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:105
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:107
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:108
|
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 |
+
#: C:\Users\Ghaem\Desktop\advanced-custom-fields/core/views/meta_box_options.php:109
|
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 |
+
|
3110 |
+
#~ msgid "Vote"
|
3111 |
+
#~ msgstr "رأی دادن"
|
3112 |
+
|
3113 |
+
#~ msgid "Follow"
|
3114 |
+
#~ msgstr "دنبال کردن"
|
3115 |
+
|
3116 |
+
#~ msgid "What's new"
|
3117 |
+
#~ msgstr "چه چیزی جدید است؟"
|
3118 |
+
|
3119 |
+
#~ msgid "credits"
|
3120 |
+
#~ msgstr "اعتبارات"
|
3121 |
+
|
3122 |
+
#~ msgid "Term"
|
3123 |
+
#~ msgstr "دوره"
|
3124 |
+
|
3125 |
+
#~ msgid "No Metabox"
|
3126 |
+
#~ msgstr "بدون متاباکس"
|
lang/acf-it_IT.mo
CHANGED
File without changes
|
lang/acf-it_IT.po
CHANGED
File without changes
|
lang/acf-nl_NL.po
CHANGED
File without changes
|
lang/acf-pt_BR.mo
CHANGED
File without changes
|
lang/acf-pt_BR.po
CHANGED
File without changes
|
lang/acf-ru_RU.mo
CHANGED
File without changes
|
lang/acf-ru_RU.po
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: elliotcondon
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
-
Tested up to:
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
@@ -107,6 +107,13 @@ http://support.advancedcustomfields.com/
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
= 4.3.8 =
|
111 |
* Validation: Fixed disabled button issue in WP 3.9
|
112 |
|
2 |
Contributors: elliotcondon
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
+
Tested up to: 4.1
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
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
|
113 |
+
* Language: Added Slovak translations - Thanks to wp.sk
|
114 |
+
* Language: Added Serbo-Croatian translation - thanks to Borisa Djuraskovic
|
115 |
+
* Language: Updating Persian translation - Thanks to Ghaem Omidi
|
116 |
+
|
117 |
= 4.3.8 =
|
118 |
* Validation: Fixed disabled button issue in WP 3.9
|
119 |
|