Shortcodes and extra features for Phlox theme - Version 2.6.12

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.6.12
Comparing to
See all releases

Code changes from version 2.6.10 to 2.6.12

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.5.0
10
- Stable tag: 2.6.10
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.5.0
10
+ Stable tag: 2.6.12
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/css/elementor-editor.css CHANGED
@@ -194,6 +194,19 @@
194
  border-color: rgba(183, 8, 78, 0.2);
195
  }
196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
197
  /* '.auxin-pro' is available when pro plugin is activated */
198
  .auxin-pro .elementor-element .auxin-badge-pro:after{
199
  content: "Phlox";
194
  border-color: rgba(183, 8, 78, 0.2);
195
  }
196
 
197
+ .elementor-tags-list [data-tag-name^="aux-"]:after {
198
+ content: "PHLOX";
199
+ border-color: rgba(20, 171, 244, 0.2);
200
+ border: 1px solid;
201
+ border-radius: 2px;
202
+ position: relative;
203
+ top: -7px;
204
+ left: 3px;
205
+ padding: 1px 2px;
206
+ font-size: 8px;
207
+ letter-spacing: 1px;
208
+ }
209
+
210
  /* '.auxin-pro' is available when pro plugin is activated */
211
  .auxin-pro .elementor-element .auxin-badge-pro:after{
212
  content: "Phlox";
admin/assets/js/elementor/editor.js CHANGED
@@ -4,18 +4,27 @@
4
  ;(function($, window, document, undefined){
5
 
6
  $( window ).on( 'elementor:init', function() {
7
-
8
  // Add auxin specific css class to elementor body
9
  $('.elementor-editor-active').addClass('auxin');
10
 
11
  // Make our custom css visible in the panel's front-end
12
  if( typeof elementorPro == 'undefined' ) {
13
- elementor.hooks.addFilter( 'editor/style/styleText', function( css, view ){
14
- var model = view.getEditModel(),
15
- customCSS = model.get( 'settings' ).get( 'custom_css' );
 
 
 
 
 
16
 
17
- if ( customCSS ) {
18
- css += customCSS.replace( /selector/g, '.elementor-element.elementor-element-' + view.model.id );
 
 
 
 
19
  }
20
 
21
  return css;
@@ -339,7 +348,7 @@
339
  * ================== Auxin Featured Color Controller ===================
340
  **/
341
  var AuxControlFeaturedColorItemView = AuxControlBaseDataView.extend( {
342
-
343
  onReady: function() {
344
  this.ui.select.AuxFeaturedColor();
345
  },
4
  ;(function($, window, document, undefined){
5
 
6
  $( window ).on( 'elementor:init', function() {
7
+
8
  // Add auxin specific css class to elementor body
9
  $('.elementor-editor-active').addClass('auxin');
10
 
11
  // Make our custom css visible in the panel's front-end
12
  if( typeof elementorPro == 'undefined' ) {
13
+ elementor.hooks.addFilter( 'editor/style/styleText', function( css, context ){
14
+ if ( ! context ) {
15
+ return;
16
+ }
17
+
18
+ var model = context.model,
19
+ customCSS = model.get('settings').get('custom_css');
20
+ var selector = '.elementor-element.elementor-element-' + model.get('id');
21
 
22
+ if ('document' === model.get('elType')) {
23
+ selector = elementor.config.document.settings.cssWrapperSelector;
24
+ }
25
+
26
+ if (customCSS) {
27
+ css += customCSS.replace(/selector/g, selector);
28
  }
29
 
30
  return css;
348
  * ================== Auxin Featured Color Controller ===================
349
  **/
350
  var AuxControlFeaturedColorItemView = AuxControlBaseDataView.extend( {
351
+
352
  onReady: function() {
353
  this.ui.select.AuxFeaturedColor();
354
  },
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.6.10 (2020-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.6.12 (2020-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.6.10
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.6.12
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.6.10' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.6.12' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/modules/templates-types-manager.php CHANGED
@@ -10,8 +10,8 @@ class Templates_Types_Manager {
10
  if( ! defined( 'ELEMENTOR_PRO_VERSION' ) ){
11
  define( 'AUXIN_ELEMENTOR_TEMPLATE', true );
12
  add_action( 'elementor/documents/register', [ $this, 'register_documents' ] );
13
- add_action( 'elementor/dynamic_tags/register_tags', [ $this, 'register_tag' ] );
14
  }
 
15
  }
16
 
17
  public function register_documents() {
10
  if( ! defined( 'ELEMENTOR_PRO_VERSION' ) ){
11
  define( 'AUXIN_ELEMENTOR_TEMPLATE', true );
12
  add_action( 'elementor/documents/register', [ $this, 'register_documents' ] );
 
13
  }
14
+ add_action( 'elementor/dynamic_tags/register_tags', [ $this, 'register_tag' ] );
15
  }
16
 
17
  public function register_documents() {
includes/elementor/widgets/theme-elements/logo.php CHANGED
@@ -643,11 +643,24 @@ class Logo extends Widget_Base {
643
  * @access protected
644
  */
645
  protected function render() {
646
-
647
  $settings = $this->get_settings_for_display();
648
  $logo_desc = get_bloginfo( 'description' );
649
- $custom_logo_id = get_theme_mod( 'custom_logo' );
650
- $secondary_logo_id = auxin_get_option('custom_logo2');
 
 
 
 
 
 
 
 
 
 
 
 
 
651
  $blog_display_name = get_bloginfo( 'name', 'display' );
652
  $blog_name = get_bloginfo( 'name' );
653
  $home_url = home_url( '/' );
643
  * @access protected
644
  */
645
  protected function render() {
646
+ global $aux_main_post;
647
  $settings = $this->get_settings_for_display();
648
  $logo_desc = get_bloginfo( 'description' );
649
+
650
+ // get logo id
651
+ if ( ! empty( $aux_main_post ) ) {
652
+ if( empty( $custom_logo_id = auxin_get_post_meta( $aux_main_post->ID, 'aux_custom_logo' ) ) || ! is_numeric( $custom_logo_id ) ){
653
+ $custom_logo_id = get_theme_mod( 'custom_logo' );
654
+ }
655
+
656
+ if( empty( $secondary_logo_id = auxin_get_post_meta( $aux_main_post->ID, 'aux_custom_logo2' ) ) || ! is_numeric( $secondary_logo_id ) ){
657
+ $secondary_logo_id = auxin_get_option('custom_logo2');
658
+ }
659
+ } else {
660
+ $custom_logo_id = get_theme_mod( 'custom_logo' );
661
+ $secondary_logo_id = auxin_get_option('custom_logo2');
662
+ }
663
+
664
  $blog_display_name = get_bloginfo( 'name', 'display' );
665
  $blog_name = get_bloginfo( 'name' );
666
  $home_url = home_url( '/' );
includes/general-functions.php CHANGED
@@ -1884,6 +1884,7 @@ function auxin_get_all_pages() {
1884
  $args = array(
1885
  'post_type' => 'page',
1886
  'post_status' => 'publish',
 
1887
  );
1888
 
1889
  $pages['default'] = __( 'Theme Default', 'auxin-elements' ) ; // Default Page For 404, Maintance , And Coming Soon
1884
  $args = array(
1885
  'post_type' => 'page',
1886
  'post_status' => 'publish',
1887
+ 'posts_per_page' => -1
1888
  );
1889
 
1890
  $pages['default'] = __( 'Theme Default', 'auxin-elements' ) ; // Default Page For 404, Maintance , And Coming Soon
includes/general-hooks.php CHANGED
@@ -3356,7 +3356,8 @@ add_filter( 'woocommerce_loop_add_to_cart_args', 'auxels_enable_woocommerce_ajax
3356
  */
3357
  function auxin_override_inner_body_sections(){
3358
 
3359
- global $post;
 
3360
 
3361
  if( ! class_exists( '\Elementor\Plugin' ) ){
3362
  return;
@@ -3365,7 +3366,7 @@ function auxin_override_inner_body_sections(){
3365
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3366
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3367
  }
3368
-
3369
  if( ! auxin_is_true( $use_legacy_header ) ) {
3370
  remove_action( 'auxin_after_inner_body_open', 'auxin_the_top_header_section', 4 );
3371
  remove_action( 'auxin_after_inner_body_open', 'auxin_the_main_header_section', 4 );
3356
  */
3357
  function auxin_override_inner_body_sections(){
3358
 
3359
+ global $post, $aux_main_post;
3360
+ $aux_main_post = $post;
3361
 
3362
  if( ! class_exists( '\Elementor\Plugin' ) ){
3363
  return;
3366
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3367
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3368
  }
3369
+
3370
  if( ! auxin_is_true( $use_legacy_header ) ) {
3371
  remove_action( 'auxin_after_inner_body_open', 'auxin_the_top_header_section', 4 );
3372
  remove_action( 'auxin_after_inner_body_open', 'auxin_the_main_header_section', 4 );
languages/auxin-elements-fa_IR.po CHANGED
@@ -1,13 +1,16 @@
1
  msgid ""
2
  msgstr ""
3
- "Plural-Forms: nplurals=1; plural=0;\n"
4
  "Project-Id-Version: Auxin Essential Elements\n"
5
- "POT-Creation-Date: 2016-11-06 10:46+0330\n"
 
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
 
7
  "Language-Team: \n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
 
11
  "X-Generator: Poedit 1.8.4\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-WPHeader: auxin-elements.php\n"
@@ -15,8 +18,6 @@ msgstr ""
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Last-Translator: \n"
19
- "Language: fa_IR\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
@@ -36,4942 +37,13360 @@ msgstr "با موفقیت ارسال شد. از بازخورد شما ممنون
36
  msgid "An error occurred. Feedback could not be delivered, please try again."
37
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
38
 
39
- #: admin/includes/admin-hooks.php:57
40
- msgid "System Status"
41
- msgstr "وضعیت سیستم"
 
 
42
 
43
- #: admin/includes/admin-hooks.php:58
44
- msgid ""
45
- "The informaition about your WordPress installation which can be helpful for "
46
- "debugging or monitoring your website."
47
  msgstr ""
48
- "اطلاعاتی درباره سایت وردپرسی شما که می تواند برای اشکال زدایی و نظارت بر وب "
49
- "سایت مفید باشد."
50
 
51
- #: admin/includes/admin-hooks.php:92
52
- msgid "How likely are you to recommend Phlox to a friend?"
53
- msgstr "چه میزان فلوکس را به دوستان خود پیشنهاد می دهید؟"
54
 
55
- #: admin/includes/admin-hooks.php:111
56
- msgid "Please explain why you gave this score (optional)"
57
- msgstr "لطفا در مورد امتیاز داده شده توضیحاتی دهید (دلخواه)"
58
 
59
- #: admin/includes/admin-hooks.php:114
60
- #, php-format
 
 
 
 
 
 
 
 
 
61
  msgid ""
62
- "Please do not use this form to get support, in this case please check the %s "
63
- "help section %s"
64
  msgstr ""
65
- "لطفا از این فرم به منظور دریافت خدمات پشتیبانی استفاده نکنید، برای دریافت "
66
- "پشتیبانی لطفا %s بخش کمک %s را ببینید."
67
 
68
- #: admin/includes/admin-hooks.php:125
69
- msgid "Submitting your feedback .."
70
- msgstr "در حال ثبت بازخورد شما .."
 
71
 
72
- #: admin/includes/admin-hooks.php:140
73
- msgid "Feedback"
74
- msgstr "بازخورد"
75
 
76
- #: admin/includes/admin-hooks.php:141
77
- #, php-format
78
- msgid "Please leave a feedback and help us to improve %s theme."
79
- msgstr "لطفا برای کمک به بهبود پوسته %s نظرات خود را با ما در میان بگذارید."
80
 
81
- #: admin/includes/admin-hooks.php:158
82
- msgid "Thanks for your feedback"
83
- msgstr "از بازخورد شما متشکریم."
 
84
 
85
- #: admin/includes/admin-hooks.php:160
86
- msgid "Please try again and fill up at least the feedback field."
87
- msgstr "لطفا دوباره تلاش کنید و حداقل فیلد بازخورد را تکمیل کنید."
 
 
 
 
 
 
88
 
89
- #: admin/includes/admin-hooks.php:177
90
- msgid "Subtitle"
91
- msgstr "زیرعنوان"
 
 
 
 
 
 
 
 
 
 
 
 
 
92
 
93
- #: admin/includes/admin-hooks.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgid ""
95
- "Second Title (optional). Note: You have to enable \"Display Title Bar Section"
96
- "\" option in order to display the subtitle."
97
  msgstr ""
98
  "عنوان دوم (دلخواه). نکته: شما باید گزینه \"نمایش بخش نوار عنوان\" را فعال "
99
  "کرده باشید تا زیرعنوان نمایش داده شود."
100
 
101
- #: admin/includes/admin-hooks.php:199
102
- msgid "Custom JavaScript Code"
103
- msgstr "کد جاوااسکریپت سفارشی"
 
104
 
105
- #: admin/includes/admin-hooks.php:200
106
- msgid ""
107
- "Attention: The following custom JavaScript code will be applied ONLY to this "
108
- "page."
109
- msgstr "توجه: کدهای جاوااسکریپت دلخواه زیر فقط به این صفحه اعمال خواهند شد."
 
 
110
 
111
- #: admin/includes/admin-hooks.php:201
112
- msgid ""
113
- "For defining global JavaScript roles, please use custom javaScript field on "
114
- "option panel."
 
 
 
 
 
 
 
115
  msgstr ""
116
- "برای تعریف جاوااسکریپت های سراسری، لطفا از فیلد جاوااسکریپت سفارشی در پنل "
117
- "تنظیمات استفاده کنید."
118
 
119
- #: admin/includes/admin-hooks.php:310
120
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  msgid ""
122
- "Quick access to %sdashboard%s, %soptions%s, %ssupport%s and %sfeedback%s "
123
- "page."
124
  msgstr ""
125
  "دسترسی سریع به صفحات %sپیشخوان%s، %sتنظیمات%s، %sپشتیبانی%s و %sبازخورد%s."
126
 
127
- #: admin/includes/admin-hooks.php:313
 
 
 
 
 
 
 
 
128
  msgid "Theme Customizer"
129
  msgstr "شخصی ساز پوسته"
130
 
131
- #: admin/includes/admin-the-functions.php:10
132
- msgid "WordPress Environment"
133
- msgstr "محیط وردپرس"
134
 
135
- #: admin/includes/admin-the-functions.php:15
136
- msgid "Home URL"
137
- msgstr "URL خانه"
138
 
139
- #: admin/includes/admin-the-functions.php:16
140
- msgid "The URL of your site's homepage."
141
- msgstr "آدرس صفحه اصلی سایت شما."
 
142
 
143
- #: admin/includes/admin-the-functions.php:20
144
- msgid "Site URL"
145
- msgstr "URL سایت"
 
146
 
147
- #: admin/includes/admin-the-functions.php:21
148
- msgid "The root URL of your site."
149
- msgstr "آدرس ریشه سایت شما"
150
 
151
- #: admin/includes/admin-the-functions.php:25
152
- msgid "WP Version"
153
- msgstr "نسخه وردپرس"
 
154
 
155
- #: admin/includes/admin-the-functions.php:26
156
- msgid "The version of WordPress installed on your site."
157
- msgstr "نسخه وردپرسی که روی سایت شما نصب شده است."
158
 
159
- #: admin/includes/admin-the-functions.php:30
160
- msgid "WP Multisite"
161
- msgstr "وردپرس چندسایته"
162
 
163
- #: admin/includes/admin-the-functions.php:31
164
- msgid "Whether or not you have WordPress Multisite enabled."
165
- msgstr "وردپرس چندسایته را فعال کرده اید یا خیر."
 
166
 
167
- #: admin/includes/admin-the-functions.php:35
168
- msgid "WP Memory Limit"
169
- msgstr "محدودیت حافظه وردپرس"
 
170
 
171
- #: admin/includes/admin-the-functions.php:36
172
- msgid "The maximum amount of memory (RAM) that your site can use at one time."
173
  msgstr ""
174
- "بیشترین مقدار قابل استفاده از حافظه (RAM) که سایت شما در یک زمان می تواند "
175
- "استفاده کند."
176
 
177
- #: admin/includes/admin-the-functions.php:46
178
- msgid "WP Permalink"
179
- msgstr "پیوندهای یکتای وردپرس"
180
 
181
- #: admin/includes/admin-the-functions.php:47
182
- msgid "The WordPress permalink structer."
183
- msgstr "ساختار پیوندهای یکتای وردپرس"
184
 
185
- #: admin/includes/admin-the-functions.php:51
186
- msgid "WP Debug Mode"
187
- msgstr "حالت اشکال زدایی وردپرس"
188
 
189
- #: admin/includes/admin-the-functions.php:52
190
- msgid "Displays whether or not WordPress is in Debug Mode."
191
- msgstr "نمایش دهنده فعال یا غیرفعال بودن وضعیت اشکال زدایی وردپرس"
192
 
193
- #: admin/includes/admin-the-functions.php:56 includes/elements/code.php:68
194
- msgid "Language"
195
- msgstr "زبان"
196
 
197
- #: admin/includes/admin-the-functions.php:57
198
- msgid "The current language used by WordPress. Default = English"
199
- msgstr "زبان جاری که توسط وردپرس استفاده می شود. پیش فرض = انگلیسی"
200
 
201
- #: admin/includes/admin-the-functions.php:66
202
- msgid "Server Environment"
203
- msgstr "محیط سرور"
204
 
205
- #: admin/includes/admin-the-functions.php:71
206
- #: admin/includes/admin-the-functions.php:83
207
- msgid "Server Info"
208
- msgstr "اطلاعات سرور"
209
 
210
- #: admin/includes/admin-the-functions.php:72
211
- #: admin/includes/admin-the-functions.php:84
212
- msgid "Information about the web server that is currently hosting your site."
213
- msgstr "اطلاعاتی درباره وب سروری که در حال حاضر سایت شما را میزبانی می کند."
214
 
215
- #: admin/includes/admin-the-functions.php:76
216
- msgid "PHP Version"
217
- msgstr "نسخه PHP"
218
 
219
- #: admin/includes/admin-the-functions.php:77
220
- msgid "The version of PHP installed on your hosting server."
221
- msgstr "نسخه PHP که روی سرور میزبان شما نصب شده است."
 
222
 
223
- #: admin/includes/admin-the-functions.php:89
224
- msgid "PHP Post Max Size"
225
- msgstr "PHP Post Max Size"
226
 
227
- #: admin/includes/admin-the-functions.php:90
228
- msgid "The largest file size that can be contained in one post."
229
- msgstr "بیشترین اندازه فایل که می تواند در یک post وجود داشته باشد."
230
 
231
- #: admin/includes/admin-the-functions.php:94
232
- msgid "PHP Time Limit"
233
- msgstr "PHP Time Limit"
 
234
 
235
- #: admin/includes/admin-the-functions.php:95
 
236
  msgid ""
237
- "The amount of time (in seconds) that your site will spend on a single "
238
- "operation before timing out (to avoid server lockups)"
239
  msgstr ""
240
- "مقدار زمانی (برحسب ثانیه) که سایت شما می تواند بدون قطع شدن یک دستور را اجرا "
241
- "کند(برای جلوگیری از مسدود شدن سرور)"
242
 
243
- #: admin/includes/admin-the-functions.php:100
244
- #, php-format
 
 
 
 
245
  msgid ""
246
- "%s - We recommend setting max execution time to at least 180. See: <a href="
247
- "\"%s\" target=\"_blank\">Increasing max execution to PHP</a>"
 
 
248
  msgstr ""
249
- "%s - ما پیشنهاد می کنیم آن را روی 180 ثانیه تنظیم کنید. <a href=\"%s\" "
250
- "target=\"_blank\"> افزایش زمان اجرا در PHP</a> را ببینید."
251
 
252
- #: admin/includes/admin-the-functions.php:108
253
- msgid "PHP Max Input Vars"
254
- msgstr "PHP Max Input Vars"
255
 
256
- #: admin/includes/admin-the-functions.php:109
257
- msgid ""
258
- "The maximum number of variables your server can use for a single function to "
259
- "avoid overloads."
 
 
 
260
  msgstr ""
261
- "بیشترین تعداد متغیرهایی که سرور شما می تواند در یک تابع استفاده کند تا از "
262
- "اضافه بار جلوگیری شود."
263
 
264
- #: admin/includes/admin-the-functions.php:113
265
- msgid "SUHOSIN Installed"
266
- msgstr "SUHOSIN نصب شده"
 
267
 
268
- #: admin/includes/admin-the-functions.php:114
269
- msgid ""
270
- "Suhosin is an advanced protection system for PHP installations. It was "
271
- "designed to protect your servers on the one hand against a number of well "
272
- "known problems in PHP applications and on the other hand against potential "
273
- "unknown vulnerabilities within these applications or the PHP core itself. If "
274
- "enabled on your server, Suhosin may need to be configured to increase its "
275
- "data submission limits."
276
- msgstr ""
277
- "Suhosin یک سیستم حفاظت پیشرفته برای نصب و راه اندازی PHP است. از یک سو برای "
278
- "حفاظت از سرور شما در برابر مشکلات شناخته شده PHP و از سوی دیگر برای حفاظت "
279
- "در برابر آسیب‌پذیری‌های بالقوه ناشناخته در برنامه‌های کاربردی و یا هسته‌ PHP "
280
- "طراحی شده است. اگر آن را بر روی سرور خود فعال کنید، ممکن است برای افزایش "
281
- "محدودیت ارسال داده نیاز به پیکربندی داشته باشد."
282
-
283
- #: admin/includes/admin-the-functions.php:119
284
- msgid "MySQL Version"
285
- msgstr "نسخه MySQL"
286
-
287
- #: admin/includes/admin-the-functions.php:120
288
- msgid "The version of MySQL installed on your hosting server."
289
- msgstr "نسخه MySQL نصب شده روی سرور میزبان شما."
290
-
291
- #: admin/includes/admin-the-functions.php:130
292
- msgid "Max Upload Size"
293
- msgstr "Max Upload Size"
294
-
295
- #: admin/includes/admin-the-functions.php:131
296
- msgid ""
297
- "The largest file size that can be uploaded to your WordPress installation."
298
- msgstr "بیشترین اندازه فایل که در سایت وردپرسی شما قابل بارگذاری است."
299
 
300
- #: admin/includes/admin-the-functions.php:135
301
- msgid "Default Timezone is UTC"
302
- msgstr "منطقه زمانی پیش فرض UTC است"
303
 
304
- #: admin/includes/admin-the-functions.php:136
305
- msgid "The default timezone for your server."
306
- msgstr "منطقه زمانی پیش فرض سرور شما."
 
 
 
307
 
308
- #: admin/includes/admin-the-functions.php:140
309
- #, php-format
310
- msgid "Default timezone is %s - it should be UTC"
311
- msgstr "منطقه زمانی پیش فرض %s است - درحالی که باید UTC باشد"
312
 
313
- #: admin/includes/admin-the-functions.php:152
314
- msgid "Active Plugins"
315
- msgstr "افزونه های فعال"
 
316
 
317
- #: admin/includes/admin-the-functions.php:171
318
- msgid "Visit plugin homepage"
319
- msgstr "مشاهده صفحه اصلی افزونه"
320
 
321
- #: admin/includes/admin-the-functions.php:176
322
- #, php-format
323
- msgctxt "by author"
324
- msgid "by %s"
325
- msgstr "توسط %s"
326
 
327
- #: admin/includes/classes/class-auxels-import-parser.php:42
328
- #: admin/includes/classes/class-auxels-import-parser.php:74
329
- #: admin/includes/classes/class-auxels-import-parser.php:82
330
- msgid "There was an error when reading this WXR file"
331
- msgstr "خطایی هنگام خواندن این فایل WXR رخ داده است."
332
 
333
- #: admin/includes/classes/class-auxels-import-parser.php:43
334
- msgid ""
335
- "Details are shown above. The importer will now try again with a different "
336
- "parser..."
 
 
 
 
 
 
 
 
 
 
 
337
  msgstr ""
338
- "جزئیات در بالا نمایش داده شده اند. هم اکنون درون ریز با استفاده از تجزیه "
339
- "کننده ی دیگری دوباره تلاش خواهد کرد..."
340
 
341
- #: admin/includes/classes/class-auxels-import-parser.php:86
342
- #: admin/includes/classes/class-auxels-import-parser.php:91
343
- #: admin/includes/classes/class-auxels-import-parser.php:148
344
- #: admin/includes/classes/class-auxels-import-parser.php:249
345
  msgid ""
346
- "This does not appear to be a WXR file, missing/invalid WXR version number"
347
- msgstr "این فایل شبیه یک فایل WXR نیست، شماره نسخه WXR گم شده/نامعتبر است."
 
348
 
349
- #: admin/includes/classes/class-auxels-import.php:38
350
- msgid "Include theme options"
351
- msgstr "شمال شدن تنظیمات پوسته"
 
 
 
 
 
 
 
 
352
 
353
  #: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
 
 
354
  msgid "Choose .."
355
  msgstr "انتخاب .."
356
 
357
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:18
358
- msgid "Audio Post options"
359
- msgstr "تنظیمات نوشته صوتی"
 
360
 
361
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:23
362
- msgid "Audio file (MP3 or ogg)"
363
- msgstr "فایل صوتی (MP3 یا OGG)"
 
364
 
365
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:24
366
- msgid "Please upload an MP3 file for self hosted audio player."
367
- msgstr "لطفا یک فایل MP3 را برای پخش کننده صدای محلی بارگذاری کنید."
368
 
369
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:30
370
- msgid "Audio URL (oEmbed)"
371
- msgstr "آدرس فایل صوتی (oEmbed)"
372
 
373
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:37
374
- #: admin/includes/metaboxes/metabox-fields-post-video.php:44
375
- msgid "Player Skin"
376
- msgstr "نمای پخش کننده"
377
 
378
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:38
379
- #: admin/includes/metaboxes/metabox-fields-post-video.php:45
380
- msgid "Specifies the skin for audio player."
381
- msgstr "نمای پخش کننده صدا را مشخص می کند."
382
 
383
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:44
384
- #: admin/includes/metaboxes/metabox-fields-post-video.php:51
385
- msgid "Default (set in theme options)"
386
- msgstr "پیش فرض (تنظیم شده در تنظیمات پوسته)"
387
 
388
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:48
389
- #: admin/includes/metaboxes/metabox-fields-post-video.php:55
390
- #: includes/elements/audio.php:105 includes/elements/text.php:108
391
- #: includes/elements/video.php:162
392
- msgid "Light"
393
- msgstr "روشن"
394
 
395
- #: admin/includes/metaboxes/metabox-fields-post-audio.php:52
396
- #: admin/includes/metaboxes/metabox-fields-post-video.php:59
397
- #: includes/elements/audio.php:101 includes/elements/code.php:93
398
- #: includes/elements/recent-posts-tiles.php:265 includes/elements/text.php:109
399
- #: includes/elements/video.php:158
400
- msgid "Dark"
401
- msgstr "تیره"
402
 
403
- #: admin/includes/metaboxes/metabox-fields-post-gallery.php:19
404
- msgid "Gallery Post options"
405
- msgstr "تنظیمات نوشته گالری"
406
 
407
- #: admin/includes/metaboxes/metabox-fields-post-gallery.php:24
408
- msgid "The Gallery Images"
409
- msgstr "تصاویر گالری"
 
410
 
411
- #: admin/includes/metaboxes/metabox-fields-post-quote.php:18
412
- msgid "Quote Post options"
413
- msgstr "تنظیمات نوشته نقل قول"
414
 
415
- #: admin/includes/metaboxes/metabox-fields-post-quote.php:23
416
- msgid "Source Name"
417
- msgstr "نام منبع"
 
418
 
419
- #: admin/includes/metaboxes/metabox-fields-post-quote.php:24
420
- msgid "The Source name"
421
- msgstr "نام منبع"
 
422
 
423
- #: admin/includes/metaboxes/metabox-fields-post-quote.php:30
424
- msgid "Source URL"
425
- msgstr "URL منبع"
 
426
 
427
- #: admin/includes/metaboxes/metabox-fields-post-quote.php:31
428
- msgid "Add the URL"
429
- msgstr "افزودن URL"
430
 
431
- #: admin/includes/metaboxes/metabox-fields-post-video.php:18
432
- msgid "Video Post options"
433
- msgstr "تنظیمات نوشته ویدیویی"
434
 
435
- #: admin/includes/metaboxes/metabox-fields-post-video.php:23
436
- #: includes/elements/video.php:106
437
- msgid "Video file"
438
- msgstr "فایل ویدیو"
439
 
440
- #: admin/includes/metaboxes/metabox-fields-post-video.php:24
441
- msgid "Please upload an MP4/OGG/WEBM file for self hosted video player."
 
 
 
 
 
442
  msgstr ""
443
- "لطفا یک فایل با فرمت MP4/OGG/WEBM برای پخش کننده ویدیوی محلی بارگذاری کنید."
444
 
445
- #: admin/includes/metaboxes/metabox-fields-post-video.php:30
446
- msgid "Poster image"
447
- msgstr "تصویر پوستر"
448
 
449
- #: admin/includes/metaboxes/metabox-fields-post-video.php:31
450
- msgid "Please specify an image as a poster for self hosted video player."
451
  msgstr ""
452
- "لطفا یک تصویر را به عنوان پوستر برای پخش کننده ویدیوی محلی انتخاب کنید."
453
 
454
- #: admin/includes/metaboxes/metabox-fields-post-video.php:37
455
- msgid "Video URL (oEmbed)"
456
- msgstr "آدرس ویدیو (oEmbed)"
457
 
458
- #: admin/includes/metaboxes/metabox-fields-post-video.php:38
459
- msgid "Youtube or vimeo link"
460
- msgstr "لینک یوتیوب یا ویمو"
 
461
 
462
- #: auxin-elements.php:30
463
- msgid "PHP version 5.3.0 or above is required for \"Auxin Elements\" plugin"
464
- msgstr "برای افزونه \"المان های اکسین\" PHP نسخه 5.3 یا بالاتر نیاز است."
 
465
 
466
- #: includes/classes/class-auxin-siteorigin-widget.php:224
467
- msgid "The callback for widget does not exists."
468
- msgstr "تابع فراخوانی برای ابزارک وجود ندارد."
 
469
 
470
- #: includes/elements/about-widget.php:11
471
- msgid "[Phlox] About Author"
472
- msgstr "[فلوکس] درباره نویسنده"
 
473
 
474
- #: includes/elements/about-widget.php:14
475
- msgid "It adds an about author element."
476
- msgstr "یک المان درباره نویسنده اضافه می کند."
 
477
 
478
- #: includes/elements/about-widget.php:38 includes/elements/accordion.php:35
479
- #: includes/elements/audio.php:38 includes/elements/code.php:38
480
- #: includes/elements/contact-box.php:34 includes/elements/contact-form.php:38
481
- #: includes/elements/exclude/accordion.php:34
482
- #: includes/elements/exclude/carousel.php:47
483
- #: includes/elements/exclude/chart.php:50
484
- #: includes/elements/exclude/clients.php:48
485
- #: includes/elements/exclude/faq.php:48
486
- #: includes/elements/exclude/get-pages.php:77
487
- #: includes/elements/exclude/get-testimonials.php:46
488
- #: includes/elements/exclude/get-testimonials.php:61
489
- #: includes/elements/exclude/get-testimonials.php:76
490
- #: includes/elements/exclude/get-testimonials.php:91
491
- #: includes/elements/exclude/latest-blog.php:48
492
- #: includes/elements/exclude/latest-news.php:47
493
- #: includes/elements/exclude/latest-news.php:92
494
- #: includes/elements/exclude/link.php:47
495
- #: includes/elements/exclude/list-item.php:47
496
- #: includes/elements/exclude/list.php:47
497
- #: includes/elements/exclude/masterslider.php:47
498
- #: includes/elements/exclude/mini-twitter.php:47
499
- #: includes/elements/exclude/msgbox.php:36
500
- #: includes/elements/exclude/pricetable.php:49
501
- #: includes/elements/exclude/recent-posts2.php:47
502
- #: includes/elements/exclude/services.php:47
503
- #: includes/elements/exclude/soundcloud.php:68
504
- #: includes/elements/exclude/soundcloud.php:83
505
- #: includes/elements/exclude/staffs.php:77
506
- #: includes/elements/exclude/tabs.php:33
507
- #: includes/elements/exclude/testfields.php:50
508
- #: includes/elements/exclude/testimonial-item.php:47
509
- #: includes/elements/exclude/testimonial-slider.php:47
510
- #: includes/elements/exclude/testimonial-slider.php:119
511
- #: includes/elements/exclude/testimonial.php:47
512
- #: includes/elements/exclude/twitter.php:47 includes/elements/gallery.php:37
513
- #: includes/elements/gmap.php:33 includes/elements/image.php:37
514
- #: includes/elements/instagram-feed.php:37
515
- #: includes/elements/latest-posts-slider.php:37
516
- #: includes/elements/latest-posts-slider.php:133
517
- #: includes/elements/popular-posts-widget.php:45
518
- #: includes/elements/popular-posts-widget.php:194
519
- #: includes/elements/quote.php:36
520
- #: includes/elements/recent-posts-grid-carousel.php:51
521
- #: includes/elements/recent-posts-grid-carousel.php:193
522
- #: includes/elements/recent-posts-land-style.php:51
523
- #: includes/elements/recent-posts-land-style.php:194
524
- #: includes/elements/recent-posts-masonry.php:51
525
- #: includes/elements/recent-posts-masonry.php:193
526
- #: includes/elements/recent-posts-tiles.php:51
527
- #: includes/elements/recent-posts-tiles.php:199
528
- #: includes/elements/recent-posts-timeline.php:51
529
- #: includes/elements/recent-posts-timeline.php:220
530
- #: includes/elements/recent-posts-widget.php:51
531
- #: includes/elements/recent-posts-widget.php:154
532
- #: includes/elements/sample-element.php:44
533
- #: includes/elements/sample-element.php:58 includes/elements/search.php:36
534
- #: includes/elements/socials-list.php:37 includes/elements/tabs.php:34
535
- #: includes/elements/text.php:38 includes/elements/video.php:33
536
- msgid "Title"
537
- msgstr "عنوان"
538
 
539
- #: includes/elements/about-widget.php:53
540
- msgid "Name"
541
- msgstr "نام"
 
542
 
543
- #: includes/elements/about-widget.php:54
544
- msgid "The name which appears in about widget."
545
- msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
546
-
547
- #: includes/elements/about-widget.php:67
548
- msgid "Skills"
549
- msgstr "مهارت ها"
550
 
551
- #: includes/elements/about-widget.php:68
552
- msgid "It appears below the name."
553
- msgstr "در پایین نام نمایش داده خواهد شد."
 
554
 
555
- #: includes/elements/about-widget.php:80
556
- msgid "Info"
557
- msgstr "اطلاعات"
 
 
558
 
559
- #: includes/elements/about-widget.php:81
560
- msgid "Biographical info or any other content."
561
- msgstr "اطلاعاتی از زندگی نامه یا هر محتوای دیگری."
 
 
 
 
562
 
563
- #: includes/elements/about-widget.php:95 includes/elements/image.php:52
564
- #: includes/elements/text.php:254
565
- msgid "Image"
566
- msgstr "تصویر"
567
 
568
- #: includes/elements/about-widget.php:96
569
- msgid "It appears above the name."
570
- msgstr "بالای نام نمایش داده خواهد شد."
 
 
571
 
572
- #: includes/elements/about-widget.php:110
573
- msgid "Image style"
574
- msgstr "ظاهر تصویر"
 
 
 
 
575
 
576
- #: includes/elements/about-widget.php:116 includes/elements/divider.php:64
577
- #: includes/elements/dropcap.php:67
578
- #: includes/elements/exclude/testfields.php:106 includes/elements/text.php:210
579
- #: includes/general-hooks.php:230
580
- msgid "Circle"
581
- msgstr "دایره"
582
 
583
- #: includes/elements/about-widget.php:117 includes/elements/dropcap.php:55
584
- #: includes/elements/exclude/accordion-tmp.php:46
585
- #: includes/general-hooks.php:231
586
- msgid "Square"
587
- msgstr "مربع"
588
 
589
- #: includes/elements/about-widget.php:128
590
- msgid "Align center texts"
591
- msgstr "متن تراز وسط"
592
 
593
- #: includes/elements/about-widget.php:143
594
- msgid "Show socials below the info"
595
- msgstr "نمایش شبکه های اجتماعی در زیر اطلاعات"
 
596
 
597
- #: includes/elements/about-widget.php:158 includes/elements/accordion.php:102
598
- #: includes/elements/audio.php:118 includes/elements/code.php:108
599
- #: includes/elements/contact-box.php:286 includes/elements/contact-form.php:104
600
- #: includes/elements/divider.php:127 includes/elements/dropcap.php:92
601
- #: includes/elements/exclude/accordion-section.php:104
602
- #: includes/elements/exclude/accordion-tmp.php:175
603
- #: includes/elements/exclude/accordion.php:81
604
- #: includes/elements/exclude/auxin-accordion.php:127
605
- #: includes/elements/exclude/call-to-action.php:199
606
- #: includes/elements/exclude/carousel.php:93
607
- #: includes/elements/exclude/clients.php:93
608
- #: includes/elements/exclude/faq.php:123
609
- #: includes/elements/exclude/get-pages.php:152
610
- #: includes/elements/exclude/get-testimonials.php:151
611
- #: includes/elements/exclude/latest-blog.php:258
612
- #: includes/elements/exclude/latest-news.php:242
613
- #: includes/elements/exclude/link.php:107
614
- #: includes/elements/exclude/list-item.php:110
615
- #: includes/elements/exclude/list.php:95
616
- #: includes/elements/exclude/msgbox.php:95
617
- #: includes/elements/exclude/pricetable.php:94
618
- #: includes/elements/exclude/related-posts.php:212
619
- #: includes/elements/exclude/services.php:167
620
- #: includes/elements/exclude/soundcloud.php:113
621
- #: includes/elements/exclude/staffs.php:167
622
- #: includes/elements/exclude/tabs.php:62
623
- #: includes/elements/exclude/testimonial-item.php:122
624
- #: includes/elements/exclude/testimonial.php:167
625
- #: includes/elements/facebook.php:157 includes/elements/gallery.php:252
626
- #: includes/elements/gmap.php:183 includes/elements/highlight.php:89
627
- #: includes/elements/image.php:204 includes/elements/instagram-feed.php:279
628
- #: includes/elements/latest-items.php:251
629
- #: includes/elements/popular-posts-widget.php:256
630
- #: includes/elements/quote.php:168
631
- #: includes/elements/recent-posts-grid-carousel.php:550
632
- #: includes/elements/recent-posts-land-style.php:368
633
- #: includes/elements/recent-posts-masonry.php:400
634
- #: includes/elements/recent-posts-tiles.php:299
635
- #: includes/elements/recent-posts-timeline.php:374
636
- #: includes/elements/recent-posts-widget.php:216
637
- #: includes/elements/search.php:51 includes/elements/tabs.php:101
638
- #: includes/elements/text.php:312 includes/elements/video.php:175
639
- #: public/templates/vcomposer/auxin_vc_extendes.php:73
640
- msgid "Extra class name"
641
- msgstr "نام کلاس اضافه"
642
 
643
- #: includes/elements/about-widget.php:159 includes/elements/accordion.php:103
644
- #: includes/elements/audio.php:119 includes/elements/code.php:109
645
- #: includes/elements/contact-box.php:287 includes/elements/contact-form.php:105
646
- #: includes/elements/dropcap.php:93
647
- #: includes/elements/exclude/accordion-section.php:105
648
- #: includes/elements/exclude/accordion-tmp.php:177
649
- #: includes/elements/exclude/accordion.php:82
650
- #: includes/elements/exclude/auxin-accordion.php:128
651
- #: includes/elements/exclude/call-to-action.php:200
652
- #: includes/elements/exclude/carousel.php:94
653
- #: includes/elements/exclude/clients.php:94
654
- #: includes/elements/exclude/faq.php:124
655
- #: includes/elements/exclude/get-pages.php:153
656
- #: includes/elements/exclude/get-testimonials.php:152
657
- #: includes/elements/exclude/latest-blog.php:259
658
- #: includes/elements/exclude/latest-news.php:243
659
- #: includes/elements/exclude/link.php:108
660
- #: includes/elements/exclude/list-item.php:111
661
- #: includes/elements/exclude/list.php:96
662
- #: includes/elements/exclude/msgbox.php:96
663
- #: includes/elements/exclude/pricetable.php:95
664
- #: includes/elements/exclude/related-posts.php:213
665
- #: includes/elements/exclude/services.php:168
666
- #: includes/elements/exclude/soundcloud.php:114
667
- #: includes/elements/exclude/staffs.php:168
668
- #: includes/elements/exclude/tabs.php:63
669
- #: includes/elements/exclude/testimonial-item.php:123
670
- #: includes/elements/exclude/testimonial.php:168
671
- #: includes/elements/facebook.php:158 includes/elements/gallery.php:253
672
- #: includes/elements/gmap.php:184 includes/elements/highlight.php:90
673
- #: includes/elements/image.php:205 includes/elements/instagram-feed.php:280
674
- #: includes/elements/latest-items.php:252
675
- #: includes/elements/popular-posts-widget.php:257
676
- #: includes/elements/quote.php:169
677
- #: includes/elements/recent-posts-grid-carousel.php:551
678
- #: includes/elements/recent-posts-land-style.php:369
679
- #: includes/elements/recent-posts-masonry.php:401
680
- #: includes/elements/recent-posts-tiles.php:300
681
- #: includes/elements/recent-posts-timeline.php:375
682
- #: includes/elements/recent-posts-widget.php:217
683
- #: includes/elements/search.php:52 includes/elements/tabs.php:102
684
- #: includes/elements/text.php:313 includes/elements/video.php:176
685
  msgid ""
686
- "If you wish to style particular content element differently, then use this "
687
- "field to add a class name and then refer to it in your css file."
688
  msgstr ""
689
- "اگر می خواهید ظاهر این المان را به طور جداگانه تغییر دهید، از فیلد زیر برای "
690
- "افزودن نام کلاس دلخواه استفاده کنید و سپس در فایل css خود به آن ارجاع دهید."
691
 
692
- #: includes/elements/accordion.php:11
693
- #: includes/elements/exclude/accordion.php:11
694
- msgid "[Phlox] Accordion "
695
- msgstr "[فلوکس] آکاردئون"
696
 
697
- #: includes/elements/accordion.php:14
698
- #: includes/elements/exclude/accordion.php:14
699
- msgid "Collapsible content"
700
- msgstr "محتوای بازشونده"
 
701
 
702
- #: includes/elements/accordion.php:36
703
- #: includes/elements/exclude/accordion.php:35
704
- msgid "Accordion title, leave it empty if you don`t need title."
705
- msgstr "عنوان آکاردئون، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
706
 
707
- #: includes/elements/accordion.php:49
708
- #: includes/elements/exclude/accordion.php:48
709
- #: includes/elements/exclude/get-testimonials.php:106
710
- #: includes/elements/exclude/get-testimonials.php:121
711
- msgid "Type"
712
- msgstr "نوع"
713
 
714
- #: includes/elements/accordion.php:50
715
- #: includes/elements/exclude/accordion.php:49
716
- msgid "Whether to show only 1 element opens at a time or multiple."
717
- msgstr "در یک زمان فقط یک المان باز باشد یا چندتا."
718
 
719
- #: includes/elements/accordion.php:55
720
- #: includes/elements/exclude/accordion.php:54
721
- msgid "Toggle"
722
- msgstr "باز و بسته شونده"
723
 
724
- #: includes/elements/accordion.php:56 includes/elements/accordion.php:70
725
- #: includes/elements/accordion.php:87
726
- #: includes/elements/exclude/accordion.php:55
727
- msgid "Accordion"
728
- msgstr "آکاردئون"
729
 
730
- #: includes/elements/accordion.php:67
731
- msgid "Accordion label"
732
- msgstr "برچسب آکاردئون"
 
733
 
734
- #: includes/elements/accordion.php:68
735
- msgid "Enter your accordion item label."
736
- msgstr "برچسب آیتم آکاردئون خود را وارد کنید."
 
737
 
738
- #: includes/elements/accordion.php:71 includes/elements/accordion.php:88
739
- msgid "Accordion Section"
740
- msgstr "بخش آکاردئون"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
741
 
742
- #: includes/elements/accordion.php:84 includes/elements/dropcap.php:77
743
- #: includes/elements/exclude/accordion-tmp.php:20
744
- #: includes/elements/exclude/accordion-tmp.php:220
745
- #: includes/elements/exclude/accordion.php:66
746
- #: includes/elements/exclude/call-to-action.php:79
747
- #: includes/elements/exclude/col.php:49
748
- #: includes/elements/exclude/latest-blog.php:243
749
- #: includes/elements/exclude/latest-news.php:227
750
- #: includes/elements/exclude/link.php:92
751
- #: includes/elements/exclude/list-item.php:95
752
- #: includes/elements/exclude/list.php:80
753
- #: includes/elements/exclude/msgbox.php:80
754
- #: includes/elements/exclude/pricetable.php:79
755
- #: includes/elements/exclude/related-posts.php:197
756
- #: includes/elements/exclude/services.php:152
757
- #: includes/elements/exclude/soundcloud.php:98
758
- #: includes/elements/exclude/tabs.php:47
759
- #: includes/elements/exclude/testfields.php:175
760
- #: includes/elements/exclude/testimonial.php:152
761
- #: includes/elements/highlight.php:73 includes/elements/tabs.php:83
762
- #: includes/elements/text.php:297
763
- msgid "Content"
764
- msgstr "محتوا"
 
 
 
 
 
 
 
 
765
 
766
- #: includes/elements/accordion.php:85
767
- msgid "Enter your accordion item content."
768
- msgstr "محتوای آیتم آکاردئون را وارد کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
769
 
770
- #: includes/elements/audio.php:10
771
- msgid "[Phlox] Audio"
772
- msgstr "[فلوکس] صدا"
773
 
774
- #: includes/elements/audio.php:13
775
- msgid "Audio player"
776
- msgstr "پخش کننده صدا"
 
777
 
778
- #: includes/elements/audio.php:14
779
- msgid "It adds an audio player element."
780
- msgstr "یک المان پخش کننده صدا اضافه می کند."
781
 
782
- #: includes/elements/audio.php:39
783
- msgid "Audio title, leave it empty if you don`t need title."
784
- msgstr "عنوان صدا، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
 
785
 
786
- #: includes/elements/audio.php:52
787
- msgid "Audio file(MP3 or ogg)"
788
- msgstr "فایل صوتی (MP3 یا OGG)"
789
 
790
- #: includes/elements/audio.php:66
791
- msgid "Repeat the audio"
792
- msgstr "تکرار صدا"
793
 
794
- #: includes/elements/audio.php:80
795
- msgid "AutoPlay"
796
- msgstr "نمایش خودکار"
797
 
798
- #: includes/elements/audio.php:81
799
- msgid "Play the audio file automatically."
800
- msgstr "فایل صوتی را به صورت خودکار پخش کن."
 
801
 
802
- #: includes/elements/audio.php:94
803
- msgid "Skin"
804
- msgstr "نما"
805
 
806
- #: includes/elements/audio.php:95
807
- msgid "The skin of audio element."
808
- msgstr "نمای المان صدا"
 
 
 
809
 
810
- #: includes/elements/button.php:11
811
- msgid "[Phlox] Button"
812
- msgstr "[فلوکس] دکمه"
 
 
 
 
813
 
814
- #: includes/elements/button.php:14
815
- msgid "It adds a button element."
816
- msgstr "یک المان دکمه اضافه می کند."
 
817
 
818
- #: includes/elements/button.php:38
819
- msgid "Button label"
820
- msgstr "برچسب دکمه"
 
821
 
822
- #: includes/elements/button.php:39
823
- msgid "The label of button."
824
- msgstr "برچسب دکمه"
 
825
 
826
- #: includes/elements/button.php:52
827
- msgid "Button size"
828
- msgstr "اندازه دکمه"
 
829
 
830
- #: includes/elements/button.php:58
831
- msgid "Exlarge"
832
- msgstr "خیلی بزرگ"
833
 
834
- #: includes/elements/button.php:59 includes/elements/divider.php:79
835
- #: includes/elements/gallery.php:207 includes/elements/socials-list.php:60
836
- #: includes/elements/text.php:192
837
- msgid "Large"
838
- msgstr "بزرگ"
839
 
840
- #: includes/elements/button.php:60 includes/elements/divider.php:80
841
- #: includes/elements/gallery.php:208 includes/elements/instagram-feed.php:93
842
- #: includes/elements/socials-list.php:59 includes/elements/text.php:191
843
- msgid "Medium"
844
- msgstr "متوسط"
845
 
846
- #: includes/elements/button.php:61 includes/elements/divider.php:81
847
- #: includes/elements/gallery.php:209 includes/elements/socials-list.php:58
848
- #: includes/elements/text.php:190
849
- msgid "Small"
850
- msgstr "کوچک"
851
 
852
- #: includes/elements/button.php:62
853
- msgid "Tiny"
854
- msgstr "خیلی کوچک"
855
 
856
- #: includes/elements/button.php:74
857
- msgid "Button shape style"
858
- msgstr "ظاهر شکل دکمه"
 
859
 
860
- #: includes/elements/button.php:88
861
- msgid "Box"
862
- msgstr "جعبه"
 
863
 
864
- #: includes/elements/button.php:92
865
- #: includes/elements/exclude/accordion-tmp.php:47
866
- #: includes/elements/exclude/testfields.php:63
867
- msgid "Round"
868
- msgstr "گرد"
869
 
870
- #: includes/elements/button.php:96 includes/elements/exclude/testfields.php:64
871
- msgid "Curve"
872
- msgstr "منحنی"
 
873
 
874
- #: includes/elements/button.php:103
875
- #: includes/elements/exclude/call-to-action.php:139
876
- #: includes/elements/exclude/faq.php:78
877
- msgid "Button style"
878
- msgstr "ظاهر دکمه"
879
 
880
- #: includes/elements/button.php:117
881
- msgid "Normal"
882
- msgstr "معمولی"
 
883
 
884
- #: includes/elements/button.php:121
885
- msgid "3D"
886
- msgstr "سه بعدی"
887
 
888
- #: includes/elements/button.php:125
889
- #: includes/elements/exclude/accordion-tmp.php:36
890
- msgid "Outline"
891
- msgstr "خط بیرونی"
892
 
893
- #: includes/elements/button.php:132
894
- msgid "Uppercase label"
895
- msgstr "برچسب حروف بزرگ"
896
 
897
- #: includes/elements/button.php:147
898
- msgid "Darken the label"
899
- msgstr "تیره تر کردن برچسب"
900
 
901
- #: includes/elements/button.php:148
902
- msgid "Darken label of button while mouse over it."
903
- msgstr "تیره تر کردن برچسب هنگامی که ماوس روی آن است."
 
904
 
905
- #: includes/elements/button.php:163
906
- msgid "Icon for button"
907
- msgstr "شکلک برای دکمه"
908
 
909
- #: includes/elements/button.php:178 includes/general-hooks.php:253
910
- msgid "Icon alignment"
911
- msgstr "تراز شکلک"
 
 
912
 
913
- #: includes/elements/button.php:184 includes/elements/quote.php:119
914
- #: includes/general-hooks.php:427
915
- msgid "Default"
916
- msgstr "پیش فرض"
917
 
918
- #: includes/elements/button.php:185
919
- #: includes/elements/exclude/accordion-tmp.php:103
920
- #: includes/elements/exclude/accordion-tmp.php:155
921
- #: includes/elements/image.php:119 includes/elements/quote.php:120
922
- #: includes/elements/recent-posts-timeline.php:76 includes/elements/text.php:80
923
- #: includes/general-hooks.php:256
924
- msgid "Left"
925
- msgstr "چپ"
926
 
927
- #: includes/elements/button.php:186
928
- #: includes/elements/exclude/accordion-tmp.php:104
929
- #: includes/elements/exclude/accordion-tmp.php:156
930
- #: includes/elements/image.php:120 includes/elements/quote.php:121
931
- #: includes/elements/recent-posts-timeline.php:80
932
- #: includes/general-hooks.php:257
933
- msgid "Right"
934
- msgstr "راست"
935
 
936
- #: includes/elements/button.php:187
937
- msgid "Over"
938
- msgstr "رو"
939
 
940
- #: includes/elements/button.php:188
941
- msgid "Animate from Left"
942
- msgstr "متحرک سازی از چپ"
943
 
944
- #: includes/elements/button.php:189
945
- msgid "Animate from Right"
946
- msgstr "متحرک سازی از راست"
 
 
 
947
 
948
- #: includes/elements/button.php:200
949
- msgid "Color of button"
950
- msgstr "رنگ دکمه"
 
 
 
 
951
 
952
- #: includes/elements/button.php:215
953
- msgid "Link"
954
- msgstr "پیوند"
955
 
956
- #: includes/elements/button.php:216
957
- msgid "If you want to link your button."
958
- msgstr "اگر می خواهید دکمه را لینک کنید."
 
959
 
960
- #: includes/elements/button.php:230
961
- msgid "Open link in"
962
- msgstr "باز کردن پیوند در"
 
963
 
964
- #: includes/elements/button.php:236
965
- msgid "Current page"
966
- msgstr "صفحه جاری"
 
967
 
968
- #: includes/elements/button.php:237
969
- msgid "New page"
970
- msgstr "صفحه جدید"
 
971
 
972
- #: includes/elements/code.php:11
973
- msgid "[Phlox] Code"
974
- msgstr "[فلوکس] کد"
 
975
 
976
- #: includes/elements/code.php:14
977
- msgid "It adds a code element."
978
- msgstr "یک المان کد اضافه می کند."
 
979
 
980
- #: includes/elements/code.php:39
981
- msgid "Code title, leave it empty if you don`t need title."
982
- msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
983
 
984
- #: includes/elements/code.php:53
985
- msgid "Code"
986
- msgstr "کد"
987
 
988
- #: includes/elements/code.php:74
989
- msgid "javascript"
990
- msgstr "جاوااسکریپت"
 
991
 
992
- #: includes/elements/code.php:75
993
- msgid "html"
994
- msgstr "html"
995
 
996
- #: includes/elements/code.php:76
997
- msgid "xml"
998
- msgstr "xml"
 
 
999
 
1000
- #: includes/elements/code.php:87
1001
- msgid "Theme"
1002
- msgstr "پوسته"
 
1003
 
1004
- #: includes/elements/code.php:88
1005
- msgid "Specifies the theme for code element."
1006
- msgstr "پوسته المان کد را مشخص می کند."
1007
 
1008
- #: includes/elements/code.php:92
1009
- msgid "tomorrow"
1010
- msgstr "فردا"
1011
-
1012
- #: includes/elements/code.php:94
1013
- msgid "far"
1014
- msgstr "دور"
1015
 
1016
- #: includes/elements/code.php:95
1017
- msgid "googlecode"
1018
- msgstr "گوگل کد"
1019
 
1020
- #: includes/elements/code.php:96
1021
- msgid "github"
1022
- msgstr "گیت هاب"
1023
 
1024
- #: includes/elements/code.php:97
1025
- msgid "monokai"
1026
- msgstr "موناکوی"
1027
 
1028
- #: includes/elements/contact-box.php:11
1029
- msgid "[Phlox] Contact Box"
1030
- msgstr "[فلوکس] جعبه تماس"
 
1031
 
1032
- #: includes/elements/contact-box.php:14
1033
- msgid "It adds a contact box element."
1034
- msgstr "یک جعبه تماس اضافه می کند."
1035
 
1036
- #: includes/elements/contact-box.php:35
1037
- msgid "Contact box title, leave it empty if you don`t need title."
1038
- msgstr "عنوان جعبه تماس، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
1039
 
1040
- #: includes/elements/contact-box.php:49 includes/elements/contact-form.php:53
1041
- msgid "Email"
1042
- msgstr "ایمیل"
 
1043
 
1044
- #: includes/elements/contact-box.php:50
1045
- msgid "Contact box email address."
1046
- msgstr "آدرس ایمیل جعبه تماس"
 
1047
 
1048
- #: includes/elements/contact-box.php:63
1049
- msgid "Telephone"
1050
- msgstr "تلفن"
 
 
1051
 
1052
- #: includes/elements/contact-box.php:64
1053
- msgid "Contact box phone number."
1054
- msgstr "شماره تلفن جعبه تماس"
 
 
1055
 
1056
- #: includes/elements/contact-box.php:76
1057
- msgid "Address"
1058
- msgstr "آدرس"
 
1059
 
1060
- #: includes/elements/contact-box.php:77
1061
- msgid "Contact box address."
1062
- msgstr "آدرس جعبه تماس"
 
1063
 
1064
- #: includes/elements/contact-box.php:89
1065
- msgid "Show socials"
1066
- msgstr "شکلک های شبکه های اجتماعی"
 
 
1067
 
1068
- #: includes/elements/contact-box.php:90
1069
- msgid "Show socials below the info."
1070
- msgstr "نمایش شبکه های اجتماعی در پایین اطلاعات"
 
1071
 
1072
- #: includes/elements/contact-box.php:104
1073
- msgid "Show map"
1074
- msgstr "نمایش نقشه"
 
1075
 
1076
- #: includes/elements/contact-box.php:105
1077
- msgid "Show map above the info."
1078
- msgstr "نمایش نقشه در بالای اطلاعات"
 
1079
 
1080
- #: includes/elements/contact-box.php:119
1081
- msgid "Map height"
1082
- msgstr "ارتفاع نقشه"
 
1083
 
1084
- #: includes/elements/contact-box.php:120
1085
- msgid "Height of the map in pixels."
1086
- msgstr "ارتفاع نقشه بر حسب پیکسل"
 
1087
 
1088
- #: includes/elements/contact-box.php:137 includes/elements/gmap.php:62
1089
- msgid "Latitude"
1090
- msgstr "عرض جغرافیایی"
1091
 
1092
- #: includes/elements/contact-box.php:138 includes/elements/gmap.php:63
1093
- msgid "Latitude location over the map."
1094
- msgstr "محل عرض جغرافیایی بر روی نقشه."
 
 
 
1095
 
1096
- #: includes/elements/contact-box.php:154 includes/elements/gmap.php:77
1097
- msgid "Longitude"
1098
- msgstr "طول جغرافیایی"
 
 
1099
 
1100
- #: includes/elements/contact-box.php:155 includes/elements/gmap.php:78
1101
- msgid "Longitude location over the map."
1102
- msgstr "محل طول جغرافیایی بر روی نقشه."
 
1103
 
1104
- #: includes/elements/contact-box.php:171 includes/elements/gmap.php:92
1105
- msgid "Map type"
1106
- msgstr "نوع نقشه"
1107
 
1108
- #: includes/elements/contact-box.php:175 includes/elements/gmap.php:97
1109
- msgid "ROADMAP"
1110
- msgstr "نقشه راه"
1111
 
1112
- #: includes/elements/contact-box.php:175 includes/elements/gmap.php:97
1113
- msgid "SATELLITE"
1114
- msgstr "ماهواره"
 
 
1115
 
1116
- #: includes/elements/contact-box.php:188 includes/elements/gmap.php:107
1117
- msgid "Map style"
1118
- msgstr "ظاهر نقشه"
 
1119
 
1120
- #: includes/elements/contact-box.php:189
1121
  msgid ""
1122
- "This feild allows you to customize the presentation of the standard Google "
1123
- "base maps. You can find many preset styles in "
1124
  msgstr ""
1125
- "این فیلد به شما اجازه می دهد نحوه نمایش پایه ای نقشه گوگل را تغییر دهید. شما "
1126
- "می توانید سبک های پیش ساخته را در اینجا پیدا کنید:"
1127
 
1128
- #: includes/elements/contact-box.php:190 includes/elements/gmap.php:109
1129
- msgid "this website."
1130
- msgstr "این وب سایت."
1131
 
1132
- #: includes/elements/contact-box.php:215 includes/elements/gmap.php:123
1133
- msgid "Marker info"
1134
- msgstr "اطلاعات نشانگر"
 
1135
 
1136
- #: includes/elements/contact-box.php:216 includes/elements/gmap.php:124
1137
- msgid "Marker popup text, leave it empty if you don't need it."
1138
- msgstr "متن پنجره نشانگر، اگر به ان نیاز ندارید این بخش را خالی بگذارید."
 
 
 
 
 
 
 
 
 
 
1139
 
1140
- #: includes/elements/contact-box.php:233 includes/elements/gmap.php:138
1141
- #: includes/elements/recent-posts-grid-carousel.php:475
1142
- msgid "Navigation control"
1143
- msgstr "کنترل های ناوبری"
 
 
 
 
 
 
 
 
 
 
 
1144
 
1145
- #: includes/elements/contact-box.php:234
1146
- msgid "Show nacigation control on map."
1147
- msgstr "نمایش کنترل های ناوبری روی نقشه."
 
1148
 
1149
- #: includes/elements/contact-box.php:251 includes/elements/gmap.php:153
1150
- msgid "Zoom"
1151
- msgstr "بزرگنمایی"
 
 
1152
 
1153
- #: includes/elements/contact-box.php:252
1154
- msgid "The initial resolution at which to display the map, between 1 to 20."
1155
- msgstr "رزولوشن اولیه برای نمایش نقشه، بین 1 تا 20."
1156
 
1157
- #: includes/elements/contact-box.php:268 includes/elements/gmap.php:168
1158
- msgid "Zoom with mouse wheel"
1159
- msgstr "بزرگنمایی با چرخ ماوس"
 
 
1160
 
1161
- #: includes/elements/contact-form.php:11
1162
- msgid "[Phlox] Contact Form"
1163
- msgstr "[فلوکس] فرم تماس"
1164
 
1165
- #: includes/elements/contact-form.php:14
1166
- msgid "It adds a contact form element."
1167
- msgstr "یک المان فرم تماس اضافه می کند."
 
1168
 
1169
- #: includes/elements/contact-form.php:39
1170
- msgid "Contact form title, leave it empty if you don`t need title."
1171
- msgstr "عنوان فرم تماس، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
1172
 
1173
- #: includes/elements/contact-form.php:54
1174
- msgid "Email address of message's recipient"
1175
- msgstr "آدرس ایمیل دریافت کننده ی پیام ها"
1176
 
1177
- #: includes/elements/contact-form.php:68
1178
- msgid "Contact form type"
1179
- msgstr "نوع فرم تماس"
 
1180
 
1181
- #: includes/elements/contact-form.php:69
1182
  msgid ""
1183
- "Specifies contact form element's type. Whether to use built-in form or "
1184
- "Contact Form 7."
1185
  msgstr ""
1186
- "نوع فرم تماس را مشخص می کند. از فرم تماس داخلی استفاده شود یا فرم تماس 7."
1187
-
1188
- #: includes/elements/contact-form.php:73
1189
- msgid "Phlox Contact Form"
1190
- msgstr "فرم تماس فلوکس"
1191
-
1192
- #: includes/elements/contact-form.php:74
1193
- msgid "Contact Form 7 plugin"
1194
- msgstr "افزونه فرم تماس 7"
1195
 
1196
- #: includes/elements/contact-form.php:86
1197
- msgid "Contact form 7 shortcode"
1198
- msgstr "کد کوتاه فرم تماس 7"
1199
 
1200
- #: includes/elements/contact-form.php:87
1201
- msgid "Put one of your Contact form 7 shortcodes that you created."
1202
- msgstr "کد کوتاه یکی از فرم های تماس 7 خود را در اینجا وارد کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
 
1204
- #: includes/elements/contact-form.php:155
1205
- msgid "Please enter your name."
1206
- msgstr "لطفا نام خود را وارد کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1207
 
1208
- #: includes/elements/contact-form.php:162
1209
- msgid "Please enter your email address."
1210
- msgstr "لطفا آدرس ایمیل خود را وارد کنید."
 
1211
 
1212
- #: includes/elements/contact-form.php:165
1213
- msgid "You entered an invalid email address."
1214
- msgstr "لطفا آدرس ایمیل معتبری وارد کنید."
 
1215
 
1216
- #: includes/elements/contact-form.php:176
1217
- msgid "Please enter a message."
1218
- msgstr "لطفا پیامی را وارد کنید."
 
1219
 
1220
- #: includes/elements/contact-form.php:213
1221
- msgid "sorry, some problems occured with your form submission:"
1222
- msgstr "متاسفیم، خطایی در ارسال فرم شما رخ داده است."
1223
 
1224
- #: includes/elements/contact-form.php:228
1225
- msgid "Submit"
1226
- msgstr "تایید"
 
1227
 
1228
- #: includes/elements/contact-form.php:231
1229
- msgid "Thanks for your Message. Your message sent successfully."
1230
- msgstr "از پیام شما متشکریم. پیام شما با موفقیت ارسال شد."
1231
 
1232
- #: includes/elements/divider.php:11
1233
- msgid "[Phlox] Divider"
1234
- msgstr "[فلوکس] جداکننده"
 
1235
 
1236
- #: includes/elements/divider.php:14
1237
- msgid "Horizontal seperator"
1238
- msgstr "جداکننده افقس"
 
1239
 
1240
- #: includes/elements/divider.php:38 includes/elements/highlight.php:37
1241
- msgid "Divider style"
1242
- msgstr "ظاهر جداکننده"
 
 
 
 
 
 
 
 
 
1243
 
1244
- #: includes/elements/divider.php:52 includes/elements/exclude/testfields.php:96
1245
- #: includes/elements/text.php:276
1246
- msgid "White Space"
1247
- msgstr "فاصله خالی"
 
 
 
 
 
 
 
 
 
 
 
1248
 
1249
- #: includes/elements/divider.php:56 includes/elements/exclude/testfields.php:91
1250
- #: includes/elements/text.php:280
1251
- msgid "Solid"
1252
- msgstr "یک دست"
 
 
 
 
 
 
 
 
 
 
1253
 
1254
- #: includes/elements/divider.php:60
1255
- #: includes/elements/exclude/testfields.php:101 includes/elements/text.php:284
1256
- msgid "Dashed"
1257
- msgstr "خط چین"
1258
 
1259
- #: includes/elements/divider.php:68
1260
- #: includes/elements/exclude/testfields.php:111
1261
- msgid "Diamond"
1262
- msgstr "الماس"
1263
 
1264
- #: includes/elements/divider.php:74
1265
- msgid "Divider width"
1266
- msgstr "عرض جداکننده"
 
1267
 
1268
- #: includes/elements/divider.php:75
1269
- msgid "Specifies the width size of divider."
1270
- msgstr "اندازه عرض جداکننده را مشخص می کند."
 
 
1271
 
1272
- #: includes/elements/divider.php:97
1273
- msgid "Margin top (px)"
1274
- msgstr "فاصله بیرونی بالا (پیکسل)"
1275
 
1276
- #: includes/elements/divider.php:98
1277
- msgid "Adds space above the divider in pixels."
1278
- msgstr "فضای خالی (برحسب پیکسل) به بالای جداکننده اضافه می کند."
 
1279
 
1280
- #: includes/elements/divider.php:112
1281
- msgid "Margin bottom (px)"
1282
- msgstr "فاصله بیرونی پایین (پیکسل)"
 
1283
 
1284
- #: includes/elements/divider.php:113
1285
- msgid "Adds space below the devider in pixels."
1286
- msgstr "فضای خالی (برحسب پیکسل) به زیر جداکننده اضافه می کند."
1287
 
1288
- #: includes/elements/divider.php:128
1289
- msgid ""
1290
- "If you wish to style particular content element differently, then use this "
1291
- "field to add a class name and then refer to it in your css file. you can add "
1292
- "multiple CSS class by separating them with space."
1293
  msgstr ""
1294
- "اگر می خواهید ظاهر این المان را به طور جداگانه تغییر دهید، از فیلد زیر برای "
1295
- "افزودن نام کلاس دلخواه استفاده کنید و سپس در فایل css خود به آن ارجاع دهید. "
1296
- "می توانید چند نام کلاس را با کاما از هم جدا کنید."
1297
 
1298
- #: includes/elements/dropcap.php:10
1299
- msgid "[Phlox] Dropcap"
1300
- msgstr "[فلوکس] دارپ کپ"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1301
 
1302
- #: includes/elements/dropcap.php:13
1303
- msgid "Big styled character at the beginning of paragraph"
1304
- msgstr "حرف بزرگ سبک دهی شده در اول پاراگراف"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1305
 
1306
- #: includes/elements/dropcap.php:37
1307
- msgid "Dropcap style"
1308
- msgstr "ظاهر دراپ کپ"
1309
 
1310
- #: includes/elements/dropcap.php:51
1311
- #: includes/elements/exclude/accordion-tmp.php:33
1312
- msgid "Classic"
1313
- msgstr "کلاسیک"
1314
 
1315
- #: includes/elements/dropcap.php:59 includes/general-hooks.php:234
1316
- msgid "Outline Square"
1317
- msgstr "مربع با خط بیرونی"
 
1318
 
1319
- #: includes/elements/dropcap.php:63
1320
- msgid "Round Square"
1321
- msgstr "مربع لبه گرد"
 
1322
 
1323
- #: includes/elements/dropcap.php:71 includes/general-hooks.php:233
1324
- msgid "Outline Circle"
1325
- msgstr "دایره با خط بیرونی"
 
1326
 
1327
- #: includes/elements/dropcap.php:78
1328
- msgid "Enter a text to show as dropcap text."
1329
- msgstr "متنی را برای نمایش به شکل دراپ کپ وارد کنید."
 
1330
 
1331
- #: includes/elements/exclude/accordion-section.php:21
1332
- msgid "Auxin Accordion Section"
1333
- msgstr "اکسین بخش آکاردئون"
1334
-
1335
- #: includes/elements/exclude/accordion-section.php:24
1336
- #: includes/elements/exclude/accordion-tmp.php:221
1337
- msgid "Section for Tabs, Tours, Accordions."
1338
- msgstr "بخش هایی برای زبانه ها، گشت و گذارها، آکاردئون ها."
1339
-
1340
- #: includes/elements/exclude/accordion-section.php:64
1341
- #: includes/elements/exclude/auxin-accordion.php:72
1342
- #: includes/elements/exclude/call-to-action.php:46
1343
- #: includes/elements/exclude/call-to-action.php:136
1344
- #: includes/elements/exclude/call-to-action.php:166
1345
- #: includes/elements/exclude/testimonial-item.php:59
1346
- #: includes/elements/exclude/testimonial-slider.php:74
1347
- #: includes/elements/exclude/twitter-slider.php:59
1348
- msgid "Style 1"
1349
- msgstr "ظاهر 1"
1350
-
1351
- #: includes/elements/exclude/accordion-section.php:65
1352
- #: includes/elements/exclude/auxin-accordion.php:73
1353
- #: includes/elements/exclude/call-to-action.php:46
1354
- #: includes/elements/exclude/call-to-action.php:136
1355
- #: includes/elements/exclude/call-to-action.php:166
1356
- #: includes/elements/exclude/testimonial-item.php:59
1357
- #: includes/elements/exclude/testimonial-slider.php:74
1358
- #: includes/elements/exclude/twitter-slider.php:59
1359
- msgid "Style 2"
1360
- msgstr "ظاهر 2"
1361
-
1362
- #: includes/elements/exclude/accordion-section.php:66
1363
- #: includes/elements/exclude/auxin-accordion.php:74
1364
- #: includes/elements/exclude/call-to-action.php:46
1365
- #: includes/elements/exclude/call-to-action.php:136
1366
- #: includes/elements/exclude/call-to-action.php:166
1367
- #: includes/elements/exclude/testimonial-item.php:59
1368
- #: includes/elements/exclude/testimonial-slider.php:74
1369
- msgid "Style 3"
1370
- msgstr "ظاهر 3"
1371
-
1372
- #: includes/elements/exclude/accordion-section.php:67
1373
- #: includes/elements/exclude/auxin-accordion.php:75
1374
- msgid "Style 4"
1375
- msgstr "ظاهر 4"
1376
-
1377
- #: includes/elements/exclude/accordion-section.php:71
1378
- #: includes/elements/exclude/accordion-tmp.php:38
1379
- #: includes/elements/exclude/auxin-accordion.php:79
1380
- #: includes/elements/exclude/call-to-action.php:49
1381
- #: includes/elements/exclude/testimonial-item.php:62
1382
- #: includes/elements/exclude/testimonial-slider.php:77
1383
- #: includes/elements/tabs.php:48
1384
- msgid "Style"
1385
- msgstr "ظاهر"
1386
 
1387
- #: includes/elements/exclude/accordion-section.php:72
1388
- #: includes/elements/exclude/accordion-tmp.php:39
1389
- #: includes/elements/exclude/auxin-accordion.php:80
1390
- msgid "Select accordion display style."
1391
- msgstr "انتخاب نحوه نمایش آکاردئون."
1392
-
1393
- #: includes/elements/exclude/accordion-section.php:84
1394
- #: includes/elements/exclude/auxin-accordion.php:92
1395
- msgid "One toggle open at a time"
1396
- msgstr "در یک زمان فقط یکی از بازشونده ها باز باشد."
1397
-
1398
- #: includes/elements/exclude/accordion-section.php:85
1399
- #: includes/elements/exclude/auxin-accordion.php:93
1400
- msgid "Multiple toggle open at a time"
1401
- msgstr "در یک زمان چند بازشونده می توانند باز باشند."
1402
-
1403
- #: includes/elements/exclude/accordion-section.php:89
1404
- #: includes/elements/exclude/auxin-accordion.php:97
1405
- msgid "Toggle or accordion"
1406
- msgstr "باز و بسته شونده یا آکاردئون"
1407
 
1408
- #: includes/elements/exclude/accordion-section.php:90
1409
- #: includes/elements/exclude/auxin-accordion.php:98
1410
- msgid "Multiple open or one."
1411
- msgstr "باز بودن چندتایی یا تکی."
1412
 
1413
- #: includes/elements/exclude/accordion-tmp.php:12
1414
- msgid "Accordionn"
1415
- msgstr "آکاردئون"
 
1416
 
1417
- #: includes/elements/exclude/accordion-tmp.php:21
1418
- msgid "Collapsible content panels"
1419
  msgstr ""
1420
 
1421
- #: includes/elements/exclude/accordion-tmp.php:26
1422
- #: public/templates/vcomposer/auxin_vc_extendes.php:23
1423
- msgid "Widget title"
1424
- msgstr "عنوان ابزارک"
1425
 
1426
- #: includes/elements/exclude/accordion-tmp.php:27
1427
- #: public/templates/vcomposer/auxin_vc_extendes.php:25
1428
- msgid "Enter text used as widget title (Note: located above content element)."
1429
  msgstr ""
1430
 
1431
- #: includes/elements/exclude/accordion-tmp.php:34
1432
- msgid "Modern"
1433
- msgstr "مدرن"
1434
 
1435
- #: includes/elements/exclude/accordion-tmp.php:35
1436
- msgid "Flat"
1437
- msgstr "تخت"
1438
 
1439
- #: includes/elements/exclude/accordion-tmp.php:45
1440
- #: includes/general-hooks.php:232
1441
- msgid "Rounded"
1442
- msgstr "گرد شده"
1443
 
1444
- #: includes/elements/exclude/accordion-tmp.php:49
1445
- msgid "Shape"
1446
- msgstr "شکل"
1447
 
1448
- #: includes/elements/exclude/accordion-tmp.php:50
1449
- msgid "Select accordion shape."
1450
- msgstr "انتخاب شکل آکاردئون."
 
1451
 
1452
- #: includes/elements/exclude/accordion-tmp.php:56
1453
- msgid "Do not fill content area?"
1454
- msgstr "پر "
1455
-
1456
- #: includes/elements/exclude/accordion-tmp.php:57
1457
- msgid "Do not fill content area with color."
1458
- msgstr "ناحیه محتوا را با رنگ پر نکن."
1459
-
1460
- #: includes/elements/exclude/accordion-tmp.php:63
1461
- #: includes/elements/exclude/accordion-tmp.php:83
1462
- #: includes/elements/exclude/accordion-tmp.php:114
1463
- #: includes/elements/exclude/accordion-tmp.php:142
1464
- #: includes/elements/flickr.php:151 includes/elements/flickr.php:200
1465
- #: includes/elements/gallery.php:132 includes/elements/gallery.php:187
1466
- #: includes/elements/image.php:121 includes/elements/image.php:137
1467
- #: includes/elements/recent-posts-grid-carousel.php:485
1468
- #: includes/general-hooks.php:229 includes/general-hooks.php:577
1469
- #: public/templates/vcomposer/auxin_vc_extendes.php:63
1470
- msgid "None"
1471
- msgstr "هیچکدام"
1472
 
1473
- #: includes/elements/exclude/accordion-tmp.php:64
1474
- #: includes/elements/exclude/accordion-tmp.php:84
1475
- msgid "1px"
1476
- msgstr "1پیکسل"
1477
-
1478
- #: includes/elements/exclude/accordion-tmp.php:65
1479
- #: includes/elements/exclude/accordion-tmp.php:85
1480
- msgid "2px"
1481
- msgstr "2پیکسل"
1482
-
1483
- #: includes/elements/exclude/accordion-tmp.php:66
1484
- #: includes/elements/exclude/accordion-tmp.php:86
1485
- msgid "3px"
1486
- msgstr "3پیکسل"
1487
-
1488
- #: includes/elements/exclude/accordion-tmp.php:67
1489
- #: includes/elements/exclude/accordion-tmp.php:87
1490
- msgid "4px"
1491
- msgstr "4پیکسل"
1492
-
1493
- #: includes/elements/exclude/accordion-tmp.php:68
1494
- #: includes/elements/exclude/accordion-tmp.php:88
1495
- msgid "5px"
1496
- msgstr "5پیکسل"
1497
-
1498
- #: includes/elements/exclude/accordion-tmp.php:69
1499
- #: includes/elements/exclude/accordion-tmp.php:89
1500
- msgid "10px"
1501
- msgstr "10پیکسل"
1502
-
1503
- #: includes/elements/exclude/accordion-tmp.php:70
1504
- #: includes/elements/exclude/accordion-tmp.php:90
1505
- msgid "15px"
1506
- msgstr "15پیکسل"
1507
-
1508
- #: includes/elements/exclude/accordion-tmp.php:71
1509
- #: includes/elements/exclude/accordion-tmp.php:91
1510
- msgid "20px"
1511
- msgstr "20پیکسل"
1512
-
1513
- #: includes/elements/exclude/accordion-tmp.php:72
1514
- #: includes/elements/exclude/accordion-tmp.php:92
1515
- msgid "25px"
1516
- msgstr "25پیکسل"
1517
-
1518
- #: includes/elements/exclude/accordion-tmp.php:73
1519
- #: includes/elements/exclude/accordion-tmp.php:93
1520
- msgid "30px"
1521
- msgstr "30پیکسل"
1522
-
1523
- #: includes/elements/exclude/accordion-tmp.php:74
1524
- #: includes/elements/exclude/accordion-tmp.php:94
1525
- msgid "35px"
1526
- msgstr "35پیکسل"
1527
-
1528
- #: includes/elements/exclude/accordion-tmp.php:76
1529
- msgid "Spacing"
1530
- msgstr "فاصله"
1531
 
1532
- #: includes/elements/exclude/accordion-tmp.php:77
1533
- msgid "Select accordion spacing."
1534
- msgstr "انتخاب فاصله خالی آکاردئون."
 
1535
 
1536
- #: includes/elements/exclude/accordion-tmp.php:96
1537
- msgid "Gap"
1538
- msgstr "شکاف"
 
 
1539
 
1540
- #: includes/elements/exclude/accordion-tmp.php:97
1541
- msgid "Select accordion gap."
1542
- msgstr "انتخاب شکاف آکاردئون"
 
1543
 
1544
- #: includes/elements/exclude/accordion-tmp.php:105
1545
- #: includes/elements/quote.php:122
1546
- #: includes/elements/recent-posts-timeline.php:72 includes/elements/text.php:84
1547
- #: includes/elements/text.php:88 includes/general-hooks.php:258
1548
- msgid "Center"
1549
- msgstr "وسط"
1550
 
1551
- #: includes/elements/exclude/accordion-tmp.php:107
1552
- #: includes/elements/image.php:113
1553
- msgid "Alignment"
1554
- msgstr "تراز"
 
 
 
 
 
1555
 
1556
- #: includes/elements/exclude/accordion-tmp.php:108
1557
- msgid "Select accordion section title alignment."
1558
- msgstr "انتخاب تراز عنوان بخش آکاردئون"
1559
 
1560
- #: includes/elements/exclude/accordion-tmp.php:115
1561
- msgid "1"
1562
- msgstr "1"
 
1563
 
1564
- #: includes/elements/exclude/accordion-tmp.php:116
1565
- msgid "2"
1566
- msgstr "2"
1567
 
1568
- #: includes/elements/exclude/accordion-tmp.php:117
1569
- #: includes/elements/exclude/mini-twitter.php:89
1570
- msgid "3"
1571
- msgstr "3"
 
1572
 
1573
- #: includes/elements/exclude/accordion-tmp.php:118
1574
- #: includes/elements/exclude/mini-twitter.php:89
1575
- msgid "4"
1576
- msgstr "4"
1577
 
1578
- #: includes/elements/exclude/accordion-tmp.php:119
1579
- msgid "5"
1580
- msgstr "5"
 
1581
 
1582
- #: includes/elements/exclude/accordion-tmp.php:120
1583
- msgid "10"
1584
- msgstr "10"
 
 
 
 
1585
 
1586
- #: includes/elements/exclude/accordion-tmp.php:121
1587
- msgid "20"
1588
- msgstr "20"
 
 
 
1589
 
1590
- #: includes/elements/exclude/accordion-tmp.php:122
1591
- msgid "30"
1592
- msgstr "30"
 
1593
 
1594
- #: includes/elements/exclude/accordion-tmp.php:123
1595
- msgid "40"
1596
- msgstr "40"
 
1597
 
1598
- #: includes/elements/exclude/accordion-tmp.php:124
1599
- msgid "50"
1600
- msgstr "50"
 
 
 
1601
 
1602
- #: includes/elements/exclude/accordion-tmp.php:125
1603
- msgid "60"
1604
- msgstr "60"
 
1605
 
1606
- #: includes/elements/exclude/accordion-tmp.php:128
1607
- #: includes/elements/video.php:48
1608
- msgid "Autoplay"
1609
- msgstr "نمایش خودکار"
1610
 
1611
- #: includes/elements/exclude/accordion-tmp.php:129
1612
- msgid ""
1613
- "Select auto rotate for accordion in seconds (Note: disabled by default)."
1614
  msgstr ""
1615
 
1616
- #: includes/elements/exclude/accordion-tmp.php:134
1617
- msgid "Allow collapse all?"
1618
- msgstr "اجازه باز کردن همه"
 
 
 
 
1619
 
1620
- #: includes/elements/exclude/accordion-tmp.php:135
1621
- msgid "Allow collapse all accordion sections."
1622
- msgstr "اجازه باز کردن همه بخش های آکاردئون"
1623
 
1624
- #: includes/elements/exclude/accordion-tmp.php:143
1625
- msgid "Chevron"
1626
- msgstr "جهت نما"
1627
 
1628
- #: includes/elements/exclude/accordion-tmp.php:144
1629
- #: includes/elements/image.php:138
1630
- msgid "Plus"
1631
- msgstr "بعلاوه"
1632
 
1633
- #: includes/elements/exclude/accordion-tmp.php:145
1634
- msgid "Triangle"
1635
- msgstr "مثلث"
 
1636
 
1637
- #: includes/elements/exclude/accordion-tmp.php:148
1638
- #: includes/elements/exclude/list-item.php:57
1639
- #: includes/elements/exclude/list.php:57 includes/elements/text.php:154
1640
- #: includes/general-hooks.php:117 includes/general-hooks.php:135
1641
- #: includes/general-hooks.php:152 includes/general-hooks.php:168
1642
- #: includes/general-hooks.php:184 includes/general-hooks.php:199
1643
- msgid "Icon"
1644
- msgstr "شکلک"
1645
 
1646
- #: includes/elements/exclude/accordion-tmp.php:149
1647
- msgid "Select accordion navigation icon."
1648
- msgstr ""
 
1649
 
1650
- #: includes/elements/exclude/accordion-tmp.php:162
1651
- msgid "Position"
1652
- msgstr "موقعیت"
1653
 
1654
- #: includes/elements/exclude/accordion-tmp.php:163
1655
- msgid "Select accordion navigation icon position."
1656
- msgstr ""
1657
 
1658
- #: includes/elements/exclude/accordion-tmp.php:169
1659
- msgid "Active section"
1660
- msgstr "بخش فعال"
1661
 
1662
- #: includes/elements/exclude/accordion-tmp.php:171
1663
- msgid ""
1664
- "Enter active section number (Note: to have all sections closed on initial "
1665
- "load enter non-existing number)."
1666
- msgstr ""
1667
 
1668
- #: includes/elements/exclude/accordion-tmp.php:190
1669
- #: includes/elements/exclude/auxin-accordion.php:45
1670
- msgid "Add Section"
1671
- msgstr "افزودن بخش"
1672
 
1673
- #: includes/elements/exclude/accordion-tmp.php:200
1674
- #: includes/elements/exclude/accordion-tmp.php:201
1675
- #: includes/elements/exclude/accordion-tmp.php:210
1676
- #: includes/elements/exclude/auxin-accordion.php:55
1677
- #: includes/elements/exclude/auxin-accordion.php:56
1678
- msgid "Section"
1679
- msgstr "بخش"
1680
 
1681
- #: includes/elements/exclude/accordion.php:67
1682
- #, php-format
1683
- msgid ""
1684
- "Please use below sample for each accordion item.%s[accordion_section label="
1685
- "\"Accordion label here\" ] accordion content here [/accordion_section]"
1686
- msgstr ""
 
1687
 
1688
- #: includes/elements/exclude/auxin-accordion.php:20
1689
- msgid "Auxin Accordion"
1690
- msgstr "آکاردئون اکسین"
 
1691
 
1692
- #: includes/elements/exclude/auxin-accordion.php:23
1693
- #: includes/elements/exclude/chart.php:24
1694
- msgid "This is will add accordion element"
1695
  msgstr ""
 
1696
 
1697
- #: includes/elements/exclude/auxin-accordion.php:112
1698
- msgid "active section"
1699
- msgstr "بخش فعال"
1700
 
1701
- #: includes/elements/exclude/auxin-accordion.php:113
1702
- msgid ""
1703
- "Enter section number to be active on load or enter false to collapse all "
1704
- "sections."
1705
  msgstr ""
 
1706
 
1707
- #: includes/elements/exclude/call-to-action.php:20
1708
- msgid "Auxin Call to action "
1709
- msgstr "اکسین فراخوان برای عملیات"
1710
 
1711
- #: includes/elements/exclude/call-to-action.php:23
1712
- msgid "This is will add call_to_action element"
 
 
1713
  msgstr ""
1714
 
1715
- #: includes/elements/exclude/call-to-action.php:50
1716
- #: includes/elements/exclude/testimonial-item.php:63
1717
- #: includes/elements/exclude/testimonial-slider.php:78
1718
- #: includes/elements/exclude/testimonial-slider.php:93
1719
- #: includes/elements/exclude/testimonial-slider.php:108
1720
- #: includes/elements/exclude/testimonial-slider.php:123
1721
- #: includes/elements/exclude/testimonial-slider.php:138
1722
- msgid "The sets the style of callout"
1723
  msgstr ""
1724
 
1725
- #: includes/elements/exclude/call-to-action.php:64
1726
- msgid "Heading"
1727
- msgstr "تیتر گذاری"
 
1728
 
1729
- #: includes/elements/exclude/call-to-action.php:65
1730
- msgid "Enter text for heading line."
1731
- msgstr "متنی را برای خط عنوان وارد کنید."
1732
-
1733
- #: includes/elements/exclude/call-to-action.php:80
1734
- #: includes/elements/exclude/col.php:50
1735
- #: includes/elements/exclude/latest-blog.php:244
1736
- #: includes/elements/exclude/latest-news.php:228
1737
- #: includes/elements/exclude/link.php:93 includes/elements/exclude/list.php:81
1738
- #: includes/elements/exclude/pricetable.php:80
1739
- #: includes/elements/exclude/related-posts.php:198
1740
- #: includes/elements/exclude/services.php:153
1741
- #: includes/elements/exclude/soundcloud.php:99
1742
- #: includes/elements/exclude/testfields.php:176
1743
- #: includes/elements/exclude/testimonial.php:153
1744
- msgid "Enter your content."
1745
- msgstr "محتوای خود را وارد کنید."
1746
 
1747
- #: includes/elements/exclude/call-to-action.php:94
1748
- msgid "Subheading"
1749
- msgstr "زیرعنوان"
1750
 
1751
- #: includes/elements/exclude/call-to-action.php:95
1752
- msgid "Enter text for subheading line."
1753
  msgstr ""
1754
 
1755
- #: includes/elements/exclude/call-to-action.php:109
1756
- #: includes/elements/instagram-feed.php:219
1757
- msgid "Background color"
1758
- msgstr "رنگ پس زمینه"
1759
 
1760
- #: includes/elements/exclude/call-to-action.php:110
1761
- msgid "Background color for call out element"
1762
  msgstr ""
1763
 
1764
- #: includes/elements/exclude/call-to-action.php:124
1765
- #: includes/elements/exclude/testfields.php:157
1766
- #: includes/elements/latest-posts-slider.php:237
1767
- msgid "Background image"
1768
- msgstr "تصویر پس زمینه"
 
 
 
 
 
 
 
 
 
1769
 
1770
- #: includes/elements/exclude/call-to-action.php:125
1771
- #: includes/elements/exclude/testfields.php:158
1772
- msgid "Background image for call out element"
 
 
 
 
 
1773
  msgstr ""
1774
 
1775
- #: includes/elements/exclude/call-to-action.php:140
1776
- msgid "The sets style of button"
1777
- msgstr "مجموعه سبک های دکمه"
1778
 
1779
- #: includes/elements/exclude/call-to-action.php:154
1780
- #: includes/elements/exclude/call-to-action.php:184
1781
- msgid "Button text"
1782
- msgstr "متن دکمه"
1783
 
1784
- #: includes/elements/exclude/call-to-action.php:155
1785
- #: includes/elements/exclude/call-to-action.php:185
1786
- msgid "Enter button label."
1787
- msgstr "برچسب دکمه را وارد کنید."
1788
 
1789
- #: includes/elements/exclude/call-to-action.php:166
1790
- msgid "No second button"
1791
- msgstr "بدون دکمه دوم"
 
 
1792
 
1793
- #: includes/elements/exclude/call-to-action.php:169
1794
- msgid "Second Button style"
1795
- msgstr "ظاهر دکمه دوم"
 
1796
 
1797
- #: includes/elements/exclude/call-to-action.php:170
1798
- msgid "Set it on No second button to remove second button"
 
1799
  msgstr ""
1800
 
1801
- #: includes/elements/exclude/caption.php:19
1802
- msgid "Auxin Captionn "
1803
- msgstr "اکسین عنوان"
1804
 
1805
- #: includes/elements/exclude/caption.php:22
1806
- msgid "This is will add Caption element"
 
1807
  msgstr ""
1808
 
1809
- #: includes/elements/exclude/caption.php:48
1810
- msgid "Caption"
1811
- msgstr "عنوان"
 
1812
 
1813
- #: includes/elements/exclude/caption.php:49
1814
- #: includes/elements/exclude/carousel.php:48
1815
- #: includes/elements/exclude/carousel.php:63
1816
- #: includes/elements/exclude/faq.php:49 includes/elements/exclude/faq.php:94
1817
- #: includes/elements/exclude/faq.php:109
1818
- #: includes/elements/exclude/get-pages.php:48
1819
- #: includes/elements/exclude/get-pages.php:78
1820
- #: includes/elements/exclude/get-pages.php:93
1821
- #: includes/elements/exclude/get-pages.php:138
1822
- #: includes/elements/exclude/get-testimonials.php:47
1823
- #: includes/elements/exclude/get-testimonials.php:62
1824
- #: includes/elements/exclude/get-testimonials.php:77
1825
- #: includes/elements/exclude/get-testimonials.php:92
1826
- #: includes/elements/exclude/latest-blog.php:49
1827
- #: includes/elements/exclude/latest-blog.php:64
1828
- #: includes/elements/exclude/latest-blog.php:94
1829
- #: includes/elements/exclude/latest-blog.php:109
1830
- #: includes/elements/exclude/latest-blog.php:124
1831
- #: includes/elements/exclude/latest-blog.php:154
1832
- #: includes/elements/exclude/latest-blog.php:169
1833
- #: includes/elements/exclude/latest-news.php:48
1834
- #: includes/elements/exclude/latest-news.php:63
1835
- #: includes/elements/exclude/latest-news.php:93
1836
- #: includes/elements/exclude/latest-news.php:108
1837
- #: includes/elements/exclude/latest-news.php:153
1838
- #: includes/elements/exclude/link.php:48 includes/elements/exclude/link.php:63
1839
- #: includes/elements/exclude/list-item.php:48
1840
- #: includes/elements/exclude/list-item.php:81
1841
- #: includes/elements/exclude/list-item.php:96
1842
- #: includes/elements/exclude/list.php:48
1843
- #: includes/elements/exclude/masterslider.php:48
1844
- #: includes/elements/exclude/masterslider.php:63
1845
- #: includes/elements/exclude/masterslider.php:78
1846
- #: includes/elements/exclude/mini-twitter.php:48
1847
- #: includes/elements/exclude/mini-twitter.php:63
1848
- #: includes/elements/exclude/msgbox.php:37
1849
- #: includes/elements/exclude/pricetable.php:50
1850
- #: includes/elements/exclude/related-posts.php:78
1851
- #: includes/elements/exclude/related-posts.php:93
1852
- #: includes/elements/exclude/related-posts.php:123
1853
- #: includes/elements/exclude/related-posts.php:168
1854
- #: includes/elements/exclude/services.php:48
1855
- #: includes/elements/exclude/services.php:63
1856
- #: includes/elements/exclude/services.php:93
1857
- #: includes/elements/exclude/services.php:108
1858
- #: includes/elements/exclude/services.php:138
1859
- #: includes/elements/exclude/soundcloud.php:69
1860
- #: includes/elements/exclude/soundcloud.php:84
1861
- #: includes/elements/exclude/staffs.php:48
1862
- #: includes/elements/exclude/staffs.php:63
1863
- #: includes/elements/exclude/staffs.php:78
1864
- #: includes/elements/exclude/staffs.php:93
1865
- #: includes/elements/exclude/staffs.php:153
1866
- #: includes/elements/exclude/testimonial-item.php:93
1867
- #: includes/elements/exclude/testimonial.php:48
1868
- #: includes/elements/exclude/testimonial.php:63
1869
- #: includes/elements/exclude/testimonial.php:78
1870
- #: includes/elements/exclude/testimonial.php:93
1871
- #: includes/elements/exclude/testimonial.php:108
1872
- #: includes/elements/exclude/testimonial.php:138
1873
- #: includes/elements/exclude/twitter-slider.php:48
1874
- #: includes/elements/exclude/twitter.php:48
1875
- #: includes/elements/exclude/twitter.php:63
1876
- #: includes/elements/exclude/twitter.php:93
1877
- #: includes/elements/exclude/twitter.php:108
1878
- #: includes/elements/latest-items.php:42
1879
- #: includes/elements/sample-element.php:59
1880
- msgid "If you choose Callout a big box appears around the content"
1881
  msgstr ""
1882
 
1883
- #: includes/elements/exclude/carousel.php:18
1884
- msgid "Auxin Carousel "
1885
- msgstr "اکسین گردونه"
 
 
1886
 
1887
- #: includes/elements/exclude/carousel.php:21
1888
- #: includes/elements/exclude/col.php:23 includes/elements/exclude/link.php:21
1889
- #: includes/elements/exclude/mini-twitter.php:21
1890
- msgid "This is will add Callout element"
1891
  msgstr ""
 
 
1892
 
1893
- #: includes/elements/exclude/carousel.php:62
1894
- msgid "Custom CSS"
1895
- msgstr "سی اس اس دلخواه"
 
 
 
 
1896
 
1897
- #: includes/elements/exclude/carousel.php:75
1898
- #: includes/elements/exclude/clients.php:60
1899
- #: includes/elements/exclude/get-pages.php:104
1900
- #: includes/elements/exclude/get-pages.php:119
1901
- #: includes/elements/exclude/latest-blog.php:75
1902
- #: includes/elements/exclude/latest-blog.php:180
1903
- #: includes/elements/exclude/latest-news.php:74
1904
- #: includes/elements/exclude/latest-news.php:164
1905
- #: includes/elements/exclude/mini-twitter.php:74
1906
- #: includes/elements/exclude/mini-twitter.php:104
1907
- #: includes/elements/exclude/recent-posts2.php:59
1908
- #: includes/elements/exclude/related-posts.php:44
1909
- #: includes/elements/exclude/twitter-slider.php:74
1910
- #: includes/elements/exclude/twitter.php:74
1911
- #: includes/elements/latest-items.php:173
1912
- #: includes/elements/latest-items.php:188
1913
- msgid "No"
1914
- msgstr "خیر"
1915
 
1916
- #: includes/elements/exclude/carousel.php:75
1917
- #: includes/elements/exclude/get-pages.php:104
1918
- #: includes/elements/exclude/get-pages.php:119
1919
- #: includes/elements/exclude/get-testimonials.php:118
1920
- #: includes/elements/exclude/get-testimonials.php:133
1921
- #: includes/elements/exclude/latest-blog.php:75
1922
- #: includes/elements/exclude/latest-blog.php:180
1923
- #: includes/elements/exclude/latest-news.php:209
1924
- #: includes/elements/exclude/mini-twitter.php:74
1925
- #: includes/elements/exclude/mini-twitter.php:104
1926
- #: includes/elements/exclude/recent-posts2.php:59
1927
- #: includes/elements/exclude/twitter-slider.php:74
1928
- #: includes/elements/exclude/twitter.php:74
1929
- #: includes/elements/latest-items.php:173
1930
- #: includes/elements/latest-items.php:188
1931
- msgid "Yes"
1932
- msgstr "بله"
1933
 
1934
- #: includes/elements/exclude/carousel.php:78
1935
- msgid "Aotu play"
1936
- msgstr "نمایش خودکار"
 
1937
 
1938
- #: includes/elements/exclude/carousel.php:79
1939
- msgid "The sets auto_play of eslement"
1940
  msgstr ""
1941
 
1942
- #: includes/elements/exclude/chart.php:21
1943
- msgid "Auxin Chart"
1944
- msgstr "اکسین نمودار"
 
1945
 
1946
- #: includes/elements/exclude/chart.php:51
1947
- msgid "The title of your element"
1948
  msgstr ""
1949
 
1950
- #: includes/elements/exclude/clients.php:20
1951
- msgid "Auxin Clients"
1952
- msgstr "اکسین مشتریان"
1953
-
1954
- #: includes/elements/exclude/clients.php:23
1955
- #: includes/elements/exclude/get-pages.php:21
1956
- msgid "This is will add brands element"
1957
- msgstr ""
1958
-
1959
- #: includes/elements/exclude/clients.php:49
1960
- #: includes/elements/exclude/clients.php:64
1961
- #: includes/elements/exclude/clients.php:79
1962
- #: includes/elements/exclude/get-pages.php:63
1963
- #: includes/elements/exclude/get-pages.php:108
1964
- #: includes/elements/exclude/get-pages.php:123
1965
- #: includes/elements/exclude/recent-posts2.php:48
1966
- #: includes/elements/exclude/recent-posts2.php:63
1967
- #: includes/elements/exclude/related-posts.php:48
1968
- #: includes/elements/exclude/related-posts.php:63
1969
- #: includes/elements/exclude/related-posts.php:108
1970
- #: includes/elements/exclude/related-posts.php:153
1971
- #: includes/elements/exclude/related-posts.php:183
1972
- #: includes/elements/exclude/services.php:78
1973
- #: includes/elements/exclude/services.php:123
1974
- #: includes/elements/exclude/staffs.php:108
1975
- #: includes/elements/exclude/staffs.php:123
1976
- #: includes/elements/exclude/staffs.php:138
1977
- #: includes/elements/exclude/testimonial-item.php:108
1978
- #: includes/elements/exclude/testimonial.php:123
1979
- msgid "The title of recent post eslements"
1980
- msgstr ""
1981
-
1982
- #: includes/elements/exclude/clients.php:60
1983
- msgid "Slider"
1984
- msgstr "اسلایدر"
1985
-
1986
- #: includes/elements/exclude/clients.php:63
1987
- #: includes/elements/exclude/get-pages.php:62
1988
- msgid "Display Type"
1989
- msgstr "نوع نمایش"
1990
 
1991
- #: includes/elements/exclude/clients.php:75
1992
- #: includes/elements/exclude/latest-blog.php:225
1993
- #: includes/elements/exclude/latest-news.php:74
1994
- #: includes/elements/exclude/latest-news.php:164
1995
- #: includes/elements/exclude/related-posts.php:179
1996
- #: includes/elements/exclude/services.php:74
1997
- #: includes/elements/exclude/staffs.php:104
1998
- #: includes/elements/exclude/staffs.php:119
1999
- #: includes/elements/exclude/staffs.php:134
2000
- msgid "yes"
2001
- msgstr "بله"
2002
 
2003
- #: includes/elements/exclude/clients.php:75
2004
- #: includes/elements/exclude/get-testimonials.php:118
2005
- #: includes/elements/exclude/get-testimonials.php:133
2006
- #: includes/elements/exclude/latest-blog.php:225
2007
- #: includes/elements/exclude/latest-news.php:209
2008
- #: includes/elements/exclude/related-posts.php:179
2009
- #: includes/elements/exclude/services.php:74
2010
- #: includes/elements/exclude/staffs.php:104
2011
- #: includes/elements/exclude/staffs.php:119
2012
- #: includes/elements/exclude/staffs.php:134
2013
- msgid "no"
2014
- msgstr "خیر"
2015
 
2016
- #: includes/elements/exclude/clients.php:78
2017
- msgid "Auto play"
2018
- msgstr "نمایش خودکار"
2019
 
2020
- #: includes/elements/exclude/col.php:20
2021
- msgid "Auxin col "
2022
- msgstr "ستون اکسین"
2023
 
2024
- #: includes/elements/exclude/faq.php:19
2025
- msgid "Auxin faq"
2026
- msgstr "اکسین پرسش و پاسخ"
2027
 
2028
- #: includes/elements/exclude/faq.php:22
2029
- msgid "This is will add faq element"
2030
  msgstr ""
2031
 
2032
- #: includes/elements/exclude/faq.php:63
2033
- #: includes/elements/exclude/testfields.php:124
2034
- msgid "First one open?"
2035
- msgstr "اولی باز باشد؟"
2036
 
2037
- #: includes/elements/exclude/faq.php:64
2038
- #: includes/elements/exclude/latest-blog.php:79
2039
- #: includes/elements/exclude/latest-blog.php:139
2040
- #: includes/elements/exclude/latest-blog.php:184
2041
- #: includes/elements/exclude/latest-blog.php:199
2042
- #: includes/elements/exclude/latest-blog.php:214
2043
- #: includes/elements/exclude/latest-blog.php:229
2044
- #: includes/elements/exclude/latest-news.php:78
2045
- #: includes/elements/exclude/latest-news.php:123
2046
- #: includes/elements/exclude/latest-news.php:168
2047
- #: includes/elements/exclude/latest-news.php:183
2048
- #: includes/elements/exclude/latest-news.php:198
2049
- #: includes/elements/exclude/latest-news.php:213
2050
- #: includes/elements/exclude/link.php:78
2051
- #: includes/elements/exclude/mini-twitter.php:78
2052
- #: includes/elements/exclude/mini-twitter.php:93
2053
- #: includes/elements/exclude/mini-twitter.php:108
2054
- #: includes/elements/exclude/testfields.php:125
2055
- #: includes/elements/exclude/twitter-slider.php:63
2056
- #: includes/elements/exclude/twitter-slider.php:78
2057
- #: includes/elements/exclude/twitter.php:78
2058
- #: includes/elements/latest-items.php:57 includes/elements/latest-items.php:102
2059
- #: includes/elements/latest-items.php:132
2060
- #: includes/elements/latest-items.php:177
2061
- #: includes/elements/latest-items.php:192
2062
- msgid "The round is used got button"
2063
  msgstr ""
2064
 
2065
- #: includes/elements/exclude/faq.php:75
2066
- msgid "all"
2067
- msgstr "همه"
 
2068
 
2069
- #: includes/elements/exclude/faq.php:75
2070
- msgid "dotted"
2071
- msgstr "نقطه ای"
 
2072
 
2073
- #: includes/elements/exclude/faq.php:75
2074
- msgid "dashed"
2075
- msgstr "خط چین"
 
2076
 
2077
- #: includes/elements/exclude/faq.php:75
2078
- msgid "bar"
2079
- msgstr "نوار"
2080
 
2081
- #: includes/elements/exclude/faq.php:75
2082
- msgid "space"
2083
- msgstr "فضای خالی"
2084
 
2085
- #: includes/elements/exclude/faq.php:79
2086
- msgid "The style is used got button"
2087
  msgstr ""
2088
 
2089
- #: includes/elements/exclude/faq.php:93
2090
- msgid "Number"
2091
- msgstr "شماره"
2092
 
2093
- #: includes/elements/exclude/faq.php:108
2094
- msgid "Paged"
2095
- msgstr "صفحه بندی شده"
2096
 
2097
- #: includes/elements/exclude/get-pages.php:18
2098
- msgid "Auxin get_pages"
2099
- msgstr "اکسین get_pages"
 
2100
 
2101
- #: includes/elements/exclude/get-pages.php:47
2102
- #: includes/elements/exclude/latest-blog.php:63
2103
- #: includes/elements/exclude/latest-news.php:62
2104
- #: includes/elements/exclude/services.php:62
2105
- #: includes/elements/exclude/staffs.php:47
2106
- #: includes/elements/latest-items.php:41
2107
- msgid "col"
2108
- msgstr "col"
2109
 
2110
- #: includes/elements/exclude/get-pages.php:59
2111
- #: includes/elements/exclude/latest-blog.php:135
2112
- #: includes/elements/exclude/latest-news.php:119
2113
- #: includes/elements/exclude/related-posts.php:104
2114
- #: includes/elements/latest-items.php:98
2115
- msgid "pagination"
2116
- msgstr "صفحه بندی"
2117
 
2118
- #: includes/elements/exclude/get-pages.php:59
2119
- #: includes/elements/exclude/related-posts.php:104
2120
- #: includes/elements/exclude/related-posts.php:149
2121
- msgid "filterable"
2122
- msgstr "قابل فیلتر"
 
2123
 
2124
- #: includes/elements/exclude/get-pages.php:92
2125
- msgid "ids"
2126
- msgstr "شناسه ها"
 
 
2127
 
2128
- #: includes/elements/exclude/get-pages.php:107
2129
- msgid "Display Excerpt?"
2130
- msgstr "نمایش خلاصه؟"
2131
 
2132
- #: includes/elements/exclude/get-pages.php:122
2133
- msgid "Display Title?"
2134
- msgstr "نمایش عنوان؟"
 
2135
 
2136
- #: includes/elements/exclude/get-pages.php:137
2137
- #: includes/elements/popular-posts-widget.php:170
2138
- #: includes/elements/recent-posts-grid-carousel.php:330
2139
- #: includes/elements/recent-posts-land-style.php:333
2140
- #: includes/elements/recent-posts-masonry.php:313
2141
- #: includes/elements/recent-posts-timeline.php:339
2142
- #: includes/elements/recent-posts-widget.php:130
2143
- msgid "Excerpt length"
2144
- msgstr "طول خلاصه"
2145
 
2146
- #: includes/elements/exclude/get-slider.php:20
2147
- #: includes/elements/exclude/masterslider.php:127
2148
- msgid "Invalid slider id"
2149
- msgstr "شناسه اسلایدر نامعتبر"
2150
 
2151
- #: includes/elements/exclude/get-testimonials.php:17
2152
- msgid "Auxin get_testimonial"
2153
- msgstr "اکسین get_testimonial"
 
 
 
2154
 
2155
- #: includes/elements/exclude/get-testimonials.php:20
2156
- msgid "This is will add get_testimonial element"
2157
  msgstr ""
2158
 
2159
- #: includes/elements/exclude/get-testimonials.php:103
2160
- #: includes/elements/exclude/testimonial-item.php:104
2161
- #: includes/elements/exclude/testimonial.php:119
2162
- msgid "blockquote"
2163
- msgstr "نقل قول"
2164
 
2165
- #: includes/elements/exclude/get-testimonials.php:103
2166
- #: includes/elements/gallery.php:109
2167
- msgid "DESC"
2168
- msgstr "نزولی"
2169
 
2170
- #: includes/elements/exclude/get-testimonials.php:107
2171
- #: includes/elements/exclude/get-testimonials.php:122
2172
- #: includes/elements/exclude/get-testimonials.php:137
2173
- msgid "The sets type of eslement"
2174
  msgstr ""
2175
 
2176
- #: includes/elements/exclude/get-testimonials.php:136
2177
- msgid "display_avatar"
2178
- msgstr "display_avatar"
 
 
2179
 
2180
- #: includes/elements/exclude/latest-blog.php:19
2181
- msgid "Auxin latest_blog "
2182
- msgstr "اکسین latest_blog"
 
 
2183
 
2184
- #: includes/elements/exclude/latest-blog.php:22
2185
- msgid "This is will add latest_blog element"
2186
- msgstr "این یک المان latest_blog اضافه می کند."
 
 
 
2187
 
2188
- #: includes/elements/exclude/latest-blog.php:78
2189
- msgid "view_more type"
2190
- msgstr "view_more type"
 
 
 
2191
 
2192
- #: includes/elements/exclude/latest-blog.php:93
2193
- msgid "more_label"
2194
- msgstr "more_label"
2195
 
2196
- #: includes/elements/exclude/latest-blog.php:108
2197
- #: includes/elements/exclude/latest-news.php:107
2198
- #: includes/elements/exclude/related-posts.php:92
2199
- #: includes/elements/exclude/related-posts.php:137
2200
- #: includes/elements/exclude/services.php:137
2201
- #: includes/elements/exclude/staffs.php:62
2202
- #: includes/elements/latest-items.php:86
2203
- msgid "num"
2204
- msgstr "شماره"
2205
 
2206
- #: includes/elements/exclude/latest-blog.php:123
2207
- msgid "perpage"
2208
- msgstr "هر صفحه"
 
 
 
2209
 
2210
- #: includes/elements/exclude/latest-blog.php:135
2211
- #: includes/elements/exclude/latest-news.php:119
2212
- #: includes/elements/latest-items.php:98 includes/elements/latest-items.php:128
2213
- msgid "regular"
2214
- msgstr "معمولی"
2215
 
2216
- #: includes/elements/exclude/latest-blog.php:138
2217
- #: includes/elements/exclude/latest-news.php:122
2218
- #: includes/elements/latest-items.php:101
2219
- msgid "nav type"
2220
  msgstr ""
2221
 
2222
- #: includes/elements/exclude/latest-blog.php:153
2223
- #: includes/elements/exclude/latest-news.php:137
2224
- #: includes/elements/exclude/services.php:92
2225
- #: includes/elements/latest-items.php:206
2226
- msgid "excerpt_len"
2227
- msgstr "excerpt_len"
2228
 
2229
- #: includes/elements/exclude/latest-blog.php:168
2230
- #: includes/elements/exclude/latest-news.php:152
2231
- #: includes/elements/exclude/services.php:107
2232
- #: includes/elements/exclude/staffs.php:92
2233
- #: includes/elements/latest-items.php:146
2234
- msgid "cat_id"
2235
- msgstr "cat_id"
2236
-
2237
- #: includes/elements/exclude/latest-blog.php:183
2238
- msgid "view_thumb?"
2239
- msgstr "view_thumb?"
2240
 
2241
- #: includes/elements/exclude/latest-blog.php:195
2242
- #: includes/elements/exclude/latest-news.php:179
2243
- msgid "top"
2244
- msgstr "بالا"
2245
 
2246
- #: includes/elements/exclude/latest-blog.php:195
2247
- #: includes/elements/exclude/latest-blog.php:210
2248
- #: includes/elements/exclude/latest-news.php:179
2249
- #: includes/elements/exclude/latest-news.php:194
2250
- msgid "left"
2251
- msgstr "چپ"
2252
 
2253
- #: includes/elements/exclude/latest-blog.php:195
2254
- #: includes/elements/exclude/latest-blog.php:210
2255
- msgid "icon"
2256
- msgstr "شکلک"
2257
 
2258
- #: includes/elements/exclude/latest-blog.php:198
2259
- #: includes/elements/exclude/latest-news.php:182
2260
- msgid "thumb_mode"
2261
  msgstr ""
2262
 
2263
- #: includes/elements/exclude/latest-blog.php:210
2264
- #: includes/elements/exclude/latest-news.php:194
2265
- msgid "big"
2266
- msgstr "بزرگ"
2267
 
2268
- #: includes/elements/exclude/latest-blog.php:213
2269
- msgid "date type"
2270
- msgstr "نوع تاریخ"
 
2271
 
2272
- #: includes/elements/exclude/latest-blog.php:228
2273
- msgid "auto play"
2274
- msgstr "نمایش خودکار"
2275
 
2276
- #: includes/elements/exclude/latest-blog.php:239
2277
- #: includes/elements/exclude/latest-blog.php:240
2278
- #: includes/elements/exclude/latest-news.php:223
2279
- #: includes/elements/exclude/latest-news.php:224
2280
- #: includes/elements/exclude/link.php:88 includes/elements/exclude/link.php:89
2281
- #: includes/elements/exclude/list.php:76 includes/elements/exclude/list.php:77
2282
- #: includes/elements/exclude/pricetable.php:75
2283
- #: includes/elements/exclude/pricetable.php:76
2284
- #: includes/elements/exclude/related-posts.php:193
2285
- #: includes/elements/exclude/related-posts.php:194
2286
- #: includes/elements/exclude/services.php:148
2287
- #: includes/elements/exclude/services.php:149
2288
- #: includes/elements/exclude/soundcloud.php:94
2289
- #: includes/elements/exclude/soundcloud.php:95
2290
- #: includes/elements/exclude/testimonial.php:148
2291
- #: includes/elements/exclude/testimonial.php:149
2292
- msgid "<p>I am test text block. Click edit button to change this text.</p>"
2293
- msgstr ""
2294
- "<p> من آخرین بلوک متن هستم. برای تغییر این متن بر روی ویرایش کلیک کنید."
2295
-
2296
- #: includes/elements/exclude/latest-news.php:18
2297
- msgid "Auxin latest_news "
2298
- msgstr "اکسین latest_news"
2299
-
2300
- #: includes/elements/exclude/latest-news.php:21
2301
- msgid "This is will add latest_news element"
2302
- msgstr ""
2303
-
2304
- #: includes/elements/exclude/latest-news.php:77
2305
- msgid "view_more"
2306
- msgstr "view_more"
2307
-
2308
- #: includes/elements/exclude/latest-news.php:138
2309
- #: includes/elements/latest-items.php:162
2310
- #: includes/elements/latest-items.php:207
2311
- msgid "attachment width"
2312
- msgstr "عرض پیوست"
2313
 
2314
- #: includes/elements/exclude/latest-news.php:167
2315
- msgid "view_thumb"
2316
- msgstr "view_thumb"
 
2317
 
2318
- #: includes/elements/exclude/latest-news.php:179
2319
- #: includes/elements/exclude/latest-news.php:194
2320
- msgid "mini"
2321
- msgstr "کوچک"
2322
 
2323
- #: includes/elements/exclude/latest-news.php:197
2324
- msgid "date_type"
2325
- msgstr "date_type"
2326
 
2327
- #: includes/elements/exclude/latest-news.php:212
2328
- msgid "auto_play"
2329
- msgstr "auto_play"
2330
 
2331
- #: includes/elements/exclude/link.php:18
2332
- msgid "Auxin link "
2333
- msgstr "اکسین پیوند"
2334
 
2335
- #: includes/elements/exclude/link.php:62
2336
- #: includes/elements/exclude/list-item.php:80
2337
- msgid "url"
2338
- msgstr "url"
2339
 
2340
- #: includes/elements/exclude/link.php:74
2341
- msgid "_self"
2342
- msgstr "_self"
 
 
 
 
 
 
 
 
 
2343
 
2344
- #: includes/elements/exclude/link.php:74
2345
- msgid "_blank"
2346
- msgstr "_blank"
 
 
2347
 
2348
- #: includes/elements/exclude/link.php:77
2349
- msgid "target"
2350
- msgstr "هدف"
 
 
 
 
2351
 
2352
- #: includes/elements/exclude/list-item.php:18
2353
- msgid "Auxin list item"
2354
- msgstr "اکسین آیتم لیست"
2355
 
2356
- #: includes/elements/exclude/list-item.php:21
2357
- msgid "This is will add list_item element"
2358
  msgstr ""
2359
 
2360
- #: includes/elements/exclude/list-item.php:71
2361
- #: includes/elements/exclude/list.php:71 includes/general-hooks.php:131
2362
- #: includes/general-hooks.php:148 includes/general-hooks.php:164
2363
- #: includes/general-hooks.php:180 includes/general-hooks.php:211
2364
- msgid "Select icon from library."
2365
- msgstr "انتخاب شکلک از کتابخانه."
2366
 
2367
- #: includes/elements/exclude/list.php:18
2368
- msgid "Auxin list "
2369
- msgstr "اکسین لیست"
 
2370
 
2371
- #: includes/elements/exclude/list.php:21
2372
- #: includes/elements/exclude/masterslider.php:21
2373
- msgid "This is will add list element"
2374
- msgstr ""
2375
 
2376
- #: includes/elements/exclude/masterslider.php:18
2377
- msgid "masterslider_axi"
2378
- msgstr "masterslider_axi"
2379
 
2380
- #: includes/elements/exclude/masterslider.php:62
2381
- msgid "class"
2382
- msgstr "کلاس"
 
 
 
 
 
 
2383
 
2384
- #: includes/elements/exclude/masterslider.php:77
2385
- msgid "size"
2386
- msgstr "اندازه"
2387
 
2388
- #: includes/elements/exclude/masterslider.php:130
2389
- msgid "Please install and activate Masterslider WP"
2390
  msgstr ""
2391
 
2392
- #: includes/elements/exclude/mini-twitter.php:18
2393
- msgid "Auxin latest_tweets "
2394
- msgstr "اکسین latest_tweets "
 
 
 
 
 
2395
 
2396
- #: includes/elements/exclude/mini-twitter.php:62
2397
- msgid "user"
2398
- msgstr "کاربر"
2399
 
2400
- #: includes/elements/exclude/mini-twitter.php:77
2401
- #: includes/elements/exclude/twitter-slider.php:77
2402
- #: includes/elements/exclude/twitter.php:77
2403
- msgid "avatar type"
2404
- msgstr "نوع آواتار"
2405
 
2406
- #: includes/elements/exclude/mini-twitter.php:92
2407
- msgid "avatar limit"
2408
- msgstr "محدودیت آواتار"
 
2409
 
2410
- #: includes/elements/exclude/mini-twitter.php:107
2411
- msgid "uid type"
2412
  msgstr ""
2413
 
2414
- #: includes/elements/exclude/mini-twitter.php:153
2415
- #: includes/elements/exclude/twitter-slider.php:127
2416
- #: includes/elements/exclude/twitter.php:156
2417
- msgid "Twitter username not found"
2418
  msgstr ""
2419
 
2420
- #: includes/elements/exclude/mini-twitter.php:179
2421
- msgid "Loading Tweets ..."
 
 
 
2422
  msgstr ""
2423
 
2424
- #: includes/elements/exclude/msgbox.php:7
2425
- msgid "[Phlox] Message Box "
2426
- msgstr "[فلوکس] جعبه پیام"
2427
 
2428
- #: includes/elements/exclude/msgbox.php:10
2429
- msgid "This is will add msgbox element"
 
 
2430
  msgstr ""
 
 
2431
 
2432
- #: includes/elements/exclude/msgbox.php:48
2433
- msgid "success"
2434
- msgstr "موفق"
2435
-
2436
- #: includes/elements/exclude/msgbox.php:48
2437
- msgid "warn"
2438
- msgstr "هشدار"
2439
 
2440
- #: includes/elements/exclude/msgbox.php:48
2441
- msgid "error"
2442
- msgstr "خطا"
2443
 
2444
- #: includes/elements/exclude/msgbox.php:48
2445
- msgid "info"
2446
- msgstr "اطلاعات"
2447
 
2448
- #: includes/elements/exclude/msgbox.php:48
2449
- msgid "help"
2450
- msgstr "کمک"
2451
 
2452
- #: includes/elements/exclude/msgbox.php:48
2453
- msgid "notice"
2454
- msgstr "نکته"
2455
 
2456
- #: includes/elements/exclude/msgbox.php:51
2457
- msgid "Button type"
2458
- msgstr "نوع دکمه"
2459
 
2460
- #: includes/elements/exclude/msgbox.php:52
2461
- msgid "The type is used got button"
2462
  msgstr ""
2463
 
2464
- #: includes/elements/exclude/msgbox.php:65
2465
- msgid "Show icon"
2466
- msgstr "نمایش شکلک"
 
2467
 
2468
- #: includes/elements/exclude/msgbox.php:66
2469
- msgid "Show icon on message box."
2470
  msgstr ""
2471
 
2472
- #: includes/elements/exclude/msgbox.php:81
2473
- msgid "Enter your message text."
2474
  msgstr ""
2475
 
2476
- #: includes/elements/exclude/msgbox.php:168
2477
- msgid "No Message"
2478
- msgstr "بدون پیام"
2479
 
2480
- #: includes/elements/exclude/pricetable.php:20
2481
- msgid "Auxin pricetable"
2482
- msgstr "جدول قیمت اکسین"
 
2483
 
2484
- #: includes/elements/exclude/pricetable.php:23
2485
- msgid "This is will add pricetable element"
2486
  msgstr ""
2487
 
2488
- #: includes/elements/exclude/pricetable.php:64
2489
- msgid "table_id"
2490
- msgstr "table_id"
2491
-
2492
- #: includes/elements/exclude/pricetable.php:65
2493
- msgid "If you choose table_id a big box appears around the content"
2494
  msgstr ""
2495
 
2496
- #: includes/elements/exclude/recent-posts2.php:19
2497
- msgid "Auxin Recent Post"
2498
- msgstr "اکسین نوشته های اخیر"
 
2499
 
2500
- #: includes/elements/exclude/recent-posts2.php:22
2501
- msgid "This is will add recent posts element"
 
 
 
2502
  msgstr ""
2503
 
2504
- #: includes/elements/exclude/recent-posts2.php:59
2505
- #: includes/elements/exclude/related-posts.php:44
2506
- msgid "Not at all"
2507
- msgstr "اصلا"
 
2508
 
2509
- #: includes/elements/exclude/recent-posts2.php:62
2510
- #: includes/elements/exclude/related-posts.php:47
2511
- msgid "Display Post Format?"
2512
- msgstr "نمایش فرمت نوشته؟"
 
2513
 
2514
- #: includes/elements/exclude/related-posts.php:18
2515
- msgid "Auxin related_items "
2516
- msgstr "اکسین related_items "
 
 
2517
 
2518
- #: includes/elements/exclude/related-posts.php:21
2519
- msgid "This is will add related_items element"
2520
- msgstr ""
 
2521
 
2522
- #: includes/elements/exclude/related-posts.php:44
2523
- #: includes/elements/exclude/related-posts.php:59
2524
- msgid "three-column"
2525
- msgstr "سه-ستون"
2526
 
2527
- #: includes/elements/exclude/related-posts.php:59
2528
- #: includes/elements/latest-items.php:53
2529
- msgid "none"
2530
- msgstr "هیچکدام"
2531
 
2532
- #: includes/elements/exclude/related-posts.php:62
2533
- #: includes/elements/exclude/services.php:77
2534
- msgid "mode"
2535
- msgstr "حالت"
2536
 
2537
- #: includes/elements/exclude/related-posts.php:77
2538
- #: includes/elements/latest-items.php:71
2539
- msgid "grid"
2540
- msgstr "شبکه"
2541
 
2542
- #: includes/elements/exclude/related-posts.php:107
2543
- msgid "nav"
2544
- msgstr "nav"
2545
 
2546
- #: includes/elements/exclude/related-posts.php:122
2547
- #: includes/elements/latest-items.php:116
2548
- msgid "title"
2549
- msgstr "عنوان"
2550
 
2551
- #: includes/elements/exclude/related-posts.php:138
2552
- msgid "number of double size images"
2553
  msgstr ""
2554
 
2555
- #: includes/elements/exclude/related-posts.php:149
2556
- #: includes/elements/latest-items.php:128
2557
- msgid "post"
2558
- msgstr "نوشته"
2559
 
2560
- #: includes/elements/exclude/related-posts.php:152
2561
- msgid "posttype"
2562
- msgstr "نوع نوشته"
2563
 
2564
- #: includes/elements/exclude/related-posts.php:167
2565
- msgid "tax"
2566
- msgstr "tax"
2567
 
2568
- #: includes/elements/exclude/related-posts.php:182
2569
- msgid "excerpt"
2570
- msgstr "خلاصه"
 
 
 
2571
 
2572
- #: includes/elements/exclude/related-posts.php:335
2573
- msgid "No Related Item Available"
2574
  msgstr ""
2575
 
2576
- #: includes/elements/exclude/services.php:18
2577
- msgid "Auxin services "
2578
- msgstr "اکسین خدمات"
 
2579
 
2580
- #: includes/elements/exclude/services.php:21
2581
- msgid "This is will add services element"
 
 
 
2582
  msgstr ""
2583
 
2584
- #: includes/elements/exclude/services.php:119
2585
- msgid "column"
2586
- msgstr "ستون"
2587
 
2588
- #: includes/elements/exclude/services.php:119
2589
- msgid "tab"
2590
- msgstr "زبانه"
 
2591
 
2592
- #: includes/elements/exclude/services.php:122
2593
- msgid "display_type"
2594
- msgstr "display_type"
 
 
 
2595
 
2596
- #: includes/elements/exclude/soundcloud.php:39
2597
- msgid "Auxin soundcloud "
2598
- msgstr "اکسین soundcloud "
 
2599
 
2600
- #: includes/elements/exclude/soundcloud.php:42
2601
- msgid "This is will add soundcloud element"
 
2602
  msgstr ""
2603
 
2604
- #: includes/elements/exclude/staffs.php:18
2605
- msgid "Auxin axi_staffs "
2606
  msgstr ""
2607
 
2608
- #: includes/elements/exclude/staffs.php:21
2609
- msgid "This is will add axi_staffs element"
2610
  msgstr ""
2611
 
2612
- #: includes/elements/exclude/staffs.php:107
2613
- #: includes/elements/exclude/testimonial.php:122
2614
- msgid "view_excerpt"
2615
- msgstr "view_excerpt"
 
2616
 
2617
- #: includes/elements/exclude/staffs.php:122
2618
- msgid "view_socials"
2619
- msgstr "view_socials"
2620
 
2621
- #: includes/elements/exclude/staffs.php:137
2622
- msgid "link_to_single"
2623
  msgstr ""
2624
 
2625
- #: includes/elements/exclude/staffs.php:152
2626
- #: includes/elements/latest-items.php:236
2627
- msgid "paged"
2628
- msgstr "صفحه بندی شده"
 
2629
 
2630
- #: includes/elements/exclude/tabs.php:10 includes/elements/tabs.php:10
2631
- msgid "[Phlox] Tabs"
2632
- msgstr "[فلوکس] زبانه ها"
2633
 
2634
- #: includes/elements/exclude/tabs.php:13 includes/elements/tabs.php:13
2635
- msgid "It adds tabs element."
2636
- msgstr "یک المان زبانه اضافه می کند."
2637
 
2638
- #: includes/elements/exclude/tabs.php:34 includes/elements/tabs.php:35
2639
- msgid "Tabs title, leave it empty if you don`t need title."
2640
- msgstr "عنوان زبانه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
2641
 
2642
- #: includes/elements/exclude/tabs.php:48
2643
- msgid ""
2644
- "Please use below sample for each tab item.<br>[tab_section label=\"Tab label "
2645
- "here\" ]Tab content here [/tab_section]"
2646
  msgstr ""
2647
 
2648
- #: includes/elements/exclude/testfields.php:13
2649
- msgid "Auxin Sample "
2650
- msgstr "اکسین نمونه"
2651
 
2652
- #: includes/elements/exclude/testfields.php:16
2653
- #: includes/elements/sample-element.php:15
2654
- msgid "The element description"
2655
- msgstr "توضیحات المان"
2656
 
2657
- #: includes/elements/exclude/testfields.php:51
2658
- #: includes/elements/sample-element.php:45
2659
- msgid "Description for this element"
2660
- msgstr "توضیحات این المان"
2661
 
2662
- #: includes/elements/exclude/testfields.php:68
2663
- msgid "Button border style"
2664
- msgstr "ظاهر کادر دکمه"
 
 
2665
 
2666
- #: includes/elements/exclude/testfields.php:82
2667
- msgid "Divider Style"
2668
- msgstr "ظاهر جداکننده"
2669
 
2670
- #: includes/elements/exclude/testfields.php:83
2671
- msgid "The style of divider"
2672
- msgstr "ظاهر جداکننده"
2673
 
2674
- #: includes/elements/exclude/testfields.php:139
2675
- msgid "Icon Color"
2676
- msgstr "رنگ شکلک"
2677
 
2678
- #: includes/elements/exclude/testfields.php:140
2679
- msgid "Choose a color for icon"
2680
- msgstr "رنگی برای شکلک انتخاب کنید"
 
2681
 
2682
- #: includes/elements/exclude/testimonial-item.php:18
2683
- msgid "Auxin testimonial_item"
2684
- msgstr "اکسین testimonial_item"
2685
 
2686
- #: includes/elements/exclude/testimonial-item.php:21
2687
- msgid "This is will add testimonial_item element"
2688
- msgstr "یک testimonial_item اضافه می کند."
2689
 
2690
- #: includes/elements/exclude/testimonial-item.php:77
2691
- #: includes/elements/exclude/testimonial-slider.php:152
2692
- msgid "Show author"
2693
- msgstr "نمایش نویسنده"
2694
 
2695
- #: includes/elements/exclude/testimonial-item.php:92
2696
- #: includes/elements/exclude/testimonial.php:107
2697
- msgid "link"
2698
- msgstr "پیوند"
 
2699
 
2700
- #: includes/elements/exclude/testimonial-item.php:104
2701
- #: includes/elements/exclude/testimonial.php:119
2702
- msgid "box"
2703
- msgstr "جعبه"
2704
 
2705
- #: includes/elements/exclude/testimonial-item.php:107
2706
- msgid "Select Testimonial"
2707
- msgstr "انتخاب اظهار نظر"
 
2708
 
2709
- #: includes/elements/exclude/testimonial-item.php:231
2710
- msgid "more .."
2711
- msgstr "بیشتر .."
 
2712
 
2713
- #: includes/elements/exclude/testimonial-slider.php:18
2714
- msgid "Auxin testimonial_slider"
2715
- msgstr "اکسین testimonial_slider"
2716
 
2717
- #: includes/elements/exclude/testimonial-slider.php:21
2718
- msgid "This is will add testimonial_slider element"
2719
- msgstr "یک المان testimonial_slider اضافه می کند."
2720
 
2721
- #: includes/elements/exclude/testimonial-slider.php:62
2722
- msgid "Number of testimonials"
2723
- msgstr "تعداد اظهار نظرها"
 
2724
 
2725
- #: includes/elements/exclude/testimonial-slider.php:89
2726
- #: includes/elements/exclude/testimonial-slider.php:104
2727
- msgid "Category 1"
2728
- msgstr "دسته 1"
2729
 
2730
- #: includes/elements/exclude/testimonial-slider.php:89
2731
- #: includes/elements/exclude/testimonial-slider.php:104
2732
- msgid "Category 2"
2733
- msgstr "دسته 2"
2734
 
2735
- #: includes/elements/exclude/testimonial-slider.php:89
2736
- #: includes/elements/exclude/testimonial-slider.php:104
2737
- msgid "Category 3"
2738
- msgstr "دسته 3"
2739
 
2740
- #: includes/elements/exclude/testimonial-slider.php:92
2741
- msgid "Category"
2742
- msgstr "دسته"
 
2743
 
2744
- #: includes/elements/exclude/testimonial-slider.php:107
2745
- msgid "Select specific testimonials"
2746
- msgstr "انتخاب اظهار نظرهای مشخص"
2747
 
2748
- #: includes/elements/exclude/testimonial-slider.php:119
2749
- #: includes/elements/gallery.php:130
2750
- #: includes/elements/latest-posts-slider.php:131
2751
- #: includes/elements/popular-posts-widget.php:192
2752
- #: includes/elements/recent-posts-grid-carousel.php:191
2753
- #: includes/elements/recent-posts-land-style.php:192
2754
- #: includes/elements/recent-posts-masonry.php:191
2755
- #: includes/elements/recent-posts-tiles.php:197
2756
- #: includes/elements/recent-posts-timeline.php:218
2757
- #: includes/elements/recent-posts-widget.php:152
2758
- msgid "Date"
2759
- msgstr "تاریخ"
2760
 
2761
- #: includes/elements/exclude/testimonial-slider.php:119
2762
- #: includes/elements/latest-posts-slider.php:135
2763
- #: includes/elements/popular-posts-widget.php:196
2764
- #: includes/elements/recent-posts-grid-carousel.php:195
2765
- #: includes/elements/recent-posts-land-style.php:196
2766
- #: includes/elements/recent-posts-masonry.php:195
2767
- #: includes/elements/recent-posts-tiles.php:201
2768
- #: includes/elements/recent-posts-timeline.php:222
2769
- #: includes/elements/recent-posts-widget.php:156
2770
- msgid "Random"
2771
- msgstr "تصادفی"
2772
 
2773
- #: includes/elements/exclude/testimonial-slider.php:122
2774
- #: includes/elements/latest-posts-slider.php:125
2775
- #: includes/elements/popular-posts-widget.php:184
2776
- #: includes/elements/recent-posts-grid-carousel.php:183
2777
- #: includes/elements/recent-posts-land-style.php:184
2778
- #: includes/elements/recent-posts-masonry.php:183
2779
- #: includes/elements/recent-posts-tiles.php:189
2780
- #: includes/elements/recent-posts-timeline.php:210
2781
- #: includes/elements/recent-posts-widget.php:144
2782
- msgid "Order by"
2783
- msgstr "مرتب سازی بر اساس"
2784
 
2785
- #: includes/elements/exclude/testimonial-slider.php:134
2786
- #: includes/elements/latest-posts-slider.php:156
2787
- #: includes/elements/popular-posts-widget.php:217
2788
- #: includes/elements/recent-posts-grid-carousel.php:216
2789
- #: includes/elements/recent-posts-land-style.php:217
2790
- #: includes/elements/recent-posts-masonry.php:216
2791
- #: includes/elements/recent-posts-tiles.php:222
2792
- #: includes/elements/recent-posts-timeline.php:243
2793
- #: includes/elements/recent-posts-widget.php:177
2794
- msgid "Ascending"
2795
- msgstr "صعودی"
2796
 
2797
- #: includes/elements/exclude/testimonial-slider.php:134
2798
- #: includes/elements/latest-posts-slider.php:155
2799
- #: includes/elements/popular-posts-widget.php:216
2800
- #: includes/elements/recent-posts-grid-carousel.php:215
2801
- #: includes/elements/recent-posts-land-style.php:216
2802
- #: includes/elements/recent-posts-masonry.php:215
2803
- #: includes/elements/recent-posts-tiles.php:221
2804
- #: includes/elements/recent-posts-timeline.php:242
2805
- #: includes/elements/recent-posts-widget.php:176
2806
- msgid "Descending"
2807
- msgstr "نزولی"
2808
 
2809
- #: includes/elements/exclude/testimonial-slider.php:137
2810
- #: includes/elements/gallery.php:102
2811
- #: includes/elements/popular-posts-widget.php:208
2812
- #: includes/elements/recent-posts-grid-carousel.php:207
2813
- #: includes/elements/recent-posts-land-style.php:208
2814
- #: includes/elements/recent-posts-masonry.php:207
2815
- #: includes/elements/recent-posts-tiles.php:213
2816
- #: includes/elements/recent-posts-timeline.php:234
2817
- #: includes/elements/recent-posts-widget.php:168
2818
- msgid "Order"
2819
- msgstr "ترتیب"
2820
 
2821
- #: includes/elements/exclude/testimonial.php:18
2822
- msgid "Auxin testimonial "
2823
- msgstr "اکسین نظرات دیگران"
 
2824
 
2825
- #: includes/elements/exclude/testimonial.php:21
2826
- msgid "This is will add testimonial element"
2827
- msgstr ""
 
2828
 
2829
- #: includes/elements/exclude/testimonial.php:62
2830
- msgid "author"
2831
- msgstr "نویسنده"
2832
 
2833
- #: includes/elements/exclude/testimonial.php:77
2834
- msgid "avatar"
2835
- msgstr "آواتار"
 
 
2836
 
2837
- #: includes/elements/exclude/testimonial.php:92
2838
- msgid "role"
2839
- msgstr "نقش"
2840
 
2841
- #: includes/elements/exclude/testimonial.php:137
2842
- msgid "refer"
2843
- msgstr "refer"
 
 
2844
 
2845
- #: includes/elements/exclude/twitter-slider.php:18
2846
- msgid "Auxin latest_tweets_slider "
2847
- msgstr "اکسین latest_tweets_slider "
 
 
2848
 
2849
- #: includes/elements/exclude/twitter-slider.php:21
2850
- #: includes/elements/exclude/twitter.php:21
2851
- msgid "This is will add latest_tweets element"
2852
- msgstr "یک المان add latest_tweets اضافه می کند."
2853
 
2854
- #: includes/elements/exclude/twitter-slider.php:47
2855
- msgid "Number of tweets to fetch"
2856
- msgstr "تعداد توییت ها برای استخراج"
2857
 
2858
- #: includes/elements/exclude/twitter-slider.php:62
2859
- msgid "style type"
2860
- msgstr "نوع ظاهر"
2861
 
2862
- #: includes/elements/exclude/twitter.php:18
2863
- msgid "Auxin latest_tweets2 "
2864
- msgstr "اکسین latest_tweets2 "
 
2865
 
2866
- #: includes/elements/exclude/twitter.php:62
2867
- msgid "id"
2868
- msgstr "شناسه"
2869
 
2870
- #: includes/elements/exclude/twitter.php:92
2871
- msgid "limit"
2872
- msgstr "محدودیت"
 
2873
 
2874
- #: includes/elements/exclude/twitter.php:107
2875
- msgid "uid"
2876
- msgstr "uid"
2877
 
2878
- #: includes/elements/facebook.php:11
2879
- msgid "[Phlox] Custom Facebook Feed"
2880
- msgstr "[فلوکس] خوراک فیسبوک سفارشی"
 
2881
 
2882
- #: includes/elements/facebook.php:14
2883
- msgid "It uses Custom Facebook Feed plugin."
2884
- msgstr "از افزونه خوراک دلخواه وردپرس استفاده می کند."
2885
 
2886
- #: includes/elements/facebook.php:38
2887
- msgid "Page ID"
2888
- msgstr "شناسه برگه"
2889
 
2890
- #: includes/elements/facebook.php:39
2891
- #, php-format
2892
- msgid ""
2893
- "ID of your Facebook Page or Group. Use %sthis tool%s to help you in finding "
2894
- "this."
2895
  msgstr ""
2896
- "شناسه صفحه یا گروه شما در فیسبوک. برای پیداکردن شناسه خود می توانید از %sاین "
2897
- "ابزار%s استفاده کنید."
2898
 
2899
- #: includes/elements/facebook.php:53
2900
- msgid "Page type"
2901
- msgstr "نوع صفحه"
 
2902
 
2903
- #: includes/elements/facebook.php:54
2904
- msgid "Specifies whether to display posts from a page or group."
2905
- msgstr "مشخص می کند پست ها از یک صفحه یا گروه نمایش داده شوند."
 
2906
 
2907
- #: includes/elements/facebook.php:58
2908
- msgid "Page"
2909
- msgstr "صفحه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2910
 
2911
- #: includes/elements/facebook.php:59
2912
- msgid "Group"
2913
- msgstr "گروه"
 
 
 
 
2914
 
2915
- #: includes/elements/facebook.php:71
2916
- msgid "Number of posts"
2917
- msgstr "تعداد نوشته ها"
 
 
2918
 
2919
- #: includes/elements/facebook.php:72
2920
- msgid "The number of posts you wish to display."
2921
- msgstr "تعداد پست هایی که می خواهید نمایش داده شوند."
 
 
 
2922
 
2923
- #: includes/elements/facebook.php:86
2924
- msgid "Display posts by others"
2925
- msgstr "نمایش پست هایی که دیگران نوشته اند"
 
2926
 
2927
- #: includes/elements/facebook.php:87
2928
- msgid ""
2929
- "Specifies to display posts by only the page owner, anyone who posts on your "
2930
- "page, or only others who post on your page."
 
 
 
 
 
 
 
 
 
 
2931
  msgstr ""
2932
- "مشخص می کند فقط پست هایی که شما نوشته اید، هر پستی که در صفحه شما نوشته شده "
2933
- "است، یا فقط پست هایی که دیگران در صفحه شما نوشته اند نمایش داده شود."
2934
 
2935
- #: includes/elements/facebook.php:91
2936
- msgid "Only the page owner"
2937
- msgstr "فقط صاحب برگه"
2938
 
2939
- #: includes/elements/facebook.php:92
2940
- msgid "Page owner and other people"
2941
- msgstr "صاحب برگه و دیگران"
2942
 
2943
- #: includes/elements/facebook.php:93
2944
- msgid "Only other people"
2945
- msgstr "فقط دیگران"
2946
 
2947
- #: includes/elements/facebook.php:105
2948
- msgid "Post text length"
2949
- msgstr "طول متن نوشته"
 
2950
 
2951
- #: includes/elements/facebook.php:106
2952
- msgid "The maximum character length of the post text."
2953
- msgstr "حداکثر تعداد کاراکترها در متن نوشته."
2954
 
2955
- #: includes/elements/facebook.php:118
2956
- msgid "Display post author"
2957
- msgstr "نمایش نویسنده نوشته"
 
 
2958
 
2959
- #: includes/elements/facebook.php:119
2960
- msgid "Enable it to display name and avatar of the post author."
2961
- msgstr "برای نمایش نام و آواتار نویسنده پست این گزینه را فعال کنید."
2962
 
2963
- #: includes/elements/facebook.php:131
2964
- msgid "Display the feed header"
2965
- msgstr "نمایش سربرگ خوراک"
 
2966
 
2967
- #: includes/elements/facebook.php:132
2968
- msgid "Enable it to display a customizable header at the top of the feed."
2969
- msgstr "برای نمایش سربرگ قابل شخصی سازی در بالای خوراک این گزینه را فعال کنید."
2970
 
2971
- #: includes/elements/facebook.php:144
2972
- msgid "Ajax"
2973
- msgstr "آیجکس"
2974
 
2975
- #: includes/elements/facebook.php:145
2976
- msgid "Enable it for being loaded via Ajax."
2977
- msgstr "برای بارگذاری محتوا به صورت ایجکسی این گزینه را فعال کنید."
 
 
2978
 
2979
- #: includes/elements/flickr.php:11
2980
- msgid "[Phlox] Flickr Justified Gallery"
2981
- msgstr "[فلوکس] گالری تصویر مرتب شده فلیکر"
2982
 
2983
- #: includes/elements/flickr.php:14
2984
- msgid "It uses Flickr Justified Gallery plugin."
2985
- msgstr "از افزونه گالری مرتب شده فلیکر استفاده می کند."
 
2986
 
2987
- #: includes/elements/flickr.php:38
2988
- msgid "User ID"
2989
- msgstr "شناسه کاربر"
2990
 
2991
- #: includes/elements/flickr.php:39
2992
- #, php-format
 
 
 
 
 
 
2993
  msgid ""
2994
- "Displays the photostream of the specified user, no matter what is the "
2995
- "default user ID in the settings. Remember that you can use %sidgettr%s to "
2996
- "retrieve the user_id."
2997
  msgstr ""
2998
- "یک جریان تصویر از کاربر مشخص شده را نمایش می دهد، مهم نیست شناسه پیش فرض "
2999
- "کاربر در تنظیمات چه چیزی باشد. به یاد داشته باشید می توانید از %sidgettr%s "
3000
- "برای دستیابی به شناسه کاربر استفاده کنید."
3001
-
3002
- #: includes/elements/flickr.php:53
3003
- msgid "Flickr image type"
3004
- msgstr "نوع تصویر فلیکر"
3005
 
3006
- #: includes/elements/flickr.php:58
3007
- msgid "Photostream"
3008
- msgstr "جریان تصویر"
 
 
3009
 
3010
- #: includes/elements/flickr.php:59
3011
- msgid "Galleries"
3012
- msgstr "گالری ها"
 
 
3013
 
3014
- #: includes/elements/flickr.php:60
3015
- msgid "Album"
3016
- msgstr "آلبوم"
3017
 
3018
- #: includes/elements/flickr.php:61 includes/elements/flickr.php:110
3019
- msgid "Group pools"
3020
- msgstr "'v,i"
 
3021
 
3022
- #: includes/elements/flickr.php:62 includes/elements/flickr.php:128
3023
- msgid "Tags"
3024
- msgstr "برچسب ها"
3025
 
3026
- #: includes/elements/flickr.php:74
3027
- msgid "Gallery ID"
3028
- msgstr "شناسه گالری"
 
3029
 
3030
- #: includes/elements/flickr.php:75
3031
- msgid ""
3032
- "To show the photos of a particular gallery, you need to know its id. For "
3033
- "example, the id of the gallery located in the URL: http://www.flickr.com/"
3034
- "photos/miro-mannino/galleries/72157636382842016/ is: 72157636382842016"
3035
  msgstr ""
3036
- "برای نشان دادن تصاویر از یک گالری مشخص، نیاز است شناسه آن را بدانید. برای "
3037
- "مثال، شناسه گالری در آدرس: http://www.flickr.com/photos/miro-mannino/"
3038
- "galleries/72157636382842016 برابر است با : 72157636382842016"
3039
 
3040
- #: includes/elements/flickr.php:92
3041
- msgid "Album ID"
3042
- msgstr "شناسه آلبوم"
 
3043
 
3044
- #: includes/elements/flickr.php:93
3045
- msgid ""
3046
- "To show the photos of a particular photo set (also called \"album\"), you "
3047
- "need to know its photoset_id. For example, the photoset_id of the photo set "
3048
- "located in the URL: http://www.flickr.com/photos/miro-mannino/"
3049
- "sets/72157629228993613/ is: 72157629228993613"
 
 
 
 
 
 
 
 
 
 
 
 
 
3050
  msgstr ""
3051
- "برای نمایش تصاویر از یک مجموعه تصویر مشخص (که \"آلبوم\" نامیده شده)، نیاز "
3052
- "است تا شناسه آلبوم را بدانید. برای مثال در آدرس: http://www.flickr.com/"
3053
- "photos/miro-mannino/sets/72157629228993613 شناسه آلبوم برابر است با: "
3054
- "72157629228993613"
3055
 
3056
- #: includes/elements/flickr.php:111
3057
- #, php-format
3058
- msgid ""
3059
- "Display photos of a particular group pool, you need to know the group id, "
3060
- "that you can retrieve using %sidgettr%s."
3061
  msgstr ""
3062
- "تصاویر از یک گروه خاص را نشان می دهد، نیاز است شناسه گروه را بدانید که می "
3063
- "توانید از ابزار %sidgettr%s برای دستیابی به آن استفاده کنید."
3064
 
3065
- #: includes/elements/flickr.php:129
3066
- msgid ""
3067
- "Display photos that have some particular tags, Seprate words with , for "
3068
- "example: cat, square, nikon"
 
 
 
3069
  msgstr ""
3070
- "تصاویری از برچسب های مشخص را نشان می دهد که برچسب ها با کاما جدا می شوند. "
3071
- "برای مثال: گربه، مربع، نیکون"
3072
 
3073
- #: includes/elements/flickr.php:146 includes/elements/gallery.php:186
3074
- msgid "Lightbox"
3075
- msgstr "لایت باکس"
 
3076
 
3077
- #: includes/elements/flickr.php:147
3078
- msgid ""
3079
- "In case of using Colorbox or Swipebox, you need to enable it on Flickr "
3080
- "Justified Gallery plugin settings."
 
 
 
3081
  msgstr ""
3082
- "برای مواردی که م یخواهید از Colorbox یا Swipebox استفاده کنید، لازم است آن "
3083
- "را در تنظیمات افزونه گالری مرتب شده فیلکر فعال کنید."
3084
 
3085
- #: includes/elements/flickr.php:152
3086
- msgid "Colorbox"
3087
- msgstr "جعبه رنگ"
3088
 
3089
- #: includes/elements/flickr.php:153
3090
- msgid "Swipebox"
3091
- msgstr "Swipebox"
3092
 
3093
- #: includes/elements/flickr.php:165
3094
- msgid "Images height"
3095
- msgstr "ارتفاع تصاویر"
 
 
 
 
 
3096
 
3097
- #: includes/elements/flickr.php:166
3098
- msgid "You can use the this option to set images height in px."
3099
- msgstr "بمی توانید از این تنظیمات برای تنظیم ارتفاع تصویر استفاده کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
 
3101
- #: includes/elements/flickr.php:180
3102
- msgid "Max number of photos"
3103
- msgstr "بیشترین تعداد تصاویر"
 
 
 
 
 
 
 
3104
 
3105
- #: includes/elements/flickr.php:181
3106
  msgid ""
3107
- "Maximum number of photos. Please note if pagination option is activaited "
3108
- "then this options is used as maximum number of photos per page."
3109
  msgstr ""
3110
- "بیشترین تعداد تصاویر. لطفا توجه کنید اگر تنظیمات صفحه بندی فعال باشد این "
3111
- "تنظیمات نشانگر تعداد تصاویر در هر ثفحه خواهد بود."
3112
-
3113
- #: includes/elements/flickr.php:195
3114
- msgid "Pagination"
3115
- msgstr "صفحه بندی"
3116
 
3117
- #: includes/elements/flickr.php:201
3118
- msgid "Previous and Next"
3119
- msgstr "قبلی و بعدی"
3120
 
3121
- #: includes/elements/flickr.php:202
3122
- msgid "Page Numbers"
3123
- msgstr "شماره صفحات"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3124
 
3125
- #: includes/elements/flickr.php:214
3126
- msgid "Fixed height"
3127
- msgstr "ارتفاع ثابت"
 
 
 
3128
 
3129
- #: includes/elements/flickr.php:215
3130
- msgid "Each row has the same height, but the images will be cut more."
3131
- msgstr "همه ردیف ها ارتفاع یکسان دارند، اما تصاویر بیشتر برش خورده می شوند."
 
3132
 
3133
- #: includes/elements/flickr.php:227
3134
- msgid "Randomize images order"
3135
- msgstr "ترتیب تصادفی برای تصاویر"
 
3136
 
3137
- #: includes/elements/flickr.php:240
3138
- msgid "Margin between the images"
3139
- msgstr "فاصله بیرونی بین تصاویر"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3140
 
3141
- #: includes/elements/flickr.php:241
3142
- msgid "Specifies the space between images."
3143
- msgstr "فضای خالی بین تصاویر را مشخص می کند."
3144
 
3145
- #: includes/elements/gallery.php:10
3146
- msgid "[Phlox] Gallery"
3147
- msgstr "[فلوکس] گالری"
 
3148
 
3149
- #: includes/elements/gallery.php:13
3150
- msgid "Filterable and grid gallery with lightbox"
3151
- msgstr "شبکه گالری قابل فیلترگذاری با لایت باکس"
 
3152
 
3153
- #: includes/elements/gallery.php:52
3154
- #: public/templates/vcomposer/auxin_vc_extendes.php:42
3155
- msgid "Images"
3156
- msgstr "تصاویر"
3157
 
3158
- #: includes/elements/gallery.php:67
3159
- msgid "Column number"
3160
- msgstr "تعداد ستون"
 
 
3161
 
3162
- #: includes/elements/gallery.php:72
3163
- msgid "1 Column"
3164
- msgstr "1 ستون"
3165
 
3166
- #: includes/elements/gallery.php:73
3167
- msgid "2 Columns"
3168
- msgstr "2 ستون"
 
 
3169
 
3170
- #: includes/elements/gallery.php:74
3171
- msgid "3 Columns"
3172
- msgstr "3 ستون"
 
3173
 
3174
- #: includes/elements/gallery.php:75
3175
- msgid "4 Columns"
3176
- msgstr "4 ستون"
 
 
 
 
 
3177
 
3178
- #: includes/elements/gallery.php:76
3179
- msgid "5 Columns"
3180
- msgstr "5 ستون"
 
3181
 
3182
- #: includes/elements/gallery.php:77
3183
- msgid "6 Columns"
3184
- msgstr "6 ستون"
 
3185
 
3186
- #: includes/elements/gallery.php:89
3187
- msgid "Order images by query"
3188
- msgstr "مرتب سازی تصاویر بر اساس کوئری"
 
3189
 
3190
- #: includes/elements/gallery.php:103
3191
- msgid "Order images ascending or descending"
3192
- msgstr "مرتب سازی صعودی یا نزولی تصاویر"
 
 
3193
 
3194
- #: includes/elements/gallery.php:108
3195
- msgid "ASC"
3196
- msgstr "صعودی"
 
 
 
 
 
 
3197
 
3198
- #: includes/elements/gallery.php:123
3199
- msgid "Order images by"
3200
- msgstr "مرتب کردن تصاویر بر اساس"
 
 
3201
 
3202
- #: includes/elements/gallery.php:129
3203
- #: includes/elements/latest-posts-slider.php:132
3204
- #: includes/elements/popular-posts-widget.php:193
3205
- #: includes/elements/recent-posts-grid-carousel.php:192
3206
- #: includes/elements/recent-posts-land-style.php:193
3207
- #: includes/elements/recent-posts-masonry.php:192
3208
- #: includes/elements/recent-posts-tiles.php:198
3209
- #: includes/elements/recent-posts-timeline.php:219
3210
- #: includes/elements/recent-posts-widget.php:153
3211
- msgid "Menu Order"
3212
- msgstr "ترتیب فهرست"
3213
 
3214
- #: includes/elements/gallery.php:131
3215
- #: includes/elements/latest-posts-slider.php:134
3216
- #: includes/elements/popular-posts-widget.php:195
3217
- #: includes/elements/recent-posts-grid-carousel.php:194
3218
- #: includes/elements/recent-posts-land-style.php:195
3219
- #: includes/elements/recent-posts-masonry.php:194
3220
- #: includes/elements/recent-posts-tiles.php:200
3221
- #: includes/elements/recent-posts-timeline.php:221
3222
- #: includes/elements/recent-posts-widget.php:155
3223
- msgid "ID"
3224
- msgstr "شناسه"
3225
 
3226
- #: includes/elements/gallery.php:146
3227
- msgid "Gallery layout"
3228
- msgstr "چیدمان گالری"
3229
 
3230
- #: includes/elements/gallery.php:152
3231
- #: public/templates/vcomposer/auxin_vc_extendes.php:35
3232
- msgid "Grid"
3233
- msgstr "شبکه"
3234
 
3235
- #: includes/elements/gallery.php:153
3236
- #: public/templates/vcomposer/auxin_vc_extendes.php:32
3237
- msgid "Masonry"
3238
- msgstr "ساختمانی"
3239
 
3240
- #: includes/elements/gallery.php:165
3241
- msgid "Space"
3242
- msgstr "فضای خالی"
 
3243
 
3244
- #: includes/elements/gallery.php:166
3245
- msgid "Space between gallery items in pixel."
3246
- msgstr "فضای خالی بین تصاویر گالری بر حسب پیکسل"
 
3247
 
3248
- #: includes/elements/gallery.php:180
3249
- msgid "Link images to"
3250
- msgstr "لینک کردن تصاویر به"
 
3251
 
3252
- #: includes/elements/gallery.php:188
3253
- msgid "Attachment Page"
3254
- msgstr "صفحه پیوست"
3255
 
3256
- #: includes/elements/gallery.php:189
3257
- msgid "File"
3258
- msgstr "فایل"
3259
 
3260
- #: includes/elements/gallery.php:200
3261
- #: public/templates/vcomposer/auxin_vc_extendes.php:49
3262
- msgid "Image size"
3263
- msgstr "اندازه تصویر"
3264
 
3265
- #: includes/elements/gallery.php:206
3266
- msgid "Original"
3267
- msgstr "اصلی"
 
3268
 
3269
- #: includes/elements/gallery.php:210
3270
- msgid "Thumbnail"
3271
- msgstr "بندانگشتی"
 
3272
 
3273
- #: includes/elements/gallery.php:221
3274
- msgid "Enable pagination"
3275
- msgstr "فعال سازی صفحه بندی"
 
 
 
 
 
 
 
 
 
 
 
 
3276
 
3277
- #: includes/elements/gallery.php:234
3278
- msgid "Images per page"
3279
- msgstr "تعداد عکس در صفحه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3280
 
3281
- #: includes/elements/gmap.php:10
3282
- msgid "[Phlox] Map "
3283
- msgstr "[فلوکس] نقشه"
 
3284
 
3285
- #: includes/elements/gmap.php:13
3286
- msgid "Google map block"
3287
- msgstr "بلوک نقشه گوگل"
 
3288
 
3289
- #: includes/elements/gmap.php:34
3290
- msgid "Map title, leave it empty if you don`t need title."
3291
- msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
3292
 
3293
- #: includes/elements/gmap.php:47 includes/elements/image.php:98
3294
- #: includes/elements/instagram-feed.php:186 includes/elements/video.php:91
3295
- msgid "Height"
3296
- msgstr "ارتفاع"
 
 
 
 
 
 
 
 
 
 
 
3297
 
3298
- #: includes/elements/gmap.php:108
3299
- msgid ""
3300
- "This feild allow you to customize the presentation of the standard Google "
3301
- "base maps. You can find many preset styles in "
3302
  msgstr ""
3303
- "این فیلد به شما اجازه می دهد نحوه نمایش پایه ای نقشه گوگل را تغییر دهید. شما "
3304
- "می توانید سبک های پیش ساخته را در اینجا پیدا کنید:"
3305
 
3306
- #: includes/elements/gmap.php:139
3307
- msgid "Show navigation control on map."
3308
- msgstr "نمایش کنترل های ناوبری در نقشه."
3309
 
3310
- #: includes/elements/highlight.php:10
3311
- msgid "[Phlox] Highlight"
3312
- msgstr "[فلوکس] برجسته"
3313
 
3314
- #: includes/elements/highlight.php:13
3315
- msgid "Highlighted Text"
3316
- msgstr "متن هایلایت شده"
3317
 
3318
- #: includes/elements/highlight.php:38
3319
- msgid "The style of divider."
3320
- msgstr "ظاهر جداکننده."
3321
 
3322
- #: includes/elements/highlight.php:51
3323
- msgid "Red"
3324
- msgstr "قرمز"
 
3325
 
3326
- #: includes/elements/highlight.php:56
3327
- msgid "Blue"
3328
- msgstr "آبی"
3329
 
3330
- #: includes/elements/highlight.php:61
3331
- msgid "Yellow"
3332
- msgstr "زرد"
3333
 
3334
- #: includes/elements/highlight.php:66
3335
- msgid "Green"
3336
- msgstr "سبز"
 
3337
 
3338
- #: includes/elements/highlight.php:74
3339
- msgid "Enter the text to be highlighted."
3340
- msgstr "متنی که می خواهید هایلایت شود را وارد کنید."
3341
 
3342
- #: includes/elements/image.php:10
3343
- msgid "[Phlox] Image"
3344
- msgstr "[فلوکس] تصویر"
3345
 
3346
- #: includes/elements/image.php:13
3347
- msgid "Image with lightbox option"
3348
- msgstr "تنظیمات تصویر با لایت باکس"
3349
 
3350
- #: includes/elements/image.php:38
3351
- msgid "Image title, leave it empty if you don`t need title."
3352
- msgstr "عنوان تصویر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
 
3353
 
3354
- #: includes/elements/image.php:67
3355
- msgid "Image hover"
3356
- msgstr "تصویر شناور"
3357
 
3358
- #: includes/elements/image.php:83 includes/elements/video.php:76
3359
- msgid "Width"
3360
- msgstr "عرض"
 
3361
 
3362
- #: includes/elements/image.php:114
3363
- msgid "Image alignment in content."
3364
- msgstr "تراز تصویر در محتوا."
 
 
3365
 
3366
- #: includes/elements/image.php:131
3367
- msgid "Iconic button"
3368
- msgstr "دکمه شکلک دار"
 
 
3369
 
3370
- #: includes/elements/image.php:150
3371
- msgid "Open large image in lightbox"
3372
- msgstr "بازشدن تصویر بزرگ در لایت باکس"
 
3373
 
3374
- #: includes/elements/image.php:165
3375
- msgid "Link URL"
3376
- msgstr "آدرس پیوند"
3377
 
3378
- #: includes/elements/image.php:183
3379
- msgid "Target"
3380
- msgstr "هدف"
3381
 
3382
- #: includes/elements/image.php:184
3383
- msgid "Open in new page or this page."
3384
- msgstr "در صفحه جدید یا در همین صفحه باز شود."
 
3385
 
3386
- #: includes/elements/image.php:189
3387
- msgid "Self"
3388
- msgstr "همین صفحه"
3389
 
3390
- #: includes/elements/image.php:190
3391
- msgid "Blank"
3392
- msgstr "خالی"
3393
 
3394
- #: includes/elements/instagram-feed.php:10
3395
- msgid "[Phlox] instagram feed"
3396
- msgstr "[فلوکس] خوراک اینستاگرام"
 
 
3397
 
3398
- #: includes/elements/instagram-feed.php:13
3399
- msgid "It adds an instagram feed element."
3400
- msgstr "یک المان خوراک اینستاگرام اضافه می کند."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3401
 
3402
- #: includes/elements/instagram-feed.php:38
3403
- msgid "A title for instagram element"
3404
- msgstr "عنوانی برای المان اینستاگرام"
 
3405
 
3406
- #: includes/elements/instagram-feed.php:51
3407
- msgid "Instagram user ID"
3408
- msgstr "شناسه کاربر اینستاگرام"
 
3409
 
3410
- #: includes/elements/instagram-feed.php:53
3411
- #, php-format
3412
- msgid ""
3413
- "Instagram User ID. Separate multiple IDs by commas. You can find the User ID "
3414
- "with %sthis tool%s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3415
  msgstr ""
3416
- "شناسه کاربر اینستاگرام. شناسه ها را با کاما از هم جدا کنید. می توانید شناسه "
3417
- "کاربر را با %sاین ابزار%s پیدا کنید."
3418
 
3419
- #: includes/elements/instagram-feed.php:70
3420
- msgid "Number of photo"
3421
- msgstr "تعداد عکس ها"
 
 
 
3422
 
3423
- #: includes/elements/instagram-feed.php:71
3424
- msgid "Number of photos to display initially. Maximum is 33."
3425
- msgstr "تعداد تصاویر برای نمایش اولیه. حداکثر 33."
 
 
3426
 
3427
- #: includes/elements/instagram-feed.php:85
3428
- msgid "Resolution/size of the photos. "
3429
- msgstr "رزولوشن/اندازه تصاویر."
 
3430
 
3431
- #: includes/elements/instagram-feed.php:91 includes/general-hooks.php:550
3432
- msgid "Auto"
3433
- msgstr "خودکار"
 
3434
 
3435
- #: includes/elements/instagram-feed.php:92
3436
- msgid "Thumb"
3437
- msgstr "بند انگشتی"
 
3438
 
3439
- #: includes/elements/instagram-feed.php:94
3440
- msgid "Full"
3441
- msgstr "کامل"
 
3442
 
3443
- #: includes/elements/instagram-feed.php:105
3444
- msgid "Columns"
3445
- msgstr "ستون ها"
3446
 
3447
- #: includes/elements/instagram-feed.php:106
3448
- msgid "Number of columns in the feed. 1 - 10."
3449
- msgstr "تعداد ستون ها در خوراک. 1 - 10"
3450
 
3451
- #: includes/elements/instagram-feed.php:120
3452
- msgid "Spacing around the photos"
3453
- msgstr "فضای خالی اطراف عکس"
 
3454
 
3455
- #: includes/elements/instagram-feed.php:135
3456
- msgid "Unit of the spacing."
3457
- msgstr "واحد فضای خالی"
 
3458
 
3459
- #: includes/elements/instagram-feed.php:141
3460
- #: includes/elements/instagram-feed.php:207
3461
- msgid "Percentage (%)"
3462
- msgstr "درصد (%)"
3463
 
3464
- #: includes/elements/instagram-feed.php:142
3465
- #: includes/elements/instagram-feed.php:208
3466
- msgid "Pixels (px)"
3467
- msgstr "پیکسل"
3468
 
3469
- #: includes/elements/instagram-feed.php:187
3470
- msgid "The height of the feed"
3471
- msgstr "ارتفاع خوراک"
3472
 
3473
- #: includes/elements/instagram-feed.php:201
3474
- msgid "Unit of the height."
3475
- msgstr "واحد ارتفاع."
 
 
3476
 
3477
- #: includes/elements/instagram-feed.php:234
3478
- msgid "Show header"
3479
- msgstr "نمایش سربرگ"
 
 
3480
 
3481
- #: includes/elements/instagram-feed.php:235
3482
- msgid "Whether to show the feed header."
3483
- msgstr "سربرگ خوراک نمایش داده شود یا خیر."
 
3484
 
3485
- #: includes/elements/instagram-feed.php:249
3486
- msgid "Show follow button"
3487
- msgstr "نمایش دکمه دنبال کردن"
3488
 
3489
- #: includes/elements/instagram-feed.php:250
3490
- msgid "Whether to show the Follow on Instagram button."
3491
- msgstr "دکمه دنبال کردن اینستاگرام نمایش داده شود یا خیر."
 
3492
 
3493
- #: includes/elements/instagram-feed.php:264
3494
- msgid "Show load more button"
3495
- msgstr "نمایش دکمه بارگذاری بیشتر"
 
3496
 
3497
- #: includes/elements/instagram-feed.php:265
3498
- msgid " Whether to show the load more button."
3499
- msgstr "دکمه نمایش بیشتر نشان داده شود یا نه."
 
3500
 
3501
- #: includes/elements/latest-items.php:12
3502
- msgid "Auxin latest_items"
3503
- msgstr "اکسین latest_items"
 
 
3504
 
3505
- #: includes/elements/latest-items.php:15
3506
- msgid "This is will add latest_items element"
3507
- msgstr "یک المان latest_items اضافه می کند."
 
 
3508
 
3509
- #: includes/elements/latest-items.php:53
3510
- msgid "caption-over"
3511
- msgstr "caption-over"
3512
 
3513
- #: includes/elements/latest-items.php:56
3514
- msgid "mode type"
3515
- msgstr "نوع حالت"
 
3516
 
3517
- #: includes/elements/latest-items.php:72
3518
- msgid "attachment grid"
3519
- msgstr "شبکه پیوست"
 
3520
 
3521
- #: includes/elements/latest-items.php:87
3522
- msgid "attachment num"
3523
- msgstr "شماره پیوست"
 
3524
 
3525
- #: includes/elements/latest-items.php:117
3526
- msgid "attachment link"
3527
- msgstr "لینک پیوست"
 
 
3528
 
3529
- #: includes/elements/latest-items.php:131
3530
- msgid "posttype type"
3531
- msgstr "نوع نوشته"
 
3532
 
3533
- #: includes/elements/latest-items.php:147
3534
- msgid "attachment alt"
3535
- msgstr "جایگزین پیوست"
 
3536
 
3537
- #: includes/elements/latest-items.php:161
3538
- msgid "width"
3539
- msgstr "عرض"
 
3540
 
3541
- #: includes/elements/latest-items.php:176
3542
- msgid "view_excerpt ?"
3543
- msgstr "view_excerpt ?"
3544
 
3545
- #: includes/elements/latest-items.php:191
3546
- msgid "view_title ?"
3547
- msgstr "view_title ?"
 
 
3548
 
3549
- #: includes/elements/latest-items.php:221
3550
- msgid "section_index"
3551
- msgstr "section_index"
 
3552
 
3553
- #: includes/elements/latest-items.php:222
3554
- msgid "attachment section_index"
3555
- msgstr "section_index پیوست"
 
3556
 
3557
- #: includes/elements/latest-items.php:237
3558
- msgid "attachment paged"
3559
- msgstr "پیوست صفحه بندی شده"
 
3560
 
3561
- #: includes/elements/latest-posts-slider.php:10
3562
- msgid "[Phlox] Latest Posts Slider "
3563
- msgstr "[فلوکس] اسلایدر آخرین نوشته ها"
3564
 
3565
- #: includes/elements/latest-posts-slider.php:13
3566
- msgid "Slider for latest posts."
3567
- msgstr "اسلایدر برای آخرین نوشته ها."
3568
 
3569
- #: includes/elements/latest-posts-slider.php:38
3570
- msgid "Latest post slider title, leave it empty if you don`t need title."
 
 
3571
  msgstr ""
3572
- "عنوان اسلایدر آخرین نوشته ها، اگر به عنوان نیازی ندارید آن را خالی بگذارید."
3573
 
3574
- #: includes/elements/latest-posts-slider.php:51
3575
- msgid "Create slides from"
3576
- msgstr "ساخت اسلایدها از"
 
3577
 
3578
- #: includes/elements/latest-posts-slider.php:57
3579
- msgid "Posts"
3580
- msgstr "نوشته ها"
3581
 
3582
- #: includes/elements/latest-posts-slider.php:58
3583
- msgid "Pages"
3584
- msgstr "برگه ها"
 
 
 
3585
 
3586
- #: includes/elements/latest-posts-slider.php:69
3587
- msgid "Slides number"
3588
- msgstr "تعداد اسلایدها"
3589
 
3590
- #: includes/elements/latest-posts-slider.php:70
3591
- msgid "Specifies maximum number of slides in slider."
3592
- msgstr "بیشترین تعداد اسلاید در اسلایدر را مشخص می کند."
 
3593
 
3594
- #: includes/elements/latest-posts-slider.php:83
3595
- #: includes/elements/recent-posts-grid-carousel.php:155
3596
- #: includes/elements/recent-posts-land-style.php:156
3597
- #: includes/elements/recent-posts-masonry.php:155
3598
- #: includes/elements/recent-posts-tiles.php:161
3599
- #: includes/elements/recent-posts-timeline.php:182
3600
- msgid "Exclude posts"
3601
- msgstr "نادیده گرفتن این نوشته ها"
3602
 
3603
- #: includes/elements/latest-posts-slider.php:84
3604
- #: includes/elements/latest-posts-slider.php:98
3605
- msgid "Post IDs separated by comma (eg. 53,34,87,25)."
3606
- msgstr "شناسه نوشته ها که با کاما از هم جدا شده اند. (مثلا 53,34,87,25)."
3607
 
3608
- #: includes/elements/latest-posts-slider.php:97
3609
- #: includes/elements/recent-posts-grid-carousel.php:169
3610
- #: includes/elements/recent-posts-land-style.php:170
3611
- #: includes/elements/recent-posts-masonry.php:169
3612
- #: includes/elements/recent-posts-tiles.php:175
3613
- #: includes/elements/recent-posts-timeline.php:196
3614
- msgid "Include posts"
3615
- msgstr "شامل شدن این نوشته ها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3616
 
3617
- #: includes/elements/latest-posts-slider.php:111
3618
- #: includes/elements/recent-posts-grid-carousel.php:225
3619
- #: includes/elements/recent-posts-land-style.php:226
3620
- #: includes/elements/recent-posts-masonry.php:225
3621
- #: includes/elements/recent-posts-tiles.php:232
3622
- #: includes/elements/recent-posts-timeline.php:252
3623
- msgid "Start offset"
3624
- msgstr "پرش از ابتدا"
3625
 
3626
- #: includes/elements/latest-posts-slider.php:112
3627
- #: includes/elements/recent-posts-grid-carousel.php:226
3628
- #: includes/elements/recent-posts-land-style.php:227
3629
- #: includes/elements/recent-posts-masonry.php:226
3630
- #: includes/elements/recent-posts-tiles.php:233
3631
- #: includes/elements/recent-posts-timeline.php:253
3632
- msgid "Number of post to displace or pass over."
3633
- msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
3634
 
3635
- #: includes/elements/latest-posts-slider.php:136
3636
- #: includes/elements/popular-posts-widget.php:197
3637
- #: includes/elements/recent-posts-grid-carousel.php:196
3638
- #: includes/elements/recent-posts-land-style.php:197
3639
- #: includes/elements/recent-posts-masonry.php:196
3640
- #: includes/elements/recent-posts-tiles.php:202
3641
- #: includes/elements/recent-posts-timeline.php:223
3642
- #: includes/elements/recent-posts-widget.php:157
3643
- msgid "Comments"
3644
- msgstr "دیدگاه ها"
3645
 
3646
- #: includes/elements/latest-posts-slider.php:137
3647
- #: includes/elements/popular-posts-widget.php:198
3648
- #: includes/elements/recent-posts-grid-carousel.php:197
3649
- #: includes/elements/recent-posts-land-style.php:198
3650
- #: includes/elements/recent-posts-masonry.php:197
3651
- #: includes/elements/recent-posts-tiles.php:203
3652
- #: includes/elements/recent-posts-timeline.php:224
3653
- #: includes/elements/recent-posts-widget.php:158
3654
- msgid "Date Modified"
3655
- msgstr "تاریخ ویرایش"
3656
 
3657
- #: includes/elements/latest-posts-slider.php:138
3658
- #: includes/elements/popular-posts-widget.php:199
3659
- #: includes/elements/recent-posts-grid-carousel.php:198
3660
- #: includes/elements/recent-posts-land-style.php:199
3661
- #: includes/elements/recent-posts-masonry.php:198
3662
- #: includes/elements/recent-posts-tiles.php:204
3663
- #: includes/elements/recent-posts-timeline.php:225
3664
- #: includes/elements/recent-posts-widget.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3665
  msgid "Author"
3666
  msgstr "نویسنده"
3667
 
3668
- #: includes/elements/latest-posts-slider.php:149
3669
- msgid "Order direction"
3670
- msgstr "جهت مرتب سازی"
 
 
 
 
 
3671
 
3672
- #: includes/elements/latest-posts-slider.php:167
3673
- msgid "Slider skin"
3674
- msgstr "نمای اسلایدر"
 
 
3675
 
3676
- #: includes/elements/latest-posts-slider.php:173
3677
- msgid "Light and boxed"
3678
- msgstr "جعبه ای روشن"
 
3679
 
3680
- #: includes/elements/latest-posts-slider.php:174
3681
- msgid "Dark and boxed"
3682
- msgstr "جعبه ای تیره"
 
3683
 
3684
- #: includes/elements/latest-posts-slider.php:175
3685
- msgid "Light overlay"
3686
- msgstr "روکش روشن"
 
 
 
 
3687
 
3688
- #: includes/elements/latest-posts-slider.php:176
3689
- msgid "Dark overlay"
3690
- msgstr "روکش تیره"
 
 
3691
 
3692
- #: includes/elements/latest-posts-slider.php:187
3693
- #: includes/elements/recent-posts-tiles.php:272
3694
- msgid "Insert post title"
3695
- msgstr "افزودن عنوان نوشته"
3696
 
3697
- #: includes/elements/latest-posts-slider.php:200
3698
- #: includes/elements/recent-posts-tiles.php:286
3699
- msgid "Insert post meta"
3700
- msgstr "افزودن متای نوشته"
 
3701
 
3702
- #: includes/elements/latest-posts-slider.php:217
3703
- msgid "Grab the image from"
3704
- msgstr "گرفتن تصویر از"
 
3705
 
3706
- #: includes/elements/latest-posts-slider.php:223
3707
- msgid "Auto select"
3708
- msgstr "انتخاب خودکار"
 
 
3709
 
3710
- #: includes/elements/latest-posts-slider.php:224
3711
- msgid "Featured image"
3712
- msgstr "تصویر شاخص"
 
3713
 
3714
- #: includes/elements/latest-posts-slider.php:225
3715
- msgid "First image in post"
3716
- msgstr "اولین تصویر در نوشته"
3717
 
3718
- #: includes/elements/latest-posts-slider.php:226
3719
- msgid "Custom image"
3720
- msgstr "تصویر دلخواه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3721
 
3722
- #: includes/elements/latest-posts-slider.php:253
3723
- msgid "Exclude posts without image"
3724
- msgstr "نادیده گرفتن نوشته های بدون تصویر"
 
 
3725
 
3726
- #: includes/elements/latest-posts-slider.php:268
3727
- msgid "Slider image width"
3728
- msgstr "عرض تصویر اسلایدر"
3729
 
3730
- #: includes/elements/latest-posts-slider.php:281
3731
- msgid "Slider image height"
3732
- msgstr "ارتفاع تصویر اسلایدر"
3733
 
3734
- #: includes/elements/latest-posts-slider.php:294
3735
- msgid "Arrow navigation"
3736
- msgstr "فلش های ناوبری"
3737
 
3738
- #: includes/elements/latest-posts-slider.php:307
3739
- msgid "Space between slides"
3740
- msgstr "فاصله بین اسلایدها"
3741
 
3742
- #: includes/elements/latest-posts-slider.php:320
3743
- msgid "Looped navigation"
3744
- msgstr "ناوبری چرخه ای"
3745
 
3746
- #: includes/elements/latest-posts-slider.php:333
3747
- msgid "Slideshow"
3748
- msgstr "اسلایدشو"
3749
 
3750
- #: includes/elements/latest-posts-slider.php:346
3751
- msgid "Slideshow delay in seconds"
3752
- msgstr "تاخیر اسلایدشو بر حسب ثانیه"
 
 
3753
 
3754
- #: includes/elements/latest-posts-slider.php:495
3755
- msgid "View all posts in "
3756
- msgstr "نمایش همه نوشته ها در"
3757
 
3758
- #: includes/elements/popular-posts-widget.php:11
3759
- #: includes/elements/recent-posts-grid-carousel.php:11
3760
- #: includes/elements/recent-posts-land-style.php:11
3761
- #: includes/elements/recent-posts-masonry.php:11
3762
- #: includes/elements/recent-posts-tiles.php:11
3763
- #: includes/elements/recent-posts-timeline.php:11
3764
- #: includes/elements/recent-posts-widget.php:11
3765
- msgid "All Categories"
3766
- msgstr "همه دسته ها"
3767
 
3768
- #: includes/elements/popular-posts-widget.php:18
3769
- msgid "[Phlox] Popular Posts Widget"
3770
- msgstr "[فلوکس] ابزارک مطالب محبوب"
 
3771
 
3772
- #: includes/elements/popular-posts-widget.php:21
3773
- msgid "Shows popular and most commented posts with thumbnail."
3774
- msgstr "نمایش مطالب محبوب و بیشتر بحث شده به همراه تصویر بندانگشتی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3775
 
3776
- #: includes/elements/popular-posts-widget.php:60
3777
- #: includes/elements/recent-posts-grid-carousel.php:99
3778
- #: includes/elements/recent-posts-land-style.php:100
3779
- #: includes/elements/recent-posts-masonry.php:99
3780
- #: includes/elements/recent-posts-tiles.php:101
3781
- #: includes/elements/recent-posts-timeline.php:126
3782
- #: includes/elements/recent-posts-widget.php:66
3783
- msgid "Number of posts to show"
3784
- msgstr "تعداد نوشته ها برای نمایش"
 
 
 
 
 
 
 
 
 
 
 
 
 
3785
 
3786
- #: includes/elements/popular-posts-widget.php:81
3787
- msgid "Display popular tab"
3788
- msgstr "نمایش زبانه محبوب ها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3789
 
3790
- #: includes/elements/popular-posts-widget.php:82
3791
- msgid "Enable it to display the most popular posts."
3792
- msgstr "برای نمایش نوشته های محبوب این گزینه را فعال کنید."
 
3793
 
3794
- #: includes/elements/popular-posts-widget.php:96
3795
- msgid "Display recent tab"
3796
- msgstr "نمایش زبانه مطالب اخیر"
 
3797
 
3798
- #: includes/elements/popular-posts-widget.php:97
3799
- msgid "Enable it to display the most recent posts."
3800
- msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
 
3801
 
3802
- #: includes/elements/popular-posts-widget.php:111
3803
- msgid "Display comment tab"
3804
- msgstr "نمایش زبانه دیدگاه ها"
3805
 
3806
- #: includes/elements/popular-posts-widget.php:112
3807
- msgid "Enable it to display the most commented posts."
3808
- msgstr "برای نمایش نوشته های بیشتر بحث شده این گزینه را فعال کنید."
3809
 
3810
- #: includes/elements/popular-posts-widget.php:126
3811
- #: includes/elements/recent-posts-widget.php:86
3812
- msgid "Display image"
3813
- msgstr "نمایش تصویر"
3814
 
3815
- #: includes/elements/popular-posts-widget.php:127
3816
- #: includes/elements/recent-posts-widget.php:87
3817
- msgid "Enable it to display images as well."
3818
- msgstr "همچنین برای نمایش تصاویر این گزینه را فعال کنید."
3819
 
3820
- #: includes/elements/popular-posts-widget.php:141
3821
- #: includes/elements/recent-posts-widget.php:101
3822
- msgid "Display excerpt"
3823
- msgstr "نمایش خلاصه"
3824
 
3825
- #: includes/elements/popular-posts-widget.php:142
3826
- #: includes/elements/recent-posts-widget.php:102
3827
- msgid "Enable it to display post summary instead of full content."
3828
- msgstr "برای نمایش خلاصه نوشته به جای محتوای کامل این گزینه را فعال کنید."
3829
 
3830
- #: includes/elements/popular-posts-widget.php:156
3831
- #: includes/elements/recent-posts-widget.php:116
3832
- msgid "Display post date"
3833
- msgstr "نمایش تاریخ نوشته"
 
3834
 
3835
- #: includes/elements/popular-posts-widget.php:171
3836
- #: includes/elements/recent-posts-widget.php:131
3837
- msgid "Specify summary content in character"
3838
- msgstr "محتوای خلاصه مطلب را بر حسب کاراکتر مشخص می کند."
 
3839
 
3840
- #: includes/elements/popular-posts-widget.php:231
3841
- #: includes/elements/recent-posts-grid-carousel.php:84
3842
- #: includes/elements/recent-posts-land-style.php:85
3843
- #: includes/elements/recent-posts-masonry.php:84
3844
- #: includes/elements/recent-posts-tiles.php:85
3845
- #: includes/elements/recent-posts-timeline.php:111
3846
- msgid "Categories"
3847
- msgstr "دسته ها"
3848
 
3849
- #: includes/elements/popular-posts-widget.php:232
3850
- msgid "specify a categories that you want."
3851
- msgstr "دسته بندی های مورد نظر شما را مشخص می کند."
 
 
3852
 
3853
- #: includes/elements/popular-posts-widget.php:382
3854
- msgid "Popular"
3855
- msgstr "محبوب"
 
3856
 
3857
- #: includes/elements/popular-posts-widget.php:383
3858
- msgid "Recent"
3859
- msgstr "اخیر"
 
 
3860
 
3861
- #: includes/elements/popular-posts-widget.php:384
3862
- msgid "Comment"
3863
- msgstr "دیدگاه"
 
3864
 
3865
- #: includes/elements/quote.php:10
3866
- msgid "[Phlox] Quote"
3867
- msgstr "[فلوکس] نقل قول"
 
3868
 
3869
- #: includes/elements/quote.php:13
3870
- msgid "Blockquote and introduction paragraph"
3871
- msgstr "نقل قول و پاراگراف مقدمه"
 
3872
 
3873
- #: includes/elements/quote.php:37
3874
- msgid "Quote title, leave it empty if you don`t need title."
3875
- msgstr "عنوان نقل قول، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
 
3876
 
3877
- #: includes/elements/quote.php:50
3878
- msgid "Quote text"
3879
- msgstr "متن نقل قول"
 
 
3880
 
3881
- #: includes/elements/quote.php:51
3882
- msgid "Enter a text as a quote."
3883
- msgstr "متنی را به عنوان نقل قول وارد کنید."
3884
 
3885
- #: includes/elements/quote.php:65
3886
- msgid "Blockqoute style"
3887
- msgstr "ظاهر نقل قول"
 
 
 
3888
 
3889
- #: includes/elements/quote.php:72
3890
- msgid "Quote Normal"
3891
- msgstr "نقل قول معمولی"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3892
 
3893
- #: includes/elements/quote.php:76
3894
- msgid "Blockquote Normal"
3895
- msgstr "بلوک نقل قول معمولی"
 
3896
 
3897
- #: includes/elements/quote.php:80
3898
- msgid "Blockquote Bordered"
3899
- msgstr "بلوک نقل قول کادربندی شده"
 
3900
 
3901
- #: includes/elements/quote.php:84
3902
- msgid "Intro"
3903
- msgstr "مقدمه"
 
 
 
 
 
 
 
3904
 
3905
- #: includes/elements/quote.php:88
3906
- msgid "Intro Hero"
3907
- msgstr "مقدمه بزرگ"
 
3908
 
3909
- #: includes/elements/quote.php:92
3910
- msgid "Intro with Splitter"
3911
- msgstr "مقدمه با جداکننده"
 
 
3912
 
3913
- #: includes/elements/quote.php:96
3914
- msgid "Pullquote Normal"
3915
- msgstr "نقل قول معلق معمولی"
 
 
3916
 
3917
- #: includes/elements/quote.php:100
3918
- msgid "Pullquote Colorized"
3919
- msgstr "نقل قول معلق رنگی"
 
3920
 
3921
- #: includes/elements/quote.php:113 includes/elements/text.php:69
3922
- msgid "Text align"
3923
- msgstr "تراز متن"
 
 
3924
 
3925
- #: includes/elements/quote.php:152
3926
- msgid "Insert quote symbol"
3927
- msgstr "افزودن نماد نقل قول"
3928
 
3929
- #: includes/elements/recent-posts-grid-carousel.php:24
3930
- msgid "[Phlox] Grid & Carousel Recent Posts"
3931
- msgstr "[فلوکس] شبکه و گردونه نوشته های اخیر"
3932
 
3933
- #: includes/elements/recent-posts-grid-carousel.php:27
3934
- msgid "It adds recent posts in grid or carousel mode."
3935
- msgstr "مطالب اخیر را در حالت شبکه یا گردونه اضافه می کند."
3936
 
3937
- #: includes/elements/recent-posts-grid-carousel.php:52
3938
- #: includes/elements/recent-posts-land-style.php:52
3939
- #: includes/elements/recent-posts-masonry.php:52
3940
- #: includes/elements/recent-posts-tiles.php:52
3941
- #: includes/elements/recent-posts-timeline.php:52
3942
- msgid "Recent post title, leave it empty if you don`t need title."
3943
- msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3944
 
3945
- #: includes/elements/recent-posts-grid-carousel.php:85
3946
- #: includes/elements/recent-posts-land-style.php:86
3947
- #: includes/elements/recent-posts-masonry.php:85
3948
- #: includes/elements/recent-posts-tiles.php:86
3949
- #: includes/elements/recent-posts-timeline.php:112
3950
- msgid "Specifies a category that you want to show posts from it."
3951
- msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3952
 
3953
- #: includes/elements/recent-posts-grid-carousel.php:113
3954
- #: includes/elements/recent-posts-land-style.php:114
3955
- #: includes/elements/recent-posts-masonry.php:113
3956
- #: includes/elements/recent-posts-tiles.php:116
3957
- #: includes/elements/recent-posts-timeline.php:140
3958
- msgid "Exclude posts without media"
3959
- msgstr "نادیده گرفتن نوشته های بدون رسانه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3960
 
3961
- #: includes/elements/recent-posts-grid-carousel.php:126
3962
- #: includes/elements/recent-posts-land-style.php:127
3963
- #: includes/elements/recent-posts-masonry.php:126
3964
- #: includes/elements/recent-posts-tiles.php:130
3965
- #: includes/elements/recent-posts-timeline.php:153
3966
- msgid "Exclude custom post formats"
3967
- msgstr "نادیده گرفتن فرمت های سفارشی نوشته"
 
 
 
 
 
3968
 
3969
- #: includes/elements/recent-posts-grid-carousel.php:139
3970
- #: includes/elements/recent-posts-land-style.php:140
3971
- #: includes/elements/recent-posts-masonry.php:139
3972
- #: includes/elements/recent-posts-tiles.php:144
3973
- #: includes/elements/recent-posts-timeline.php:166
3974
- msgid "Exclude qoute and link post formats"
3975
- msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
3976
 
3977
- #: includes/elements/recent-posts-grid-carousel.php:156
3978
- #: includes/elements/recent-posts-grid-carousel.php:170
3979
- #: includes/elements/recent-posts-land-style.php:157
3980
- #: includes/elements/recent-posts-land-style.php:171
3981
- #: includes/elements/recent-posts-masonry.php:156
3982
- #: includes/elements/recent-posts-masonry.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3983
  #: includes/elements/recent-posts-tiles.php:162
3984
- #: includes/elements/recent-posts-tiles.php:176
3985
- #: includes/elements/recent-posts-timeline.php:183
3986
- #: includes/elements/recent-posts-timeline.php:197
3987
- msgid "Post IDs separated by comma (eg. 53,34,87,25)"
3988
- msgstr "شناسه نوشته ها که با کاما از هم جدا شده اند. (مثلا 53,34,87,25)."
3989
 
3990
- #: includes/elements/recent-posts-grid-carousel.php:239
3991
- #: includes/elements/recent-posts-land-style.php:240
3992
- #: includes/elements/recent-posts-land-style.php:274
3993
- #: includes/elements/recent-posts-timeline.php:266
3994
- msgid "Image aspect ratio"
3995
- msgstr "نسبت ابعاد تصویر"
3996
 
3997
- #: includes/elements/recent-posts-grid-carousel.php:247
3998
- #: includes/elements/recent-posts-land-style.php:248
3999
- #: includes/elements/recent-posts-land-style.php:282
4000
- #: includes/elements/recent-posts-timeline.php:274
4001
- msgid "Horizontal 4:3"
4002
- msgstr "افقی 4:3"
4003
 
4004
- #: includes/elements/recent-posts-grid-carousel.php:248
4005
- #: includes/elements/recent-posts-land-style.php:249
4006
- #: includes/elements/recent-posts-land-style.php:283
4007
- #: includes/elements/recent-posts-timeline.php:275
4008
- msgid "Horizontal 16:9"
4009
- msgstr "افقی 16:9"
4010
 
4011
- #: includes/elements/recent-posts-grid-carousel.php:249
4012
- #: includes/elements/recent-posts-land-style.php:250
4013
- #: includes/elements/recent-posts-land-style.php:284
4014
- #: includes/elements/recent-posts-timeline.php:276
4015
- msgid "Square 1:1"
4016
- msgstr "مربع 1:1"
4017
 
4018
- #: includes/elements/recent-posts-grid-carousel.php:250
4019
- #: includes/elements/recent-posts-land-style.php:251
4020
- #: includes/elements/recent-posts-land-style.php:285
4021
- #: includes/elements/recent-posts-timeline.php:277
4022
- msgid "Vertical 3:4"
4023
- msgstr "عمودی 3:4"
4024
 
4025
- #: includes/elements/recent-posts-grid-carousel.php:259
4026
- #: includes/elements/recent-posts-land-style.php:260
4027
- #: includes/elements/recent-posts-masonry.php:260
4028
- #: includes/elements/recent-posts-timeline.php:286
4029
- msgid "Display post media (image, video, etc)"
4030
- msgstr "نمایش رسانه های نوشته (تصویر، ویدیو، غیره)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4031
 
4032
- #: includes/elements/recent-posts-grid-carousel.php:273
4033
- #: includes/elements/recent-posts-land-style.php:294
4034
- #: includes/elements/recent-posts-masonry.php:274
4035
- #: includes/elements/recent-posts-timeline.php:300
4036
- msgid "Display post title"
4037
- msgstr "نمایش عنوان پست"
4038
 
4039
- #: includes/elements/recent-posts-grid-carousel.php:286
4040
- #: includes/elements/recent-posts-land-style.php:307
4041
- #: includes/elements/recent-posts-masonry.php:287
4042
- #: includes/elements/recent-posts-timeline.php:313
4043
- msgid "Display post meta"
4044
- msgstr "نمایش متای پست"
4045
 
4046
- #: includes/elements/recent-posts-grid-carousel.php:298
4047
- #: includes/elements/recent-posts-land-style.php:319
4048
- #: includes/elements/recent-posts-masonry.php:299
4049
- #: includes/elements/recent-posts-timeline.php:325
4050
- msgid "Display like button"
4051
- msgstr "نمایش دکمه لایک"
4052
 
4053
- #: includes/elements/recent-posts-grid-carousel.php:299
4054
- #: includes/elements/recent-posts-land-style.php:320
4055
- #: includes/elements/recent-posts-masonry.php:300
4056
- #: includes/elements/recent-posts-timeline.php:326
4057
- #, php-format
4058
- msgid ""
4059
- "Enable it to display %s like button%s on gride template blog. Please note WP "
4060
- "Ulike plugin needs to be activaited to use this option."
4061
  msgstr ""
4062
- "برای نمایش %s دکمه لایک %s در نوشته های بلاگ این گزینه را فعال کنید. لطفا "
4063
- "توجه کنید که افزونه WP Ulike برای عمل کردن این بخش باید فعال باشد."
4064
 
4065
- #: includes/elements/recent-posts-grid-carousel.php:312
4066
- msgid "Content layout"
4067
- msgstr "چیدمان محتوا"
 
4068
 
4069
- #: includes/elements/recent-posts-grid-carousel.php:313
4070
- msgid "Specifies the style of content for each post column."
4071
- msgstr "ظاهر محتوا برای هر ستون از نوشته ها مشخص می کند."
 
 
4072
 
4073
- #: includes/elements/recent-posts-grid-carousel.php:320
4074
- msgid "Full Content"
4075
- msgstr "محتوای کامل"
 
 
4076
 
4077
- #: includes/elements/recent-posts-grid-carousel.php:321
4078
- msgid "Boxed Content"
4079
- msgstr "محتوای جعبه ای"
 
 
4080
 
4081
- #: includes/elements/recent-posts-grid-carousel.php:331
4082
- #: includes/elements/recent-posts-land-style.php:334
4083
- #: includes/elements/recent-posts-masonry.php:314
4084
- #: includes/elements/recent-posts-timeline.php:340
4085
- msgid "Specify summary content in character."
4086
- msgstr "خلاصه نوشته را برحسب کاراکتر مشخص می کند."
4087
 
4088
- #: includes/elements/recent-posts-grid-carousel.php:344
4089
- #: includes/elements/recent-posts-land-style.php:350
4090
- #: includes/elements/recent-posts-masonry.php:327
4091
- #: includes/elements/recent-posts-timeline.php:356
4092
- msgid "Display author or read more"
4093
- msgstr "نمایش نویسنده یا ادامه نوشته"
4094
 
4095
- #: includes/elements/recent-posts-grid-carousel.php:345
4096
- #: includes/elements/recent-posts-land-style.php:351
4097
- #: includes/elements/recent-posts-masonry.php:328
4098
- #: includes/elements/recent-posts-timeline.php:357
4099
- msgid "Specifies whether to show author or read more on each post."
4100
- msgstr "مشخص می کند نویسنده یا بیشتر بخوانید در هر نوشته نشان داده شود یا خیر."
4101
 
4102
- #: includes/elements/recent-posts-grid-carousel.php:352
4103
- #: includes/elements/recent-posts-land-style.php:358
4104
- #: includes/elements/recent-posts-masonry.php:335
4105
- #: includes/elements/recent-posts-timeline.php:364
4106
- msgid "Read More"
4107
- msgstr "بیشتر بخوانید"
4108
 
4109
- #: includes/elements/recent-posts-grid-carousel.php:353
4110
- #: includes/elements/recent-posts-land-style.php:359
4111
- #: includes/elements/recent-posts-masonry.php:336
4112
- #: includes/elements/recent-posts-timeline.php:365
4113
- msgid "Author Name"
4114
- msgstr "نام نویسنده"
4115
 
4116
- #: includes/elements/recent-posts-grid-carousel.php:362
4117
- #: includes/elements/recent-posts-masonry.php:345
4118
- msgid "Number of columns"
4119
- msgstr "تعداد ستون ها"
 
4120
 
4121
- #: includes/elements/recent-posts-grid-carousel.php:380
4122
- #: includes/elements/recent-posts-masonry.php:363
4123
- msgid "Number of columns in tablet size"
4124
- msgstr "تعداد ستون ها در تبلت"
 
4125
 
4126
- #: includes/elements/recent-posts-grid-carousel.php:399
4127
- #: includes/elements/recent-posts-masonry.php:382
4128
- msgid "Number of columns in phone size"
4129
- msgstr "تعداد ستون ها در موبایل"
 
 
4130
 
4131
- #: includes/elements/recent-posts-grid-carousel.php:417
4132
- msgid "Display items in"
4133
- msgstr "نمایش آیتم ها در"
4134
 
4135
- #: includes/elements/recent-posts-grid-carousel.php:436
4136
- msgid "Column space"
4137
- msgstr "فضای بین ستون ها"
4138
 
4139
- #: includes/elements/recent-posts-grid-carousel.php:437
4140
- msgid "Specifies space between carousel columns in pixels."
4141
- msgstr "فضای خالی بین ستون های گردونه را بر حسب پیکسل مشخص می کند."
4142
 
4143
- #: includes/elements/recent-posts-grid-carousel.php:453
4144
- msgid "Navigation type"
4145
- msgstr "نوع ناوبری"
4146
 
4147
- #: includes/elements/recent-posts-grid-carousel.php:461
4148
- msgid "Move per column"
4149
- msgstr "حرکت در هر ستون"
4150
 
4151
- #: includes/elements/recent-posts-grid-carousel.php:462
4152
- msgid "Move per page"
4153
- msgstr "حرکت در هر صفحه"
4154
 
4155
- #: includes/elements/recent-posts-grid-carousel.php:463
4156
- msgid "Smooth scroll"
4157
- msgstr "اسکرول آرام"
4158
 
4159
- #: includes/elements/recent-posts-grid-carousel.php:483
4160
- msgid "Arrows"
4161
- msgstr "فلش ها"
 
 
4162
 
4163
- #: includes/elements/recent-posts-grid-carousel.php:484
4164
- msgid "Bullets"
4165
- msgstr "گلوله ها"
4166
 
4167
- #: includes/elements/recent-posts-grid-carousel.php:496
4168
- msgid "Loop navigation"
4169
- msgstr "ناوبری چرخه ای"
4170
 
4171
- #: includes/elements/recent-posts-grid-carousel.php:511
4172
- msgid "Autoplay carousel"
4173
- msgstr "نمایش خودکار گردونه"
4174
 
4175
- #: includes/elements/recent-posts-grid-carousel.php:527
4176
- msgid "Autoplay delay"
4177
- msgstr "تاخیر شروع خودکار"
4178
 
4179
- #: includes/elements/recent-posts-grid-carousel.php:528
4180
- msgid "Specifies the delay between auto-forwarding in seconds."
4181
- msgstr "تاخیر بین حرکت های رو به جلو را بر حسب ثانیه مشخص می کند."
4182
 
4183
- #: includes/elements/recent-posts-grid-carousel.php:843
4184
- msgid "Action handler not found."
4185
- msgstr "اقدام کننده عملیات یافت نشد."
4186
 
4187
- #: includes/elements/recent-posts-grid-carousel.php:845
4188
- msgid "Authorization failed."
4189
- msgstr "احراز هویت با خطا مواجه شد."
4190
 
4191
- #: includes/elements/recent-posts-land-style.php:24
4192
- msgid "[Phlox] Land Style Recent Posts"
4193
- msgstr "[فلوکس] مطالب اخیر سبک زمین"
4194
 
4195
- #: includes/elements/recent-posts-land-style.php:27
4196
- msgid "It adds recent posts in land style."
4197
- msgstr "مطالب اخیر به سبک زمین را اضافه می کند."
4198
 
4199
- #: includes/elements/recent-posts-masonry.php:24
4200
- msgid "[Phlox] Masonry Recent Posts"
4201
- msgstr "[فلوکس] مطالب اخیر ساختمانی"
4202
 
4203
- #: includes/elements/recent-posts-masonry.php:27
4204
- msgid "It adds recent posts in masonry style."
4205
- msgstr "مطالب اخیر به سبک ساختمانی را اضافه می کند."
4206
 
4207
- #: includes/elements/recent-posts-tiles.php:24
4208
- msgid "[Phlox] Tiles Recent Posts"
4209
- msgstr "[فلوکس] مطالب اخیر کاشی وار"
4210
 
4211
- #: includes/elements/recent-posts-tiles.php:27
4212
- msgid "It adds recent posts in tiles style."
4213
- msgstr "مطالب اخیر را به سبک کاشی اضافه می کند."
 
 
 
4214
 
4215
- #: includes/elements/recent-posts-tiles.php:247
4216
- msgid "Post tile style"
4217
- msgstr "ظاهر کاشی مطالب"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4218
 
4219
- #: includes/elements/recent-posts-tiles.php:261
4220
- msgid "Standard"
4221
- msgstr "استاندارد"
4222
 
4223
- #: includes/elements/recent-posts-timeline.php:24
4224
- msgid "[Phlox] Timeline Recent Posts"
4225
- msgstr "[فلوکس] خط زمانی مطالب اخیر"
4226
 
4227
- #: includes/elements/recent-posts-timeline.php:27
4228
- msgid "It adds recent posts in timeline style."
4229
- msgstr "مطالب اخیر به سبک خط زمانی را اضافه می کند."
 
4230
 
4231
- #: includes/elements/recent-posts-timeline.php:66
4232
- msgid "Timeline aignment"
4233
- msgstr "تراز خط زمان"
4234
 
4235
- #: includes/elements/recent-posts-timeline.php:67
4236
- msgid "Specifies the alignment of timeline element."
4237
- msgstr "تراز المان خط زمانی را مشخص می کند."
4238
 
4239
- #: includes/elements/recent-posts-widget.php:24
4240
- msgid "[Phlox] Recent Posts Widget"
4241
- msgstr "[فلوکس] ابزارک مطالب اخیر"
4242
 
4243
- #: includes/elements/recent-posts-widget.php:27
4244
- msgid "Shows recent posts with thumbnail."
4245
- msgstr "مطالب اخیر به همراه تصویر بندانگشتی را نشان می دهد."
4246
 
4247
- #: includes/elements/recent-posts-widget.php:186
4248
- msgid "Categorie"
4249
- msgstr "دسته"
4250
 
4251
- #: includes/elements/recent-posts-widget.php:187
4252
- msgid "Specify a category that you want."
4253
- msgstr "دسته ی مورد نظر خود را مشخص کنید."
4254
 
4255
- #: includes/elements/sample-element.php:12
4256
- msgid "Auxin Callout "
4257
- msgstr "اکسین فراخوان"
4258
 
4259
- #: includes/elements/search.php:9
4260
- msgid "[Phlox] Search"
4261
- msgstr "[فلوکس] جستجو"
4262
 
4263
- #: includes/elements/search.php:12
4264
- msgid "Fancy search field"
4265
- msgstr "فیلد جستجوی فانتزی"
4266
 
4267
- #: includes/elements/search.php:37
4268
- msgid "Search title, leave it empty if you don`t need title."
4269
- msgstr "عنوان جستجو، اگر به عناون نیازی ندارید این بخش را خالی بگذارید."
4270
 
4271
- #: includes/elements/socials-list.php:10
4272
- msgid "[Phlox] Socials"
4273
- msgstr "[فلوکس] شبکه های اجتماعی"
4274
 
4275
- #: includes/elements/socials-list.php:13
4276
- msgid ""
4277
- "It shows the website socials icons which you can configure it by the "
4278
- "customizer."
4279
- msgstr ""
4280
- "شکلک های شبکه های اجتماعی را نشان می دهد که می توانید در شخصی ساز آن ها را "
4281
- "تنظیم کنید."
4282
 
4283
- #: includes/elements/socials-list.php:38
4284
- msgid "Socials title, leave it empty if you don`t need title."
4285
- msgstr ""
4286
- "عنوان شبکه های اجتماعی، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
4287
 
4288
- #: includes/elements/socials-list.php:52
4289
- msgid "Size of social icons"
4290
- msgstr "اندازه شکلک های شبکه های اجتماعی"
4291
 
4292
- #: includes/elements/socials-list.php:61
4293
- msgid "Extra large"
4294
- msgstr "خیلی بزرگ"
4295
 
4296
- #: includes/elements/socials-list.php:72
4297
- msgid "Directon of socials list"
4298
- msgstr "جهت لیست شبکه های اجتماعی"
4299
 
4300
- #: includes/elements/socials-list.php:78
4301
- msgid "Horizontal"
4302
- msgstr "افقی"
4303
 
4304
- #: includes/elements/socials-list.php:79
4305
- msgid "Vertical"
4306
- msgstr "عمودی"
4307
 
4308
- #: includes/elements/tabs.php:49
4309
- msgid "Choose between bordered style and no border."
4310
- msgstr "بین ظاهر کادر بندی شده و بدون کادر یکی را انتخاب کنید."
4311
 
4312
- #: includes/elements/tabs.php:56
4313
- msgid "Bordered"
4314
- msgstr "کادربندی شده"
4315
 
4316
- #: includes/elements/tabs.php:57
4317
- msgid "No border"
4318
- msgstr "بدون کادر"
4319
 
4320
- #: includes/elements/tabs.php:66
4321
- msgid "Tab label"
4322
- msgstr "برچسب زبانه"
4323
 
4324
- #: includes/elements/tabs.php:67
4325
- msgid "Enter your tab item label."
4326
- msgstr "برچسب آیتم زبانه را وارد کنید."
4327
 
4328
- #: includes/elements/tabs.php:69 includes/elements/tabs.php:87
4329
- msgid "Tabs"
4330
- msgstr "زبانه ها"
4331
 
4332
- #: includes/elements/tabs.php:70
4333
- msgid "Tabs Section"
4334
- msgstr "بخش زبانه ها"
4335
 
4336
- #: includes/elements/tabs.php:84
4337
- msgid "Enter your tab item content."
4338
- msgstr "محتوای آیتم زبانه را وارد کنید."
4339
 
4340
- #: includes/elements/tabs.php:86
4341
- msgid "Tabs section"
4342
- msgstr "بخش زبانه ها"
4343
 
4344
- #: includes/elements/text.php:10
4345
- msgid "[Phlox] Text"
4346
- msgstr "[فلوکس] متن"
4347
 
4348
- #: includes/elements/text.php:13
4349
- msgid "Simple text block."
4350
- msgstr "بلوک متنی سادذه."
4351
 
4352
- #: includes/elements/text.php:39
4353
- msgid "Text title, leave it empty if you don`t need title."
4354
- msgstr "عناون متن، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
4355
 
4356
- #: includes/elements/text.php:54
4357
- msgid "Title link"
4358
- msgstr "لینک عنوان"
4359
 
4360
- #: includes/elements/text.php:76
4361
- msgid "Theme Default"
4362
- msgstr "پیشفرض پوسته"
4363
 
4364
- #: includes/elements/text.php:101
4365
- msgid "Text color scheme"
4366
- msgstr "شمای رنگ متن"
4367
 
4368
- #: includes/elements/text.php:107
4369
- msgid "Inherit"
4370
- msgstr "ارث بری"
4371
 
4372
- #: includes/elements/text.php:120
4373
- msgid "Wrapper style"
4374
- msgstr "ظاهر Wrapper"
4375
 
4376
- #: includes/elements/text.php:126
4377
- msgid "Simple"
4378
- msgstr "ساده"
4379
 
4380
- #: includes/elements/text.php:127
4381
- msgid "Outlined"
4382
- msgstr "با خط بیرونی"
4383
 
4384
- #: includes/elements/text.php:128
4385
- msgid "Boxed"
4386
- msgstr "جعبه ای"
4387
 
4388
- #: includes/elements/text.php:139
4389
- msgid "Block background color"
4390
- msgstr "رنگ پس زمینه بلوک"
4391
 
4392
- #: includes/elements/text.php:140
4393
- msgid "Choose a background color for this block."
4394
- msgstr "رنگ پس زمینه ای را برای این بلوک انتخاب کنید."
4395
 
4396
- #: includes/elements/text.php:155
4397
- msgid "Please choose an icon from avaialable icons."
4398
- msgstr "لطفا یکی از شکلک های موجود را انتخاب کنید."
4399
 
4400
- #: includes/elements/text.php:169
4401
- msgid "Icon color"
4402
- msgstr "رنگ شکلک"
4403
 
4404
- #: includes/elements/text.php:170
4405
- msgid "Choose a color for icon."
4406
- msgstr "رنگی برای شکلک انتخاب کنید."
4407
 
4408
- #: includes/elements/text.php:184
4409
- msgid "Icon size"
4410
- msgstr "اندازه شکلک"
4411
 
4412
- #: includes/elements/text.php:193
4413
- msgid "X-Large"
4414
- msgstr "خیلی بزرگ"
4415
 
4416
- #: includes/elements/text.php:204
4417
- msgid "Icon background shape"
4418
- msgstr "شکل پس زمینه شکلک"
4419
 
4420
- #: includes/elements/text.php:211
4421
- msgid "Semi-circle"
4422
- msgstr "نیم دایره"
4423
 
4424
- #: includes/elements/text.php:212
4425
- msgid "Round Rectangle"
4426
- msgstr "مستطیل دورگرد"
4427
 
4428
- #: includes/elements/text.php:213
4429
- msgid "Rectangle"
4430
- msgstr "مستطیل"
4431
 
4432
- #: includes/elements/text.php:224
4433
- msgid "Icon background color"
4434
- msgstr "رنگ پس زمینه شکلک"
4435
 
4436
- #: includes/elements/text.php:225
4437
- msgid "Choose a color for background of icon."
4438
- msgstr "رنگی برای پس زمینه شکلک انتخاب کنید."
4439
 
4440
- #: includes/elements/text.php:239
4441
- msgid "Icon outline color"
4442
- msgstr "رنگ خط بیرونی شکلک"
4443
 
4444
- #: includes/elements/text.php:240
4445
- msgid "Choose a color for the border around the icon."
4446
- msgstr "رنگی را برای کادر دور شکلک انتخاب کنید."
4447
 
4448
- #: includes/elements/text.php:269
4449
- msgid "Image or icon position"
4450
- msgstr "موقعیت تصویر یا شکلک"
4451
 
4452
- #: includes/elements/text.php:298
4453
- msgid "Enter a text as a text content."
4454
- msgstr "متنی را به عنوان محتوا وارد کنید."
4455
 
4456
- #: includes/elements/video.php:10
4457
- msgid "[Phlox] Video"
4458
- msgstr "[فلوکس] ویدیو"
4459
 
4460
- #: includes/elements/video.php:13
4461
- msgid "It adds a video player element."
4462
- msgstr "یک پخش کننده ویدیو اضافه می کند."
4463
 
4464
- #: includes/elements/video.php:34
4465
- msgid "Video title, leave it empty if you don`t need title."
4466
- msgstr "عنوان ویدیو، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
4467
 
4468
- #: includes/elements/video.php:49
4469
- msgid "Whether to start the video automatically or not."
4470
- msgstr "ویدیو به طور خودکار پخش شود یا خیر."
4471
 
4472
- #: includes/elements/video.php:62
4473
- msgid "Repeat video"
4474
- msgstr "تکرار ویدیو"
4475
 
4476
- #: includes/elements/video.php:63
4477
- msgid "Play video again when it ends."
4478
- msgstr "پس از اتمام ویدیو دوباره آن را پخش می کند."
4479
 
4480
- #: includes/elements/video.php:77
4481
- msgid "Width size of video in pixel."
4482
- msgstr "اندازه عرض ویدیو برحسب پیکسل."
4483
 
4484
- #: includes/elements/video.php:92
4485
- msgid "Height size of video in pixel."
4486
- msgstr "ارتفاع ویدیو بر حسب پیکسل"
4487
 
4488
- #: includes/elements/video.php:107
4489
- msgid "Please upload the video file."
4490
- msgstr "لطفا فایل ویدیو را بارگذاری کنید."
4491
 
4492
- #: includes/elements/video.php:121
4493
- msgid "Video link"
4494
- msgstr "پیوند ویدیو"
4495
 
4496
- #: includes/elements/video.php:122
4497
- msgid "Youtube, Vimeo or any video embed link."
4498
- msgstr "کد جاگذاری یوتیوب، ویمِو یا هر سرویس دیگری."
4499
 
4500
- #: includes/elements/video.php:136
4501
- msgid "Video poster"
4502
- msgstr "پوستر ویدیو"
4503
 
4504
- #: includes/elements/video.php:137
4505
- msgid "An image that represents the video content."
4506
- msgstr "تصویری که محتوای ویدیو را ارائه می کند."
4507
 
4508
- #: includes/elements/video.php:151
4509
- msgid "Player skin "
4510
- msgstr "نمای پخش کننده"
4511
 
4512
- #: includes/elements/video.php:152
4513
- msgid "Specifies skin for the player."
4514
- msgstr "نمای پخش کننده را مشخص می کند."
4515
 
4516
- #: includes/general-hooks.php:97
4517
- msgid "Auxin Icons"
4518
- msgstr "اکسین شکلک ها"
4519
 
4520
- #: includes/general-hooks.php:102
4521
- msgid "Icon library"
4522
- msgstr "کتابخانه شکلک ها"
4523
 
4524
- #: includes/general-hooks.php:104
4525
- msgid "Font Awesome"
4526
- msgstr "Font Awesome"
4527
 
4528
- #: includes/general-hooks.php:105
4529
- msgid "Open Iconic"
4530
- msgstr "Open Iconic"
4531
 
4532
- #: includes/general-hooks.php:106
4533
- msgid "Typicons"
4534
- msgstr "Typicons"
4535
 
4536
- #: includes/general-hooks.php:107
4537
- msgid "Entypo"
4538
- msgstr "Entypo"
4539
 
4540
- #: includes/general-hooks.php:108
4541
- msgid "Linecons"
4542
- msgstr "Linecons"
4543
 
4544
- #: includes/general-hooks.php:109
4545
- msgid "Auxin"
4546
- msgstr "اکسین"
4547
 
4548
- #: includes/general-hooks.php:113
4549
- msgid "Select icon library."
4550
- msgstr "کتابخانه شکلک را انتخاب کنید."
 
 
 
 
 
4551
 
4552
- #: includes/general-hooks.php:216
4553
- msgid "Custom color"
4554
- msgstr "رنگ سفارشی"
4555
 
4556
- #: includes/general-hooks.php:218
4557
- msgid "Select custom icon color."
4558
- msgstr "رنگ دلخواه شکلک را انتخاب کنید."
4559
 
4560
- #: includes/general-hooks.php:226
4561
- msgid "Background shape"
4562
- msgstr "شکل پس زمینه"
4563
 
4564
- #: includes/general-hooks.php:235
4565
- msgid "Outline Rounded"
4566
- msgstr "گرد با خط بیرونی"
4567
 
4568
- #: includes/general-hooks.php:237
4569
- msgid "Select background shape and style for icon."
4570
- msgstr "ظاهر و شکل پس زمینه شکلک انتخاب کنید."
4571
 
4572
- #: includes/general-hooks.php:242
4573
- msgid "Custom background color"
4574
- msgstr "رنگ پس زمینه دلخواه"
4575
 
4576
- #: includes/general-hooks.php:244
4577
- msgid "Select custom icon background color."
4578
- msgstr "رنگ دلخواه پس زمینه شکلک را انتخاب کنید."
4579
 
4580
- #: includes/general-hooks.php:260
4581
- msgid "Select icon alignment."
4582
- msgstr "تراز شکلک را انتخاب کنید."
4583
 
4584
- #: includes/general-hooks.php:276 includes/general-hooks.php:277
4585
- msgid "Arrow"
4586
- msgstr "فلش"
4587
 
4588
- #: includes/general-hooks.php:278
4589
- msgid "Back"
4590
- msgstr "برگشت"
4591
 
4592
- #: includes/general-hooks.php:334
4593
- msgid "Custom JS Code"
4594
- msgstr "کد جاوااسکریپت سفارشی"
4595
 
4596
- #: includes/general-hooks.php:335
4597
- msgid "Your Custom Javascript"
4598
- msgstr "جاوااسکریپت دلخواه شما"
4599
 
4600
- #: includes/general-hooks.php:339
4601
- msgid "Custom Javascript"
4602
- msgstr "جاوااسکریپت سفارشی"
4603
 
4604
- #: includes/general-hooks.php:340
4605
- #, php-format
4606
- msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
4607
- msgstr ""
4608
- "کدهای جاوااسکریپت دلخواه خود را می توانید در این قسمت وارد کنید. از تگ %s "
4609
- "استفاده نکنید %s."
4610
 
4611
- #: includes/general-hooks.php:341
4612
- msgid ""
4613
- "In order to save your custom javascript code, you are expected to execute "
4614
- "the code prior for saving."
4615
- msgstr ""
4616
- "انتظار می رود قبل از ذخیره کد جاوااسکریپت، از درستی آن اطمینان پیدا کنید."
4617
 
4618
- #: includes/general-hooks.php:347
4619
- msgid "Execute"
4620
- msgstr "اجرا"
4621
 
4622
- #: includes/general-hooks.php:358 includes/general-hooks.php:359
4623
- msgid "Tracking & SEO"
4624
- msgstr "ردیابی و سئو"
4625
 
4626
- #: includes/general-hooks.php:364
4627
- msgid "Built in SEO"
4628
- msgstr "سئوی داخلی"
4629
 
4630
- #: includes/general-hooks.php:365
4631
- msgid ""
4632
- "In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in One "
4633
- "SEO Pack\" you can disable built-in SEO for maximum compatibility."
4634
- msgstr ""
4635
- "در مواردی که از افزونه های \"WordPress SEO by Yoast\" یا \"All in One SEO "
4636
- "Pack\" استفاده می کنید، برای حفظ بیشترین یکپارچگی، سئوی داخلی را غیرفعال "
4637
- "کنید."
4638
 
4639
- #: includes/general-hooks.php:375
4640
- msgid "Google analytics code"
4641
- msgstr "کد آنالیز گوگل"
4642
 
4643
- #: includes/general-hooks.php:376
4644
- #, php-format
4645
- msgid "You can add your Google analytics code here.%s DO NOT use %s tag."
4646
- msgstr ""
4647
- "کد آنالیز گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
4648
- "نکنید %s."
4649
 
4650
- #: includes/general-hooks.php:388
4651
- msgid "Google marketing code"
4652
- msgstr "کد بازاریابی گوگل"
4653
 
4654
- #: includes/general-hooks.php:389
4655
- #, php-format
4656
- msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
4657
- msgstr ""
4658
- "کد بازاریابی گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
4659
- "نکنید %s."
4660
 
4661
- #: includes/general-hooks.php:410
4662
- msgid "Login Page"
4663
- msgstr "صفحه ورود"
4664
 
4665
- #: includes/general-hooks.php:411 includes/general-hooks.php:413
4666
- msgid "Preview login page"
4667
- msgstr "پیش نمایش صفحه ورود"
4668
 
4669
- #: includes/general-hooks.php:420
4670
- msgid "Login Skin"
4671
- msgstr "نمای صفحه ورود"
4672
 
4673
- #: includes/general-hooks.php:421
4674
- msgid "Specifies a skin for login page of your website."
4675
- msgstr "نمای صفحه ورود را در سایت شما مشخص می کند."
4676
 
4677
- #: includes/general-hooks.php:431
4678
- msgid "Clean white"
4679
- msgstr "سفید تمیز"
4680
 
4681
- #: includes/general-hooks.php:435
4682
- msgid "Simple white"
4683
- msgstr "سفید ساده"
4684
 
4685
- #: includes/general-hooks.php:439
4686
- msgid "Simple gray"
4687
- msgstr "خاکستری ساده"
4688
 
4689
- #: includes/general-hooks.php:449
4690
- msgid "Login message"
4691
- msgstr "پیام ورود"
4692
 
4693
- #: includes/general-hooks.php:450
4694
- msgid "Enter a text to display above of login form."
4695
- msgstr "متنی را برای نمایش در بالای فرم ورود وارد کنید."
4696
 
4697
- #: includes/general-hooks.php:462
4698
- msgid "Login Page Logo"
4699
- msgstr "لوگوی صفحه ورود"
4700
 
4701
- #: includes/general-hooks.php:463
4702
- msgid ""
4703
- "Specifies a logo to display on login page.(width of logo image could be up "
4704
- "to 320px)"
4705
- msgstr ""
4706
- "لوگویی را برای نمایش در صفحه ورود مشخص می کند.(عرض لوگو می تواند تا 320 "
4707
- "پیکسل باشد)"
4708
 
4709
- #: includes/general-hooks.php:474
4710
- msgid "Logo Width"
4711
- msgstr "عرض لوگو"
4712
 
4713
- #: includes/general-hooks.php:475
4714
- msgid "Specifies width of logo image in pixel."
4715
- msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
4716
 
4717
- #: includes/general-hooks.php:486
4718
- msgid "Logo Height"
4719
- msgstr "ارتفاع لوگو"
4720
 
4721
- #: includes/general-hooks.php:487
4722
- msgid "Specifies height of logo image in pixel."
4723
- msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
4724
 
4725
- #: includes/general-hooks.php:499
4726
- msgid "Enable Background"
4727
- msgstr "فعالسازی پس زمینه"
4728
 
4729
- #: includes/general-hooks.php:500
4730
- msgid "Enable it to display custom background on login page."
4731
- msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
4732
 
4733
- #: includes/general-hooks.php:511
4734
- msgid "Background Color"
4735
- msgstr "رنگ پس زمینه"
4736
 
4737
- #: includes/general-hooks.php:512
4738
- msgid "Specifies background color of website."
4739
- msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
4740
 
4741
- #: includes/general-hooks.php:527
4742
- msgid "Background Image"
4743
- msgstr "تصویر پس زمینه"
4744
 
4745
- #: includes/general-hooks.php:528
4746
- msgid "You can upload custom image for background of login page"
4747
- msgstr "می توانید تصویر دلخواهی را به عنوان پس زمینه صفحه ورود بارگذاری کنید."
4748
 
4749
- #: includes/general-hooks.php:543
4750
- msgid "Background Size"
4751
- msgstr "اندازه پس زمینه"
4752
 
4753
- #: includes/general-hooks.php:544
4754
- msgid "Specifies background size on login page."
4755
- msgstr "اندازه تصویر پس زمینه در صفحه ورود را مشخص می کند."
4756
 
4757
- #: includes/general-hooks.php:554
4758
- msgid "Contain"
4759
- msgstr "دربرگیرنده"
4760
 
4761
- #: includes/general-hooks.php:558
4762
- msgid "Cover"
4763
- msgstr "پوشاننده"
4764
 
4765
- #: includes/general-hooks.php:573
4766
- msgid "Background Pattern"
4767
- msgstr "الگوی پس زمینه"
4768
 
4769
- #: includes/general-hooks.php:574
4770
- #, php-format
4771
- msgid ""
4772
- "You can select one of these patterns as login background image. %s Some of "
4773
- "these can be used as a pattern over your background image."
4774
- msgstr ""
4775
- "می توانید یکی از این الگوها را به عنوان تصویر پس زمینه انتخاب کنید. %s بعضی "
4776
- "از این ها می توانند به عنوان الگو بر روی تصویر پس زمینه شما استفاده شوند."
4777
 
4778
- #: includes/general-hooks.php:590
4779
- msgid "Background Repeat"
4780
- msgstr "تکرار پس زمینه"
4781
 
4782
- #: includes/general-hooks.php:591
4783
- msgid "Specifies how background image repeats."
4784
- msgstr "نحوه تکرار تصویر پس زمینه را مشخص می کند."
4785
 
4786
- #: includes/general-hooks.php:596
4787
- msgid "No repeat"
4788
- msgstr "بدون تکرار"
4789
 
4790
- #: includes/general-hooks.php:600
4791
- msgid "Repeat horizontally and vertically"
4792
- msgstr "تکرار افقی و عمودی"
4793
 
4794
- #: includes/general-hooks.php:604
4795
- msgid "Repeat horizontally"
4796
- msgstr "تکرار افقی"
4797
 
4798
- #: includes/general-hooks.php:608
4799
- msgid "Repeat vertically"
4800
- msgstr "تکرار عمودی"
4801
 
4802
- #: includes/general-hooks.php:624
4803
- msgid "Background Position"
4804
- msgstr "موقعیت پس زمینه"
4805
 
4806
- #: includes/general-hooks.php:625
4807
- msgid "Specifies background image position."
4808
- msgstr "موقعیت تصویر پس زمینه را مشخص می کند."
4809
 
4810
- #: includes/general-hooks.php:630
4811
- msgid "Left top"
4812
- msgstr "چپ بالا"
4813
 
4814
- #: includes/general-hooks.php:634
4815
- msgid "Center top"
4816
- msgstr "وسط بالا"
4817
 
4818
- #: includes/general-hooks.php:638
4819
- msgid "Right top"
4820
- msgstr "راست بالا"
4821
 
4822
- #: includes/general-hooks.php:643
4823
- msgid "Left center"
4824
- msgstr "چپ وسط"
4825
 
4826
- #: includes/general-hooks.php:647
4827
- msgid "Center center"
4828
- msgstr "وسط وسط"
4829
 
4830
- #: includes/general-hooks.php:651
4831
- msgid "Right center"
4832
- msgstr "راست وسط"
4833
 
4834
- #: includes/general-hooks.php:656
4835
- msgid "Left bottom"
4836
- msgstr "چپ پایین"
4837
 
4838
- #: includes/general-hooks.php:660
4839
- msgid "Center bottom"
4840
- msgstr "وسط پایین"
4841
 
4842
- #: includes/general-hooks.php:664
4843
- msgid "Right bottom"
4844
- msgstr "راست پایین"
4845
 
4846
- #: includes/general-hooks.php:680
4847
- msgid "Background Attachment"
4848
- msgstr "پیوست پس زمینه"
4849
 
4850
- #: includes/general-hooks.php:681
4851
- msgid ""
4852
- "Specifies whether the background is fixed or scrollable as user scrolls the "
4853
- "page."
4854
- msgstr ""
4855
- "مشخص می کند پس زمینه هنگام اسکرول کردن صفحه توسط کاربر ثابت باشد یا اسکرول "
4856
- "شود."
4857
 
4858
- #: includes/general-hooks.php:687
4859
- msgid "Scroll"
4860
- msgstr "اسکرول"
4861
 
4862
- #: includes/general-hooks.php:691
4863
- msgid "Fixed"
4864
- msgstr "ثابت"
4865
 
4866
- #: includes/general-hooks.php:708
4867
- msgid "Custom CSS class name"
4868
- msgstr "نام کلاس دلخواه CSS"
4869
 
4870
- #: includes/general-hooks.php:709
4871
- msgid ""
4872
- "In this field you can define custom CSS class name for login page.\n"
4873
- " This class name will be added to body classes in "
4874
- "login page and is useful for advance custom styling purposes."
4875
- msgstr ""
4876
- "در این فیلد می توانید نام کلاس دلخواه CSS را برای صفحه ورود تعریف کنید.\n"
4877
- " این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
4878
- "شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
4879
 
4880
- #: public/templates/vcomposer/auxin_vc_extendes.php:15
4881
- msgid "Image Gallery"
4882
- msgstr "گالری تصاویر"
4883
 
4884
- #: public/templates/vcomposer/auxin_vc_extendes.php:19
4885
- msgid "Auxin image gallery"
4886
- msgstr "اکسین گالری تصاویر"
4887
 
4888
- #: public/templates/vcomposer/auxin_vc_extendes.php:29
4889
- msgid "Gallery type"
4890
- msgstr "نوع گالری"
4891
 
4892
- #: public/templates/vcomposer/auxin_vc_extendes.php:33
4893
- msgid "Packery"
4894
- msgstr "Packery"
4895
 
4896
- #: public/templates/vcomposer/auxin_vc_extendes.php:34
4897
- msgid "Justified"
4898
- msgstr "تعدیل شده"
4899
 
4900
- #: public/templates/vcomposer/auxin_vc_extendes.php:38
4901
- msgid "Select gallery type."
4902
- msgstr "نوع گالری را انتخاب کنید."
4903
 
4904
- #: public/templates/vcomposer/auxin_vc_extendes.php:45
4905
- msgid "Select images from media library."
4906
- msgstr "تصاویر را از کتابخانه رسانه ها انتخاب کنید."
4907
 
4908
- #: public/templates/vcomposer/auxin_vc_extendes.php:52
4909
- msgid ""
4910
- "Enter image size. Example: thumbnail, medium, large, full or other sizes "
4911
- "defined by current theme. Alternatively enter image size in pixels: 200x100 "
4912
- "(Width x Height). Leave empty to use \"thumbnail\" size."
4913
- msgstr ""
4914
- "اندازه تصویر را وارد کنید. مثال: بندانگشتی، متوسط، بزرگ، کامل یا اندازه های "
4915
- "دیگری که توسط پوسته جاری تعریف شده اند. به عنوان جایگزین می توانید اندازه "
4916
- "تصاویر بر حسب پیکسل را وارد کنید: 200x100 (200 عرض و 100 ارتفاع). برای "
4917
- "استفاده از بندانگشتی این قسمت را خالی بگذارید."
4918
 
4919
- #: public/templates/vcomposer/auxin_vc_extendes.php:60
4920
- msgid "On click action"
4921
- msgstr "عملیات هنگام کلیک"
4922
 
4923
- #: public/templates/vcomposer/auxin_vc_extendes.php:64
4924
- msgid "Link to large image"
4925
- msgstr "پیوند به تصویر بزرگ"
4926
 
4927
- #: public/templates/vcomposer/auxin_vc_extendes.php:65
4928
- msgid "Open Lightbox"
4929
- msgstr "بازشدن لایت باکس"
4930
 
4931
- #: public/templates/vcomposer/auxin_vc_extendes.php:66
4932
- msgid "Open custom link"
4933
- msgstr "بازکردن پیوند دلخواه"
4934
 
4935
- #: public/templates/vcomposer/auxin_vc_extendes.php:68
4936
- msgid "Select action for click action."
4937
- msgstr "عملیاتی را برای اجرا در هنگام کلیک انتخاب کنید."
4938
 
4939
- #: public/templates/vcomposer/auxin_vc_extendes.php:75
4940
- msgid ""
4941
- "Style particular content element differently - add a class name and refer to "
4942
- "it in custom CSS."
4943
- msgstr ""
4944
- "ظاهردهی یک المان خاص به طور جداگانه - یک نام کلاس اضافه کرده و در CSS سفارشی "
4945
- "به آن ارجاع دهید."
4946
 
4947
- #: public/templates/vcomposer/auxin_vc_extendes.php:79
4948
- msgid "CSS box"
4949
- msgstr "جعبه CSS"
4950
 
4951
- #: public/templates/vcomposer/auxin_vc_extendes.php:81
4952
- msgid "Design Options"
4953
- msgstr "تنظیمات طراحی"
4954
 
4955
- #. Plugin Name of the plugin/theme
4956
- msgid "Auxin Essential Elements"
4957
- msgstr "المان های ضروری اکسین"
4958
 
4959
- #. Plugin URI of the plugin/theme
4960
- msgid "https://wordpress.org/plugins/auxin-elements/"
4961
- msgstr "https://wordpress.org/plugins/auxin-elements/"
4962
 
4963
- #. Description of the plugin/theme
4964
- msgid ""
4965
- "Powerful and comprehensive plugin that extends the functionality of Phlox "
4966
- "theme by adding new shortcodes, widgets and options"
4967
- msgstr ""
4968
- "افزونه ای قدرتمند و جامع که کارایی پوسته فلوکس را با استفاده از کدهای کوتاه، "
4969
- "ابزارک ها و تنظیمات افزایش می دهد."
4970
 
4971
- #. Author of the plugin/theme
4972
- msgid "averta"
4973
- msgstr "اورتا"
4974
 
4975
- #. Author URI of the plugin/theme
4976
- msgid "http://averta.net"
4977
- msgstr "http://averta.net"
 
 
1
  msgid ""
2
  msgstr ""
 
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
+ "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2020-08-31 10:26:18+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: \n"
9
+ "Language: fa_IR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=1; plural=0;\n"
14
  "X-Generator: Poedit 1.8.4\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-WPHeader: auxin-elements.php\n"
18
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
 
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
37
  msgid "An error occurred. Feedback could not be delivered, please try again."
38
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
39
 
40
+ #: admin/includes/admin-ajax.php:61 admin/includes/admin-ajax.php:182
41
+ #: admin/includes/admin-ajax.php:241 admin/includes/admin-ajax.php:276
42
+ #: admin/includes/admin-ajax.php:294 admin/includes/admin-ajax.php:335
43
+ msgid "Token Error."
44
+ msgstr ""
45
 
46
+ #: admin/includes/admin-ajax.php:65
47
+ msgid "It's Done."
 
 
48
  msgstr ""
 
 
49
 
50
+ #: admin/includes/admin-ajax.php:68
51
+ msgid "An error occurred."
52
+ msgstr ""
53
 
54
+ #: admin/includes/admin-ajax.php:185
55
+ msgid "It's OK."
56
+ msgstr ""
57
 
58
+ #: admin/includes/admin-ajax.php:198
59
+ #: includes/classes/class-auxin-welcome.php:1139
60
+ #: includes/classes/class-auxin-welcome.php:1255
61
+ msgid "Security Token Error!"
62
+ msgstr ""
63
+
64
+ #: admin/includes/admin-ajax.php:205
65
+ msgid "License Activation"
66
+ msgstr ""
67
+
68
+ #: admin/includes/admin-ajax.php:206
69
  msgid ""
70
+ "Please activate your license to get automatic updates, premium support, and "
71
+ "unlimited access to the template library and demo importer."
72
  msgstr ""
 
 
73
 
74
+ #: admin/includes/admin-ajax.php:209
75
+ #, fuzzy
76
+ msgid "E-mail address"
77
+ msgstr "آدرس ایمیل جعبه تماس"
78
 
79
+ #: admin/includes/admin-ajax.php:214
80
+ msgid "Purchase code"
81
+ msgstr ""
82
 
83
+ #: admin/includes/admin-ajax.php:222
84
+ msgid "Activate"
85
+ msgstr ""
 
86
 
87
+ #: admin/includes/admin-ajax.php:242 admin/includes/admin-ajax.php:257
88
+ #: includes/classes/class-auxin-demo-importer.php:190
89
+ msgid "Retry"
90
+ msgstr ""
91
 
92
+ #: admin/includes/admin-ajax.php:253
93
+ #: includes/classes/class-auxin-demo-importer.php:114
94
+ #: includes/classes/class-auxin-demo-importer.php:157
95
+ #: includes/classes/class-auxin-demo-importer.php:192
96
+ #: includes/classes/class-auxin-welcome.php:1234
97
+ #: includes/classes/class-auxin-welcome.php:1269
98
+ #: includes/classes/class-auxin-welcome.php:1633
99
+ msgid "Close"
100
+ msgstr ""
101
 
102
+ #: admin/includes/admin-ajax.php:310
103
+ msgid "No data found!"
104
+ msgstr ""
105
+
106
+ #: admin/includes/admin-ajax.php:340
107
+ #, fuzzy
108
+ msgid "Please upload a valid file."
109
+ msgstr "لطفا فایل ویدیو را بارگذاری کنید."
110
+
111
+ #: admin/includes/admin-ajax.php:354
112
+ msgid "Invalid or Empty Data."
113
+ msgstr ""
114
+
115
+ #: admin/includes/admin-ajax.php:391
116
+ msgid "Successfully Imported."
117
+ msgstr ""
118
 
119
+ #: admin/includes/admin-hooks.php:52
120
+ #: admin/includes/classes/class-auxin-notices.php:222
121
+ msgid "Authorization failed. Please refresh the page and try again."
122
+ msgstr ""
123
+
124
+ #: admin/includes/admin-hooks.php:78
125
+ msgid "Phlox RTL Fonts"
126
+ msgstr ""
127
+
128
+ #: admin/includes/admin-hooks.php:104
129
+ msgid "Subtitle for Title Bar"
130
+ msgstr ""
131
+
132
+ #: admin/includes/admin-hooks.php:105
133
+ #, fuzzy
134
  msgid ""
135
+ "Second Title for title bar (optional). Note: You have to enable \"Display "
136
+ "Title Bar Section\" option in order to display the subtitle."
137
  msgstr ""
138
  "عنوان دوم (دلخواه). نکته: شما باید گزینه \"نمایش بخش نوار عنوان\" را فعال "
139
  "کرده باشید تا زیرعنوان نمایش داده شود."
140
 
141
+ #: admin/includes/admin-hooks.php:118
142
+ #, fuzzy
143
+ msgid "Subtitle Position"
144
+ msgstr "زیرعنوان"
145
 
146
+ #: admin/includes/admin-hooks.php:124
147
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:476
148
+ #: includes/elementor/widgets/recent-posts-masonry.php:276
149
+ #: includes/elementor/widgets/theme-elements/site-title.php:122
150
+ #: includes/elements/recent-posts-grid-carousel.php:334
151
+ msgid "Before Title"
152
+ msgstr ""
153
 
154
+ #: admin/includes/admin-hooks.php:125
155
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:475
156
+ #: includes/elementor/widgets/recent-posts-masonry.php:275
157
+ #: includes/elementor/widgets/theme-elements/site-title.php:153
158
+ #: includes/elements/recent-posts-grid-carousel.php:333
159
+ #, fuzzy
160
+ msgid "After Title"
161
+ msgstr "عنوان"
162
+
163
+ #: admin/includes/admin-hooks.php:157
164
+ msgid "Upgrade Phlox"
165
  msgstr ""
 
 
166
 
167
+ #: admin/includes/admin-hooks.php:175
168
+ msgid "Maintenance Mode"
169
+ msgstr ""
170
+
171
+ #: admin/includes/admin-hooks.php:220
172
+ #, fuzzy
173
+ msgid "Update Plugins"
174
+ msgstr "افزونه های فعال"
175
+
176
+ #: admin/includes/admin-hooks.php:221
177
+ #, fuzzy
178
+ msgid "Update Plugins %s"
179
+ msgstr "افزونه های فعال"
180
+
181
+ #: admin/includes/admin-hooks.php:437
182
+ #, fuzzy
183
  msgid ""
184
+ "Quick access to %s %sdashboard%s, %sdemo importer%s, %soptions%s, and "
185
+ "%ssupport%s page."
186
  msgstr ""
187
  "دسترسی سریع به صفحات %sپیشخوان%s، %sتنظیمات%s، %sپشتیبانی%s و %sبازخورد%s."
188
 
189
+ #: admin/includes/admin-hooks.php:440
190
+ msgid "%s theme version %s"
191
+ msgstr ""
192
+
193
+ #: admin/includes/admin-hooks.php:442
194
+ msgid "Theme Demo Importer"
195
+ msgstr ""
196
+
197
+ #: admin/includes/admin-hooks.php:444
198
  msgid "Theme Customizer"
199
  msgstr "شخصی ساز پوسته"
200
 
201
+ #: admin/includes/admin-hooks.php:468
202
+ msgid "You are using %1$s theme version %2$s."
203
+ msgstr ""
204
 
205
+ #: admin/includes/admin-hooks.php:477
206
+ msgid "Please support us to continue this project by rating it %s"
207
+ msgstr ""
208
 
209
+ #: admin/includes/admin-hooks.php:630
210
+ msgid ""
211
+ "Please make sure the image aspect ratio for all image sizes are the same."
212
+ msgstr ""
213
 
214
+ #: admin/includes/admin-hooks.php:686 includes/general-hooks.php:1382
215
+ #, fuzzy
216
+ msgid "Footer Brand Image"
217
+ msgstr "تصویر پوستر"
218
 
219
+ #: admin/includes/admin-hooks.php:687 includes/general-hooks.php:1383
220
+ msgid "This image appears as site brand image on footer section."
221
+ msgstr ""
222
 
223
+ #: admin/includes/admin-hooks.php:728
224
+ #, fuzzy
225
+ msgid "Activate License"
226
+ msgstr "افزونه های فعال"
227
 
228
+ #: admin/includes/admin-hooks.php:733
229
+ msgid "Remind Me Later"
230
+ msgstr ""
231
 
232
+ #: admin/includes/admin-hooks.php:817
233
+ msgid "Phlox is Not Activated! to Unlock All Features Activate Now."
234
+ msgstr ""
235
 
236
+ #: admin/includes/admin-hooks.php:821
237
+ #, fuzzy
238
+ msgid "Activate Now"
239
+ msgstr "بخش فعال"
240
 
241
+ #: admin/includes/admin-hooks.php:870
242
+ #, fuzzy
243
+ msgid "Uncategorized"
244
+ msgstr "دسته"
245
 
246
+ #: admin/includes/admin-the-functions.php:133
247
+ msgid "a long time"
248
  msgstr ""
 
 
249
 
250
+ #: admin/includes/admin-the-functions.php:179
251
+ msgid "Template ID or type is required."
252
+ msgstr ""
253
 
254
+ #: admin/includes/admin-the-functions.php:190
255
+ msgid "An error occurred while updating templates library."
256
+ msgstr ""
257
 
258
+ #: admin/includes/admin-the-functions.php:209
259
+ msgid "Template Not Found."
260
+ msgstr ""
261
 
262
+ #: admin/includes/admin-the-functions.php:225
263
+ msgid "Template is already imported."
264
+ msgstr ""
265
 
266
+ #: admin/includes/admin-the-functions.php:241
267
+ msgid "Connection error, please check your connection."
268
+ msgstr ""
269
 
270
+ #: admin/includes/admin-the-functions.php:303
271
+ msgid "Template Imported Successfully"
272
+ msgstr ""
273
 
274
+ #: admin/includes/admin-the-functions.php:315
275
+ msgid "Error while saving the template."
276
+ msgstr ""
277
 
278
+ #: admin/includes/classes/class-auxels-system-check.php:20
279
+ #, fuzzy
280
+ msgid "System Status Check By Averta"
281
+ msgstr "وضعیت سیستم"
282
 
283
+ #: admin/includes/classes/class-auxels-system-check.php:25
284
+ msgid "Demo And Template Import Check By Averta"
285
+ msgstr ""
 
286
 
287
+ #: admin/includes/classes/class-auxels-system-check.php:38
288
+ msgid "Required and recommended php ini settings passed successfully"
289
+ msgstr ""
290
 
291
+ #: admin/includes/classes/class-auxels-system-check.php:41
292
+ #: admin/includes/classes/class-auxels-system-check.php:109
293
+ msgid "Performance"
294
+ msgstr ""
295
 
296
+ #: admin/includes/classes/class-auxels-system-check.php:46
297
+ msgid "Maximum execution time test passed"
298
+ msgstr ""
299
 
300
+ #: admin/includes/classes/class-auxels-system-check.php:53
301
+ msgid "Warning"
302
+ msgstr ""
303
 
304
+ #: admin/includes/classes/class-auxels-system-check.php:54
305
+ #: admin/includes/classes/class-auxels-system-check.php:65
306
+ msgid "We recommend setting max execution time to at least 60."
307
+ msgstr ""
308
 
309
+ #: admin/includes/classes/class-auxels-system-check.php:106
310
+ #: admin/includes/classes/class-auxels-system-check.php:114
311
  msgid ""
312
+ "Connecting to averta servers to get demos and templates passed successfully"
 
313
  msgstr ""
 
 
314
 
315
+ #: admin/includes/classes/class-auxels-system-check.php:121
316
+ #, fuzzy
317
+ msgid "Error"
318
+ msgstr "خطا"
319
+
320
+ #: admin/includes/classes/class-auxels-system-check.php:122
321
  msgid ""
322
+ "Your site cannot communicate securely with Phlox update services. <a href="
323
+ "\"https://docs.phlox.pro/article/206-error-activating-license\" target="
324
+ "\"_blank\">How to fix?</a>\n"
325
+ " "
326
  msgstr ""
 
 
327
 
328
+ #: admin/includes/classes/class-auxels-system-check.php:133
329
+ msgid "Error while trying to connect to averta servers"
330
+ msgstr ""
331
 
332
+ #: admin/includes/classes/class-auxin-license-activation.php:107
333
+ #, fuzzy
334
+ msgid "Email address is required."
335
+ msgstr "آدرس ایمیل دریافت کننده ی پیام ها"
336
+
337
+ #: admin/includes/classes/class-auxin-license-activation.php:110
338
+ msgid "Purchase key is required."
339
  msgstr ""
 
 
340
 
341
+ #: admin/includes/classes/class-auxin-license-activation.php:116
342
+ #, fuzzy
343
+ msgid "Please enter a valid email address."
344
+ msgstr "لطفا آدرس ایمیل خود را وارد کنید."
345
 
346
+ #: admin/includes/classes/class-auxin-license-activation.php:132
347
+ msgid "Bad request with wrong header .."
348
+ msgstr ""
349
+
350
+ #: admin/includes/classes/class-auxin-license-activation.php:168
351
+ msgid "Connection error..."
352
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
353
 
354
+ #: admin/includes/classes/class-auxin-notices.php:30
355
+ msgid "You need to enter a unique id for notice."
356
+ msgstr ""
357
 
358
+ #: admin/includes/classes/class-auxin-notices.php:186
359
+ #: includes/classes/class-auxin-welcome.php:1685
360
+ #: includes/classes/class-auxin-welcome.php:1714
361
+ #: includes/classes/class-auxin-welcome.php:1789
362
+ msgid "Skip"
363
+ msgstr ""
364
 
365
+ #: admin/includes/classes/class-auxin-notices.php:384
366
+ msgid "Dismiss"
367
+ msgstr ""
 
368
 
369
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:26
370
+ #, fuzzy
371
+ msgid "Please enter a valid update type."
372
+ msgstr "لطفا پیامی را وارد کنید."
373
 
374
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:47
375
+ msgid "Sorry, you are not allowed to update plugins for this site."
376
+ msgstr ""
377
 
378
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:79
379
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:100
380
+ msgid "Plugin update failed."
381
+ msgstr ""
 
382
 
383
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:83
384
+ msgid "Plugin updated successfully."
385
+ msgstr ""
 
 
386
 
387
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:89
388
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:154
389
+ msgid "Unable to connect to the filesystem. Please confirm your credentials."
390
+ msgstr ""
391
+
392
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:120
393
+ msgid "Sorry, you are not allowed to update themes for this site."
394
+ msgstr ""
395
+
396
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:148
397
+ msgid "Theme updated successfully."
398
+ msgstr ""
399
+
400
+ #: admin/includes/classes/class-auxin-upgrader-ajax-handlers.php:165
401
+ msgid "Update failed."
402
  msgstr ""
 
 
403
 
404
+ #: admin/includes/classes/class-auxin-upgrader-http-api.php:86
 
 
 
405
  msgid ""
406
+ "Envato username, API key and your item purchase code are required for "
407
+ "downloading updates from Envato marketplace."
408
+ msgstr ""
409
 
410
+ #: admin/includes/classes/class-auxin-upgrader-http-api.php:94
411
+ msgid "Is not exist in our non official list. "
412
+ msgstr ""
413
+
414
+ #: admin/includes/classes/class-auxin-upgrader-http-api.php:109
415
+ msgid "Error in getting download link."
416
+ msgstr ""
417
+
418
+ #: admin/includes/classes/class-auxin-upgrader-http-api.php:119
419
+ msgid "Error on connecting to download API..."
420
+ msgstr ""
421
 
422
  #: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
423
+ #: includes/classes/class-auxin-widget.php:126
424
+ #: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:46
425
  msgid "Choose .."
426
  msgstr "انتخاب .."
427
 
428
+ #: admin/includes/compatibility/wpml/integration-classes/accordion-items.php:27
429
+ #, fuzzy
430
+ msgid "Accordion: Label"
431
+ msgstr "برچسب آکاردئون"
432
 
433
+ #: admin/includes/compatibility/wpml/integration-classes/accordion-items.php:29
434
+ #, fuzzy
435
+ msgid "Accordion: Content"
436
+ msgstr "آکاردئون"
437
 
438
+ #: admin/includes/compatibility/wpml/integration-classes/flexible-list.php:27
439
+ msgid "Flexible List: Text"
440
+ msgstr ""
441
 
442
+ #: admin/includes/compatibility/wpml/integration-classes/flexible-list.php:29
443
+ msgid "Flexible List: Secondary Text"
444
+ msgstr ""
445
 
446
+ #: admin/includes/compatibility/wpml/integration-classes/flexible-list.php:31
447
+ msgid "Flexible List: Link"
448
+ msgstr ""
 
449
 
450
+ #: admin/includes/compatibility/wpml/integration-classes/tabs.php:27
451
+ #, fuzzy
452
+ msgid "Tab: Label"
453
+ msgstr "برچسب زبانه"
454
 
455
+ #: admin/includes/compatibility/wpml/integration-classes/tabs.php:29
456
+ #, fuzzy
457
+ msgid "Tab: Content"
458
+ msgstr "محتوا"
459
 
460
+ #: admin/includes/compatibility/wpml/translate.php:20
461
+ msgid "Modern Heading: Title"
462
+ msgstr ""
 
 
 
463
 
464
+ #: admin/includes/compatibility/wpml/translate.php:25
465
+ #, fuzzy
466
+ msgid "Modern Heading: Description"
467
+ msgstr "توضیحات المان"
 
 
 
468
 
469
+ #: admin/includes/compatibility/wpml/translate.php:30
470
+ msgid "Modern Heading: Before Text"
471
+ msgstr ""
472
 
473
+ #: admin/includes/compatibility/wpml/translate.php:35
474
+ #, fuzzy
475
+ msgid "Modern Heading: Highlighted Text"
476
+ msgstr "متن هایلایت شده"
477
 
478
+ #: admin/includes/compatibility/wpml/translate.php:40
479
+ msgid "Modern Heading: After Text"
480
+ msgstr ""
481
 
482
+ #: admin/includes/compatibility/wpml/translate.php:69
483
+ #, fuzzy
484
+ msgid "Button: Label"
485
+ msgstr "برچسب دکمه"
486
 
487
+ #: admin/includes/compatibility/wpml/translate.php:80
488
+ #, fuzzy
489
+ msgid "Contact Form 7: Shortcode"
490
+ msgstr "کد کوتاه فرم تماس 7"
491
 
492
+ #: admin/includes/compatibility/wpml/translate.php:91
493
+ #, fuzzy
494
+ msgid "Blockquote: Content"
495
+ msgstr "محتوای جعبه ای"
496
 
497
+ #: admin/includes/compatibility/wpml/translate.php:102
498
+ msgid "Staff: Name"
499
+ msgstr ""
500
 
501
+ #: admin/includes/compatibility/wpml/translate.php:107
502
+ msgid "Staff: Occupation"
503
+ msgstr ""
504
 
505
+ #: admin/includes/compatibility/wpml/translate.php:112
506
+ #, fuzzy
507
+ msgid "Staff: Content"
508
+ msgstr "محتوا"
509
 
510
+ #: admin/includes/compatibility/wpml/translate.php:123
511
+ #, fuzzy
512
+ msgid "Testimonial: Name"
513
+ msgstr "انتخاب اظهار نظر"
514
+
515
+ #: admin/includes/compatibility/wpml/translate.php:128
516
+ msgid "Testimonial: Occupation"
517
  msgstr ""
 
518
 
519
+ #: admin/includes/compatibility/wpml/translate.php:133
520
+ msgid "Testimonial: Content"
521
+ msgstr ""
522
 
523
+ #: admin/includes/compatibility/wpml/translate.php:144
524
+ msgid "Info Box: Name"
525
  msgstr ""
 
526
 
527
+ #: admin/includes/compatibility/wpml/translate.php:149
528
+ msgid "Info Box: Occupation"
529
+ msgstr ""
530
 
531
+ #: admin/includes/compatibility/wpml/translate.php:154
532
+ #, fuzzy
533
+ msgid "Info Box: Content"
534
+ msgstr "محتوای جعبه ای"
535
 
536
+ #: admin/includes/compatibility/wpml/translate.php:159
537
+ #, fuzzy
538
+ msgid "Info Box: Button label"
539
+ msgstr "برچسب دکمه"
540
 
541
+ #: admin/includes/compatibility/wpml/translate.php:170
542
+ #, fuzzy
543
+ msgid "MAP: Latitude"
544
+ msgstr "عرض جغرافیایی"
545
 
546
+ #: admin/includes/compatibility/wpml/translate.php:175
547
+ #, fuzzy
548
+ msgid "MAP: Longitude"
549
+ msgstr "طول جغرافیایی"
550
 
551
+ #: admin/includes/compatibility/wpml/translate.php:180
552
+ #, fuzzy
553
+ msgid "MAP: Marker info"
554
+ msgstr "اطلاعات نشانگر"
555
 
556
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:21
557
+ #, fuzzy
558
+ msgid "Advanced Setting"
559
+ msgstr "افزودن بخش"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
560
 
561
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:25
562
+ #, fuzzy
563
+ msgid "Custom CSS class name for body"
564
+ msgstr "نام کلاس دلخواه CSS"
565
 
566
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:26
567
+ msgid ""
568
+ "You can define custom CSS class name for this page. It helpful for targeting "
569
+ "this page by custom CSS code."
570
+ msgstr ""
 
 
571
 
572
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:33
573
+ #, fuzzy
574
+ msgid "Custom CSS Code"
575
+ msgstr "کد جاوااسکریپت سفارشی"
576
 
577
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:34
578
+ #, fuzzy
579
+ msgid ""
580
+ "Attention: The following custom CSS code will be applied ONLY to this page."
581
+ msgstr "توجه: کدهای جاوااسکریپت دلخواه زیر فقط به این صفحه اعمال خواهند شد."
582
 
583
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:35
584
+ #, fuzzy
585
+ msgid ""
586
+ "For defining global CSS roles, please use custom CSS field on option panel."
587
+ msgstr ""
588
+ "برای تعریف جاوااسکریپت های سراسری، لطفا از فیلد جاوااسکریپت سفارشی در پنل "
589
+ "تنظیمات استفاده کنید."
590
 
591
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:43
592
+ msgid "Custom JavaScript Code"
593
+ msgstr "کد جاوااسکریپت سفارشی"
 
594
 
595
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:44
596
+ msgid ""
597
+ "Attention: The following custom JavaScript code will be applied ONLY to this "
598
+ "page."
599
+ msgstr "توجه: کدهای جاوااسکریپت دلخواه زیر فقط به این صفحه اعمال خواهند شد."
600
 
601
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:45
602
+ msgid ""
603
+ "For defining global JavaScript roles, please use custom javaScript field on "
604
+ "option panel."
605
+ msgstr ""
606
+ "برای تعریف جاوااسکریپت های سراسری، لطفا از فیلد جاوااسکریپت سفارشی در پنل "
607
+ "تنظیمات استفاده کنید."
608
 
609
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:53
610
+ msgid "Extra Google Font1"
611
+ msgstr ""
 
 
 
612
 
613
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:54
614
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:62
615
+ #, fuzzy
616
+ msgid "Load an extra Google font for this page."
617
+ msgstr "در صفحه جدید یا در همین صفحه باز شود."
618
 
619
+ #: admin/includes/metaboxes/metabox-fields-general-advanced.php:61
620
+ msgid "Extra Google Font2"
621
+ msgstr ""
622
 
623
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:21
624
+ #, fuzzy
625
+ msgid "Custom Logo"
626
+ msgstr "رنگ سفارشی"
627
 
628
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:24
629
+ #: includes/elementor/modules/settings/general/manager.php:39
630
+ #, fuzzy
631
+ msgid "Page Logo"
632
+ msgstr "لوگوی صفحه ورود"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
 
634
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  msgid ""
636
+ "The main logo which appears only on this page. If you do not specify an "
637
+ "image, the default logo will be used."
638
  msgstr ""
 
 
639
 
640
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:32
641
+ msgid "Page Secondary Logo"
642
+ msgstr ""
 
643
 
644
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:33
645
+ msgid ""
646
+ "The secondary logo which appears when the header becomes sticky. If you do "
647
+ "not specify an image, the default secondary logo will be used."
648
+ msgstr ""
649
 
650
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:40
651
+ #, fuzzy
652
+ msgid "Page Logo Width"
653
+ msgstr "عرض لوگو"
654
 
655
+ #: admin/includes/metaboxes/metabox-fields-general-custom-logo.php:41
656
+ msgid ""
657
+ "Specifies the max width of logo image in pixels. Leave it blank to use the "
658
+ "theme default value for this option."
659
+ msgstr ""
 
660
 
661
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:18
662
+ msgid "Footer Templates Settings"
663
+ msgstr ""
 
664
 
665
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:22
666
+ msgid "Footer Copyright Text"
667
+ msgstr ""
 
668
 
669
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:23
670
+ #, fuzzy
671
+ msgid "Enter your copyright text to display on footer."
672
+ msgstr "متنی را برای نمایش در بالای فرم ورود وارد کنید."
 
673
 
674
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:29
675
+ #, fuzzy
676
+ msgid "Show Phlox attribution"
677
+ msgstr "نمایش دکمه بارگذاری بیشتر"
678
 
679
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:30
680
+ msgid ""
681
+ "Show the \"Powered By Phlox\" text with link to Phlox homepage in footer."
682
+ msgstr ""
683
 
684
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:35
685
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:48
686
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:37
687
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:73
688
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:34
689
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:46
690
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:66
691
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:136
692
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:30
693
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:42
694
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:42
695
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:78
696
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:34
697
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:145
698
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:198
699
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:270
700
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:294
701
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:318
702
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:369
703
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:434
704
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:528
705
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:558
706
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:601
707
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:628
708
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:653
709
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:677
710
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:706
711
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:737
712
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:763
713
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:813
714
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:866
715
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:890
716
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:34
717
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:46
718
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:79
719
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:164
720
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:194
721
+ #: includes/elementor/widgets/audio.php:155 includes/elements/audio.php:104
722
+ #: includes/general-functions.php:1890
723
+ msgid "Theme Default"
724
+ msgstr "پیشفرض پوسته"
725
 
726
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:36
727
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:49
728
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:74
729
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:35
730
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:47
731
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:137
732
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:31
733
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:43
734
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:79
735
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:35
736
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:271
737
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:295
738
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:319
739
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:370
740
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:559
741
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:629
742
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:654
743
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:678
744
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:738
745
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:867
746
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:891
747
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:35
748
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:47
749
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:157
750
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:169
751
+ #: includes/elements/custom-list.php:160 includes/elements/custom-list.php:178
752
+ #: includes/elements/general-element-fields.php:75
753
+ #: includes/elements/latest-items.php:171
754
+ #: includes/elements/latest-items.php:186
755
+ msgid "Yes"
756
+ msgstr "بله"
757
 
758
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:37
759
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:50
760
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:75
761
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:36
762
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:48
763
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:138
764
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:32
765
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:44
766
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:80
767
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:36
768
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:272
769
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:296
770
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:320
771
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:371
772
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:560
773
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:630
774
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:655
775
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:679
776
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:739
777
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:868
778
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:892
779
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:36
780
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:48
781
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:158
782
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:170
783
+ #: includes/elements/custom-list.php:161 includes/elements/custom-list.php:179
784
+ #: includes/elements/general-element-fields.php:74
785
+ #: includes/elements/latest-items.php:171
786
+ #: includes/elements/latest-items.php:186
787
+ msgid "No"
788
+ msgstr "خیر"
789
 
790
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:42
791
+ msgid "Enbale Sticky Footer"
792
+ msgstr ""
793
 
794
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template-settings.php:43
795
+ msgid ""
796
+ "Enable this option to pin the footer and subfooter to bottom of the website."
797
+ msgstr ""
798
 
799
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:16
800
+ msgid "Footer Templates"
801
+ msgstr ""
802
 
803
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:22
804
+ #, fuzzy
805
+ msgid "Current Footer"
806
+ msgstr "صفحه جاری"
807
 
808
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:40
809
+ msgid "Your Footers"
810
+ msgstr ""
811
 
812
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:56
813
+ msgid "Footer Builder"
814
+ msgstr ""
815
 
816
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:57
817
+ msgid "Get footer builder and templates by installing Elementor plugin."
818
+ msgstr ""
819
 
820
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:65
821
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:26
822
+ msgid "Use Legacy Footer"
823
+ msgstr ""
824
 
825
+ #: admin/includes/metaboxes/metabox-fields-general-footer-template.php:66
826
+ msgid "Disable it to replace footer section with an Elementor template"
827
+ msgstr ""
828
 
829
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
830
+ #: includes/elementor/modules/documents/footer.php:34
831
+ #: includes/elementor/modules/documents/footer.php:45
832
+ #: includes/elementor/widgets/text.php:1564
833
+ msgid "Footer"
834
+ msgstr ""
835
 
836
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:27
837
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
838
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:27
839
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
840
+ #: includes/general-hooks.php:581 includes/general-hooks.php:986
841
+ msgid "Disable it to replace header section with an Elementor template"
842
+ msgstr ""
843
 
844
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:40
845
+ #, fuzzy
846
+ msgid "Display Footer"
847
+ msgstr "نمایش عنوان؟"
848
 
849
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:41
850
+ #, fuzzy
851
+ msgid "Enable it to display footer on this pages."
852
+ msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
853
 
854
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:53
855
+ #, fuzzy
856
+ msgid "Footer Layout"
857
+ msgstr "چیدمان محتوا"
858
 
859
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:54
860
+ #, fuzzy
861
+ msgid "Specifies the footer layout."
862
+ msgstr "نمای پخش کننده را مشخص می کند."
863
 
864
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:70
865
+ msgid "Footer Preset 1"
866
+ msgstr ""
867
 
868
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:74
869
+ msgid "Footer Preset 2"
870
+ msgstr ""
 
 
871
 
872
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:78
873
+ msgid "Footer Preset 3"
874
+ msgstr ""
 
 
875
 
876
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:82
877
+ msgid "Footer Preset 4"
878
+ msgstr ""
 
 
879
 
880
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:86
881
+ msgid "Footer Preset 5"
882
+ msgstr ""
883
 
884
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:94
885
+ #, fuzzy
886
+ msgid "Footer Background Color"
887
+ msgstr "رنگ پس زمینه"
888
 
889
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:95
890
+ #, fuzzy
891
+ msgid "Specifies the background color for footer"
892
+ msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
893
 
894
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:112
895
+ msgid "Footer Top Border Color"
896
+ msgstr ""
 
 
897
 
898
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:114
899
+ #, fuzzy
900
+ msgid "Specifies top border color of footer."
901
+ msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
902
 
903
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:130
904
+ #, fuzzy
905
+ msgid "Display Subfooter"
906
+ msgstr "نمایش پست هایی که دیگران نوشته اند"
 
907
 
908
+ #: admin/includes/metaboxes/metabox-fields-general-footer.php:131
909
+ #, fuzzy
910
+ msgid "Enable it to display subfooter on this pages."
911
+ msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
912
 
913
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:21
914
+ msgid "Header Templates Settings"
915
+ msgstr ""
916
 
917
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:24
918
+ msgid "Enable Overlay Header"
919
+ msgstr ""
 
920
 
921
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:25
922
+ msgid "Whether to set a overlay header for this page."
923
+ msgstr ""
924
 
925
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:37
926
+ msgid "Enable Sticky Header"
927
+ msgstr ""
928
 
929
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:38
930
+ #, fuzzy
931
+ msgid "Whether to pin the header menu on top."
932
+ msgstr "دکمه نمایش بیشتر نشان داده شود یا نه."
933
 
934
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:49
935
+ msgid "Sticky Header Height"
936
+ msgstr ""
937
 
938
+ #: admin/includes/metaboxes/metabox-fields-general-header-template-settings.php:50
939
+ msgid ""
940
+ "Specifies the sticky header height for this page. Leave it blank to use the "
941
+ "theme default value for this option."
942
+ msgstr ""
943
 
944
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:21
945
+ msgid "Header Templates"
946
+ msgstr ""
 
947
 
948
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:27
949
+ #, fuzzy
950
+ msgid "Current Header"
951
+ msgstr "صفحه جاری"
 
 
 
 
952
 
953
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:45
954
+ #, fuzzy
955
+ msgid "Your Headers"
956
+ msgstr "نمایش سربرگ"
 
 
 
 
957
 
958
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:61
959
+ msgid "Header Builder"
960
+ msgstr ""
961
 
962
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:62
963
+ msgid "Get header builder and templates by installing Elementor plugin."
964
+ msgstr ""
965
 
966
+ #: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
967
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:26
968
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
969
+ #: includes/general-hooks.php:580 includes/general-hooks.php:985
970
+ msgid "Use Legacy Header"
971
+ msgstr ""
972
 
973
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:21
974
+ #: includes/elementor/modules/documents/header.php:34
975
+ #: includes/elementor/widgets/text.php:104
976
+ #: includes/elementor/widgets/text.php:347
977
+ #, fuzzy
978
+ msgid "Header"
979
+ msgstr "تیتر گذاری"
980
 
981
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:41
982
+ msgid "Page Custom Menu"
983
+ msgstr ""
984
 
985
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:42
986
+ #, fuzzy
987
+ msgid "Specifies a custom menu for this page."
988
+ msgstr "نمای پخش کننده را مشخص می کند."
989
 
990
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:57
991
+ #, fuzzy
992
+ msgid "Page Cover"
993
+ msgstr "تصویر شناور"
994
 
995
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:58
996
+ #, fuzzy
997
+ msgid "Specifies a cover with animations for this page."
998
+ msgstr "نمای پخش کننده صدا را مشخص می کند."
999
 
1000
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:72
1001
+ #, fuzzy
1002
+ msgid "Page Cover Image"
1003
+ msgstr "تعداد عکس در صفحه"
1004
 
1005
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:73
1006
+ #, fuzzy
1007
+ msgid "Specifies a image for page cover."
1008
+ msgstr "نمای پخش کننده را مشخص می کند."
1009
 
1010
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:91
1011
+ #, fuzzy
1012
+ msgid "Page Cover Text"
1013
+ msgstr "تصویر شناور"
1014
 
1015
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:92
1016
+ msgid "Your custom text for add on the page cover"
1017
+ msgstr ""
1018
 
1019
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:110
1020
+ msgid "Page Cover Link Text"
1021
+ msgstr ""
1022
 
1023
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:111
1024
+ #, fuzzy
1025
+ msgid "Specifies text for page cover link."
1026
+ msgstr "پوسته المان کد را مشخص می کند."
1027
 
1028
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:129
1029
+ msgid "Header Menu Layout"
1030
+ msgstr ""
1031
 
1032
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:130
1033
+ msgid ""
1034
+ "Specifies the header layout for this page. By choosing a layout, the "
1035
+ "corresponding options will appear below."
1036
+ msgstr ""
1037
 
1038
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:149
1039
+ #, fuzzy
1040
+ msgid "Logo left, Menu right"
1041
+ msgstr "ارتفاع لوگو"
1042
 
1043
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:153
1044
+ msgid "Logo left, Burger menu right"
1045
+ msgstr ""
1046
 
1047
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:157
1048
+ msgid "Logo right, Menu left"
1049
+ msgstr ""
 
 
 
 
1050
 
1051
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:161
1052
+ msgid "Logo Right, Burger menu left"
1053
+ msgstr ""
1054
 
1055
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:165
1056
+ msgid "Logo middle in top, Menu middle in bottom"
1057
+ msgstr ""
1058
 
1059
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:169
1060
+ msgid "Logo left in top, Menu left in bottom"
1061
+ msgstr ""
1062
 
1063
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:173
1064
+ #, fuzzy
1065
+ msgid "Vertical Menu"
1066
+ msgstr "عمودی"
1067
 
1068
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:177
1069
+ msgid "Logo left, Burger right, Message right"
1070
+ msgstr ""
1071
 
1072
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:181
1073
+ msgid "Logo left, Menu Middle"
1074
+ msgstr ""
1075
 
1076
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:185
1077
+ #, fuzzy
1078
+ msgid "No header"
1079
+ msgstr "نمایش سربرگ"
1080
 
1081
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:192
1082
+ #, fuzzy
1083
+ msgid "Header Width"
1084
+ msgstr "عرض جداکننده"
1085
 
1086
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:193
1087
+ msgid ""
1088
+ "Specifies the width of header, boxed or full width. %1$s Only works if %2$s "
1089
+ "Website Layout %3$s option sets to %2$s Full layout %3$s"
1090
+ msgstr ""
1091
 
1092
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:202
1093
+ #: includes/elements/staff.php:207 includes/elements/text.php:105
1094
+ #: includes/general-hooks.php:2997
1095
+ msgid "Boxed"
1096
+ msgstr "جعبه ای"
1097
 
1098
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:206
1099
+ #, fuzzy
1100
+ msgid "Full Width"
1101
+ msgstr "عرض"
1102
 
1103
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:225
1104
+ #, fuzzy
1105
+ msgid "Header Height"
1106
+ msgstr "ارتفاع ثابت"
1107
 
1108
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:226
1109
+ msgid ""
1110
+ "Specifies the header height in pixel for this page. Leave it blank to use "
1111
+ "the theme default value for this option."
1112
+ msgstr ""
1113
 
1114
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:253
1115
+ #, fuzzy
1116
+ msgid "Add Search Button"
1117
+ msgstr "افزودن بخش"
1118
 
1119
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:254
1120
+ #, fuzzy
1121
+ msgid "Whether to add search button in the header or not."
1122
+ msgstr "سربرگ خوراک نمایش داده شود یا خیر."
1123
 
1124
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:277
1125
+ #, fuzzy
1126
+ msgid "Display Logo"
1127
+ msgstr "نمایش تصویر"
1128
 
1129
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:278
1130
+ #, fuzzy
1131
+ msgid "Enable it to add logo in the header."
1132
+ msgstr "همچنین برای نمایش تصاویر این گزینه را فعال کنید."
1133
 
1134
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:301
1135
+ #, fuzzy
1136
+ msgid "Add Border"
1137
+ msgstr "کادربندی شده"
1138
 
1139
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:302
1140
+ msgid "Whether to add border below the header on this page."
1141
+ msgstr ""
1142
 
1143
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:325
1144
+ #: includes/elementor/widgets/image.php:639
1145
+ #: includes/elementor/widgets/theme-elements/modern-search.php:645
1146
+ #, fuzzy
1147
+ msgid "Border Color"
1148
+ msgstr "رنگ پس زمینه"
1149
 
1150
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:326
1151
+ msgid ""
1152
+ "Specifies the border color for header. Empty or transparent color means "
1153
+ "using the theme default value for this option."
1154
+ msgstr ""
1155
 
1156
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:352
1157
+ #, fuzzy
1158
+ msgid "Header Animation"
1159
+ msgstr "ناوبری چرخه ای"
1160
 
1161
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:353
1162
+ msgid "Whether to animate the header after page loaded completely."
1163
+ msgstr ""
1164
 
1165
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:376
1166
+ msgid "Header Animation Delay"
1167
+ msgstr ""
1168
 
1169
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:377
1170
+ msgid ""
1171
+ "The delay amount before starting the header animation in seconds. Leave it "
1172
+ "blank to use the theme default value for this option."
1173
+ msgstr ""
1174
 
1175
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:399
1176
+ #, fuzzy
1177
+ msgid "Header Background Color"
1178
+ msgstr "رنگ پس زمینه"
1179
 
1180
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:400
1181
  msgid ""
1182
+ "Specifies the background color of header on this page. Empty or transparent "
1183
+ "color means using the theme default value for this option."
1184
  msgstr ""
 
 
1185
 
1186
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:429
1187
+ msgid "Header Menu Color Scheme"
1188
+ msgstr ""
1189
 
1190
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:430
1191
+ #, fuzzy
1192
+ msgid "Specifies the Color Scheme of Header"
1193
+ msgstr "اندازه عرض جداکننده را مشخص می کند."
1194
 
1195
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:435
1196
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:529
1197
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:814
1198
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:54
1199
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:61
1200
+ #: includes/elementor/widgets/audio.php:163
1201
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:133
1202
+ #: includes/elementor/widgets/video.php:235 includes/elements/audio.php:112
1203
+ #: includes/elements/recent-posts-tiles-carousel.php:346
1204
+ #: includes/elements/staff.php:304 includes/elements/text.php:182
1205
+ #: includes/elements/video.php:159
1206
+ msgid "Light"
1207
+ msgstr "روشن"
1208
 
1209
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:436
1210
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:530
1211
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:815
1212
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:58
1213
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:65
1214
+ #: includes/elementor/widgets/audio.php:159
1215
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:177
1216
+ #: includes/elementor/widgets/recent-posts-tiles.php:177
1217
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:134
1218
+ #: includes/elementor/widgets/video.php:231 includes/elements/audio.php:108
1219
+ #: includes/elements/recent-posts-tiles-carousel.php:345
1220
+ #: includes/elements/recent-posts-tiles.php:380 includes/elements/staff.php:305
1221
+ #: includes/elements/text.php:181 includes/elements/video.php:155
1222
+ msgid "Dark"
1223
+ msgstr "تیره"
1224
 
1225
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:453
1226
+ #, fuzzy
1227
+ msgid "Sticky Header Background Color"
1228
+ msgstr "رنگ پس زمینه"
1229
 
1230
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:454
1231
+ msgid ""
1232
+ "Specifies the background color for header when it becomes sticky. Empty or "
1233
+ "transparent color means using the theme default value for this option."
1234
+ msgstr ""
1235
 
1236
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:480
1237
+ msgid "Sticky Header Border Color"
1238
+ msgstr ""
1239
 
1240
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:481
1241
+ msgid ""
1242
+ "Specifies the border color for header when it becomes sticky. Empty or "
1243
+ "transparent color means using the theme default value for this option."
1244
+ msgstr ""
1245
 
1246
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:507
1247
+ msgid "Sticky Header Menu Color Scheme"
1248
+ msgstr ""
1249
 
1250
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:508
1251
+ #, fuzzy
1252
+ msgid "Specifies the color scheme of header menu on sticky header."
1253
+ msgstr "پوسته المان کد را مشخص می کند."
1254
 
1255
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:536
1256
+ msgid "Scale Logo on Sticky Header"
1257
+ msgstr ""
1258
 
1259
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:537
1260
+ msgid "Enable this option to scale the logo on sticky mode."
1261
+ msgstr ""
1262
 
1263
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:565
1264
+ #, fuzzy
1265
+ msgid "Vertical Menu Background color"
1266
+ msgstr "رنگ پس زمینه شکلک"
1267
 
1268
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:566
1269
  msgid ""
1270
+ "Specifies background color of Vertical Menu on this page. Empty or "
1271
+ "transparent color means using the theme default value for this option."
1272
  msgstr ""
 
 
 
 
 
 
 
 
 
1273
 
1274
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:585
1275
+ msgid "Vertical Menu Items Align"
1276
+ msgstr ""
1277
 
1278
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:602
1279
+ #: includes/elementor/widgets/button.php:238
1280
+ #: includes/elementor/widgets/carousel-navigation.php:170
1281
+ #: includes/elementor/widgets/custom-list.php:477
1282
+ #: includes/elementor/widgets/custom-list.php:509
1283
+ #: includes/elementor/widgets/divider.php:202
1284
+ #: includes/elementor/widgets/divider.php:241
1285
+ #: includes/elementor/widgets/heading-modern.php:163
1286
+ #: includes/elementor/widgets/icon.php:174
1287
+ #: includes/elementor/widgets/image.php:323
1288
+ #: includes/elementor/widgets/modern-button.php:143
1289
+ #: includes/elementor/widgets/modern-button.php:188
1290
+ #: includes/elementor/widgets/quote.php:169
1291
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:252
1292
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1618
1293
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1755
1294
+ #: includes/elementor/widgets/recent-posts-masonry.php:1159
1295
+ #: includes/elementor/widgets/recent-posts-timeline.php:130
1296
+ #: includes/elementor/widgets/staff.php:846
1297
+ #: includes/elementor/widgets/svg.php:288
1298
+ #: includes/elementor/widgets/testimonial.php:813
1299
+ #: includes/elementor/widgets/text.php:1437
1300
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1301
+ #: includes/elementor/widgets/theme-elements/copyright.php:146
1302
+ #: includes/elementor/widgets/theme-elements/current-time.php:139
1303
+ #: includes/elementor/widgets/theme-elements/logo.php:165
1304
+ #: includes/elementor/widgets/theme-elements/menu.php:332
1305
+ #: includes/elementor/widgets/theme-elements/menu.php:1360
1306
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:199
1307
+ #: includes/elementor/widgets/theme-elements/site-title.php:192
1308
+ #: includes/elements/quote.php:112
1309
+ #: includes/elements/recent-posts-grid-carousel.php:663
1310
+ #: includes/elements/recent-posts-timeline.php:272
1311
+ #: includes/elements/staff.php:280 includes/elements/text.php:129
1312
+ #: includes/elements/text.php:157 includes/general-hooks.php:377
1313
+ msgid "Center"
1314
+ msgstr "وسط"
1315
 
1316
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:603
1317
+ #: includes/elementor/modules/common.php:657
1318
+ #: includes/elementor/widgets/button.php:234
1319
+ #: includes/elementor/widgets/button.php:378
1320
+ #: includes/elementor/widgets/custom-list.php:473
1321
+ #: includes/elementor/widgets/custom-list.php:505
1322
+ #: includes/elementor/widgets/divider.php:198
1323
+ #: includes/elementor/widgets/divider.php:237
1324
+ #: includes/elementor/widgets/heading-modern.php:159
1325
+ #: includes/elementor/widgets/icon.php:170
1326
+ #: includes/elementor/widgets/image.php:319
1327
+ #: includes/elementor/widgets/modern-button.php:184
1328
+ #: includes/elementor/widgets/modern-button.php:806
1329
+ #: includes/elementor/widgets/quote.php:165
1330
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1614
1331
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1751
1332
+ #: includes/elementor/widgets/recent-posts-masonry.php:1155
1333
+ #: includes/elementor/widgets/recent-posts-timeline.php:134
1334
+ #: includes/elementor/widgets/staff.php:827
1335
+ #: includes/elementor/widgets/staff.php:842
1336
+ #: includes/elementor/widgets/svg.php:284
1337
+ #: includes/elementor/widgets/testimonial.php:809
1338
+ #: includes/elementor/widgets/text.php:367
1339
+ #: includes/elementor/widgets/text.php:1134
1340
+ #: includes/elementor/widgets/text.php:1433
1341
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1342
+ #: includes/elementor/widgets/theme-elements/copyright.php:142
1343
+ #: includes/elementor/widgets/theme-elements/current-time.php:135
1344
+ #: includes/elementor/widgets/theme-elements/logo.php:161
1345
+ #: includes/elementor/widgets/theme-elements/menu.php:281
1346
+ #: includes/elementor/widgets/theme-elements/menu.php:328
1347
+ #: includes/elementor/widgets/theme-elements/menu.php:1356
1348
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:195
1349
+ #: includes/elementor/widgets/theme-elements/site-title.php:188
1350
+ #: includes/elements/button.php:183 includes/elements/image.php:151
1351
+ #: includes/elements/quote.php:110
1352
+ #: includes/elements/recent-posts-timeline.php:276
1353
+ #: includes/elements/staff.php:238 includes/elements/staff.php:276
1354
+ #: includes/elements/text.php:125 includes/elements/text.php:153
1355
+ #: includes/elements/text.php:620 includes/elements/text.php:807
1356
+ #: includes/general-hooks.php:375 includes/general-hooks.php:839
1357
+ #: includes/general-hooks.php:1244
1358
+ msgid "Left"
1359
+ msgstr "چپ"
1360
 
1361
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:610
1362
+ #, fuzzy
1363
+ msgid "Display Vertical Menu Footer"
1364
+ msgstr "نمایش زبانه مطالب اخیر"
1365
 
1366
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:611
1367
+ #, fuzzy
1368
+ msgid "Whether to display footer at the bottom of vertical menu."
1369
+ msgstr "ویدیو به طور خودکار پخش شود یا خیر."
1370
 
1371
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:635
1372
+ #, fuzzy
1373
+ msgid "Display Search box Border"
1374
+ msgstr "نمایش نویسنده یا ادامه نوشته"
1375
 
1376
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:636
1377
+ msgid "Specifies the display of border under the search box"
1378
+ msgstr ""
1379
 
1380
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:660
1381
+ #, fuzzy
1382
+ msgid "Add Social Icons"
1383
+ msgstr "افزودن بخش"
1384
 
1385
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:661
1386
+ msgid "Enable it to add social icons in the header menu."
1387
+ msgstr ""
1388
 
1389
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:684
1390
+ #, fuzzy
1391
+ msgid "Social Icon Size"
1392
+ msgstr "اندازه شکلک"
1393
 
1394
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:685
1395
+ #, fuzzy
1396
+ msgid "Specifies the size of social icons in the header menu."
1397
+ msgstr "تراز المان خط زمانی را مشخص می کند."
1398
 
1399
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:707
1400
+ #: includes/elementor/widgets/button.php:163
1401
+ #: includes/elementor/widgets/divider.php:146
1402
+ #: includes/elementor/widgets/modern-button.php:311
1403
+ #: includes/elementor/widgets/staff.php:755
1404
+ #: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
1405
+ #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1406
+ #: includes/elements/staff.php:463 includes/elements/text.php:469
1407
+ #: includes/elements/text.php:677 includes/general-hooks.php:689
1408
+ #: includes/general-hooks.php:1094
1409
+ msgid "Small"
1410
+ msgstr "کوچک"
1411
 
1412
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:708
1413
+ #: includes/classes/class-auxin-svg-support.php:192
1414
+ #: includes/elementor/widgets/button.php:162
1415
+ #: includes/elementor/widgets/divider.php:145
1416
+ #: includes/elementor/widgets/modern-button.php:310
1417
+ #: includes/elementor/widgets/staff.php:756
1418
+ #: includes/elementor/widgets/text.php:1029
1419
+ #: includes/elements/before-after.php:104 includes/elements/button.php:65
1420
+ #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1421
+ #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
1422
+ #: includes/elements/staff.php:464 includes/elements/text.php:430
1423
+ #: includes/elements/text.php:470 includes/elements/text.php:676
1424
+ #: includes/general-hooks.php:688 includes/general-hooks.php:1093
1425
+ msgid "Medium"
1426
+ msgstr "متوسط"
1427
 
1428
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:709
1429
+ #: includes/classes/class-auxin-svg-support.php:193
1430
+ #: includes/elementor/widgets/button.php:161
1431
+ #: includes/elementor/widgets/modern-button.php:309
1432
+ #: includes/elementor/widgets/staff.php:757
1433
+ #: includes/elementor/widgets/text.php:1028
1434
+ #: includes/elements/before-after.php:105 includes/elements/button.php:64
1435
+ #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1436
+ #: includes/elements/staff.php:110 includes/elements/staff.php:465
1437
+ #: includes/elements/text.php:429 includes/elements/text.php:471
1438
+ #: includes/elements/text.php:675 includes/general-hooks.php:687
1439
+ #: includes/general-hooks.php:1092
1440
+ msgid "Large"
1441
+ msgstr "بزرگ"
1442
 
1443
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:710
1444
+ #, fuzzy
1445
+ msgid "Extra Large"
1446
+ msgstr "خیلی بزرگ"
1447
 
1448
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:719
1449
+ #, fuzzy
1450
+ msgid "Display Header Cart"
1451
+ msgstr "نمایش خلاصه"
1452
 
1453
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:720
1454
+ #, fuzzy
1455
+ msgid "Whether to display cart on top header bar."
1456
+ msgstr "سربرگ خوراک نمایش داده شود یا خیر."
1457
 
1458
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:743
1459
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:116
1460
+ #, fuzzy
1461
+ msgid "Cart Type"
1462
+ msgstr "نوع"
1463
 
1464
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:764
1465
+ msgid "Drop Down"
1466
+ msgstr ""
1467
 
1468
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:765
1469
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:120
1470
+ msgid "Off Canvas"
1471
+ msgstr ""
1472
 
1473
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:770
1474
+ #, fuzzy
1475
+ msgid "Icon for Cart"
1476
+ msgstr "شکلک برای دکمه"
1477
 
1478
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:793
1479
+ msgid "Cart Dropdown Skin"
1480
+ msgstr ""
1481
 
1482
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:821
1483
+ msgid "Dropdown Action On"
 
 
 
1484
  msgstr ""
 
 
 
1485
 
1486
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:841
1487
+ #: includes/elementor/modules/common.php:489
1488
+ #: includes/elementor/modules/common.php:545
1489
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:37
1490
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:55
1491
+ #: includes/elementor/modules/dynamic-tags/post-date.php:49
1492
+ #: includes/elementor/modules/dynamic-tags/post-time.php:50
1493
+ #: includes/elementor/widgets/accordion.php:356
1494
+ #: includes/elementor/widgets/button.php:377
1495
+ #: includes/elementor/widgets/carousel-navigation.php:168
1496
+ #: includes/elementor/widgets/custom-list.php:385
1497
+ #: includes/elementor/widgets/gallery.php:131
1498
+ #: includes/elementor/widgets/icon.php:125
1499
+ #: includes/elementor/widgets/modern-button.php:281
1500
+ #: includes/elementor/widgets/quote.php:161
1501
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1502
+ #: includes/elementor/widgets/recent-posts-tiles.php:130
1503
+ #: includes/elementor/widgets/tabs.php:195
1504
+ #: includes/elementor/widgets/text.php:1133
1505
+ #: includes/elementor/widgets/theme-elements/menu.php:999
1506
+ #: includes/elementor/widgets/theme-elements/modern-search.php:556
1507
+ #: includes/elements/button.php:179 includes/elements/code.php:99
1508
+ #: includes/elements/gallery.php:120 includes/elements/quote.php:109
1509
+ #: includes/elements/recent-posts-tiles-carousel.php:298
1510
+ #: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
1511
+ #: includes/elements/text.php:806 includes/general-hooks.php:835
1512
+ #: includes/general-hooks.php:1240 includes/general-hooks.php:1461
1513
+ msgid "Default"
1514
+ msgstr "پیش فرض"
1515
 
1516
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:842
1517
+ #: includes/elementor/widgets/accordion.php:262
1518
+ #: includes/elementor/widgets/accordion.php:450
1519
+ #: includes/elementor/widgets/accordion.php:564
1520
+ #: includes/elementor/widgets/button.php:322
1521
+ #: includes/elementor/widgets/button.php:447
1522
+ #: includes/elementor/widgets/button.php:535
1523
+ #: includes/elementor/widgets/carousel-navigation.php:391
1524
+ #: includes/elementor/widgets/contact-form.php:348
1525
+ #: includes/elementor/widgets/contact-form.php:645
1526
+ #: includes/elementor/widgets/contact-form.php:865
1527
+ #: includes/elementor/widgets/contact-form.php:1107
1528
+ #: includes/elementor/widgets/contact-form.php:1349
1529
+ #: includes/elementor/widgets/contact-form.php:1703
1530
+ #: includes/elementor/widgets/custom-list.php:918
1531
+ #: includes/elementor/widgets/custom-list.php:1075
1532
+ #: includes/elementor/widgets/heading-modern.php:397
1533
+ #: includes/elementor/widgets/heading-modern.php:582
1534
+ #: includes/elementor/widgets/heading-modern.php:753
1535
+ #: includes/elementor/widgets/icon.php:246
1536
+ #: includes/elementor/widgets/image.php:539
1537
+ #: includes/elementor/widgets/mailchimp.php:352
1538
+ #: includes/elementor/widgets/mailchimp.php:609
1539
+ #: includes/elementor/widgets/modern-button.php:407
1540
+ #: includes/elementor/widgets/modern-button.php:518
1541
+ #: includes/elementor/widgets/modern-button.php:618
1542
+ #: includes/elementor/widgets/modern-button.php:730
1543
+ #: includes/elementor/widgets/modern-button.php:916
1544
+ #: includes/elementor/widgets/recent-comments.php:201
1545
+ #: includes/elementor/widgets/recent-comments.php:284
1546
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:997
1547
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1067
1548
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
1549
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
1550
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
1551
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1569
1552
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1706
1553
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1858
1554
+ #: includes/elementor/widgets/recent-posts-land-style.php:611
1555
+ #: includes/elementor/widgets/recent-posts-land-style.php:715
1556
+ #: includes/elementor/widgets/recent-posts-land-style.php:892
1557
+ #: includes/elementor/widgets/recent-posts-masonry.php:670
1558
+ #: includes/elementor/widgets/recent-posts-masonry.php:740
1559
+ #: includes/elementor/widgets/recent-posts-masonry.php:844
1560
+ #: includes/elementor/widgets/recent-posts-masonry.php:1021
1561
+ #: includes/elementor/widgets/recent-posts-masonry.php:1110
1562
+ #: includes/elementor/widgets/recent-posts-masonry.php:1274
1563
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:514
1564
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:618
1565
+ #: includes/elementor/widgets/recent-posts-tiles.php:455
1566
+ #: includes/elementor/widgets/recent-posts-tiles.php:559
1567
+ #: includes/elementor/widgets/recent-posts-timeline.php:637
1568
+ #: includes/elementor/widgets/recent-posts-timeline.php:741
1569
+ #: includes/elementor/widgets/recent-posts-timeline.php:918
1570
+ #: includes/elementor/widgets/recent-products.php:644
1571
+ #: includes/elementor/widgets/staff.php:459
1572
+ #: includes/elementor/widgets/staff.php:706
1573
+ #: includes/elementor/widgets/svg.php:357
1574
+ #: includes/elementor/widgets/tabs.php:289
1575
+ #: includes/elementor/widgets/tabs.php:403
1576
+ #: includes/elementor/widgets/testimonial.php:397
1577
+ #: includes/elementor/widgets/testimonial.php:511
1578
+ #: includes/elementor/widgets/testimonial.php:629
1579
+ #: includes/elementor/widgets/testimonial.php:923
1580
+ #: includes/elementor/widgets/text.php:560
1581
+ #: includes/elementor/widgets/text.php:713
1582
+ #: includes/elementor/widgets/text.php:809
1583
+ #: includes/elementor/widgets/text.php:920
1584
+ #: includes/elementor/widgets/text.php:1087
1585
+ #: includes/elementor/widgets/text.php:1207
1586
+ #: includes/elementor/widgets/text.php:1282
1587
+ #: includes/elementor/widgets/text.php:1512
1588
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1589
+ #: includes/elementor/widgets/theme-elements/copyright.php:212
1590
+ #: includes/elementor/widgets/theme-elements/logo.php:327
1591
+ #: includes/elementor/widgets/theme-elements/menu.php:436
1592
+ #: includes/elementor/widgets/theme-elements/menu.php:729
1593
+ #: includes/elementor/widgets/theme-elements/menu.php:875
1594
+ #: includes/elementor/widgets/theme-elements/menu.php:1038
1595
+ #: includes/elementor/widgets/theme-elements/menu.php:1244
1596
+ #: includes/elementor/widgets/theme-elements/modern-search.php:272
1597
+ #: includes/elementor/widgets/theme-elements/modern-search.php:369
1598
+ #: includes/elementor/widgets/theme-elements/modern-search.php:488
1599
+ #, fuzzy
1600
+ msgid "Hover"
1601
+ msgstr "پوشاننده"
1602
 
1603
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:843
1604
+ msgid "Click"
1605
+ msgstr ""
1606
 
1607
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:849
1608
+ #, fuzzy
1609
+ msgid "Display My Account"
1610
+ msgstr "نمایش زبانه دیدگاه ها"
1611
 
1612
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:850
1613
+ #, fuzzy
1614
+ msgid "Whether to display my account on header."
1615
+ msgstr "سربرگ خوراک نمایش داده شود یا خیر."
1616
 
1617
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:873
1618
+ #, fuzzy
1619
+ msgid "Display Wishlist"
1620
+ msgstr "نمایش آیتم ها در"
1621
 
1622
+ #: admin/includes/metaboxes/metabox-fields-general-header.php:874
1623
+ #, fuzzy
1624
+ msgid "Whether to display wishlist on header."
1625
+ msgstr "سربرگ خوراک نمایش داده شود یا خیر."
1626
 
1627
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:21
1628
+ #, fuzzy
1629
+ msgid "Top Header"
1630
+ msgstr "نمایش سربرگ"
1631
 
1632
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:41
1633
+ #, fuzzy
1634
+ msgid "Display Top Header bar"
1635
+ msgstr "نمایش زبانه محبوب ها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1636
 
1637
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:42
1638
+ #, fuzzy
1639
+ msgid "Whether to display top header bar on this page or not."
1640
+ msgstr "ویدیو به طور خودکار پخش شود یا خیر."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1641
 
1642
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:61
1643
+ msgid "Top Header Bar Layout"
1644
+ msgstr ""
 
1645
 
1646
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:62
1647
+ #, fuzzy
1648
+ msgid "Specifies top header bar layout for this page."
1649
+ msgstr "نمای پخش کننده صدا را مشخص می کند."
1650
 
1651
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:83
1652
+ msgid "Menu left. Social and search right"
1653
  msgstr ""
1654
 
1655
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:87
1656
+ msgid "Message left. Menu and language right"
1657
+ msgstr ""
 
1658
 
1659
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:91
1660
+ msgid "Social left. Cart and search right"
 
1661
  msgstr ""
1662
 
1663
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:95
1664
+ msgid "Menu left. Message, social, cart, search and language right"
1665
+ msgstr ""
1666
 
1667
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:99
1668
+ msgid "Language left. Social, cart and search right"
1669
+ msgstr ""
1670
 
1671
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:103
1672
+ msgid "Message left. Social, cart and search right"
1673
+ msgstr ""
 
1674
 
1675
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:107
1676
+ msgid "Menu left. Social, cart and search right"
1677
+ msgstr ""
1678
 
1679
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:111
1680
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:115
1681
+ msgid "Language and menu left. Message, social, cart and search right"
1682
+ msgstr ""
1683
 
1684
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:123
1685
+ #, fuzzy
1686
+ msgid "Top Header Bar Background Color"
1687
+ msgstr "رنگ پس زمینه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1688
 
1689
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:124
1690
+ msgid ""
1691
+ "Specifies the background color of top header bar. No color means the default "
1692
+ "theme color for this section."
1693
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1694
 
1695
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:148
1696
+ #, fuzzy
1697
+ msgid "Display Message on Top Header Bar"
1698
+ msgstr "نمایش نویسنده یا ادامه نوشته"
1699
 
1700
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:149
1701
+ msgid ""
1702
+ "Whether to display default message on top header or a custom message for "
1703
+ "this page."
1704
+ msgstr ""
1705
 
1706
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:165
1707
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:195
1708
+ msgid "Yes, Custom"
1709
+ msgstr ""
1710
 
1711
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:166
1712
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:196
1713
+ msgid "No, Hide it"
1714
+ msgstr ""
 
 
1715
 
1716
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:173
1717
+ msgid "Display Secondary Message on Top Header Bar"
1718
+ msgstr ""
1719
+
1720
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:174
1721
+ msgid ""
1722
+ "Whether to display default Secondary message on top header or a custom "
1723
+ "message for this page."
1724
+ msgstr ""
1725
 
1726
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:203
1727
+ msgid "Message on Top Header Bar"
1728
+ msgstr ""
1729
 
1730
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:204
1731
+ msgid ""
1732
+ "Add a custom message to be displayed on top header bar of this page only."
1733
+ msgstr ""
1734
 
1735
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:228
1736
+ msgid "Secondary Message on Top Header Bar"
1737
+ msgstr ""
1738
 
1739
+ #: admin/includes/metaboxes/metabox-fields-general-top-header.php:229
1740
+ msgid ""
1741
+ "Add a custom Secondary message to be displayed on top header bar of this "
1742
+ "page only."
1743
+ msgstr ""
1744
 
1745
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:17
1746
+ msgid "Page Template Setting"
1747
+ msgstr ""
 
1748
 
1749
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:21
1750
+ #, fuzzy
1751
+ msgid "Page content location"
1752
+ msgstr "موقعیت تصویر یا شکلک"
1753
 
1754
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:22
1755
+ msgid ""
1756
+ "Specifies where the dynamic page content (page entry) should appear in "
1757
+ "comparison with the template content. Note: A page template from \"Page "
1758
+ "Attributes > Template\" should be selected for this page in order to use "
1759
+ "this option."
1760
+ msgstr ""
1761
 
1762
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:27
1763
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:643
1764
+ #: includes/elements/recent-posts-grid-carousel.php:467
1765
+ #, fuzzy
1766
+ msgid "Before Content"
1767
+ msgstr "محتوای جعبه ای"
1768
 
1769
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:28
1770
+ #, fuzzy
1771
+ msgid "Above Content, FullWidth Layout"
1772
+ msgstr "چیدمان محتوا"
1773
 
1774
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:29
1775
+ #, fuzzy
1776
+ msgid "Above Content, Boxed Layout"
1777
+ msgstr "چیدمان محتوا"
1778
 
1779
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:30
1780
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:642
1781
+ #: includes/elements/recent-posts-grid-carousel.php:466
1782
+ #, fuzzy
1783
+ msgid "After Content"
1784
+ msgstr "محتوا"
1785
 
1786
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:31
1787
+ #, fuzzy
1788
+ msgid "Below Content, Boxed Layout"
1789
+ msgstr "چیدمان محتوا"
1790
 
1791
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:32
1792
+ #, fuzzy
1793
+ msgid "Below Content, FullWidth Layout"
1794
+ msgstr "چیدمان محتوا"
1795
 
1796
+ #: admin/includes/metaboxes/metabox-fields-page-template.php:33
1797
+ msgid "Hide it"
 
1798
  msgstr ""
1799
 
1800
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:23
1801
+ msgid "Audio Post options"
1802
+ msgstr "تنظیمات نوشته صوتی"
1803
+
1804
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:28
1805
+ msgid "Audio file (MP3 or ogg)"
1806
+ msgstr "فایل صوتی (MP3 یا OGG)"
1807
 
1808
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:29
1809
+ msgid "Please upload an MP3 file for self hosted audio player."
1810
+ msgstr "لطفا یک فایل MP3 را برای پخش کننده صدای محلی بارگذاری کنید."
1811
 
1812
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:35
1813
+ msgid "Audio URL (oEmbed)"
1814
+ msgstr "آدرس فایل صوتی (oEmbed)"
1815
 
1816
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:36
1817
+ msgid "SoundCloud, MixCloud, ReverbNation, Spotify link or iFrame code."
1818
+ msgstr ""
 
1819
 
1820
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:43
1821
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:50
1822
+ msgid "Player Skin"
1823
+ msgstr "نمای پخش کننده"
1824
 
1825
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:44
1826
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:51
1827
+ msgid "Specifies the skin for audio player."
1828
+ msgstr "نمای پخش کننده صدا را مشخص می کند."
 
 
 
 
1829
 
1830
+ #: admin/includes/metaboxes/metabox-fields-post-audio.php:50
1831
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:57
1832
+ msgid "Default (set in theme options)"
1833
+ msgstr "پیش فرض (تنظیم شده در تنظیمات پوسته)"
1834
 
1835
+ #: admin/includes/metaboxes/metabox-fields-post-gallery.php:24
1836
+ msgid "Gallery Post options"
1837
+ msgstr "تنظیمات نوشته گالری"
1838
 
1839
+ #: admin/includes/metaboxes/metabox-fields-post-gallery.php:29
1840
+ msgid "The Gallery Images"
1841
+ msgstr "تصاویر گالری"
1842
 
1843
+ #: admin/includes/metaboxes/metabox-fields-post-quote.php:23
1844
+ msgid "Quote Post options"
1845
+ msgstr "تنظیمات نوشته نقل قول"
1846
 
1847
+ #: admin/includes/metaboxes/metabox-fields-post-quote.php:28
1848
+ msgid "Source Name"
1849
+ msgstr "نام منبع"
 
 
1850
 
1851
+ #: admin/includes/metaboxes/metabox-fields-post-quote.php:29
1852
+ msgid "The Source name"
1853
+ msgstr "نام منبع"
 
1854
 
1855
+ #: admin/includes/metaboxes/metabox-fields-post-quote.php:36
1856
+ msgid "Source URL"
1857
+ msgstr "URL منبع"
 
 
 
 
1858
 
1859
+ #: admin/includes/metaboxes/metabox-fields-post-quote.php:37
1860
+ msgid "Add the URL"
1861
+ msgstr "افزودن URL"
1862
+
1863
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:23
1864
+ msgid "Video Post options"
1865
+ msgstr "تنظیمات نوشته ویدیویی"
1866
 
1867
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:28
1868
+ #: includes/elementor/widgets/video.php:115 includes/elements/video.php:106
1869
+ msgid "Video file"
1870
+ msgstr "فایل ویدیو"
1871
 
1872
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:29
1873
+ msgid "Please upload an MP4/OGG/WEBM file for self hosted video player."
 
1874
  msgstr ""
1875
+ "لطفا یک فایل با فرمت MP4/OGG/WEBM برای پخش کننده ویدیوی محلی بارگذاری کنید."
1876
 
1877
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:35
1878
+ msgid "Poster image"
1879
+ msgstr "تصویر پوستر"
1880
 
1881
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:36
1882
+ msgid "Please specify an image as a poster for self hosted video player."
 
 
1883
  msgstr ""
1884
+ "لطفا یک تصویر را به عنوان پوستر برای پخش کننده ویدیوی محلی انتخاب کنید."
1885
 
1886
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:42
1887
+ msgid "Video URL (oEmbed)"
1888
+ msgstr "آدرس ویدیو (oEmbed)"
1889
 
1890
+ #: admin/includes/metaboxes/metabox-fields-post-video.php:43
1891
+ msgid ""
1892
+ "Youtube, Vimeo, TED, SmugMug, Kickstarter, Hulu, Flickr, DailyMotion, Blip, "
1893
+ "Animoto, Wistia link or iFrame code."
1894
  msgstr ""
1895
 
1896
+ #: auxin-elements.php:54
1897
+ msgid "Page Builder by SiteOrigin"
 
 
 
 
 
 
1898
  msgstr ""
1899
 
1900
+ #: auxin-elements.php:64
1901
+ #, fuzzy
1902
+ msgid "Phlox Pro"
1903
+ msgstr "[فلوکس] کد"
1904
 
1905
+ #: auxin-elements.php:72
1906
+ msgid "Phlox"
1907
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1908
 
1909
+ #. Plugin Name of the plugin/theme
1910
+ msgid "Phlox Core Elements"
1911
+ msgstr ""
1912
 
1913
+ #: includes/classes/class-auxels-admin-assets.php:64
1914
+ msgid "This demo has been successfully imported."
1915
  msgstr ""
1916
 
1917
+ #: includes/classes/class-auxels-admin-assets.php:65
1918
+ msgid "Whoops! There was a problem in demo importing."
1919
+ msgstr ""
 
1920
 
1921
+ #: includes/classes/class-auxels-admin-assets.php:66
1922
+ msgid "Processing: Download"
1923
  msgstr ""
1924
 
1925
+ #: includes/classes/class-auxels-admin-assets.php:67
1926
+ #: includes/classes/class-auxin-welcome.php:1310
1927
+ #: includes/classes/class-auxin-welcome.php:1433
1928
+ #: includes/classes/class-auxin-welcome.php:1742
1929
+ #, fuzzy
1930
+ msgid "Continue"
1931
+ msgstr "دربرگیرنده"
1932
+
1933
+ #: includes/classes/class-auxels-admin-assets.php:68
1934
+ #: includes/classes/class-auxin-welcome.php:522
1935
+ #: includes/classes/class-auxin-welcome.php:1508
1936
+ #, fuzzy
1937
+ msgid "Install Plugins"
1938
+ msgstr "افزونه های فعال"
1939
 
1940
+ #: includes/classes/class-auxels-admin-assets.php:69
1941
+ #: includes/classes/class-auxin-welcome.php:1599
1942
+ #, fuzzy
1943
+ msgid "Import Content"
1944
+ msgstr "محتوای جعبه ای"
1945
+
1946
+ #: includes/classes/class-auxels-admin-assets.php:70
1947
+ msgid "Installing..."
1948
  msgstr ""
1949
 
1950
+ #: includes/classes/class-auxels-admin-assets.php:71
1951
+ msgid "Please do not refresh or leave the page during the wizard's process."
1952
+ msgstr ""
1953
 
1954
+ #: includes/classes/class-auxels-archive-menu-links.php:24
1955
+ #, fuzzy
1956
+ msgid "Archive Pages"
1957
+ msgstr "افزونه های فعال"
1958
 
1959
+ #: includes/classes/class-auxels-archive-menu-links.php:57
1960
+ msgid "Archive"
1961
+ msgstr ""
 
1962
 
1963
+ #: includes/classes/class-auxels-archive-menu-links.php:72
1964
+ #: includes/classes/class-auxin-welcome.php:426
1965
+ #, fuzzy
1966
+ msgid "Select All"
1967
+ msgstr "نوع گالری را انتخاب کنید."
1968
 
1969
+ #: includes/classes/class-auxels-archive-menu-links.php:75
1970
+ #, fuzzy
1971
+ msgid "Add to Menu"
1972
+ msgstr "افزودن بخش"
1973
 
1974
+ #: includes/classes/class-auxels-envato-elements.php:58
1975
+ #: includes/classes/class-auxels-envato-elements.php:83
1976
+ msgid "Email verified."
1977
  msgstr ""
1978
 
1979
+ #: includes/classes/class-auxels-envato-elements.php:64
1980
+ msgid "Email is required!"
1981
+ msgstr ""
1982
 
1983
+ #: includes/classes/class-auxels-envato-elements.php:89
1984
+ #: includes/classes/class-auxels-envato-elements.php:135
1985
+ msgid "Something went wrong. Please try again later"
1986
  msgstr ""
1987
 
1988
+ #: includes/classes/class-auxels-envato-elements.php:106
1989
+ #: includes/classes/class-auxels-envato-elements.php:127
1990
+ msgid "Token is valid."
1991
+ msgstr ""
1992
 
1993
+ #: includes/classes/class-auxels-envato-elements.php:129
1994
+ msgid " Token is not valid."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1995
  msgstr ""
1996
 
1997
+ #: includes/classes/class-auxels-import-parser.php:42
1998
+ #: includes/classes/class-auxels-import-parser.php:74
1999
+ #: includes/classes/class-auxels-import-parser.php:82
2000
+ msgid "There was an error when reading this WXR file"
2001
+ msgstr "خطایی هنگام خواندن این فایل WXR رخ داده است."
2002
 
2003
+ #: includes/classes/class-auxels-import-parser.php:43
2004
+ msgid ""
2005
+ "Details are shown above. The importer will now try again with a different "
2006
+ "parser..."
2007
  msgstr ""
2008
+ "جزئیات در بالا نمایش داده شده اند. هم اکنون درون ریز با استفاده از تجزیه "
2009
+ "کننده ی دیگری دوباره تلاش خواهد کرد..."
2010
 
2011
+ #: includes/classes/class-auxels-import-parser.php:86
2012
+ #: includes/classes/class-auxels-import-parser.php:91
2013
+ #: includes/classes/class-auxels-import-parser.php:148
2014
+ #: includes/classes/class-auxels-import-parser.php:249
2015
+ msgid ""
2016
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
2017
+ msgstr "این فایل شبیه یک فایل WXR نیست، شماره نسخه WXR گم شده/نامعتبر است."
2018
 
2019
+ #: includes/classes/class-auxels-import.php:37
2020
+ msgid "Include theme options"
2021
+ msgstr "شمال شدن تنظیمات پوسته"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2022
 
2023
+ #: includes/classes/class-auxin-admin-dashboard.php:38
2024
+ #, fuzzy
2025
+ msgid "%s Status"
2026
+ msgstr "وضعیت سیستم"
 
 
 
 
 
 
 
 
 
 
 
 
 
2027
 
2028
+ #: includes/classes/class-auxin-demo-importer.php:76
2029
+ #, fuzzy
2030
+ msgid "Import content"
2031
+ msgstr "محتوای خود را وارد کنید."
2032
 
2033
+ #: includes/classes/class-auxin-demo-importer.php:108
2034
+ msgid "Page has been successfully generated."
2035
  msgstr ""
2036
 
2037
+ #: includes/classes/class-auxin-demo-importer.php:111
2038
+ #, fuzzy
2039
+ msgid "Edit Page"
2040
+ msgstr "صفحه ورود"
2041
 
2042
+ #: includes/classes/class-auxin-demo-importer.php:138
2043
+ msgid "Template content has been successfully imported."
2044
  msgstr ""
2045
 
2046
+ #: includes/classes/class-auxin-demo-importer.php:146
2047
+ #: includes/classes/class-auxin-demo-importer.php:165
2048
+ #: includes/classes/class-auxin-welcome.php:809
2049
+ msgid "Copy to clipboard"
2050
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2051
 
2052
+ #: includes/classes/class-auxin-demo-importer.php:155
2053
+ msgid "Import to my templates"
2054
+ msgstr ""
 
 
 
 
 
 
 
 
2055
 
2056
+ #: includes/classes/class-auxin-demo-importer.php:182
2057
+ msgid "Process failed!."
2058
+ msgstr ""
 
 
 
 
 
 
 
 
 
2059
 
2060
+ #: includes/classes/class-auxin-demo-importer.php:210
2061
+ msgid "Invalid Inputs."
2062
+ msgstr ""
2063
 
2064
+ #: includes/classes/class-auxin-demo-importer.php:241
2065
+ msgid "Step Failed!"
2066
+ msgstr ""
2067
 
2068
+ #: includes/classes/class-auxin-demo-importer.php:248
2069
+ msgid "Error in getting data!"
2070
+ msgstr ""
2071
 
2072
+ #: includes/classes/class-auxin-demo-importer.php:271
2073
+ msgid "Downloading Medias"
2074
  msgstr ""
2075
 
2076
+ #: includes/classes/class-auxin-demo-importer.php:277
2077
+ msgid "Importing Media"
2078
+ msgstr ""
 
2079
 
2080
+ #: includes/classes/class-auxin-demo-importer.php:293
2081
+ #: includes/classes/class-auxin-demo-importer.php:1224
2082
+ msgid "Importing Users"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2083
  msgstr ""
2084
 
2085
+ #: includes/classes/class-auxin-demo-importer.php:298
2086
+ #: includes/classes/class-auxin-demo-importer.php:310
2087
+ msgid "Importing Contents"
2088
+ msgstr ""
2089
 
2090
+ #: includes/classes/class-auxin-demo-importer.php:322
2091
+ #, fuzzy
2092
+ msgid "Importing Options"
2093
+ msgstr "تنظیمات طراحی"
2094
 
2095
+ #: includes/classes/class-auxin-demo-importer.php:339
2096
+ #: includes/classes/class-auxin-demo-importer.php:545
2097
+ msgid "Importing Menus"
2098
+ msgstr ""
2099
 
2100
+ #: includes/classes/class-auxin-demo-importer.php:345
2101
+ msgid "Importing Widgets"
2102
+ msgstr ""
2103
 
2104
+ #: includes/classes/class-auxin-demo-importer.php:425
2105
+ msgid "Retrieve Body Fails"
2106
+ msgstr ""
2107
 
2108
+ #: includes/classes/class-auxin-demo-importer.php:611
2109
+ msgid "Importing Sliders"
2110
  msgstr ""
2111
 
2112
+ #: includes/classes/class-auxin-demo-importer.php:1287
2113
+ msgid "Preparing Site ..."
2114
+ msgstr ""
2115
 
2116
+ #: includes/classes/class-auxin-demo-importer.php:1302
2117
+ msgid "All steps are successful"
2118
+ msgstr ""
2119
 
2120
+ #: includes/classes/class-auxin-import.php:101
2121
+ #, fuzzy
2122
+ msgid "Auxin Importer"
2123
+ msgstr "جدول قیمت اکسین"
2124
 
2125
+ #: includes/classes/class-auxin-import.php:102
2126
+ msgid "Import demo data for %s theme."
2127
+ msgstr ""
 
 
 
 
 
2128
 
2129
+ #: includes/classes/class-auxin-import.php:141
2130
+ msgid "Importing Demo Data"
2131
+ msgstr ""
 
 
 
 
2132
 
2133
+ #: includes/classes/class-auxin-import.php:171
2134
+ msgid ""
2135
+ "In order to import the demo data, you need to have \"WordPress Importer\" "
2136
+ "plugin installed. Please %s install and activate \"WordPress Importer\"%s "
2137
+ "and then try importing the demo data again."
2138
+ msgstr ""
2139
 
2140
+ #: includes/classes/class-auxin-import.php:189
2141
+ msgid ""
2142
+ "The demo that you have requested is not valid. Please try to %s select a "
2143
+ "demo %s to import."
2144
+ msgstr ""
2145
 
2146
+ #: includes/classes/class-auxin-import.php:197
2147
+ msgid "Please %s select a demo %s to import."
2148
+ msgstr ""
2149
 
2150
+ #: includes/classes/class-auxin-permalink.php:198
2151
+ #, fuzzy
2152
+ msgid "%s Permalink Setting"
2153
+ msgstr "پیوندهای یکتای وردپرس"
2154
 
2155
+ #: includes/classes/class-auxin-permalink.php:318
2156
+ #: includes/classes/class-auxin-permalink.php:348
2157
+ msgid "%s base"
2158
+ msgstr ""
 
 
 
 
 
2159
 
2160
+ #: includes/classes/class-auxin-permalink.php:330
2161
+ msgid "%s archive base"
2162
+ msgstr ""
 
2163
 
2164
+ #: includes/classes/class-auxin-permalink.php:391
2165
+ msgid ""
2166
+ "These settings control the permalinks used for theme's post types. These "
2167
+ "settings only apply when <strong>not using \"default\" permalink structure.</"
2168
+ "strong>."
2169
+ msgstr ""
2170
 
2171
+ #: includes/classes/class-auxin-permalink.php:402
2172
+ msgid "sample-post"
2173
  msgstr ""
2174
 
2175
+ #: includes/classes/class-auxin-plugin-requirements.php:74
2176
+ msgid "%s plugin has been disabled automatically due to following reason:"
2177
+ msgstr ""
 
 
2178
 
2179
+ #: includes/classes/class-auxin-plugin-requirements.php:97
2180
+ #, fuzzy
2181
+ msgid "Note for admin"
2182
+ msgstr "باز و بسته شونده یا آکاردئون"
2183
 
2184
+ #: includes/classes/class-auxin-plugin-requirements.php:225
2185
+ msgid ""
2186
+ "%s plugin is required in order to use this plugin. Please install and "
2187
+ "activate the plugin."
2188
  msgstr ""
2189
 
2190
+ #: includes/classes/class-auxin-plugin-requirements.php:226
2191
+ #: includes/classes/class-auxin-plugin-requirements.php:327
2192
+ #: includes/classes/class-auxin-plugin-requirements.php:352
2193
+ msgid "How to upgrade"
2194
+ msgstr ""
2195
 
2196
+ #: includes/classes/class-auxin-plugin-requirements.php:246
2197
+ msgid ""
2198
+ "The plugin requires %s plugin version %s or higher (current version is %s). "
2199
+ "Please update it to the latest version."
2200
+ msgstr ""
2201
 
2202
+ #: includes/classes/class-auxin-plugin-requirements.php:326
2203
+ msgid ""
2204
+ "%s theme requires %s plugin version %s or higher in order to function "
2205
+ "property. Your current plugin version is %s, please update it to latest "
2206
+ "version."
2207
+ msgstr ""
2208
 
2209
+ #: includes/classes/class-auxin-plugin-requirements.php:351
2210
+ msgid ""
2211
+ "The plugin requires %s theme version %s or higher in order to function "
2212
+ "property. Your current theme version is %s, please %s update to latest "
2213
+ "version %s."
2214
+ msgstr ""
2215
 
2216
+ #: includes/classes/class-auxin-plugin-requirements.php:363
2217
+ msgid "%s path while checking the availability of theme not found."
2218
+ msgstr ""
2219
 
2220
+ #: includes/classes/class-auxin-plugin-requirements.php:368
2221
+ msgid ""
2222
+ "%s function callback while checking the availability of theme not found."
2223
+ msgstr ""
 
 
 
 
 
2224
 
2225
+ #: includes/classes/class-auxin-plugin-requirements.php:405
2226
+ #, fuzzy
2227
+ msgid ""
2228
+ "PHP version %s or above is required for this plugin while your the current "
2229
+ "PHP version is %s."
2230
+ msgstr "برای افزونه \"المان های اکسین\" PHP نسخه 5.3 یا بالاتر نیاز است."
2231
 
2232
+ #: includes/classes/class-auxin-siteorigin-widget.php:225
2233
+ #: includes/classes/class-auxin-widget.php:78
2234
+ msgid "The callback for widget does not exists."
2235
+ msgstr "تابع فراخوانی برای ابزارک وجود ندارد."
 
2236
 
2237
+ #: includes/classes/class-auxin-svg-support.php:106
2238
+ msgid ""
2239
+ "Sorry, this file couldn't be sanitized so for security reasons wasn't "
2240
+ "uploaded"
2241
  msgstr ""
2242
 
2243
+ #: includes/classes/class-auxin-svg-support.php:190
2244
+ #, fuzzy
2245
+ msgid "Full Size"
2246
+ msgstr "کامل"
 
 
2247
 
2248
+ #: includes/classes/class-auxin-svg-support.php:191
2249
+ #: includes/elements/before-after.php:103 includes/elements/staff.php:112
2250
+ #: includes/elements/text.php:431
2251
+ msgid "Thumbnail"
2252
+ msgstr "بندانگشتی"
 
 
 
 
 
 
2253
 
2254
+ #. translators: %s: title of menu item which is invalid
2255
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:103
2256
+ msgid "%s (Invalid)"
2257
+ msgstr ""
2258
 
2259
+ #. translators: %s: title of menu item in draft status
2260
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:107
2261
+ #, fuzzy
2262
+ msgid "%s (Pending)"
2263
+ msgstr "صعودی"
 
2264
 
2265
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:122
2266
+ msgid "sub item"
2267
+ msgstr ""
 
2268
 
2269
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:127
2270
+ msgid "Mega"
 
2271
  msgstr ""
2272
 
2273
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:128
2274
+ #, fuzzy
2275
+ msgid "Column"
2276
+ msgstr "ستون ها"
2277
 
2278
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:142
2279
+ #, fuzzy
2280
+ msgid "Move up"
2281
+ msgstr "حرکت در هر صفحه"
2282
 
2283
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:155
2284
+ msgid "Move down"
2285
+ msgstr ""
2286
 
2287
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:157
2288
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:159
2289
+ msgid "Edit Menu Item"
2290
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2291
 
2292
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:168
2293
+ #: includes/elementor/modules/dynamic-tags/author-url.php:54
2294
+ msgid "URL"
2295
+ msgstr ""
2296
 
2297
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:175
2298
+ #, fuzzy
2299
+ msgid "Navigation Label"
2300
+ msgstr "نوع ناوبری"
2301
 
2302
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:181
2303
+ msgid "Title Attribute"
2304
+ msgstr ""
2305
 
2306
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:188
2307
+ msgid "Open link in a new window/tab"
2308
+ msgstr ""
2309
 
2310
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:193
2311
+ msgid "CSS Classes (optional)"
2312
+ msgstr ""
2313
 
2314
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:199
2315
+ msgid "Link Relationship (XFN)"
2316
+ msgstr ""
 
2317
 
2318
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:205
2319
+ #: includes/classes/class-auxin-welcome.php:431
2320
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:181
2321
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:90
2322
+ #: includes/elementor/widgets/heading-modern.php:309
2323
+ #: includes/elementor/widgets/heading-modern.php:316
2324
+ #: includes/elementor/widgets/heading-modern.php:962
2325
+ #: includes/elementor/widgets/theme-elements/logo.php:546
2326
+ #: includes/elements/custom-list.php:138
2327
+ #, fuzzy
2328
+ msgid "Description"
2329
+ msgstr "تنظیمات طراحی"
2330
 
2331
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:207
2332
+ msgid ""
2333
+ "The description will be displayed in the menu if the current theme supports "
2334
+ "it."
2335
+ msgstr ""
2336
 
2337
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:293
2338
+ #: includes/elementor/modules/dynamic-tags/user-info.php:75
2339
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:310
2340
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:329
2341
+ #, fuzzy
2342
+ msgid "Choose"
2343
+ msgstr "انتخاب .."
2344
 
2345
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:345
2346
+ msgid "Move"
2347
+ msgstr ""
2348
 
2349
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:346
2350
+ msgid "Up one"
2351
  msgstr ""
2352
 
2353
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:347
2354
+ msgid "Down one"
2355
+ msgstr ""
 
 
 
2356
 
2357
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:350
2358
+ #, fuzzy
2359
+ msgid "To the top"
2360
+ msgstr "وسط بالا"
2361
 
2362
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:357
2363
+ #, fuzzy
2364
+ msgid "Original: %s"
2365
+ msgstr "اصلی"
2366
 
2367
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:370
2368
+ msgid "Remove"
2369
+ msgstr ""
2370
 
2371
+ #: includes/classes/class-auxin-walker-nav-menu-back.php:371
2372
+ #: includes/classes/class-auxin-welcome.php:1313
2373
+ #: includes/classes/class-auxin-welcome.php:1341
2374
+ #: includes/classes/class-auxin-welcome.php:1436
2375
+ #: includes/classes/class-auxin-welcome.php:1510
2376
+ #: includes/classes/class-auxin-welcome.php:1601
2377
+ #: includes/classes/class-auxin-welcome.php:1744
2378
+ msgid "Cancel"
2379
+ msgstr ""
2380
 
2381
+ #: includes/classes/class-auxin-welcome-sections.php:81
2382
+ msgid "Updates"
2383
+ msgstr ""
2384
 
2385
+ #: includes/classes/class-auxin-welcome-sections.php:93
2386
+ msgid "Template Kits"
2387
  msgstr ""
2388
 
2389
+ #: includes/classes/class-auxin-welcome-sections.php:131
2390
+ #, fuzzy
2391
+ msgid "Plugins"
2392
+ msgstr "افزونه های فعال"
2393
+
2394
+ #: includes/classes/class-auxin-welcome-sections.php:148
2395
+ msgid "Feedback"
2396
+ msgstr "بازخورد"
2397
 
2398
+ #: includes/classes/class-auxin-welcome-sections.php:167
2399
+ msgid "System Status"
2400
+ msgstr "وضعیت سیستم"
2401
 
2402
+ #: includes/classes/class-auxin-welcome-sections.php:183
2403
+ msgid "Go Pro"
2404
+ msgstr ""
 
 
2405
 
2406
+ #: includes/classes/class-auxin-welcome-sections.php:210
2407
+ #, fuzzy
2408
+ msgid "How likely are you to recommend %s to a friend?"
2409
+ msgstr "چه میزان فلوکس را به دوستان خود پیشنهاد می دهید؟"
2410
 
2411
+ #: includes/classes/class-auxin-welcome-sections.php:223
2412
+ msgid "Don't like it"
2413
  msgstr ""
2414
 
2415
+ #: includes/classes/class-auxin-welcome-sections.php:224
2416
+ msgid "Like it so much"
 
 
2417
  msgstr ""
2418
 
2419
+ #: includes/classes/class-auxin-welcome-sections.php:232
2420
+ msgid ""
2421
+ "Thanks for using Phlox theme. If you are enjoying this theme, please support "
2422
+ "us by %s submitting 5 star rate here%s. That would be a huge help for us to "
2423
+ "continue developing this theme."
2424
  msgstr ""
2425
 
2426
+ #: includes/classes/class-auxin-welcome-sections.php:238
2427
+ msgid "Please explain why you gave this score (optional)"
2428
+ msgstr "لطفا در مورد امتیاز داده شده توضیحاتی دهید (دلخواه)"
2429
 
2430
+ #: includes/classes/class-auxin-welcome-sections.php:241
2431
+ msgid ""
2432
+ "Please do not use this form to get support, in this case please check the %s "
2433
+ "help section %s"
2434
  msgstr ""
2435
+ "لطفا از این فرم به منظور دریافت خدمات پشتیبانی استفاده نکنید، برای دریافت "
2436
+ "پشتیبانی لطفا %s بخش کمک %s را ببینید."
2437
 
2438
+ #: includes/classes/class-auxin-welcome-sections.php:248
2439
+ #: includes/elementor/widgets/theme-elements/modern-search.php:124
2440
+ #: includes/elements/contact-form.php:228
2441
+ msgid "Submit"
2442
+ msgstr "تایید"
 
 
2443
 
2444
+ #: includes/classes/class-auxin-welcome-sections.php:252
2445
+ msgid "Submitting your feedback .."
2446
+ msgstr "در حال ثبت بازخورد شما .."
2447
 
2448
+ #: includes/classes/class-auxin-welcome-sections.php:276
2449
+ msgid "Thanks for your feedback"
2450
+ msgstr "از بازخورد شما متشکریم."
2451
 
2452
+ #: includes/classes/class-auxin-welcome-sections.php:278
2453
+ msgid "Please try again and fill up at least the feedback field."
2454
+ msgstr "لطفا دوباره تلاش کنید و حداقل فیلد بازخورد را تکمیل کنید."
2455
 
2456
+ #: includes/classes/class-auxin-welcome-sections.php:322
2457
+ msgid "Changelog"
2458
+ msgstr ""
2459
 
2460
+ #: includes/classes/class-auxin-welcome-sections.php:324
2461
+ msgid "Follow Us"
2462
+ msgstr ""
2463
 
2464
+ #: includes/classes/class-auxin-welcome-sections.php:326
2465
+ msgid "Follow us on Twitter"
2466
  msgstr ""
2467
 
2468
+ #: includes/classes/class-auxin-welcome-sections.php:327
2469
+ #, fuzzy
2470
+ msgid "Follow us on Facebook"
2471
+ msgstr "[فلوکس] خوراک فیسبوک سفارشی"
2472
 
2473
+ #: includes/classes/class-auxin-welcome-sections.php:328
2474
+ msgid "Follow us on Instagram"
2475
  msgstr ""
2476
 
2477
+ #: includes/classes/class-auxin-welcome-sections.php:329
2478
+ msgid "Follow us on Envato"
2479
  msgstr ""
2480
 
2481
+ #: includes/classes/class-auxin-welcome-sections.php:330
2482
+ msgid "Subscribe to Phlox YouTube channel"
2483
+ msgstr ""
2484
 
2485
+ #: includes/classes/class-auxin-welcome.php:267
2486
+ #, fuzzy
2487
+ msgid "Dashboard"
2488
+ msgstr "خط چین"
2489
 
2490
+ #: includes/classes/class-auxin-welcome.php:294
2491
+ msgid "Note:"
2492
  msgstr ""
2493
 
2494
+ #: includes/classes/class-auxin-welcome.php:294
2495
+ msgid ""
2496
+ "You are recommended to install Phlox exclusive plugins in order to enable "
2497
+ "all features."
 
 
2498
  msgstr ""
2499
 
2500
+ #: includes/classes/class-auxin-welcome.php:390
2501
+ #, fuzzy
2502
+ msgid "Recommended Plugins"
2503
+ msgstr "افزونه های فعال"
2504
 
2505
+ #: includes/classes/class-auxin-welcome.php:391
2506
+ msgid ""
2507
+ "The following is a list of best integrated plugins for %s theme, you can "
2508
+ "install them from here and add or remove them later on WordPress plugins "
2509
+ "page."
2510
  msgstr ""
2511
 
2512
+ #: includes/classes/class-auxin-welcome.php:392
2513
+ msgid ""
2514
+ "We recommend you to install only the plugins under \"Essential\" tab, and "
2515
+ "avoid installing all of plugins."
2516
+ msgstr ""
2517
 
2518
+ #: includes/classes/class-auxin-welcome.php:412
2519
+ #: includes/classes/class-auxin-welcome.php:732
2520
+ #: includes/elements/popular-posts-widget.php:388
2521
+ msgid "Recent"
2522
+ msgstr "اخیر"
2523
 
2524
+ #: includes/classes/class-auxin-welcome.php:430
2525
+ #: includes/elementor/widgets/testimonial.php:346
2526
+ #: includes/elements/about-widget.php:58
2527
+ msgid "Name"
2528
+ msgstr "نام"
2529
 
2530
+ #: includes/classes/class-auxin-welcome.php:432
2531
+ #, fuzzy
2532
+ msgid "Status"
2533
+ msgstr "وضعیت سیستم"
2534
 
2535
+ #: includes/classes/class-auxin-welcome.php:433
2536
+ #, fuzzy
2537
+ msgid "Version"
2538
+ msgstr "نسخه وردپرس"
2539
 
2540
+ #: includes/classes/class-auxin-welcome.php:498
2541
+ #, fuzzy
2542
+ msgid "Not Installed"
2543
+ msgstr "SUHOSIN نصب شده"
2544
 
2545
+ #: includes/classes/class-auxin-welcome.php:500
2546
+ msgid "Not Activated"
2547
+ msgstr ""
 
2548
 
2549
+ #: includes/classes/class-auxin-welcome.php:530
2550
+ msgid ""
2551
+ "Good news! All plugins are already installed and up to date. Please continue."
2552
+ msgstr ""
2553
 
2554
+ #: includes/classes/class-auxin-welcome.php:626
2555
+ msgid "No Slug Found"
2556
+ msgstr ""
2557
 
2558
+ #: includes/classes/class-auxin-welcome.php:645
2559
+ #, fuzzy
2560
+ msgid "Activating"
2561
+ msgstr "بخش فعال"
2562
 
2563
+ #: includes/classes/class-auxin-welcome.php:660
2564
+ msgid "Updating"
2565
  msgstr ""
2566
 
2567
+ #: includes/classes/class-auxin-welcome.php:675
2568
+ msgid "Installing"
2569
+ msgstr ""
 
2570
 
2571
+ #: includes/classes/class-auxin-welcome.php:686
2572
+ msgid "Activated"
2573
+ msgstr ""
2574
 
2575
+ #: includes/classes/class-auxin-welcome.php:745
2576
+ msgid "Search Templates"
2577
+ msgstr ""
2578
 
2579
+ #: includes/classes/class-auxin-welcome.php:752
2580
+ #, fuzzy
2581
+ msgid ""
2582
+ "An error occurred while downloading the list of templates. Please try again "
2583
+ "later."
2584
+ msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
2585
 
2586
+ #: includes/classes/class-auxin-welcome.php:796
2587
+ msgid "Download"
2588
  msgstr ""
2589
 
2590
+ #: includes/classes/class-auxin-welcome.php:817
2591
+ #: includes/classes/class-auxin-welcome.php:932
2592
+ msgid "Unlock"
2593
+ msgstr ""
2594
 
2595
+ #: includes/classes/class-auxin-welcome.php:829
2596
+ #: includes/classes/class-auxin-welcome.php:943
2597
+ #: includes/classes/class-auxin-welcome.php:1231
2598
+ #: includes/classes/class-auxin-welcome.php:1630
2599
+ msgid "Preview"
2600
  msgstr ""
2601
 
2602
+ #: includes/classes/class-auxin-welcome.php:852
2603
+ msgid "Save to my templates"
2604
+ msgstr ""
2605
 
2606
+ #: includes/classes/class-auxin-welcome.php:863
2607
+ #, fuzzy
2608
+ msgid "Create new page"
2609
+ msgstr "صفحه جاری"
2610
 
2611
+ #: includes/classes/class-auxin-welcome.php:903
2612
+ #, fuzzy
2613
+ msgid ""
2614
+ "An error occurred while downloading the list of demo sites. Please try again "
2615
+ "later."
2616
+ msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
2617
 
2618
+ #: includes/classes/class-auxin-welcome.php:927
2619
+ #: includes/classes/class-auxin-welcome.php:1338
2620
+ msgid "Uninstall"
2621
+ msgstr ""
2622
 
2623
+ #: includes/classes/class-auxin-welcome.php:927
2624
+ #: includes/classes/class-auxin-welcome.php:1242
2625
+ msgid "Import"
2626
  msgstr ""
2627
 
2628
+ #: includes/classes/class-auxin-welcome.php:1030
2629
+ msgid "You have already the latest version."
2630
  msgstr ""
2631
 
2632
+ #: includes/classes/class-auxin-welcome.php:1034
2633
+ msgid "New updates are available."
2634
  msgstr ""
2635
 
2636
+ #: includes/classes/class-auxin-welcome.php:1035
2637
+ msgid ""
2638
+ "The following items require update, click update button to update them to "
2639
+ "the latest version."
2640
+ msgstr ""
2641
 
2642
+ #: includes/classes/class-auxin-welcome.php:1044
2643
+ msgid "Last checked "
2644
+ msgstr ""
2645
 
2646
+ #: includes/classes/class-auxin-welcome.php:1046
2647
+ msgid "ago"
2648
  msgstr ""
2649
 
2650
+ #: includes/classes/class-auxin-welcome.php:1066
2651
+ #: includes/classes/class-auxin-welcome.php:1096
2652
+ #: includes/classes/class-auxin-welcome.php:1484
2653
+ msgid "Ready to update"
2654
+ msgstr ""
2655
 
2656
+ #: includes/classes/class-auxin-welcome.php:1116
2657
+ msgid "Update Now"
2658
+ msgstr ""
2659
 
2660
+ #: includes/classes/class-auxin-welcome.php:1119
2661
+ msgid "Check Again"
2662
+ msgstr ""
2663
 
2664
+ #: includes/classes/class-auxin-welcome.php:1146
2665
+ msgid "You can't remove this demo."
2666
+ msgstr ""
2667
 
2668
+ #: includes/classes/class-auxin-welcome.php:1225
2669
+ msgid "Done!"
 
 
2670
  msgstr ""
2671
 
2672
+ #: includes/classes/class-auxin-welcome.php:1226
2673
+ msgid "Demo has been successfully uninstalled."
2674
+ msgstr ""
2675
 
2676
+ #: includes/classes/class-auxin-welcome.php:1288
2677
+ #: public/includes/frontend-ajax.php:154 public/includes/frontend-ajax.php:210
2678
+ msgid "An Error Occurred!"
2679
+ msgstr ""
2680
 
2681
+ #: includes/classes/class-auxin-welcome.php:1302
2682
+ #, fuzzy
2683
+ msgid "Notice"
2684
+ msgstr "نکته"
2685
 
2686
+ #: includes/classes/class-auxin-welcome.php:1304
2687
+ msgid ""
2688
+ "For better and faster result, it's recommended to install the demo on a "
2689
+ "clean WordPress website."
2690
+ msgstr ""
2691
 
2692
+ #: includes/classes/class-auxin-welcome.php:1330
2693
+ msgid "Warning!"
2694
+ msgstr ""
2695
 
2696
+ #: includes/classes/class-auxin-welcome.php:1332
2697
+ msgid "This process will erase all images, posts and settings of this demo..."
2698
+ msgstr ""
2699
 
2700
+ #: includes/classes/class-auxin-welcome.php:1337
2701
+ msgid "Are you sure you want to uninstall this demo?"
2702
+ msgstr ""
2703
 
2704
+ #: includes/classes/class-auxin-welcome.php:1347
2705
+ #: includes/classes/class-auxin-welcome.php:1607
2706
+ msgid "Please wait, this may take several minutes .."
2707
+ msgstr ""
2708
 
2709
+ #: includes/classes/class-auxin-welcome.php:1409
2710
+ msgid "An error occurred!"
2711
+ msgstr ""
2712
 
2713
+ #: includes/classes/class-auxin-welcome.php:1411
2714
+ msgid "Method not exist!"
2715
+ msgstr ""
2716
 
2717
+ #: includes/classes/class-auxin-welcome.php:1425
2718
+ #: includes/classes/class-auxin-welcome.php:1461
2719
+ msgid "Required Plugins for this demo."
2720
+ msgstr ""
2721
 
2722
+ #: includes/classes/class-auxin-welcome.php:1427
2723
+ msgid ""
2724
+ "For better and faster install process it's recommended to install demo on a "
2725
+ "clean WordPress website."
2726
+ msgstr ""
2727
 
2728
+ #: includes/classes/class-auxin-welcome.php:1462
2729
+ msgid "The following plugins are required to be installed for this demo."
2730
+ msgstr ""
 
2731
 
2732
+ #: includes/classes/class-auxin-welcome.php:1476
2733
+ #, fuzzy
2734
+ msgid "Ready to install"
2735
+ msgstr "تکرار افقی"
2736
 
2737
+ #: includes/classes/class-auxin-welcome.php:1480
2738
+ #, fuzzy
2739
+ msgid "Not activated"
2740
+ msgstr "اصلا"
2741
 
2742
+ #: includes/classes/class-auxin-welcome.php:1526
2743
+ msgid "Import Demo Content of Phlox Theme."
2744
+ msgstr ""
2745
 
2746
+ #: includes/classes/class-auxin-welcome.php:1531
2747
+ msgid "Complete pre-build Website"
2748
+ msgstr ""
2749
 
2750
+ #: includes/classes/class-auxin-welcome.php:1536
2751
+ #, fuzzy
2752
+ msgid "Import media (images, videos, etc.)"
2753
+ msgstr "نمایش رسانه های نوشته (تصویر، ویدیو، غیره)"
2754
 
2755
+ #: includes/classes/class-auxin-welcome.php:1543
2756
+ msgid "Selected Data Only"
2757
+ msgstr ""
 
2758
 
2759
+ #: includes/classes/class-auxin-welcome.php:1549
2760
+ #, fuzzy
2761
+ msgid "Posts/Pages"
2762
+ msgstr "نوشته ها"
2763
 
2764
+ #: includes/classes/class-auxin-welcome.php:1554
2765
+ #, fuzzy
2766
+ msgid "Media"
2767
+ msgstr "متوسط"
2768
 
2769
+ #: includes/classes/class-auxin-welcome.php:1559
2770
+ #, fuzzy
2771
+ msgid "Widgets"
2772
+ msgstr "عنوان ابزارک"
2773
 
2774
+ #: includes/classes/class-auxin-welcome.php:1566
2775
+ msgid "Menus"
2776
+ msgstr ""
2777
 
2778
+ #: includes/classes/class-auxin-welcome.php:1571
2779
+ #, fuzzy
2780
+ msgid "Theme Options"
2781
+ msgstr "تنظیمات طراحی"
 
 
 
 
 
 
 
 
2782
 
2783
+ #: includes/classes/class-auxin-welcome.php:1576
2784
+ msgid "MasterSlider (If Available)"
2785
+ msgstr ""
 
 
 
 
 
 
 
 
2786
 
2787
+ #: includes/classes/class-auxin-welcome.php:1586
2788
+ msgid "Importing Demo Content is in Progress..."
2789
+ msgstr ""
 
 
 
 
 
 
 
 
2790
 
2791
+ #: includes/classes/class-auxin-welcome.php:1587
2792
+ msgid ""
2793
+ "This process may take 5 to 10 minutes to complete, please do not close or "
2794
+ "refresh this page."
2795
+ msgstr ""
 
 
 
 
 
 
2796
 
2797
+ #: includes/classes/class-auxin-welcome.php:1621
2798
+ msgid "Congratulations!"
2799
+ msgstr ""
 
 
 
 
 
 
 
 
2800
 
2801
+ #: includes/classes/class-auxin-welcome.php:1622
2802
+ msgid "Demo has been successfully imported."
2803
+ msgstr ""
 
 
 
 
 
 
 
 
2804
 
2805
+ #: includes/classes/class-auxin-welcome.php:1627
2806
+ #, fuzzy
2807
+ msgid "Customize"
2808
+ msgstr "تصویر دلخواه"
2809
 
2810
+ #: includes/classes/class-auxin-welcome.php:1644
2811
+ #, fuzzy
2812
+ msgid "Importing page content ..."
2813
+ msgstr "تراز تصویر در محتوا."
2814
 
2815
+ #: includes/classes/class-auxin-welcome.php:1668
2816
+ msgid "Remove Watermarks?"
2817
+ msgstr ""
2818
 
2819
+ #: includes/classes/class-auxin-welcome.php:1669
2820
+ msgid ""
2821
+ "For better and faster install proccess it's recommanded to install demo on a "
2822
+ "clean wordpress website."
2823
+ msgstr ""
2824
 
2825
+ #: includes/classes/class-auxin-welcome.php:1683
2826
+ msgid "Remove Watermarks"
2827
+ msgstr ""
2828
 
2829
+ #: includes/classes/class-auxin-welcome.php:1698
2830
+ msgid ""
2831
+ "Images are copyrighted and watermarked. You can remove watermarks by having "
2832
+ "Envato Elements subscription"
2833
+ msgstr ""
2834
 
2835
+ #: includes/classes/class-auxin-welcome.php:1699
2836
+ msgid ""
2837
+ "By subscribing to Envato Elements you will have access to unlimited premium "
2838
+ "stock images, icons, graphical assets, videos and more."
2839
+ msgstr ""
2840
 
2841
+ #: includes/classes/class-auxin-welcome.php:1701
2842
+ msgid "Explore and Subscribe"
2843
+ msgstr ""
 
2844
 
2845
+ #: includes/classes/class-auxin-welcome.php:1709
2846
+ msgid "Already an Envato Elements member?"
2847
+ msgstr ""
2848
 
2849
+ #: includes/classes/class-auxin-welcome.php:1709
2850
+ msgid "Activate here"
2851
+ msgstr ""
2852
 
2853
+ #: includes/classes/class-auxin-welcome.php:1727
2854
+ #: includes/classes/class-auxin-welcome.php:1757
2855
+ msgid "Verify Your Envato Elements Subscription"
2856
+ msgstr ""
2857
 
2858
+ #: includes/classes/class-auxin-welcome.php:1728
2859
+ msgid "Enter your email below and click continue button"
2860
+ msgstr ""
2861
 
2862
+ #: includes/classes/class-auxin-welcome.php:1730
2863
+ #, fuzzy
2864
+ msgid "Enter your email"
2865
+ msgstr "برچسب آیتم زبانه را وارد کنید."
2866
 
2867
+ #: includes/classes/class-auxin-welcome.php:1758
2868
+ msgid "Enter your token below to verify your Subscription"
2869
+ msgstr ""
2870
 
2871
+ #: includes/classes/class-auxin-welcome.php:1760
2872
+ #, fuzzy
2873
+ msgid "Enter token here"
2874
+ msgstr "برچسب دکمه را وارد کنید."
2875
 
2876
+ #: includes/classes/class-auxin-welcome.php:1772
2877
+ msgid "How to generate a token ?"
2878
+ msgstr ""
2879
 
2880
+ #: includes/classes/class-auxin-welcome.php:1773
2881
+ msgid "Don't have subscription?"
2882
+ msgstr ""
2883
 
2884
+ #: includes/classes/class-auxin-welcome.php:1783
2885
+ msgid "Verify Token"
 
 
 
2886
  msgstr ""
 
 
2887
 
2888
+ #: includes/classes/class-auxin-widget-shortcode-map.php:308
2889
+ #, fuzzy
2890
+ msgid "CSS"
2891
+ msgstr "جعبه CSS"
2892
 
2893
+ #: includes/classes/class-auxin-widget-shortcode-map.php:310
2894
+ #, fuzzy
2895
+ msgid "Design options"
2896
+ msgstr "تنظیمات طراحی"
2897
 
2898
+ #: includes/classes/class-auxin-widget.php:112
2899
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:95
2900
+ #: includes/elementor/widgets/recent-posts-land-style.php:91
2901
+ #: includes/elementor/widgets/recent-posts-masonry.php:95
2902
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:92
2903
+ #: includes/elementor/widgets/recent-posts-tiles.php:92
2904
+ #: includes/elementor/widgets/recent-posts-timeline.php:92
2905
+ #: includes/elementor/widgets/recent-products.php:101
2906
+ #: includes/elementor/widgets/theme-elements/modern-search.php:953
2907
+ #: includes/elements/popular-posts-widget.php:16
2908
+ #: includes/elements/recent-posts-grid-carousel.php:16
2909
+ #: includes/elements/recent-posts-land-style.php:16
2910
+ #: includes/elements/recent-posts-masonry.php:16
2911
+ #: includes/elements/recent-posts-tiles.php:16
2912
+ #: includes/elements/recent-posts-timeline.php:16
2913
+ #: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:162
2914
+ msgid "All Categories"
2915
+ msgstr "همه دسته ها"
2916
 
2917
+ #: includes/classes/class-auxin-widget.php:340
2918
+ #: includes/classes/class-auxin-widget.php:341
2919
+ #: includes/classes/class-auxin-widget.php:363
2920
+ #: includes/classes/class-auxin-widget.php:364
2921
+ #, fuzzy
2922
+ msgid "Add Image"
2923
+ msgstr "تصویر"
2924
 
2925
+ #: includes/classes/class-auxin-widget.php:342
2926
+ #: includes/classes/class-auxin-widget.php:365
2927
+ #, fuzzy
2928
+ msgid "Select Image"
2929
+ msgstr "انتخاب اظهار نظر"
2930
 
2931
+ #: includes/classes/class-auxin-widget.php:387
2932
+ #: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:125
2933
+ #: includes/general-hooks.php:126
2934
+ #, fuzzy
2935
+ msgid "Add Video"
2936
+ msgstr "افزودن بخش"
2937
 
2938
+ #: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:127
2939
+ #, fuzzy
2940
+ msgid "Select Video"
2941
+ msgstr "تکرار ویدیو"
2942
 
2943
+ #: includes/classes/class-auxin-widget.php:411
2944
+ #: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:101
2945
+ #: includes/general-hooks.php:102
2946
+ #, fuzzy
2947
+ msgid "Add Audio"
2948
+ msgstr "افزودن بخش"
2949
+
2950
+ #: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:103
2951
+ #, fuzzy
2952
+ msgid "Select Audio"
2953
+ msgstr "انتخاب شکاف آکاردئون"
2954
+
2955
+ #: includes/elementor/class-auxin-elementor-core-elements.php:401
2956
+ msgid "Element class \"%s\" not found."
2957
  msgstr ""
 
 
2958
 
2959
+ #: includes/elementor/class-auxin-elementor-core-elements.php:497
2960
+ msgid "Module class \"%s\" not found."
2961
+ msgstr ""
2962
 
2963
+ #: includes/elementor/class-auxin-elementor-core-elements.php:570
2964
+ msgid "%s - General"
2965
+ msgstr ""
2966
 
2967
+ #: includes/elementor/class-auxin-elementor-core-elements.php:578
2968
+ msgid "%s - Featured"
2969
+ msgstr ""
2970
 
2971
+ #: includes/elementor/class-auxin-elementor-core-elements.php:586
2972
+ #, fuzzy
2973
+ msgid "%s - Posts"
2974
+ msgstr "نوشته ها"
2975
 
2976
+ #: includes/elementor/class-auxin-elementor-core-elements.php:594
2977
+ msgid "%s - Portfolio"
2978
+ msgstr ""
2979
 
2980
+ #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2981
+ #: includes/elementor/class-auxin-elementor-core-elements.php:668
2982
+ #: includes/elementor/class-auxin-elementor-core-elements.php:692
2983
+ msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2984
+ msgstr ""
2985
 
2986
+ #: includes/elementor/class-auxin-elementor-core-elements.php:670
2987
+ msgid "Elementor"
2988
+ msgstr ""
2989
 
2990
+ #: includes/elementor/class-auxin-elementor-core-elements.php:694
2991
+ #: includes/elements/code.php:82
2992
+ msgid "PHP"
2993
+ msgstr ""
2994
 
2995
+ #: includes/elementor/class-auxin-elementor-core-elements.php:748
2996
+ msgid "Phlox Icons - Set 1"
2997
+ msgstr ""
2998
 
2999
+ #: includes/elementor/class-auxin-elementor-core-elements.php:767
3000
+ msgid "Phlox Icons - Set 2"
3001
+ msgstr ""
3002
 
3003
+ #: includes/elementor/controls/icon-select.php:77
3004
+ #: includes/elementor/controls/icon-select.php:78
3005
+ #, fuzzy
3006
+ msgid "Select Icon"
3007
+ msgstr "کتابخانه شکلک را انتخاب کنید."
3008
 
3009
+ #: includes/elementor/controls/media-select.php:99
3010
+ msgid "Delete"
3011
+ msgstr ""
3012
 
3013
+ #: includes/elementor/modules/common.php:80
3014
+ #: includes/elementor/modules/common.php:89
3015
+ msgid "Custom CSS"
3016
+ msgstr "سی اس اس دلخواه"
3017
 
3018
+ #: includes/elementor/modules/common.php:108
3019
+ msgid "Use \"selector\" keyword to target wrapper element."
3020
+ msgstr ""
3021
 
3022
+ #: includes/elementor/modules/common.php:148
3023
+ #: includes/elementor/modules/section.php:146
3024
+ #, fuzzy
3025
+ msgid "Pseudo Background (developers)"
3026
+ msgstr "رنگ پس زمینه"
3027
+
3028
+ #: includes/elementor/modules/common.php:156
3029
+ #: includes/elementor/modules/section.php:154
3030
  msgid ""
3031
+ "Adds background to pseudo elements like ::before and ::after selectors. "
3032
+ "(developers only)"
 
3033
  msgstr ""
 
 
 
 
 
 
 
3034
 
3035
+ #: includes/elementor/modules/common.php:165
3036
+ #: includes/elementor/modules/section.php:163
3037
+ #, fuzzy
3038
+ msgid "Background ::before"
3039
+ msgstr "رنگ پس زمینه"
3040
 
3041
+ #: includes/elementor/modules/common.php:183
3042
+ #: includes/elementor/modules/section.php:181
3043
+ #, fuzzy
3044
+ msgid "Background ::after"
3045
+ msgstr "الگوی پس زمینه"
3046
 
3047
+ #: includes/elementor/modules/common.php:231
3048
+ msgid "Parallax"
3049
+ msgstr ""
3050
 
3051
+ #: includes/elementor/modules/common.php:244
3052
+ #: includes/elementor/modules/section.php:103
3053
+ msgid "Parallax Effect"
3054
+ msgstr ""
3055
 
3056
+ #: includes/elementor/modules/common.php:247
3057
+ msgid "Parallax options let you add parallax effect to any widget."
3058
+ msgstr ""
3059
 
3060
+ #: includes/elementor/modules/common.php:250
3061
+ #: includes/elementor/modules/section.php:109
3062
+ msgid "This feature is only available on Phlox Pro."
3063
+ msgstr ""
3064
 
3065
+ #: includes/elementor/modules/common.php:253
3066
+ #: includes/elementor/modules/section.php:112
3067
+ msgid "Get Phlox Pro"
 
 
3068
  msgstr ""
 
 
 
3069
 
3070
+ #: includes/elementor/modules/common.php:286
3071
+ #, fuzzy
3072
+ msgid "Entrance Animation"
3073
+ msgstr "فعال سازی صفحه بندی"
3074
 
3075
+ #: includes/elementor/modules/common.php:294
3076
+ #: includes/elements/general-element-fields.php:25
3077
+ #: includes/elements/general-element-fields.php:55
3078
+ #: includes/elements/general-element-fields.php:64
3079
+ #: includes/elements/general-element-fields.php:72
3080
+ #: includes/elements/general-element-fields.php:85
3081
+ #, fuzzy
3082
+ msgid "Animation"
3083
+ msgstr "فلش های ناوبری"
3084
+
3085
+ #: includes/elementor/modules/common.php:395
3086
+ #: includes/elements/general-element-fields.php:51
3087
+ #, fuzzy
3088
+ msgid "Duration"
3089
+ msgstr "عنوان"
3090
+
3091
+ #: includes/elementor/modules/common.php:413
3092
+ #: includes/elements/general-element-fields.php:61
3093
+ msgid "Delay"
3094
  msgstr ""
 
 
 
 
3095
 
3096
+ #: includes/elementor/modules/common.php:430
3097
+ msgid "Easing"
 
 
 
3098
  msgstr ""
 
 
3099
 
3100
+ #: includes/elementor/modules/common.php:486
3101
+ #, fuzzy
3102
+ msgid "Repeat Count"
3103
+ msgstr "تکرار ویدیو"
3104
+
3105
+ #: includes/elementor/modules/common.php:495
3106
+ msgid "Infinite"
3107
  msgstr ""
 
 
3108
 
3109
+ #: includes/elementor/modules/common.php:533
3110
+ #, fuzzy
3111
+ msgid "Positioning"
3112
+ msgstr "موقعیت"
3113
 
3114
+ #: includes/elementor/modules/common.php:541
3115
+ #, fuzzy
3116
+ msgid "Position Type"
3117
+ msgstr "موقعیت"
3118
+
3119
+ #: includes/elementor/modules/common.php:546
3120
+ msgid "Static"
3121
  msgstr ""
 
 
3122
 
3123
+ #: includes/elementor/modules/common.php:547
3124
+ msgid "Relative"
3125
+ msgstr ""
3126
 
3127
+ #: includes/elementor/modules/common.php:548
3128
+ msgid "Absolute"
3129
+ msgstr ""
3130
 
3131
+ #: includes/elementor/modules/common.php:560
3132
+ #: includes/elementor/widgets/modern-button.php:139
3133
+ #: includes/elementor/widgets/staff.php:815
3134
+ #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
3135
+ #: includes/elements/text.php:616
3136
+ #, fuzzy
3137
+ msgid "Top"
3138
+ msgstr "بالا"
3139
 
3140
+ #: includes/elementor/modules/common.php:592
3141
+ #: includes/elementor/widgets/button.php:242
3142
+ #: includes/elementor/widgets/button.php:379
3143
+ #: includes/elementor/widgets/custom-list.php:481
3144
+ #: includes/elementor/widgets/custom-list.php:513
3145
+ #: includes/elementor/widgets/divider.php:206
3146
+ #: includes/elementor/widgets/divider.php:245
3147
+ #: includes/elementor/widgets/heading-modern.php:167
3148
+ #: includes/elementor/widgets/icon.php:178
3149
+ #: includes/elementor/widgets/image.php:327
3150
+ #: includes/elementor/widgets/modern-button.php:192
3151
+ #: includes/elementor/widgets/modern-button.php:807
3152
+ #: includes/elementor/widgets/quote.php:173
3153
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1622
3154
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1759
3155
+ #: includes/elementor/widgets/recent-posts-masonry.php:1163
3156
+ #: includes/elementor/widgets/recent-posts-timeline.php:138
3157
+ #: includes/elementor/widgets/staff.php:819
3158
+ #: includes/elementor/widgets/staff.php:850
3159
+ #: includes/elementor/widgets/svg.php:292
3160
+ #: includes/elementor/widgets/testimonial.php:817
3161
+ #: includes/elementor/widgets/text.php:371
3162
+ #: includes/elementor/widgets/text.php:1135
3163
+ #: includes/elementor/widgets/text.php:1441
3164
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3165
+ #: includes/elementor/widgets/theme-elements/copyright.php:150
3166
+ #: includes/elementor/widgets/theme-elements/current-time.php:143
3167
+ #: includes/elementor/widgets/theme-elements/logo.php:169
3168
+ #: includes/elementor/widgets/theme-elements/menu.php:282
3169
+ #: includes/elementor/widgets/theme-elements/menu.php:336
3170
+ #: includes/elementor/widgets/theme-elements/menu.php:1364
3171
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:203
3172
+ #: includes/elementor/widgets/theme-elements/site-title.php:196
3173
+ #: includes/elements/button.php:187 includes/elements/image.php:152
3174
+ #: includes/elements/quote.php:111
3175
+ #: includes/elements/recent-posts-timeline.php:280
3176
+ #: includes/elements/staff.php:230 includes/elements/staff.php:284
3177
+ #: includes/elements/text.php:133 includes/elements/text.php:161
3178
+ #: includes/elements/text.php:624 includes/elements/text.php:808
3179
+ #: includes/general-hooks.php:376 includes/general-hooks.php:843
3180
+ #: includes/general-hooks.php:1248
3181
+ msgid "Right"
3182
+ msgstr "راست"
3183
 
3184
+ #: includes/elementor/modules/common.php:625
3185
+ #: includes/elementor/widgets/modern-button.php:147
3186
+ #: includes/elementor/widgets/staff.php:823 includes/elements/staff.php:234
3187
+ msgid "Bottom"
3188
+ msgstr ""
3189
+
3190
+ #: includes/elementor/modules/common.php:689
3191
+ #, fuzzy
3192
+ msgid "From Center"
3193
+ msgstr "وسط"
3194
 
3195
+ #: includes/elementor/modules/common.php:690
3196
  msgid ""
3197
+ "Please avoid using \"From Center\" and \"Left\" options at the same time."
 
3198
  msgstr ""
 
 
 
 
 
 
3199
 
3200
+ #: includes/elementor/modules/common.php:746
3201
+ msgid "Dimensions (extra)"
3202
+ msgstr ""
3203
 
3204
+ #: includes/elementor/modules/common.php:754
3205
+ #: includes/elementor/widgets/contact-form.php:217
3206
+ #: includes/elementor/widgets/contact-form.php:527
3207
+ #: includes/elementor/widgets/contact-form.php:747
3208
+ #: includes/elementor/widgets/contact-form.php:976
3209
+ #: includes/elementor/widgets/contact-form.php:1219
3210
+ #: includes/elementor/widgets/contact-form.php:1572
3211
+ #: includes/elementor/widgets/heading-modern.php:475
3212
+ #: includes/elementor/widgets/heading-modern.php:660
3213
+ #: includes/elementor/widgets/heading-modern.php:831
3214
+ #: includes/elementor/widgets/heading-modern.php:1004
3215
+ #: includes/elementor/widgets/image.php:429
3216
+ #: includes/elementor/widgets/mailchimp.php:234
3217
+ #: includes/elementor/widgets/mailchimp.php:481
3218
+ #: includes/elementor/widgets/mailchimp.php:709
3219
+ #: includes/elementor/widgets/svg.php:222
3220
+ #: includes/elementor/widgets/theme-elements/logo.php:257
3221
+ #: includes/elementor/widgets/theme-elements/logo.php:515
3222
+ #: includes/elementor/widgets/theme-elements/logo.php:607
3223
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:410
3224
+ #, fuzzy
3225
+ msgid "Max Width"
3226
+ msgstr "عرض"
3227
 
3228
+ #: includes/elementor/modules/common.php:786
3229
+ #: includes/elementor/widgets/image.php:458
3230
+ #: includes/elementor/widgets/svg.php:250
3231
+ #, fuzzy
3232
+ msgid "Max Height"
3233
+ msgstr "ارتفاع نقشه"
3234
 
3235
+ #: includes/elementor/modules/common.php:819
3236
+ #, fuzzy
3237
+ msgid "Min Width"
3238
+ msgstr "عرض"
3239
 
3240
+ #: includes/elementor/modules/common.php:851
3241
+ #, fuzzy
3242
+ msgid "Min Height"
3243
+ msgstr "ارتفاع"
3244
 
3245
+ #: includes/elementor/modules/common.php:884
3246
+ #: includes/elementor/widgets/before-after.php:194
3247
+ #: includes/elementor/widgets/carousel-navigation.php:254
3248
+ #: includes/elementor/widgets/contact-form.php:244
3249
+ #: includes/elementor/widgets/contact-form.php:554
3250
+ #: includes/elementor/widgets/contact-form.php:774
3251
+ #: includes/elementor/widgets/contact-form.php:1003
3252
+ #: includes/elementor/widgets/contact-form.php:1246
3253
+ #: includes/elementor/widgets/contact-form.php:1599
3254
+ #: includes/elementor/widgets/custom-list.php:396
3255
+ #: includes/elementor/widgets/gmap.php:168
3256
+ #: includes/elementor/widgets/heading-modern.php:1075
3257
+ #: includes/elementor/widgets/mailchimp.php:261
3258
+ #: includes/elementor/widgets/mailchimp.php:508
3259
+ #: includes/elementor/widgets/mailchimp.php:736
3260
+ #: includes/elementor/widgets/svg.php:194
3261
+ #: includes/elementor/widgets/video.php:209
3262
+ #: includes/elements/before-after.php:128 includes/elements/gmap.php:52
3263
+ #: includes/elements/image.php:127 includes/elements/instagram-feed.php:191
3264
+ #: includes/elements/staff.php:142 includes/elements/video.php:92
3265
+ msgid "Height"
3266
+ msgstr "ارتفاع"
3267
 
3268
+ #: includes/elementor/modules/common.php:916
3269
+ msgid "Grow in width"
3270
+ msgstr ""
3271
 
3272
+ #: includes/elementor/modules/documents/header.php:45
3273
+ #, fuzzy
3274
+ msgid "Site Header"
3275
+ msgstr "نمایش سربرگ"
3276
 
3277
+ #: includes/elementor/modules/dynamic-tags/archive-description.php:18
3278
+ #, fuzzy
3279
+ msgid "Archive Description"
3280
+ msgstr "بخش فعال"
3281
 
3282
+ #: includes/elementor/modules/dynamic-tags/archive-meta.php:18
3283
+ #, fuzzy
3284
+ msgid "Archive Meta"
3285
+ msgstr "بخش فعال"
3286
 
3287
+ #: includes/elementor/modules/dynamic-tags/archive-meta.php:59
3288
+ #: includes/elementor/modules/dynamic-tags/author-meta.php:48
3289
+ #: includes/elementor/modules/dynamic-tags/user-info.php:92
3290
+ msgid "Meta Key"
3291
+ msgstr ""
3292
 
3293
+ #: includes/elementor/modules/dynamic-tags/archive-title.php:18
3294
+ msgid "Archive Title"
3295
+ msgstr ""
3296
 
3297
+ #: includes/elementor/modules/dynamic-tags/archive-title.php:41
3298
+ #: includes/elementor/modules/dynamic-tags/page-title.php:46
3299
+ #, fuzzy
3300
+ msgid "Include Context"
3301
+ msgstr "شامل شدن این نوشته ها"
3302
 
3303
+ #: includes/elementor/modules/dynamic-tags/archive-url.php:27
3304
+ #, fuzzy
3305
+ msgid "Archive URL"
3306
+ msgstr "URL منبع"
3307
 
3308
+ #: includes/elementor/modules/dynamic-tags/archive-url.php:33
3309
+ #: includes/elementor/modules/dynamic-tags/featured-colors.php:36
3310
+ #: includes/elementor/modules/dynamic-tags/pages-url.php:35
3311
+ #: includes/elementor/modules/dynamic-tags/post-custom-field.php:80
3312
+ #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:35
3313
+ #: includes/elementor/modules/theme-builder/module.php:85
3314
+ msgid "Select..."
3315
+ msgstr ""
3316
 
3317
+ #: includes/elementor/modules/dynamic-tags/archive-url.php:49
3318
+ #, fuzzy
3319
+ msgid "Archives URL"
3320
+ msgstr "URL منبع"
3321
 
3322
+ #: includes/elementor/modules/dynamic-tags/author-info.php:19
3323
+ #, fuzzy
3324
+ msgid "Author Info"
3325
+ msgstr "نویسنده"
3326
 
3327
+ #: includes/elementor/modules/dynamic-tags/author-info.php:50
3328
+ #: includes/elementor/modules/dynamic-tags/user-info.php:72
3329
+ msgid "Field"
3330
+ msgstr ""
3331
 
3332
+ #: includes/elementor/modules/dynamic-tags/author-info.php:54
3333
+ #: includes/elementor/modules/dynamic-tags/user-info.php:81
3334
+ #, fuzzy
3335
+ msgid "Bio"
3336
+ msgstr "جعبه"
3337
 
3338
+ #: includes/elementor/modules/dynamic-tags/author-info.php:55
3339
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:38
3340
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:56
3341
+ #: includes/elementor/modules/dynamic-tags/user-info.php:82
3342
+ #: includes/elementor/widgets/contact-box.php:102
3343
+ #: includes/elementor/widgets/contact-form.php:136
3344
+ #: includes/elements/contact-box.php:53 includes/elements/contact-form.php:57
3345
+ msgid "Email"
3346
+ msgstr "ایمیل"
3347
 
3348
+ #: includes/elementor/modules/dynamic-tags/author-info.php:56
3349
+ #: includes/elementor/modules/dynamic-tags/user-info.php:83
3350
+ #, fuzzy
3351
+ msgid "Website"
3352
+ msgstr "این وب سایت."
3353
 
3354
+ #: includes/elementor/modules/dynamic-tags/author-meta.php:18
3355
+ #, fuzzy
3356
+ msgid "Author Meta"
3357
+ msgstr "نام نویسنده"
 
 
 
 
 
 
 
3358
 
3359
+ #: includes/elementor/modules/dynamic-tags/author-name.php:18
3360
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:612
3361
+ #: includes/elementor/widgets/recent-posts-land-style.php:306
3362
+ #: includes/elementor/widgets/recent-posts-masonry.php:386
3363
+ #: includes/elementor/widgets/recent-posts-timeline.php:315
3364
+ #: includes/elements/recent-posts-grid-carousel.php:448
3365
+ #: includes/elements/recent-posts-land-style.php:372
3366
+ #: includes/elements/recent-posts-masonry.php:348
3367
+ #: includes/elements/recent-posts-timeline.php:393
3368
+ msgid "Author Name"
3369
+ msgstr "نام نویسنده"
3370
 
3371
+ #: includes/elementor/modules/dynamic-tags/author-profile-picture.php:18
3372
+ msgid "Author Profile Picture"
3373
+ msgstr ""
3374
 
3375
+ #: includes/elementor/modules/dynamic-tags/author-url.php:27
3376
+ #, fuzzy
3377
+ msgid "Author URL"
3378
+ msgstr "نویسنده"
3379
 
3380
+ #: includes/elementor/modules/dynamic-tags/author-url.php:58
3381
+ #, fuzzy
3382
+ msgid "Author Archive"
3383
+ msgstr "نام نویسنده"
3384
 
3385
+ #: includes/elementor/modules/dynamic-tags/author-url.php:59
3386
+ #, fuzzy
3387
+ msgid "Author Website"
3388
+ msgstr "این وب سایت."
3389
 
3390
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:19
3391
+ #, fuzzy
3392
+ msgid "Comments Number"
3393
+ msgstr "تعداد ستون"
3394
 
3395
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:34
3396
+ #, fuzzy
3397
+ msgid "No Comments Format"
3398
+ msgstr "دیدگاه ها"
3399
 
3400
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:35
3401
+ msgid "No Responses"
3402
+ msgstr ""
3403
 
3404
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:42
3405
+ msgid "One Comment Format"
3406
+ msgstr ""
3407
 
3408
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:43
3409
+ msgid "One Response"
3410
+ msgstr ""
 
3411
 
3412
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:50
3413
+ #, fuzzy
3414
+ msgid "Many Comment Format"
3415
+ msgstr "نمایش فرمت نوشته؟"
3416
 
3417
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:51
3418
+ #, fuzzy
3419
+ msgid "{number} Responses"
3420
+ msgstr "تعداد نوشته ها"
3421
 
3422
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:58
3423
+ #: includes/elementor/widgets/button.php:116
3424
+ #: includes/elementor/widgets/custom-list.php:138
3425
+ #: includes/elementor/widgets/heading-modern.php:120
3426
+ #: includes/elementor/widgets/heading-modern.php:270
3427
+ #: includes/elementor/widgets/icon.php:154
3428
+ #: includes/elementor/widgets/modern-button.php:210
3429
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:743
3430
+ #: includes/elementor/widgets/text.php:321
3431
+ #: includes/elementor/widgets/theme-elements/logo.php:182
3432
+ #: includes/elementor/widgets/theme-elements/logo.php:196
3433
+ #: includes/elementor/widgets/theme-elements/site-title.php:212
3434
+ #: includes/elements/custom-list.php:106 includes/elements/text.php:843
3435
+ msgid "Link"
3436
+ msgstr "پیوند"
3437
 
3438
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:62
3439
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:38
3440
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:56
3441
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:57
3442
+ #: includes/elementor/widgets/gallery.php:219
3443
+ #: includes/elementor/widgets/gallery.php:305
3444
+ #: includes/elementor/widgets/image.php:302
3445
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:235
3446
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:613
3447
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:879
3448
+ #: includes/elementor/widgets/recent-posts-land-style.php:307
3449
+ #: includes/elementor/widgets/recent-posts-land-style.php:493
3450
+ #: includes/elementor/widgets/recent-posts-masonry.php:387
3451
+ #: includes/elementor/widgets/recent-posts-masonry.php:590
3452
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:205
3453
+ #: includes/elementor/widgets/recent-posts-tiles.php:387
3454
+ #: includes/elementor/widgets/recent-posts-timeline.php:316
3455
+ #: includes/elementor/widgets/recent-posts-timeline.php:519
3456
+ #: includes/elementor/widgets/testimonial.php:238
3457
+ #: includes/elementor/widgets/text.php:115
3458
+ #: includes/elementor/widgets/text.php:1577
3459
+ #: includes/elementor/widgets/theme-elements/menu.php:658
3460
+ #: includes/elementor/widgets/theme-elements/search.php:118
3461
+ #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3462
+ #: includes/elements/gallery.php:197 includes/elements/gallery.php:322
3463
+ #: includes/elements/general-element-fields.php:27
3464
+ #: includes/elements/image.php:153 includes/elements/image.php:169
3465
+ #: includes/elements/recent-posts-grid-carousel.php:407
3466
+ #: includes/elements/recent-posts-grid-carousel.php:449
3467
+ #: includes/elements/recent-posts-grid-carousel.php:644
3468
+ #: includes/elements/recent-posts-land-style.php:327
3469
+ #: includes/elements/recent-posts-masonry.php:307
3470
+ #: includes/elements/recent-posts-tiles-carousel.php:435
3471
+ #: includes/elements/recent-posts-tiles.php:154
3472
+ #: includes/elements/recent-posts-timeline.php:149
3473
+ #: includes/elements/testimonial.php:132 includes/elements/text.php:903
3474
+ #: includes/general-hooks.php:348 includes/general-hooks.php:1611
3475
+ #: public/templates/vcomposer/auxin_vc_extendes.php:63
3476
+ msgid "None"
3477
+ msgstr "هیچکدام"
3478
 
3479
+ #: includes/elementor/modules/dynamic-tags/comments-number.php:63
3480
+ #, fuzzy
3481
+ msgid "Comments Link"
3482
+ msgstr "دیدگاه ها"
3483
 
3484
+ #: includes/elementor/modules/dynamic-tags/comments-url.php:18
3485
+ #, fuzzy
3486
+ msgid "Comments URL"
3487
+ msgstr "دیدگاه ها"
3488
 
3489
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:19
3490
+ msgid "Contact URL"
3491
+ msgstr ""
3492
 
3493
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:34
3494
+ #: includes/elementor/modules/dynamic-tags/post-date.php:33
3495
+ #: includes/elementor/modules/dynamic-tags/post-time.php:34
3496
+ #: includes/elementor/modules/dynamic-tags/request-parameter.php:66
3497
+ #: includes/elementor/widgets/accordion.php:145
3498
+ #: includes/elementor/widgets/modern-button.php:277
3499
+ #: includes/elementor/widgets/svg.php:107
3500
+ #: includes/elementor/widgets/text.php:111
3501
+ #: includes/elementor/widgets/theme-elements/logo.php:135
3502
+ #: includes/elementor/widgets/theme-elements/menu.php:156
3503
+ #: includes/elementor/widgets/theme-elements/menu.php:995
3504
+ #: includes/elementor/widgets/theme-elements/search.php:101
3505
+ #: includes/elements/accordion-widget.php:58 includes/elements/accordion.php:58
3506
+ msgid "Type"
3507
+ msgstr "نوع"
3508
 
3509
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:37
3510
+ #: includes/elementor/modules/theme-builder/module.php:117
3511
+ msgid "Select"
 
3512
  msgstr ""
 
 
3513
 
3514
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:39
3515
+ msgid "Tel"
3516
+ msgstr ""
3517
 
3518
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:40
3519
+ msgid "SMS"
3520
+ msgstr ""
3521
 
3522
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:41
3523
+ msgid "WhatsApp"
3524
+ msgstr ""
3525
 
3526
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:42
3527
+ msgid "Skype"
3528
+ msgstr ""
3529
 
3530
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:43
3531
+ #, fuzzy
3532
+ msgid "Messenger"
3533
+ msgstr "بدون پیام"
3534
 
3535
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:44
3536
+ msgid "Viber"
3537
+ msgstr ""
3538
 
3539
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:45
3540
+ msgid "Waze"
3541
+ msgstr ""
3542
 
3543
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:46
3544
+ #, fuzzy
3545
+ msgid "Google Calendar"
3546
+ msgstr "کد بازاریابی گوگل"
3547
 
3548
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:47
3549
+ msgid "Outlook Calendar"
3550
+ msgstr ""
3551
 
3552
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:48
3553
+ msgid "Yahoo Calendar"
3554
+ msgstr ""
3555
 
3556
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:67
3557
+ msgid "Subject"
3558
+ msgstr ""
3559
 
3560
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:79
3561
+ #, fuzzy
3562
+ msgid "Message"
3563
+ msgstr "بدون پیام"
3564
 
3565
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:91
3566
+ msgid "Number"
3567
+ msgstr "شماره"
3568
 
3569
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:107
3570
+ #: includes/elementor/modules/dynamic-tags/user-info.php:78
3571
+ msgid "Username"
3572
+ msgstr ""
3573
 
3574
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:118
3575
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:134
3576
+ #, fuzzy
3577
+ msgid "Action"
3578
+ msgstr "بخش"
3579
 
3580
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:121
3581
+ #: includes/elementor/widgets/contact-form.php:100
3582
+ #, fuzzy
3583
+ msgid "Contact"
3584
+ msgstr "دربرگیرنده"
3585
 
3586
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:122
3587
+ #, fuzzy
3588
+ msgid "Add"
3589
+ msgstr "آدرس"
3590
 
3591
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:137
3592
+ msgid "Call"
3593
+ msgstr ""
3594
 
3595
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:138
3596
+ msgid "Chat"
3597
+ msgstr ""
3598
 
3599
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:139
3600
+ #, fuzzy
3601
+ msgid "Show Profile"
3602
+ msgstr "شکلک های شبکه های اجتماعی"
3603
 
3604
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:140
3605
+ msgid "Add to Contacts"
3606
+ msgstr ""
3607
 
3608
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:141
3609
+ msgid "Send Voice Mail"
3610
+ msgstr ""
3611
 
3612
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:153
3613
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:196
3614
+ #, fuzzy
3615
+ msgid "Location"
3616
+ msgstr "بخش"
3617
 
3618
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:165
3619
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3620
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3621
+ #: includes/elementor/widgets/accordion.php:534
3622
+ #: includes/elementor/widgets/heading-modern.php:107
3623
+ #: includes/elementor/widgets/recent-comments.php:171
3624
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:781
3625
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
3626
+ #: includes/elementor/widgets/recent-posts-land-style.php:413
3627
+ #: includes/elementor/widgets/recent-posts-land-style.php:572
3628
+ #: includes/elementor/widgets/recent-posts-masonry.php:510
3629
+ #: includes/elementor/widgets/recent-posts-masonry.php:701
3630
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:405
3631
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:475
3632
+ #: includes/elementor/widgets/recent-posts-tiles.php:307
3633
+ #: includes/elementor/widgets/recent-posts-tiles.php:416
3634
+ #: includes/elementor/widgets/recent-posts-timeline.php:439
3635
+ #: includes/elementor/widgets/recent-posts-timeline.php:598
3636
+ #: includes/elementor/widgets/recent-products.php:384
3637
+ #: includes/elementor/widgets/recent-products.php:543
3638
+ #: includes/elementor/widgets/staff.php:420
3639
+ #: includes/elementor/widgets/tabs.php:373
3640
+ #: includes/elementor/widgets/text.php:232
3641
+ #: includes/elementor/widgets/text.php:680
3642
+ #: includes/elementor/widgets/theme-elements/logo.php:454
3643
+ #: includes/elementor/widgets/theme-elements/site-title.php:94
3644
+ #: includes/elementor/widgets/touch-slider.php:332
3645
+ #: includes/elements/about-widget.php:43
3646
+ #: includes/elements/accordion-widget.php:44 includes/elements/accordion.php:44
3647
+ #: includes/elements/audio.php:43 includes/elements/before-after.php:42
3648
+ #: includes/elements/code.php:43 includes/elements/contact-box.php:39
3649
+ #: includes/elements/contact-form.php:43 includes/elements/custom-list.php:44
3650
+ #: includes/elements/gallery.php:42 includes/elements/gmap.php:38
3651
+ #: includes/elements/image.php:42 includes/elements/instagram-feed.php:42
3652
+ #: includes/elements/latest-posts-slider.php:42
3653
+ #: includes/elements/latest-posts-slider.php:138
3654
+ #: includes/elements/popular-posts-widget.php:50
3655
+ #: includes/elements/popular-posts-widget.php:199
3656
+ #: includes/elements/recent-posts-grid-carousel.php:56
3657
+ #: includes/elements/recent-posts-grid-carousel.php:185
3658
+ #: includes/elements/recent-posts-land-style.php:56
3659
+ #: includes/elements/recent-posts-land-style.php:172
3660
+ #: includes/elements/recent-posts-masonry.php:56
3661
+ #: includes/elements/recent-posts-masonry.php:152
3662
+ #: includes/elements/recent-posts-tiles-carousel.php:43
3663
+ #: includes/elements/recent-posts-tiles-carousel.php:152
3664
+ #: includes/elements/recent-posts-tiles-carousel.php:237
3665
+ #: includes/elements/recent-posts-tiles.php:56
3666
+ #: includes/elements/recent-posts-tiles.php:182
3667
+ #: includes/elements/recent-posts-tiles.php:267
3668
+ #: includes/elements/recent-posts-timeline.php:50
3669
+ #: includes/elements/recent-posts-timeline.php:177
3670
+ #: includes/elements/recent-posts-widget.php:56
3671
+ #: includes/elements/recent-posts-widget.php:159
3672
+ #: includes/elements/recent-products.php:42
3673
+ #: includes/elements/recent-products.php:131
3674
+ #: includes/elements/sample-element.php:51
3675
+ #: includes/elements/sample-element.php:65 includes/elements/search.php:41
3676
+ #: includes/elements/socials-list.php:42 includes/elements/tab-widget.php:43
3677
+ #: includes/elements/tabs.php:43 includes/elements/text.php:43
3678
+ #: includes/elements/touch-slider.php:43 includes/elements/video.php:38
3679
+ msgid "Title"
3680
+ msgstr "عنوان"
3681
 
3682
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:212
3683
+ #: includes/elementor/widgets/carousel-navigation.php:169
3684
+ msgid "Start"
3685
+ msgstr ""
3686
 
3687
+ #: includes/elementor/modules/dynamic-tags/contact-url.php:227
3688
+ #: includes/elementor/widgets/carousel-navigation.php:171
3689
+ msgid "End"
3690
+ msgstr ""
3691
 
3692
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:19
3693
+ #, fuzzy
3694
+ msgid "Current Date Time"
3695
+ msgstr "صفحه جاری"
3696
+
3697
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:34
3698
+ #, fuzzy
3699
+ msgid "Date Format"
3700
+ msgstr "نمایش فرمت نوشته؟"
3701
+
3702
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:43
3703
+ #: includes/elementor/modules/dynamic-tags/post-date.php:55
3704
+ #: includes/elementor/modules/dynamic-tags/post-time.php:54
3705
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:286
3706
+ #: includes/elementor/widgets/carousel-navigation.php:105
3707
+ #: includes/elementor/widgets/divider.php:148
3708
+ #: includes/elementor/widgets/mailchimp.php:137
3709
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:927
3710
+ #: includes/elementor/widgets/theme-elements/current-time.php:109
3711
+ #: includes/elementor/widgets/theme-elements/menu.php:1000
3712
+ #: includes/elements/image.php:98 includes/elements/staff.php:113
3713
+ #, fuzzy
3714
+ msgid "Custom"
3715
+ msgstr "سی اس اس دلخواه"
3716
+
3717
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:52
3718
+ msgid "Time Format"
3719
  msgstr ""
 
 
3720
 
3721
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:71
3722
+ #: includes/elementor/modules/dynamic-tags/post-date.php:64
3723
+ #: includes/elementor/modules/dynamic-tags/post-time.php:63
3724
+ #, fuzzy
3725
+ msgid "Custom Format"
3726
+ msgstr "تصویر دلخواه"
3727
 
3728
+ #: includes/elementor/modules/dynamic-tags/current-date-time.php:73
3729
+ #: includes/elementor/modules/dynamic-tags/post-date.php:66
3730
+ #: includes/elementor/modules/dynamic-tags/post-time.php:65
3731
+ msgid "Documentation on date and time formatting"
3732
+ msgstr ""
3733
 
3734
+ #: includes/elementor/modules/dynamic-tags/featured-colors.php:19
3735
+ #, fuzzy
3736
+ msgid "Featured Colors"
3737
+ msgstr "تصویر شاخص"
3738
 
3739
+ #: includes/elementor/modules/dynamic-tags/featured-colors.php:42
3740
+ #, fuzzy
3741
+ msgid "Color %s"
3742
+ msgstr "جعبه رنگ"
3743
 
3744
+ #: includes/elementor/modules/dynamic-tags/featured-colors.php:58
3745
+ #, fuzzy
3746
+ msgid "Colors"
3747
+ msgstr "جعبه رنگ"
3748
 
3749
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:31
3750
+ #, fuzzy
3751
+ msgid "Featured Image Data"
3752
+ msgstr "تصویر شاخص"
3753
 
3754
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:83
3755
+ msgid "Data"
3756
+ msgstr ""
3757
 
3758
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:88
3759
+ msgid "Alt"
3760
+ msgstr ""
3761
 
3762
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:89
3763
+ #: includes/elementor/widgets/touch-slider.php:390
3764
+ msgid "Caption"
3765
+ msgstr "عنوان"
3766
 
3767
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:91
3768
+ #, fuzzy
3769
+ msgid "File URL"
3770
+ msgstr "URL سایت"
3771
 
3772
+ #: includes/elementor/modules/dynamic-tags/featured-image-data.php:92
3773
+ #, fuzzy
3774
+ msgid "Attachment URL"
3775
+ msgstr "صفحه پیوست"
3776
 
3777
+ #: includes/elementor/modules/dynamic-tags/page-title.php:19
3778
+ #, fuzzy
3779
+ msgid "Page Title"
3780
+ msgstr "نوع صفحه"
3781
 
3782
+ #: includes/elementor/modules/dynamic-tags/page-title.php:54
3783
+ msgid "Show Home Title"
3784
+ msgstr ""
3785
 
3786
+ #: includes/elementor/modules/dynamic-tags/pages-url.php:19
3787
+ #: includes/elementor/modules/dynamic-tags/pages-url.php:58
3788
+ #, fuzzy
3789
+ msgid "Pages URL"
3790
+ msgstr "برگه ها"
3791
 
3792
+ #: includes/elementor/modules/dynamic-tags/pages-url.php:43
3793
+ #: includes/elementor/widgets/theme-elements/logo.php:186
3794
+ #, fuzzy
3795
+ msgid "Home Page"
3796
+ msgstr "صفحه ورود"
3797
 
3798
+ #: includes/elementor/modules/dynamic-tags/post-custom-field.php:19
3799
+ #, fuzzy
3800
+ msgid "Post Custom Field"
3801
+ msgstr "تصویر دلخواه"
3802
 
3803
+ #: includes/elementor/modules/dynamic-tags/post-custom-field.php:46
3804
+ msgid "Key List"
3805
+ msgstr ""
3806
 
3807
+ #: includes/elementor/modules/dynamic-tags/post-custom-field.php:54
3808
+ #, fuzzy
3809
+ msgid "Custom Key"
3810
+ msgstr "تصویر دلخواه"
3811
 
3812
+ #: includes/elementor/modules/dynamic-tags/post-date.php:18
3813
+ #, fuzzy
3814
+ msgid "Post Date"
3815
+ msgstr "تصویر پوستر"
3816
 
3817
+ #: includes/elementor/modules/dynamic-tags/post-date.php:36
3818
+ #: includes/elementor/modules/dynamic-tags/post-time.php:37
3819
+ msgid "Post Published"
3820
+ msgstr ""
3821
 
3822
+ #: includes/elementor/modules/dynamic-tags/post-date.php:37
3823
+ #: includes/elementor/modules/dynamic-tags/post-time.php:38
3824
+ #, fuzzy
3825
+ msgid "Post Modified"
3826
+ msgstr "تاریخ ویرایش"
3827
 
3828
+ #: includes/elementor/modules/dynamic-tags/post-date.php:46
3829
+ #: includes/elementor/modules/dynamic-tags/post-time.php:47
3830
+ #, fuzzy
3831
+ msgid "Format"
3832
+ msgstr "معمولی"
3833
 
3834
+ #: includes/elementor/modules/dynamic-tags/post-date.php:54
3835
+ msgid "Human Readable"
3836
+ msgstr ""
3837
 
3838
+ #. translators: %s: Human readable date/time.
3839
+ #: includes/elementor/modules/dynamic-tags/post-date.php:80
3840
+ msgid "%s ago"
3841
+ msgstr ""
3842
 
3843
+ #: includes/elementor/modules/dynamic-tags/post-excerpt.php:18
3844
+ #, fuzzy
3845
+ msgid "Post Excerpt"
3846
+ msgstr "نمایش خلاصه؟"
3847
 
3848
+ #: includes/elementor/modules/dynamic-tags/post-featured-image.php:27
3849
+ #, fuzzy
3850
+ msgid "Featured Image"
3851
+ msgstr "تصویر شاخص"
3852
 
3853
+ #: includes/elementor/modules/dynamic-tags/post-featured-image.php:49
3854
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:54
3855
+ #, fuzzy
3856
+ msgid "Fallback"
3857
+ msgstr "بازخورد"
3858
 
3859
+ #: includes/elementor/modules/dynamic-tags/post-gallery.php:18
3860
+ #, fuzzy
3861
+ msgid "Post Image Attachments"
3862
+ msgstr "پیوست پس زمینه"
3863
 
3864
+ #: includes/elementor/modules/dynamic-tags/post-id.php:18
3865
+ #, fuzzy
3866
+ msgid "Post ID"
3867
+ msgstr "نوشته ها"
3868
 
3869
+ #: includes/elementor/modules/dynamic-tags/post-terms.php:19
3870
+ #, fuzzy
3871
+ msgid "Post Terms"
3872
+ msgstr "نوشته ها"
3873
 
3874
+ #: includes/elementor/modules/dynamic-tags/post-terms.php:61
3875
+ msgid "Taxonomy"
3876
+ msgstr ""
3877
 
3878
+ #: includes/elementor/modules/dynamic-tags/post-terms.php:71
3879
+ #: includes/elementor/widgets/staff.php:770
3880
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:365
3881
+ msgid "Separator"
3882
+ msgstr ""
3883
 
3884
+ #: includes/elementor/modules/dynamic-tags/post-time.php:19
3885
+ #, fuzzy
3886
+ msgid "Post Time"
3887
+ msgstr "تصویر پوستر"
3888
 
3889
+ #: includes/elementor/modules/dynamic-tags/post-title.php:17
3890
+ #, fuzzy
3891
+ msgid "Post Title"
3892
+ msgstr "ظاهر کاشی مطالب"
3893
 
3894
+ #: includes/elementor/modules/dynamic-tags/post-url.php:19
3895
+ #, fuzzy
3896
+ msgid "Post URL"
3897
+ msgstr "URL خانه"
3898
 
3899
+ #: includes/elementor/modules/dynamic-tags/request-parameter.php:18
3900
+ msgid "Request Parameter"
3901
+ msgstr ""
3902
 
3903
+ #: includes/elementor/modules/dynamic-tags/request-parameter.php:79
3904
+ msgid "Parameter Name"
3905
+ msgstr ""
3906
 
3907
+ #: includes/elementor/modules/dynamic-tags/shortcode.php:18
3908
+ #: includes/elementor/modules/dynamic-tags/shortcode.php:40
3909
+ #: includes/elementor/widgets/contact-form.php:122
3910
+ msgid "Shortcode"
3911
  msgstr ""
 
3912
 
3913
+ #: includes/elementor/modules/dynamic-tags/site-logo.php:18
3914
+ #, fuzzy
3915
+ msgid "Site Logo"
3916
+ msgstr "URL سایت"
3917
 
3918
+ #: includes/elementor/modules/dynamic-tags/site-tagline.php:17
3919
+ msgid "Site Tagline"
3920
+ msgstr ""
3921
 
3922
+ #: includes/elementor/modules/dynamic-tags/site-title.php:17
3923
+ #: includes/elementor/widgets/theme-elements/site-title.php:50
3924
+ #: includes/elementor/widgets/theme-elements/site-title.php:295
3925
+ #, fuzzy
3926
+ msgid "Site Title"
3927
+ msgstr "عنوان"
3928
 
3929
+ #: includes/elementor/modules/dynamic-tags/site-url.php:18
3930
+ msgid "Site URL"
3931
+ msgstr "URL سایت"
3932
 
3933
+ #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:19
3934
+ #, fuzzy
3935
+ msgid "Taxonomies URL"
3936
+ msgstr "URL خانه"
3937
 
3938
+ #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:57
3939
+ #, fuzzy
3940
+ msgid "Categories URL"
3941
+ msgstr "دسته ها"
 
 
 
 
3942
 
3943
+ #: includes/elementor/modules/dynamic-tags/user-info.php:19
3944
+ #, fuzzy
3945
+ msgid "User Info"
3946
+ msgstr "شناسه کاربر"
3947
 
3948
+ #: includes/elementor/modules/dynamic-tags/user-info.php:76
3949
+ #: includes/elementor/widgets/gallery.php:304
3950
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:782
3951
+ #: includes/elementor/widgets/recent-posts-land-style.php:414
3952
+ #: includes/elementor/widgets/recent-posts-masonry.php:511
3953
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
3954
+ #: includes/elementor/widgets/recent-posts-tiles.php:308
3955
+ #: includes/elementor/widgets/recent-posts-timeline.php:440
3956
+ #: includes/elementor/widgets/recent-products.php:385
3957
+ #: includes/elements/gallery.php:196
3958
+ #: includes/elements/latest-posts-slider.php:139
3959
+ #: includes/elements/popular-posts-widget.php:200
3960
+ #: includes/elements/recent-posts-grid-carousel.php:186
3961
+ #: includes/elements/recent-posts-land-style.php:173
3962
+ #: includes/elements/recent-posts-masonry.php:153
3963
+ #: includes/elements/recent-posts-tiles-carousel.php:153
3964
+ #: includes/elements/recent-posts-tiles-carousel.php:238
3965
+ #: includes/elements/recent-posts-tiles.php:183
3966
+ #: includes/elements/recent-posts-tiles.php:268
3967
+ #: includes/elements/recent-posts-timeline.php:178
3968
+ #: includes/elements/recent-posts-widget.php:160
3969
+ #: includes/elements/recent-products.php:132
3970
+ msgid "ID"
3971
+ msgstr "شناسه"
3972
 
3973
+ #: includes/elementor/modules/dynamic-tags/user-info.php:77
3974
+ #, fuzzy
3975
+ msgid "Display Name"
3976
+ msgstr "نمایش تصویر"
 
 
 
 
3977
 
3978
+ #: includes/elementor/modules/dynamic-tags/user-info.php:79
3979
+ msgid "First Name"
3980
+ msgstr ""
 
 
 
 
 
3981
 
3982
+ #: includes/elementor/modules/dynamic-tags/user-info.php:80
3983
+ #, fuzzy
3984
+ msgid "Last Name"
3985
+ msgstr "نام"
 
 
 
 
 
 
3986
 
3987
+ #: includes/elementor/modules/dynamic-tags/user-info.php:84
3988
+ #, fuzzy
3989
+ msgid "User Meta"
3990
+ msgstr "شناسه کاربر"
 
 
 
 
 
 
3991
 
3992
+ #: includes/elementor/modules/query-control/controls/group-control-posts.php:48
3993
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:45
3994
+ #, fuzzy
3995
+ msgid "Source"
3996
+ msgstr "URL منبع"
3997
+
3998
+ #: includes/elementor/modules/query-control/controls/group-control-posts.php:53
3999
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:74
4000
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:183
4001
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:70
4002
+ #: includes/elementor/modules/query-control/module.php:55
4003
+ msgid "Search & Select"
4004
+ msgstr ""
4005
+
4006
+ #: includes/elementor/modules/query-control/controls/group-control-posts.php:67
4007
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:95
4008
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:130
4009
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:169
4010
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:225
4011
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:786
4012
+ #: includes/elementor/widgets/recent-posts-land-style.php:418
4013
+ #: includes/elementor/widgets/recent-posts-masonry.php:515
4014
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
4015
+ #: includes/elementor/widgets/recent-posts-tiles.php:312
4016
+ #: includes/elementor/widgets/recent-posts-timeline.php:444
4017
+ #: includes/elementor/widgets/recent-products.php:389
4018
+ #: includes/elements/latest-posts-slider.php:143
4019
+ #: includes/elements/popular-posts-widget.php:204
4020
+ #: includes/elements/recent-posts-grid-carousel.php:190
4021
+ #: includes/elements/recent-posts-land-style.php:177
4022
+ #: includes/elements/recent-posts-masonry.php:157
4023
+ #: includes/elements/recent-posts-tiles-carousel.php:157
4024
+ #: includes/elements/recent-posts-tiles-carousel.php:242
4025
+ #: includes/elements/recent-posts-tiles.php:187
4026
+ #: includes/elements/recent-posts-tiles.php:272
4027
+ #: includes/elements/recent-posts-timeline.php:182
4028
+ #: includes/elements/recent-posts-widget.php:164
4029
+ #: includes/elements/recent-products.php:136
4030
  msgid "Author"
4031
  msgstr "نویسنده"
4032
 
4033
+ #: includes/elementor/modules/query-control/controls/group-control-posts.php:98
4034
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:48
4035
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:167
4036
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:58
4037
+ #: includes/elementor/modules/query-control/module.php:46
4038
+ #, fuzzy
4039
+ msgid "Manual Selection"
4040
+ msgstr "بخش زبانه ها"
4041
 
4042
+ #: includes/elementor/modules/query-control/controls/group-control-posts.php:99
4043
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:49
4044
+ #, fuzzy
4045
+ msgid "Current Query"
4046
+ msgstr "صفحه جاری"
4047
 
4048
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:63
4049
+ #, fuzzy
4050
+ msgid "Include"
4051
+ msgstr "شامل شدن این نوشته ها"
4052
 
4053
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:90
4054
+ #, fuzzy
4055
+ msgid "Include By"
4056
+ msgstr "شامل شدن این نوشته ها"
4057
 
4058
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:94
4059
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:109
4060
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:168
4061
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:203
4062
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:38
4063
+ msgid "Term"
4064
+ msgstr ""
4065
 
4066
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:151
4067
+ #: includes/elementor/modules/query-control/module.php:41
4068
+ #, fuzzy
4069
+ msgid "Exclude"
4070
+ msgstr "نادیده گرفتن این نوشته ها"
4071
 
4072
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:162
4073
+ #, fuzzy
4074
+ msgid "Exclude By"
4075
+ msgstr "نادیده گرفتن این نوشته ها"
4076
 
4077
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:166
4078
+ #: includes/elementor/modules/query-control/module.php:45
4079
+ #, fuzzy
4080
+ msgid "Current Post"
4081
+ msgstr "صفحه جاری"
4082
 
4083
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:246
4084
+ #: includes/elementor/modules/query-control/module.php:71
4085
+ msgid "Avoid Duplicates"
4086
+ msgstr ""
4087
 
4088
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:249
4089
+ msgid ""
4090
+ "Set to Yes to avoid duplicate posts from showing up. This only effects the "
4091
+ "frontend."
4092
+ msgstr ""
4093
 
4094
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:261
4095
+ #: includes/elements/general-element-fields.php:82
4096
+ msgid "Offset"
4097
+ msgstr ""
4098
 
4099
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:270
4100
+ msgid "Use this setting to skip over posts (e.g. '2' to skip over 2 posts)."
4101
+ msgstr ""
4102
 
4103
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:276
4104
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:345
4105
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:779
4106
+ #: includes/elementor/widgets/recent-posts-land-style.php:411
4107
+ #: includes/elementor/widgets/recent-posts-masonry.php:508
4108
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
4109
+ #: includes/elementor/widgets/recent-posts-tiles.php:305
4110
+ #: includes/elementor/widgets/recent-posts-timeline.php:437
4111
+ #: includes/elementor/widgets/recent-products.php:382
4112
+ #: includes/elements/gallery.php:195
4113
+ #: includes/elements/latest-posts-slider.php:136
4114
+ #: includes/elements/popular-posts-widget.php:197
4115
+ #: includes/elements/recent-posts-grid-carousel.php:183
4116
+ #: includes/elements/recent-posts-land-style.php:170
4117
+ #: includes/elements/recent-posts-masonry.php:150
4118
+ #: includes/elements/recent-posts-tiles-carousel.php:150
4119
+ #: includes/elements/recent-posts-tiles-carousel.php:235
4120
+ #: includes/elements/recent-posts-tiles.php:180
4121
+ #: includes/elements/recent-posts-tiles.php:265
4122
+ #: includes/elements/recent-posts-timeline.php:175
4123
+ #: includes/elements/recent-posts-widget.php:157
4124
+ #: includes/elements/recent-products.php:129
4125
+ msgid "Date"
4126
+ msgstr "تاریخ"
4127
 
4128
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:280
4129
+ #: includes/elementor/modules/query-control/module.php:478
4130
+ #, fuzzy
4131
+ msgid "All"
4132
+ msgstr "همه"
4133
 
4134
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:281
4135
+ msgid "Past Day"
4136
+ msgstr ""
4137
 
4138
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:282
4139
+ msgid "Past Week"
4140
+ msgstr ""
4141
 
4142
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:283
4143
+ msgid "Past Month"
4144
+ msgstr ""
4145
 
4146
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:284
4147
+ msgid "Past Quarter"
4148
+ msgstr ""
4149
 
4150
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:285
4151
+ msgid "Past Year"
4152
+ msgstr ""
4153
 
4154
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:303
4155
+ msgid "Before"
4156
+ msgstr ""
4157
 
4158
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:318
4159
+ msgid ""
4160
+ "Setting a ‘Before’ date will show all the posts published until the chosen "
4161
+ "date (inclusive)."
4162
+ msgstr ""
4163
 
4164
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:322
4165
+ msgid "After"
4166
+ msgstr ""
4167
 
4168
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:337
4169
+ msgid ""
4170
+ "Setting an ‘After’ date will show all the posts published since the chosen "
4171
+ "date (inclusive)."
4172
+ msgstr ""
 
 
 
 
4173
 
4174
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:341
4175
+ #, fuzzy
4176
+ msgid "Order By"
4177
+ msgstr "مرتب سازی بر اساس"
4178
 
4179
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:347
4180
+ #: includes/elementor/widgets/gallery.php:302
4181
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:780
4182
+ #: includes/elementor/widgets/recent-posts-land-style.php:412
4183
+ #: includes/elementor/widgets/recent-posts-masonry.php:509
4184
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
4185
+ #: includes/elementor/widgets/recent-posts-tiles.php:306
4186
+ #: includes/elementor/widgets/recent-posts-timeline.php:438
4187
+ #: includes/elementor/widgets/recent-products.php:383
4188
+ #: includes/elements/gallery.php:194
4189
+ #: includes/elements/latest-posts-slider.php:137
4190
+ #: includes/elements/popular-posts-widget.php:198
4191
+ #: includes/elements/recent-posts-grid-carousel.php:184
4192
+ #: includes/elements/recent-posts-land-style.php:171
4193
+ #: includes/elements/recent-posts-masonry.php:151
4194
+ #: includes/elements/recent-posts-tiles-carousel.php:151
4195
+ #: includes/elements/recent-posts-tiles-carousel.php:236
4196
+ #: includes/elements/recent-posts-tiles.php:181
4197
+ #: includes/elements/recent-posts-tiles.php:266
4198
+ #: includes/elements/recent-posts-timeline.php:176
4199
+ #: includes/elements/recent-posts-widget.php:158
4200
+ #: includes/elements/recent-products.php:130
4201
+ msgid "Menu Order"
4202
+ msgstr "ترتیب فهرست"
4203
 
4204
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:348
4205
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:783
4206
+ #: includes/elementor/widgets/recent-posts-land-style.php:415
4207
+ #: includes/elementor/widgets/recent-posts-masonry.php:512
4208
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
4209
+ #: includes/elementor/widgets/recent-posts-tiles.php:309
4210
+ #: includes/elementor/widgets/recent-posts-timeline.php:441
4211
+ #: includes/elementor/widgets/recent-products.php:386
4212
+ #: includes/elements/latest-posts-slider.php:140
4213
+ #: includes/elements/popular-posts-widget.php:201
4214
+ #: includes/elements/recent-posts-grid-carousel.php:187
4215
+ #: includes/elements/recent-posts-land-style.php:174
4216
+ #: includes/elements/recent-posts-masonry.php:154
4217
+ #: includes/elements/recent-posts-tiles-carousel.php:154
4218
+ #: includes/elements/recent-posts-tiles-carousel.php:239
4219
+ #: includes/elements/recent-posts-tiles.php:184
4220
+ #: includes/elements/recent-posts-tiles.php:269
4221
+ #: includes/elements/recent-posts-timeline.php:179
4222
+ #: includes/elements/recent-posts-widget.php:161
4223
+ #: includes/elements/recent-products.php:133
4224
+ msgid "Random"
4225
+ msgstr "تصادفی"
4226
 
4227
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:356
4228
+ #: includes/elementor/widgets/gallery.php:282
4229
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:798
4230
+ #: includes/elementor/widgets/recent-posts-land-style.php:427
4231
+ #: includes/elementor/widgets/recent-posts-masonry.php:524
4232
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
4233
+ #: includes/elementor/widgets/recent-posts-tiles.php:321
4234
+ #: includes/elementor/widgets/recent-posts-timeline.php:453
4235
+ #: includes/elementor/widgets/recent-products.php:398
4236
+ #: includes/elements/gallery.php:167
4237
+ #: includes/elements/popular-posts-widget.php:213
4238
+ #: includes/elements/recent-posts-grid-carousel.php:200
4239
+ #: includes/elements/recent-posts-land-style.php:187
4240
+ #: includes/elements/recent-posts-masonry.php:167
4241
+ #: includes/elements/recent-posts-tiles-carousel.php:167
4242
+ #: includes/elements/recent-posts-tiles-carousel.php:252
4243
+ #: includes/elements/recent-posts-tiles.php:197
4244
+ #: includes/elements/recent-posts-tiles.php:282
4245
+ #: includes/elements/recent-posts-timeline.php:192
4246
+ #: includes/elements/recent-posts-widget.php:173
4247
+ #: includes/elements/recent-products.php:146
4248
+ msgid "Order"
4249
+ msgstr "ترتیب"
4250
 
4251
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:360
4252
+ #: includes/elementor/widgets/gallery.php:286 includes/elements/gallery.php:173
4253
+ msgid "ASC"
4254
+ msgstr "صعودی"
4255
 
4256
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:361
4257
+ #: includes/elementor/widgets/gallery.php:287 includes/elements/gallery.php:174
4258
+ msgid "DESC"
4259
+ msgstr "نزولی"
4260
 
4261
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:369
4262
+ #, fuzzy
4263
+ msgid "Posts Per Page"
4264
+ msgstr "تصویر پوستر"
4265
 
4266
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:378
4267
+ msgid "Ignore Sticky Posts"
4268
+ msgstr ""
4269
 
4270
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:384
4271
+ msgid "Sticky-posts ordering is visible on frontend only"
4272
+ msgstr ""
4273
 
4274
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:388
4275
+ #, fuzzy
4276
+ msgid "Query ID"
4277
+ msgstr "شناسه گالری"
4278
 
4279
+ #: includes/elementor/modules/query-control/controls/group-control-query.php:391
4280
+ msgid "Give your Query a custom unique id to allow server side filtering"
4281
+ msgstr ""
 
4282
 
4283
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:29
4284
+ msgid "Related"
4285
+ msgstr ""
 
4286
 
4287
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:59
4288
+ #, fuzzy
4289
+ msgid "Recent Posts"
4290
+ msgstr "اکسین نوشته های اخیر"
4291
 
4292
+ #: includes/elementor/modules/query-control/controls/group-control-related.php:62
4293
+ msgid ""
4294
+ "Displayed if no relevant results are found. Manual selection display order "
4295
+ "is random"
4296
+ msgstr ""
4297
 
4298
+ #: includes/elementor/modules/query-control/module.php:74
4299
+ msgid ""
4300
+ "Set to Yes to avoid duplicate posts from showing up on the page. This only "
4301
+ "affects the frontend."
4302
+ msgstr ""
4303
 
4304
+ #: includes/elementor/modules/section.php:90
4305
+ #, fuzzy
4306
+ msgid "Box Container"
4307
+ msgstr "دربرگیرنده"
 
 
 
 
4308
 
4309
+ #: includes/elementor/modules/section.php:106
4310
+ msgid ""
4311
+ "Container options lets you add border, box shadow and background to box "
4312
+ "container."
4313
+ msgstr ""
4314
 
4315
+ #: includes/elementor/modules/settings/general/manager.php:32
4316
+ #: includes/elementor/widgets/theme-elements/logo.php:54
4317
+ msgid "Logo"
4318
+ msgstr ""
4319
 
4320
+ #: includes/elementor/modules/settings/general/manager.php:47
4321
+ #: includes/general-hooks.php:1409
4322
+ #, fuzzy
4323
+ msgid "Footer Brand Height"
4324
+ msgstr "ارتفاع لوگو"
4325
 
4326
+ #: includes/elementor/modules/theme-builder/classes/locations-manager.php:154
4327
+ #, fuzzy
4328
+ msgid "Content Area"
4329
+ msgstr "محتوا"
4330
 
4331
+ #. translators: %s: Location name.
4332
+ #: includes/elementor/modules/theme-builder/classes/locations-manager.php:219
4333
+ msgid "Location '%s' is not a core location."
4334
+ msgstr ""
4335
 
4336
+ #: includes/elementor/modules/theme-builder/module.php:80
4337
+ #, fuzzy
4338
+ msgid "Select a Location"
4339
+ msgstr "عملیاتی را برای اجرا در هنگام کلیک انتخاب کنید."
4340
 
4341
+ #: includes/elementor/modules/theme-builder/module.php:112
4342
+ #, fuzzy
4343
+ msgid "Select Post Type"
4344
+ msgstr "نوع گالری را انتخاب کنید."
4345
 
4346
+ #: includes/elementor/modules/theme-builder/module.php:131
4347
+ #: includes/general-hooks.php:1758 includes/general-hooks.php:1764
4348
+ #, fuzzy
4349
+ msgid "404 Page"
4350
+ msgstr "صفحه"
4351
 
4352
+ #: includes/elementor/modules/theme-builder/theme-page-document.php:43
4353
+ msgid "Unsupported"
4354
+ msgstr ""
4355
 
4356
+ #: includes/elementor/widgets/accordion.php:52
4357
+ #: includes/elementor/widgets/theme-elements/menu.php:299
4358
+ #: includes/elements/accordion-widget.php:65 includes/elements/accordion.php:65
4359
+ #: includes/elements/accordion.php:79 includes/elements/accordion.php:96
4360
+ msgid "Accordion"
4361
+ msgstr "آکاردئون"
4362
 
4363
+ #: includes/elementor/widgets/accordion.php:100
4364
+ #: includes/elementor/widgets/accordion.php:132
4365
+ #: includes/elementor/widgets/accordion.php:618
4366
+ #: includes/elementor/widgets/custom-list.php:101
4367
+ #: includes/elementor/widgets/quote.php:105
4368
+ #: includes/elementor/widgets/staff.php:100
4369
+ #: includes/elementor/widgets/staff.php:140
4370
+ #: includes/elementor/widgets/staff.php:605
4371
+ #: includes/elementor/widgets/tabs.php:100
4372
+ #: includes/elementor/widgets/tabs.php:136
4373
+ #: includes/elementor/widgets/tabs.php:439
4374
+ #: includes/elementor/widgets/testimonial.php:193
4375
+ #: includes/elementor/widgets/text.php:225
4376
+ #: includes/elementor/widgets/text.php:263
4377
+ #: includes/elementor/widgets/text.php:889
4378
+ #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4379
+ #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4380
+ #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4381
+ #: includes/elements/testimonial.php:166 includes/elements/text.php:881
4382
+ msgid "Content"
4383
+ msgstr "محتوا"
4384
 
4385
+ #: includes/elementor/widgets/accordion.php:107
4386
+ #, fuzzy
4387
+ msgid "Accordion Items"
4388
+ msgstr "آکاردئون"
4389
 
4390
+ #: includes/elementor/widgets/accordion.php:111
4391
+ #, fuzzy
4392
+ msgid "Accordion #1"
4393
+ msgstr "آکاردئون"
4394
 
4395
+ #: includes/elementor/widgets/accordion.php:112
4396
+ #: includes/elementor/widgets/accordion.php:116
4397
+ #: includes/elementor/widgets/tabs.php:112
4398
+ #: includes/elementor/widgets/tabs.php:116
4399
+ #: includes/elementor/widgets/tabs.php:120
4400
+ msgid ""
4401
+ "Click edit button to change this text. Lorem ipsum dolor sit amet, "
4402
+ "consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, "
4403
+ "pulvinar dapibus leo."
4404
+ msgstr ""
4405
 
4406
+ #: includes/elementor/widgets/accordion.php:115
4407
+ #, fuzzy
4408
+ msgid "Accordion #2"
4409
+ msgstr "آکاردئون"
4410
 
4411
+ #: includes/elementor/widgets/accordion.php:122
4412
+ #: includes/elementor/widgets/tabs.php:126
4413
+ #, fuzzy
4414
+ msgid "Title & Content"
4415
+ msgstr "محتوای کامل"
4416
 
4417
+ #: includes/elementor/widgets/accordion.php:124
4418
+ #: includes/elements/accordion-widget.php:48 includes/elements/accordion.php:48
4419
+ #, fuzzy
4420
+ msgid "Accordion Title"
4421
+ msgstr "برچسب آکاردئون"
4422
 
4423
+ #: includes/elementor/widgets/accordion.php:134
4424
+ #, fuzzy
4425
+ msgid "Accordion Content"
4426
+ msgstr "آکاردئون"
4427
 
4428
+ #: includes/elementor/widgets/accordion.php:149
4429
+ #: includes/elementor/widgets/theme-elements/menu.php:298
4430
+ #: includes/elements/accordion-widget.php:64 includes/elements/accordion.php:64
4431
+ msgid "Toggle"
4432
+ msgstr "باز و بسته شونده"
4433
 
4434
+ #: includes/elementor/widgets/accordion.php:150
4435
+ msgid "Accordion (auto close other open tabs)"
4436
+ msgstr ""
4437
 
4438
+ #: includes/elementor/widgets/accordion.php:159
4439
+ msgid "Title HTML Tag"
4440
+ msgstr ""
4441
 
4442
+ #: includes/elementor/widgets/accordion.php:187
4443
+ msgid "Item Wrapper"
4444
+ msgstr ""
4445
 
4446
+ #: includes/elementor/widgets/accordion.php:195
4447
+ #: includes/elementor/widgets/accordion.php:383
4448
+ #: includes/elementor/widgets/accordion.php:659
4449
+ #: includes/elementor/widgets/contact-form.php:298
4450
+ #: includes/elementor/widgets/contact-form.php:1065
4451
+ #: includes/elementor/widgets/contact-form.php:1299
4452
+ #: includes/elementor/widgets/contact-form.php:1661
4453
+ #: includes/elementor/widgets/custom-list.php:204
4454
+ #: includes/elementor/widgets/custom-list.php:258
4455
+ #: includes/elementor/widgets/custom-list.php:970
4456
+ #: includes/elementor/widgets/custom-list.php:1022
4457
+ #: includes/elementor/widgets/heading-modern.php:437
4458
+ #: includes/elementor/widgets/heading-modern.php:622
4459
+ #: includes/elementor/widgets/heading-modern.php:793
4460
+ #: includes/elementor/widgets/heading-modern.php:915
4461
+ #: includes/elementor/widgets/heading-modern.php:991
4462
+ #: includes/elementor/widgets/heading-modern.php:1105
4463
+ #: includes/elementor/widgets/modern-button.php:658
4464
+ #: includes/elementor/widgets/modern-button.php:770
4465
+ #: includes/elementor/widgets/modern-button.php:876
4466
+ #: includes/elementor/widgets/modern-button.php:975
4467
+ #: includes/elementor/widgets/quote.php:288
4468
+ #: includes/elementor/widgets/tabs.php:480
4469
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4470
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4471
+ #: includes/elementor/widgets/theme-elements/logo.php:493
4472
+ #: includes/elementor/widgets/theme-elements/logo.php:585
4473
+ #: includes/elementor/widgets/theme-elements/menu.php:530
4474
+ #: includes/elementor/widgets/theme-elements/menu.php:969
4475
+ #: includes/elementor/widgets/theme-elements/menu.php:1338
4476
+ #: includes/elementor/widgets/theme-elements/search.php:318
4477
+ #: includes/elementor/widgets/theme-elements/search.php:428
4478
+ #: includes/elementor/widgets/theme-elements/site-title.php:334
4479
+ #: includes/elementor/widgets/theme-elements/site-title.php:400
4480
+ #: includes/elementor/widgets/theme-elements/site-title.php:466
4481
+ msgid "Margin"
4482
+ msgstr ""
4483
 
4484
+ #: includes/elementor/widgets/accordion.php:208
4485
+ #: includes/elementor/widgets/accordion.php:396
4486
+ #: includes/elementor/widgets/accordion.php:672
4487
+ #: includes/elementor/widgets/carousel-navigation.php:362
4488
+ #: includes/elementor/widgets/carousel-navigation.php:468
4489
+ #: includes/elementor/widgets/contact-form.php:273
4490
+ #: includes/elementor/widgets/contact-form.php:591
4491
+ #: includes/elementor/widgets/contact-form.php:811
4492
+ #: includes/elementor/widgets/contact-form.php:1040
4493
+ #: includes/elementor/widgets/contact-form.php:1274
4494
+ #: includes/elementor/widgets/contact-form.php:1636
4495
+ #: includes/elementor/widgets/gallery.php:491
4496
+ #: includes/elementor/widgets/icon.php:360
4497
+ #: includes/elementor/widgets/mailchimp.php:298
4498
+ #: includes/elementor/widgets/mailchimp.php:544
4499
+ #: includes/elementor/widgets/modern-button.php:391
4500
+ #: includes/elementor/widgets/modern-button.php:444
4501
+ #: includes/elementor/widgets/modern-button.php:900
4502
+ #: includes/elementor/widgets/modern-button.php:999
4503
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:957
4504
+ #: includes/elementor/widgets/recent-posts-land-style.php:551
4505
+ #: includes/elementor/widgets/recent-posts-masonry.php:630
4506
+ #: includes/elementor/widgets/recent-posts-timeline.php:577
4507
+ #: includes/elementor/widgets/recent-products.php:522
4508
+ #: includes/elementor/widgets/tabs.php:235
4509
+ #: includes/elementor/widgets/tabs.php:493
4510
+ #: includes/elementor/widgets/text.php:1468
4511
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4512
+ #: includes/elementor/widgets/theme-elements/logo.php:390
4513
+ #: includes/elementor/widgets/theme-elements/menu.php:421
4514
+ #: includes/elementor/widgets/theme-elements/menu.php:498
4515
+ #: includes/elementor/widgets/theme-elements/menu.php:705
4516
+ #: includes/elementor/widgets/theme-elements/menu.php:754
4517
+ #: includes/elementor/widgets/theme-elements/menu.php:851
4518
+ #: includes/elementor/widgets/theme-elements/menu.php:929
4519
+ #: includes/elementor/widgets/theme-elements/menu.php:1220
4520
+ #: includes/elementor/widgets/theme-elements/menu.php:1298
4521
+ #: includes/elementor/widgets/theme-elements/modern-search.php:463
4522
+ #: includes/elementor/widgets/theme-elements/modern-search.php:527
4523
+ #: includes/elementor/widgets/theme-elements/search.php:363
4524
+ #, fuzzy
4525
+ msgid "Border Radius"
4526
+ msgstr "کادربندی شده"
4527
 
4528
+ #: includes/elementor/widgets/accordion.php:224
4529
+ #: includes/elementor/widgets/accordion.php:412
4530
+ #: includes/elementor/widgets/accordion.php:544
4531
+ #: includes/elementor/widgets/button.php:211
4532
+ #: includes/elementor/widgets/button.php:295
4533
+ #: includes/elementor/widgets/button.php:427
4534
+ #: includes/elementor/widgets/button.php:497
4535
+ #: includes/elementor/widgets/carousel-navigation.php:284
4536
+ #: includes/elementor/widgets/contact-form.php:314
4537
+ #: includes/elementor/widgets/contact-form.php:619
4538
+ #: includes/elementor/widgets/contact-form.php:839
4539
+ #: includes/elementor/widgets/contact-form.php:1081
4540
+ #: includes/elementor/widgets/contact-form.php:1315
4541
+ #: includes/elementor/widgets/contact-form.php:1677
4542
+ #: includes/elementor/widgets/custom-list.php:889
4543
+ #: includes/elementor/widgets/custom-list.php:1038
4544
+ #: includes/elementor/widgets/heading-modern.php:359
4545
+ #: includes/elementor/widgets/heading-modern.php:544
4546
+ #: includes/elementor/widgets/heading-modern.php:715
4547
+ #: includes/elementor/widgets/icon.php:204
4548
+ #: includes/elementor/widgets/image.php:502
4549
+ #: includes/elementor/widgets/mailchimp.php:326
4550
+ #: includes/elementor/widgets/mailchimp.php:571
4551
+ #: includes/elementor/widgets/modern-button.php:294
4552
+ #: includes/elementor/widgets/modern-button.php:354
4553
+ #: includes/elementor/widgets/modern-button.php:479
4554
+ #: includes/elementor/widgets/modern-button.php:579
4555
+ #: includes/elementor/widgets/modern-button.php:691
4556
+ #: includes/elementor/widgets/modern-button.php:817
4557
+ #: includes/elementor/widgets/recent-comments.php:181
4558
+ #: includes/elementor/widgets/recent-comments.php:264
4559
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:974
4560
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1041
4561
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
4562
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
4563
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
4564
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1542
4565
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1679
4566
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1802
4567
+ #: includes/elementor/widgets/recent-posts-land-style.php:585
4568
+ #: includes/elementor/widgets/recent-posts-land-style.php:689
4569
+ #: includes/elementor/widgets/recent-posts-land-style.php:872
4570
+ #: includes/elementor/widgets/recent-posts-masonry.php:647
4571
+ #: includes/elementor/widgets/recent-posts-masonry.php:714
4572
+ #: includes/elementor/widgets/recent-posts-masonry.php:818
4573
+ #: includes/elementor/widgets/recent-posts-masonry.php:1001
4574
+ #: includes/elementor/widgets/recent-posts-masonry.php:1083
4575
+ #: includes/elementor/widgets/recent-posts-masonry.php:1218
4576
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:488
4577
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:592
4578
+ #: includes/elementor/widgets/recent-posts-tiles.php:429
4579
+ #: includes/elementor/widgets/recent-posts-tiles.php:533
4580
+ #: includes/elementor/widgets/recent-posts-timeline.php:611
4581
+ #: includes/elementor/widgets/recent-posts-timeline.php:715
4582
+ #: includes/elementor/widgets/recent-posts-timeline.php:898
4583
+ #: includes/elementor/widgets/recent-products.php:618
4584
+ #: includes/elementor/widgets/staff.php:433
4585
+ #: includes/elementor/widgets/staff.php:680
4586
+ #: includes/elementor/widgets/svg.php:320
4587
+ #: includes/elementor/widgets/tabs.php:251
4588
+ #: includes/elementor/widgets/tabs.php:383
4589
+ #: includes/elementor/widgets/testimonial.php:359
4590
+ #: includes/elementor/widgets/testimonial.php:473
4591
+ #: includes/elementor/widgets/testimonial.php:591
4592
+ #: includes/elementor/widgets/testimonial.php:887
4593
+ #: includes/elementor/widgets/text.php:507
4594
+ #: includes/elementor/widgets/text.php:693
4595
+ #: includes/elementor/widgets/text.php:789
4596
+ #: includes/elementor/widgets/text.php:900
4597
+ #: includes/elementor/widgets/text.php:1060
4598
+ #: includes/elementor/widgets/text.php:1187
4599
+ #: includes/elementor/widgets/text.php:1244
4600
+ #: includes/elementor/widgets/text.php:1376
4601
+ #: includes/elementor/widgets/text.php:1484
4602
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4603
+ #: includes/elementor/widgets/theme-elements/copyright.php:175
4604
+ #: includes/elementor/widgets/theme-elements/logo.php:293
4605
+ #: includes/elementor/widgets/theme-elements/menu.php:359
4606
+ #: includes/elementor/widgets/theme-elements/menu.php:680
4607
+ #: includes/elementor/widgets/theme-elements/menu.php:796
4608
+ #: includes/elementor/widgets/theme-elements/menu.php:1017
4609
+ #: includes/elementor/widgets/theme-elements/menu.php:1166
4610
+ #: includes/elementor/widgets/theme-elements/modern-search.php:225
4611
+ #: includes/elementor/widgets/theme-elements/modern-search.php:332
4612
+ #: includes/elementor/widgets/theme-elements/modern-search.php:423
4613
+ #: includes/elements/button.php:118 includes/elements/text.php:738
4614
+ #: includes/general-hooks.php:754 includes/general-hooks.php:1159
4615
+ msgid "Normal"
4616
+ msgstr "معمولی"
4617
 
4618
+ #: includes/elementor/widgets/accordion.php:232
4619
+ #: includes/elementor/widgets/accordion.php:270
4620
+ #: includes/elementor/widgets/accordion.php:308
4621
+ #: includes/elementor/widgets/accordion.php:420
4622
+ #: includes/elementor/widgets/accordion.php:458
4623
+ #: includes/elementor/widgets/accordion.php:496
4624
+ #: includes/elementor/widgets/image.php:653
4625
+ #: includes/elementor/widgets/tabs.php:259
4626
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:271
4627
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:461
4628
+ msgid "Box Shadow"
4629
+ msgstr ""
4630
 
4631
+ #: includes/elementor/widgets/accordion.php:300
4632
+ #: includes/elementor/widgets/accordion.php:488
4633
+ #: includes/elementor/widgets/accordion.php:584
4634
+ #: includes/elementor/widgets/tabs.php:327
4635
+ msgid "Selected"
4636
+ msgstr ""
 
4637
 
4638
+ #: includes/elementor/widgets/accordion.php:345
4639
+ #, fuzzy
4640
+ msgid "Title Bar"
4641
+ msgstr "عنوان"
4642
+
4643
+ #: includes/elementor/widgets/accordion.php:353
4644
+ #: includes/elementor/widgets/tabs.php:192
4645
+ msgid "Mouse Cursor"
4646
+ msgstr ""
4647
+
4648
+ #: includes/elementor/widgets/accordion.php:357
4649
+ #: includes/elementor/widgets/tabs.php:196
4650
+ #: includes/elementor/widgets/theme-elements/modern-search.php:557
4651
+ #, fuzzy
4652
+ msgid "Pointer"
4653
+ msgstr "وسط"
4654
+
4655
+ #: includes/elementor/widgets/accordion.php:358
4656
+ #: includes/elementor/widgets/contact-box.php:322
4657
+ #: includes/elementor/widgets/gmap.php:203
4658
+ #: includes/elementor/widgets/tabs.php:197
4659
+ #: includes/elementor/widgets/theme-elements/modern-search.php:558
4660
+ #: includes/elements/contact-box.php:276 includes/elements/gmap.php:169
4661
+ msgid "Zoom"
4662
+ msgstr "بزرگنمایی"
4663
+
4664
+ #: includes/elementor/widgets/accordion.php:359
4665
+ #: includes/elementor/widgets/tabs.php:198
4666
+ #: includes/elementor/widgets/theme-elements/modern-search.php:559
4667
+ msgid "Help"
4668
+ msgstr ""
4669
+
4670
+ #: includes/elementor/widgets/accordion.php:371
4671
+ #: includes/elementor/widgets/accordion.php:646
4672
+ #: includes/elementor/widgets/button.php:257
4673
+ #: includes/elementor/widgets/button.php:469
4674
+ #: includes/elementor/widgets/carousel-navigation.php:375
4675
+ #: includes/elementor/widgets/carousel-navigation.php:481
4676
+ #: includes/elementor/widgets/contact-form.php:285
4677
+ #: includes/elementor/widgets/contact-form.php:603
4678
+ #: includes/elementor/widgets/contact-form.php:823
4679
+ #: includes/elementor/widgets/contact-form.php:1052
4680
+ #: includes/elementor/widgets/contact-form.php:1286
4681
+ #: includes/elementor/widgets/contact-form.php:1648
4682
+ #: includes/elementor/widgets/custom-list.php:983
4683
+ #: includes/elementor/widgets/custom-list.php:1009
4684
+ #: includes/elementor/widgets/heading-modern.php:450
4685
+ #: includes/elementor/widgets/heading-modern.php:635
4686
+ #: includes/elementor/widgets/heading-modern.php:806
4687
+ #: includes/elementor/widgets/heading-modern.php:1118
4688
+ #: includes/elementor/widgets/icon.php:311
4689
+ #: includes/elementor/widgets/mailchimp.php:310
4690
+ #: includes/elementor/widgets/mailchimp.php:556
4691
+ #: includes/elementor/widgets/modern-button.php:379
4692
+ #: includes/elementor/widgets/modern-button.php:432
4693
+ #: includes/elementor/widgets/modern-button.php:888
4694
+ #: includes/elementor/widgets/modern-button.php:987
4695
+ #: includes/elementor/widgets/quote.php:333
4696
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
4697
+ #: includes/elementor/widgets/staff.php:778
4698
+ #: includes/elementor/widgets/tabs.php:210
4699
+ #: includes/elementor/widgets/tabs.php:467
4700
+ #: includes/elementor/widgets/testimonial.php:695
4701
+ #: includes/elementor/widgets/testimonial.php:843
4702
+ #: includes/elementor/widgets/text.php:392
4703
+ #: includes/elementor/widgets/text.php:490
4704
+ #: includes/elementor/widgets/text.php:961
4705
+ #: includes/elementor/widgets/text.php:1395
4706
+ #: includes/elementor/widgets/text.php:1456
4707
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4708
+ #: includes/elementor/widgets/theme-elements/menu.php:517
4709
+ #: includes/elementor/widgets/theme-elements/menu.php:956
4710
+ #: includes/elementor/widgets/theme-elements/menu.php:1325
4711
+ #: includes/elementor/widgets/theme-elements/modern-search.php:440
4712
+ #: includes/elementor/widgets/theme-elements/modern-search.php:505
4713
+ #: includes/elementor/widgets/theme-elements/modern-search.php:608
4714
+ #: includes/elementor/widgets/theme-elements/search.php:330
4715
+ #: includes/elementor/widgets/theme-elements/search.php:416
4716
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:327
4717
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:429
4718
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:494
4719
+ #: includes/elementor/widgets/touch-slider.php:314
4720
+ #: includes/elementor/widgets/touch-slider.php:369
4721
+ #: includes/elementor/widgets/touch-slider.php:427
4722
+ #, fuzzy
4723
+ msgid "Padding"
4724
+ msgstr "تیتر گذاری"
4725
+
4726
+ #: includes/elementor/widgets/accordion.php:551
4727
+ #: includes/elementor/widgets/accordion.php:571
4728
+ #: includes/elementor/widgets/accordion.php:591
4729
+ #: includes/elementor/widgets/accordion.php:626
4730
+ #: includes/elementor/widgets/button.php:434
4731
+ #: includes/elementor/widgets/button.php:454
4732
+ #: includes/elementor/widgets/button.php:504
4733
+ #: includes/elementor/widgets/button.php:542
4734
+ #: includes/elementor/widgets/carousel-navigation.php:309
4735
+ #: includes/elementor/widgets/contact-box.php:371
4736
+ #: includes/elementor/widgets/contact-form.php:179
4737
+ #: includes/elementor/widgets/contact-form.php:464
4738
+ #: includes/elementor/widgets/contact-form.php:489
4739
+ #: includes/elementor/widgets/contact-form.php:709
4740
+ #: includes/elementor/widgets/contact-form.php:938
4741
+ #: includes/elementor/widgets/contact-form.php:1181
4742
+ #: includes/elementor/widgets/contact-form.php:1464
4743
+ #: includes/elementor/widgets/contact-form.php:1499
4744
+ #: includes/elementor/widgets/contact-form.php:1534
4745
+ #: includes/elementor/widgets/custom-list.php:176
4746
+ #: includes/elementor/widgets/custom-list.php:232
4747
+ #: includes/elementor/widgets/custom-list.php:637
4748
+ #: includes/elementor/widgets/custom-list.php:733
4749
+ #: includes/elementor/widgets/custom-list.php:774
4750
+ #: includes/elementor/widgets/custom-list.php:830
4751
+ #: includes/elementor/widgets/custom-list.php:896
4752
+ #: includes/elementor/widgets/custom-list.php:925
4753
+ #: includes/elementor/widgets/divider.php:376
4754
+ #: includes/elementor/widgets/heading-modern.php:366
4755
+ #: includes/elementor/widgets/heading-modern.php:404
4756
+ #: includes/elementor/widgets/heading-modern.php:551
4757
+ #: includes/elementor/widgets/heading-modern.php:589
4758
+ #: includes/elementor/widgets/heading-modern.php:722
4759
+ #: includes/elementor/widgets/heading-modern.php:760
4760
+ #: includes/elementor/widgets/heading-modern.php:928
4761
+ #: includes/elementor/widgets/heading-modern.php:971
4762
+ #: includes/elementor/widgets/mailchimp.php:196
4763
+ #: includes/elementor/widgets/mailchimp.php:423
4764
+ #: includes/elementor/widgets/mailchimp.php:578
4765
+ #: includes/elementor/widgets/mailchimp.php:616
4766
+ #: includes/elementor/widgets/modern-button.php:495
4767
+ #: includes/elementor/widgets/modern-button.php:534
4768
+ #: includes/elementor/widgets/modern-button.php:595
4769
+ #: includes/elementor/widgets/modern-button.php:634
4770
+ #: includes/elementor/widgets/modern-button.php:707
4771
+ #: includes/elementor/widgets/modern-button.php:746
4772
+ #: includes/elementor/widgets/modern-button.php:847
4773
+ #: includes/elementor/widgets/modern-button.php:946
4774
+ #: includes/elementor/widgets/recent-comments.php:188
4775
+ #: includes/elementor/widgets/recent-comments.php:208
4776
+ #: includes/elementor/widgets/recent-comments.php:271
4777
+ #: includes/elementor/widgets/recent-comments.php:291
4778
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1051
4779
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1077
4780
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1155
4781
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1181
4782
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
4783
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
4784
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
4785
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1827
4786
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1883
4787
+ #: includes/elementor/widgets/recent-posts-land-style.php:595
4788
+ #: includes/elementor/widgets/recent-posts-land-style.php:621
4789
+ #: includes/elementor/widgets/recent-posts-land-style.php:699
4790
+ #: includes/elementor/widgets/recent-posts-land-style.php:725
4791
+ #: includes/elementor/widgets/recent-posts-land-style.php:811
4792
+ #: includes/elementor/widgets/recent-posts-land-style.php:879
4793
+ #: includes/elementor/widgets/recent-posts-land-style.php:899
4794
+ #: includes/elementor/widgets/recent-posts-masonry.php:724
4795
+ #: includes/elementor/widgets/recent-posts-masonry.php:750
4796
+ #: includes/elementor/widgets/recent-posts-masonry.php:828
4797
+ #: includes/elementor/widgets/recent-posts-masonry.php:854
4798
+ #: includes/elementor/widgets/recent-posts-masonry.php:940
4799
+ #: includes/elementor/widgets/recent-posts-masonry.php:1008
4800
+ #: includes/elementor/widgets/recent-posts-masonry.php:1028
4801
+ #: includes/elementor/widgets/recent-posts-masonry.php:1243
4802
+ #: includes/elementor/widgets/recent-posts-masonry.php:1299
4803
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:498
4804
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:524
4805
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:602
4806
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:628
4807
+ #: includes/elementor/widgets/recent-posts-tiles.php:439
4808
+ #: includes/elementor/widgets/recent-posts-tiles.php:465
4809
+ #: includes/elementor/widgets/recent-posts-tiles.php:543
4810
+ #: includes/elementor/widgets/recent-posts-tiles.php:569
4811
+ #: includes/elementor/widgets/recent-posts-timeline.php:621
4812
+ #: includes/elementor/widgets/recent-posts-timeline.php:647
4813
+ #: includes/elementor/widgets/recent-posts-timeline.php:725
4814
+ #: includes/elementor/widgets/recent-posts-timeline.php:751
4815
+ #: includes/elementor/widgets/recent-posts-timeline.php:837
4816
+ #: includes/elementor/widgets/recent-posts-timeline.php:905
4817
+ #: includes/elementor/widgets/recent-posts-timeline.php:925
4818
+ #: includes/elementor/widgets/recent-products.php:554
4819
+ #: includes/elementor/widgets/recent-products.php:628
4820
+ #: includes/elementor/widgets/recent-products.php:654
4821
+ #: includes/elementor/widgets/staff.php:443
4822
+ #: includes/elementor/widgets/staff.php:469
4823
+ #: includes/elementor/widgets/staff.php:554
4824
+ #: includes/elementor/widgets/staff.php:616
4825
+ #: includes/elementor/widgets/staff.php:690
4826
+ #: includes/elementor/widgets/staff.php:716
4827
+ #: includes/elementor/widgets/tabs.php:390
4828
+ #: includes/elementor/widgets/tabs.php:410
4829
+ #: includes/elementor/widgets/tabs.php:447
4830
+ #: includes/elementor/widgets/testimonial.php:369
4831
+ #: includes/elementor/widgets/testimonial.php:407
4832
+ #: includes/elementor/widgets/testimonial.php:483
4833
+ #: includes/elementor/widgets/testimonial.php:521
4834
+ #: includes/elementor/widgets/testimonial.php:601
4835
+ #: includes/elementor/widgets/testimonial.php:639
4836
+ #: includes/elementor/widgets/text.php:700
4837
+ #: includes/elementor/widgets/text.php:720
4838
+ #: includes/elementor/widgets/text.php:796
4839
+ #: includes/elementor/widgets/text.php:816
4840
+ #: includes/elementor/widgets/text.php:907
4841
+ #: includes/elementor/widgets/text.php:927
4842
+ #: includes/elementor/widgets/text.php:1194
4843
+ #: includes/elementor/widgets/text.php:1214
4844
+ #: includes/elementor/widgets/text.php:1251
4845
+ #: includes/elementor/widgets/text.php:1289
4846
+ #: includes/elementor/widgets/theme-elements/copyright.php:182
4847
+ #: includes/elementor/widgets/theme-elements/copyright.php:219
4848
+ #: includes/elementor/widgets/theme-elements/current-time.php:172
4849
+ #: includes/elementor/widgets/theme-elements/logo.php:462
4850
+ #: includes/elementor/widgets/theme-elements/logo.php:554
4851
+ #: includes/elementor/widgets/theme-elements/menu.php:366
4852
+ #: includes/elementor/widgets/theme-elements/menu.php:443
4853
+ #: includes/elementor/widgets/theme-elements/menu.php:556
4854
+ #: includes/elementor/widgets/theme-elements/menu.php:803
4855
+ #: includes/elementor/widgets/theme-elements/menu.php:882
4856
+ #: includes/elementor/widgets/theme-elements/menu.php:1024
4857
+ #: includes/elementor/widgets/theme-elements/menu.php:1045
4858
+ #: includes/elementor/widgets/theme-elements/menu.php:1173
4859
+ #: includes/elementor/widgets/theme-elements/menu.php:1251
4860
+ #: includes/elementor/widgets/theme-elements/menu.php:1380
4861
+ #: includes/elementor/widgets/theme-elements/modern-search.php:232
4862
+ #: includes/elementor/widgets/theme-elements/modern-search.php:279
4863
+ #: includes/elementor/widgets/theme-elements/modern-search.php:339
4864
+ #: includes/elementor/widgets/theme-elements/modern-search.php:376
4865
+ #: includes/elementor/widgets/theme-elements/site-title.php:303
4866
+ #: includes/elementor/widgets/theme-elements/site-title.php:369
4867
+ #: includes/elementor/widgets/theme-elements/site-title.php:435
4868
+ #: includes/elementor/widgets/touch-slider.php:343
4869
+ #: includes/elementor/widgets/touch-slider.php:401
4870
+ #, fuzzy
4871
+ msgid "Color"
4872
+ msgstr "جعبه رنگ"
4873
+
4874
+ #: includes/elementor/widgets/audio.php:47
4875
+ #, fuzzy
4876
+ msgid "Audio Player"
4877
+ msgstr "پخش کننده صدا"
4878
+
4879
+ #: includes/elementor/widgets/audio.php:95
4880
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:746
4881
+ #: includes/elements/audio.php:15
4882
+ msgid "Audio"
4883
+ msgstr ""
4884
+
4885
+ #: includes/elementor/widgets/audio.php:102 includes/elements/audio.php:57
4886
+ msgid "Audio file(MP3 or ogg)"
4887
+ msgstr "فایل صوتی (MP3 یا OGG)"
4888
+
4889
+ #: includes/elementor/widgets/audio.php:111
4890
+ #: includes/elementor/widgets/video.php:144 includes/elements/audio.php:84
4891
+ msgid "AutoPlay"
4892
+ msgstr "نمایش خودکار"
4893
+
4894
+ #: includes/elementor/widgets/audio.php:112 includes/elements/audio.php:85
4895
+ msgid "Play the audio file automatically."
4896
+ msgstr "فایل صوتی را به صورت خودکار پخش کن."
4897
+
4898
+ #: includes/elementor/widgets/audio.php:114
4899
+ #: includes/elementor/widgets/audio.php:126
4900
+ #: includes/elementor/widgets/button.php:132
4901
+ #: includes/elementor/widgets/button.php:174
4902
+ #: includes/elementor/widgets/contact-box.php:124
4903
+ #: includes/elementor/widgets/contact-box.php:155
4904
+ #: includes/elementor/widgets/contact-box.php:310
4905
+ #: includes/elementor/widgets/contact-box.php:349
4906
+ #: includes/elementor/widgets/custom-list.php:154
4907
+ #: includes/elementor/widgets/custom-list.php:567
4908
+ #: includes/elementor/widgets/custom-list.php:653
4909
+ #: includes/elementor/widgets/gallery.php:229
4910
+ #: includes/elementor/widgets/gallery.php:240
4911
+ #: includes/elementor/widgets/gallery.php:273
4912
+ #: includes/elementor/widgets/gmap.php:193
4913
+ #: includes/elementor/widgets/gmap.php:214
4914
+ #: includes/elementor/widgets/heading-modern.php:190
4915
+ #: includes/elementor/widgets/image.php:155
4916
+ #: includes/elementor/widgets/image.php:188
4917
+ #: includes/elementor/widgets/image.php:288
4918
+ #: includes/elementor/widgets/image.php:345
4919
+ #: includes/elementor/widgets/image.php:385
4920
+ #: includes/elementor/widgets/image.php:399
4921
+ #: includes/elementor/widgets/modern-button.php:226
4922
+ #: includes/elementor/widgets/modern-button.php:238
4923
+ #: includes/elementor/widgets/quote.php:221
4924
+ #: includes/elementor/widgets/recent-comments.php:155
4925
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:282
4926
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:297
4927
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:340
4928
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:367
4929
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:383
4930
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:425
4931
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:449
4932
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:461
4933
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:490
4934
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:505
4935
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:517
4936
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:533
4937
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:545
4938
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:557
4939
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:569
4940
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:582
4941
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:625
4942
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:669
4943
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:708
4944
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:723
4945
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:760
4946
+ #: includes/elementor/widgets/recent-posts-land-style.php:127
4947
+ #: includes/elementor/widgets/recent-posts-land-style.php:139
4948
+ #: includes/elementor/widgets/recent-posts-land-style.php:181
4949
+ #: includes/elementor/widgets/recent-posts-land-style.php:193
4950
+ #: includes/elementor/widgets/recent-posts-land-style.php:206
4951
+ #: includes/elementor/widgets/recent-posts-land-style.php:221
4952
+ #: includes/elementor/widgets/recent-posts-land-style.php:236
4953
+ #: includes/elementor/widgets/recent-posts-land-style.php:251
4954
+ #: includes/elementor/widgets/recent-posts-land-style.php:263
4955
+ #: includes/elementor/widgets/recent-posts-land-style.php:276
4956
+ #: includes/elementor/widgets/recent-posts-land-style.php:318
4957
+ #: includes/elementor/widgets/recent-posts-land-style.php:370
4958
+ #: includes/elementor/widgets/recent-posts-land-style.php:382
4959
+ #: includes/elementor/widgets/recent-posts-land-style.php:394
4960
+ #: includes/elementor/widgets/recent-posts-masonry.php:179
4961
+ #: includes/elementor/widgets/recent-posts-masonry.php:192
4962
+ #: includes/elementor/widgets/recent-posts-masonry.php:207
4963
+ #: includes/elementor/widgets/recent-posts-masonry.php:249
4964
+ #: includes/elementor/widgets/recent-posts-masonry.php:261
4965
+ #: includes/elementor/widgets/recent-posts-masonry.php:289
4966
+ #: includes/elementor/widgets/recent-posts-masonry.php:304
4967
+ #: includes/elementor/widgets/recent-posts-masonry.php:319
4968
+ #: includes/elementor/widgets/recent-posts-masonry.php:331
4969
+ #: includes/elementor/widgets/recent-posts-masonry.php:343
4970
+ #: includes/elementor/widgets/recent-posts-masonry.php:356
4971
+ #: includes/elementor/widgets/recent-posts-masonry.php:399
4972
+ #: includes/elementor/widgets/recent-posts-masonry.php:415
4973
+ #: includes/elementor/widgets/recent-posts-masonry.php:467
4974
+ #: includes/elementor/widgets/recent-posts-masonry.php:479
4975
+ #: includes/elementor/widgets/recent-posts-masonry.php:491
4976
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:253
4977
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:265
4978
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:301
4979
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:313
4980
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:362
4981
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:374
4982
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:386
4983
+ #: includes/elementor/widgets/recent-posts-tiles.php:203
4984
+ #: includes/elementor/widgets/recent-posts-tiles.php:215
4985
+ #: includes/elementor/widgets/recent-posts-tiles.php:264
4986
+ #: includes/elementor/widgets/recent-posts-tiles.php:276
4987
+ #: includes/elementor/widgets/recent-posts-tiles.php:288
4988
+ #: includes/elementor/widgets/recent-posts-timeline.php:166
4989
+ #: includes/elementor/widgets/recent-posts-timeline.php:179
4990
+ #: includes/elementor/widgets/recent-posts-timeline.php:194
4991
+ #: includes/elementor/widgets/recent-posts-timeline.php:236
4992
+ #: includes/elementor/widgets/recent-posts-timeline.php:248
4993
+ #: includes/elementor/widgets/recent-posts-timeline.php:260
4994
+ #: includes/elementor/widgets/recent-posts-timeline.php:272
4995
+ #: includes/elementor/widgets/recent-posts-timeline.php:285
4996
+ #: includes/elementor/widgets/recent-posts-timeline.php:328
4997
+ #: includes/elementor/widgets/recent-posts-timeline.php:344
4998
+ #: includes/elementor/widgets/recent-posts-timeline.php:396
4999
+ #: includes/elementor/widgets/recent-posts-timeline.php:408
5000
+ #: includes/elementor/widgets/recent-posts-timeline.php:420
5001
+ #: includes/elementor/widgets/recent-products.php:187
5002
+ #: includes/elementor/widgets/recent-products.php:199
5003
+ #: includes/elementor/widgets/recent-products.php:212
5004
+ #: includes/elementor/widgets/recent-products.php:226
5005
+ #: includes/elementor/widgets/recent-products.php:268
5006
+ #: includes/elementor/widgets/recent-products.php:280
5007
+ #: includes/elementor/widgets/recent-products.php:292
5008
+ #: includes/elementor/widgets/recent-products.php:341
5009
+ #: includes/elementor/widgets/recent-products.php:353
5010
+ #: includes/elementor/widgets/recent-products.php:365
5011
+ #: includes/elementor/widgets/search.php:104
5012
+ #: includes/elementor/widgets/search.php:116
5013
+ #: includes/elementor/widgets/search.php:131
5014
+ #: includes/elementor/widgets/search.php:143
5015
+ #: includes/elementor/widgets/staff.php:225
5016
+ #: includes/elementor/widgets/staff.php:277
5017
+ #: includes/elementor/widgets/testimonial.php:154
5018
+ #: includes/elementor/widgets/text.php:164
5019
+ #: includes/elementor/widgets/text.php:288
5020
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5021
+ #: includes/elementor/widgets/theme-elements/copyright.php:115
5022
+ #: includes/elementor/widgets/theme-elements/copyright.php:128
5023
+ #: includes/elementor/widgets/theme-elements/logo.php:415
5024
+ #: includes/elementor/widgets/theme-elements/menu.php:175
5025
+ #: includes/elementor/widgets/theme-elements/menu.php:190
5026
+ #: includes/elementor/widgets/theme-elements/modern-search.php:157
5027
+ #: includes/elementor/widgets/theme-elements/modern-search.php:170
5028
+ #: includes/elementor/widgets/theme-elements/modern-search.php:183
5029
+ #: includes/elementor/widgets/theme-elements/modern-search.php:199
5030
+ #: includes/elementor/widgets/theme-elements/search.php:157
5031
+ #: includes/elementor/widgets/theme-elements/site-title.php:221
5032
+ #: includes/elementor/widgets/theme-elements/site-title.php:233
5033
+ #: includes/elementor/widgets/theme-elements/site-title.php:248
5034
+ #: includes/elementor/widgets/touch-slider.php:129
5035
+ #: includes/elementor/widgets/touch-slider.php:142
5036
+ #: includes/elementor/widgets/touch-slider.php:154
5037
+ #: includes/elementor/widgets/touch-slider.php:179
5038
+ #: includes/elementor/widgets/touch-slider.php:191
5039
+ #: includes/elementor/widgets/video.php:146
5040
+ #: includes/elementor/widgets/video.php:158
5041
+ msgid "On"
5042
+ msgstr ""
5043
+
5044
+ #: includes/elementor/widgets/audio.php:115
5045
+ #: includes/elementor/widgets/audio.php:127
5046
+ #: includes/elementor/widgets/button.php:133
5047
+ #: includes/elementor/widgets/button.php:175
5048
+ #: includes/elementor/widgets/contact-box.php:125
5049
+ #: includes/elementor/widgets/contact-box.php:156
5050
+ #: includes/elementor/widgets/contact-box.php:311
5051
+ #: includes/elementor/widgets/contact-box.php:350
5052
+ #: includes/elementor/widgets/custom-list.php:155
5053
+ #: includes/elementor/widgets/custom-list.php:568
5054
+ #: includes/elementor/widgets/custom-list.php:654
5055
+ #: includes/elementor/widgets/gallery.php:230
5056
+ #: includes/elementor/widgets/gallery.php:241
5057
+ #: includes/elementor/widgets/gallery.php:274
5058
+ #: includes/elementor/widgets/gmap.php:194
5059
+ #: includes/elementor/widgets/gmap.php:215
5060
+ #: includes/elementor/widgets/heading-modern.php:191
5061
+ #: includes/elementor/widgets/image.php:156
5062
+ #: includes/elementor/widgets/image.php:189
5063
+ #: includes/elementor/widgets/image.php:289
5064
+ #: includes/elementor/widgets/image.php:346
5065
+ #: includes/elementor/widgets/image.php:386
5066
+ #: includes/elementor/widgets/image.php:400
5067
+ #: includes/elementor/widgets/modern-button.php:227
5068
+ #: includes/elementor/widgets/modern-button.php:239
5069
+ #: includes/elementor/widgets/quote.php:222
5070
+ #: includes/elementor/widgets/recent-comments.php:156
5071
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:283
5072
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:298
5073
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:341
5074
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:368
5075
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:384
5076
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:426
5077
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:450
5078
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:462
5079
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:491
5080
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:506
5081
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:518
5082
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:534
5083
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:546
5084
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:558
5085
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:570
5086
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:583
5087
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:626
5088
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:670
5089
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:709
5090
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:724
5091
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:761
5092
+ #: includes/elementor/widgets/recent-posts-land-style.php:128
5093
+ #: includes/elementor/widgets/recent-posts-land-style.php:140
5094
+ #: includes/elementor/widgets/recent-posts-land-style.php:182
5095
+ #: includes/elementor/widgets/recent-posts-land-style.php:194
5096
+ #: includes/elementor/widgets/recent-posts-land-style.php:207
5097
+ #: includes/elementor/widgets/recent-posts-land-style.php:222
5098
+ #: includes/elementor/widgets/recent-posts-land-style.php:237
5099
+ #: includes/elementor/widgets/recent-posts-land-style.php:252
5100
+ #: includes/elementor/widgets/recent-posts-land-style.php:264
5101
+ #: includes/elementor/widgets/recent-posts-land-style.php:277
5102
+ #: includes/elementor/widgets/recent-posts-land-style.php:319
5103
+ #: includes/elementor/widgets/recent-posts-land-style.php:371
5104
+ #: includes/elementor/widgets/recent-posts-land-style.php:383
5105
+ #: includes/elementor/widgets/recent-posts-land-style.php:395
5106
+ #: includes/elementor/widgets/recent-posts-masonry.php:180
5107
+ #: includes/elementor/widgets/recent-posts-masonry.php:193
5108
+ #: includes/elementor/widgets/recent-posts-masonry.php:208
5109
+ #: includes/elementor/widgets/recent-posts-masonry.php:250
5110
+ #: includes/elementor/widgets/recent-posts-masonry.php:262
5111
+ #: includes/elementor/widgets/recent-posts-masonry.php:290
5112
+ #: includes/elementor/widgets/recent-posts-masonry.php:305
5113
+ #: includes/elementor/widgets/recent-posts-masonry.php:320
5114
+ #: includes/elementor/widgets/recent-posts-masonry.php:332
5115
+ #: includes/elementor/widgets/recent-posts-masonry.php:344
5116
+ #: includes/elementor/widgets/recent-posts-masonry.php:357
5117
+ #: includes/elementor/widgets/recent-posts-masonry.php:400
5118
+ #: includes/elementor/widgets/recent-posts-masonry.php:416
5119
+ #: includes/elementor/widgets/recent-posts-masonry.php:468
5120
+ #: includes/elementor/widgets/recent-posts-masonry.php:480
5121
+ #: includes/elementor/widgets/recent-posts-masonry.php:492
5122
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:254
5123
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:266
5124
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:302
5125
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:314
5126
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:363
5127
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:375
5128
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:387
5129
+ #: includes/elementor/widgets/recent-posts-tiles.php:204
5130
+ #: includes/elementor/widgets/recent-posts-tiles.php:216
5131
+ #: includes/elementor/widgets/recent-posts-tiles.php:265
5132
+ #: includes/elementor/widgets/recent-posts-tiles.php:277
5133
+ #: includes/elementor/widgets/recent-posts-tiles.php:289
5134
+ #: includes/elementor/widgets/recent-posts-timeline.php:167
5135
+ #: includes/elementor/widgets/recent-posts-timeline.php:180
5136
+ #: includes/elementor/widgets/recent-posts-timeline.php:195
5137
+ #: includes/elementor/widgets/recent-posts-timeline.php:237
5138
+ #: includes/elementor/widgets/recent-posts-timeline.php:249
5139
+ #: includes/elementor/widgets/recent-posts-timeline.php:261
5140
+ #: includes/elementor/widgets/recent-posts-timeline.php:273
5141
+ #: includes/elementor/widgets/recent-posts-timeline.php:286
5142
+ #: includes/elementor/widgets/recent-posts-timeline.php:329
5143
+ #: includes/elementor/widgets/recent-posts-timeline.php:345
5144
+ #: includes/elementor/widgets/recent-posts-timeline.php:397
5145
+ #: includes/elementor/widgets/recent-posts-timeline.php:409
5146
+ #: includes/elementor/widgets/recent-posts-timeline.php:421
5147
+ #: includes/elementor/widgets/recent-products.php:188
5148
+ #: includes/elementor/widgets/recent-products.php:200
5149
+ #: includes/elementor/widgets/recent-products.php:213
5150
+ #: includes/elementor/widgets/recent-products.php:227
5151
+ #: includes/elementor/widgets/recent-products.php:269
5152
+ #: includes/elementor/widgets/recent-products.php:281
5153
+ #: includes/elementor/widgets/recent-products.php:293
5154
+ #: includes/elementor/widgets/recent-products.php:342
5155
+ #: includes/elementor/widgets/recent-products.php:354
5156
+ #: includes/elementor/widgets/recent-products.php:366
5157
+ #: includes/elementor/widgets/search.php:105
5158
+ #: includes/elementor/widgets/search.php:117
5159
+ #: includes/elementor/widgets/search.php:132
5160
+ #: includes/elementor/widgets/search.php:144
5161
+ #: includes/elementor/widgets/staff.php:226
5162
+ #: includes/elementor/widgets/staff.php:278
5163
+ #: includes/elementor/widgets/testimonial.php:155
5164
+ #: includes/elementor/widgets/text.php:165
5165
+ #: includes/elementor/widgets/text.php:289
5166
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5167
+ #: includes/elementor/widgets/theme-elements/copyright.php:116
5168
+ #: includes/elementor/widgets/theme-elements/copyright.php:129
5169
+ #: includes/elementor/widgets/theme-elements/logo.php:416
5170
+ #: includes/elementor/widgets/theme-elements/menu.php:176
5171
+ #: includes/elementor/widgets/theme-elements/menu.php:191
5172
+ #: includes/elementor/widgets/theme-elements/modern-search.php:158
5173
+ #: includes/elementor/widgets/theme-elements/modern-search.php:171
5174
+ #: includes/elementor/widgets/theme-elements/modern-search.php:184
5175
+ #: includes/elementor/widgets/theme-elements/modern-search.php:200
5176
+ #: includes/elementor/widgets/theme-elements/search.php:158
5177
+ #: includes/elementor/widgets/theme-elements/site-title.php:222
5178
+ #: includes/elementor/widgets/theme-elements/site-title.php:234
5179
+ #: includes/elementor/widgets/theme-elements/site-title.php:249
5180
+ #: includes/elementor/widgets/touch-slider.php:130
5181
+ #: includes/elementor/widgets/touch-slider.php:143
5182
+ #: includes/elementor/widgets/touch-slider.php:155
5183
+ #: includes/elementor/widgets/touch-slider.php:180
5184
+ #: includes/elementor/widgets/touch-slider.php:192
5185
+ #: includes/elementor/widgets/video.php:147
5186
+ #: includes/elementor/widgets/video.php:159
5187
+ msgid "Off"
5188
+ msgstr ""
5189
+
5190
+ #: includes/elementor/widgets/audio.php:124 includes/elements/audio.php:71
5191
+ msgid "Repeat the audio"
5192
+ msgstr "تکرار صدا"
5193
+
5194
+ #: includes/elementor/widgets/audio.php:142
5195
+ #: includes/elementor/widgets/audio.php:150
5196
+ #: includes/elementor/widgets/button.php:275
5197
+ #: includes/elementor/widgets/button.php:283
5198
+ #: includes/elementor/widgets/modern-button.php:320
5199
+ #: includes/elementor/widgets/tabs.php:149
5200
+ #: includes/elementor/widgets/text.php:1048
5201
+ #: includes/elementor/widgets/theme-elements/menu.php:616
5202
+ #: includes/elements/audio.php:97
5203
+ msgid "Skin"
5204
+ msgstr "نما"
5205
+
5206
+ #: includes/elementor/widgets/audio.php:151 includes/elements/audio.php:98
5207
+ msgid "The skin of audio element."
5208
+ msgstr "نمای المان صدا"
5209
+
5210
+ #: includes/elementor/widgets/before-after.php:48
5211
+ #: includes/elements/before-after.php:15
5212
+ msgid "Before After Slider"
5213
+ msgstr ""
5214
+
5215
+ #: includes/elementor/widgets/before-after.php:96
5216
+ #: includes/elementor/widgets/touch-slider.php:98
5217
+ #: includes/elements/gallery.php:56 includes/elements/touch-slider.php:57
5218
+ #: public/templates/vcomposer/auxin_vc_extendes.php:42
5219
+ msgid "Images"
5220
+ msgstr "تصاویر"
5221
+
5222
+ #: includes/elementor/widgets/before-after.php:103
5223
+ #: includes/elements/before-after.php:56
5224
+ #, fuzzy
5225
+ msgid "Before image"
5226
+ msgstr "تصویر شاخص"
5227
+
5228
+ #: includes/elementor/widgets/before-after.php:122
5229
+ #: includes/elements/before-after.php:69
5230
+ #, fuzzy
5231
+ msgid "After image"
5232
+ msgstr "تصویر پوستر"
5233
+
5234
+ #: includes/elementor/widgets/before-after.php:147
5235
+ #: includes/elementor/widgets/custom-list.php:578
5236
+ #: includes/elementor/widgets/custom-list.php:664
5237
+ #: includes/elementor/widgets/divider.php:102
5238
+ #: includes/elementor/widgets/svg.php:154
5239
+ #: includes/elementor/widgets/video.php:183 includes/elements/code.php:93
5240
+ #: includes/elements/gallery.php:116
5241
+ #: includes/elements/recent-posts-tiles-carousel.php:294
5242
+ #: includes/elements/recent-posts-tiles-carousel.php:342
5243
+ #: includes/elements/recent-posts-tiles-carousel.php:364
5244
+ #: includes/elements/recent-posts-tiles.php:324
5245
+ #: includes/elements/recent-posts-tiles.php:372
5246
+ #: includes/elements/tab-widget.php:57 includes/elements/tabs.php:57
5247
+ #: includes/elements/touch-slider.php:106
5248
+ #: includes/elements/touch-slider.php:119
5249
+ #: includes/elements/touch-slider.php:132
5250
+ #: includes/elements/touch-slider.php:145
5251
+ #: includes/elements/touch-slider.php:161
5252
+ #: includes/elements/touch-slider.php:174
5253
+ #: includes/elements/touch-slider.php:187 includes/elements/video.php:88
5254
+ #: includes/elements/video.php:102 includes/elements/video.php:168
5255
+ msgid "Style"
5256
+ msgstr "ظاهر"
5257
+
5258
+ #: includes/elementor/widgets/before-after.php:155
5259
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:850
5260
+ #: includes/elementor/widgets/recent-posts-land-style.php:467
5261
+ #: includes/elementor/widgets/recent-posts-masonry.php:564
5262
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
5263
+ #: includes/elementor/widgets/recent-posts-tiles.php:361
5264
+ #: includes/elementor/widgets/recent-posts-timeline.php:493
5265
+ #: includes/elementor/widgets/recent-products.php:438
5266
+ #: includes/elements/before-after.php:83
5267
+ #: includes/elements/latest-posts-slider.php:116
5268
+ #: includes/elements/recent-posts-grid-carousel.php:260
5269
+ #: includes/elements/recent-posts-land-style.php:247
5270
+ #: includes/elements/recent-posts-masonry.php:227
5271
+ #: includes/elements/recent-posts-tiles-carousel.php:270
5272
+ #: includes/elements/recent-posts-tiles.php:300
5273
+ #: includes/elements/recent-posts-timeline.php:252
5274
+ #: includes/elements/recent-products.php:206
5275
+ msgid "Start offset"
5276
+ msgstr "پرش از ابتدا"
5277
+
5278
+ #: includes/elementor/widgets/before-after.php:156
5279
+ msgid "How much of the before image is visible when the page loads."
5280
+ msgstr ""
5281
+
5282
+ #: includes/elementor/widgets/before-after.php:175
5283
+ #: includes/elementor/widgets/carousel-navigation.php:225
5284
+ #: includes/elementor/widgets/contact-form.php:190
5285
+ #: includes/elementor/widgets/contact-form.php:500
5286
+ #: includes/elementor/widgets/contact-form.php:720
5287
+ #: includes/elementor/widgets/contact-form.php:949
5288
+ #: includes/elementor/widgets/contact-form.php:1192
5289
+ #: includes/elementor/widgets/contact-form.php:1545
5290
+ #: includes/elementor/widgets/custom-list.php:419
5291
+ #: includes/elementor/widgets/custom-list.php:707
5292
+ #: includes/elementor/widgets/divider.php:138
5293
+ #: includes/elementor/widgets/heading-modern.php:893
5294
+ #: includes/elementor/widgets/heading-modern.php:1046
5295
+ #: includes/elementor/widgets/mailchimp.php:207
5296
+ #: includes/elementor/widgets/mailchimp.php:454
5297
+ #: includes/elementor/widgets/mailchimp.php:682
5298
+ #: includes/elementor/widgets/svg.php:162
5299
+ #: includes/elementor/widgets/testimonial.php:284
5300
+ #: includes/elementor/widgets/testimonial.php:855
5301
+ #: includes/elementor/widgets/theme-elements/logo.php:222
5302
+ #: includes/elementor/widgets/theme-elements/search.php:289
5303
+ #: includes/elementor/widgets/video.php:191
5304
+ #: includes/elements/before-after.php:115 includes/elements/image.php:109
5305
+ #: includes/elements/staff.php:124 includes/elements/video.php:78
5306
+ msgid "Width"
5307
+ msgstr "عرض"
5308
+
5309
+ #: includes/elementor/widgets/button.php:52
5310
+ #: includes/elementor/widgets/button.php:100
5311
+ #: includes/elementor/widgets/modern-button.php:101
5312
+ #: includes/elementor/widgets/modern-button.php:269
5313
+ #: includes/elementor/widgets/text.php:278
5314
+ #: includes/elementor/widgets/text.php:1012
5315
+ #: includes/elementor/widgets/theme-elements/modern-search.php:99
5316
+ #: includes/elementor/widgets/theme-elements/modern-search.php:413
5317
+ #: includes/elementor/widgets/theme-elements/search.php:120
5318
+ #: includes/elementor/widgets/theme-elements/search.php:381
5319
+ #: includes/elements/button.php:16 includes/elements/button.php:47
5320
+ #: includes/elements/button.php:377 includes/elements/text.php:647
5321
+ #: includes/elements/text.php:664 includes/elements/text.php:688
5322
+ #: includes/elements/text.php:704 includes/elements/text.php:734
5323
+ #: includes/elements/text.php:764 includes/elements/text.php:780
5324
+ #: includes/elements/text.php:796 includes/elements/text.php:821
5325
+ #: includes/elements/text.php:839 includes/elements/text.php:856
5326
+ #: includes/elements/text.php:877 includes/general-hooks.php:662
5327
+ #: includes/general-hooks.php:1067
5328
+ #, fuzzy
5329
+ msgid "Button"
5330
+ msgstr "اندازه دکمه"
5331
+
5332
+ #: includes/elementor/widgets/button.php:107
5333
+ #: includes/elementor/widgets/text.php:298 includes/elements/button.php:43
5334
+ #: includes/elements/text.php:651
5335
+ msgid "Button label"
5336
+ msgstr "برچسب دکمه"
5337
+
5338
+ #: includes/elementor/widgets/button.php:117
5339
+ #: includes/elementor/widgets/text.php:322 includes/elements/text.php:844
5340
+ msgid "If you want to link your button."
5341
+ msgstr "اگر می خواهید دکمه را لینک کنید."
5342
+
5343
+ #: includes/elementor/widgets/button.php:130
5344
+ #: includes/elementor/widgets/modern-button.php:223
5345
+ #, fuzzy
5346
+ msgid "Open Video in Lightbox"
5347
+ msgstr "بازشدن لایت باکس"
5348
+
5349
+ #: includes/elementor/widgets/button.php:148
5350
+ #: includes/elementor/widgets/heading-modern.php:1038
5351
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5352
+ #: includes/elementor/widgets/recent-posts-masonry.php:1073
5353
+ #: includes/elementor/widgets/text.php:1413
5354
+ #, fuzzy
5355
+ msgid "Wrapper"
5356
+ msgstr "ظاهر Wrapper"
5357
+
5358
+ #: includes/elementor/widgets/button.php:156 includes/elements/button.php:57
5359
+ #: includes/elements/text.php:668
5360
+ msgid "Button size"
5361
+ msgstr "اندازه دکمه"
5362
+
5363
+ #: includes/elementor/widgets/button.php:160
5364
+ #: includes/elementor/widgets/modern-button.php:308
5365
+ #: includes/elementor/widgets/text.php:1027 includes/elements/button.php:63
5366
+ #: includes/elements/text.php:674 includes/general-hooks.php:686
5367
+ #: includes/general-hooks.php:1091
5368
+ msgid "Exlarge"
5369
+ msgstr "خیلی بزرگ"
5370
+
5371
+ #: includes/elementor/widgets/button.php:164
5372
+ #: includes/elementor/widgets/divider.php:147
5373
+ #: includes/elementor/widgets/modern-button.php:312
5374
+ #: includes/elementor/widgets/text.php:1031 includes/elements/button.php:67
5375
+ #: includes/elements/divider.php:91 includes/elements/text.php:678
5376
+ #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5377
+ msgid "Tiny"
5378
+ msgstr "خیلی کوچک"
5379
+
5380
+ #: includes/elementor/widgets/button.php:172 includes/elements/button.php:132
5381
+ #: includes/elements/text.php:752
5382
+ msgid "Uppercase label"
5383
+ msgstr "برچسب حروف بزرگ"
5384
+
5385
+ #: includes/elementor/widgets/button.php:184 includes/elements/button.php:78
5386
+ #, fuzzy
5387
+ msgid "Button shape"
5388
+ msgstr "ظاهر شکل دکمه"
5389
+
5390
+ #: includes/elementor/widgets/button.php:188
5391
+ #: includes/elementor/widgets/text.php:1352 includes/elements/button.php:91
5392
+ #: includes/elements/text.php:708
5393
+ msgid "Box"
5394
+ msgstr "جعبه"
5395
+
5396
+ #: includes/elementor/widgets/button.php:192
5397
+ #: includes/elementor/widgets/modern-button.php:295
5398
+ #: includes/elementor/widgets/text.php:1356 includes/elements/button.php:95
5399
+ #: includes/elements/text.php:712 includes/general-hooks.php:721
5400
+ #: includes/general-hooks.php:1126
5401
+ msgid "Round"
5402
+ msgstr "گرد"
5403
+
5404
+ #: includes/elementor/widgets/button.php:196
5405
+ #: includes/elementor/widgets/modern-button.php:296
5406
+ #: includes/elementor/widgets/text.php:1360 includes/elements/button.php:99
5407
+ #: includes/elements/text.php:716 includes/general-hooks.php:725
5408
+ #: includes/general-hooks.php:1130
5409
+ msgid "Curve"
5410
+ msgstr "منحنی"
5411
+
5412
+ #: includes/elementor/widgets/button.php:207 includes/elements/button.php:105
5413
+ #: includes/elements/text.php:722
5414
+ msgid "Button style"
5415
+ msgstr "ظاهر دکمه"
5416
+
5417
+ #: includes/elementor/widgets/button.php:215
5418
+ #: includes/elementor/widgets/text.php:1380 includes/elements/button.php:122
5419
+ #: includes/elements/text.php:742 includes/general-hooks.php:758
5420
+ #: includes/general-hooks.php:1163
5421
+ msgid "3D"
5422
+ msgstr "سه بعدی"
5423
+
5424
+ #: includes/elementor/widgets/button.php:219
5425
+ #: includes/elementor/widgets/modern-button.php:282
5426
+ #: includes/elementor/widgets/text.php:1384 includes/elements/button.php:126
5427
+ #: includes/elements/text.php:746 includes/general-hooks.php:762
5428
+ #: includes/general-hooks.php:1167
5429
+ msgid "Outline"
5430
+ msgstr "خط بیرونی"
5431
+
5432
+ #: includes/elementor/widgets/button.php:230
5433
+ #: includes/elementor/widgets/carousel-navigation.php:164
5434
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1609
5435
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1746
5436
+ #: includes/elementor/widgets/recent-posts-masonry.php:1150
5437
+ #: includes/elementor/widgets/theme-elements/current-time.php:131
5438
+ #, fuzzy
5439
+ msgid "Align"
5440
+ msgstr "تراز"
5441
+
5442
+ #: includes/elementor/widgets/button.php:303
5443
+ #: includes/elementor/widgets/button.php:330
5444
+ #: includes/elementor/widgets/carousel-navigation.php:292
5445
+ #: includes/elementor/widgets/carousel-navigation.php:399
5446
+ #: includes/elementor/widgets/heading-modern.php:949
5447
+ #: includes/elementor/widgets/modern-button.php:362
5448
+ #: includes/elementor/widgets/modern-button.php:415
5449
+ #: includes/elementor/widgets/modern-button.php:859
5450
+ #: includes/elementor/widgets/modern-button.php:958
5451
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
5452
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
5453
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1550
5454
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1588
5455
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1687
5456
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1725
5457
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1810
5458
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1866
5459
+ #: includes/elementor/widgets/recent-posts-masonry.php:1091
5460
+ #: includes/elementor/widgets/recent-posts-masonry.php:1129
5461
+ #: includes/elementor/widgets/recent-posts-masonry.php:1226
5462
+ #: includes/elementor/widgets/recent-posts-masonry.php:1282
5463
+ #: includes/elementor/widgets/testimonial.php:895
5464
+ #: includes/elementor/widgets/testimonial.php:931
5465
+ #: includes/elementor/widgets/text.php:383
5466
+ #: includes/elementor/widgets/text.php:548
5467
+ #: includes/elementor/widgets/text.php:607
5468
+ #: includes/elementor/widgets/text.php:1068
5469
+ #: includes/elementor/widgets/text.php:1095
5470
+ #: includes/elementor/widgets/theme-elements/menu.php:403
5471
+ #: includes/elementor/widgets/theme-elements/menu.php:480
5472
+ #: includes/elementor/widgets/theme-elements/menu.php:593
5473
+ #: includes/elementor/widgets/theme-elements/menu.php:688
5474
+ #: includes/elementor/widgets/theme-elements/menu.php:737
5475
+ #: includes/elementor/widgets/theme-elements/menu.php:841
5476
+ #: includes/elementor/widgets/theme-elements/menu.php:920
5477
+ #: includes/elementor/widgets/theme-elements/menu.php:1155
5478
+ #: includes/elementor/widgets/theme-elements/menu.php:1211
5479
+ #: includes/elementor/widgets/theme-elements/menu.php:1289
5480
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:240
5481
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:443
5482
+ #, fuzzy
5483
+ msgid "Background"
5484
+ msgstr "اندازه پس زمینه"
5485
+
5486
+ #: includes/elementor/widgets/button.php:357
5487
+ #: includes/elementor/widgets/carousel-navigation.php:216
5488
+ #: includes/elementor/widgets/custom-list.php:120
5489
+ #: includes/elementor/widgets/custom-list.php:879
5490
+ #: includes/elementor/widgets/icon.php:107
5491
+ #: includes/elementor/widgets/icon.php:114
5492
+ #: includes/elementor/widgets/icon.php:194
5493
+ #: includes/elementor/widgets/modern-button.php:789
5494
+ #: includes/elementor/widgets/text.php:116
5495
+ #: includes/elementor/widgets/text.php:126
5496
+ #: includes/elementor/widgets/theme-elements/modern-search.php:106
5497
+ #: includes/elementor/widgets/theme-elements/modern-search.php:215
5498
+ #: includes/elementor/widgets/theme-elements/search.php:106
5499
+ #: includes/elementor/widgets/theme-elements/search.php:119
5500
+ #: includes/elementor/widgets/theme-elements/search.php:131
5501
+ #: includes/elementor/widgets/theme-elements/search.php:178
5502
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:108
5503
+ #: includes/elements/custom-list.php:74 includes/elements/text.php:374
5504
+ #: includes/elements/text.php:386 includes/general-hooks.php:236
5505
+ #: includes/general-hooks.php:254 includes/general-hooks.php:271
5506
+ #: includes/general-hooks.php:287 includes/general-hooks.php:303
5507
+ #: includes/general-hooks.php:318
5508
+ msgid "Icon"
5509
+ msgstr "شکلک"
5510
+
5511
+ #: includes/elementor/widgets/button.php:365
5512
+ #: includes/elementor/widgets/text.php:310 includes/elements/button.php:158
5513
+ #: includes/elements/text.php:784
5514
+ msgid "Icon for button"
5515
+ msgstr "شکلک برای دکمه"
5516
+
5517
+ #: includes/elementor/widgets/button.php:373
5518
+ #: includes/elementor/widgets/text.php:1129 includes/elements/button.php:171
5519
+ #: includes/elements/text.php:800 includes/general-hooks.php:372
5520
+ msgid "Icon alignment"
5521
+ msgstr "تراز شکلک"
5522
+
5523
+ #: includes/elementor/widgets/button.php:380
5524
+ #: includes/elementor/widgets/modern-button.php:804
5525
+ #: includes/elementor/widgets/text.php:1136 includes/elements/button.php:191
5526
+ #: includes/elements/text.php:809 includes/general-hooks.php:847
5527
+ #: includes/general-hooks.php:1252
5528
+ msgid "Over"
5529
+ msgstr "رو"
5530
+
5531
+ #: includes/elementor/widgets/button.php:381
5532
+ #: includes/elementor/widgets/text.php:1137 includes/elements/button.php:195
5533
+ #: includes/elements/text.php:810 includes/general-hooks.php:851
5534
+ #: includes/general-hooks.php:1256
5535
+ msgid "Animate from Left"
5536
+ msgstr "متحرک سازی از چپ"
5537
+
5538
+ #: includes/elementor/widgets/button.php:382
5539
+ #: includes/elementor/widgets/text.php:1138 includes/elements/text.php:811
5540
+ msgid "Animate from Right"
5541
+ msgstr "متحرک سازی از راست"
5542
+
5543
+ #: includes/elementor/widgets/button.php:390
5544
+ #: includes/elementor/widgets/text.php:429
5545
+ #: includes/elementor/widgets/text.php:1150
5546
+ #: includes/elementor/widgets/theme-elements/modern-search.php:657
5547
+ #, fuzzy
5548
+ msgid "Icon Size"
5549
+ msgstr "اندازه شکلک"
5550
+
5551
+ #: includes/elementor/widgets/button.php:413
5552
+ #: includes/elementor/widgets/text.php:1335
5553
+ #: includes/elementor/widgets/theme-elements/search.php:245
5554
+ #, fuzzy
5555
+ msgid "Icon Margin"
5556
+ msgstr "تراز شکلک"
5557
+
5558
+ #: includes/elementor/widgets/button.php:487
5559
+ #: includes/elementor/widgets/custom-list.php:110
5560
+ #: includes/elementor/widgets/custom-list.php:757
5561
+ #: includes/elementor/widgets/custom-list.php:765
5562
+ #: includes/elementor/widgets/image.php:198
5563
+ #: includes/elementor/widgets/modern-button.php:108
5564
+ #: includes/elementor/widgets/modern-button.php:468
5565
+ #: includes/elementor/widgets/quote.php:98
5566
+ #: includes/elementor/widgets/quote.php:148
5567
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1349
5568
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1379
5569
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
5570
+ #: includes/elementor/widgets/theme-elements/current-time.php:163
5571
+ #: includes/elementor/widgets/theme-elements/modern-search.php:118
5572
+ #: includes/elementor/widgets/theme-elements/modern-search.php:321
5573
+ #: includes/elements/custom-list.php:58 includes/elements/image.php:302
5574
+ msgid "Text"
5575
+ msgstr ""
5576
+
5577
+ #: includes/elementor/widgets/button.php:516
5578
+ #: includes/elementor/widgets/button.php:554
5579
+ #: includes/elementor/widgets/heading-modern.php:378
5580
+ #: includes/elementor/widgets/heading-modern.php:416
5581
+ #: includes/elementor/widgets/heading-modern.php:563
5582
+ #: includes/elementor/widgets/heading-modern.php:601
5583
+ #: includes/elementor/widgets/heading-modern.php:734
5584
+ #: includes/elementor/widgets/heading-modern.php:772
5585
+ #: includes/elementor/widgets/image.php:683
5586
+ #: includes/elementor/widgets/modern-button.php:508
5587
+ #: includes/elementor/widgets/modern-button.php:546
5588
+ #: includes/elementor/widgets/modern-button.php:608
5589
+ #: includes/elementor/widgets/modern-button.php:646
5590
+ #: includes/elementor/widgets/modern-button.php:720
5591
+ #: includes/elementor/widgets/modern-button.php:758
5592
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1839
5593
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
5594
+ #: includes/elementor/widgets/recent-posts-masonry.php:1255
5595
+ #: includes/elementor/widgets/recent-posts-masonry.php:1311
5596
+ #: includes/elementor/widgets/text.php:746
5597
+ #: includes/elementor/widgets/text.php:842
5598
+ #: includes/elementor/widgets/text.php:953
5599
+ #: includes/elementor/widgets/text.php:1263
5600
+ #: includes/elementor/widgets/text.php:1301
5601
+ #: includes/elementor/widgets/theme-elements/current-time.php:184
5602
+ #: includes/elementor/widgets/theme-elements/logo.php:507
5603
+ #: includes/elementor/widgets/theme-elements/logo.php:599
5604
+ #: includes/elementor/widgets/theme-elements/site-title.php:348
5605
+ #: includes/elementor/widgets/theme-elements/site-title.php:414
5606
+ #: includes/elementor/widgets/theme-elements/site-title.php:480
5607
+ msgid "Text Shadow"
5608
+ msgstr ""
5609
+
5610
+ #: includes/elementor/widgets/carousel-navigation.php:48
5611
+ #, fuzzy
5612
+ msgid "Carousel Navigation"
5613
+ msgstr "فلش های ناوبری"
5614
+
5615
+ #: includes/elementor/widgets/carousel-navigation.php:92
5616
+ #: includes/elementor/widgets/carousel-navigation.php:156
5617
+ #, fuzzy
5618
+ msgid "Navigation"
5619
+ msgstr "نوع ناوبری"
5620
+
5621
+ #: includes/elementor/widgets/carousel-navigation.php:99
5622
+ #, fuzzy
5623
+ msgid "Navigation Type"
5624
+ msgstr "نوع ناوبری"
5625
+
5626
+ #: includes/elementor/widgets/carousel-navigation.php:103
5627
+ #, fuzzy
5628
+ msgid "Boxed Arrow"
5629
+ msgstr "جعبه ای"
5630
+
5631
+ #: includes/elementor/widgets/carousel-navigation.php:104
5632
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:269
5633
+ #: includes/elements/recent-posts-grid-carousel.php:684
5634
+ #, fuzzy
5635
+ msgid "Long Arrow"
5636
+ msgstr "فلش"
5637
+
5638
+ #: includes/elementor/widgets/carousel-navigation.php:113
5639
+ #, fuzzy
5640
+ msgid "Previous Button"
5641
+ msgstr "قبلی و بعدی"
5642
+
5643
+ #: includes/elementor/widgets/carousel-navigation.php:128
5644
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:887
5645
+ #: includes/elementor/widgets/recent-posts-land-style.php:501
5646
+ #: includes/elementor/widgets/recent-posts-masonry.php:598
5647
+ #: includes/elementor/widgets/recent-posts-tiles.php:395
5648
+ #: includes/elementor/widgets/recent-posts-timeline.php:527
5649
+ #: includes/elements/recent-posts-grid-carousel.php:415
5650
+ #: includes/elements/recent-posts-land-style.php:335
5651
+ #: includes/elements/recent-posts-masonry.php:315
5652
  #: includes/elements/recent-posts-tiles.php:162
5653
+ #: includes/elements/recent-posts-timeline.php:157
5654
+ #, fuzzy
5655
+ msgid "Next Button"
5656
+ msgstr "[فلوکس] دکمه"
 
5657
 
5658
+ #: includes/elementor/widgets/carousel-navigation.php:143
5659
+ #, fuzzy
5660
+ msgid "Carousel Target"
5661
+ msgstr "اکسین گردونه"
 
 
5662
 
5663
+ #: includes/elementor/widgets/carousel-navigation.php:144
5664
+ msgid "CSS selector of target carousel."
5665
+ msgstr ""
 
 
 
5666
 
5667
+ #: includes/elementor/widgets/carousel-navigation.php:172
5668
+ #, fuzzy
5669
+ msgid "Space Between"
5670
+ msgstr "فاصله بین اسلایدها"
 
 
5671
 
5672
+ #: includes/elementor/widgets/carousel-navigation.php:173
5673
+ msgid "Space Around"
5674
+ msgstr ""
 
 
 
5675
 
5676
+ #: includes/elementor/widgets/carousel-navigation.php:174
5677
+ msgid "Space Evenly"
5678
+ msgstr ""
 
 
 
5679
 
5680
+ #: includes/elementor/widgets/carousel-navigation.php:185
5681
+ #, fuzzy
5682
+ msgid "Space Between Buttons"
5683
+ msgstr "فاصله بین اسلایدها"
5684
+
5685
+ #: includes/elementor/widgets/carousel-navigation.php:324
5686
+ #: includes/elementor/widgets/carousel-navigation.php:430
5687
+ #: includes/elementor/widgets/custom-list.php:949
5688
+ #: includes/elementor/widgets/icon.php:294
5689
+ #: includes/elementor/widgets/modern-button.php:304
5690
+ #: includes/elementor/widgets/modern-button.php:824
5691
+ #: includes/elementor/widgets/modern-button.php:923
5692
+ #: includes/elementor/widgets/testimonial.php:756
5693
+ #: includes/elementor/widgets/text.php:1023
5694
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5695
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5696
+ #: includes/elementor/widgets/theme-elements/modern-search.php:243
5697
+ #: includes/elementor/widgets/theme-elements/modern-search.php:290
5698
+ #: includes/elementor/widgets/theme-elements/search.php:213
5699
+ #: includes/elements/image.php:87
5700
+ msgid "Size"
5701
+ msgstr ""
5702
+
5703
+ #: includes/elementor/widgets/carousel-navigation.php:416
5704
+ #: includes/elementor/widgets/custom-list.php:785
5705
+ #: includes/elementor/widgets/custom-list.php:841
5706
+ #: includes/elementor/widgets/theme-elements/logo.php:473
5707
+ #: includes/elementor/widgets/theme-elements/logo.php:565
5708
+ #: includes/elementor/widgets/theme-elements/site-title.php:314
5709
+ #: includes/elementor/widgets/theme-elements/site-title.php:380
5710
+ #: includes/elementor/widgets/theme-elements/site-title.php:446
5711
+ #, fuzzy
5712
+ msgid "Hover Color"
5713
+ msgstr "رنگ شکلک"
5714
+
5715
+ #: includes/elementor/widgets/contact-box.php:47
5716
+ #: includes/elements/contact-box.php:16
5717
+ #, fuzzy
5718
+ msgid "Contact Box"
5719
+ msgstr "[فلوکس] جعبه تماس"
5720
+
5721
+ #: includes/elementor/widgets/contact-box.php:95
5722
+ #, fuzzy
5723
+ msgid "Contact Info"
5724
+ msgstr "نوع فرم تماس"
5725
+
5726
+ #: includes/elementor/widgets/contact-box.php:103
5727
+ #: includes/elements/contact-box.php:54
5728
+ msgid "Contact box email address."
5729
+ msgstr "آدرس ایمیل جعبه تماس"
5730
+
5731
+ #: includes/elementor/widgets/contact-box.php:112
5732
+ #: includes/elements/contact-box.php:67
5733
+ msgid "Telephone"
5734
+ msgstr "تلفن"
5735
+
5736
+ #: includes/elementor/widgets/contact-box.php:113
5737
+ #: includes/elements/contact-box.php:68
5738
+ msgid "Contact box phone number."
5739
+ msgstr "شماره تلفن جعبه تماس"
5740
+
5741
+ #: includes/elementor/widgets/contact-box.php:121
5742
+ #, fuzzy
5743
+ msgid "Show site socials"
5744
+ msgstr "شکلک های شبکه های اجتماعی"
5745
+
5746
+ #: includes/elementor/widgets/contact-box.php:122
5747
+ msgid "Show socials below the info."
5748
+ msgstr "نمایش شبکه های اجتماعی در پایین اطلاعات"
5749
+
5750
+ #: includes/elementor/widgets/contact-box.php:133
5751
+ #: includes/elements/contact-box.php:80
5752
+ msgid "Address"
5753
+ msgstr "آدرس"
5754
+
5755
+ #: includes/elementor/widgets/contact-box.php:135
5756
+ msgid "Type your address here"
5757
+ msgstr ""
5758
+
5759
+ #: includes/elementor/widgets/contact-box.php:145
5760
+ #: includes/elementor/widgets/gmap.php:46
5761
+ #: includes/elementor/widgets/gmap.php:94
5762
+ #, fuzzy
5763
+ msgid "Map"
5764
+ msgstr "شکاف"
5765
+
5766
+ #: includes/elementor/widgets/contact-box.php:152
5767
+ #: includes/elements/contact-box.php:108
5768
+ msgid "Show map"
5769
+ msgstr "نمایش نقشه"
5770
+
5771
+ #: includes/elementor/widgets/contact-box.php:153
5772
+ #: includes/elements/contact-box.php:109
5773
+ msgid "Show map above the info."
5774
+ msgstr "نمایش نقشه در بالای اطلاعات"
5775
+
5776
+ #: includes/elementor/widgets/contact-box.php:164
5777
+ #: includes/elements/contact-box.php:123
5778
+ #, fuzzy
5779
+ msgid "Map position"
5780
+ msgstr "موقعیت"
5781
+
5782
+ #: includes/elementor/widgets/contact-box.php:165
5783
+ #: includes/elements/contact-box.php:124
5784
+ #, fuzzy
5785
+ msgid "Whether to show map above the contact details or below them."
5786
+ msgstr "دکمه نمایش بیشتر نشان داده شود یا نه."
5787
+
5788
+ #: includes/elementor/widgets/contact-box.php:170
5789
+ #: includes/elements/contact-box.php:128
5790
+ msgid "Below the contact details."
5791
+ msgstr ""
5792
+
5793
+ #: includes/elementor/widgets/contact-box.php:171
5794
+ #: includes/elements/contact-box.php:129
5795
+ msgid "Above the contact details."
5796
+ msgstr ""
5797
+
5798
+ #: includes/elementor/widgets/contact-box.php:183
5799
+ #: includes/elements/contact-box.php:144
5800
+ msgid "Map height"
5801
+ msgstr "ارتفاع نقشه"
5802
+
5803
+ #: includes/elementor/widgets/contact-box.php:215
5804
+ #: includes/elementor/widgets/gmap.php:101
5805
+ #: includes/elements/contact-box.php:162 includes/elements/gmap.php:66
5806
+ msgid "Latitude"
5807
+ msgstr "عرض جغرافیایی"
5808
+
5809
+ #: includes/elementor/widgets/contact-box.php:216
5810
+ #: includes/elementor/widgets/gmap.php:102
5811
+ #: includes/elements/contact-box.php:163 includes/elements/gmap.php:67
5812
+ msgid "Latitude location over the map."
5813
+ msgstr "محل عرض جغرافیایی بر روی نقشه."
5814
+
5815
+ #: includes/elementor/widgets/contact-box.php:240
5816
+ #: includes/elementor/widgets/gmap.php:111
5817
+ #: includes/elements/contact-box.php:179 includes/elements/gmap.php:80
5818
+ msgid "Longitude"
5819
+ msgstr "طول جغرافیایی"
5820
+
5821
+ #: includes/elementor/widgets/contact-box.php:241
5822
+ #: includes/elementor/widgets/gmap.php:112
5823
+ #: includes/elements/contact-box.php:180 includes/elements/gmap.php:81
5824
+ msgid "Longitude location over the map."
5825
+ msgstr "محل طول جغرافیایی بر روی نقشه."
5826
+
5827
+ #: includes/elementor/widgets/contact-box.php:265
5828
+ #: includes/elementor/widgets/gmap.php:155
5829
+ #: includes/elements/contact-box.php:196 includes/elements/gmap.php:94
5830
+ msgid "Map type"
5831
+ msgstr "نوع نقشه"
5832
+
5833
+ #: includes/elementor/widgets/contact-box.php:270
5834
+ #: includes/elements/contact-box.php:200 includes/elements/gmap.php:99
5835
+ msgid "ROADMAP"
5836
+ msgstr "نقشه راه"
5837
+
5838
+ #: includes/elementor/widgets/contact-box.php:271
5839
+ #: includes/elements/contact-box.php:200 includes/elements/gmap.php:99
5840
+ msgid "SATELLITE"
5841
+ msgstr "ماهواره"
5842
+
5843
+ #: includes/elementor/widgets/contact-box.php:283
5844
+ #: includes/elementor/widgets/gmap.php:177
5845
+ #: includes/elements/contact-box.php:213 includes/elements/gmap.php:109
5846
+ msgid "Map style"
5847
+ msgstr "ظاهر نقشه"
5848
+
5849
+ #: includes/elementor/widgets/contact-box.php:284
5850
+ #: includes/elements/contact-box.php:214
5851
+ msgid ""
5852
+ "This feild allows you to customize the presentation of the standard Google "
5853
+ "base maps. You can find many preset styles in "
5854
+ msgstr ""
5855
+ "این فیلد به شما اجازه می دهد نحوه نمایش پایه ای نقشه گوگل را تغییر دهید. شما "
5856
+ "می توانید سبک های پیش ساخته را در اینجا پیدا کنید:"
5857
+
5858
+ #: includes/elementor/widgets/contact-box.php:284
5859
+ #: includes/elementor/widgets/gmap.php:179
5860
+ #: includes/elements/contact-box.php:215 includes/elements/gmap.php:111
5861
+ msgid "this website."
5862
+ msgstr "این وب سایت."
5863
+
5864
+ #: includes/elementor/widgets/contact-box.php:295
5865
+ #: includes/elementor/widgets/gmap.php:121
5866
+ #: includes/elements/contact-box.php:240 includes/elements/gmap.php:125
5867
+ msgid "Marker info"
5868
+ msgstr "اطلاعات نشانگر"
5869
+
5870
+ #: includes/elementor/widgets/contact-box.php:296
5871
+ #: includes/elementor/widgets/gmap.php:122
5872
+ #: includes/elements/contact-box.php:241 includes/elements/gmap.php:126
5873
+ msgid "Marker popup text, leave it empty if you don't need it."
5874
+ msgstr "متن پنجره نشانگر، اگر به ان نیاز ندارید این بخش را خالی بگذارید."
5875
+
5876
+ #: includes/elementor/widgets/contact-box.php:307
5877
+ #: includes/elementor/widgets/gmap.php:190
5878
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:231
5879
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:201
5880
+ #: includes/elements/contact-box.php:258 includes/elements/gmap.php:154
5881
+ #: includes/elements/recent-posts-grid-carousel.php:634
5882
+ #: includes/elements/recent-posts-tiles-carousel.php:425
5883
+ msgid "Navigation control"
5884
+ msgstr "کنترل های ناوبری"
5885
+
5886
+ #: includes/elementor/widgets/contact-box.php:308
5887
+ #: includes/elements/contact-box.php:259
5888
+ msgid "Show nacigation control on map."
5889
+ msgstr "نمایش کنترل های ناوبری روی نقشه."
5890
+
5891
+ #: includes/elementor/widgets/contact-box.php:323
5892
+ #: includes/elements/contact-box.php:277
5893
+ msgid "The initial resolution at which to display the map, between 1 to 20."
5894
+ msgstr "رزولوشن اولیه برای نمایش نقشه، بین 1 تا 20."
5895
+
5896
+ #: includes/elementor/widgets/contact-box.php:347
5897
+ #: includes/elementor/widgets/gmap.php:212
5898
+ #: includes/elements/contact-box.php:293 includes/elements/gmap.php:183
5899
+ msgid "Zoom with mouse wheel"
5900
+ msgstr "بزرگنمایی با چرخ ماوس"
5901
+
5902
+ #: includes/elementor/widgets/contact-form.php:52
5903
+ #: includes/elements/contact-form.php:16
5904
+ #, fuzzy
5905
+ msgid "Contact Form"
5906
+ msgstr "فرم تماس فلوکس"
5907
+
5908
+ #: includes/elementor/widgets/contact-form.php:107
5909
+ #, fuzzy
5910
+ msgid "Contact form Type"
5911
+ msgstr "نوع فرم تماس"
5912
+
5913
+ #: includes/elementor/widgets/contact-form.php:108
5914
+ #: includes/elements/contact-form.php:72
5915
+ msgid ""
5916
+ "Specifies contact form element's type. Whether to use built-in form or "
5917
+ "Contact Form 7."
5918
+ msgstr ""
5919
+ "نوع فرم تماس را مشخص می کند. از فرم تماس داخلی استفاده شود یا فرم تماس 7."
5920
+
5921
+ #: includes/elementor/widgets/contact-form.php:113
5922
+ #: includes/elements/contact-form.php:76
5923
+ msgid "Phlox Contact Form"
5924
+ msgstr "فرم تماس فلوکس"
5925
+
5926
+ #: includes/elementor/widgets/contact-form.php:114
5927
+ #, fuzzy
5928
+ msgid "Contact Form 7 Shortcode"
5929
+ msgstr "کد کوتاه فرم تماس 7"
5930
+
5931
+ #: includes/elementor/widgets/contact-form.php:123
5932
+ #, fuzzy
5933
+ msgid "Put a Contact Form 7 shortcode that you have already created."
5934
+ msgstr "کد کوتاه یکی از فرم های تماس 7 خود را در اینجا وارد کنید."
5935
+
5936
+ #: includes/elementor/widgets/contact-form.php:137
5937
+ #: includes/elements/contact-form.php:58
5938
+ msgid "Email address of message's recipient"
5939
+ msgstr "آدرس ایمیل دریافت کننده ی پیام ها"
5940
+
5941
+ #: includes/elementor/widgets/contact-form.php:161
5942
+ msgid "All Inputs"
5943
+ msgstr ""
5944
+
5945
+ #: includes/elementor/widgets/contact-form.php:170
5946
+ #: includes/elementor/widgets/contact-form.php:455
5947
+ #: includes/elementor/widgets/contact-form.php:929
5948
+ #: includes/elementor/widgets/contact-form.php:1172
5949
+ #: includes/elementor/widgets/contact-form.php:1455
5950
+ #: includes/elementor/widgets/contact-form.php:1490
5951
+ #: includes/elementor/widgets/contact-form.php:1525
5952
+ #: includes/elementor/widgets/mailchimp.php:187
5953
+ #: includes/elementor/widgets/mailchimp.php:414
5954
+ #: includes/elementor/widgets/mailchimp.php:445
5955
+ msgid "Typography"
5956
+ msgstr ""
5957
+
5958
+ #: includes/elementor/widgets/contact-form.php:380
5959
+ #: includes/elementor/widgets/contact-form.php:669
5960
+ #: includes/elementor/widgets/contact-form.php:889
5961
+ #: includes/elementor/widgets/contact-form.php:1131
5962
+ #: includes/elementor/widgets/contact-form.php:1381
5963
+ #: includes/elementor/widgets/contact-form.php:1727
5964
+ #: includes/elementor/widgets/image.php:573
5965
+ #: includes/elementor/widgets/mailchimp.php:376
5966
+ #: includes/elementor/widgets/mailchimp.php:644
5967
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5968
+ #: includes/elementor/widgets/theme-elements/logo.php:360
5969
+ msgid "Transition Duration"
5970
+ msgstr ""
5971
+
5972
+ #: includes/elementor/widgets/contact-form.php:403
5973
+ #: includes/elementor/widgets/contact-form.php:1404
5974
+ msgid "Focus"
5975
+ msgstr ""
5976
+
5977
+ #: includes/elementor/widgets/contact-form.php:446
5978
+ msgid "Input Placeholder"
5979
+ msgstr ""
5980
+
5981
+ #: includes/elementor/widgets/contact-form.php:481
5982
+ msgid "Text Inputs"
5983
+ msgstr ""
5984
+
5985
+ #: includes/elementor/widgets/contact-form.php:701
5986
+ msgid "Email Inputs"
5987
+ msgstr ""
5988
+
5989
+ #: includes/elementor/widgets/contact-form.php:920
5990
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:345
5991
+ msgid "Dropdown"
5992
+ msgstr ""
5993
+
5994
+ #: includes/elementor/widgets/contact-form.php:1163
5995
+ msgid "Textarea"
5996
+ msgstr ""
5997
+
5998
+ #: includes/elementor/widgets/contact-form.php:1446
5999
+ msgid "Textarea Placeholder"
6000
+ msgstr ""
6001
+
6002
+ #: includes/elementor/widgets/contact-form.php:1481
6003
+ msgid "Labels"
6004
+ msgstr ""
6005
+
6006
+ #: includes/elementor/widgets/contact-form.php:1516
6007
+ #, fuzzy
6008
+ msgid "Submit Button"
6009
+ msgstr "تایید"
6010
+
6011
+ #: includes/elementor/widgets/custom-list.php:53
6012
+ msgid "Flexible List"
6013
+ msgstr ""
6014
+
6015
+ #: includes/elementor/widgets/custom-list.php:128
6016
+ #: includes/elementor/widgets/custom-list.php:821
6017
+ msgid "Secondary Text"
6018
+ msgstr ""
6019
+
6020
+ #: includes/elementor/widgets/custom-list.php:152
6021
+ msgid "Customize this item"
6022
+ msgstr ""
6023
+
6024
+ #: includes/elementor/widgets/custom-list.php:164
6025
+ msgid "Icon Styles:"
6026
+ msgstr ""
6027
+
6028
+ #: includes/elementor/widgets/custom-list.php:190
6029
+ #: includes/elementor/widgets/image.php:628
6030
+ #: includes/elementor/widgets/theme-elements/search.php:201
6031
+ #: includes/elementor/widgets/theme-elements/search.php:404
6032
+ #: includes/elementor/widgets/touch-slider.php:303
6033
+ #: includes/general-hooks.php:1545
6034
+ msgid "Background Color"
6035
+ msgstr "رنگ پس زمینه"
6036
+
6037
+ #: includes/elementor/widgets/custom-list.php:220
6038
+ msgid "Text Styles:"
6039
+ msgstr ""
6040
+
6041
+ #: includes/elementor/widgets/custom-list.php:273
6042
+ #, fuzzy
6043
+ msgid "Text HTML Tag"
6044
+ msgstr "تراز متن"
6045
+
6046
+ #: includes/elementor/widgets/custom-list.php:296
6047
+ #, fuzzy
6048
+ msgid "Secondary Text Color"
6049
+ msgstr "رنگ شکلک"
6050
+
6051
+ #: includes/elementor/widgets/custom-list.php:324
6052
+ msgid "Secondary Text Margin"
6053
+ msgstr ""
6054
+
6055
+ #: includes/elementor/widgets/custom-list.php:341
6056
+ msgid "List Items"
6057
+ msgstr ""
6058
+
6059
+ #: includes/elementor/widgets/custom-list.php:374
6060
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:120
6061
+ #: includes/elementor/widgets/recent-posts-masonry.php:120
6062
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:117
6063
+ #: includes/elementor/widgets/recent-posts-tiles.php:117
6064
+ #: includes/elementor/widgets/recent-posts-timeline.php:117
6065
+ #: includes/elementor/widgets/recent-products.php:129
6066
+ #: includes/elementor/widgets/staff.php:810 includes/elements/gallery.php:228
6067
+ #: includes/elements/gallery.php:250 includes/elements/gallery.php:270
6068
+ #: includes/elements/recent-posts-grid-carousel.php:489
6069
+ #: includes/elements/recent-posts-grid-carousel.php:508
6070
+ #: includes/elements/recent-posts-grid-carousel.php:525
6071
+ #: includes/elements/recent-posts-masonry.php:371
6072
+ #: includes/elements/recent-posts-masonry.php:390
6073
+ #: includes/elements/recent-posts-masonry.php:407
6074
+ #: includes/elements/recent-posts-timeline.php:289
6075
+ #: includes/elements/recent-posts-timeline.php:309
6076
+ msgid "Layout"
6077
+ msgstr ""
6078
+
6079
+ #: includes/elementor/widgets/custom-list.php:382
6080
+ #: includes/elementor/widgets/theme-elements/site-title.php:278
6081
+ #, fuzzy
6082
+ msgid "Direction"
6083
+ msgstr "بخش"
6084
+
6085
+ #: includes/elementor/widgets/custom-list.php:386
6086
+ #: includes/elementor/widgets/staff.php:738
6087
+ #: includes/elementor/widgets/theme-elements/menu.php:161
6088
+ #: includes/elements/socials-list.php:84 includes/elements/staff.php:486
6089
+ msgid "Vertical"
6090
+ msgstr "عمودی"
6091
+
6092
+ #: includes/elementor/widgets/custom-list.php:387
6093
+ #: includes/elementor/widgets/staff.php:739
6094
+ #: includes/elementor/widgets/theme-elements/menu.php:160
6095
+ #: includes/elements/socials-list.php:83 includes/elements/staff.php:487
6096
+ msgid "Horizontal"
6097
+ msgstr "افقی"
6098
+
6099
+ #: includes/elementor/widgets/custom-list.php:445
6100
+ #, fuzzy
6101
+ msgid "Space Between Columns"
6102
+ msgstr "فاصله بین اسلایدها"
6103
+
6104
+ #: includes/elementor/widgets/custom-list.php:469
6105
+ #, fuzzy
6106
+ msgid "Horizontal Align"
6107
+ msgstr "افقی"
6108
+
6109
+ #: includes/elementor/widgets/custom-list.php:501
6110
+ #, fuzzy
6111
+ msgid "Vertical Align"
6112
+ msgstr "عمودی"
6113
+
6114
+ #: includes/elementor/widgets/custom-list.php:539
6115
+ #: includes/elements/custom-list.php:16 includes/elements/custom-list.php:60
6116
+ #: includes/elements/custom-list.php:76 includes/elements/custom-list.php:92
6117
+ #: includes/elements/custom-list.php:108 includes/elements/custom-list.php:124
6118
+ #: includes/elements/custom-list.php:140
6119
+ msgid "List"
6120
+ msgstr ""
6121
+
6122
+ #: includes/elementor/widgets/custom-list.php:547
6123
+ #, fuzzy
6124
+ msgid "Space Between Rows"
6125
+ msgstr "فاصله بین اسلایدها"
6126
+
6127
+ #: includes/elementor/widgets/custom-list.php:565
6128
+ #: includes/elements/custom-list.php:154
6129
+ #, fuzzy
6130
+ msgid "Display Connector"
6131
+ msgstr "نمایش خلاصه"
6132
+
6133
+ #: includes/elementor/widgets/custom-list.php:581
6134
+ #: includes/elementor/widgets/custom-list.php:667
6135
+ #: includes/elementor/widgets/divider.php:111 includes/elements/divider.php:61
6136
+ msgid "Solid"
6137
+ msgstr "یک دست"
6138
+
6139
+ #: includes/elementor/widgets/custom-list.php:582
6140
+ #: includes/elementor/widgets/custom-list.php:668
6141
+ msgid "Double"
6142
+ msgstr ""
6143
+
6144
+ #: includes/elementor/widgets/custom-list.php:583
6145
+ #: includes/elementor/widgets/custom-list.php:669
6146
+ #, fuzzy
6147
+ msgid "Dotted"
6148
+ msgstr "نقطه ای"
6149
+
6150
+ #: includes/elementor/widgets/custom-list.php:584
6151
+ #: includes/elementor/widgets/custom-list.php:670
6152
+ #: includes/elementor/widgets/divider.php:115 includes/elements/divider.php:65
6153
+ msgid "Dashed"
6154
+ msgstr "خط چین"
6155
+
6156
+ #: includes/elementor/widgets/custom-list.php:599
6157
+ #: includes/elementor/widgets/custom-list.php:686
6158
+ #: includes/elementor/widgets/heading-modern.php:876
6159
+ #, fuzzy
6160
+ msgid "Weight"
6161
+ msgstr "ارتفاع"
6162
+
6163
+ #: includes/elementor/widgets/custom-list.php:618
6164
+ #, fuzzy
6165
+ msgid "Left Space"
6166
+ msgstr "فاصله خالی"
6167
+
6168
+ #: includes/elementor/widgets/custom-list.php:651
6169
+ #: includes/elementor/widgets/heading-modern.php:188
6170
+ #: includes/elements/custom-list.php:172
6171
+ #, fuzzy
6172
+ msgid "Display Divider"
6173
+ msgstr "نمایش تصویر"
6174
+
6175
+ #: includes/elementor/widgets/custom-list.php:805
6176
+ #: includes/elementor/widgets/custom-list.php:861
6177
+ #, fuzzy
6178
+ msgid "Text Margin"
6179
+ msgstr "تراز متن"
6180
+
6181
+ #: includes/elementor/widgets/custom-list.php:1001
6182
+ #: includes/elements/custom-list.php:61 includes/elements/custom-list.php:64
6183
+ #: includes/elements/custom-list.php:77 includes/elements/custom-list.php:93
6184
+ #: includes/elements/custom-list.php:96 includes/elements/custom-list.php:109
6185
+ #: includes/elements/custom-list.php:125 includes/elements/custom-list.php:141
6186
+ msgid "List Item"
6187
+ msgstr ""
6188
+
6189
+ #: includes/elementor/widgets/custom-list.php:1046
6190
+ #: includes/elementor/widgets/tabs.php:297
6191
+ #: includes/elementor/widgets/tabs.php:335
6192
+ msgid "Box Shadow Normal"
6193
+ msgstr ""
6194
+
6195
+ #: includes/elementor/widgets/custom-list.php:1083
6196
+ msgid "Box Shadow Hover"
6197
+ msgstr ""
6198
+
6199
+ #: includes/elementor/widgets/divider.php:47
6200
+ #: includes/elementor/widgets/divider.php:95
6201
+ #: includes/elementor/widgets/heading-modern.php:865
6202
+ #: includes/elements/divider.php:16
6203
+ #, fuzzy
6204
+ msgid "Divider"
6205
+ msgstr "ظاهر جداکننده"
6206
+
6207
+ #: includes/elementor/widgets/divider.php:107 includes/elements/divider.php:57
6208
+ msgid "White Space"
6209
+ msgstr "فاصله خالی"
6210
+
6211
+ #: includes/elementor/widgets/divider.php:119
6212
+ #: includes/elementor/widgets/icon.php:140
6213
+ #: includes/elementor/widgets/staff.php:200
6214
+ #: includes/elementor/widgets/text.php:460
6215
+ #: includes/elementor/widgets/text.php:649
6216
+ #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6217
+ #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6218
+ #: includes/elements/text.php:539 includes/elements/text.php:581
6219
+ #: includes/general-hooks.php:349
6220
+ msgid "Circle"
6221
+ msgstr "دایره"
6222
+
6223
+ #: includes/elementor/widgets/divider.php:123 includes/elements/divider.php:73
6224
+ msgid "Diamond"
6225
+ msgstr "الماس"
6226
+
6227
+ #: includes/elementor/widgets/divider.php:127 includes/elements/divider.php:77
6228
+ #, fuzzy
6229
+ msgid "Vertical Line"
6230
+ msgstr "عمودی"
6231
+
6232
+ #: includes/elementor/widgets/divider.php:139 includes/elements/divider.php:84
6233
+ #, fuzzy
6234
+ msgid "Specifies the size of divider."
6235
+ msgstr "اندازه عرض جداکننده را مشخص می کند."
6236
+
6237
+ #: includes/elementor/widgets/divider.php:144
6238
+ #: includes/elements/before-after.php:106
6239
+ #: includes/elements/instagram-feed.php:99
6240
+ msgid "Full"
6241
+ msgstr "کامل"
6242
+
6243
+ #: includes/elementor/widgets/divider.php:160
6244
+ #, fuzzy
6245
+ msgid "Custom width"
6246
+ msgstr "تصویر دلخواه"
6247
+
6248
+ #: includes/elementor/widgets/divider.php:193
6249
+ #: includes/elementor/widgets/heading-modern.php:154
6250
+ #: includes/elementor/widgets/icon.php:166
6251
+ #: includes/elementor/widgets/image.php:314
6252
+ #: includes/elementor/widgets/modern-button.php:180
6253
+ #: includes/elementor/widgets/modern-button.php:800
6254
+ #: includes/elementor/widgets/svg.php:279
6255
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
6256
+ #: includes/elementor/widgets/theme-elements/copyright.php:138
6257
+ #: includes/elementor/widgets/theme-elements/logo.php:157
6258
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:191
6259
+ #: includes/elementor/widgets/theme-elements/site-title.php:184
6260
+ #: includes/elements/image.php:145
6261
+ msgid "Alignment"
6262
+ msgstr "تراز"
6263
+
6264
+ #: includes/elementor/widgets/divider.php:232
6265
+ #, fuzzy
6266
+ msgid "Symbol Alignment"
6267
+ msgstr "تراز"
6268
+
6269
+ #: includes/elementor/widgets/divider.php:259
6270
+ msgid "Gap"
6271
+ msgstr "شکاف"
6272
+
6273
+ #: includes/elementor/widgets/divider.php:295
6274
+ #, fuzzy
6275
+ msgid "Gap top"
6276
+ msgstr "نوع نقشه"
6277
+
6278
+ #: includes/elementor/widgets/divider.php:331
6279
+ #, fuzzy
6280
+ msgid "Gap bottom"
6281
+ msgstr "چپ پایین"
6282
+
6283
+ #: includes/elementor/widgets/divider.php:387 includes/elements/divider.php:106
6284
+ #, fuzzy
6285
+ msgid "Divider color"
6286
+ msgstr "ظاهر جداکننده"
6287
+
6288
+ #: includes/elementor/widgets/divider.php:399
6289
+ #, fuzzy
6290
+ msgid "Symbol color"
6291
+ msgstr "رنگ شکلک"
6292
+
6293
+ #: includes/elementor/widgets/gallery.php:50
6294
+ #, fuzzy
6295
+ msgid "Modern Gallery"
6296
+ msgstr "گالری تصاویر"
6297
+
6298
+ #: includes/elementor/widgets/gallery.php:94
6299
+ #, fuzzy
6300
+ msgid "Gallery Images"
6301
+ msgstr "تصاویر گالری"
6302
+
6303
+ #: includes/elementor/widgets/gallery.php:101
6304
+ #: includes/elementor/widgets/touch-slider.php:105
6305
+ #, fuzzy
6306
+ msgid "Add Images"
6307
+ msgstr "تصاویر"
6308
+
6309
+ #: includes/elementor/widgets/gallery.php:113 includes/elements/gallery.php:71
6310
+ msgid "Gallery layout"
6311
+ msgstr "چیدمان گالری"
6312
+
6313
+ #: includes/elementor/widgets/gallery.php:117
6314
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:153
6315
+ #: includes/elements/gallery.php:78
6316
+ #: includes/elements/recent-posts-grid-carousel.php:537
6317
+ #: public/templates/vcomposer/auxin_vc_extendes.php:35
6318
+ msgid "Grid"
6319
+ msgstr "شبکه"
6320
+
6321
+ #: includes/elementor/widgets/gallery.php:118 includes/elements/gallery.php:82
6322
+ #: public/templates/vcomposer/auxin_vc_extendes.php:32
6323
+ msgid "Masonry"
6324
+ msgstr "ساختمانی"
6325
+
6326
+ #: includes/elementor/widgets/gallery.php:119 includes/elements/gallery.php:86
6327
+ msgid "Tiles"
6328
+ msgstr ""
6329
+
6330
+ #: includes/elementor/widgets/gallery.php:127
6331
+ #, fuzzy
6332
+ msgid "Tile styles"
6333
+ msgstr "ظاهر کاشی مطالب"
6334
+
6335
+ #: includes/elementor/widgets/gallery.php:132
6336
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:134
6337
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:220
6338
+ #: includes/elementor/widgets/recent-posts-tiles.php:134
6339
+ #: includes/elements/gallery.php:124
6340
+ #: includes/elements/recent-posts-tiles-carousel.php:302
6341
+ #: includes/elements/recent-posts-tiles-carousel.php:368
6342
+ #: includes/elements/recent-posts-tiles.php:332
6343
+ msgid "Pattern 1"
6344
+ msgstr ""
6345
+
6346
+ #: includes/elementor/widgets/gallery.php:133
6347
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:138
6348
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:224
6349
+ #: includes/elementor/widgets/recent-posts-tiles.php:138
6350
+ #: includes/elements/gallery.php:128
6351
+ #: includes/elements/recent-posts-tiles-carousel.php:306
6352
+ #: includes/elements/recent-posts-tiles-carousel.php:372
6353
+ #: includes/elements/recent-posts-tiles.php:336
6354
+ msgid "Pattern 2"
6355
+ msgstr ""
6356
+
6357
+ #: includes/elementor/widgets/gallery.php:134
6358
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:142
6359
+ #: includes/elementor/widgets/recent-posts-tiles.php:142
6360
+ #: includes/elements/gallery.php:132
6361
+ #: includes/elements/recent-posts-tiles-carousel.php:310
6362
+ #: includes/elements/recent-posts-tiles.php:340
6363
+ msgid "Pattern 3"
6364
+ msgstr ""
6365
+
6366
+ #: includes/elementor/widgets/gallery.php:135
6367
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:146
6368
+ #: includes/elementor/widgets/recent-posts-tiles.php:146
6369
+ #: includes/elements/gallery.php:136
6370
+ #: includes/elements/recent-posts-tiles-carousel.php:314
6371
+ #: includes/elements/recent-posts-tiles.php:344
6372
+ msgid "Pattern 4"
6373
+ msgstr ""
6374
+
6375
+ #: includes/elementor/widgets/gallery.php:136
6376
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:150
6377
+ #: includes/elementor/widgets/recent-posts-tiles.php:150
6378
+ #: includes/elements/gallery.php:140
6379
+ #: includes/elements/recent-posts-tiles-carousel.php:318
6380
+ #: includes/elements/recent-posts-tiles.php:348
6381
+ msgid "Pattern 5"
6382
+ msgstr ""
6383
+
6384
+ #: includes/elementor/widgets/gallery.php:137
6385
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:154
6386
+ #: includes/elementor/widgets/recent-posts-tiles.php:154
6387
+ #: includes/elements/gallery.php:144
6388
+ #: includes/elements/recent-posts-tiles-carousel.php:322
6389
+ #: includes/elements/recent-posts-tiles.php:352
6390
+ msgid "Pattern 6"
6391
+ msgstr ""
6392
+
6393
+ #: includes/elementor/widgets/gallery.php:138
6394
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:158
6395
+ #: includes/elementor/widgets/recent-posts-tiles.php:158
6396
+ #: includes/elements/gallery.php:148
6397
+ #: includes/elements/recent-posts-tiles-carousel.php:326
6398
+ #: includes/elements/recent-posts-tiles.php:356
6399
+ msgid "Pattern 7"
6400
+ msgstr ""
6401
+
6402
+ #: includes/elementor/widgets/gallery.php:152
6403
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:128
6404
+ #: includes/elementor/widgets/recent-posts-masonry.php:128
6405
+ #: includes/elementor/widgets/recent-products.php:137
6406
+ #: includes/elements/instagram-feed.php:110
6407
+ msgid "Columns"
6408
+ msgstr "ستون ها"
6409
+
6410
+ #: includes/elementor/widgets/gallery.php:167
6411
+ #, fuzzy
6412
+ msgid "Image spacing"
6413
+ msgstr "اندازه تصویر"
6414
+
6415
+ #: includes/elementor/widgets/gallery.php:188
6416
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:919
6417
+ #: includes/elementor/widgets/recent-posts-land-style.php:533
6418
+ #: includes/elementor/widgets/recent-posts-timeline.php:559
6419
+ #: includes/elementor/widgets/recent-products.php:504
6420
+ #: includes/elements/gallery.php:292
6421
+ #: includes/elements/recent-posts-grid-carousel.php:113
6422
+ #: includes/elements/recent-posts-land-style.php:100
6423
+ #: includes/elements/recent-posts-timeline.php:293
6424
+ #: includes/elements/recent-products.php:86
6425
+ msgid "Image aspect ratio"
6426
+ msgstr "نسبت ابعاد تصویر"
6427
+
6428
+ #: includes/elementor/widgets/gallery.php:212
6429
+ #, fuzzy
6430
+ msgid "Link to"
6431
+ msgstr "پیوند"
6432
+
6433
+ #: includes/elementor/widgets/gallery.php:216
6434
+ #: includes/elementor/widgets/theme-elements/logo.php:187
6435
+ msgid "Media File"
6436
+ msgstr ""
6437
+
6438
+ #: includes/elementor/widgets/gallery.php:217 includes/elements/gallery.php:323
6439
+ msgid "Attachment Page"
6440
+ msgstr "صفحه پیوست"
6441
+
6442
+ #: includes/elementor/widgets/gallery.php:218 includes/elements/flickr.php:151
6443
+ #: includes/elements/gallery.php:321
6444
+ msgid "Lightbox"
6445
+ msgstr "لایت باکس"
6446
+
6447
+ #: includes/elementor/widgets/gallery.php:227 includes/elements/flickr.php:200
6448
+ msgid "Pagination"
6449
+ msgstr "صفحه بندی"
6450
+
6451
+ #: includes/elementor/widgets/gallery.php:238 includes/elements/gallery.php:348
6452
+ #, fuzzy
6453
+ msgid "Enable lazyload"
6454
+ msgstr "فعالسازی پس زمینه"
6455
+
6456
+ #: includes/elementor/widgets/gallery.php:252 includes/elements/gallery.php:364
6457
+ msgid "Images per page"
6458
+ msgstr "تعداد عکس در صفحه"
6459
+
6460
+ #: includes/elementor/widgets/gallery.php:271
6461
+ #, fuzzy
6462
+ msgid "Order by query"
6463
+ msgstr "مرتب سازی تصاویر بر اساس کوئری"
6464
+
6465
+ #: includes/elementor/widgets/gallery.php:298 includes/elements/gallery.php:188
6466
+ msgid "Order images by"
6467
+ msgstr "مرتب کردن تصاویر بر اساس"
6468
+
6469
+ #: includes/elementor/widgets/gallery.php:303
6470
+ #, fuzzy
6471
+ msgid "date"
6472
+ msgstr "نوع تاریخ"
6473
+
6474
+ #: includes/elementor/widgets/gallery.php:404
6475
+ #, fuzzy
6476
+ msgid "Image Hover"
6477
+ msgstr "تصویر شناور"
6478
+
6479
+ #: includes/elementor/widgets/gallery.php:412
6480
+ #, fuzzy
6481
+ msgid "Image hover overlay color"
6482
+ msgstr "تصویر شناور"
6483
+
6484
+ #: includes/elementor/widgets/gallery.php:428
6485
+ msgid "Image hover transition duration (milliseconds)"
6486
+ msgstr ""
6487
+
6488
+ #: includes/elementor/widgets/gallery.php:449
6489
+ #, fuzzy
6490
+ msgid "Image hover zoom"
6491
+ msgstr "تصویر شناور"
6492
+
6493
+ #: includes/elementor/widgets/gallery.php:474
6494
+ #, fuzzy
6495
+ msgid "Image Border"
6496
+ msgstr "تصویر شناور"
6497
+
6498
+ #: includes/elementor/widgets/gmap.php:130 includes/elements/gmap.php:139
6499
+ #, fuzzy
6500
+ msgid "Marker Icon"
6501
+ msgstr "اطلاعات نشانگر"
6502
+
6503
+ #: includes/elementor/widgets/gmap.php:131 includes/elements/gmap.php:140
6504
+ msgid "Pick a small icon for gmaps marker."
6505
+ msgstr ""
6506
+
6507
+ #: includes/elementor/widgets/gmap.php:147
6508
+ #: includes/elementor/widgets/recent-comments.php:123
6509
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:116
6510
+ #: includes/elementor/widgets/theme-elements/copyright.php:94
6511
+ #: includes/elementor/widgets/theme-elements/current-time.php:98
6512
+ #: includes/elementor/widgets/theme-elements/logo.php:102
6513
+ #: includes/elementor/widgets/theme-elements/menu.php:120
6514
+ #: includes/elementor/widgets/theme-elements/search.php:94
6515
+ #: includes/elementor/widgets/theme-elements/site-title.php:270
6516
+ msgid "General"
6517
+ msgstr ""
6518
+
6519
+ #: includes/elementor/widgets/gmap.php:159
6520
+ msgid "Roadmap"
6521
+ msgstr ""
6522
+
6523
+ #: includes/elementor/widgets/gmap.php:160
6524
+ msgid "Satelite"
6525
+ msgstr ""
6526
+
6527
+ #: includes/elementor/widgets/gmap.php:178 includes/elements/gmap.php:110
6528
+ msgid ""
6529
+ "This feild allow you to customize the presentation of the standard Google "
6530
+ "base maps. You can find many preset styles in "
6531
+ msgstr ""
6532
+ "این فیلد به شما اجازه می دهد نحوه نمایش پایه ای نقشه گوگل را تغییر دهید. شما "
6533
+ "می توانید سبک های پیش ساخته را در اینجا پیدا کنید:"
6534
+
6535
+ #: includes/elementor/widgets/gmap.php:191 includes/elements/gmap.php:155
6536
+ msgid "Show navigation control on map."
6537
+ msgstr "نمایش کنترل های ناوبری در نقشه."
6538
+
6539
+ #: includes/elementor/widgets/gmap.php:255
6540
+ msgid "Google Maps API Key Is Missing."
6541
+ msgstr ""
6542
+
6543
+ #: includes/elementor/widgets/gmap.php:258
6544
+ msgid ""
6545
+ "In order to use google maps on your website, you have to create an api key "
6546
+ "and insert it in customizer \"Google Maps API Key\" field."
6547
+ msgstr ""
6548
+
6549
+ #: includes/elementor/widgets/heading-modern.php:52
6550
+ #, fuzzy
6551
+ msgid "Modern Heading"
6552
+ msgstr "تیتر گذاری"
6553
+
6554
+ #: includes/elementor/widgets/heading-modern.php:100
6555
+ #: includes/elementor/widgets/heading-modern.php:339
6556
+ msgid "Heading"
6557
+ msgstr "تیتر گذاری"
6558
+
6559
+ #: includes/elementor/widgets/heading-modern.php:112
6560
+ msgid "Add your heading text here .."
6561
+ msgstr ""
6562
+
6563
+ #: includes/elementor/widgets/heading-modern.php:134
6564
+ #: includes/elementor/widgets/heading-modern.php:284
6565
+ msgid "HTML Tag"
6566
+ msgstr ""
6567
+
6568
+ #: includes/elementor/widgets/heading-modern.php:201
6569
+ #, fuzzy
6570
+ msgid "Divider Position"
6571
+ msgstr "ظاهر جداکننده"
6572
+
6573
+ #: includes/elementor/widgets/heading-modern.php:204
6574
+ #, fuzzy
6575
+ msgid "Before Heading"
6576
+ msgstr "تیتر گذاری"
6577
+
6578
+ #: includes/elementor/widgets/heading-modern.php:205
6579
+ #, fuzzy
6580
+ msgid "Between Headings"
6581
+ msgstr "تیتر گذاری"
6582
+
6583
+ #: includes/elementor/widgets/heading-modern.php:206
6584
+ #, fuzzy
6585
+ msgid "After Headings"
6586
+ msgstr "تیتر گذاری"
6587
+
6588
+ #: includes/elementor/widgets/heading-modern.php:224
6589
+ #: includes/elementor/widgets/heading-modern.php:509
6590
+ msgid "Secondary Heading"
6591
+ msgstr ""
6592
+
6593
+ #: includes/elementor/widgets/heading-modern.php:231
6594
+ msgid "Before Text"
6595
+ msgstr ""
6596
+
6597
+ #: includes/elementor/widgets/heading-modern.php:244
6598
+ #: includes/elementor/widgets/modern-button.php:117
6599
+ #: includes/elementor/widgets/modern-button.php:565
6600
+ #: includes/elements/highlight.php:18
6601
+ msgid "Highlighted Text"
6602
+ msgstr "متن هایلایت شده"
6603
+
6604
+ #: includes/elementor/widgets/heading-modern.php:257
6605
+ #: includes/elementor/widgets/modern-button.php:126
6606
+ #: includes/elementor/widgets/modern-button.php:677
6607
+ msgid "After Text"
6608
+ msgstr ""
6609
+
6610
+ #: includes/elementor/widgets/heading-modern.php:462
6611
+ #: includes/elementor/widgets/heading-modern.php:647
6612
+ #: includes/elementor/widgets/heading-modern.php:818
6613
+ #: includes/elementor/widgets/image.php:487
6614
+ #: includes/elementor/widgets/svg.php:305
6615
+ #: includes/elementor/widgets/testimonial.php:306
6616
+ #: includes/elementor/widgets/testimonial.php:683
6617
+ #: includes/elementor/widgets/testimonial.php:831
6618
+ #, fuzzy
6619
+ msgid "Border radius"
6620
+ msgstr "کادربندی شده"
6621
+
6622
+ #: includes/elementor/widgets/heading-modern.php:695
6623
+ msgid "Secondary Heading - Highlighted"
6624
+ msgstr ""
6625
+
6626
+ #: includes/elementor/widgets/icon.php:48
6627
+ #, fuzzy
6628
+ msgid "Icon Picker"
6629
+ msgstr "اندازه شکلک"
6630
+
6631
+ #: includes/elementor/widgets/icon.php:122
6632
+ msgid "View"
6633
+ msgstr ""
6634
+
6635
+ #: includes/elementor/widgets/icon.php:126
6636
+ msgid "Stacked"
6637
+ msgstr ""
6638
+
6639
+ #: includes/elementor/widgets/icon.php:127
6640
+ msgid "Framed"
6641
+ msgstr ""
6642
+
6643
+ #: includes/elementor/widgets/icon.php:137
6644
+ #: includes/elementor/widgets/modern-button.php:290
6645
+ msgid "Shape"
6646
+ msgstr "شکل"
6647
+
6648
+ #: includes/elementor/widgets/icon.php:141
6649
+ #: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
6650
+ #: includes/general-hooks.php:350
6651
+ msgid "Square"
6652
+ msgstr "مربع"
6653
+
6654
+ #: includes/elementor/widgets/icon.php:159
6655
+ #: includes/elementor/widgets/theme-elements/logo.php:198
6656
+ msgid "https://your-link.com"
6657
+ msgstr ""
6658
+
6659
+ #: includes/elementor/widgets/icon.php:211
6660
+ #: includes/elementor/widgets/icon.php:253
6661
+ msgid "Primary Color"
6662
+ msgstr ""
6663
+
6664
+ #: includes/elementor/widgets/icon.php:228
6665
+ #: includes/elementor/widgets/icon.php:266
6666
+ #, fuzzy
6667
+ msgid "Secondary Color"
6668
+ msgstr "رنگ شکلک"
6669
+
6670
+ #: includes/elementor/widgets/icon.php:282
6671
+ #, fuzzy
6672
+ msgid "Hover Animation"
6673
+ msgstr "ناوبری چرخه ای"
6674
+
6675
+ #: includes/elementor/widgets/icon.php:331
6676
+ msgid "Rotate"
6677
+ msgstr ""
6678
+
6679
+ #: includes/elementor/widgets/icon.php:346
6680
+ #, fuzzy
6681
+ msgid "Border Width"
6682
+ msgstr "کادربندی شده"
6683
+
6684
+ #: includes/elementor/widgets/image.php:55
6685
+ #, fuzzy
6686
+ msgid "Advanced Image"
6687
+ msgstr "تصویر پس زمینه"
6688
+
6689
+ #: includes/elementor/widgets/image.php:103
6690
+ #: includes/elementor/widgets/image.php:110
6691
+ #: includes/elementor/widgets/image.php:165
6692
+ #: includes/elementor/widgets/image.php:418
6693
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:742
6694
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:908
6695
+ #: includes/elementor/widgets/recent-posts-land-style.php:522
6696
+ #: includes/elementor/widgets/recent-posts-masonry.php:619
6697
+ #: includes/elementor/widgets/recent-posts-timeline.php:548
6698
+ #: includes/elementor/widgets/recent-products.php:493
6699
+ #: includes/elementor/widgets/staff.php:169
6700
+ #: includes/elementor/widgets/staff.php:176
6701
+ #: includes/elementor/widgets/svg.php:110
6702
+ #: includes/elementor/widgets/testimonial.php:102
6703
+ #: includes/elementor/widgets/testimonial.php:267
6704
+ #: includes/elementor/widgets/text.php:117
6705
+ #: includes/elementor/widgets/text.php:139
6706
+ #: includes/elementor/widgets/theme-elements/logo.php:214
6707
+ #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6708
+ #: includes/elements/image.php:57 includes/elements/text.php:375
6709
+ #: includes/elements/text.php:404
6710
+ msgid "Image"
6711
+ msgstr "تصویر"
6712
+
6713
+ #: includes/elementor/widgets/image.php:131
6714
+ #, fuzzy
6715
+ msgid "Image Link"
6716
+ msgstr "اندازه تصویر"
6717
+
6718
+ #: includes/elementor/widgets/image.php:146
6719
+ #, fuzzy
6720
+ msgid "Hover Image"
6721
+ msgstr "تصویر پوستر"
6722
+
6723
+ #: includes/elementor/widgets/image.php:153
6724
+ #, fuzzy
6725
+ msgid "Display Hover Image"
6726
+ msgstr "نمایش تصویر"
6727
+
6728
+ #: includes/elementor/widgets/image.php:179
6729
+ #: includes/elementor/widgets/image.php:617
6730
+ msgid "Ribbon"
6731
+ msgstr ""
6732
+
6733
+ #: includes/elementor/widgets/image.php:186 includes/elements/image.php:288
6734
+ #, fuzzy
6735
+ msgid "Diplay Ribbon"
6736
+ msgstr "نمایش دکمه لایک"
6737
+
6738
+ #: includes/elementor/widgets/image.php:210 includes/elements/image.php:320
6739
+ msgid "Ribbon Style"
6740
+ msgstr ""
6741
+
6742
+ #: includes/elementor/widgets/image.php:214 includes/elements/image.php:325
6743
+ #: includes/elements/staff.php:199 includes/elements/text.php:97
6744
+ msgid "Simple"
6745
+ msgstr "ساده"
6746
+
6747
+ #: includes/elementor/widgets/image.php:215 includes/elements/image.php:326
6748
+ msgid "Corner"
6749
+ msgstr ""
6750
+
6751
+ #: includes/elementor/widgets/image.php:216 includes/elements/image.php:327
6752
+ msgid "Cross"
6753
+ msgstr ""
6754
+
6755
+ #: includes/elementor/widgets/image.php:227 includes/elements/image.php:341
6756
+ #, fuzzy
6757
+ msgid "Ribbon Position"
6758
+ msgstr "موقعیت"
6759
+
6760
+ #: includes/elementor/widgets/image.php:231 includes/elements/image.php:346
6761
+ #, fuzzy
6762
+ msgid "Top Left"
6763
+ msgstr "چپ"
6764
+
6765
+ #: includes/elementor/widgets/image.php:232 includes/elements/image.php:347
6766
+ #, fuzzy
6767
+ msgid "Top Right"
6768
+ msgstr "راست"
6769
+
6770
+ #: includes/elementor/widgets/image.php:233 includes/elements/image.php:348
6771
+ msgid "Bottom Left"
6772
+ msgstr ""
6773
+
6774
+ #: includes/elementor/widgets/image.php:234 includes/elements/image.php:349
6775
+ #, fuzzy
6776
+ msgid "Bottom Right"
6777
+ msgstr "ارتفاع لوگو"
6778
+
6779
+ #: includes/elementor/widgets/image.php:245
6780
+ msgid "Ribbon Thickness"
6781
+ msgstr ""
6782
+
6783
+ #: includes/elementor/widgets/image.php:278
6784
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:101
6785
+ #: includes/general-hooks.php:1906
6786
+ msgid "Settings"
6787
+ msgstr ""
6788
+
6789
+ #: includes/elementor/widgets/image.php:286
6790
+ #, fuzzy
6791
+ msgid "Open in lightbox"
6792
+ msgstr "بازشدن لایت باکس"
6793
+
6794
+ #: includes/elementor/widgets/image.php:298 includes/elements/image.php:163
6795
+ msgid "Iconic button"
6796
+ msgstr "دکمه شکلک دار"
6797
+
6798
+ #: includes/elementor/widgets/image.php:303 includes/elements/image.php:170
6799
+ msgid "Plus"
6800
+ msgstr "بعلاوه"
6801
+
6802
+ #: includes/elementor/widgets/image.php:315
6803
+ #, fuzzy
6804
+ msgid "Image alignment in block."
6805
+ msgstr "تراز تصویر در محتوا."
6806
+
6807
+ #: includes/elementor/widgets/image.php:343
6808
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:381
6809
+ #: includes/elementor/widgets/recent-posts-land-style.php:137
6810
+ #: includes/elementor/widgets/recent-posts-masonry.php:205
6811
+ #: includes/elementor/widgets/recent-posts-timeline.php:192
6812
+ #: includes/elementor/widgets/recent-products.php:224
6813
+ #: includes/elementor/widgets/staff.php:223
6814
+ #: includes/elementor/widgets/text.php:162
6815
+ #, fuzzy
6816
+ msgid "Preload image"
6817
+ msgstr "تصویر شاخص"
6818
+
6819
+ #: includes/elementor/widgets/image.php:355
6820
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:396
6821
+ #: includes/elementor/widgets/recent-posts-land-style.php:152
6822
+ #: includes/elementor/widgets/recent-posts-masonry.php:220
6823
+ #: includes/elementor/widgets/recent-posts-timeline.php:207
6824
+ #: includes/elementor/widgets/recent-products.php:239
6825
+ #: includes/elementor/widgets/staff.php:235
6826
+ #: includes/elementor/widgets/text.php:177
6827
+ msgid "While loading image display"
6828
+ msgstr ""
6829
+
6830
+ #: includes/elementor/widgets/image.php:370
6831
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:411
6832
+ #: includes/elementor/widgets/recent-posts-land-style.php:167
6833
+ #: includes/elementor/widgets/recent-posts-masonry.php:235
6834
+ #: includes/elementor/widgets/recent-posts-timeline.php:222
6835
+ #: includes/elementor/widgets/recent-products.php:254
6836
+ #: includes/elementor/widgets/staff.php:250
6837
+ #: includes/elementor/widgets/text.php:193
6838
+ msgid "Placeholder color while loading image"
6839
+ msgstr ""
6840
+
6841
+ #: includes/elementor/widgets/image.php:382 includes/elements/image.php:263
6842
+ msgid "Tilt Effect"
6843
+ msgstr ""
6844
+
6845
+ #: includes/elementor/widgets/image.php:383 includes/elements/image.php:264
6846
+ msgid "Adds tilt effect to the image."
6847
+ msgstr ""
6848
+
6849
+ #: includes/elementor/widgets/image.php:396 includes/elements/image.php:275
6850
+ msgid "Colorized Shadow"
6851
+ msgstr ""
6852
+
6853
+ #: includes/elementor/widgets/image.php:397 includes/elements/image.php:276
6854
+ msgid ""
6855
+ "Adds colorized shadow to the image. Note: This feature is not available when "
6856
+ "image hover is active."
6857
+ msgstr ""
6858
+
6859
+ #: includes/elementor/widgets/image.php:591
6860
+ #, fuzzy
6861
+ msgid "Vertical Move"
6862
+ msgstr "عمودی"
6863
+
6864
+ #: includes/elementor/widgets/image.php:662
6865
+ #: includes/elementor/widgets/quote.php:186
6866
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1576
6867
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1713
6868
+ #: includes/elementor/widgets/recent-posts-masonry.php:1117
6869
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
6870
+ #: includes/elementor/widgets/theme-elements/modern-search.php:586
6871
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:260
6872
+ #, fuzzy
6873
+ msgid "Text Color"
6874
+ msgstr "شمای رنگ متن"
6875
+
6876
+ #: includes/elementor/widgets/mailchimp.php:52
6877
+ #: includes/elementor/widgets/mailchimp.php:791
6878
+ msgid "MailChimp"
6879
+ msgstr ""
6880
+
6881
+ #: includes/elementor/widgets/mailchimp.php:80
6882
+ msgid "Select the form to show"
6883
+ msgstr ""
6884
+
6885
+ #: includes/elementor/widgets/mailchimp.php:125
6886
+ #: includes/elementor/widgets/theme-elements/search.php:105
6887
+ #: includes/elementor/widgets/theme-elements/search.php:261
6888
+ msgid "Form"
6889
+ msgstr ""
6890
+
6891
+ #: includes/elementor/widgets/mailchimp.php:132
6892
+ #, fuzzy
6893
+ msgid "Form Type"
6894
+ msgstr "نوع"
6895
+
6896
+ #: includes/elementor/widgets/mailchimp.php:136
6897
+ #, fuzzy
6898
+ msgid "Defaults"
6899
+ msgstr "پیش فرض"
6900
+
6901
+ #: includes/elementor/widgets/mailchimp.php:145
6902
+ msgid "MailChimp Sign-Up Form"
6903
+ msgstr ""
6904
+
6905
+ #: includes/elementor/widgets/mailchimp.php:159
6906
+ #, fuzzy
6907
+ msgid "Custom Form"
6908
+ msgstr "رنگ سفارشی"
6909
+
6910
+ #: includes/elementor/widgets/mailchimp.php:162
6911
+ msgid "Enter your custom form markup"
6912
+ msgstr ""
6913
+
6914
+ #: includes/elementor/widgets/mailchimp.php:178
6915
+ msgid "Input"
6916
+ msgstr ""
6917
+
6918
+ #: includes/elementor/widgets/mailchimp.php:405
6919
+ msgid "Input Placeholder Text"
6920
+ msgstr ""
6921
+
6922
+ #: includes/elementor/widgets/mailchimp.php:436
6923
+ msgid "Subscribe Button"
6924
+ msgstr ""
6925
+
6926
+ #: includes/elementor/widgets/mailchimp.php:674
6927
+ #, fuzzy
6928
+ msgid "Form Container"
6929
+ msgstr "دربرگیرنده"
6930
+
6931
+ #: includes/elementor/widgets/modern-button.php:53
6932
+ #, fuzzy
6933
+ msgid "Modern Button"
6934
+ msgstr "مدرن"
6935
+
6936
+ #: includes/elementor/widgets/modern-button.php:110
6937
+ msgid "Click Here"
6938
+ msgstr ""
6939
+
6940
+ #: includes/elementor/widgets/modern-button.php:135
6941
+ #, fuzzy
6942
+ msgid "Text Vertical Align"
6943
+ msgstr "تراز متن"
6944
+
6945
+ #: includes/elementor/widgets/modern-button.php:196
6946
+ #: public/templates/vcomposer/auxin_vc_extendes.php:34
6947
+ msgid "Justified"
6948
+ msgstr "تعدیل شده"
6949
+
6950
+ #: includes/elementor/widgets/modern-button.php:224
6951
+ msgid "To use this option, the above link option should be a video"
6952
+ msgstr ""
6953
+
6954
+ #: includes/elementor/widgets/modern-button.php:236
6955
+ #, fuzzy
6956
+ msgid "Display Icon"
6957
+ msgstr "نمایش زبانه دیدگاه ها"
6958
+
6959
+ #: includes/elementor/widgets/modern-button.php:326
6960
+ msgid "black"
6961
+ msgstr ""
6962
+
6963
+ #: includes/elementor/widgets/modern-button.php:330
6964
+ #, fuzzy
6965
+ msgid "White"
6966
+ msgstr "فاصله خالی"
6967
+
6968
+ #: includes/elementor/widgets/modern-button.php:334
6969
+ #, fuzzy
6970
+ msgid "Ball Blue"
6971
+ msgstr "آبی"
6972
+
6973
+ #: includes/elementor/widgets/modern-button.php:338
6974
+ #, fuzzy
6975
+ msgid "Mikado Yellow"
6976
+ msgstr "زرد"
6977
+
6978
+ #: includes/elementor/widgets/modern-button.php:342
6979
+ msgid "Carmine Pink"
6980
+ msgstr ""
6981
+
6982
+ #: includes/elementor/widgets/modern-button.php:805
6983
+ msgid "Below"
6984
+ msgstr ""
6985
+
6986
+ #: includes/elementor/widgets/quote.php:50
6987
+ #, fuzzy
6988
+ msgid "Blockquote"
6989
+ msgstr "نقل قول"
6990
+
6991
+ #: includes/elementor/widgets/quote.php:106
6992
+ #, fuzzy
6993
+ msgid "Enter a text as a quote content."
6994
+ msgstr "متنی را به عنوان محتوا وارد کنید."
6995
+
6996
+ #: includes/elementor/widgets/quote.php:108
6997
+ #, fuzzy
6998
+ msgid "Type your description here"
6999
+ msgstr "توضیحات المان"
7000
+
7001
+ #: includes/elementor/widgets/quote.php:156 includes/elements/quote.php:103
7002
+ #, fuzzy
7003
+ msgid "Text alignment"
7004
+ msgstr "تراز متن"
7005
+
7006
+ #: includes/elementor/widgets/quote.php:211
7007
+ #, fuzzy
7008
+ msgid "Quote Symbol"
7009
+ msgstr "نقل قول معمولی"
7010
+
7011
+ #: includes/elementor/widgets/quote.php:219 includes/elements/quote.php:142
7012
+ msgid "Insert quote symbol"
7013
+ msgstr "افزودن نماد نقل قول"
7014
+
7015
+ #: includes/elementor/widgets/quote.php:230
7016
+ #, fuzzy
7017
+ msgid "Quote symbol color"
7018
+ msgstr "رنگ سفارشی"
7019
+
7020
+ #: includes/elementor/widgets/quote.php:256
7021
+ #, fuzzy
7022
+ msgid "Text indent"
7023
+ msgstr "تراز متن"
7024
+
7025
+ #: includes/elementor/widgets/quote.php:305
7026
+ msgid "Block"
7027
+ msgstr ""
7028
+
7029
+ #: includes/elementor/widgets/quote.php:322
7030
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:200
7031
+ #: includes/elements/instagram-feed.php:224
7032
+ #: includes/elements/recent-posts-grid-carousel.php:579
7033
+ msgid "Background color"
7034
+ msgstr "رنگ پس زمینه"
7035
+
7036
+ #: includes/elementor/widgets/recent-comments.php:49
7037
+ msgid "Recent Commented Posts"
7038
+ msgstr ""
7039
+
7040
+ #: includes/elementor/widgets/recent-comments.php:78
7041
+ msgid "All Post Types"
7042
+ msgstr ""
7043
+
7044
+ #: includes/elementor/widgets/recent-comments.php:130
7045
+ #: includes/elementor/widgets/theme-elements/modern-search.php:143
7046
+ #, fuzzy
7047
+ msgid "Post Types"
7048
+ msgstr "نوشته ها"
7049
+
7050
+ #: includes/elementor/widgets/recent-comments.php:141
7051
+ #, fuzzy
7052
+ msgid "Number of comments to show"
7053
+ msgstr "تعداد نوشته ها برای نمایش"
7054
+
7055
+ #: includes/elementor/widgets/recent-comments.php:153
7056
+ #, fuzzy
7057
+ msgid "Display info"
7058
+ msgstr "نمایش تصویر"
7059
+
7060
+ #: includes/elementor/widgets/recent-comments.php:232
7061
+ #: includes/elementor/widgets/recent-comments.php:315
7062
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
7063
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
7064
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
7065
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
7066
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
7067
+ #: includes/elementor/widgets/recent-posts-land-style.php:651
7068
+ #: includes/elementor/widgets/recent-posts-land-style.php:755
7069
+ #: includes/elementor/widgets/recent-posts-land-style.php:837
7070
+ #: includes/elementor/widgets/recent-posts-land-style.php:923
7071
+ #: includes/elementor/widgets/recent-posts-masonry.php:780
7072
+ #: includes/elementor/widgets/recent-posts-masonry.php:884
7073
+ #: includes/elementor/widgets/recent-posts-masonry.php:966
7074
+ #: includes/elementor/widgets/recent-posts-masonry.php:1052
7075
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:554
7076
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:658
7077
+ #: includes/elementor/widgets/recent-posts-tiles.php:495
7078
+ #: includes/elementor/widgets/recent-posts-tiles.php:599
7079
+ #: includes/elementor/widgets/recent-posts-timeline.php:677
7080
+ #: includes/elementor/widgets/recent-posts-timeline.php:781
7081
+ #: includes/elementor/widgets/recent-posts-timeline.php:863
7082
+ #: includes/elementor/widgets/recent-posts-timeline.php:949
7083
+ #: includes/elementor/widgets/recent-products.php:684
7084
+ #: includes/elementor/widgets/staff.php:518
7085
+ #: includes/elementor/widgets/staff.php:580
7086
+ #: includes/elementor/widgets/staff.php:642
7087
+ #: includes/elementor/widgets/testimonial.php:553
7088
+ #: includes/elementor/widgets/testimonial.php:774
7089
+ #: includes/elementor/widgets/text.php:754
7090
+ #: includes/elementor/widgets/text.php:867
7091
+ #: includes/elementor/widgets/text.php:990
7092
+ #, fuzzy
7093
+ msgid "Bottom space"
7094
+ msgstr "فضای بین ستون ها"
7095
+
7096
+ #: includes/elementor/widgets/recent-comments.php:254
7097
+ #, fuzzy
7098
+ msgid "Meta Info"
7099
+ msgstr "اطلاعات"
7100
+
7101
+ #: includes/elementor/widgets/recent-comments.php:331
7102
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
7103
+ #: includes/elementor/widgets/recent-posts-land-style.php:774
7104
+ #: includes/elementor/widgets/recent-posts-masonry.php:903
7105
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
7106
+ #: includes/elementor/widgets/recent-posts-tiles.php:618
7107
+ #: includes/elementor/widgets/recent-posts-timeline.php:800
7108
+ #, fuzzy
7109
+ msgid "Space between metas"
7110
+ msgstr "فاصله بین اسلایدها"
7111
+
7112
+ #: includes/elementor/widgets/recent-comments.php:408
7113
+ msgid "No comments found!"
7114
+ msgstr ""
7115
+
7116
+ #: includes/elementor/widgets/recent-comments.php:425
7117
+ msgid "Ago"
7118
+ msgstr ""
7119
+
7120
+ #: includes/elementor/widgets/recent-comments.php:428
7121
+ msgid "By"
7122
+ msgstr ""
7123
+
7124
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:52
7125
+ #, fuzzy
7126
+ msgid "Grid & Carousel Posts"
7127
+ msgstr "[فلوکس] شبکه و گردونه نوشته های اخیر"
7128
+
7129
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:134
7130
+ #: includes/elementor/widgets/recent-posts-masonry.php:134
7131
+ #: includes/elementor/widgets/recent-products.php:143
7132
+ msgid "Inherited from larger"
7133
+ msgstr ""
7134
+
7135
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:149
7136
+ #: includes/elements/recent-posts-grid-carousel.php:529
7137
+ #, fuzzy
7138
+ msgid "Display items as"
7139
+ msgstr "نمایش آیتم ها در"
7140
+
7141
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:154
7142
+ #: includes/elements/recent-posts-grid-carousel.php:538
7143
+ msgid "Grid - Table Style"
7144
+ msgstr ""
7145
+
7146
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:155
7147
+ #: includes/elements/recent-posts-grid-carousel.php:539
7148
+ #, fuzzy
7149
+ msgid "Grid - Modern Style"
7150
+ msgstr "ظاهر جداکننده"
7151
+
7152
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:156
7153
+ msgid "Flip"
7154
+ msgstr ""
7155
+
7156
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:157
7157
+ #: includes/elements/recent-posts-grid-carousel.php:540
7158
+ msgid "Carousel - Modern Style"
7159
+ msgstr ""
7160
+
7161
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:158
7162
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:193
7163
+ #: includes/elements/recent-posts-grid-carousel.php:541
7164
+ #: includes/elements/recent-posts-grid-carousel.php:630
7165
+ #: includes/elements/recent-posts-grid-carousel.php:652
7166
+ #: includes/elements/recent-posts-grid-carousel.php:672
7167
+ #: includes/elements/recent-posts-grid-carousel.php:692
7168
+ #: includes/elements/recent-posts-grid-carousel.php:707
7169
+ #: includes/elements/recent-posts-grid-carousel.php:723
7170
+ #: includes/elements/recent-posts-grid-carousel.php:740
7171
+ #: includes/elements/recent-posts-tiles-carousel.php:421
7172
+ #: includes/elements/recent-posts-tiles-carousel.php:443
7173
+ #: includes/elements/recent-posts-tiles-carousel.php:458
7174
+ #: includes/elements/recent-posts-tiles-carousel.php:474
7175
+ #: includes/elements/recent-posts-tiles-carousel.php:491
7176
+ #, fuzzy
7177
+ msgid "Carousel"
7178
+ msgstr "اکسین گردونه"
7179
+
7180
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:166
7181
+ #: includes/elements/recent-posts-grid-carousel.php:595
7182
+ msgid "Column space"
7183
+ msgstr "فضای بین ستون ها"
7184
+
7185
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:167
7186
+ #: includes/elements/recent-posts-grid-carousel.php:596
7187
+ #, fuzzy
7188
+ msgid "Specifies horizontal space between items (pixel)."
7189
+ msgstr "فضای خالی بین تصاویر را مشخص می کند."
7190
+
7191
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:179
7192
+ #: includes/elementor/widgets/recent-posts-masonry.php:149
7193
+ #: includes/elements/recent-posts-grid-carousel.php:550
7194
+ msgid "Content layout"
7195
+ msgstr "چیدمان محتوا"
7196
+
7197
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:183
7198
+ #: includes/elementor/widgets/recent-posts-masonry.php:153
7199
+ #: includes/elements/recent-posts-grid-carousel.php:558
7200
+ msgid "Full Content"
7201
+ msgstr "محتوای کامل"
7202
+
7203
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:184
7204
+ #: includes/elementor/widgets/recent-posts-masonry.php:154
7205
+ #: includes/elements/recent-posts-grid-carousel.php:559
7206
+ msgid "Boxed Content"
7207
+ msgstr "محتوای جعبه ای"
7208
+
7209
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:195
7210
+ #: includes/elements/recent-posts-grid-carousel.php:571
7211
+ msgid "Mouse Over Effect"
7212
+ msgstr ""
7213
+
7214
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:201
7215
+ #: includes/elements/recent-posts-grid-carousel.php:580
7216
+ #, fuzzy
7217
+ msgid "Cover image"
7218
+ msgstr "تصویر پوستر"
7219
+
7220
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:202
7221
+ #: includes/elements/recent-posts-grid-carousel.php:581
7222
+ #, fuzzy
7223
+ msgid "Cover image or background color"
7224
+ msgstr "رنگ پس زمینه دلخواه"
7225
+
7226
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:203
7227
+ #: includes/elements/recent-posts-grid-carousel.php:582
7228
+ msgid "Nothing"
7229
+ msgstr ""
7230
+
7231
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:214
7232
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:237
7233
+ #: includes/elements/recent-posts-grid-carousel.php:612
7234
+ #: includes/elements/recent-posts-tiles-carousel.php:403
7235
+ msgid "Navigation type"
7236
+ msgstr "نوع ناوبری"
7237
+
7238
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:218
7239
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:241
7240
+ #: includes/elements/recent-posts-grid-carousel.php:620
7241
+ #: includes/elements/recent-posts-tiles-carousel.php:411
7242
+ msgid "Move per column"
7243
+ msgstr "حرکت در هر ستون"
7244
+
7245
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:219
7246
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:242
7247
+ #: includes/elements/recent-posts-grid-carousel.php:621
7248
+ #: includes/elements/recent-posts-tiles-carousel.php:412
7249
+ msgid "Move per page"
7250
+ msgstr "حرکت در هر صفحه"
7251
+
7252
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:220
7253
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:243
7254
+ #: includes/elements/recent-posts-grid-carousel.php:622
7255
+ #: includes/elements/recent-posts-tiles-carousel.php:413
7256
+ msgid "Smooth scroll"
7257
+ msgstr "اسکرول آرام"
7258
+
7259
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:236
7260
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:206
7261
+ #: includes/elements/recent-posts-grid-carousel.php:642
7262
+ #: includes/elements/recent-posts-tiles-carousel.php:433
7263
+ msgid "Arrows"
7264
+ msgstr "فلش ها"
7265
+
7266
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:237
7267
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:207
7268
+ #: includes/elements/recent-posts-grid-carousel.php:643
7269
+ #: includes/elements/recent-posts-tiles-carousel.php:434
7270
+ msgid "Bullets"
7271
+ msgstr "گلوله ها"
7272
+
7273
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:248
7274
+ #: includes/elements/recent-posts-grid-carousel.php:656
7275
+ #, fuzzy
7276
+ msgid "Control Position"
7277
+ msgstr "موقعیت"
7278
+
7279
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:253
7280
+ #: includes/elements/recent-posts-grid-carousel.php:664
7281
+ msgid "Side"
7282
+ msgstr ""
7283
+
7284
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:264
7285
+ #: includes/elements/recent-posts-grid-carousel.php:676
7286
+ #, fuzzy
7287
+ msgid "Control Skin"
7288
+ msgstr "نمای صفحه ورود"
7289
+
7290
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:268
7291
+ #: includes/elements/recent-posts-grid-carousel.php:683
7292
+ #, fuzzy
7293
+ msgid "boxed"
7294
+ msgstr "جعبه ای"
7295
+
7296
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:280
7297
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:251
7298
+ #: includes/elementor/widgets/touch-slider.php:140
7299
+ #: includes/elements/recent-posts-grid-carousel.php:696
7300
+ #: includes/elements/recent-posts-tiles-carousel.php:447
7301
+ msgid "Loop navigation"
7302
+ msgstr "ناوبری چرخه ای"
7303
+
7304
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:295
7305
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:263
7306
+ #: includes/elements/recent-posts-grid-carousel.php:711
7307
+ #: includes/elements/recent-posts-tiles-carousel.php:462
7308
+ msgid "Autoplay carousel"
7309
+ msgstr "نمایش خودکار گردونه"
7310
+
7311
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:310
7312
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:275
7313
+ #: includes/elementor/widgets/touch-slider.php:164
7314
+ #: includes/elements/recent-posts-grid-carousel.php:727
7315
+ #: includes/elements/recent-posts-tiles-carousel.php:478
7316
+ msgid "Autoplay delay"
7317
+ msgstr "تاخیر شروع خودکار"
7318
+
7319
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:311
7320
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:276
7321
+ #: includes/elementor/widgets/touch-slider.php:165
7322
+ #: includes/elements/recent-posts-grid-carousel.php:728
7323
+ #: includes/elements/recent-posts-tiles-carousel.php:479
7324
+ msgid "Specifies the delay between auto-forwarding in seconds."
7325
+ msgstr "تاخیر بین حرکت های رو به جلو را بر حسب ثانیه مشخص می کند."
7326
+
7327
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:329
7328
+ #: includes/elementor/widgets/recent-posts-land-style.php:116
7329
+ #: includes/elementor/widgets/recent-posts-masonry.php:168
7330
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:291
7331
+ #: includes/elementor/widgets/recent-posts-tiles.php:193
7332
+ #: includes/elementor/widgets/recent-posts-timeline.php:155
7333
+ #: includes/elementor/widgets/recent-products.php:177
7334
+ #: includes/elementor/widgets/search.php:95
7335
+ #: includes/elementor/widgets/touch-slider.php:120
7336
+ #, fuzzy
7337
+ msgid "Display"
7338
+ msgstr "نوع نمایش"
7339
+
7340
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:337
7341
+ #: includes/elementor/widgets/recent-posts-land-style.php:124
7342
+ #: includes/elementor/widgets/recent-posts-masonry.php:176
7343
+ #: includes/elementor/widgets/recent-posts-timeline.php:163
7344
+ #: includes/elementor/widgets/recent-products.php:209
7345
+ #: includes/elements/recent-posts-grid-carousel.php:274
7346
+ #: includes/elements/recent-posts-land-style.php:261
7347
+ #: includes/elements/recent-posts-masonry.php:241
7348
+ #: includes/elements/recent-posts-timeline.php:313
7349
+ msgid "Display post media (image, video, etc)"
7350
+ msgstr "نمایش رسانه های نوشته (تصویر، ویدیو، غیره)"
7351
+
7352
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:351
7353
+ #, fuzzy
7354
+ msgid "Media size"
7355
+ msgstr "اندازه تصویر"
7356
+
7357
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:364
7358
+ msgid "Ignore post formats media"
7359
+ msgstr ""
7360
+
7361
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:423
7362
+ #: includes/elementor/widgets/recent-posts-land-style.php:179
7363
+ #: includes/elementor/widgets/recent-posts-masonry.php:247
7364
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
7365
+ #: includes/elementor/widgets/recent-posts-tiles.php:201
7366
+ #: includes/elementor/widgets/recent-posts-timeline.php:234
7367
+ #: includes/elements/recent-posts-grid-carousel.php:288
7368
+ #: includes/elements/recent-posts-land-style.php:275
7369
+ #: includes/elements/recent-posts-masonry.php:255
7370
+ #: includes/elements/recent-posts-timeline.php:327
7371
+ msgid "Display post title"
7372
+ msgstr "نمایش عنوان پست"
7373
+
7374
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:435
7375
+ #, fuzzy
7376
+ msgid "Title Trim"
7377
+ msgstr "لینک عنوان"
7378
+
7379
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:447
7380
+ #: includes/elementor/widgets/recent-posts-land-style.php:191
7381
+ #: includes/elementor/widgets/recent-posts-masonry.php:259
7382
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
7383
+ #: includes/elementor/widgets/recent-posts-tiles.php:213
7384
+ #: includes/elements/recent-posts-grid-carousel.php:301
7385
+ #, fuzzy
7386
+ msgid "Display post info"
7387
+ msgstr "نمایش عنوان پست"
7388
+
7389
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:459
7390
+ #, fuzzy
7391
+ msgid "Display format icon"
7392
+ msgstr "نمایش آیتم ها در"
7393
+
7394
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:471
7395
+ #: includes/elementor/widgets/recent-posts-masonry.php:271
7396
+ #: includes/elements/recent-posts-grid-carousel.php:325
7397
+ #, fuzzy
7398
+ msgid "Post info position"
7399
+ msgstr "موقعیت تصویر یا شکلک"
7400
+
7401
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:488
7402
+ #: includes/elementor/widgets/recent-posts-land-style.php:219
7403
+ #: includes/elementor/widgets/recent-posts-masonry.php:287
7404
+ #: includes/elementor/widgets/recent-products.php:278
7405
+ #: includes/elementor/widgets/theme-elements/modern-search.php:197
7406
+ #: includes/elements/recent-posts-grid-carousel.php:346
7407
+ #: includes/elements/recent-products.php:261
7408
+ #, fuzzy
7409
+ msgid "Display Categories"
7410
+ msgstr "همه دسته ها"
7411
+
7412
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:503
7413
+ #, fuzzy
7414
+ msgid "Display Category Badge"
7415
+ msgstr "نمایش نویسنده یا ادامه نوشته"
7416
+
7417
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:515
7418
+ #: includes/elementor/widgets/recent-posts-land-style.php:234
7419
+ #: includes/elementor/widgets/recent-posts-masonry.php:302
7420
+ #: includes/elements/recent-posts-grid-carousel.php:363
7421
+ #, fuzzy
7422
+ msgid "Display Date"
7423
+ msgstr "نمایش تصویر"
7424
+
7425
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:530
7426
+ #: includes/elementor/widgets/recent-posts-land-style.php:203
7427
+ #: includes/elementor/widgets/recent-posts-masonry.php:396
7428
+ #: includes/elementor/widgets/recent-posts-timeline.php:325
7429
+ #, fuzzy
7430
+ msgid "Display Author in Header"
7431
+ msgstr "نمایش نویسنده یا ادامه نوشته"
7432
+
7433
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:531
7434
+ #: includes/elementor/widgets/recent-posts-land-style.php:204
7435
+ #: includes/elementor/widgets/recent-posts-masonry.php:397
7436
+ #: includes/elementor/widgets/recent-posts-timeline.php:326
7437
+ #, fuzzy
7438
+ msgid "Enable it to display author name in header"
7439
+ msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
7440
+
7441
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:543
7442
+ #: includes/elementor/widgets/recent-posts-masonry.php:317
7443
+ #: includes/elements/recent-posts-grid-carousel.php:313
7444
+ #, fuzzy
7445
+ msgid "Display post content"
7446
+ msgstr "نمایش تاریخ نوشته"
7447
+
7448
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:555
7449
+ #: includes/elementor/widgets/recent-posts-land-style.php:249
7450
+ #, fuzzy
7451
+ msgid "Display Comments Number"
7452
+ msgstr "نمایش زبانه دیدگاه ها"
7453
+
7454
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:567
7455
+ #: includes/elementor/widgets/recent-posts-land-style.php:261
7456
+ #: includes/elementor/widgets/recent-posts-masonry.php:329
7457
+ #: includes/elementor/widgets/recent-posts-timeline.php:258
7458
+ #: includes/elements/recent-posts-grid-carousel.php:380
7459
+ #: includes/elements/recent-posts-land-style.php:300
7460
+ #: includes/elements/recent-posts-masonry.php:280
7461
+ msgid "Display like button"
7462
+ msgstr "نمایش دکمه لایک"
7463
+
7464
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:579
7465
+ #: includes/elementor/widgets/recent-posts-land-style.php:273
7466
+ #: includes/elementor/widgets/recent-posts-masonry.php:353
7467
+ #: includes/elementor/widgets/recent-posts-timeline.php:282
7468
+ #: includes/elements/popular-posts-widget.php:146
7469
+ #: includes/elements/recent-posts-timeline.php:352
7470
+ #: includes/elements/recent-posts-widget.php:106
7471
+ msgid "Display excerpt"
7472
+ msgstr "نمایش خلاصه"
7473
+
7474
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:580
7475
+ #: includes/elementor/widgets/recent-posts-land-style.php:274
7476
+ #: includes/elementor/widgets/recent-posts-masonry.php:354
7477
+ #: includes/elementor/widgets/recent-posts-timeline.php:283
7478
+ #: includes/elements/popular-posts-widget.php:147
7479
+ #: includes/elements/recent-posts-timeline.php:353
7480
+ #: includes/elements/recent-posts-widget.php:107
7481
+ msgid "Enable it to display post summary instead of full content."
7482
+ msgstr "برای نمایش خلاصه نوشته به جای محتوای کامل این گزینه را فعال کنید."
7483
+
7484
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:592
7485
+ #: includes/elementor/widgets/recent-posts-land-style.php:286
7486
+ #: includes/elementor/widgets/recent-posts-masonry.php:366
7487
+ #: includes/elementor/widgets/recent-posts-timeline.php:295
7488
+ #: includes/elements/popular-posts-widget.php:175
7489
+ #: includes/elements/recent-posts-grid-carousel.php:425
7490
+ #: includes/elements/recent-posts-land-style.php:345
7491
+ #: includes/elements/recent-posts-masonry.php:325
7492
+ #: includes/elements/recent-posts-timeline.php:367
7493
+ #: includes/elements/recent-posts-widget.php:135
7494
+ msgid "Excerpt length"
7495
+ msgstr "طول خلاصه"
7496
+
7497
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:593
7498
+ #: includes/elementor/widgets/recent-posts-land-style.php:287
7499
+ #: includes/elementor/widgets/recent-posts-masonry.php:367
7500
+ #: includes/elementor/widgets/recent-posts-timeline.php:296
7501
+ #: includes/elements/recent-posts-grid-carousel.php:426
7502
+ #: includes/elements/recent-posts-land-style.php:346
7503
+ #: includes/elements/recent-posts-masonry.php:326
7504
+ #: includes/elements/recent-posts-timeline.php:368
7505
+ msgid "Specify summary content in character."
7506
+ msgstr "خلاصه نوشته را برحسب کاراکتر مشخص می کند."
7507
+
7508
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:605
7509
+ #: includes/elementor/widgets/recent-posts-land-style.php:299
7510
+ #: includes/elementor/widgets/recent-posts-masonry.php:379
7511
+ #: includes/elementor/widgets/recent-posts-timeline.php:308
7512
+ #: includes/elements/recent-posts-grid-carousel.php:439
7513
+ #: includes/elements/recent-posts-land-style.php:363
7514
+ #: includes/elements/recent-posts-masonry.php:339
7515
+ #: includes/elements/recent-posts-timeline.php:384
7516
+ msgid "Display author or read more"
7517
+ msgstr "نمایش نویسنده یا ادامه نوشته"
7518
+
7519
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:607
7520
+ #: includes/elementor/widgets/recent-posts-land-style.php:301
7521
+ #: includes/elementor/widgets/recent-posts-masonry.php:381
7522
+ #: includes/elementor/widgets/recent-posts-timeline.php:310
7523
+ #: includes/elements/recent-posts-grid-carousel.php:440
7524
+ #: includes/elements/recent-posts-land-style.php:364
7525
+ #: includes/elements/recent-posts-masonry.php:340
7526
+ #: includes/elements/recent-posts-timeline.php:385
7527
+ msgid "Specifies whether to show author or read more on each post."
7528
+ msgstr "مشخص می کند نویسنده یا بیشتر بخوانید در هر نوشته نشان داده شود یا خیر."
7529
+
7530
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:611
7531
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
7532
+ #: includes/elementor/widgets/recent-posts-land-style.php:305
7533
+ #: includes/elementor/widgets/recent-posts-masonry.php:385
7534
+ #: includes/elementor/widgets/recent-posts-masonry.php:1208
7535
+ #: includes/elementor/widgets/recent-posts-timeline.php:314
7536
+ #: includes/elementor/widgets/text.php:300
7537
+ #: includes/elements/recent-posts-grid-carousel.php:447
7538
+ #: includes/elements/recent-posts-land-style.php:371
7539
+ #: includes/elements/recent-posts-masonry.php:347
7540
+ #: includes/elements/recent-posts-timeline.php:392
7541
+ msgid "Read More"
7542
+ msgstr "بیشتر بخوانید"
7543
+
7544
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:622
7545
+ #: includes/elementor/widgets/recent-posts-land-style.php:315
7546
+ #: includes/elementor/widgets/recent-posts-masonry.php:412
7547
+ #: includes/elementor/widgets/recent-posts-timeline.php:341
7548
+ #, fuzzy
7549
+ msgid "Display Author in Footer"
7550
+ msgstr "نمایش نویسنده یا ادامه نوشته"
7551
+
7552
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:623
7553
+ #: includes/elementor/widgets/recent-posts-land-style.php:316
7554
+ #: includes/elementor/widgets/recent-posts-masonry.php:413
7555
+ #: includes/elementor/widgets/recent-posts-timeline.php:342
7556
+ #, fuzzy
7557
+ msgid "Enable it to display author name in footer"
7558
+ msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
7559
+
7560
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:638
7561
+ #, fuzzy
7562
+ msgid "Meta info position"
7563
+ msgstr "موقعیت تصویر یا شکلک"
7564
+
7565
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:660
7566
+ #: includes/elementor/widgets/recent-posts-land-style.php:337
7567
+ #: includes/elementor/widgets/recent-posts-masonry.php:434
7568
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
7569
+ #: includes/elementor/widgets/recent-posts-tiles.php:231
7570
+ #: includes/elementor/widgets/recent-posts-timeline.php:363
7571
+ #: includes/elementor/widgets/recent-products.php:308
7572
+ #: includes/elements/latest-posts-slider.php:70
7573
+ #: includes/elements/latest-posts-slider.php:84
7574
+ #: includes/elements/latest-posts-slider.php:98
7575
+ #: includes/elements/latest-posts-slider.php:112
7576
+ #: includes/elements/latest-posts-slider.php:126
7577
+ #: includes/elements/latest-posts-slider.php:150
7578
+ #: includes/elements/latest-posts-slider.php:168
7579
+ #: includes/elements/latest-posts-slider.php:238
7580
+ #: includes/elements/recent-posts-grid-carousel.php:95
7581
+ #: includes/elements/recent-posts-grid-carousel.php:109
7582
+ #: includes/elements/recent-posts-grid-carousel.php:142
7583
+ #: includes/elements/recent-posts-grid-carousel.php:155
7584
+ #: includes/elements/recent-posts-grid-carousel.php:196
7585
+ #: includes/elements/recent-posts-grid-carousel.php:214
7586
+ #: includes/elements/recent-posts-grid-carousel.php:228
7587
+ #: includes/elements/recent-posts-grid-carousel.php:242
7588
+ #: includes/elements/recent-posts-grid-carousel.php:256
7589
+ #: includes/elements/recent-posts-grid-carousel.php:270
7590
+ #: includes/elements/recent-posts-land-style.php:82
7591
+ #: includes/elements/recent-posts-land-style.php:96
7592
+ #: includes/elements/recent-posts-land-style.php:129
7593
+ #: includes/elements/recent-posts-land-style.php:142
7594
+ #: includes/elements/recent-posts-land-style.php:158
7595
+ #: includes/elements/recent-posts-land-style.php:183
7596
+ #: includes/elements/recent-posts-land-style.php:201
7597
+ #: includes/elements/recent-posts-land-style.php:215
7598
+ #: includes/elements/recent-posts-land-style.php:229
7599
+ #: includes/elements/recent-posts-land-style.php:243
7600
+ #: includes/elements/recent-posts-land-style.php:257
7601
+ #: includes/elements/recent-posts-masonry.php:82
7602
+ #: includes/elements/recent-posts-masonry.php:96
7603
+ #: includes/elements/recent-posts-masonry.php:109
7604
+ #: includes/elements/recent-posts-masonry.php:122
7605
+ #: includes/elements/recent-posts-masonry.php:163
7606
+ #: includes/elements/recent-posts-masonry.php:181
7607
+ #: includes/elements/recent-posts-masonry.php:195
7608
+ #: includes/elements/recent-posts-masonry.php:209
7609
+ #: includes/elements/recent-posts-masonry.php:223
7610
+ #: includes/elements/recent-posts-masonry.php:237
7611
+ #: includes/elements/recent-posts-tiles-carousel.php:68
7612
+ #: includes/elements/recent-posts-tiles-carousel.php:82
7613
+ #: includes/elements/recent-posts-tiles-carousel.php:96
7614
+ #: includes/elements/recent-posts-tiles-carousel.php:109
7615
+ #: includes/elements/recent-posts-tiles-carousel.php:122
7616
+ #: includes/elements/recent-posts-tiles-carousel.php:138
7617
+ #: includes/elements/recent-posts-tiles-carousel.php:163
7618
+ #: includes/elements/recent-posts-tiles-carousel.php:181
7619
+ #: includes/elements/recent-posts-tiles-carousel.php:195
7620
+ #: includes/elements/recent-posts-tiles-carousel.php:209
7621
+ #: includes/elements/recent-posts-tiles-carousel.php:223
7622
+ #: includes/elements/recent-posts-tiles-carousel.php:248
7623
+ #: includes/elements/recent-posts-tiles-carousel.php:266
7624
+ #: includes/elements/recent-posts-tiles-carousel.php:280
7625
+ #: includes/elements/recent-posts-tiles.php:81
7626
+ #: includes/elements/recent-posts-tiles.php:95
7627
+ #: includes/elements/recent-posts-tiles.php:108
7628
+ #: includes/elements/recent-posts-tiles.php:121
7629
+ #: includes/elements/recent-posts-tiles.php:137
7630
+ #: includes/elements/recent-posts-tiles.php:193
7631
+ #: includes/elements/recent-posts-tiles.php:211
7632
+ #: includes/elements/recent-posts-tiles.php:225
7633
+ #: includes/elements/recent-posts-tiles.php:239
7634
+ #: includes/elements/recent-posts-tiles.php:253
7635
+ #: includes/elements/recent-posts-tiles.php:278
7636
+ #: includes/elements/recent-posts-tiles.php:296
7637
+ #: includes/elements/recent-posts-tiles.php:310
7638
+ #: includes/elements/recent-posts-timeline.php:76
7639
+ #: includes/elements/recent-posts-timeline.php:90
7640
+ #: includes/elements/recent-posts-timeline.php:103
7641
+ #: includes/elements/recent-posts-timeline.php:116
7642
+ #: includes/elements/recent-posts-timeline.php:132
7643
+ #: includes/elements/recent-posts-timeline.php:188
7644
+ #: includes/elements/recent-posts-timeline.php:206
7645
+ #: includes/elements/recent-posts-timeline.php:220
7646
+ #: includes/elements/recent-posts-timeline.php:234
7647
+ #: includes/elements/recent-posts-timeline.php:248
7648
+ #: includes/elements/recent-posts-timeline.php:262
7649
+ msgid "Query"
7650
+ msgstr ""
7651
+
7652
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:667
7653
+ msgid "Use wp query"
7654
+ msgstr ""
7655
+
7656
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:679
7657
+ #: includes/elementor/widgets/recent-posts-land-style.php:344
7658
+ #: includes/elementor/widgets/recent-posts-masonry.php:441
7659
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
7660
+ #: includes/elementor/widgets/recent-posts-tiles.php:238
7661
+ #: includes/elementor/widgets/recent-posts-timeline.php:370
7662
+ #: includes/elementor/widgets/recent-products.php:315
7663
+ #: includes/elements/popular-posts-widget.php:236
7664
+ #: includes/elements/recent-posts-grid-carousel.php:84
7665
+ #: includes/elements/recent-posts-land-style.php:71
7666
+ #: includes/elements/recent-posts-masonry.php:71
7667
+ #: includes/elements/recent-posts-tiles-carousel.php:57
7668
+ #: includes/elements/recent-posts-tiles.php:70
7669
+ #: includes/elements/recent-posts-timeline.php:65
7670
+ #: includes/elements/recent-posts-widget.php:191
7671
+ #: includes/elements/recent-products.php:70
7672
+ msgid "Categories"
7673
+ msgstr "دسته ها"
7674
+
7675
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:680
7676
+ #: includes/elementor/widgets/recent-posts-land-style.php:345
7677
+ #: includes/elementor/widgets/recent-posts-masonry.php:442
7678
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
7679
+ #: includes/elementor/widgets/recent-posts-tiles.php:239
7680
+ #: includes/elementor/widgets/recent-posts-timeline.php:371
7681
+ #: includes/elementor/widgets/recent-products.php:316
7682
+ #: includes/elements/recent-posts-grid-carousel.php:85
7683
+ #: includes/elements/recent-posts-land-style.php:72
7684
+ #: includes/elements/recent-posts-masonry.php:72
7685
+ #: includes/elements/recent-posts-tiles-carousel.php:58
7686
+ #: includes/elements/recent-posts-tiles.php:71
7687
+ #: includes/elements/recent-posts-timeline.php:66
7688
+ #: includes/elements/recent-posts-widget.php:192
7689
+ #: includes/elements/recent-products.php:71
7690
+ msgid "Specifies a category that you want to show posts from it."
7691
+ msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
7692
+
7693
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:694
7694
+ #: includes/elementor/widgets/recent-posts-land-style.php:356
7695
+ #: includes/elementor/widgets/recent-posts-masonry.php:453
7696
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
7697
+ #: includes/elementor/widgets/recent-posts-tiles.php:250
7698
+ #: includes/elementor/widgets/recent-posts-timeline.php:382
7699
+ #: includes/elementor/widgets/recent-products.php:327
7700
+ #: includes/elements/popular-posts-widget.php:65
7701
+ #: includes/elements/recent-posts-grid-carousel.php:99
7702
+ #: includes/elements/recent-posts-land-style.php:86
7703
+ #: includes/elements/recent-posts-masonry.php:86
7704
+ #: includes/elements/recent-posts-tiles.php:85
7705
+ #: includes/elements/recent-posts-timeline.php:80
7706
+ #: includes/elements/recent-posts-widget.php:71
7707
+ msgid "Number of posts to show"
7708
+ msgstr "تعداد نوشته ها برای نمایش"
7709
+
7710
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:706
7711
+ #: includes/elementor/widgets/recent-posts-land-style.php:368
7712
+ #: includes/elementor/widgets/recent-posts-masonry.php:465
7713
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
7714
+ #: includes/elementor/widgets/recent-posts-tiles.php:262
7715
+ #: includes/elementor/widgets/recent-posts-timeline.php:394
7716
+ #: includes/elementor/widgets/recent-products.php:339
7717
+ #: includes/elements/recent-posts-grid-carousel.php:133
7718
+ #: includes/elements/recent-posts-land-style.php:120
7719
+ #: includes/elements/recent-posts-masonry.php:100
7720
+ #: includes/elements/recent-posts-tiles-carousel.php:100
7721
+ #: includes/elements/recent-posts-tiles.php:99
7722
+ #: includes/elements/recent-posts-timeline.php:94
7723
+ #: includes/elements/recent-products.php:108
7724
+ msgid "Exclude posts without media"
7725
+ msgstr "نادیده گرفتن نوشته های بدون رسانه"
7726
+
7727
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:721
7728
+ #: includes/elements/recent-posts-timeline.php:107
7729
+ #, fuzzy
7730
+ msgid "Exclude all custom post formats"
7731
+ msgstr "نادیده گرفتن فرمت های سفارشی نوشته"
7732
+
7733
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:736
7734
+ #, fuzzy
7735
+ msgid "Include custom post formats"
7736
+ msgstr "نادیده گرفتن فرمت های سفارشی نوشته"
7737
+
7738
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:740
7739
+ msgid "Aside"
7740
+ msgstr ""
7741
+
7742
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:741
7743
+ #: includes/elements/gallery.php:15
7744
+ #, fuzzy
7745
+ msgid "Gallery"
7746
+ msgstr "شناسه گالری"
7747
+
7748
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:744
7749
+ #: includes/elements/quote.php:15
7750
+ #, fuzzy
7751
+ msgid "Quote"
7752
+ msgstr "متن نقل قول"
7753
+
7754
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:745
7755
+ #: includes/elementor/widgets/video.php:94 includes/elements/video.php:15
7756
+ #, fuzzy
7757
+ msgid "Video"
7758
+ msgstr "فایل ویدیو"
7759
+
7760
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:758
7761
+ #: includes/elementor/widgets/recent-posts-land-style.php:392
7762
+ #: includes/elementor/widgets/recent-posts-masonry.php:489
7763
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
7764
+ #: includes/elementor/widgets/recent-posts-tiles.php:286
7765
+ #: includes/elementor/widgets/recent-posts-timeline.php:418
7766
+ #: includes/elementor/widgets/recent-products.php:363
7767
+ #: includes/elements/recent-posts-grid-carousel.php:159
7768
+ #: includes/elements/recent-posts-land-style.php:146
7769
+ #: includes/elements/recent-posts-masonry.php:126
7770
+ #: includes/elements/recent-posts-tiles-carousel.php:126
7771
+ #: includes/elements/recent-posts-tiles.php:125
7772
+ #: includes/elements/recent-posts-timeline.php:120
7773
+ #, fuzzy
7774
+ msgid "Exclude quote and link post formats"
7775
+ msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
7776
+
7777
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:775
7778
+ #: includes/elementor/widgets/recent-posts-land-style.php:407
7779
+ #: includes/elementor/widgets/recent-posts-masonry.php:504
7780
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
7781
+ #: includes/elementor/widgets/recent-posts-tiles.php:301
7782
+ #: includes/elementor/widgets/recent-posts-timeline.php:433
7783
+ #: includes/elementor/widgets/recent-products.php:378
7784
+ #: includes/elements/latest-posts-slider.php:130
7785
+ #: includes/elements/popular-posts-widget.php:189
7786
+ #: includes/elements/recent-posts-grid-carousel.php:175
7787
+ #: includes/elements/recent-posts-land-style.php:162
7788
+ #: includes/elements/recent-posts-masonry.php:142
7789
+ #: includes/elements/recent-posts-tiles-carousel.php:142
7790
+ #: includes/elements/recent-posts-tiles-carousel.php:227
7791
+ #: includes/elements/recent-posts-tiles.php:172
7792
+ #: includes/elements/recent-posts-tiles.php:257
7793
+ #: includes/elements/recent-posts-timeline.php:167
7794
+ #: includes/elements/recent-posts-widget.php:149
7795
+ #: includes/elements/recent-products.php:121
7796
+ msgid "Order by"
7797
+ msgstr "مرتب سازی بر اساس"
7798
+
7799
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:784
7800
+ #: includes/elementor/widgets/recent-posts-land-style.php:416
7801
+ #: includes/elementor/widgets/recent-posts-masonry.php:513
7802
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
7803
+ #: includes/elementor/widgets/recent-posts-tiles.php:310
7804
+ #: includes/elementor/widgets/recent-posts-timeline.php:442
7805
+ #: includes/elementor/widgets/recent-products.php:387
7806
+ #: includes/elements/latest-posts-slider.php:141
7807
+ #: includes/elements/popular-posts-widget.php:202
7808
+ #: includes/elements/recent-posts-grid-carousel.php:188
7809
+ #: includes/elements/recent-posts-land-style.php:175
7810
+ #: includes/elements/recent-posts-masonry.php:155
7811
+ #: includes/elements/recent-posts-tiles-carousel.php:155
7812
+ #: includes/elements/recent-posts-tiles-carousel.php:240
7813
+ #: includes/elements/recent-posts-tiles.php:185
7814
+ #: includes/elements/recent-posts-tiles.php:270
7815
+ #: includes/elements/recent-posts-timeline.php:180
7816
+ #: includes/elements/recent-posts-widget.php:162
7817
+ #: includes/elements/recent-products.php:134
7818
+ msgid "Comments"
7819
+ msgstr "دیدگاه ها"
7820
+
7821
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:785
7822
+ #: includes/elementor/widgets/recent-posts-land-style.php:417
7823
+ #: includes/elementor/widgets/recent-posts-masonry.php:514
7824
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
7825
+ #: includes/elementor/widgets/recent-posts-tiles.php:311
7826
+ #: includes/elementor/widgets/recent-posts-timeline.php:443
7827
+ #: includes/elementor/widgets/recent-products.php:388
7828
+ #: includes/elements/latest-posts-slider.php:142
7829
+ #: includes/elements/popular-posts-widget.php:203
7830
+ #: includes/elements/recent-posts-grid-carousel.php:189
7831
+ #: includes/elements/recent-posts-land-style.php:176
7832
+ #: includes/elements/recent-posts-masonry.php:156
7833
+ #: includes/elements/recent-posts-tiles-carousel.php:156
7834
+ #: includes/elements/recent-posts-tiles-carousel.php:241
7835
+ #: includes/elements/recent-posts-tiles.php:186
7836
+ #: includes/elements/recent-posts-tiles.php:271
7837
+ #: includes/elements/recent-posts-timeline.php:181
7838
+ #: includes/elements/recent-posts-widget.php:163
7839
+ #: includes/elements/recent-products.php:135
7840
+ msgid "Date Modified"
7841
+ msgstr "تاریخ ویرایش"
7842
+
7843
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:787
7844
+ #: includes/elementor/widgets/recent-posts-land-style.php:419
7845
+ #: includes/elementor/widgets/recent-posts-masonry.php:516
7846
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
7847
+ #: includes/elementor/widgets/recent-posts-tiles.php:313
7848
+ #: includes/elementor/widgets/recent-posts-timeline.php:445
7849
+ #: includes/elementor/widgets/recent-products.php:390
7850
+ #: includes/elements/recent-posts-grid-carousel.php:191
7851
+ #: includes/elements/recent-posts-land-style.php:178
7852
+ #: includes/elements/recent-posts-masonry.php:158
7853
+ #: includes/elements/recent-posts-tiles-carousel.php:158
7854
+ #: includes/elements/recent-posts-tiles-carousel.php:243
7855
+ #: includes/elements/recent-posts-tiles.php:188
7856
+ #: includes/elements/recent-posts-tiles.php:273
7857
+ #: includes/elements/recent-posts-timeline.php:183
7858
+ #: includes/elements/recent-products.php:137
7859
+ #, fuzzy
7860
+ msgid "Inserted Post IDs"
7861
+ msgstr "افزودن متای نوشته"
7862
+
7863
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:802
7864
+ #: includes/elementor/widgets/recent-posts-land-style.php:431
7865
+ #: includes/elementor/widgets/recent-posts-masonry.php:528
7866
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
7867
+ #: includes/elementor/widgets/recent-posts-tiles.php:325
7868
+ #: includes/elementor/widgets/recent-posts-timeline.php:457
7869
+ #: includes/elementor/widgets/recent-products.php:402
7870
+ #: includes/elements/latest-posts-slider.php:160
7871
+ #: includes/elements/popular-posts-widget.php:221
7872
+ #: includes/elements/recent-posts-grid-carousel.php:208
7873
+ #: includes/elements/recent-posts-land-style.php:195
7874
+ #: includes/elements/recent-posts-masonry.php:175
7875
+ #: includes/elements/recent-posts-tiles-carousel.php:175
7876
+ #: includes/elements/recent-posts-tiles-carousel.php:260
7877
+ #: includes/elements/recent-posts-tiles.php:205
7878
+ #: includes/elements/recent-posts-tiles.php:290
7879
+ #: includes/elements/recent-posts-timeline.php:200
7880
+ #: includes/elements/recent-posts-widget.php:181
7881
+ #: includes/elements/recent-products.php:154
7882
+ msgid "Descending"
7883
+ msgstr "نزولی"
7884
+
7885
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:803
7886
+ #: includes/elementor/widgets/recent-posts-land-style.php:432
7887
+ #: includes/elementor/widgets/recent-posts-masonry.php:529
7888
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
7889
+ #: includes/elementor/widgets/recent-posts-tiles.php:326
7890
+ #: includes/elementor/widgets/recent-posts-timeline.php:458
7891
+ #: includes/elementor/widgets/recent-products.php:403
7892
+ #: includes/elements/latest-posts-slider.php:161
7893
+ #: includes/elements/popular-posts-widget.php:222
7894
+ #: includes/elements/recent-posts-grid-carousel.php:209
7895
+ #: includes/elements/recent-posts-land-style.php:196
7896
+ #: includes/elements/recent-posts-masonry.php:176
7897
+ #: includes/elements/recent-posts-tiles-carousel.php:176
7898
+ #: includes/elements/recent-posts-tiles-carousel.php:261
7899
+ #: includes/elements/recent-posts-tiles.php:206
7900
+ #: includes/elements/recent-posts-tiles.php:291
7901
+ #: includes/elements/recent-posts-timeline.php:201
7902
+ #: includes/elements/recent-posts-widget.php:182
7903
+ #: includes/elements/recent-products.php:155
7904
+ msgid "Ascending"
7905
+ msgstr "صعودی"
7906
+
7907
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:814
7908
+ #: includes/elementor/widgets/recent-posts-land-style.php:440
7909
+ #: includes/elementor/widgets/recent-posts-masonry.php:537
7910
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
7911
+ #: includes/elementor/widgets/recent-posts-tiles.php:334
7912
+ #: includes/elementor/widgets/recent-posts-timeline.php:466
7913
+ #: includes/elements/recent-posts-grid-carousel.php:218
7914
+ #: includes/elements/recent-posts-land-style.php:205
7915
+ #: includes/elements/recent-posts-masonry.php:185
7916
+ #: includes/elements/recent-posts-tiles-carousel.php:185
7917
+ #: includes/elements/recent-posts-tiles.php:215
7918
+ #: includes/elements/recent-posts-timeline.php:210
7919
+ #, fuzzy
7920
+ msgid "Only posts"
7921
+ msgstr "شامل شدن این نوشته ها"
7922
+
7923
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:815
7924
+ #: includes/elementor/widgets/recent-posts-land-style.php:441
7925
+ #: includes/elementor/widgets/recent-posts-masonry.php:538
7926
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
7927
+ #: includes/elementor/widgets/recent-posts-tiles.php:335
7928
+ #: includes/elementor/widgets/recent-posts-timeline.php:467
7929
+ #: includes/elements/recent-posts-grid-carousel.php:219
7930
+ #: includes/elements/recent-posts-land-style.php:206
7931
+ #: includes/elements/recent-posts-masonry.php:186
7932
+ #: includes/elements/recent-posts-tiles-carousel.php:186
7933
+ #: includes/elements/recent-posts-tiles.php:216
7934
+ #: includes/elements/recent-posts-timeline.php:211
7935
+ msgid ""
7936
+ "If you intend to display ONLY specific posts, you should specify the posts "
7937
+ "here. You have to insert the post IDs that are separated by comma (eg. "
7938
+ "53,34,87,25)."
7939
+ msgstr ""
7940
+
7941
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:826
7942
+ #: includes/elementor/widgets/recent-posts-land-style.php:449
7943
+ #: includes/elementor/widgets/recent-posts-masonry.php:546
7944
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
7945
+ #: includes/elementor/widgets/recent-posts-tiles.php:343
7946
+ #: includes/elementor/widgets/recent-posts-timeline.php:475
7947
+ #: includes/elements/latest-posts-slider.php:102
7948
+ #: includes/elements/recent-posts-grid-carousel.php:232
7949
+ #: includes/elements/recent-posts-land-style.php:219
7950
+ #: includes/elements/recent-posts-masonry.php:199
7951
+ #: includes/elements/recent-posts-tiles-carousel.php:199
7952
+ #: includes/elements/recent-posts-tiles.php:229
7953
+ #: includes/elements/recent-posts-timeline.php:224
7954
+ #: includes/general-hooks.php:1846
7955
+ msgid "Include posts"
7956
+ msgstr "شامل شدن این نوشته ها"
7957
+
7958
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:827
7959
+ #: includes/elementor/widgets/recent-posts-land-style.php:450
7960
+ #: includes/elementor/widgets/recent-posts-masonry.php:547
7961
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
7962
+ #: includes/elementor/widgets/recent-posts-tiles.php:344
7963
+ #: includes/elementor/widgets/recent-posts-timeline.php:476
7964
+ #: includes/elements/recent-posts-grid-carousel.php:233
7965
+ #: includes/elements/recent-posts-land-style.php:220
7966
+ #: includes/elements/recent-posts-masonry.php:200
7967
+ #: includes/elements/recent-posts-tiles-carousel.php:200
7968
+ #: includes/elements/recent-posts-tiles.php:230
7969
+ #: includes/elements/recent-posts-timeline.php:225
7970
+ msgid ""
7971
+ "If you intend to include additional posts, you should specify the posts "
7972
+ "here. You have to insert the Post IDs that are separated by comma (eg. "
7973
+ "53,34,87,25)"
7974
+ msgstr ""
7975
+
7976
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:838
7977
+ #: includes/elementor/widgets/recent-posts-land-style.php:458
7978
+ #: includes/elementor/widgets/recent-posts-masonry.php:555
7979
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
7980
+ #: includes/elementor/widgets/recent-posts-tiles.php:352
7981
+ #: includes/elementor/widgets/recent-posts-timeline.php:484
7982
+ #: includes/elements/latest-posts-slider.php:88
7983
+ #: includes/elements/recent-posts-grid-carousel.php:246
7984
+ #: includes/elements/recent-posts-land-style.php:233
7985
+ #: includes/elements/recent-posts-masonry.php:213
7986
+ #: includes/elements/recent-posts-tiles-carousel.php:213
7987
+ #: includes/elements/recent-posts-tiles.php:243
7988
+ #: includes/elements/recent-posts-timeline.php:238
7989
+ msgid "Exclude posts"
7990
+ msgstr "نادیده گرفتن این نوشته ها"
7991
+
7992
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:839
7993
+ #: includes/elementor/widgets/recent-posts-land-style.php:459
7994
+ #: includes/elementor/widgets/recent-posts-masonry.php:556
7995
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
7996
+ #: includes/elementor/widgets/recent-posts-tiles.php:353
7997
+ #: includes/elementor/widgets/recent-posts-timeline.php:485
7998
+ #: includes/elements/recent-posts-grid-carousel.php:247
7999
+ #: includes/elements/recent-posts-land-style.php:234
8000
+ #: includes/elements/recent-posts-masonry.php:214
8001
+ #: includes/elements/recent-posts-tiles-carousel.php:214
8002
+ #: includes/elements/recent-posts-tiles.php:244
8003
+ #: includes/elements/recent-posts-timeline.php:239
8004
+ msgid ""
8005
+ "If you intend to exclude specific posts from result, you should specify the "
8006
+ "posts here. You have to insert the Post IDs that are separated by comma (eg. "
8007
+ "53,34,87,25)"
8008
+ msgstr ""
8009
+
8010
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:851
8011
+ #: includes/elementor/widgets/recent-posts-land-style.php:468
8012
+ #: includes/elementor/widgets/recent-posts-masonry.php:565
8013
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
8014
+ #: includes/elementor/widgets/recent-posts-tiles.php:362
8015
+ #: includes/elementor/widgets/recent-posts-timeline.php:494
8016
+ #: includes/elementor/widgets/recent-products.php:439
8017
+ #: includes/elements/latest-posts-slider.php:117
8018
+ #: includes/elements/recent-posts-grid-carousel.php:261
8019
+ #: includes/elements/recent-posts-land-style.php:248
8020
+ #: includes/elements/recent-posts-masonry.php:228
8021
+ #: includes/elements/recent-posts-tiles-carousel.php:271
8022
+ #: includes/elements/recent-posts-tiles.php:301
8023
+ #: includes/elements/recent-posts-timeline.php:253
8024
+ msgid "Number of post to displace or pass over."
8025
+ msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
8026
+
8027
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:868
8028
+ #: includes/elementor/widgets/recent-posts-land-style.php:482
8029
+ #: includes/elementor/widgets/recent-posts-masonry.php:579
8030
+ #: includes/elementor/widgets/recent-posts-tiles.php:376
8031
+ #: includes/elementor/widgets/recent-posts-timeline.php:508
8032
+ #, fuzzy
8033
+ msgid "Paginate"
8034
+ msgstr "صفحه بندی"
8035
+
8036
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:875
8037
+ #: includes/elementor/widgets/recent-posts-land-style.php:489
8038
+ #: includes/elementor/widgets/recent-posts-masonry.php:586
8039
+ #: includes/elementor/widgets/recent-posts-tiles.php:383
8040
+ #: includes/elementor/widgets/recent-posts-timeline.php:515
8041
+ #: includes/elements/recent-posts-grid-carousel.php:394
8042
+ #: includes/elements/recent-posts-land-style.php:314
8043
+ #: includes/elements/recent-posts-masonry.php:294
8044
+ #: includes/elements/recent-posts-tiles.php:141
8045
+ #: includes/elements/recent-posts-timeline.php:136
8046
+ #, fuzzy
8047
+ msgid "Load More Type"
8048
+ msgstr "بیشتر بخوانید"
8049
+
8050
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:883
8051
+ #: includes/elementor/widgets/recent-posts-land-style.php:497
8052
+ #: includes/elementor/widgets/recent-posts-masonry.php:594
8053
+ #: includes/elementor/widgets/recent-posts-tiles.php:391
8054
+ #: includes/elementor/widgets/recent-posts-timeline.php:523
8055
+ #: includes/elements/recent-posts-grid-carousel.php:411
8056
+ #: includes/elements/recent-posts-land-style.php:331
8057
+ #: includes/elements/recent-posts-masonry.php:311
8058
+ #: includes/elements/recent-posts-tiles.php:158
8059
+ #: includes/elements/recent-posts-timeline.php:153
8060
+ msgid "Infinite Scroll"
8061
+ msgstr ""
8062
+
8063
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:891
8064
+ #: includes/elementor/widgets/recent-posts-land-style.php:505
8065
+ #: includes/elementor/widgets/recent-posts-masonry.php:602
8066
+ #: includes/elementor/widgets/recent-posts-tiles.php:399
8067
+ #: includes/elementor/widgets/recent-posts-timeline.php:531
8068
+ #: includes/elements/recent-posts-grid-carousel.php:419
8069
+ #: includes/elements/recent-posts-land-style.php:339
8070
+ #: includes/elements/recent-posts-masonry.php:319
8071
+ #: includes/elements/recent-posts-tiles.php:166
8072
+ #: includes/elements/recent-posts-timeline.php:161
8073
+ msgid "Next Prev"
8074
+ msgstr ""
8075
+
8076
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:923
8077
+ #: includes/elementor/widgets/recent-posts-land-style.php:537
8078
+ #: includes/elementor/widgets/recent-posts-timeline.php:563
8079
+ #: includes/elementor/widgets/recent-products.php:508
8080
+ #: includes/elements/gallery.php:300
8081
+ #: includes/elements/recent-posts-grid-carousel.php:121
8082
+ #: includes/elements/recent-posts-land-style.php:108
8083
+ #: includes/elements/recent-posts-timeline.php:301
8084
+ #: includes/elements/recent-products.php:94
8085
+ msgid "Horizontal 4:3"
8086
+ msgstr "افقی 4:3"
8087
+
8088
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:924
8089
+ #: includes/elementor/widgets/recent-posts-land-style.php:538
8090
+ #: includes/elementor/widgets/recent-posts-timeline.php:564
8091
+ #: includes/elementor/widgets/recent-products.php:509
8092
+ #: includes/elements/gallery.php:301
8093
+ #: includes/elements/recent-posts-grid-carousel.php:122
8094
+ #: includes/elements/recent-posts-land-style.php:109
8095
+ #: includes/elements/recent-posts-timeline.php:302
8096
+ #: includes/elements/recent-products.php:95
8097
+ msgid "Horizontal 16:9"
8098
+ msgstr "افقی 16:9"
8099
+
8100
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:925
8101
+ #: includes/elementor/widgets/recent-posts-land-style.php:539
8102
+ #: includes/elementor/widgets/recent-posts-timeline.php:565
8103
+ #: includes/elementor/widgets/recent-products.php:510
8104
+ #: includes/elements/gallery.php:302
8105
+ #: includes/elements/recent-posts-grid-carousel.php:123
8106
+ #: includes/elements/recent-posts-land-style.php:110
8107
+ #: includes/elements/recent-posts-timeline.php:303
8108
+ #: includes/elements/recent-products.php:96
8109
+ msgid "Square 1:1"
8110
+ msgstr "مربع 1:1"
8111
+
8112
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:926
8113
+ #: includes/elementor/widgets/recent-posts-land-style.php:540
8114
+ #: includes/elementor/widgets/recent-posts-timeline.php:566
8115
+ #: includes/elementor/widgets/recent-products.php:511
8116
+ #: includes/elements/gallery.php:303
8117
+ #: includes/elements/recent-posts-grid-carousel.php:124
8118
+ #: includes/elements/recent-posts-land-style.php:111
8119
+ #: includes/elements/recent-posts-timeline.php:304
8120
+ #: includes/elements/recent-products.php:97
8121
+ msgid "Vertical 3:4"
8122
+ msgstr "عمودی 3:4"
8123
+
8124
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:939
8125
+ #, fuzzy
8126
+ msgid "Custom Aspect Ratio"
8127
+ msgstr "نسبت ابعاد تصویر"
8128
+
8129
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
8130
+ #: includes/elementor/widgets/recent-posts-land-style.php:676
8131
+ #: includes/elementor/widgets/recent-posts-masonry.php:805
8132
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
8133
+ #: includes/elementor/widgets/recent-posts-tiles.php:520
8134
+ #: includes/elementor/widgets/recent-posts-timeline.php:702
8135
+ #, fuzzy
8136
+ msgid "Post Info"
8137
+ msgstr "اطلاعات"
8138
+
8139
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
8140
+ #: includes/elementor/widgets/recent-posts-land-style.php:800
8141
+ #: includes/elementor/widgets/recent-posts-masonry.php:929
8142
+ #: includes/elementor/widgets/recent-posts-timeline.php:826
8143
+ #, fuzzy
8144
+ msgid "Excerpt"
8145
+ msgstr "خلاصه"
8146
+
8147
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1319
8148
+ msgid "Badge"
8149
+ msgstr ""
8150
+
8151
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
8152
+ #: includes/elementor/widgets/recent-posts-land-style.php:862
8153
+ #: includes/elementor/widgets/recent-posts-masonry.php:991
8154
+ #: includes/elementor/widgets/recent-posts-timeline.php:888
8155
+ msgid "Meta"
8156
+ msgstr ""
8157
+
8158
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1498
8159
+ msgid "Padding for meta wrapper"
8160
+ msgstr ""
8161
+
8162
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1637
8163
+ #: includes/elementor/widgets/recent-posts-masonry.php:1178
8164
+ #: includes/elementor/widgets/staff.php:862
8165
+ msgid "Padding for main wrapper"
8166
+ msgstr ""
8167
+
8168
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1649
8169
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1774
8170
+ #: includes/elementor/widgets/recent-posts-masonry.php:1190
8171
+ #: includes/elementor/widgets/staff.php:874
8172
+ msgid "Padding for content wrapper"
8173
+ msgstr ""
8174
+
8175
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1666
8176
+ msgid "Flip Wrapper"
8177
+ msgstr ""
8178
+
8179
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1916
8180
+ #: includes/elementor/widgets/recent-posts-masonry.php:1332
8181
+ #, fuzzy
8182
+ msgid "Button Padding"
8183
+ msgstr "اندازه دکمه"
8184
+
8185
+ #: includes/elementor/widgets/recent-posts-land-style.php:48
8186
+ #, fuzzy
8187
+ msgid "Land Style Posts"
8188
+ msgstr "[فلوکس] مطالب اخیر سبک زمین"
8189
+
8190
+ #: includes/elementor/widgets/recent-posts-land-style.php:380
8191
+ #: includes/elementor/widgets/recent-posts-masonry.php:477
8192
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:372
8193
+ #: includes/elementor/widgets/recent-posts-tiles.php:274
8194
+ #: includes/elementor/widgets/recent-posts-timeline.php:406
8195
+ #: includes/elementor/widgets/recent-products.php:351
8196
+ #: includes/elements/recent-posts-grid-carousel.php:146
8197
+ #: includes/elements/recent-posts-land-style.php:133
8198
+ #: includes/elements/recent-posts-masonry.php:113
8199
+ #: includes/elements/recent-posts-tiles-carousel.php:113
8200
+ #: includes/elements/recent-posts-tiles.php:112
8201
+ msgid "Exclude custom post formats"
8202
+ msgstr "نادیده گرفتن فرمت های سفارشی نوشته"
8203
+
8204
+ #: includes/elementor/widgets/recent-posts-masonry.php:52
8205
+ #, fuzzy
8206
+ msgid "Masonry Posts"
8207
+ msgstr "ساختمانی"
8208
+
8209
+ #: includes/elementor/widgets/recent-posts-masonry.php:190
8210
+ #: includes/elementor/widgets/recent-posts-timeline.php:177
8211
+ #, fuzzy
8212
+ msgid "Crop image"
8213
+ msgstr "تصویر دلخواه"
8214
+
8215
+ #: includes/elementor/widgets/recent-posts-masonry.php:341
8216
+ #: includes/elementor/widgets/recent-posts-timeline.php:270
8217
+ #, fuzzy
8218
+ msgid "Display Comment Number"
8219
+ msgstr "نمایش زبانه دیدگاه ها"
8220
+
8221
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:49
8222
+ #, fuzzy
8223
+ msgid "Tiles Carousel Posts"
8224
+ msgstr "اکسین گردونه"
8225
+
8226
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:125
8227
+ #: includes/elementor/widgets/recent-posts-tiles.php:125
8228
+ #: includes/elements/gallery.php:103
8229
+ #: includes/elements/recent-posts-tiles-carousel.php:284
8230
+ #: includes/elements/recent-posts-tiles.php:314
8231
+ #, fuzzy
8232
+ msgid "Post Tile styles"
8233
+ msgstr "ظاهر کاشی مطالب"
8234
+
8235
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:168
8236
+ #: includes/elementor/widgets/recent-posts-tiles.php:168
8237
+ #: includes/elements/recent-posts-tiles-carousel.php:332
8238
+ #: includes/elements/recent-posts-tiles.php:362
8239
+ msgid "Post tile style"
8240
+ msgstr "ظاهر کاشی مطالب"
8241
+
8242
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:173
8243
+ #: includes/elementor/widgets/recent-posts-tiles.php:173
8244
+ #: includes/elements/recent-posts-tiles.php:376
8245
+ msgid "Standard"
8246
+ msgstr "استاندارد"
8247
+
8248
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:215
8249
+ #: includes/elements/recent-posts-tiles-carousel.php:351
8250
+ #, fuzzy
8251
+ msgid "Button Navigation Style"
8252
+ msgstr "نوع ناوبری"
8253
+
8254
+ #: includes/elementor/widgets/recent-posts-tiles.php:49
8255
+ #, fuzzy
8256
+ msgid "Tiles Posts"
8257
+ msgstr "نوشته ها"
8258
+
8259
+ #: includes/elementor/widgets/recent-posts-timeline.php:49
8260
+ #, fuzzy
8261
+ msgid "Timeline Posts"
8262
+ msgstr "[فلوکس] خط زمانی مطالب اخیر"
8263
+
8264
+ #: includes/elementor/widgets/recent-posts-timeline.php:125
8265
+ #: includes/elements/recent-posts-timeline.php:266
8266
+ msgid "Timeline aignment"
8267
+ msgstr "تراز خط زمان"
8268
+
8269
+ #: includes/elementor/widgets/recent-posts-timeline.php:126
8270
+ #: includes/elements/recent-posts-timeline.php:267
8271
+ msgid "Specifies the alignment of timeline element."
8272
+ msgstr "تراز المان خط زمانی را مشخص می کند."
8273
+
8274
+ #: includes/elementor/widgets/recent-posts-timeline.php:246
8275
+ #: includes/elements/recent-posts-land-style.php:288
8276
+ #: includes/elements/recent-posts-masonry.php:268
8277
+ #: includes/elements/recent-posts-timeline.php:340
8278
+ msgid "Display post meta"
8279
+ msgstr "نمایش متای پست"
8280
+
8281
+ #: includes/elementor/widgets/recent-products.php:49
8282
+ #: includes/elements/recent-products.php:15
8283
+ #, fuzzy
8284
+ msgid "Recent Products"
8285
+ msgstr "اکسین نوشته های اخیر"
8286
+
8287
+ #: includes/elementor/widgets/recent-products.php:185
8288
+ #: includes/elements/recent-products.php:220
8289
+ #, fuzzy
8290
+ msgid "Display products price"
8291
+ msgstr "نمایش عنوان پست"
8292
+
8293
+ #: includes/elementor/widgets/recent-products.php:197
8294
+ #: includes/elements/recent-products.php:234
8295
+ #, fuzzy
8296
+ msgid "Display sale badge"
8297
+ msgstr "نمایش تصویر"
8298
+
8299
+ #: includes/elementor/widgets/recent-products.php:266
8300
+ #: includes/elements/recent-products.php:248
8301
+ #, fuzzy
8302
+ msgid "Display product title"
8303
+ msgstr "نمایش عنوان پست"
8304
+
8305
+ #: includes/elementor/widgets/recent-products.php:290
8306
+ #, fuzzy
8307
+ msgid "Display Add To Cart"
8308
+ msgstr "نمایش تاریخ نوشته"
8309
+
8310
+ #: includes/elementor/widgets/recent-products.php:411
8311
+ #: includes/elements/recent-products.php:164
8312
+ msgid "Only products"
8313
+ msgstr ""
8314
+
8315
+ #: includes/elementor/widgets/recent-products.php:412
8316
+ #: includes/elements/recent-products.php:165
8317
+ msgid ""
8318
+ "If you intend to display ONLY specific products, you should specify the "
8319
+ "products here. You have to insert the Products IDs that are separated by "
8320
+ "comma (eg. 53,34,87,25)."
8321
+ msgstr ""
8322
+
8323
+ #: includes/elementor/widgets/recent-products.php:420
8324
+ #: includes/elements/recent-products.php:178
8325
+ #, fuzzy
8326
+ msgid "Include products"
8327
+ msgstr "شامل شدن این نوشته ها"
8328
+
8329
+ #: includes/elementor/widgets/recent-products.php:421
8330
+ #: includes/elements/recent-products.php:179
8331
+ msgid ""
8332
+ "If you intend to include additional products, you should specify the "
8333
+ "products here. You have to insert the Products IDs that are separated by "
8334
+ "comma (eg. 53,34,87,25)"
8335
+ msgstr ""
8336
+
8337
+ #: includes/elementor/widgets/recent-products.php:429
8338
+ #: includes/elements/recent-products.php:192
8339
+ #, fuzzy
8340
+ msgid "Exclude products"
8341
+ msgstr "نادیده گرفتن این نوشته ها"
8342
+
8343
+ #: includes/elementor/widgets/recent-products.php:430
8344
+ #: includes/elements/recent-products.php:193
8345
+ msgid ""
8346
+ "If you intend to exclude specific products from result, you should specify "
8347
+ "the products here. You have to insert the Products IDs that are separated by "
8348
+ "comma (eg. 53,34,87,25)"
8349
+ msgstr ""
8350
+
8351
+ #: includes/elementor/widgets/recent-products.php:580
8352
+ msgid "Spacing"
8353
+ msgstr "فاصله"
8354
+
8355
+ #: includes/elementor/widgets/recent-products.php:605
8356
+ msgid "Category"
8357
+ msgstr "دسته"
8358
+
8359
+ #: includes/elementor/widgets/recent-products.php:714
8360
+ msgid "WooCommerce"
8361
+ msgstr ""
8362
+
8363
+ #: includes/elementor/widgets/responsive-table.php:50
8364
+ msgid "Responsive Table"
8365
+ msgstr ""
8366
+
8367
+ #: includes/elementor/widgets/responsive-table.php:102
8368
+ msgid "Table Markup"
8369
+ msgstr ""
8370
+
8371
+ #: includes/elementor/widgets/responsive-table.php:125
8372
+ #, fuzzy
8373
+ msgid "Table Heading"
8374
+ msgstr "تیتر گذاری"
8375
+
8376
+ #: includes/elementor/widgets/responsive-table.php:153
8377
+ msgid "Table Body"
8378
+ msgstr ""
8379
+
8380
+ #: includes/elementor/widgets/responsive-table.php:181
8381
+ msgid "Table Odd Rows"
8382
+ msgstr ""
8383
+
8384
+ #: includes/elementor/widgets/responsive-table.php:200
8385
+ msgid "Table Even Rows"
8386
+ msgstr ""
8387
+
8388
+ #: includes/elementor/widgets/search.php:47
8389
+ #: includes/elementor/widgets/theme-elements/modern-search.php:915
8390
+ #: includes/elementor/widgets/theme-elements/modern-search.php:918
8391
+ #: includes/elements/search.php:14
8392
+ #, fuzzy
8393
+ msgid "Search"
8394
+ msgstr "[فلوکس] جستجو"
8395
+
8396
+ #: includes/elementor/widgets/search.php:102
8397
+ #, fuzzy
8398
+ msgid "Display Submit"
8399
+ msgstr "نمایش عنوان؟"
8400
+
8401
+ #: includes/elementor/widgets/search.php:114
8402
+ #, fuzzy
8403
+ msgid "Display Submit Icon"
8404
+ msgstr "نمایش آیتم ها در"
8405
+
8406
+ #: includes/elementor/widgets/search.php:129
8407
+ #, fuzzy
8408
+ msgid "Display Field"
8409
+ msgstr "نمایش تصویر"
8410
+
8411
+ #: includes/elementor/widgets/search.php:141
8412
+ #, fuzzy
8413
+ msgid "Display Form"
8414
+ msgstr "نمایش فرمت نوشته؟"
8415
+
8416
+ #: includes/elementor/widgets/staff.php:52
8417
+ msgid "Staff"
8418
+ msgstr ""
8419
+
8420
+ #: includes/elementor/widgets/staff.php:107 includes/elements/staff.php:43
8421
+ msgid "Staff Name"
8422
+ msgstr ""
8423
+
8424
+ #: includes/elementor/widgets/staff.php:108
8425
+ #: includes/elementor/widgets/text.php:233 includes/elements/text.php:44
8426
+ msgid "Text title, leave it empty if you don`t need title."
8427
+ msgstr "عناون متن، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
8428
+
8429
+ #: includes/elementor/widgets/staff.php:117 includes/elements/staff.php:57
8430
+ msgid "Staff Occupation"
8431
+ msgstr ""
8432
+
8433
+ #: includes/elementor/widgets/staff.php:126 includes/elements/staff.php:73
8434
+ msgid "Staff Page Link"
8435
+ msgstr ""
8436
+
8437
+ #: includes/elementor/widgets/staff.php:141
8438
+ #: includes/elementor/widgets/text.php:264 includes/elements/staff.php:515
8439
+ #: includes/elements/testimonial.php:167 includes/elements/text.php:882
8440
+ msgid "Enter a text as a text content."
8441
+ msgstr "متنی را به عنوان محتوا وارد کنید."
8442
+
8443
+ #: includes/elementor/widgets/staff.php:149 includes/elements/staff.php:501
8444
+ msgid "Maximum Words"
8445
+ msgstr ""
8446
+
8447
+ #: includes/elementor/widgets/staff.php:150 includes/elements/staff.php:502
8448
+ msgid "Limit the number of words in the Content"
8449
+ msgstr ""
8450
+
8451
+ #: includes/elementor/widgets/staff.php:196
8452
+ #: includes/elementor/widgets/text.php:641 includes/elements/staff.php:161
8453
+ #: includes/elements/text.php:571
8454
+ #, fuzzy
8455
+ msgid "Image shape"
8456
+ msgstr "اندازه تصویر"
8457
+
8458
+ #: includes/elementor/widgets/staff.php:204
8459
+ #: includes/elementor/widgets/text.php:464
8460
+ #: includes/elementor/widgets/text.php:653 includes/elements/staff.php:172
8461
+ #: includes/elements/text.php:543 includes/elements/text.php:585
8462
+ msgid "Semi-circle"
8463
+ msgstr "نیم دایره"
8464
+
8465
+ #: includes/elementor/widgets/staff.php:208
8466
+ #: includes/elementor/widgets/text.php:468
8467
+ #: includes/elementor/widgets/text.php:657 includes/elements/staff.php:176
8468
+ #: includes/elements/text.php:547 includes/elements/text.php:589
8469
+ msgid "Round Rectangle"
8470
+ msgstr "مستطیل دورگرد"
8471
+
8472
+ #: includes/elementor/widgets/staff.php:212
8473
+ #: includes/elementor/widgets/text.php:476
8474
+ #: includes/elementor/widgets/text.php:661 includes/elements/staff.php:180
8475
+ #: includes/elements/text.php:555 includes/elements/text.php:593
8476
+ msgid "Rectangle"
8477
+ msgstr "مستطیل"
8478
+
8479
+ #: includes/elementor/widgets/staff.php:268
8480
+ #, fuzzy
8481
+ msgid "Social"
8482
+ msgstr "شکلک های شبکه های اجتماعی"
8483
+
8484
+ #: includes/elementor/widgets/staff.php:275 includes/elements/staff.php:316
8485
+ #, fuzzy
8486
+ msgid "Enable Socials"
8487
+ msgstr "[فلوکس] شبکه های اجتماعی"
8488
+
8489
+ #: includes/elementor/widgets/staff.php:286 includes/elements/staff.php:329
8490
+ #, fuzzy
8491
+ msgid "Twitter Address"
8492
+ msgstr "آدرس"
8493
+
8494
+ #: includes/elementor/widgets/staff.php:302 includes/elements/staff.php:361
8495
+ #, fuzzy
8496
+ msgid "Facebook Address"
8497
+ msgstr "آدرس جعبه تماس"
8498
+
8499
+ #: includes/elementor/widgets/staff.php:318 includes/elements/staff.php:377
8500
+ #, fuzzy
8501
+ msgid "Google Plus Address"
8502
+ msgstr "کد آنالیز گوگل"
8503
+
8504
+ #: includes/elementor/widgets/staff.php:334 includes/elements/staff.php:393
8505
+ #, fuzzy
8506
+ msgid "Flickr Address"
8507
+ msgstr "آدرس"
8508
+
8509
+ #: includes/elementor/widgets/staff.php:350 includes/elements/staff.php:409
8510
+ msgid "Delicious Address"
8511
+ msgstr ""
8512
+
8513
+ #: includes/elementor/widgets/staff.php:366 includes/elements/staff.php:425
8514
+ msgid "Pinterest Address"
8515
+ msgstr ""
8516
+
8517
+ #: includes/elementor/widgets/staff.php:382 includes/elements/staff.php:441
8518
+ #, fuzzy
8519
+ msgid "GitHub Address"
8520
+ msgstr "آدرس"
8521
+
8522
+ #: includes/elementor/widgets/staff.php:398
8523
+ #, fuzzy
8524
+ msgid "Instagram Address"
8525
+ msgstr "شناسه کاربر اینستاگرام"
8526
+
8527
+ #: includes/elementor/widgets/staff.php:499
8528
+ #: includes/elementor/widgets/text.php:850
8529
+ #: includes/elementor/widgets/text.php:973
8530
+ #, fuzzy
8531
+ msgid "Top space"
8532
+ msgstr "فضای خالی"
8533
+
8534
+ #: includes/elementor/widgets/staff.php:543
8535
+ #: includes/elementor/widgets/text.php:242
8536
+ #: includes/elementor/widgets/text.php:776
8537
+ #: includes/elements/recent-posts-grid-carousel.php:70
8538
+ #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8539
+ msgid "Subtitle"
8540
+ msgstr "زیرعنوان"
8541
+
8542
+ #: includes/elementor/widgets/staff.php:667
8543
+ #: includes/elements/socials-list.php:15 includes/elements/staff.php:325
8544
+ #: includes/elements/staff.php:341 includes/elements/staff.php:357
8545
+ #: includes/elements/staff.php:373 includes/elements/staff.php:389
8546
+ #: includes/elements/staff.php:405 includes/elements/staff.php:421
8547
+ #: includes/elements/staff.php:437 includes/elements/staff.php:453
8548
+ #: includes/elements/staff.php:476 includes/elements/staff.php:497
8549
+ #, fuzzy
8550
+ msgid "Socials"
8551
+ msgstr "شکلک های شبکه های اجتماعی"
8552
+
8553
+ #: includes/elementor/widgets/staff.php:734 includes/elements/staff.php:480
8554
+ #, fuzzy
8555
+ msgid "Icon Direction"
8556
+ msgstr "دکمه شکلک دار"
8557
+
8558
+ #: includes/elementor/widgets/staff.php:751 includes/elements/staff.php:457
8559
+ #, fuzzy
8560
+ msgid "Socials Icon size"
8561
+ msgstr "اندازه شکلک"
8562
+
8563
+ #: includes/elementor/widgets/staff.php:758 includes/elements/staff.php:466
8564
+ #: includes/elements/text.php:472
8565
+ msgid "X-Large"
8566
+ msgstr "خیلی بزرگ"
8567
+
8568
+ #: includes/elementor/widgets/staff.php:799
8569
+ #, fuzzy
8570
+ msgid "Wrappers"
8571
+ msgstr "ظاهر Wrapper"
8572
+
8573
+ #: includes/elementor/widgets/staff.php:838
8574
+ #: includes/elementor/widgets/text.php:1429
8575
+ #: includes/elementor/widgets/theme-elements/menu.php:324
8576
+ #: includes/elementor/widgets/theme-elements/menu.php:1351
8577
+ #: includes/elements/text.php:118
8578
+ #, fuzzy
8579
+ msgid "Text Align"
8580
+ msgstr "تراز متن"
8581
+
8582
+ #: includes/elementor/widgets/svg.php:52
8583
+ #, fuzzy
8584
+ msgid "Simple SVG"
8585
+ msgstr "ساده"
8586
+
8587
+ #: includes/elementor/widgets/svg.php:100
8588
+ msgid "SVG"
8589
+ msgstr ""
8590
+
8591
+ #: includes/elementor/widgets/svg.php:111
8592
+ #, fuzzy
8593
+ msgid "Inline"
8594
+ msgstr "خط بیرونی"
8595
+
8596
+ #: includes/elementor/widgets/svg.php:120
8597
+ #, fuzzy
8598
+ msgid "Choose Image"
8599
+ msgstr "انتخاب .."
8600
+
8601
+ #: includes/elementor/widgets/svg.php:137
8602
+ #: includes/elementor/widgets/text.php:209
8603
+ #: includes/elementor/widgets/theme-elements/menu.php:1116
8604
+ msgid "Enter inline SVG content here"
8605
+ msgstr ""
8606
+
8607
+ #: includes/elementor/widgets/tabs.php:52
8608
+ #: includes/elementor/widgets/tabs.php:184 includes/elements/tab-widget.php:15
8609
+ #: includes/elements/tabs.php:15 includes/elements/tabs.php:78
8610
+ #: includes/elements/tabs.php:96
8611
+ msgid "Tabs"
8612
+ msgstr "زبانه ها"
8613
+
8614
+ #: includes/elementor/widgets/tabs.php:107
8615
+ msgid "Tab Items"
8616
+ msgstr ""
8617
+
8618
+ #: includes/elementor/widgets/tabs.php:111
8619
+ msgid "Tab #1"
8620
+ msgstr ""
8621
+
8622
+ #: includes/elementor/widgets/tabs.php:115
8623
+ msgid "Tab #2"
8624
+ msgstr ""
8625
+
8626
+ #: includes/elementor/widgets/tabs.php:119
8627
+ msgid "Tab #3"
8628
+ msgstr ""
8629
+
8630
+ #: includes/elementor/widgets/tabs.php:128
8631
+ #, fuzzy
8632
+ msgid "Tab Title"
8633
+ msgstr "عنوان"
8634
+
8635
+ #: includes/elementor/widgets/tabs.php:138
8636
+ #, fuzzy
8637
+ msgid "Tab Content"
8638
+ msgstr "محتوا"
8639
+
8640
+ #: includes/elementor/widgets/tabs.php:152 includes/elements/tab-widget.php:65
8641
+ #: includes/elements/tabs.php:65
8642
+ msgid "Bordered"
8643
+ msgstr "کادربندی شده"
8644
+
8645
+ #: includes/elementor/widgets/tabs.php:153 includes/elements/tab-widget.php:66
8646
+ #: includes/elements/tabs.php:66
8647
+ msgid "No border"
8648
+ msgstr "بدون کادر"
8649
+
8650
+ #: includes/elementor/widgets/testimonial.php:54
8651
+ #, fuzzy
8652
+ msgid "Testimonial"
8653
+ msgstr "انتخاب اظهار نظر"
8654
+
8655
+ #: includes/elementor/widgets/testimonial.php:109
8656
+ msgid "Templates"
8657
+ msgstr ""
8658
+
8659
+ #: includes/elementor/widgets/testimonial.php:114
8660
+ msgid "Default template with image"
8661
+ msgstr ""
8662
+
8663
+ #: includes/elementor/widgets/testimonial.php:115
8664
+ #, fuzzy
8665
+ msgid "Bordered on content"
8666
+ msgstr "محتوای جعبه ای"
8667
+
8668
+ #: includes/elementor/widgets/testimonial.php:116
8669
+ msgid "Quotation mark on top of content"
8670
+ msgstr ""
8671
+
8672
+ #: includes/elementor/widgets/testimonial.php:117
8673
+ msgid "Show info on top of content"
8674
+ msgstr ""
8675
+
8676
+ #: includes/elementor/widgets/testimonial.php:118
8677
+ msgid "Show image on top of content"
8678
+ msgstr ""
8679
+
8680
+ #: includes/elementor/widgets/testimonial.php:152
8681
+ #: includes/elements/popular-posts-widget.php:131
8682
+ #: includes/elements/recent-posts-widget.php:91
8683
+ msgid "Display image"
8684
+ msgstr "نمایش تصویر"
8685
+
8686
+ #: includes/elementor/widgets/testimonial.php:163
8687
+ #: includes/elements/testimonial.php:148
8688
+ #, fuzzy
8689
+ msgid "Customer Image"
8690
+ msgstr "تصویر دلخواه"
8691
+
8692
+ #: includes/elementor/widgets/testimonial.php:200
8693
+ #: includes/elements/testimonial.php:84
8694
+ #, fuzzy
8695
+ msgid "Customer Name"
8696
+ msgstr "نام نویسنده"
8697
+
8698
+ #: includes/elementor/widgets/testimonial.php:210
8699
+ #: includes/elements/testimonial.php:112
8700
+ msgid "Customer Occupation"
8701
+ msgstr ""
8702
+
8703
+ #: includes/elementor/widgets/testimonial.php:220
8704
+ #: includes/elements/testimonial.php:98
8705
+ #, fuzzy
8706
+ msgid "Customer Link"
8707
+ msgstr "تصویر دلخواه"
8708
+
8709
+ #: includes/elementor/widgets/testimonial.php:233
8710
+ #: includes/elements/testimonial.php:126
8711
+ #, fuzzy
8712
+ msgid "Customer Rating"
8713
+ msgstr "تصویر دلخواه"
8714
+
8715
+ #: includes/elementor/widgets/testimonial.php:251
8716
+ #: includes/elementor/widgets/testimonial.php:578
8717
+ msgid "Review"
8718
+ msgstr ""
8719
+
8720
+ #: includes/elementor/widgets/testimonial.php:327
8721
+ #: includes/elementor/widgets/testimonial.php:438
8722
+ #: includes/elementor/widgets/testimonial.php:669
8723
+ msgid "Top and bottom space"
8724
+ msgstr ""
8725
+
8726
+ #: includes/elementor/widgets/testimonial.php:460
8727
+ #, fuzzy
8728
+ msgid "Occupation"
8729
+ msgstr "عملیات هنگام کلیک"
8730
+
8731
+ #: includes/elementor/widgets/testimonial.php:722
8732
+ msgid "Rating"
8733
+ msgstr ""
8734
+
8735
+ #: includes/elementor/widgets/testimonial.php:734
8736
+ msgid "Empty Color"
8737
+ msgstr ""
8738
+
8739
+ #: includes/elementor/widgets/testimonial.php:745
8740
+ #, fuzzy
8741
+ msgid "Fill Color"
8742
+ msgstr "رنگ شکلک"
8743
+
8744
+ #: includes/elementor/widgets/testimonial.php:796
8745
+ #, fuzzy
8746
+ msgid "Content Box"
8747
+ msgstr "محتوا"
8748
+
8749
+ #: includes/elementor/widgets/testimonial.php:804
8750
+ #, fuzzy
8751
+ msgid "Content Alignment"
8752
+ msgstr "تراز شکلک"
8753
+
8754
+ #: includes/elementor/widgets/text.php:53 includes/elements/text.php:15
8755
+ #, fuzzy
8756
+ msgid "Info Box"
8757
+ msgstr "اطلاعات"
8758
+
8759
+ #: includes/elementor/widgets/text.php:118
8760
+ msgid "Inline SVG"
8761
+ msgstr ""
8762
+
8763
+ #: includes/elementor/widgets/text.php:128
8764
+ #: includes/elementor/widgets/theme-elements/search.php:132
8765
+ #: includes/elements/text.php:387
8766
+ #, fuzzy
8767
+ msgid "Please choose an icon from the list."
8768
+ msgstr "لطفا یکی از شکلک های موجود را انتخاب کنید."
8769
+
8770
+ #: includes/elementor/widgets/text.php:250 includes/elements/text.php:75
8771
+ #, fuzzy
8772
+ msgid "Title Link"
8773
+ msgstr "لینک عنوان"
8774
+
8775
+ #: includes/elementor/widgets/text.php:285 includes/elements/text.php:637
8776
+ #, fuzzy
8777
+ msgid "Display button"
8778
+ msgstr "نمایش دکمه لایک"
8779
+
8780
+ #: includes/elementor/widgets/text.php:286 includes/elements/text.php:638
8781
+ #, fuzzy
8782
+ msgid "Display a button in text widget"
8783
+ msgstr "نمایش دکمه لایک"
8784
+
8785
+ #: includes/elementor/widgets/text.php:358
8786
+ #, fuzzy
8787
+ msgid "Header Position"
8788
+ msgstr "موقعیت"
8789
+
8790
+ #: includes/elementor/widgets/text.php:409
8791
+ #, fuzzy
8792
+ msgid "Icon/Image"
8793
+ msgstr "تصویر"
8794
+
8795
+ #: includes/elementor/widgets/text.php:421
8796
+ #, fuzzy
8797
+ msgid "Border"
8798
+ msgstr "کادربندی شده"
8799
+
8800
+ #: includes/elementor/widgets/text.php:455 includes/elements/text.php:533
8801
+ msgid "Icon background shape"
8802
+ msgstr "شکل پس زمینه شکلک"
8803
+
8804
+ #: includes/elementor/widgets/text.php:472 includes/elements/text.php:551
8805
+ #, fuzzy
8806
+ msgid "Cross Rectangle"
8807
+ msgstr "مستطیل"
8808
+
8809
+ #: includes/elementor/widgets/text.php:523
8810
+ #: includes/elementor/widgets/text.php:576
8811
+ #: includes/elementor/widgets/theme-elements/search.php:233
8812
+ #: includes/elements/text.php:445
8813
+ msgid "Icon color"
8814
+ msgstr "رنگ شکلک"
8815
+
8816
+ #: includes/elementor/widgets/text.php:535
8817
+ #: includes/elementor/widgets/text.php:591 includes/elements/text.php:486
8818
+ msgid "Icon background color"
8819
+ msgstr "رنگ پس زمینه شکلک"
8820
+
8821
+ #: includes/elementor/widgets/text.php:616
8822
+ #: includes/elementor/widgets/text.php:1537
8823
+ msgid "Transition duration"
8824
+ msgstr ""
8825
+
8826
+ #: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
8827
+ #, fuzzy
8828
+ msgid "Default Aspect"
8829
+ msgstr "پیش فرض"
8830
+
8831
+ #: includes/elementor/widgets/text.php:1039
8832
+ #, fuzzy
8833
+ msgid "Button Skin"
8834
+ msgstr "اندازه دکمه"
8835
+
8836
+ #: includes/elementor/widgets/text.php:1116
8837
+ #, fuzzy
8838
+ msgid "Button Icon"
8839
+ msgstr "اندازه دکمه"
8840
+
8841
+ #: includes/elementor/widgets/text.php:1229
8842
+ #, fuzzy
8843
+ msgid "Button Text"
8844
+ msgstr "متن دکمه"
8845
+
8846
+ #: includes/elementor/widgets/text.php:1322
8847
+ #, fuzzy
8848
+ msgid "Button Wrapper"
8849
+ msgstr "نوع دکمه"
8850
+
8851
+ #: includes/elementor/widgets/text.php:1347
8852
+ #, fuzzy
8853
+ msgid "Shape Style"
8854
+ msgstr "ظاهر نقشه"
8855
+
8856
+ #: includes/elementor/widgets/text.php:1371 includes/general-hooks.php:747
8857
+ #: includes/general-hooks.php:1152
8858
+ #, fuzzy
8859
+ msgid "Button Style"
8860
+ msgstr "ظاهر دکمه"
8861
+
8862
+ #: includes/elementor/widgets/text.php:1421
8863
+ #, fuzzy
8864
+ msgid "Overlay"
8865
+ msgstr "رو"
8866
+
8867
+ #: includes/elementor/widgets/text.php:1572 includes/elements/text.php:896
8868
+ msgid "Footer Shape"
8869
+ msgstr ""
8870
+
8871
+ #: includes/elementor/widgets/text.php:1581 includes/elements/text.php:907
8872
+ msgid "Wave"
8873
+ msgstr ""
8874
+
8875
+ #: includes/elementor/widgets/text.php:1585 includes/elements/text.php:911
8876
+ msgid "Tail"
8877
+ msgstr ""
8878
+
8879
+ #: includes/elementor/widgets/text.php:1596 includes/elements/button.php:212
8880
+ #: includes/elements/text.php:825
8881
+ msgid "Color of button"
8882
+ msgstr "رنگ دکمه"
8883
+
8884
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:53
8885
+ msgid "Breadcrumbs"
8886
+ msgstr ""
8887
+
8888
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:125
8889
+ #, fuzzy
8890
+ msgid "Show home icon"
8891
+ msgstr "نمایش شکلک"
8892
+
8893
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:126
8894
+ msgid "Show icon instead of text for home"
8895
+ msgstr ""
8896
+
8897
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:138
8898
+ msgid "Custom Seperator Icon"
8899
+ msgstr ""
8900
+
8901
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:167
8902
+ #, fuzzy
8903
+ msgid "Custom Separator"
8904
+ msgstr "رنگ سفارشی"
8905
+
8906
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:198
8907
+ msgid ""
8908
+ "Note: Breadcrumb is using \"Yoast SEO\" plugin. You can change the options "
8909
+ "from plugin setting page."
8910
+ msgstr ""
8911
+
8912
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:216
8913
+ #, fuzzy
8914
+ msgid "Home Icon"
8915
+ msgstr "شکلک"
8916
+
8917
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:227
8918
+ #: includes/elementor/widgets/theme-elements/menu.php:277
8919
+ msgid "Position"
8920
+ msgstr "موقعیت"
8921
+
8922
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:253
8923
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:385
8924
+ #: includes/elementor/widgets/theme-elements/modern-search.php:685
8925
+ msgid "Icon Color"
8926
+ msgstr "رنگ شکلک"
8927
+
8928
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:295
8929
+ #, fuzzy
8930
+ msgid "Link Color"
8931
+ msgstr "رنگ شکلک"
8932
+
8933
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:310
8934
+ msgid "Link Hover Color"
8935
+ msgstr ""
8936
+
8937
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:419
8938
+ #, fuzzy
8939
+ msgid "Container"
8940
+ msgstr "دربرگیرنده"
8941
+
8942
+ #: includes/elementor/widgets/theme-elements/copyright.php:50
8943
+ #: includes/elementor/widgets/theme-elements/copyright.php:165
8944
+ msgid "Copyright"
8945
+ msgstr ""
8946
+
8947
+ #: includes/elementor/widgets/theme-elements/copyright.php:102
8948
+ #, fuzzy
8949
+ msgid "Copyright Text"
8950
+ msgstr "متن هایلایت شده"
8951
+
8952
+ #: includes/elementor/widgets/theme-elements/copyright.php:104
8953
+ msgid "&copy; %s. All rights reserved."
8954
+ msgstr ""
8955
+
8956
+ #: includes/elementor/widgets/theme-elements/copyright.php:112
8957
+ #, fuzzy
8958
+ msgid "Show Theme Attribution"
8959
+ msgstr "نمایش دکمه بارگذاری بیشتر"
8960
+
8961
+ #: includes/elementor/widgets/theme-elements/copyright.php:113
8962
+ msgid "Show the \"Powered By\" text with link to theme homepage in footer."
8963
+ msgstr ""
8964
+
8965
+ #: includes/elementor/widgets/theme-elements/copyright.php:125
8966
+ msgid "Show Privacy Policy"
8967
+ msgstr ""
8968
+
8969
+ #: includes/elementor/widgets/theme-elements/copyright.php:126
8970
+ msgid "Show a link to privacy policy page in the footer."
8971
+ msgstr ""
8972
+
8973
+ #: includes/elementor/widgets/theme-elements/current-time.php:50
8974
+ #, fuzzy
8975
+ msgid "Current Time"
8976
+ msgstr "صفحه جاری"
8977
+
8978
+ #: includes/elementor/widgets/theme-elements/current-time.php:105
8979
+ msgid "Type of time"
8980
+ msgstr ""
8981
+
8982
+ #: includes/elementor/widgets/theme-elements/current-time.php:110
8983
+ msgid "MySql"
8984
+ msgstr ""
8985
+
8986
+ #: includes/elementor/widgets/theme-elements/current-time.php:111
8987
+ msgid "TimeStamp"
8988
+ msgstr ""
8989
+
8990
+ #: includes/elementor/widgets/theme-elements/current-time.php:119
8991
+ msgid "Date Format String"
8992
+ msgstr ""
8993
+
8994
+ #: includes/elementor/widgets/theme-elements/logo.php:114
8995
+ msgid ""
8996
+ "<strong>There are no logo in your site.</strong><br>Go to the <a href=\"%s\" "
8997
+ "target=\"_blank\">Customizer</a> to add one."
8998
+ msgstr ""
8999
+
9000
+ #: includes/elementor/widgets/theme-elements/logo.php:124
9001
+ msgid "Your site logo is set in customizer."
9002
+ msgstr ""
9003
+
9004
+ #: includes/elementor/widgets/theme-elements/logo.php:125
9005
+ msgid "Go to %s Customizer %s to change it."
9006
+ msgstr ""
9007
+
9008
+ #: includes/elementor/widgets/theme-elements/logo.php:139
9009
+ msgid "Primary"
9010
+ msgstr ""
9011
+
9012
+ #: includes/elementor/widgets/theme-elements/logo.php:140
9013
+ msgid "Secondary"
9014
+ msgstr ""
9015
+
9016
+ #: includes/elementor/widgets/theme-elements/logo.php:188
9017
+ #, fuzzy
9018
+ msgid "Custom URL"
9019
+ msgstr "سی اس اس دلخواه"
9020
+
9021
+ #: includes/elementor/widgets/theme-elements/logo.php:300
9022
+ #: includes/elementor/widgets/theme-elements/logo.php:334
9023
+ msgid "Opacity"
9024
+ msgstr ""
9025
+
9026
+ #: includes/elementor/widgets/theme-elements/logo.php:413
9027
+ msgid "Scale on sticky"
9028
+ msgstr ""
9029
+
9030
+ #: includes/elementor/widgets/theme-elements/logo.php:425
9031
+ msgid "Scale"
9032
+ msgstr ""
9033
+
9034
+ #: includes/elementor/widgets/theme-elements/menu.php:53
9035
+ #, fuzzy
9036
+ msgid "Navigation Menu"
9037
+ msgstr "نوع ناوبری"
9038
+
9039
+ #: includes/elementor/widgets/theme-elements/menu.php:130
9040
+ msgid "Menu"
9041
+ msgstr ""
9042
+
9043
+ #: includes/elementor/widgets/theme-elements/menu.php:136
9044
+ msgid "Go to the %s Menus screen %s to manage your menus."
9045
+ msgstr ""
9046
+
9047
+ #: includes/elementor/widgets/theme-elements/menu.php:147
9048
+ msgid ""
9049
+ "<strong>There are no menus in your site.</strong><br>Go to the <a href=\"%s"
9050
+ "\" target=\"_blank\">Menus screen</a> to create one."
9051
+ msgstr ""
9052
+
9053
+ #: includes/elementor/widgets/theme-elements/menu.php:162
9054
+ msgid "Burger"
9055
+ msgstr ""
9056
+
9057
+ #: includes/elementor/widgets/theme-elements/menu.php:173
9058
+ #, fuzzy
9059
+ msgid "Display Menu Splitter"
9060
+ msgstr "نمایش تاریخ نوشته"
9061
+
9062
+ #: includes/elementor/widgets/theme-elements/menu.php:188
9063
+ msgid "Display Submenu Indicator"
9064
+ msgstr ""
9065
+
9066
+ #: includes/elementor/widgets/theme-elements/menu.php:202
9067
+ msgid "Mobile Menu"
9068
+ msgstr ""
9069
+
9070
+ #: includes/elementor/widgets/theme-elements/menu.php:209
9071
+ #, fuzzy
9072
+ msgid "Display Mobile Menu on"
9073
+ msgstr "نمایش دکمه لایک"
9074
+
9075
+ #: includes/elementor/widgets/theme-elements/menu.php:214
9076
+ msgid "Tablet (1024px and lower)"
9077
+ msgstr ""
9078
+
9079
+ #: includes/elementor/widgets/theme-elements/menu.php:215
9080
+ msgid "Mobile (768px and lower)"
9081
+ msgstr ""
9082
+
9083
+ #: includes/elementor/widgets/theme-elements/menu.php:216
9084
+ msgid "Custom Breakpoint"
9085
+ msgstr ""
9086
+
9087
+ #: includes/elementor/widgets/theme-elements/menu.php:227
9088
+ msgid "BreakPoint (pixel)"
9089
+ msgstr ""
9090
+
9091
+ #: includes/elementor/widgets/theme-elements/menu.php:252
9092
+ msgid "Mobile Menu Type"
9093
+ msgstr ""
9094
+
9095
+ #: includes/elementor/widgets/theme-elements/menu.php:257
9096
+ #: includes/elementor/widgets/theme-elements/menu.php:1066
9097
+ msgid "Expandable under top header"
9098
+ msgstr ""
9099
+
9100
+ #: includes/elementor/widgets/theme-elements/menu.php:261
9101
+ #: includes/elementor/widgets/theme-elements/menu.php:1078
9102
+ msgid "FullScreen on entire page"
9103
+ msgstr ""
9104
+
9105
+ #: includes/elementor/widgets/theme-elements/menu.php:265
9106
+ #: includes/elementor/widgets/theme-elements/menu.php:1070
9107
+ #: includes/elementor/widgets/theme-elements/menu.php:1074
9108
+ #: includes/elementor/widgets/theme-elements/menu.php:1082
9109
+ #: includes/elementor/widgets/theme-elements/menu.php:1086
9110
+ #: includes/elementor/widgets/theme-elements/menu.php:1090
9111
+ #: includes/elementor/widgets/theme-elements/menu.php:1094
9112
+ #: includes/elementor/widgets/theme-elements/menu.php:1098
9113
+ msgid "Offcanvas panel"
9114
+ msgstr ""
9115
+
9116
+ #: includes/elementor/widgets/theme-elements/menu.php:293
9117
+ msgid "Mobile Menu Opening Type"
9118
+ msgstr ""
9119
+
9120
+ #: includes/elementor/widgets/theme-elements/menu.php:316
9121
+ #, fuzzy
9122
+ msgid "Menu Item"
9123
+ msgstr "ترتیب فهرست"
9124
+
9125
+ #: includes/elementor/widgets/theme-elements/menu.php:548
9126
+ msgid "Menu Item - Selected"
9127
+ msgstr ""
9128
+
9129
+ #: includes/elementor/widgets/theme-elements/menu.php:608
9130
+ #, fuzzy
9131
+ msgid "Submenu"
9132
+ msgstr "تایید"
9133
+
9134
+ #: includes/elementor/widgets/theme-elements/menu.php:621
9135
+ msgid "Paradox"
9136
+ msgstr ""
9137
+
9138
+ #: includes/elementor/widgets/theme-elements/menu.php:625
9139
+ #: includes/elements/dropcap.php:56
9140
+ msgid "Classic"
9141
+ msgstr "کلاسیک"
9142
+
9143
+ #: includes/elementor/widgets/theme-elements/menu.php:629
9144
+ msgid "Dark Transparent"
9145
+ msgstr ""
9146
+
9147
+ #: includes/elementor/widgets/theme-elements/menu.php:633
9148
+ #, fuzzy
9149
+ msgid "Divided"
9150
+ msgstr "عرض جداکننده"
9151
+
9152
+ #: includes/elementor/widgets/theme-elements/menu.php:637
9153
+ #, fuzzy
9154
+ msgid "Center Paradox"
9155
+ msgstr "وسط بالا"
9156
+
9157
+ #: includes/elementor/widgets/theme-elements/menu.php:641
9158
+ #, fuzzy
9159
+ msgid "Modern Paradox"
9160
+ msgstr "مدرن"
9161
+
9162
+ #: includes/elementor/widgets/theme-elements/menu.php:653
9163
+ #, fuzzy
9164
+ msgid "Animation Effect"
9165
+ msgstr "متحرک سازی از چپ"
9166
+
9167
+ #: includes/elementor/widgets/theme-elements/menu.php:662
9168
+ msgid "Fade"
9169
+ msgstr ""
9170
+
9171
+ #: includes/elementor/widgets/theme-elements/menu.php:666
9172
+ msgid "Fade and move"
9173
+ msgstr ""
9174
+
9175
+ #: includes/elementor/widgets/theme-elements/menu.php:786
9176
+ msgid "Submenu Item"
9177
+ msgstr ""
9178
+
9179
+ #: includes/elementor/widgets/theme-elements/menu.php:987
9180
+ msgid "Burger Button"
9181
+ msgstr ""
9182
+
9183
+ #: includes/elementor/widgets/theme-elements/menu.php:1061
9184
+ #, fuzzy
9185
+ msgid "Burger Button Style"
9186
+ msgstr "ظاهر دکمه"
9187
+
9188
+ #: includes/elementor/widgets/theme-elements/menu.php:1127
9189
+ #, fuzzy
9190
+ msgid "Off canvas menu background color"
9191
+ msgstr "رنگ پس زمینه شکلک"
9192
+
9193
+ #: includes/elementor/widgets/theme-elements/menu.php:1143
9194
+ msgid "Fullscreen Menu"
9195
+ msgstr ""
9196
+
9197
+ #: includes/elementor/widgets/theme-elements/menu.php:1409
9198
+ #, fuzzy
9199
+ msgid "Close Button"
9200
+ msgstr "[فلوکس] دکمه"
9201
+
9202
+ #: includes/elementor/widgets/theme-elements/menu.php:1417
9203
+ #: includes/elementor/widgets/theme-elements/menu.php:1428
9204
+ #, fuzzy
9205
+ msgid "Outline Color"
9206
+ msgstr "دایره با خط بیرونی"
9207
+
9208
+ #: includes/elementor/widgets/theme-elements/menu.php:1453
9209
+ #, fuzzy
9210
+ msgid "There are no menus in your site."
9211
+ msgstr "آدرس ریشه سایت شما"
9212
+
9213
+ #: includes/elementor/widgets/theme-elements/modern-search.php:52
9214
+ #, fuzzy
9215
+ msgid "Modern Search"
9216
+ msgstr "مدرن"
9217
+
9218
+ #: includes/elementor/widgets/theme-elements/modern-search.php:136
9219
+ #: includes/elementor/widgets/theme-elements/modern-search.php:577
9220
+ msgid "Fullscreen Search Input"
9221
+ msgstr ""
9222
+
9223
+ #: includes/elementor/widgets/theme-elements/modern-search.php:144
9224
+ #, fuzzy
9225
+ msgid "Specifies a post type that you want to show posts from it."
9226
+ msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
9227
+
9228
+ #: includes/elementor/widgets/theme-elements/modern-search.php:155
9229
+ msgid "Enable Ajax Search"
9230
+ msgstr ""
9231
+
9232
+ #: includes/elementor/widgets/theme-elements/modern-search.php:168
9233
+ #, fuzzy
9234
+ msgid "Display Submit Button"
9235
+ msgstr "نمایش دکمه لایک"
9236
+
9237
+ #: includes/elementor/widgets/theme-elements/modern-search.php:181
9238
+ #, fuzzy
9239
+ msgid "Display Fill Submit Button"
9240
+ msgstr "نمایش دکمه لایک"
9241
+
9242
+ #: includes/elementor/widgets/theme-elements/modern-search.php:553
9243
+ msgid "Cursor"
9244
+ msgstr ""
9245
+
9246
+ #: includes/elementor/widgets/theme-elements/modern-search.php:621
9247
+ #, fuzzy
9248
+ msgid "Border Size"
9249
+ msgstr "کادربندی شده"
9250
+
9251
+ #: includes/elementor/widgets/theme-elements/modern-search.php:703
9252
+ msgid "Overlay Color"
9253
+ msgstr ""
9254
+
9255
+ #: includes/elementor/widgets/theme-elements/modern-search.php:717
9256
+ msgid "Fullscreen Close Button"
9257
+ msgstr ""
9258
+
9259
+ #: includes/elementor/widgets/theme-elements/modern-search.php:725
9260
+ #, fuzzy
9261
+ msgid "Top Position"
9262
+ msgstr "موقعیت"
9263
+
9264
+ #: includes/elementor/widgets/theme-elements/modern-search.php:754
9265
+ #, fuzzy
9266
+ msgid "Right Position"
9267
+ msgstr "موقعیت"
9268
+
9269
+ #: includes/elementor/widgets/theme-elements/modern-search.php:908
9270
+ msgid "Search..."
9271
+ msgstr ""
9272
+
9273
+ #: includes/elementor/widgets/theme-elements/search.php:50
9274
+ msgid "Search Form"
9275
+ msgstr ""
9276
+
9277
+ #: includes/elementor/widgets/theme-elements/search.php:114
9278
+ #, fuzzy
9279
+ msgid "Submit Button Type"
9280
+ msgstr "نوع دکمه"
9281
+
9282
+ #: includes/elementor/widgets/theme-elements/search.php:155
9283
+ #, fuzzy
9284
+ msgid "Search by Category"
9285
+ msgstr "دسته"
9286
+
9287
+ #: includes/elementor/widgets/theme-elements/search.php:342
9288
+ #, fuzzy
9289
+ msgid "Form Background Color"
9290
+ msgstr "رنگ پس زمینه"
9291
+
9292
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:53
9293
+ msgid "Shopping Cart"
9294
+ msgstr ""
9295
+
9296
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:119
9297
+ msgid "DropDown"
9298
+ msgstr ""
9299
+
9300
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:129
9301
+ #, fuzzy
9302
+ msgid "Cart Skin"
9303
+ msgstr "نمای پخش کننده"
9304
+
9305
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:142
9306
+ #, fuzzy
9307
+ msgid "Display Basket"
9308
+ msgstr "نمایش تصویر"
9309
+
9310
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:146
9311
+ #, fuzzy
9312
+ msgid "On Hover"
9313
+ msgstr "پوشاننده"
9314
+
9315
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:147
9316
+ #, fuzzy
9317
+ msgid "On Click"
9318
+ msgstr "عملیات هنگام کلیک"
9319
+
9320
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:155
9321
+ msgid "Basket Animation"
9322
+ msgstr ""
9323
+
9324
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:167
9325
+ #, fuzzy
9326
+ msgid "Simple Cart"
9327
+ msgstr "خاکستری ساده"
9328
+
9329
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:179
9330
+ #, fuzzy
9331
+ msgid "Text for cart"
9332
+ msgstr "شمای رنگ متن"
9333
+
9334
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:181
9335
+ msgid "Shopping Basket"
9336
+ msgstr ""
9337
+
9338
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:217
9339
+ msgid "Total Price Text"
9340
+ msgstr ""
9341
+
9342
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:219
9343
+ msgid "Sub Total"
9344
+ msgstr ""
9345
+
9346
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:232
9347
+ msgid "Counter Bubble"
9348
+ msgstr ""
9349
+
9350
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:280
9351
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:353
9352
+ msgid "Position from Bottom"
9353
+ msgstr ""
9354
+
9355
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:303
9356
+ #, fuzzy
9357
+ msgid "Position from right"
9358
+ msgstr "متحرک سازی از راست"
9359
+
9360
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:381
9361
+ #, fuzzy
9362
+ msgid "Position from Left"
9363
+ msgstr "متحرک سازی از چپ"
9364
+
9365
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:476
9366
+ msgid "Item"
9367
+ msgstr ""
9368
+
9369
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:507
9370
+ #, fuzzy
9371
+ msgid "Title color"
9372
+ msgstr "لینک عنوان"
9373
+
9374
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:520
9375
+ msgid "Title Typography"
9376
+ msgstr ""
9377
+
9378
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:530
9379
+ #, fuzzy
9380
+ msgid "Price color"
9381
+ msgstr "رنگ شکلک"
9382
+
9383
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:542
9384
+ msgid "Price Typography"
9385
+ msgstr ""
9386
+
9387
+ #: includes/elementor/widgets/theme-elements/site-title.php:101
9388
+ msgid "Site Title HTML Tag"
9389
+ msgstr ""
9390
+
9391
+ #: includes/elementor/widgets/theme-elements/site-title.php:132
9392
+ msgid "Before Title HTML Tag"
9393
+ msgstr ""
9394
+
9395
+ #: includes/elementor/widgets/theme-elements/site-title.php:163
9396
+ msgid "After Title HTML Tag"
9397
+ msgstr ""
9398
+
9399
+ #: includes/elementor/widgets/theme-elements/site-title.php:219
9400
+ msgid "Disable Link"
9401
+ msgstr ""
9402
+
9403
+ #: includes/elementor/widgets/theme-elements/site-title.php:231
9404
+ #, fuzzy
9405
+ msgid "Open in a New Window"
9406
+ msgstr "باز کردن پیوند در"
9407
+
9408
+ #: includes/elementor/widgets/theme-elements/site-title.php:246
9409
+ msgid "Add No Follow"
9410
+ msgstr ""
9411
+
9412
+ #: includes/elementor/widgets/theme-elements/site-title.php:361
9413
+ msgid "Before Site Title"
9414
+ msgstr ""
9415
+
9416
+ #: includes/elementor/widgets/theme-elements/site-title.php:427
9417
+ msgid "After Site Title"
9418
+ msgstr ""
9419
+
9420
+ #: includes/elementor/widgets/touch-slider.php:49
9421
+ #, fuzzy
9422
+ msgid "Simple Image Slider"
9423
+ msgstr "خاکستری ساده"
9424
+
9425
+ #: includes/elementor/widgets/touch-slider.php:127
9426
+ #: includes/elements/latest-posts-slider.php:299
9427
+ #: includes/elements/touch-slider.php:97
9428
+ msgid "Arrow navigation"
9429
+ msgstr "فلش های ناوبری"
9430
+
9431
+ #: includes/elementor/widgets/touch-slider.php:152
9432
+ #: includes/elements/latest-posts-slider.php:338
9433
+ #: includes/elements/touch-slider.php:136
9434
+ msgid "Slideshow"
9435
+ msgstr "اسلایدشو"
9436
+
9437
+ #: includes/elementor/widgets/touch-slider.php:177
9438
+ #: includes/elements/touch-slider.php:165
9439
+ #, fuzzy
9440
+ msgid "Display image title"
9441
+ msgstr "نمایش تصویر"
9442
+
9443
+ #: includes/elementor/widgets/touch-slider.php:189
9444
+ #: includes/elements/touch-slider.php:178
9445
+ #, fuzzy
9446
+ msgid "Display image caption"
9447
+ msgstr "نمایش تصویر"
9448
+
9449
+ #: includes/elementor/widgets/touch-slider.php:207
9450
+ #, fuzzy
9451
+ msgid "Slides"
9452
+ msgstr "اسلایدر"
9453
+
9454
+ #: includes/elementor/widgets/touch-slider.php:215
9455
+ #: includes/elements/latest-posts-slider.php:273
9456
+ #: includes/elements/touch-slider.php:71
9457
+ msgid "Slider image width"
9458
+ msgstr "عرض تصویر اسلایدر"
9459
+
9460
+ #: includes/elementor/widgets/touch-slider.php:235
9461
+ #: includes/elements/latest-posts-slider.php:286
9462
+ #: includes/elements/touch-slider.php:84
9463
+ msgid "Slider image height"
9464
+ msgstr "ارتفاع تصویر اسلایدر"
9465
+
9466
+ #: includes/elementor/widgets/touch-slider.php:255
9467
+ #: includes/elements/latest-posts-slider.php:312
9468
+ #: includes/elements/touch-slider.php:110
9469
+ msgid "Space between slides"
9470
+ msgstr "فاصله بین اسلایدها"
9471
+
9472
+ #: includes/elementor/widgets/touch-slider.php:281
9473
+ #, fuzzy
9474
+ msgid "Info Container"
9475
+ msgstr "دربرگیرنده"
9476
+
9477
+ #: includes/elementor/widgets/video.php:46
9478
+ #, fuzzy
9479
+ msgid "Video Player"
9480
+ msgstr "فایل ویدیو"
9481
+
9482
+ #: includes/elementor/widgets/video.php:101
9483
+ #, fuzzy
9484
+ msgid "Video Type"
9485
+ msgstr "پوستر ویدیو"
9486
+
9487
+ #: includes/elementor/widgets/video.php:106
9488
+ msgid "Media Library"
9489
+ msgstr ""
9490
+
9491
+ #: includes/elementor/widgets/video.php:107
9492
+ #: includes/elementor/widgets/video.php:127
9493
+ #, fuzzy
9494
+ msgid "Youtube/Vimeo Link"
9495
+ msgstr "لینک یوتیوب یا ویمو"
9496
+
9497
+ #: includes/elementor/widgets/video.php:128 includes/elements/video.php:121
9498
+ msgid "Youtube, Vimeo or any video embed link."
9499
+ msgstr "کد جاگذاری یوتیوب، ویمِو یا هر سرویس دیگری."
9500
+
9501
+ #: includes/elementor/widgets/video.php:156
9502
+ #, fuzzy
9503
+ msgid "Repeat the video"
9504
+ msgstr "تکرار ویدیو"
9505
+
9506
+ #: includes/elementor/widgets/video.php:168 includes/elements/video.php:134
9507
+ msgid "Video poster"
9508
+ msgstr "پوستر ویدیو"
9509
+
9510
+ #: includes/elementor/widgets/video.php:169 includes/elements/video.php:135
9511
+ msgid "An image that represents the video content."
9512
+ msgstr "تصویری که محتوای ویدیو را ارائه می کند."
9513
+
9514
+ #: includes/elementor/widgets/video.php:192 includes/elements/video.php:79
9515
+ msgid "Width size of video in pixel."
9516
+ msgstr "اندازه عرض ویدیو برحسب پیکسل."
9517
+
9518
+ #: includes/elementor/widgets/video.php:210 includes/elements/video.php:93
9519
+ msgid "Height size of video in pixel."
9520
+ msgstr "ارتفاع ویدیو بر حسب پیکسل"
9521
+
9522
+ #: includes/elementor/widgets/video.php:226 includes/elements/video.php:148
9523
+ #, fuzzy
9524
+ msgid "Player skin"
9525
+ msgstr "نمای پخش کننده"
9526
+
9527
+ #: includes/elementor/widgets/video.php:227 includes/elements/video.php:149
9528
+ msgid "Specifies skin for the player."
9529
+ msgstr "نمای پخش کننده را مشخص می کند."
9530
+
9531
+ #: includes/elements/about-widget.php:16
9532
+ #, fuzzy
9533
+ msgid "About Author"
9534
+ msgstr "[فلوکس] درباره نویسنده"
9535
+
9536
+ #: includes/elements/about-widget.php:19
9537
+ msgid "It adds an about author element."
9538
+ msgstr "یک المان درباره نویسنده اضافه می کند."
9539
+
9540
+ #: includes/elements/about-widget.php:59
9541
+ msgid "The name which appears in about widget."
9542
+ msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
9543
+
9544
+ #: includes/elements/about-widget.php:72 includes/general-hooks.php:2374
9545
+ msgid "Skills"
9546
+ msgstr "مهارت ها"
9547
+
9548
+ #: includes/elements/about-widget.php:73
9549
+ msgid "It appears below the name."
9550
+ msgstr "در پایین نام نمایش داده خواهد شد."
9551
+
9552
+ #: includes/elements/about-widget.php:85
9553
+ msgid "Info"
9554
+ msgstr "اطلاعات"
9555
+
9556
+ #: includes/elements/about-widget.php:86
9557
+ msgid "Biographical info or any other content."
9558
+ msgstr "اطلاعاتی از زندگی نامه یا هر محتوای دیگری."
9559
+
9560
+ #: includes/elements/about-widget.php:101
9561
+ msgid "It appears above the name."
9562
+ msgstr "بالای نام نمایش داده خواهد شد."
9563
+
9564
+ #: includes/elements/about-widget.php:115
9565
+ msgid "Image style"
9566
+ msgstr "ظاهر تصویر"
9567
+
9568
+ #: includes/elements/about-widget.php:133
9569
+ msgid "Align center texts"
9570
+ msgstr "متن تراز وسط"
9571
+
9572
+ #: includes/elements/about-widget.php:148
9573
+ msgid "Show socials below the info"
9574
+ msgstr "نمایش شبکه های اجتماعی در زیر اطلاعات"
9575
+
9576
+ #: includes/elements/about-widget.php:163
9577
+ #: includes/elements/accordion-widget.php:93
9578
+ #: includes/elements/accordion.php:111 includes/elements/audio.php:125
9579
+ #: includes/elements/before-after.php:141 includes/elements/button.php:259
9580
+ #: includes/elements/code.php:121 includes/elements/contact-box.php:311
9581
+ #: includes/elements/contact-form.php:105 includes/elements/custom-list.php:190
9582
+ #: includes/elements/divider.php:151 includes/elements/dropcap.php:96
9583
+ #: includes/elements/facebook.php:162 includes/elements/gallery.php:382
9584
+ #: includes/elements/gmap.php:197 includes/elements/highlight.php:94
9585
+ #: includes/elements/image.php:364 includes/elements/instagram-feed.php:284
9586
+ #: includes/elements/latest-items.php:249
9587
+ #: includes/elements/latest-posts-slider.php:367
9588
+ #: includes/elements/popular-posts-widget.php:261
9589
+ #: includes/elements/quote.php:156
9590
+ #: includes/elements/recent-posts-grid-carousel.php:744
9591
+ #: includes/elements/recent-posts-land-style.php:381
9592
+ #: includes/elements/recent-posts-masonry.php:411
9593
+ #: includes/elements/recent-posts-tiles-carousel.php:495
9594
+ #: includes/elements/recent-posts-tiles.php:411
9595
+ #: includes/elements/recent-posts-timeline.php:402
9596
+ #: includes/elements/recent-posts-widget.php:221
9597
+ #: includes/elements/recent-products.php:346 includes/elements/search.php:55
9598
+ #: includes/elements/tab-widget.php:162 includes/elements/tabs.php:110
9599
+ #: includes/elements/text.php:937 includes/elements/video.php:172
9600
+ #: public/templates/vcomposer/auxin_vc_extendes.php:73
9601
+ msgid "Extra class name"
9602
+ msgstr "نام کلاس اضافه"
9603
+
9604
+ #: includes/elements/about-widget.php:164
9605
+ #: includes/elements/accordion-widget.php:94
9606
+ #: includes/elements/accordion.php:112 includes/elements/audio.php:126
9607
+ #: includes/elements/before-after.php:142 includes/elements/button.php:260
9608
+ #: includes/elements/code.php:122 includes/elements/contact-box.php:312
9609
+ #: includes/elements/contact-form.php:106 includes/elements/custom-list.php:191
9610
+ #: includes/elements/dropcap.php:97 includes/elements/facebook.php:163
9611
+ #: includes/elements/gallery.php:383 includes/elements/gmap.php:198
9612
+ #: includes/elements/highlight.php:95 includes/elements/image.php:365
9613
+ #: includes/elements/instagram-feed.php:285
9614
+ #: includes/elements/latest-items.php:250
9615
+ #: includes/elements/latest-posts-slider.php:368
9616
+ #: includes/elements/popular-posts-widget.php:262
9617
+ #: includes/elements/quote.php:157
9618
+ #: includes/elements/recent-posts-grid-carousel.php:745
9619
+ #: includes/elements/recent-posts-land-style.php:382
9620
+ #: includes/elements/recent-posts-masonry.php:412
9621
+ #: includes/elements/recent-posts-tiles-carousel.php:496
9622
+ #: includes/elements/recent-posts-tiles.php:412
9623
+ #: includes/elements/recent-posts-timeline.php:403
9624
+ #: includes/elements/recent-posts-widget.php:222
9625
+ #: includes/elements/recent-products.php:347 includes/elements/search.php:56
9626
+ #: includes/elements/tab-widget.php:163 includes/elements/tabs.php:111
9627
+ #: includes/elements/text.php:938 includes/elements/video.php:173
9628
+ msgid ""
9629
+ "If you wish to style particular content element differently, then use this "
9630
+ "field to add a class name and then refer to it in your css file."
9631
+ msgstr ""
9632
+ "اگر می خواهید ظاهر این المان را به طور جداگانه تغییر دهید، از فیلد زیر برای "
9633
+ "افزودن نام کلاس دلخواه استفاده کنید و سپس در فایل css خود به آن ارجاع دهید."
9634
+
9635
+ #: includes/elements/accordion-widget.php:16
9636
+ #, fuzzy
9637
+ msgid " Accordion"
9638
+ msgstr "آکاردئون"
9639
+
9640
+ #: includes/elements/accordion-widget.php:19 includes/elements/accordion.php:19
9641
+ msgid "Collapsible content"
9642
+ msgstr "محتوای بازشونده"
9643
+
9644
+ #: includes/elements/accordion-widget.php:45 includes/elements/accordion.php:45
9645
+ msgid "Accordion title, leave it empty if you don`t need title."
9646
+ msgstr "عنوان آکاردئون، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9647
+
9648
+ #: includes/elements/accordion-widget.php:59 includes/elements/accordion.php:59
9649
+ msgid "Whether to show only 1 element opens at a time or multiple."
9650
+ msgstr "در یک زمان فقط یک المان باز باشد یا چندتا."
9651
+
9652
+ #: includes/elements/accordion-widget.php:77 includes/elements/accordion.php:94
9653
+ msgid "Enter your accordion item content."
9654
+ msgstr "محتوای آیتم آکاردئون را وارد کنید."
9655
+
9656
+ #: includes/elements/accordion.php:16
9657
+ #, fuzzy
9658
+ msgid "Accordion "
9659
+ msgstr "آکاردئون"
9660
+
9661
+ #: includes/elements/accordion.php:76
9662
+ msgid "Accordion label"
9663
+ msgstr "برچسب آکاردئون"
9664
+
9665
+ #: includes/elements/accordion.php:77
9666
+ msgid "Enter your accordion item label."
9667
+ msgstr "برچسب آیتم آکاردئون خود را وارد کنید."
9668
+
9669
+ #: includes/elements/accordion.php:80 includes/elements/accordion.php:97
9670
+ msgid "Accordion Section"
9671
+ msgstr "بخش آکاردئون"
9672
+
9673
+ #: includes/elements/audio.php:18
9674
+ msgid "Audio player"
9675
+ msgstr "پخش کننده صدا"
9676
+
9677
+ #: includes/elements/audio.php:19
9678
+ msgid "It adds an audio player element."
9679
+ msgstr "یک المان پخش کننده صدا اضافه می کند."
9680
+
9681
+ #: includes/elements/audio.php:44
9682
+ msgid "Audio title, leave it empty if you don`t need title."
9683
+ msgstr "عنوان صدا، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9684
+
9685
+ #: includes/elements/audio.php:121 includes/elements/audio.php:136
9686
+ #: includes/elements/button.php:87 includes/elements/button.php:114
9687
+ #: includes/elements/button.php:223
9688
+ msgid "Appearance"
9689
+ msgstr ""
9690
+
9691
+ #: includes/elements/before-after.php:18
9692
+ msgid "Before after comparison slider."
9693
+ msgstr ""
9694
+
9695
+ #: includes/elements/before-after.php:43
9696
+ #, fuzzy
9697
+ msgid "Element title, leave it empty if you don`t need title."
9698
+ msgstr "عناون متن، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
9699
+
9700
+ #: includes/elements/before-after.php:84
9701
+ msgid ""
9702
+ "How much of the before image is visible when the page loads, between 0 to 1."
9703
+ msgstr ""
9704
+
9705
+ #: includes/elements/before-after.php:97
9706
+ #: public/templates/vcomposer/auxin_vc_extendes.php:49
9707
+ msgid "Image size"
9708
+ msgstr "اندازه تصویر"
9709
+
9710
+ #: includes/elements/button.php:19
9711
+ msgid "It adds a button element."
9712
+ msgstr "یک المان دکمه اضافه می کند."
9713
+
9714
+ #: includes/elements/button.php:44 includes/elements/text.php:652
9715
+ msgid "The label of button."
9716
+ msgstr "برچسب دکمه"
9717
+
9718
+ #: includes/elements/button.php:145 includes/elements/text.php:768
9719
+ msgid "Darken the label"
9720
+ msgstr "تیره تر کردن برچسب"
9721
+
9722
+ #: includes/elements/button.php:146
9723
+ #, fuzzy
9724
+ msgid "Darken label of button."
9725
+ msgstr "برچسب دکمه"
9726
+
9727
+ #: includes/elements/button.php:199 includes/general-hooks.php:855
9728
+ #: includes/general-hooks.php:1260
9729
+ #, fuzzy
9730
+ msgid "Animate from Righ"
9731
+ msgstr "متحرک سازی از راست"
9732
+
9733
+ #: includes/elements/button.php:227 includes/general-hooks.php:923
9734
+ #: includes/general-hooks.php:1328
9735
+ #, fuzzy
9736
+ msgid "Button Link"
9737
+ msgstr "اندازه دکمه"
9738
+
9739
+ #: includes/elements/button.php:241 includes/elements/text.php:860
9740
+ msgid "Open link in"
9741
+ msgstr "باز کردن پیوند در"
9742
+
9743
+ #: includes/elements/button.php:247 includes/elements/text.php:866
9744
+ #: includes/general-hooks.php:952 includes/general-hooks.php:1357
9745
+ msgid "Current page"
9746
+ msgstr "صفحه جاری"
9747
+
9748
+ #: includes/elements/button.php:248 includes/elements/text.php:867
9749
+ #: includes/general-hooks.php:953 includes/general-hooks.php:1358
9750
+ msgid "New page"
9751
+ msgstr "صفحه جدید"
9752
+
9753
+ #: includes/elements/code.php:16 includes/elements/code.php:58
9754
+ msgid "Code"
9755
+ msgstr "کد"
9756
+
9757
+ #: includes/elements/code.php:19
9758
+ msgid "It adds a code element."
9759
+ msgstr "یک المان کد اضافه می کند."
9760
+
9761
+ #: includes/elements/code.php:44
9762
+ msgid "Code title, leave it empty if you don`t need title."
9763
+ msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9764
+
9765
+ #: includes/elements/code.php:73
9766
+ msgid "Language"
9767
+ msgstr "زبان"
9768
+
9769
+ #: includes/elements/code.php:79
9770
+ #, fuzzy
9771
+ msgid "JavaScript"
9772
+ msgstr "جاوااسکریپت"
9773
+
9774
+ #: includes/elements/code.php:80
9775
+ msgid "HTML"
9776
+ msgstr ""
9777
+
9778
+ #: includes/elements/code.php:81
9779
+ msgid "XML"
9780
+ msgstr ""
9781
+
9782
+ #: includes/elements/code.php:94
9783
+ msgid "Specifies the theme for code element."
9784
+ msgstr "پوسته المان کد را مشخص می کند."
9785
+
9786
+ #: includes/elements/code.php:100
9787
+ msgid "AndroidStudio"
9788
+ msgstr ""
9789
+
9790
+ #: includes/elements/code.php:101
9791
+ #, fuzzy
9792
+ msgid "Atom Dark"
9793
+ msgstr "تیره"
9794
+
9795
+ #: includes/elements/code.php:102
9796
+ #, fuzzy
9797
+ msgid "Atom Light"
9798
+ msgstr "روشن"
9799
+
9800
+ #: includes/elements/code.php:103
9801
+ #, fuzzy
9802
+ msgid "Github"
9803
+ msgstr "گیت هاب"
9804
+
9805
+ #: includes/elements/code.php:104
9806
+ #, fuzzy
9807
+ msgid "Google Code"
9808
+ msgstr "گوگل کد"
9809
+
9810
+ #: includes/elements/code.php:105
9811
+ msgid "RailsCasts"
9812
+ msgstr ""
9813
+
9814
+ #: includes/elements/code.php:106
9815
+ msgid "Solarized Light"
9816
+ msgstr ""
9817
+
9818
+ #: includes/elements/code.php:107
9819
+ #, fuzzy
9820
+ msgid "Tomorrow Night"
9821
+ msgstr "فردا"
9822
+
9823
+ #: includes/elements/code.php:108
9824
+ #, fuzzy
9825
+ msgid "Tomorrow"
9826
+ msgstr "فردا"
9827
+
9828
+ #: includes/elements/code.php:109
9829
+ msgid "VisualStudio"
9830
+ msgstr ""
9831
+
9832
+ #: includes/elements/code.php:110
9833
+ msgid "ZenBurn"
9834
+ msgstr ""
9835
+
9836
+ #: includes/elements/contact-box.php:19
9837
+ msgid "It adds a contact box element."
9838
+ msgstr "یک جعبه تماس اضافه می کند."
9839
+
9840
+ #: includes/elements/contact-box.php:40
9841
+ msgid "Contact box title, leave it empty if you don`t need title."
9842
+ msgstr "عنوان جعبه تماس، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9843
+
9844
+ #: includes/elements/contact-box.php:81
9845
+ msgid "Contact box address."
9846
+ msgstr "آدرس جعبه تماس"
9847
+
9848
+ #: includes/elements/contact-box.php:93
9849
+ msgid "Show socials"
9850
+ msgstr "شکلک های شبکه های اجتماعی"
9851
+
9852
+ #: includes/elements/contact-box.php:94
9853
+ #, fuzzy
9854
+ msgid "Show site socials below the info."
9855
+ msgstr "نمایش شبکه های اجتماعی در پایین اطلاعات"
9856
+
9857
+ #: includes/elements/contact-box.php:140 includes/elements/contact-box.php:158
9858
+ #: includes/elements/contact-box.php:175 includes/elements/contact-box.php:192
9859
+ #: includes/elements/contact-box.php:209 includes/elements/contact-box.php:236
9860
+ #: includes/elements/contact-box.php:254 includes/elements/contact-box.php:272
9861
+ #: includes/elements/contact-box.php:289 includes/elements/contact-box.php:307
9862
+ #, fuzzy
9863
+ msgid "Map Options"
9864
+ msgstr "عنوان"
9865
+
9866
+ #: includes/elements/contact-box.php:145
9867
+ msgid "Height of the map in pixels."
9868
+ msgstr "ارتفاع نقشه بر حسب پیکسل"
9869
+
9870
+ #: includes/elements/contact-form.php:19
9871
+ msgid "It adds a contact form element."
9872
+ msgstr "یک المان فرم تماس اضافه می کند."
9873
+
9874
+ #: includes/elements/contact-form.php:44
9875
+ msgid "Contact form title, leave it empty if you don`t need title."
9876
+ msgstr "عنوان فرم تماس، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9877
+
9878
+ #: includes/elements/contact-form.php:71
9879
+ msgid "Contact form type"
9880
+ msgstr "نوع فرم تماس"
9881
+
9882
+ #: includes/elements/contact-form.php:77
9883
+ msgid "Contact Form 7 plugin"
9884
+ msgstr "افزونه فرم تماس 7"
9885
+
9886
+ #: includes/elements/contact-form.php:88
9887
+ msgid "Contact form 7 shortcode"
9888
+ msgstr "کد کوتاه فرم تماس 7"
9889
+
9890
+ #: includes/elements/contact-form.php:89
9891
+ msgid "Put one of your Contact form 7 shortcodes that you created."
9892
+ msgstr "کد کوتاه یکی از فرم های تماس 7 خود را در اینجا وارد کنید."
9893
+
9894
+ #: includes/elements/contact-form.php:155
9895
+ msgid "Please enter your name."
9896
+ msgstr "لطفا نام خود را وارد کنید."
9897
+
9898
+ #: includes/elements/contact-form.php:162
9899
+ msgid "Please enter your email address."
9900
+ msgstr "لطفا آدرس ایمیل خود را وارد کنید."
9901
+
9902
+ #: includes/elements/contact-form.php:165
9903
+ msgid "You entered an invalid email address."
9904
+ msgstr "لطفا آدرس ایمیل معتبری وارد کنید."
9905
+
9906
+ #: includes/elements/contact-form.php:176
9907
+ msgid "Please enter a message."
9908
+ msgstr "لطفا پیامی را وارد کنید."
9909
+
9910
+ #: includes/elements/contact-form.php:213
9911
+ msgid "sorry, some problems occured with your form submission:"
9912
+ msgstr "متاسفیم، خطایی در ارسال فرم شما رخ داده است."
9913
+
9914
+ #: includes/elements/contact-form.php:231
9915
+ msgid "Thanks for your Message. Your message sent successfully."
9916
+ msgstr "از پیام شما متشکریم. پیام شما با موفقیت ارسال شد."
9917
+
9918
+ #: includes/elements/custom-list.php:19
9919
+ #, fuzzy
9920
+ msgid "Icon List"
9921
+ msgstr "اندازه شکلک"
9922
+
9923
+ #: includes/elements/custom-list.php:45
9924
+ #, fuzzy
9925
+ msgid "leave it empty if you don`t need title."
9926
+ msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
9927
+
9928
+ #: includes/elements/custom-list.php:90
9929
+ #, fuzzy
9930
+ msgid "Text Tag"
9931
+ msgstr "تراز متن"
9932
+
9933
+ #: includes/elements/custom-list.php:122
9934
+ msgid "Text Seconday"
9935
+ msgstr ""
9936
+
9937
+ #: includes/elements/custom-list.php:155
9938
+ msgid "Whether to display a line that connects two texts in each list item."
9939
+ msgstr ""
9940
+
9941
+ #: includes/elements/custom-list.php:173
9942
+ #, fuzzy
9943
+ msgid "Whether to display a divider between list items or not."
9944
+ msgstr "ویدیو به طور خودکار پخش شود یا خیر."
9945
+
9946
+ #: includes/elements/divider.php:19
9947
+ #, fuzzy
9948
+ msgid "Horizontal separator"
9949
+ msgstr "جداکننده افقس"
9950
+
9951
+ #: includes/elements/divider.php:43 includes/elements/highlight.php:42
9952
+ msgid "Divider style"
9953
+ msgstr "ظاهر جداکننده"
9954
+
9955
+ #: includes/elements/divider.php:83
9956
+ #, fuzzy
9957
+ msgid "Divider size"
9958
+ msgstr "ظاهر جداکننده"
9959
+
9960
+ #: includes/elements/divider.php:123
9961
+ msgid "Margin top (px)"
9962
+ msgstr "فاصله بیرونی بالا (پیکسل)"
9963
+
9964
+ #: includes/elements/divider.php:124
9965
+ msgid "Adds space above the divider in pixels."
9966
+ msgstr "فضای خالی (برحسب پیکسل) به بالای جداکننده اضافه می کند."
9967
+
9968
+ #: includes/elements/divider.php:137
9969
+ msgid "Margin bottom (px)"
9970
+ msgstr "فاصله بیرونی پایین (پیکسل)"
9971
+
9972
+ #: includes/elements/divider.php:138
9973
+ #, fuzzy
9974
+ msgid "Adds space below the divider in pixels."
9975
+ msgstr "فضای خالی (برحسب پیکسل) به زیر جداکننده اضافه می کند."
9976
+
9977
+ #: includes/elements/divider.php:152
9978
+ msgid ""
9979
+ "If you wish to style particular content element differently, then use this "
9980
+ "field to add a class name and then refer to it in your css file. you can add "
9981
+ "multiple CSS class by separating them with space."
9982
+ msgstr ""
9983
+ "اگر می خواهید ظاهر این المان را به طور جداگانه تغییر دهید، از فیلد زیر برای "
9984
+ "افزودن نام کلاس دلخواه استفاده کنید و سپس در فایل css خود به آن ارجاع دهید. "
9985
+ "می توانید چند نام کلاس را با کاما از هم جدا کنید."
9986
+
9987
+ #: includes/elements/dropcap.php:15
9988
+ #, fuzzy
9989
+ msgid "Dropcap"
9990
+ msgstr "ظاهر دراپ کپ"
9991
+
9992
+ #: includes/elements/dropcap.php:18
9993
+ msgid "Big styled character at the beginning of paragraph"
9994
+ msgstr "حرف بزرگ سبک دهی شده در اول پاراگراف"
9995
+
9996
+ #: includes/elements/dropcap.php:42
9997
+ msgid "Dropcap style"
9998
+ msgstr "ظاهر دراپ کپ"
9999
+
10000
+ #: includes/elements/dropcap.php:64 includes/general-hooks.php:353
10001
+ msgid "Outline Square"
10002
+ msgstr "مربع با خط بیرونی"
10003
+
10004
+ #: includes/elements/dropcap.php:68
10005
+ msgid "Round Square"
10006
+ msgstr "مربع لبه گرد"
10007
+
10008
+ #: includes/elements/dropcap.php:76 includes/general-hooks.php:352
10009
+ msgid "Outline Circle"
10010
+ msgstr "دایره با خط بیرونی"
10011
+
10012
+ #: includes/elements/dropcap.php:83
10013
+ msgid "Enter a text to show as dropcap text."
10014
+ msgstr "متنی را برای نمایش به شکل دراپ کپ وارد کنید."
10015
+
10016
+ #: includes/elements/facebook.php:16
10017
+ #, fuzzy
10018
+ msgid "Custom Facebook Feed"
10019
+ msgstr "[فلوکس] خوراک فیسبوک سفارشی"
10020
+
10021
+ #: includes/elements/facebook.php:19
10022
+ msgid "It uses Custom Facebook Feed plugin."
10023
+ msgstr "از افزونه خوراک دلخواه وردپرس استفاده می کند."
10024
+
10025
+ #: includes/elements/facebook.php:43
10026
+ msgid "Page ID"
10027
+ msgstr "شناسه برگه"
10028
+
10029
+ #: includes/elements/facebook.php:44
10030
+ msgid ""
10031
+ "ID of your Facebook Page or Group. Use %sthis tool%s to help you in finding "
10032
+ "this."
10033
+ msgstr ""
10034
+ "شناسه صفحه یا گروه شما در فیسبوک. برای پیداکردن شناسه خود می توانید از %sاین "
10035
+ "ابزار%s استفاده کنید."
10036
+
10037
+ #: includes/elements/facebook.php:58
10038
+ msgid "Page type"
10039
+ msgstr "نوع صفحه"
10040
+
10041
+ #: includes/elements/facebook.php:59
10042
+ msgid "Specifies whether to display posts from a page or group."
10043
+ msgstr "مشخص می کند پست ها از یک صفحه یا گروه نمایش داده شوند."
10044
+
10045
+ #: includes/elements/facebook.php:63 includes/general-functions.php:1621
10046
+ msgid "Page"
10047
+ msgstr "صفحه"
10048
+
10049
+ #: includes/elements/facebook.php:64
10050
+ msgid "Group"
10051
+ msgstr "گروه"
10052
+
10053
+ #: includes/elements/facebook.php:76
10054
+ msgid "Number of posts"
10055
+ msgstr "تعداد نوشته ها"
10056
+
10057
+ #: includes/elements/facebook.php:77
10058
+ msgid "The number of posts you wish to display."
10059
+ msgstr "تعداد پست هایی که می خواهید نمایش داده شوند."
10060
+
10061
+ #: includes/elements/facebook.php:91
10062
+ msgid "Display posts by others"
10063
+ msgstr "نمایش پست هایی که دیگران نوشته اند"
10064
+
10065
+ #: includes/elements/facebook.php:92
10066
+ msgid ""
10067
+ "Specifies to display posts by only the page owner, anyone who posts on your "
10068
+ "page, or only others who post on your page."
10069
+ msgstr ""
10070
+ "مشخص می کند فقط پست هایی که شما نوشته اید، هر پستی که در صفحه شما نوشته شده "
10071
+ "است، یا فقط پست هایی که دیگران در صفحه شما نوشته اند نمایش داده شود."
10072
+
10073
+ #: includes/elements/facebook.php:96
10074
+ msgid "Only the page owner"
10075
+ msgstr "فقط صاحب برگه"
10076
+
10077
+ #: includes/elements/facebook.php:97
10078
+ msgid "Page owner and other people"
10079
+ msgstr "صاحب برگه و دیگران"
10080
+
10081
+ #: includes/elements/facebook.php:98
10082
+ msgid "Only other people"
10083
+ msgstr "فقط دیگران"
10084
+
10085
+ #: includes/elements/facebook.php:110
10086
+ msgid "Post text length"
10087
+ msgstr "طول متن نوشته"
10088
+
10089
+ #: includes/elements/facebook.php:111
10090
+ msgid "The maximum character length of the post text."
10091
+ msgstr "حداکثر تعداد کاراکترها در متن نوشته."
10092
+
10093
+ #: includes/elements/facebook.php:123
10094
+ msgid "Display post author"
10095
+ msgstr "نمایش نویسنده نوشته"
10096
+
10097
+ #: includes/elements/facebook.php:124
10098
+ msgid "Enable it to display name and avatar of the post author."
10099
+ msgstr "برای نمایش نام و آواتار نویسنده پست این گزینه را فعال کنید."
10100
+
10101
+ #: includes/elements/facebook.php:136
10102
+ msgid "Display the feed header"
10103
+ msgstr "نمایش سربرگ خوراک"
10104
+
10105
+ #: includes/elements/facebook.php:137
10106
+ msgid "Enable it to display a customizable header at the top of the feed."
10107
+ msgstr "برای نمایش سربرگ قابل شخصی سازی در بالای خوراک این گزینه را فعال کنید."
10108
+
10109
+ #: includes/elements/facebook.php:149
10110
+ msgid "Ajax"
10111
+ msgstr "آیجکس"
10112
+
10113
+ #: includes/elements/facebook.php:150
10114
+ msgid "Enable it for being loaded via Ajax."
10115
+ msgstr "برای بارگذاری محتوا به صورت ایجکسی این گزینه را فعال کنید."
10116
+
10117
+ #: includes/elements/facebook.php:173
10118
+ msgid "Extras"
10119
+ msgstr ""
10120
+
10121
+ #: includes/elements/flickr.php:16
10122
+ #, fuzzy
10123
+ msgid "Flickr Justified Gallery"
10124
+ msgstr "[فلوکس] گالری تصویر مرتب شده فلیکر"
10125
+
10126
+ #: includes/elements/flickr.php:19
10127
+ msgid "It uses Flickr Justified Gallery plugin."
10128
+ msgstr "از افزونه گالری مرتب شده فلیکر استفاده می کند."
10129
+
10130
+ #: includes/elements/flickr.php:43
10131
+ msgid "User ID"
10132
+ msgstr "شناسه کاربر"
10133
+
10134
+ #: includes/elements/flickr.php:44
10135
+ msgid ""
10136
+ "Displays the photostream of the specified user, no matter what is the "
10137
+ "default user ID in the settings. Remember that you can use %sidgettr%s to "
10138
+ "retrieve the user_id."
10139
+ msgstr ""
10140
+ "یک جریان تصویر از کاربر مشخص شده را نمایش می دهد، مهم نیست شناسه پیش فرض "
10141
+ "کاربر در تنظیمات چه چیزی باشد. به یاد داشته باشید می توانید از %sidgettr%s "
10142
+ "برای دستیابی به شناسه کاربر استفاده کنید."
10143
+
10144
+ #: includes/elements/flickr.php:58
10145
+ msgid "Flickr image type"
10146
+ msgstr "نوع تصویر فلیکر"
10147
+
10148
+ #: includes/elements/flickr.php:63
10149
+ msgid "Photostream"
10150
+ msgstr "جریان تصویر"
10151
+
10152
+ #: includes/elements/flickr.php:64
10153
+ msgid "Galleries"
10154
+ msgstr "گالری ها"
10155
+
10156
+ #: includes/elements/flickr.php:65
10157
+ msgid "Album"
10158
+ msgstr "آلبوم"
10159
+
10160
+ #: includes/elements/flickr.php:66 includes/elements/flickr.php:115
10161
+ msgid "Group pools"
10162
+ msgstr "'v,i"
10163
+
10164
+ #: includes/elements/flickr.php:67 includes/elements/flickr.php:133
10165
+ msgid "Tags"
10166
+ msgstr "برچسب ها"
10167
+
10168
+ #: includes/elements/flickr.php:79
10169
+ msgid "Gallery ID"
10170
+ msgstr "شناسه گالری"
10171
+
10172
+ #: includes/elements/flickr.php:80
10173
+ msgid ""
10174
+ "To show the photos of a particular gallery, you need to know its id. For "
10175
+ "example, the id of the gallery located in the URL: http://www.flickr.com/"
10176
+ "photos/miro-mannino/galleries/72157636382842016/ is: 72157636382842016"
10177
+ msgstr ""
10178
+ "برای نشان دادن تصاویر از یک گالری مشخص، نیاز است شناسه آن را بدانید. برای "
10179
+ "مثال، شناسه گالری در آدرس: http://www.flickr.com/photos/miro-mannino/"
10180
+ "galleries/72157636382842016 برابر است با : 72157636382842016"
10181
+
10182
+ #: includes/elements/flickr.php:97
10183
+ msgid "Album ID"
10184
+ msgstr "شناسه آلبوم"
10185
+
10186
+ #: includes/elements/flickr.php:98
10187
+ msgid ""
10188
+ "To show the photos of a particular photo set (also called \"album\"), you "
10189
+ "need to know its photoset_id. For example, the photoset_id of the photo set "
10190
+ "located in the URL: http://www.flickr.com/photos/miro-mannino/"
10191
+ "sets/72157629228993613/ is: 72157629228993613"
10192
+ msgstr ""
10193
+ "برای نمایش تصاویر از یک مجموعه تصویر مشخص (که \"آلبوم\" نامیده شده)، نیاز "
10194
+ "است تا شناسه آلبوم را بدانید. برای مثال در آدرس: http://www.flickr.com/"
10195
+ "photos/miro-mannino/sets/72157629228993613 شناسه آلبوم برابر است با: "
10196
+ "72157629228993613"
10197
+
10198
+ #: includes/elements/flickr.php:116
10199
+ msgid ""
10200
+ "Display photos of a particular group pool, you need to know the group id, "
10201
+ "that you can retrieve using %sidgettr%s."
10202
+ msgstr ""
10203
+ "تصاویر از یک گروه خاص را نشان می دهد، نیاز است شناسه گروه را بدانید که می "
10204
+ "توانید از ابزار %sidgettr%s برای دستیابی به آن استفاده کنید."
10205
+
10206
+ #: includes/elements/flickr.php:134
10207
+ msgid ""
10208
+ "Display photos that have some particular tags, Seprate words with , for "
10209
+ "example: cat, square, nikon"
10210
+ msgstr ""
10211
+ "تصاویری از برچسب های مشخص را نشان می دهد که برچسب ها با کاما جدا می شوند. "
10212
+ "برای مثال: گربه، مربع، نیکون"
10213
+
10214
+ #: includes/elements/flickr.php:152
10215
+ msgid ""
10216
+ "In case of using Colorbox or Swipebox, you need to enable it on Flickr "
10217
+ "Justified Gallery plugin settings."
10218
+ msgstr ""
10219
+ "برای مواردی که م یخواهید از Colorbox یا Swipebox استفاده کنید، لازم است آن "
10220
+ "را در تنظیمات افزونه گالری مرتب شده فیلکر فعال کنید."
10221
+
10222
+ #: includes/elements/flickr.php:157
10223
+ msgid "Colorbox"
10224
+ msgstr "جعبه رنگ"
10225
+
10226
+ #: includes/elements/flickr.php:158
10227
+ msgid "Swipebox"
10228
+ msgstr "Swipebox"
10229
+
10230
+ #: includes/elements/flickr.php:170
10231
+ msgid "Images height"
10232
+ msgstr "ارتفاع تصاویر"
10233
+
10234
+ #: includes/elements/flickr.php:171
10235
+ msgid "You can use the this option to set images height in px."
10236
+ msgstr "بمی توانید از این تنظیمات برای تنظیم ارتفاع تصویر استفاده کنید."
10237
+
10238
+ #: includes/elements/flickr.php:185
10239
+ msgid "Max number of photos"
10240
+ msgstr "بیشترین تعداد تصاویر"
10241
+
10242
+ #: includes/elements/flickr.php:186
10243
+ msgid ""
10244
+ "Maximum number of photos. Please note if pagination option is activaited "
10245
+ "then this options is used as maximum number of photos per page."
10246
+ msgstr ""
10247
+ "بیشترین تعداد تصاویر. لطفا توجه کنید اگر تنظیمات صفحه بندی فعال باشد این "
10248
+ "تنظیمات نشانگر تعداد تصاویر در هر ثفحه خواهد بود."
10249
+
10250
+ #: includes/elements/flickr.php:206
10251
+ msgid "Previous and Next"
10252
+ msgstr "قبلی و بعدی"
10253
+
10254
+ #: includes/elements/flickr.php:207
10255
+ msgid "Page Numbers"
10256
+ msgstr "شماره صفحات"
10257
+
10258
+ #: includes/elements/flickr.php:219
10259
+ msgid "Fixed height"
10260
+ msgstr "ارتفاع ثابت"
10261
+
10262
+ #: includes/elements/flickr.php:220
10263
+ msgid "Each row has the same height, but the images will be cut more."
10264
+ msgstr "همه ردیف ها ارتفاع یکسان دارند، اما تصاویر بیشتر برش خورده می شوند."
10265
+
10266
+ #: includes/elements/flickr.php:232
10267
+ msgid "Randomize images order"
10268
+ msgstr "ترتیب تصادفی برای تصاویر"
10269
+
10270
+ #: includes/elements/flickr.php:245
10271
+ msgid "Margin between the images"
10272
+ msgstr "فاصله بیرونی بین تصاویر"
10273
+
10274
+ #: includes/elements/flickr.php:246
10275
+ msgid "Specifies the space between images."
10276
+ msgstr "فضای خالی بین تصاویر را مشخص می کند."
10277
+
10278
+ #: includes/elements/gallery.php:18
10279
+ msgid "Filterable and grid gallery with lightbox"
10280
+ msgstr "شبکه گالری قابل فیلترگذاری با لایت باکس"
10281
+
10282
+ #: includes/elements/gallery.php:154
10283
+ msgid "Order images by query"
10284
+ msgstr "مرتب سازی تصاویر بر اساس کوئری"
10285
+
10286
+ #: includes/elements/gallery.php:168
10287
+ msgid "Order images ascending or descending"
10288
+ msgstr "مرتب سازی صعودی یا نزولی تصاویر"
10289
+
10290
+ #: includes/elements/gallery.php:211
10291
+ #: includes/elements/recent-posts-grid-carousel.php:475
10292
+ #: includes/elements/recent-posts-masonry.php:357
10293
+ #: includes/elements/recent-products.php:274
10294
+ msgid "Number of columns"
10295
+ msgstr "تعداد ستون ها"
10296
+
10297
+ #: includes/elements/gallery.php:232
10298
+ #: includes/elements/recent-posts-grid-carousel.php:493
10299
+ #: includes/elements/recent-posts-masonry.php:375
10300
+ #: includes/elements/recent-products.php:292
10301
+ msgid "Number of columns in tablet size"
10302
+ msgstr "تعداد ستون ها در تبلت"
10303
+
10304
+ #: includes/elements/gallery.php:254
10305
+ #: includes/elements/recent-posts-grid-carousel.php:512
10306
+ #: includes/elements/recent-posts-masonry.php:394
10307
+ #: includes/elements/recent-products.php:311
10308
+ msgid "Number of columns in phone size"
10309
+ msgstr "تعداد ستون ها در موبایل"
10310
+
10311
+ #: includes/elements/gallery.php:274
10312
+ msgid "Space"
10313
+ msgstr "فضای خالی"
10314
+
10315
+ #: includes/elements/gallery.php:275
10316
+ msgid "Space between gallery items in pixel."
10317
+ msgstr "فضای خالی بین تصاویر گالری بر حسب پیکسل"
10318
+
10319
+ #: includes/elements/gallery.php:315
10320
+ msgid "Link images to"
10321
+ msgstr "لینک کردن تصاویر به"
10322
+
10323
+ #: includes/elements/gallery.php:324
10324
+ msgid "File"
10325
+ msgstr "فایل"
10326
+
10327
+ #: includes/elements/gallery.php:335
10328
+ msgid "Enable pagination"
10329
+ msgstr "فعال سازی صفحه بندی"
10330
+
10331
+ #: includes/elements/gallery.php:349
10332
+ msgid "Only load images that are in visible page"
10333
+ msgstr ""
10334
+
10335
+ #: includes/elements/general-element-fields.php:21
10336
+ #, fuzzy
10337
+ msgid "Transition"
10338
+ msgstr "موقعیت"
10339
+
10340
+ #: includes/elements/general-element-fields.php:22
10341
+ msgid "Choose the type of tranistion while the element enters in view."
10342
+ msgstr ""
10343
+
10344
+ #: includes/elements/general-element-fields.php:28
10345
+ #, fuzzy
10346
+ msgid "Short from left"
10347
+ msgstr "متحرک سازی از چپ"
10348
+
10349
+ #: includes/elements/general-element-fields.php:29
10350
+ #, fuzzy
10351
+ msgid "Short from right"
10352
+ msgstr "متحرک سازی از راست"
10353
+
10354
+ #: includes/elements/general-element-fields.php:30
10355
+ #, fuzzy
10356
+ msgid "Short from bottom"
10357
+ msgstr "راست پایین"
10358
+
10359
+ #: includes/elements/general-element-fields.php:31
10360
+ msgid "Short from top"
10361
+ msgstr ""
10362
+
10363
+ #: includes/elements/general-element-fields.php:32
10364
+ #, fuzzy
10365
+ msgid "Medium from left"
10366
+ msgstr "متحرک سازی از چپ"
10367
+
10368
+ #: includes/elements/general-element-fields.php:33
10369
+ #, fuzzy
10370
+ msgid "Medium from right"
10371
+ msgstr "متحرک سازی از راست"
10372
+
10373
+ #: includes/elements/general-element-fields.php:34
10374
+ #, fuzzy
10375
+ msgid "Medium from bottom"
10376
+ msgstr "چپ پایین"
10377
+
10378
+ #: includes/elements/general-element-fields.php:35
10379
+ msgid "Medium from top"
10380
+ msgstr ""
10381
+
10382
+ #: includes/elements/general-element-fields.php:36
10383
+ #, fuzzy
10384
+ msgid "Long from left"
10385
+ msgstr "متحرک سازی از چپ"
10386
+
10387
+ #: includes/elements/general-element-fields.php:37
10388
+ #, fuzzy
10389
+ msgid "Long from right"
10390
+ msgstr "ارتفاع لوگو"
10391
+
10392
+ #: includes/elements/general-element-fields.php:38
10393
+ #, fuzzy
10394
+ msgid "Long from bottom"
10395
+ msgstr "چپ پایین"
10396
+
10397
+ #: includes/elements/general-element-fields.php:39
10398
+ msgid "Long from top"
10399
+ msgstr ""
10400
+
10401
+ #: includes/elements/general-element-fields.php:40
10402
+ msgid "Small scale down"
10403
+ msgstr ""
10404
+
10405
+ #: includes/elements/general-element-fields.php:41
10406
+ msgid "Medium scale down"
10407
+ msgstr ""
10408
+
10409
+ #: includes/elements/general-element-fields.php:42
10410
+ msgid "Large scale down"
10411
+ msgstr ""
10412
+
10413
+ #: includes/elements/general-element-fields.php:43
10414
+ msgid "Small scale up"
10415
+ msgstr ""
10416
+
10417
+ #: includes/elements/general-element-fields.php:44
10418
+ msgid "Medium scale up"
10419
+ msgstr ""
10420
+
10421
+ #: includes/elements/general-element-fields.php:45
10422
+ msgid "Large scale up"
10423
+ msgstr ""
10424
+
10425
+ #: includes/elements/general-element-fields.php:52
10426
+ msgid "The transition duration in milliseconds."
10427
+ msgstr ""
10428
+
10429
+ #: includes/elements/general-element-fields.php:62
10430
+ msgid "The delay before starting the animation in milliseconds."
10431
+ msgstr ""
10432
+
10433
+ #: includes/elements/general-element-fields.php:69
10434
+ #, fuzzy
10435
+ msgid "Repeat"
10436
+ msgstr "تکرار ویدیو"
10437
+
10438
+ #: includes/elements/general-element-fields.php:70
10439
+ msgid ""
10440
+ "Choose \"yes\" to repeat the animation, or choose \"no\" to display the "
10441
+ "animation only once."
10442
+ msgstr ""
10443
+
10444
+ #: includes/elements/general-element-fields.php:83
10445
+ msgid "The vertical offset in pixels in order to start playing the animation."
10446
+ msgstr ""
10447
+
10448
+ #: includes/elements/gmap.php:15
10449
+ #, fuzzy
10450
+ msgid "Map "
10451
+ msgstr "نوع نقشه"
10452
+
10453
+ #: includes/elements/gmap.php:18
10454
+ msgid "Google map block"
10455
+ msgstr "بلوک نقشه گوگل"
10456
+
10457
+ #: includes/elements/gmap.php:39
10458
+ msgid "Map title, leave it empty if you don`t need title."
10459
+ msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
10460
+
10461
+ #: includes/elements/highlight.php:15
10462
+ #, fuzzy
10463
+ msgid "Highlight"
10464
+ msgstr "متن هایلایت شده"
10465
+
10466
+ #: includes/elements/highlight.php:43
10467
+ msgid "The style of divider."
10468
+ msgstr "ظاهر جداکننده."
10469
+
10470
+ #: includes/elements/highlight.php:56
10471
+ msgid "Red"
10472
+ msgstr "قرمز"
10473
+
10474
+ #: includes/elements/highlight.php:61
10475
+ msgid "Blue"
10476
+ msgstr "آبی"
10477
+
10478
+ #: includes/elements/highlight.php:66
10479
+ msgid "Yellow"
10480
+ msgstr "زرد"
10481
+
10482
+ #: includes/elements/highlight.php:71
10483
+ msgid "Green"
10484
+ msgstr "سبز"
10485
+
10486
+ #: includes/elements/highlight.php:79
10487
+ msgid "Enter the text to be highlighted."
10488
+ msgstr "متنی که می خواهید هایلایت شود را وارد کنید."
10489
+
10490
+ #: includes/elements/image.php:18
10491
+ msgid "Image with lightbox option"
10492
+ msgstr "تنظیمات تصویر با لایت باکس"
10493
+
10494
+ #: includes/elements/image.php:43
10495
+ msgid "Image title, leave it empty if you don`t need title."
10496
+ msgstr "عنوان تصویر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
10497
+
10498
+ #: includes/elements/image.php:72
10499
+ msgid "Image hover"
10500
+ msgstr "تصویر شناور"
10501
+
10502
+ #: includes/elements/image.php:88
10503
+ msgid "Choose a pre-defined or custom image size."
10504
+ msgstr ""
10505
+
10506
+ #: includes/elements/image.php:93
10507
+ msgid "Original"
10508
+ msgstr "اصلی"
10509
+
10510
+ #: includes/elements/image.php:94
10511
+ msgid "Large (%sx%s)"
10512
+ msgstr ""
10513
+
10514
+ #: includes/elements/image.php:95
10515
+ msgid "Medium Large (%sx%s)"
10516
+ msgstr ""
10517
+
10518
+ #: includes/elements/image.php:96
10519
+ #, fuzzy
10520
+ msgid "Medium (%sx%s)"
10521
+ msgstr "متوسط"
10522
+
10523
+ #: includes/elements/image.php:97
10524
+ #, fuzzy
10525
+ msgid "Thumbnail (%sx%s)"
10526
+ msgstr "بندانگشتی"
10527
+
10528
+ #: includes/elements/image.php:146
10529
+ msgid "Image alignment in content."
10530
+ msgstr "تراز تصویر در محتوا."
10531
+
10532
+ #: includes/elements/image.php:182
10533
+ msgid "Open large image in lightbox"
10534
+ msgstr "بازشدن تصویر بزرگ در لایت باکس"
10535
+
10536
+ #: includes/elements/image.php:196
10537
+ #, fuzzy
10538
+ msgid "Preload the image"
10539
+ msgstr "تصویر پوستر"
10540
+
10541
+ #: includes/elements/image.php:210
10542
+ #, fuzzy
10543
+ msgid "Preview preloading"
10544
+ msgstr "پیش نمایش صفحه ورود"
10545
+
10546
+ #: includes/elements/image.php:224
10547
+ msgid "Link URL"
10548
+ msgstr "آدرس پیوند"
10549
+
10550
+ #: includes/elements/image.php:242
10551
+ msgid "Target"
10552
+ msgstr "هدف"
10553
+
10554
+ #: includes/elements/image.php:243
10555
+ msgid "Open in new page or this page."
10556
+ msgstr "در صفحه جدید یا در همین صفحه باز شود."
10557
+
10558
+ #: includes/elements/image.php:248
10559
+ msgid "Self"
10560
+ msgstr "همین صفحه"
10561
+
10562
+ #: includes/elements/image.php:249 includes/general-functions.php:2011
10563
+ msgid "Blank"
10564
+ msgstr "خالی"
10565
+
10566
+ #: includes/elements/image.php:271 includes/elements/image.php:283
10567
+ msgid "Effects"
10568
+ msgstr ""
10569
+
10570
+ #: includes/elements/instagram-feed.php:15
10571
+ #, fuzzy
10572
+ msgid "instagram feed"
10573
+ msgstr "[فلوکس] خوراک اینستاگرام"
10574
+
10575
+ #: includes/elements/instagram-feed.php:18
10576
+ msgid "It adds an instagram feed element."
10577
+ msgstr "یک المان خوراک اینستاگرام اضافه می کند."
10578
+
10579
+ #: includes/elements/instagram-feed.php:43
10580
+ msgid "A title for instagram element"
10581
+ msgstr "عنوانی برای المان اینستاگرام"
10582
+
10583
+ #: includes/elements/instagram-feed.php:56
10584
+ msgid "Instagram user ID"
10585
+ msgstr "شناسه کاربر اینستاگرام"
10586
+
10587
+ #: includes/elements/instagram-feed.php:58
10588
+ msgid ""
10589
+ "Instagram User ID. Separate multiple IDs by commas. You can find the User ID "
10590
+ "with %sthis tool%s."
10591
+ msgstr ""
10592
+ "شناسه کاربر اینستاگرام. شناسه ها را با کاما از هم جدا کنید. می توانید شناسه "
10593
+ "کاربر را با %sاین ابزار%s پیدا کنید."
10594
+
10595
+ #: includes/elements/instagram-feed.php:75
10596
+ msgid "Number of photo"
10597
+ msgstr "تعداد عکس ها"
10598
+
10599
+ #: includes/elements/instagram-feed.php:76
10600
+ msgid "Number of photos to display initially. Maximum is 33."
10601
+ msgstr "تعداد تصاویر برای نمایش اولیه. حداکثر 33."
10602
+
10603
+ #: includes/elements/instagram-feed.php:90
10604
+ msgid "Resolution/size of the photos. "
10605
+ msgstr "رزولوشن/اندازه تصاویر."
10606
+
10607
+ #: includes/elements/instagram-feed.php:96 includes/general-hooks.php:1584
10608
+ msgid "Auto"
10609
+ msgstr "خودکار"
10610
+
10611
+ #: includes/elements/instagram-feed.php:97
10612
+ msgid "Thumb"
10613
+ msgstr "بند انگشتی"
10614
+
10615
+ #: includes/elements/instagram-feed.php:111
10616
+ msgid "Number of columns in the feed. 1 - 10."
10617
+ msgstr "تعداد ستون ها در خوراک. 1 - 10"
10618
+
10619
+ #: includes/elements/instagram-feed.php:125
10620
+ msgid "Spacing around the photos"
10621
+ msgstr "فضای خالی اطراف عکس"
10622
+
10623
+ #: includes/elements/instagram-feed.php:140
10624
+ msgid "Unit of the spacing."
10625
+ msgstr "واحد فضای خالی"
10626
+
10627
+ #: includes/elements/instagram-feed.php:146
10628
+ #: includes/elements/instagram-feed.php:212
10629
+ msgid "Percentage (%)"
10630
+ msgstr "درصد (%)"
10631
+
10632
+ #: includes/elements/instagram-feed.php:147
10633
+ #: includes/elements/instagram-feed.php:213
10634
+ msgid "Pixels (px)"
10635
+ msgstr "پیکسل"
10636
+
10637
+ #: includes/elements/instagram-feed.php:192
10638
+ msgid "The height of the feed"
10639
+ msgstr "ارتفاع خوراک"
10640
+
10641
+ #: includes/elements/instagram-feed.php:206
10642
+ msgid "Unit of the height."
10643
+ msgstr "واحد ارتفاع."
10644
+
10645
+ #: includes/elements/instagram-feed.php:239
10646
+ msgid "Show header"
10647
+ msgstr "نمایش سربرگ"
10648
+
10649
+ #: includes/elements/instagram-feed.php:240
10650
+ msgid "Whether to show the feed header."
10651
+ msgstr "سربرگ خوراک نمایش داده شود یا خیر."
10652
+
10653
+ #: includes/elements/instagram-feed.php:254
10654
+ msgid "Show follow button"
10655
+ msgstr "نمایش دکمه دنبال کردن"
10656
+
10657
+ #: includes/elements/instagram-feed.php:255
10658
+ msgid "Whether to show the Follow on Instagram button."
10659
+ msgstr "دکمه دنبال کردن اینستاگرام نمایش داده شود یا خیر."
10660
+
10661
+ #: includes/elements/instagram-feed.php:269
10662
+ msgid "Show load more button"
10663
+ msgstr "نمایش دکمه بارگذاری بیشتر"
10664
+
10665
+ #: includes/elements/instagram-feed.php:270
10666
+ msgid " Whether to show the load more button."
10667
+ msgstr "دکمه نمایش بیشتر نشان داده شود یا نه."
10668
+
10669
+ #: includes/elements/latest-items.php:10
10670
+ msgid "Auxin latest_items"
10671
+ msgstr "اکسین latest_items"
10672
+
10673
+ #: includes/elements/latest-items.php:13
10674
+ msgid "This is will add latest_items element"
10675
+ msgstr "یک المان latest_items اضافه می کند."
10676
+
10677
+ #: includes/elements/latest-items.php:39
10678
+ msgid "col"
10679
+ msgstr "col"
10680
+
10681
+ #: includes/elements/latest-items.php:40
10682
+ #: includes/elements/sample-element.php:66
10683
+ msgid "If you choose Callout a big box appears around the content"
10684
+ msgstr ""
10685
+
10686
+ #: includes/elements/latest-items.php:51
10687
+ msgid "none"
10688
+ msgstr "هیچکدام"
10689
+
10690
+ #: includes/elements/latest-items.php:51
10691
+ msgid "caption-over"
10692
+ msgstr "caption-over"
10693
+
10694
+ #: includes/elements/latest-items.php:54
10695
+ msgid "mode type"
10696
+ msgstr "نوع حالت"
10697
+
10698
+ #: includes/elements/latest-items.php:55 includes/elements/latest-items.php:100
10699
+ #: includes/elements/latest-items.php:130
10700
+ #: includes/elements/latest-items.php:175
10701
+ #: includes/elements/latest-items.php:190
10702
+ msgid "The round is used got button"
10703
+ msgstr ""
10704
+
10705
+ #: includes/elements/latest-items.php:69
10706
+ msgid "grid"
10707
+ msgstr "شبکه"
10708
+
10709
+ #: includes/elements/latest-items.php:70
10710
+ msgid "attachment grid"
10711
+ msgstr "شبکه پیوست"
10712
+
10713
+ #: includes/elements/latest-items.php:84
10714
+ msgid "num"
10715
+ msgstr "شماره"
10716
+
10717
+ #: includes/elements/latest-items.php:85
10718
+ msgid "attachment num"
10719
+ msgstr "شماره پیوست"
10720
+
10721
+ #: includes/elements/latest-items.php:96
10722
+ msgid "pagination"
10723
+ msgstr "صفحه بندی"
10724
+
10725
+ #: includes/elements/latest-items.php:96 includes/elements/latest-items.php:126
10726
+ msgid "regular"
10727
+ msgstr "معمولی"
10728
+
10729
+ #: includes/elements/latest-items.php:99
10730
+ msgid "nav type"
10731
+ msgstr ""
10732
+
10733
+ #: includes/elements/latest-items.php:114
10734
+ msgid "title"
10735
+ msgstr "عنوان"
10736
+
10737
+ #: includes/elements/latest-items.php:115
10738
+ msgid "attachment link"
10739
+ msgstr "لینک پیوست"
10740
+
10741
+ #: includes/elements/latest-items.php:126
10742
+ msgid "post"
10743
+ msgstr "نوشته"
10744
+
10745
+ #: includes/elements/latest-items.php:129
10746
+ msgid "posttype type"
10747
+ msgstr "نوع نوشته"
10748
+
10749
+ #: includes/elements/latest-items.php:144
10750
+ msgid "cat_id"
10751
+ msgstr "cat_id"
10752
+
10753
+ #: includes/elements/latest-items.php:145
10754
+ msgid "attachment alt"
10755
+ msgstr "جایگزین پیوست"
10756
+
10757
+ #: includes/elements/latest-items.php:159
10758
+ msgid "width"
10759
+ msgstr "عرض"
10760
+
10761
+ #: includes/elements/latest-items.php:160
10762
+ #: includes/elements/latest-items.php:205
10763
+ msgid "attachment width"
10764
+ msgstr "عرض پیوست"
10765
+
10766
+ #: includes/elements/latest-items.php:174
10767
+ msgid "view_excerpt ?"
10768
+ msgstr "view_excerpt ?"
10769
+
10770
+ #: includes/elements/latest-items.php:189
10771
+ msgid "view_title ?"
10772
+ msgstr "view_title ?"
10773
+
10774
+ #: includes/elements/latest-items.php:204
10775
+ msgid "excerpt_len"
10776
+ msgstr "excerpt_len"
10777
+
10778
+ #: includes/elements/latest-items.php:219
10779
+ msgid "section_index"
10780
+ msgstr "section_index"
10781
+
10782
+ #: includes/elements/latest-items.php:220
10783
+ msgid "attachment section_index"
10784
+ msgstr "section_index پیوست"
10785
+
10786
+ #: includes/elements/latest-items.php:234
10787
+ msgid "paged"
10788
+ msgstr "صفحه بندی شده"
10789
+
10790
+ #: includes/elements/latest-items.php:235
10791
+ msgid "attachment paged"
10792
+ msgstr "پیوست صفحه بندی شده"
10793
+
10794
+ #: includes/elements/latest-posts-slider.php:15
10795
+ #, fuzzy
10796
+ msgid "Latest Posts Slider "
10797
+ msgstr "[فلوکس] اسلایدر آخرین نوشته ها"
10798
+
10799
+ #: includes/elements/latest-posts-slider.php:18
10800
+ msgid "Slider for latest posts."
10801
+ msgstr "اسلایدر برای آخرین نوشته ها."
10802
+
10803
+ #: includes/elements/latest-posts-slider.php:43
10804
+ msgid "Latest post slider title, leave it empty if you don`t need title."
10805
+ msgstr ""
10806
+ "عنوان اسلایدر آخرین نوشته ها، اگر به عنوان نیازی ندارید آن را خالی بگذارید."
10807
+
10808
+ #: includes/elements/latest-posts-slider.php:56
10809
+ msgid "Create slides from"
10810
+ msgstr "ساخت اسلایدها از"
10811
+
10812
+ #: includes/elements/latest-posts-slider.php:62
10813
+ msgid "Posts"
10814
+ msgstr "نوشته ها"
10815
+
10816
+ #: includes/elements/latest-posts-slider.php:63
10817
+ msgid "Pages"
10818
+ msgstr "برگه ها"
10819
+
10820
+ #: includes/elements/latest-posts-slider.php:74
10821
+ msgid "Slides number"
10822
+ msgstr "تعداد اسلایدها"
10823
+
10824
+ #: includes/elements/latest-posts-slider.php:75
10825
+ msgid "Specifies maximum number of slides in slider."
10826
+ msgstr "بیشترین تعداد اسلاید در اسلایدر را مشخص می کند."
10827
+
10828
+ #: includes/elements/latest-posts-slider.php:89
10829
+ #: includes/elements/latest-posts-slider.php:103
10830
+ msgid "Post IDs separated by comma (eg. 53,34,87,25)."
10831
+ msgstr "شناسه نوشته ها که با کاما از هم جدا شده اند. (مثلا 53,34,87,25)."
10832
+
10833
+ #: includes/elements/latest-posts-slider.php:154
10834
+ msgid "Order direction"
10835
+ msgstr "جهت مرتب سازی"
10836
+
10837
+ #: includes/elements/latest-posts-slider.php:172
10838
+ msgid "Slider skin"
10839
+ msgstr "نمای اسلایدر"
10840
+
10841
+ #: includes/elements/latest-posts-slider.php:178
10842
+ msgid "Light and boxed"
10843
+ msgstr "جعبه ای روشن"
10844
+
10845
+ #: includes/elements/latest-posts-slider.php:179
10846
+ msgid "Dark and boxed"
10847
+ msgstr "جعبه ای تیره"
10848
+
10849
+ #: includes/elements/latest-posts-slider.php:180
10850
+ msgid "Light overlay"
10851
+ msgstr "روکش روشن"
10852
+
10853
+ #: includes/elements/latest-posts-slider.php:181
10854
+ msgid "Dark overlay"
10855
+ msgstr "روکش تیره"
10856
+
10857
+ #: includes/elements/latest-posts-slider.php:192
10858
+ #: includes/elements/recent-posts-tiles-carousel.php:378
10859
+ #: includes/elements/recent-posts-tiles.php:386
10860
+ msgid "Insert post title"
10861
+ msgstr "افزودن عنوان نوشته"
10862
+
10863
+ #: includes/elements/latest-posts-slider.php:205
10864
+ #: includes/elements/recent-posts-tiles-carousel.php:391
10865
+ #: includes/elements/recent-posts-tiles.php:399
10866
+ msgid "Insert post meta"
10867
+ msgstr "افزودن متای نوشته"
10868
+
10869
+ #: includes/elements/latest-posts-slider.php:222
10870
+ msgid "Grab the image from"
10871
+ msgstr "گرفتن تصویر از"
10872
+
10873
+ #: includes/elements/latest-posts-slider.php:228
10874
+ msgid "Auto select"
10875
+ msgstr "انتخاب خودکار"
10876
+
10877
+ #: includes/elements/latest-posts-slider.php:229
10878
+ msgid "Featured image"
10879
+ msgstr "تصویر شاخص"
10880
+
10881
+ #: includes/elements/latest-posts-slider.php:230
10882
+ msgid "First image in post"
10883
+ msgstr "اولین تصویر در نوشته"
10884
+
10885
+ #: includes/elements/latest-posts-slider.php:231
10886
+ msgid "Custom image"
10887
+ msgstr "تصویر دلخواه"
10888
+
10889
+ #: includes/elements/latest-posts-slider.php:242
10890
+ msgid "Background image"
10891
+ msgstr "تصویر پس زمینه"
10892
+
10893
+ #: includes/elements/latest-posts-slider.php:258
10894
+ msgid "Exclude posts without image"
10895
+ msgstr "نادیده گرفتن نوشته های بدون تصویر"
10896
+
10897
+ #: includes/elements/latest-posts-slider.php:325
10898
+ #: includes/elements/touch-slider.php:123
10899
+ msgid "Looped navigation"
10900
+ msgstr "ناوبری چرخه ای"
10901
+
10902
+ #: includes/elements/latest-posts-slider.php:351
10903
+ #: includes/elements/touch-slider.php:149
10904
+ msgid "Slideshow delay in seconds"
10905
+ msgstr "تاخیر اسلایدشو بر حسب ثانیه"
10906
+
10907
+ #: includes/elements/latest-posts-slider.php:522
10908
+ msgid "View all posts in "
10909
+ msgstr "نمایش همه نوشته ها در"
10910
+
10911
+ #: includes/elements/popular-posts-widget.php:23
10912
+ #, fuzzy
10913
+ msgid "Popular Posts Widget"
10914
+ msgstr "[فلوکس] ابزارک مطالب محبوب"
10915
+
10916
+ #: includes/elements/popular-posts-widget.php:26
10917
+ msgid "Shows popular and most commented posts with thumbnail."
10918
+ msgstr "نمایش مطالب محبوب و بیشتر بحث شده به همراه تصویر بندانگشتی"
10919
+
10920
+ #: includes/elements/popular-posts-widget.php:86
10921
+ msgid "Display popular tab"
10922
+ msgstr "نمایش زبانه محبوب ها"
10923
+
10924
+ #: includes/elements/popular-posts-widget.php:87
10925
+ msgid "Enable it to display the most popular posts."
10926
+ msgstr "برای نمایش نوشته های محبوب این گزینه را فعال کنید."
10927
+
10928
+ #: includes/elements/popular-posts-widget.php:101
10929
+ msgid "Display recent tab"
10930
+ msgstr "نمایش زبانه مطالب اخیر"
10931
+
10932
+ #: includes/elements/popular-posts-widget.php:102
10933
+ msgid "Enable it to display the most recent posts."
10934
+ msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
10935
+
10936
+ #: includes/elements/popular-posts-widget.php:116
10937
+ msgid "Display comment tab"
10938
+ msgstr "نمایش زبانه دیدگاه ها"
10939
+
10940
+ #: includes/elements/popular-posts-widget.php:117
10941
+ msgid "Enable it to display the most commented posts."
10942
+ msgstr "برای نمایش نوشته های بیشتر بحث شده این گزینه را فعال کنید."
10943
+
10944
+ #: includes/elements/popular-posts-widget.php:132
10945
+ #: includes/elements/recent-posts-widget.php:92
10946
+ msgid "Enable it to display images as well."
10947
+ msgstr "همچنین برای نمایش تصاویر این گزینه را فعال کنید."
10948
+
10949
+ #: includes/elements/popular-posts-widget.php:161
10950
+ #: includes/elements/recent-posts-widget.php:121
10951
+ msgid "Display post date"
10952
+ msgstr "نمایش تاریخ نوشته"
10953
+
10954
+ #: includes/elements/popular-posts-widget.php:176
10955
+ #: includes/elements/recent-posts-widget.php:136
10956
+ msgid "Specify summary content in character"
10957
+ msgstr "محتوای خلاصه مطلب را بر حسب کاراکتر مشخص می کند."
10958
+
10959
+ #: includes/elements/popular-posts-widget.php:237
10960
+ msgid "specify a categories that you want."
10961
+ msgstr "دسته بندی های مورد نظر شما را مشخص می کند."
10962
+
10963
+ #: includes/elements/popular-posts-widget.php:387
10964
+ msgid "Popular"
10965
+ msgstr "محبوب"
10966
+
10967
+ #: includes/elements/popular-posts-widget.php:389
10968
+ msgid "Comment"
10969
+ msgstr "دیدگاه"
10970
+
10971
+ #: includes/elements/quote.php:18
10972
+ msgid "Blockquote and introduction paragraph"
10973
+ msgstr "نقل قول و پاراگراف مقدمه"
10974
+
10975
+ #: includes/elements/quote.php:41
10976
+ msgid "Quote text"
10977
+ msgstr "متن نقل قول"
10978
+
10979
+ #: includes/elements/quote.php:42
10980
+ msgid "Enter a text as a quote."
10981
+ msgstr "متنی را به عنوان نقل قول وارد کنید."
10982
+
10983
+ #: includes/elements/quote.php:55
10984
+ msgid "Blockqoute style"
10985
+ msgstr "ظاهر نقل قول"
10986
+
10987
+ #: includes/elements/quote.php:62
10988
+ msgid "Quote Normal"
10989
+ msgstr "نقل قول معمولی"
10990
+
10991
+ #: includes/elements/quote.php:66
10992
+ msgid "Blockquote Normal"
10993
+ msgstr "بلوک نقل قول معمولی"
10994
+
10995
+ #: includes/elements/quote.php:70
10996
+ msgid "Blockquote Bordered"
10997
+ msgstr "بلوک نقل قول کادربندی شده"
10998
+
10999
+ #: includes/elements/quote.php:74
11000
+ msgid "Intro"
11001
+ msgstr "مقدمه"
11002
+
11003
+ #: includes/elements/quote.php:78
11004
+ msgid "Intro Hero"
11005
+ msgstr "مقدمه بزرگ"
11006
+
11007
+ #: includes/elements/quote.php:82
11008
+ msgid "Intro with Splitter"
11009
+ msgstr "مقدمه با جداکننده"
11010
+
11011
+ #: includes/elements/quote.php:86
11012
+ msgid "Pullquote Normal"
11013
+ msgstr "نقل قول معلق معمولی"
11014
+
11015
+ #: includes/elements/quote.php:90
11016
+ msgid "Pullquote Colorized"
11017
+ msgstr "نقل قول معلق رنگی"
11018
+
11019
+ #: includes/elements/recent-posts-grid-carousel.php:29
11020
+ #, fuzzy
11021
+ msgid "Grid & Carousel Recent Posts"
11022
+ msgstr "[فلوکس] شبکه و گردونه نوشته های اخیر"
11023
+
11024
+ #: includes/elements/recent-posts-grid-carousel.php:32
11025
+ msgid "It adds recent posts in grid or carousel mode."
11026
+ msgstr "مطالب اخیر را در حالت شبکه یا گردونه اضافه می کند."
11027
+
11028
+ #: includes/elements/recent-posts-grid-carousel.php:57
11029
+ #: includes/elements/recent-posts-land-style.php:57
11030
+ #: includes/elements/recent-posts-masonry.php:57
11031
+ #: includes/elements/recent-posts-tiles-carousel.php:44
11032
+ #: includes/elements/recent-posts-tiles.php:57
11033
+ #: includes/elements/recent-posts-timeline.php:51
11034
+ msgid "Recent post title, leave it empty if you don`t need title."
11035
+ msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11036
+
11037
+ #: includes/elements/recent-posts-grid-carousel.php:71
11038
+ #, fuzzy
11039
+ msgid "Recent posts subtitle, leave it empty if you don`t need title."
11040
+ msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11041
+
11042
+ #: includes/elements/recent-posts-grid-carousel.php:381
11043
+ #: includes/elements/recent-posts-land-style.php:301
11044
+ #: includes/elements/recent-posts-masonry.php:281
11045
+ msgid ""
11046
+ "Enable it to display %s like button%s on gride template blog. Please note WP "
11047
+ "Ulike plugin needs to be activaited to use this option."
11048
+ msgstr ""
11049
+ "برای نمایش %s دکمه لایک %s در نوشته های بلاگ این گزینه را فعال کنید. لطفا "
11050
+ "توجه کنید که افزونه WP Ulike برای عمل کردن این بخش باید فعال باشد."
11051
+
11052
+ #: includes/elements/recent-posts-grid-carousel.php:458
11053
+ #, fuzzy
11054
+ msgid "Meta Info position"
11055
+ msgstr "موقعیت تصویر یا شکلک"
11056
+
11057
+ #: includes/elements/recent-posts-grid-carousel.php:551
11058
+ msgid "Specifies the style of content for each post column."
11059
+ msgstr "ظاهر محتوا برای هر ستون از نوشته ها مشخص می کند."
11060
+
11061
+ #: includes/elements/recent-posts-land-style.php:29
11062
+ #, fuzzy
11063
+ msgid "Land Style Recent Posts"
11064
+ msgstr "[فلوکس] مطالب اخیر سبک زمین"
11065
+
11066
+ #: includes/elements/recent-posts-land-style.php:32
11067
+ msgid "It adds recent posts in land style."
11068
+ msgstr "مطالب اخیر به سبک زمین را اضافه می کند."
11069
+
11070
+ #: includes/elements/recent-posts-masonry.php:29
11071
+ #, fuzzy
11072
+ msgid "Masonry Recent Posts"
11073
+ msgstr "[فلوکس] مطالب اخیر ساختمانی"
11074
+
11075
+ #: includes/elements/recent-posts-masonry.php:32
11076
+ msgid "It adds recent posts in masonry style."
11077
+ msgstr "مطالب اخیر به سبک ساختمانی را اضافه می کند."
11078
+
11079
+ #: includes/elements/recent-posts-tiles-carousel.php:16
11080
+ msgid "Recent Posts Tiles Carousel"
11081
+ msgstr ""
11082
+
11083
+ #: includes/elements/recent-posts-tiles-carousel.php:19
11084
+ #, fuzzy
11085
+ msgid "It adds recent posts in tiles carousel mode."
11086
+ msgstr "مطالب اخیر را در حالت شبکه یا گردونه اضافه می کند."
11087
+
11088
+ #: includes/elements/recent-posts-tiles-carousel.php:72
11089
+ #, fuzzy
11090
+ msgid "Number of posts to show in per page"
11091
+ msgstr "تعداد نوشته ها برای نمایش"
11092
+
11093
+ #: includes/elements/recent-posts-tiles-carousel.php:86
11094
+ #, fuzzy
11095
+ msgid "Number of Pages"
11096
+ msgstr "تعداد نوشته ها"
11097
+
11098
+ #: includes/elements/recent-posts-tiles-carousel.php:347
11099
+ #, fuzzy
11100
+ msgid "Light Overlay"
11101
+ msgstr "روکش روشن"
11102
+
11103
+ #: includes/elements/recent-posts-tiles.php:29
11104
+ #, fuzzy
11105
+ msgid "Tiles Recent Posts"
11106
+ msgstr "[فلوکس] مطالب اخیر کاشی وار"
11107
+
11108
+ #: includes/elements/recent-posts-tiles.php:32
11109
+ msgid "It adds recent posts in tiles style."
11110
+ msgstr "مطالب اخیر را به سبک کاشی اضافه می کند."
11111
+
11112
+ #: includes/elements/recent-posts-timeline.php:23
11113
+ #, fuzzy
11114
+ msgid "Timeline Recent Posts"
11115
+ msgstr "[فلوکس] خط زمانی مطالب اخیر"
11116
+
11117
+ #: includes/elements/recent-posts-timeline.php:26
11118
+ msgid "It adds recent posts in timeline style."
11119
+ msgstr "مطالب اخیر به سبک خط زمانی را اضافه می کند."
11120
+
11121
+ #: includes/elements/recent-posts-widget.php:29
11122
+ #, fuzzy
11123
+ msgid "Recent Posts Widget"
11124
+ msgstr "[فلوکس] ابزارک مطالب اخیر"
11125
+
11126
+ #: includes/elements/recent-posts-widget.php:32
11127
+ msgid "Shows recent posts with thumbnail."
11128
+ msgstr "مطالب اخیر به همراه تصویر بندانگشتی را نشان می دهد."
11129
+
11130
+ #: includes/elements/recent-products.php:18
11131
+ msgid "a Widget for Display Your Store's Products"
11132
+ msgstr ""
11133
+
11134
+ #: includes/elements/recent-products.php:43
11135
+ #, fuzzy
11136
+ msgid "Recent products title, leave it empty if you don`t need title."
11137
+ msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11138
+
11139
+ #: includes/elements/recent-products.php:57
11140
+ #, fuzzy
11141
+ msgid "Recent products subtitle, leave it empty if you don`t need title."
11142
+ msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11143
+
11144
+ #: includes/elements/recent-products.php:98
11145
+ #, fuzzy
11146
+ msgid "Vertical 10:15"
11147
+ msgstr "عمودی 3:4"
11148
+
11149
+ #: includes/elements/recent-products.php:207
11150
+ #, fuzzy
11151
+ msgid "Number of products to displace or pass over."
11152
+ msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
11153
+
11154
+ #: includes/elements/sample-element.php:19
11155
+ msgid "Auxin Callout "
11156
+ msgstr "اکسین فراخوان"
11157
+
11158
+ #: includes/elements/sample-element.php:22
11159
+ msgid "The element description"
11160
+ msgstr "توضیحات المان"
11161
+
11162
+ #: includes/elements/sample-element.php:52
11163
+ msgid "Description for this element"
11164
+ msgstr "توضیحات این المان"
11165
+
11166
+ #: includes/elements/search.php:17
11167
+ msgid "Fancy search field"
11168
+ msgstr "فیلد جستجوی فانتزی"
11169
+
11170
+ #: includes/elements/search.php:42
11171
+ msgid "Search title, leave it empty if you don`t need title."
11172
+ msgstr "عنوان جستجو، اگر به عناون نیازی ندارید این بخش را خالی بگذارید."
11173
+
11174
+ #: includes/elements/socials-list.php:18
11175
+ msgid ""
11176
+ "It shows the website socials icons which you can configure it by the "
11177
+ "customizer."
11178
+ msgstr ""
11179
+ "شکلک های شبکه های اجتماعی را نشان می دهد که می توانید در شخصی ساز آن ها را "
11180
+ "تنظیم کنید."
11181
+
11182
+ #: includes/elements/socials-list.php:43
11183
+ msgid "Socials title, leave it empty if you don`t need title."
11184
+ msgstr ""
11185
+ "عنوان شبکه های اجتماعی، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11186
+
11187
+ #: includes/elements/socials-list.php:57
11188
+ msgid "Size of social icons"
11189
+ msgstr "اندازه شکلک های شبکه های اجتماعی"
11190
+
11191
+ #: includes/elements/socials-list.php:66
11192
+ msgid "Extra large"
11193
+ msgstr "خیلی بزرگ"
11194
+
11195
+ #: includes/elements/socials-list.php:77
11196
+ msgid "Directon of socials list"
11197
+ msgstr "جهت لیست شبکه های اجتماعی"
11198
+
11199
+ #: includes/elements/staff.php:16
11200
+ msgid "Staff "
11201
+ msgstr ""
11202
+
11203
+ #: includes/elements/staff.php:19
11204
+ msgid "You can display your Staffs as a customized widget,"
11205
+ msgstr ""
11206
+
11207
+ #: includes/elements/staff.php:44
11208
+ #, fuzzy
11209
+ msgid "Staff Name, leave it empty if you don`t need title."
11210
+ msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11211
+
11212
+ #: includes/elements/staff.php:53 includes/elements/staff.php:84
11213
+ #: includes/elements/staff.php:99 includes/elements/staff.php:119
11214
+ #: includes/elements/staff.php:138 includes/elements/staff.php:156
11215
+ #: includes/elements/staff.php:188
11216
+ msgid "Staff Details"
11217
+ msgstr ""
11218
+
11219
+ #: includes/elements/staff.php:58
11220
+ #, fuzzy
11221
+ msgid "Staff Occupation, leave it empty if you don`t need title."
11222
+ msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11223
+
11224
+ #: includes/elements/staff.php:74
11225
+ #, fuzzy
11226
+ msgid "leave it empty if you don`t need to add a page."
11227
+ msgstr "عنوان نقشه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11228
+
11229
+ #: includes/elements/staff.php:88
11230
+ #, fuzzy
11231
+ msgid "Staff Image"
11232
+ msgstr "تصویر"
11233
+
11234
+ #: includes/elements/staff.php:103 includes/elements/text.php:422
11235
+ #, fuzzy
11236
+ msgid "Image Size"
11237
+ msgstr "اندازه تصویر"
11238
+
11239
+ #: includes/elements/staff.php:109 includes/elements/text.php:428
11240
+ #, fuzzy
11241
+ msgid "Orginal Size"
11242
+ msgstr "اصلی"
11243
+
11244
+ #: includes/elements/staff.php:192
11245
+ msgid "Wrapper style"
11246
+ msgstr "ظاهر Wrapper"
11247
+
11248
+ #: includes/elements/staff.php:203 includes/elements/text.php:101
11249
+ msgid "Outlined"
11250
+ msgstr "با خط بیرونی"
11251
+
11252
+ #: includes/elements/staff.php:219
11253
+ msgid "Layout Style"
11254
+ msgstr ""
11255
+
11256
+ #: includes/elements/staff.php:251
11257
+ msgid "Layout Border Color"
11258
+ msgstr ""
11259
+
11260
+ #: includes/elements/staff.php:252
11261
+ #, fuzzy
11262
+ msgid "Choose a border color for this layout."
11263
+ msgstr "رنگ پس زمینه ای را برای این بلوک انتخاب کنید."
11264
+
11265
+ #: includes/elements/staff.php:269
11266
+ msgid "Text align"
11267
+ msgstr "تراز متن"
11268
+
11269
+ #: includes/elements/staff.php:297
11270
+ msgid "Text color scheme"
11271
+ msgstr "شمای رنگ متن"
11272
+
11273
+ #: includes/elements/staff.php:303
11274
+ msgid "Inherit"
11275
+ msgstr "ارث بری"
11276
+
11277
+ #: includes/elements/staff.php:345
11278
+ #, fuzzy
11279
+ msgid "Linkedin Address"
11280
+ msgstr "آدرس"
11281
+
11282
+ #: includes/elements/tab-widget.php:18 includes/elements/tabs.php:18
11283
+ msgid "It adds tabs element."
11284
+ msgstr "یک المان زبانه اضافه می کند."
11285
+
11286
+ #: includes/elements/tab-widget.php:44 includes/elements/tabs.php:44
11287
+ msgid "Tabs title, leave it empty if you don`t need title."
11288
+ msgstr "عنوان زبانه، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11289
+
11290
+ #: includes/elements/tab-widget.php:58 includes/elements/tabs.php:58
11291
+ msgid "Choose between bordered style and no border."
11292
+ msgstr "بین ظاهر کادر بندی شده و بدون کادر یکی را انتخاب کنید."
11293
+
11294
+ #: includes/elements/tab-widget.php:75
11295
+ #, fuzzy
11296
+ msgid "First Tab Label"
11297
+ msgstr "برچسب زبانه"
11298
+
11299
+ #: includes/elements/tab-widget.php:76 includes/elements/tab-widget.php:105
11300
+ #: includes/elements/tab-widget.php:134 includes/elements/tabs.php:76
11301
+ msgid "Enter your tab item label."
11302
+ msgstr "برچسب آیتم زبانه را وارد کنید."
11303
+
11304
+ #: includes/elements/tab-widget.php:89
11305
+ #, fuzzy
11306
+ msgid "First Tab Content"
11307
+ msgstr "اولی باز باشد؟"
11308
+
11309
+ #: includes/elements/tab-widget.php:90 includes/elements/tab-widget.php:119
11310
+ #: includes/elements/tab-widget.php:148 includes/elements/tabs.php:93
11311
+ msgid "Enter your tab item content."
11312
+ msgstr "محتوای آیتم زبانه را وارد کنید."
11313
+
11314
+ #: includes/elements/tab-widget.php:104
11315
+ #, fuzzy
11316
+ msgid "Second Tab Label"
11317
+ msgstr "برچسب زبانه"
11318
+
11319
+ #: includes/elements/tab-widget.php:118
11320
+ #, fuzzy
11321
+ msgid "Second Tab Content"
11322
+ msgstr "محتوای جعبه ای"
11323
+
11324
+ #: includes/elements/tab-widget.php:133
11325
+ #, fuzzy
11326
+ msgid "Third Tab Label"
11327
+ msgstr "برچسب زبانه"
11328
+
11329
+ #: includes/elements/tab-widget.php:147
11330
+ #, fuzzy
11331
+ msgid "Third Tab Content"
11332
+ msgstr "محتوای جعبه ای"
11333
+
11334
+ #: includes/elements/tabs.php:75
11335
+ msgid "Tab label"
11336
+ msgstr "برچسب زبانه"
11337
+
11338
+ #: includes/elements/tabs.php:79
11339
+ msgid "Tabs Section"
11340
+ msgstr "بخش زبانه ها"
11341
+
11342
+ #: includes/elements/tabs.php:95
11343
+ msgid "Tabs section"
11344
+ msgstr "بخش زبانه ها"
11345
+
11346
+ #: includes/elements/testimonial.php:16
11347
+ #, fuzzy
11348
+ msgid "Testimonial "
11349
+ msgstr "انتخاب اظهار نظر"
11350
+
11351
+ #: includes/elements/testimonial.php:19
11352
+ #, fuzzy
11353
+ msgid "Testimonial Element"
11354
+ msgstr "المان های ضروری اکسین"
11355
+
11356
+ #: includes/elements/testimonial.php:44
11357
+ msgid "Testimonial Templates"
11358
+ msgstr ""
11359
+
11360
+ #: includes/elements/testimonial.php:58
11361
+ #, fuzzy
11362
+ msgid "Default Template"
11363
+ msgstr "پیش فرض"
11364
+
11365
+ #: includes/elements/testimonial.php:62
11366
+ msgid "Default Template With Image"
11367
+ msgstr ""
11368
+
11369
+ #: includes/elements/testimonial.php:66
11370
+ #, fuzzy
11371
+ msgid "Bordered On Content"
11372
+ msgstr "محتوای جعبه ای"
11373
+
11374
+ #: includes/elements/testimonial.php:70
11375
+ msgid "Quotation Mark on Top of the Content"
11376
+ msgstr ""
11377
+
11378
+ #: includes/elements/testimonial.php:74
11379
+ msgid "Show Info on Top of Content"
11380
+ msgstr ""
11381
+
11382
+ #: includes/elements/testimonial.php:78
11383
+ msgid "Show Image on Top of the Content"
11384
+ msgstr ""
11385
+
11386
+ #: includes/elements/testimonial.php:85
11387
+ #, fuzzy
11388
+ msgid "Customer Name, leave it empty if you don`t need title."
11389
+ msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11390
+
11391
+ #: includes/elements/testimonial.php:99
11392
+ #, fuzzy
11393
+ msgid "Customer Link, leave it empty if you don`t need it"
11394
+ msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11395
+
11396
+ #: includes/elements/testimonial.php:113
11397
+ #, fuzzy
11398
+ msgid "Customer Occupation, leave it empty if you don`t need it."
11399
+ msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11400
+
11401
+ #: includes/elements/testimonial.php:127
11402
+ #, fuzzy
11403
+ msgid "Customer Rating, Set it to \"None\" if you don`t need it."
11404
+ msgstr "عنوان کد، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
11405
+
11406
+ #: includes/elements/text.php:18
11407
+ #, fuzzy
11408
+ msgid "Iconic text block."
11409
+ msgstr "بلوک متنی سادذه."
11410
+
11411
+ #: includes/elements/text.php:90
11412
+ #, fuzzy
11413
+ msgid "Wrapper Style"
11414
+ msgstr "ظاهر Wrapper"
11415
+
11416
+ #: includes/elements/text.php:114 includes/elements/text.php:142
11417
+ #: includes/elements/text.php:170 includes/elements/text.php:189
11418
+ #: includes/elements/text.php:208 includes/elements/text.php:227
11419
+ #: includes/elements/text.php:245 includes/elements/text.php:267
11420
+ #: includes/elements/text.php:285 includes/elements/text.php:303
11421
+ #: includes/elements/text.php:321 includes/elements/text.php:340
11422
+ #: includes/elements/text.php:362 includes/elements/text.php:920
11423
+ #: includes/elements/text.php:934
11424
+ #, fuzzy
11425
+ msgid "Wrapper Layout"
11426
+ msgstr "ظاهر Wrapper"
11427
+
11428
+ #: includes/elements/text.php:146
11429
+ msgid "Text Align on Small Screens"
11430
+ msgstr ""
11431
+
11432
+ #: includes/elements/text.php:174
11433
+ #, fuzzy
11434
+ msgid "Text Color Scheme"
11435
+ msgstr "شمای رنگ متن"
11436
+
11437
+ #: includes/elements/text.php:194
11438
+ #, fuzzy
11439
+ msgid "Wrapper Background Type"
11440
+ msgstr "شکل پس زمینه"
11441
+
11442
+ #: includes/elements/text.php:200 includes/elements/text.php:295
11443
+ #, fuzzy
11444
+ msgid "Single Color"
11445
+ msgstr "رنگ شکلک"
11446
+
11447
+ #: includes/elements/text.php:201 includes/elements/text.php:296
11448
+ #: includes/general-hooks.php:1561
11449
+ msgid "Background Image"
11450
+ msgstr "تصویر پس زمینه"
11451
+
11452
+ #: includes/elements/text.php:213
11453
+ #, fuzzy
11454
+ msgid "Wrapper Background Color"
11455
+ msgstr "رنگ پس زمینه"
11456
+
11457
+ #: includes/elements/text.php:231
11458
+ #, fuzzy
11459
+ msgid "Wrapper Background image"
11460
+ msgstr "تصویر پس زمینه"
11461
+
11462
+ #: includes/elements/text.php:249
11463
+ #, fuzzy
11464
+ msgid "Wrapper Background Image Display"
11465
+ msgstr "تصویر پس زمینه"
11466
+
11467
+ #: includes/elements/text.php:254 includes/elements/text.php:349
11468
+ #: includes/general-hooks.php:1592
11469
+ msgid "Cover"
11470
+ msgstr "پوشاننده"
11471
+
11472
+ #: includes/elements/text.php:255 includes/elements/text.php:350
11473
+ #, fuzzy
11474
+ msgid "Tiled Image"
11475
+ msgstr "تصویر"
11476
+
11477
+ #: includes/elements/text.php:256 includes/elements/text.php:351
11478
+ msgid "Centered, with original size"
11479
+ msgstr ""
11480
+
11481
+ #: includes/elements/text.php:257 includes/elements/text.php:352
11482
+ #: includes/general-hooks.php:1725
11483
+ msgid "Fixed"
11484
+ msgstr "ثابت"
11485
+
11486
+ #: includes/elements/text.php:271
11487
+ #, fuzzy
11488
+ msgid "Wrapper Background Overlay"
11489
+ msgstr "فعالسازی پس زمینه"
11490
+
11491
+ #: includes/elements/text.php:289
11492
+ #, fuzzy
11493
+ msgid "Header Background Type"
11494
+ msgstr "شکل پس زمینه"
11495
+
11496
+ #: includes/elements/text.php:307
11497
+ #, fuzzy
11498
+ msgid "Header Background color"
11499
+ msgstr "رنگ پس زمینه"
11500
+
11501
+ #: includes/elements/text.php:326
11502
+ #, fuzzy
11503
+ msgid "Header Background image"
11504
+ msgstr "تصویر پس زمینه"
11505
+
11506
+ #: includes/elements/text.php:344
11507
+ #, fuzzy
11508
+ msgid "Header Background Image Display"
11509
+ msgstr "تصویر پس زمینه"
11510
+
11511
+ #: includes/elements/text.php:366
11512
+ #, fuzzy
11513
+ msgid "Icon or image"
11514
+ msgstr "تصویر پوستر"
11515
+
11516
+ #: includes/elements/text.php:367
11517
+ msgid "Please choose an icon from avaialable icons."
11518
+ msgstr "لطفا یکی از شکلک های موجود را انتخاب کنید."
11519
+
11520
+ #: includes/elements/text.php:368
11521
+ #, fuzzy
11522
+ msgid "Display Icon or Image"
11523
+ msgstr "نمایش تصویر"
11524
+
11525
+ #: includes/elements/text.php:382 includes/elements/text.php:400
11526
+ #: includes/elements/text.php:418 includes/elements/text.php:441
11527
+ #: includes/elements/text.php:459 includes/elements/text.php:482
11528
+ #: includes/elements/text.php:500 includes/elements/text.php:529
11529
+ #: includes/elements/text.php:567 includes/elements/text.php:605
11530
+ #: includes/elements/text.php:633
11531
+ #, fuzzy
11532
+ msgid "Icon & Image"
11533
+ msgstr "تصویر پس زمینه"
11534
+
11535
+ #: includes/elements/text.php:446
11536
+ msgid "Choose a color for icon."
11537
+ msgstr "رنگی برای شکلک انتخاب کنید."
11538
+
11539
+ #: includes/elements/text.php:463
11540
+ msgid "Icon size"
11541
+ msgstr "اندازه شکلک"
11542
+
11543
+ #: includes/elements/text.php:487
11544
+ msgid "Choose a color for background of icon."
11545
+ msgstr "رنگی برای پس زمینه شکلک انتخاب کنید."
11546
+
11547
+ #: includes/elements/text.php:504
11548
+ #, fuzzy
11549
+ msgid "Icon/Image outline color"
11550
+ msgstr "رنگ خط بیرونی شکلک"
11551
+
11552
+ #: includes/elements/text.php:505
11553
+ #, fuzzy
11554
+ msgid "Choose a color for the border around the icon or image."
11555
+ msgstr "رنگی را برای کادر دور شکلک انتخاب کنید."
11556
+
11557
+ #: includes/elements/text.php:519
11558
+ #, fuzzy
11559
+ msgid "Icon/Image outline width"
11560
+ msgstr "رنگ خط بیرونی شکلک"
11561
+
11562
+ #: includes/elements/text.php:520
11563
+ #, fuzzy
11564
+ msgid "Choose a width for the border around the icon or image."
11565
+ msgstr "رنگی را برای کادر دور شکلک انتخاب کنید."
11566
+
11567
+ #: includes/elements/text.php:609
11568
+ msgid "Image or icon position"
11569
+ msgstr "موقعیت تصویر یا شکلک"
11570
+
11571
+ #: includes/elements/text.php:692
11572
+ msgid "Button shape style"
11573
+ msgstr "ظاهر شکل دکمه"
11574
+
11575
+ #: includes/elements/text.php:769
11576
+ msgid "Darken label of button while mouse over it."
11577
+ msgstr "تیره تر کردن برچسب هنگامی که ماوس روی آن است."
11578
+
11579
+ #: includes/elements/text.php:924
11580
+ msgid "Footer Shape color"
11581
+ msgstr ""
11582
+
11583
+ #: includes/elements/text.php:925
11584
+ #, fuzzy
11585
+ msgid "Select color for shape"
11586
+ msgstr "انتخاب شکل آکاردئون."
11587
+
11588
+ #: includes/elements/touch-slider.php:16
11589
+ msgid "Simple Image Slider "
11590
+ msgstr ""
11591
+
11592
+ #: includes/elements/touch-slider.php:19
11593
+ msgid "Responsive image slider with touch swipe feature."
11594
+ msgstr ""
11595
+
11596
+ #: includes/elements/touch-slider.php:44
11597
+ #, fuzzy
11598
+ msgid "The slider title, leave it empty if you don`t need title."
11599
+ msgstr "عنوان ویدیو، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
11600
+
11601
+ #: includes/elements/video.php:18
11602
+ msgid "It adds a video player element."
11603
+ msgstr "یک پخش کننده ویدیو اضافه می کند."
11604
+
11605
+ #: includes/elements/video.php:39
11606
+ msgid "Video title, leave it empty if you don`t need title."
11607
+ msgstr "عنوان ویدیو، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
11608
+
11609
+ #: includes/elements/video.php:52
11610
+ msgid "Autoplay"
11611
+ msgstr "نمایش خودکار"
11612
+
11613
+ #: includes/elements/video.php:53
11614
+ msgid "Whether to start the video automatically or not."
11615
+ msgstr "ویدیو به طور خودکار پخش شود یا خیر."
11616
+
11617
+ #: includes/elements/video.php:65
11618
+ msgid "Repeat video"
11619
+ msgstr "تکرار ویدیو"
11620
+
11621
+ #: includes/elements/video.php:66
11622
+ msgid "Play video again when it ends."
11623
+ msgstr "پس از اتمام ویدیو دوباره آن را پخش می کند."
11624
+
11625
+ #: includes/elements/video.php:107
11626
+ msgid "Please upload the video file."
11627
+ msgstr "لطفا فایل ویدیو را بارگذاری کنید."
11628
+
11629
+ #: includes/elements/video.php:120
11630
+ msgid "Video link"
11631
+ msgstr "پیوند ویدیو"
11632
+
11633
+ #: includes/general-functions.php:189
11634
+ msgid "\"%s\" Plugin is Not Activated!"
11635
+ msgstr ""
11636
+
11637
+ #: includes/general-functions.php:192
11638
+ msgid ""
11639
+ "In order to use this element, you need to install and activate this plugin."
11640
+ msgstr ""
11641
+
11642
+ #: includes/general-functions.php:1609
11643
+ #, fuzzy
11644
+ msgid "Previous"
11645
+ msgstr "قبلی و بعدی"
11646
+
11647
+ #: includes/general-functions.php:1610
11648
+ #, fuzzy
11649
+ msgid "page"
11650
+ msgstr "صفحه بندی شده"
11651
+
11652
+ #: includes/general-functions.php:1620
11653
+ msgid "Next"
11654
+ msgstr ""
11655
+
11656
+ #: includes/general-functions.php:1631
11657
+ msgid "LOAD MORE"
11658
+ msgstr ""
11659
+
11660
+ #: includes/general-functions.php:1639
11661
+ msgid "MORE"
11662
+ msgstr ""
11663
+
11664
+ #: includes/general-functions.php:1651
11665
+ msgid "LOADING"
11666
+ msgstr ""
11667
+
11668
+ #: includes/general-functions.php:2012
11669
+ msgid "Blurred placeholder image"
11670
+ msgstr ""
11671
+
11672
+ #: includes/general-functions.php:2013
11673
+ msgid "In-progress box animation"
11674
+ msgstr ""
11675
+
11676
+ #: includes/general-functions.php:2014
11677
+ msgid "Loading spinner (blue)"
11678
+ msgstr ""
11679
+
11680
+ #: includes/general-functions.php:2015
11681
+ msgid "Loading spinner (light)"
11682
+ msgstr ""
11683
+
11684
+ #: includes/general-functions.php:2016
11685
+ msgid "Loading spinner (dark)"
11686
+ msgstr ""
11687
+
11688
+ #. translators: %s: Search term.
11689
+ #: includes/general-functions.php:2239
11690
+ msgid "Search Results for: %s"
11691
+ msgstr ""
11692
+
11693
+ #. translators: %s is the page number.
11694
+ #: includes/general-functions.php:2243
11695
+ msgid "&nbsp;&ndash; Page %s"
11696
+ msgstr ""
11697
+
11698
+ #. translators: Category archive title. 1: Category name
11699
+ #: includes/general-functions.php:2250
11700
+ #, fuzzy
11701
+ msgid "Category: %s"
11702
+ msgstr "دسته 1"
11703
+
11704
+ #. translators: Tag archive title. 1: Tag name
11705
+ #: includes/general-functions.php:2256
11706
+ msgid "Tag: %s"
11707
+ msgstr ""
11708
+
11709
+ #. translators: Author archive title. 1: Author name
11710
+ #: includes/general-functions.php:2263
11711
+ #, fuzzy
11712
+ msgid "Author: %s"
11713
+ msgstr "نویسنده"
11714
+
11715
+ #. translators: Yearly archive title. 1: Year
11716
+ #: includes/general-functions.php:2270
11717
+ msgid "Year: %s"
11718
+ msgstr ""
11719
+
11720
+ #. translators: Monthly archive title. 1: Month name and year
11721
+ #: includes/general-functions.php:2277
11722
+ msgid "Month: %s"
11723
+ msgstr ""
11724
+
11725
+ #. translators: Daily archive title. 1: Date
11726
+ #: includes/general-functions.php:2284
11727
+ msgid "Day: %s"
11728
+ msgstr ""
11729
+
11730
+ #. translators: Post type archive title. 1: Post type name
11731
+ #: includes/general-functions.php:2311
11732
+ msgid "Archives: %s"
11733
+ msgstr ""
11734
+
11735
+ #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11736
+ #. Current taxonomy term
11737
+ #: includes/general-functions.php:2319
11738
+ msgid "%1$s: %2$s"
11739
+ msgstr ""
11740
+
11741
+ #: includes/general-functions.php:2322
11742
+ msgid "Page Not Found"
11743
+ msgstr ""
11744
+
11745
+ #: includes/general-functions.php:2487
11746
+ #, fuzzy
11747
+ msgid "Select Page"
11748
+ msgstr "تراز شکلک را انتخاب کنید."
11749
+
11750
+ #: includes/general-hooks.php:216
11751
+ msgid "Auxin Icons"
11752
+ msgstr "اکسین شکلک ها"
11753
+
11754
+ #: includes/general-hooks.php:221
11755
+ msgid "Icon library"
11756
+ msgstr "کتابخانه شکلک ها"
11757
+
11758
+ #: includes/general-hooks.php:223
11759
+ msgid "Font Awesome"
11760
+ msgstr "Font Awesome"
11761
+
11762
+ #: includes/general-hooks.php:224
11763
+ msgid "Open Iconic"
11764
+ msgstr "Open Iconic"
11765
+
11766
+ #: includes/general-hooks.php:225
11767
+ msgid "Typicons"
11768
+ msgstr "Typicons"
11769
+
11770
+ #: includes/general-hooks.php:226
11771
+ msgid "Entypo"
11772
+ msgstr "Entypo"
11773
+
11774
+ #: includes/general-hooks.php:227
11775
+ msgid "Linecons"
11776
+ msgstr "Linecons"
11777
+
11778
+ #: includes/general-hooks.php:228
11779
+ msgid "Auxin"
11780
+ msgstr "اکسین"
11781
+
11782
+ #: includes/general-hooks.php:232
11783
+ msgid "Select icon library."
11784
+ msgstr "کتابخانه شکلک را انتخاب کنید."
11785
+
11786
+ #: includes/general-hooks.php:250 includes/general-hooks.php:267
11787
+ #: includes/general-hooks.php:283 includes/general-hooks.php:299
11788
+ #: includes/general-hooks.php:330
11789
+ msgid "Select icon from library."
11790
+ msgstr "انتخاب شکلک از کتابخانه."
11791
+
11792
+ #: includes/general-hooks.php:335
11793
+ msgid "Custom color"
11794
+ msgstr "رنگ سفارشی"
11795
+
11796
+ #: includes/general-hooks.php:337
11797
+ msgid "Select custom icon color."
11798
+ msgstr "رنگ دلخواه شکلک را انتخاب کنید."
11799
+
11800
+ #: includes/general-hooks.php:345
11801
+ msgid "Background shape"
11802
+ msgstr "شکل پس زمینه"
11803
+
11804
+ #: includes/general-hooks.php:351
11805
+ msgid "Rounded"
11806
+ msgstr "گرد شده"
11807
+
11808
+ #: includes/general-hooks.php:354
11809
+ msgid "Outline Rounded"
11810
+ msgstr "گرد با خط بیرونی"
11811
+
11812
+ #: includes/general-hooks.php:356
11813
+ msgid "Select background shape and style for icon."
11814
+ msgstr "ظاهر و شکل پس زمینه شکلک انتخاب کنید."
11815
+
11816
+ #: includes/general-hooks.php:361
11817
+ msgid "Custom background color"
11818
+ msgstr "رنگ پس زمینه دلخواه"
11819
+
11820
+ #: includes/general-hooks.php:363
11821
+ msgid "Select custom icon background color."
11822
+ msgstr "رنگ دلخواه پس زمینه شکلک را انتخاب کنید."
11823
+
11824
+ #: includes/general-hooks.php:379
11825
+ msgid "Select icon alignment."
11826
+ msgstr "تراز شکلک را انتخاب کنید."
11827
+
11828
+ #: includes/general-hooks.php:395 includes/general-hooks.php:396
11829
+ msgid "Arrow"
11830
+ msgstr "فلش"
11831
+
11832
+ #: includes/general-hooks.php:397
11833
+ msgid "Back"
11834
+ msgstr "برگشت"
11835
+
11836
+ #: includes/general-hooks.php:453
11837
+ msgid "Custom JS Code"
11838
+ msgstr "کد جاوااسکریپت سفارشی"
11839
+
11840
+ #: includes/general-hooks.php:454
11841
+ msgid "Your Custom Javascript"
11842
+ msgstr "جاوااسکریپت دلخواه شما"
11843
+
11844
+ #: includes/general-hooks.php:458
11845
+ #, fuzzy
11846
+ msgid "Custom Javascript in Head"
11847
+ msgstr "جاوااسکریپت سفارشی"
11848
+
11849
+ #: includes/general-hooks.php:459 includes/general-hooks.php:473
11850
+ msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
11851
+ msgstr ""
11852
+ "کدهای جاوااسکریپت دلخواه خود را می توانید در این قسمت وارد کنید. از تگ %s "
11853
+ "استفاده نکنید %s."
11854
+
11855
+ #: includes/general-hooks.php:460 includes/general-hooks.php:474
11856
+ #, fuzzy
11857
+ msgid ""
11858
+ "In order to save your custom javascript code, you are expected to execute "
11859
+ "the code prior to saving."
11860
+ msgstr ""
11861
+ "انتظار می رود قبل از ذخیره کد جاوااسکریپت، از درستی آن اطمینان پیدا کنید."
11862
+
11863
+ #: includes/general-hooks.php:466 includes/general-hooks.php:480
11864
+ msgid "Execute"
11865
+ msgstr "اجرا"
11866
+
11867
+ #: includes/general-hooks.php:472
11868
+ #, fuzzy
11869
+ msgid "Custom Javascript in Footer"
11870
+ msgstr "کد جاوااسکریپت سفارشی"
11871
+
11872
+ #: includes/general-hooks.php:491 includes/general-hooks.php:492
11873
+ msgid "Google API Keys & SEO"
11874
+ msgstr ""
11875
+
11876
+ #: includes/general-hooks.php:497
11877
+ msgid "Built in SEO"
11878
+ msgstr "سئوی داخلی"
11879
+
11880
+ #: includes/general-hooks.php:498
11881
+ msgid ""
11882
+ "In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in One "
11883
+ "SEO Pack\" you can disable built-in SEO for maximum compatibility."
11884
+ msgstr ""
11885
+ "در مواردی که از افزونه های \"WordPress SEO by Yoast\" یا \"All in One SEO "
11886
+ "Pack\" استفاده می کنید، برای حفظ بیشترین یکپارچگی، سئوی داخلی را غیرفعال "
11887
+ "کنید."
11888
+
11889
+ #: includes/general-hooks.php:508
11890
+ #, fuzzy
11891
+ msgid "Google Analytics Code"
11892
+ msgstr "کد آنالیز گوگل"
11893
+
11894
+ #: includes/general-hooks.php:509
11895
+ msgid "You can %s set up Analytics tracking %s and add the tracking ID here."
11896
+ msgstr ""
11897
+
11898
+ #: includes/general-hooks.php:523
11899
+ msgid "Google Maps API Key"
11900
+ msgstr ""
11901
+
11902
+ #: includes/general-hooks.php:525
11903
+ msgid ""
11904
+ "In order to use google maps on your website, you have to %s create an api "
11905
+ "key %s and insert it in this field."
11906
+ msgstr ""
11907
+
11908
+ #: includes/general-hooks.php:539
11909
+ #, fuzzy
11910
+ msgid "Google Marketing Code"
11911
+ msgstr "کد بازاریابی گوگل"
11912
+
11913
+ #: includes/general-hooks.php:540
11914
+ msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
11915
+ msgstr ""
11916
+ "کد بازاریابی گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
11917
+ "نکنید %s."
11918
+
11919
+ #: includes/general-hooks.php:557
11920
+ msgid "Logo 2 (optional)"
11921
+ msgstr ""
11922
+
11923
+ #: includes/general-hooks.php:558
11924
+ msgid ""
11925
+ "The secondary logo which appears when the header becomes sticky (optional)."
11926
+ msgstr ""
11927
+
11928
+ #: includes/general-hooks.php:574
11929
+ msgid "Header Button 1"
11930
+ msgstr ""
11931
+
11932
+ #: includes/general-hooks.php:575
11933
+ msgid "Setting for Header Button 1"
11934
+ msgstr ""
11935
+
11936
+ #: includes/general-hooks.php:590
11937
+ #, fuzzy
11938
+ msgid "Display Header Button 1"
11939
+ msgstr "نمایش دکمه لایک"
11940
+
11941
+ #: includes/general-hooks.php:591 includes/general-hooks.php:996
11942
+ #, fuzzy
11943
+ msgid "Enable this option to display a button in header."
11944
+ msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
11945
+
11946
+ #: includes/general-hooks.php:611
11947
+ msgid "Hide Button 1 on Tablet"
11948
+ msgstr ""
11949
+
11950
+ #: includes/general-hooks.php:612 includes/general-hooks.php:635
11951
+ msgid "Enable it to hide header button 1 on tablet devices."
11952
+ msgstr ""
11953
+
11954
+ #: includes/general-hooks.php:634
11955
+ msgid "Hide Button 1 on Mobile"
11956
+ msgstr ""
11957
+
11958
+ #: includes/general-hooks.php:657 includes/general-hooks.php:1062
11959
+ #, fuzzy
11960
+ msgid "Button Label"
11961
+ msgstr "برچسب دکمه"
11962
+
11963
+ #: includes/general-hooks.php:658 includes/general-hooks.php:1063
11964
+ #, fuzzy
11965
+ msgid "Specifies the label of button."
11966
+ msgstr "برچسب دکمه"
11967
+
11968
+ #: includes/general-hooks.php:680 includes/general-hooks.php:1085
11969
+ #, fuzzy
11970
+ msgid "Button Size"
11971
+ msgstr "اندازه دکمه"
11972
+
11973
+ #: includes/general-hooks.php:710 includes/general-hooks.php:1115
11974
+ #, fuzzy
11975
+ msgid "Button Shape"
11976
+ msgstr "نوع دکمه"
11977
+
11978
+ #: includes/general-hooks.php:717 includes/general-hooks.php:1122
11979
+ msgid "Sharp"
11980
+ msgstr ""
11981
+
11982
+ #: includes/general-hooks.php:784 includes/general-hooks.php:1189
11983
+ #, fuzzy
11984
+ msgid "Button Typography"
11985
+ msgstr "نوع دکمه"
11986
+
11987
+ #: includes/general-hooks.php:806 includes/general-hooks.php:1211
11988
+ #, fuzzy
11989
+ msgid "Icon for Button"
11990
+ msgstr "شکلک برای دکمه"
11991
+
11992
+ #: includes/general-hooks.php:828 includes/general-hooks.php:1233
11993
+ #, fuzzy
11994
+ msgid "Icon Alignment"
11995
+ msgstr "تراز شکلک"
11996
+
11997
+ #: includes/general-hooks.php:877 includes/general-hooks.php:1282
11998
+ #, fuzzy
11999
+ msgid "Color of Button"
12000
+ msgstr "رنگ دکمه"
12001
+
12002
+ #: includes/general-hooks.php:900 includes/general-hooks.php:1305
12003
+ #, fuzzy
12004
+ msgid "Color of Button on Sticky"
12005
+ msgstr "رنگ دکمه"
12006
+
12007
+ #: includes/general-hooks.php:901 includes/general-hooks.php:1306
12008
+ msgid "Specifies the color of the button when the header sticky is enabled."
12009
+ msgstr ""
12010
+
12011
+ #: includes/general-hooks.php:946 includes/general-hooks.php:1351
12012
+ #, fuzzy
12013
+ msgid "Open Link in"
12014
+ msgstr "باز کردن پیوند در"
12015
+
12016
+ #: includes/general-hooks.php:979
12017
+ msgid "Header Button 2"
12018
+ msgstr ""
12019
+
12020
+ #: includes/general-hooks.php:980
12021
+ msgid "Setting for Header Button 2"
12022
+ msgstr ""
12023
+
12024
+ #: includes/general-hooks.php:995
12025
+ #, fuzzy
12026
+ msgid "Display Header Button 2"
12027
+ msgstr "نمایش دکمه لایک"
12028
+
12029
+ #: includes/general-hooks.php:1016
12030
+ msgid "Hide Button 2 on Tablet"
12031
+ msgstr ""
12032
+
12033
+ #: includes/general-hooks.php:1017 includes/general-hooks.php:1040
12034
+ msgid "Enable it to hide header button 2 on tablet devices."
12035
+ msgstr ""
12036
+
12037
+ #: includes/general-hooks.php:1039
12038
+ msgid "Hide Button 2 on Mobile"
12039
+ msgstr ""
12040
+
12041
+ #: includes/general-hooks.php:1410
12042
+ #, fuzzy
12043
+ msgid "Specifies maximum height of logo in footer."
12044
+ msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
12045
+
12046
+ #: includes/general-hooks.php:1446
12047
+ msgid "Login Page"
12048
+ msgstr "صفحه ورود"
12049
+
12050
+ #: includes/general-hooks.php:1447
12051
+ msgid "Preview login page"
12052
+ msgstr "پیش نمایش صفحه ورود"
12053
+
12054
+ #: includes/general-hooks.php:1454
12055
+ msgid "Login Skin"
12056
+ msgstr "نمای صفحه ورود"
12057
+
12058
+ #: includes/general-hooks.php:1455
12059
+ msgid "Specifies a skin for login page of your website."
12060
+ msgstr "نمای صفحه ورود را در سایت شما مشخص می کند."
12061
+
12062
+ #: includes/general-hooks.php:1465
12063
+ msgid "Clean white"
12064
+ msgstr "سفید تمیز"
12065
+
12066
+ #: includes/general-hooks.php:1469
12067
+ msgid "Simple white"
12068
+ msgstr "سفید ساده"
12069
+
12070
+ #: includes/general-hooks.php:1473
12071
+ msgid "Simple gray"
12072
+ msgstr "خاکستری ساده"
12073
+
12074
+ #: includes/general-hooks.php:1483
12075
+ msgid "Login message"
12076
+ msgstr "پیام ورود"
12077
+
12078
+ #: includes/general-hooks.php:1484
12079
+ #, fuzzy
12080
+ msgid "Enter a text to display above the login form."
12081
+ msgstr "متنی را برای نمایش در بالای فرم ورود وارد کنید."
12082
+
12083
+ #: includes/general-hooks.php:1496
12084
+ msgid "Login Page Logo"
12085
+ msgstr "لوگوی صفحه ورود"
12086
+
12087
+ #: includes/general-hooks.php:1497
12088
+ msgid ""
12089
+ "Specifies a logo to display on login page.(width of logo image could be up "
12090
+ "to 320px)"
12091
+ msgstr ""
12092
+ "لوگویی را برای نمایش در صفحه ورود مشخص می کند.(عرض لوگو می تواند تا 320 "
12093
+ "پیکسل باشد)"
12094
+
12095
+ #: includes/general-hooks.php:1508
12096
+ msgid "Logo Width"
12097
+ msgstr "عرض لوگو"
12098
+
12099
+ #: includes/general-hooks.php:1509
12100
+ msgid "Specifies width of logo image in pixel."
12101
+ msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
12102
+
12103
+ #: includes/general-hooks.php:1520
12104
+ msgid "Logo Height"
12105
+ msgstr "ارتفاع لوگو"
12106
+
12107
+ #: includes/general-hooks.php:1521
12108
+ msgid "Specifies height of logo image in pixel."
12109
+ msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
12110
+
12111
+ #: includes/general-hooks.php:1533
12112
+ msgid "Enable Background"
12113
+ msgstr "فعالسازی پس زمینه"
12114
+
12115
+ #: includes/general-hooks.php:1534
12116
+ msgid "Enable it to display custom background on login page."
12117
+ msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
12118
+
12119
+ #: includes/general-hooks.php:1546
12120
+ msgid "Specifies background color of website."
12121
+ msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
12122
+
12123
+ #: includes/general-hooks.php:1562
12124
+ msgid "You can upload custom image for background of login page"
12125
+ msgstr "می توانید تصویر دلخواهی را به عنوان پس زمینه صفحه ورود بارگذاری کنید."
12126
+
12127
+ #: includes/general-hooks.php:1577
12128
+ msgid "Background Size"
12129
+ msgstr "اندازه پس زمینه"
12130
+
12131
+ #: includes/general-hooks.php:1578
12132
+ msgid "Specifies background size on login page."
12133
+ msgstr "اندازه تصویر پس زمینه در صفحه ورود را مشخص می کند."
12134
+
12135
+ #: includes/general-hooks.php:1588
12136
+ msgid "Contain"
12137
+ msgstr "دربرگیرنده"
12138
+
12139
+ #: includes/general-hooks.php:1607
12140
+ msgid "Background Pattern"
12141
+ msgstr "الگوی پس زمینه"
12142
+
12143
+ #: includes/general-hooks.php:1608
12144
+ msgid ""
12145
+ "You can select one of these patterns as login background image. %s Some of "
12146
+ "these can be used as a pattern over your background image."
12147
+ msgstr ""
12148
+ "می توانید یکی از این الگوها را به عنوان تصویر پس زمینه انتخاب کنید. %s بعضی "
12149
+ "از این ها می توانند به عنوان الگو بر روی تصویر پس زمینه شما استفاده شوند."
12150
+
12151
+ #: includes/general-hooks.php:1624
12152
+ msgid "Background Repeat"
12153
+ msgstr "تکرار پس زمینه"
12154
+
12155
+ #: includes/general-hooks.php:1625
12156
+ msgid "Specifies how background image repeats."
12157
+ msgstr "نحوه تکرار تصویر پس زمینه را مشخص می کند."
12158
+
12159
+ #: includes/general-hooks.php:1630
12160
+ msgid "No repeat"
12161
+ msgstr "بدون تکرار"
12162
+
12163
+ #: includes/general-hooks.php:1634
12164
+ msgid "Repeat horizontally and vertically"
12165
+ msgstr "تکرار افقی و عمودی"
12166
+
12167
+ #: includes/general-hooks.php:1638
12168
+ msgid "Repeat horizontally"
12169
+ msgstr "تکرار افقی"
12170
+
12171
+ #: includes/general-hooks.php:1642
12172
+ msgid "Repeat vertically"
12173
+ msgstr "تکرار عمودی"
12174
+
12175
+ #: includes/general-hooks.php:1658
12176
+ msgid "Background Position"
12177
+ msgstr "موقعیت پس زمینه"
12178
+
12179
+ #: includes/general-hooks.php:1659
12180
+ msgid "Specifies background image position."
12181
+ msgstr "موقعیت تصویر پس زمینه را مشخص می کند."
12182
+
12183
+ #: includes/general-hooks.php:1664
12184
+ msgid "Left top"
12185
+ msgstr "چپ بالا"
12186
+
12187
+ #: includes/general-hooks.php:1668
12188
+ msgid "Center top"
12189
+ msgstr "وسط بالا"
12190
+
12191
+ #: includes/general-hooks.php:1672
12192
+ msgid "Right top"
12193
+ msgstr "راست بالا"
12194
+
12195
+ #: includes/general-hooks.php:1677
12196
+ msgid "Left center"
12197
+ msgstr "چپ وسط"
12198
+
12199
+ #: includes/general-hooks.php:1681
12200
+ msgid "Center center"
12201
+ msgstr "وسط وسط"
12202
+
12203
+ #: includes/general-hooks.php:1685
12204
+ msgid "Right center"
12205
+ msgstr "راست وسط"
12206
+
12207
+ #: includes/general-hooks.php:1690
12208
+ msgid "Left bottom"
12209
+ msgstr "چپ پایین"
12210
+
12211
+ #: includes/general-hooks.php:1694
12212
+ msgid "Center bottom"
12213
+ msgstr "وسط پایین"
12214
+
12215
+ #: includes/general-hooks.php:1698
12216
+ msgid "Right bottom"
12217
+ msgstr "راست پایین"
12218
+
12219
+ #: includes/general-hooks.php:1714
12220
+ msgid "Background Attachment"
12221
+ msgstr "پیوست پس زمینه"
12222
+
12223
+ #: includes/general-hooks.php:1715
12224
+ msgid ""
12225
+ "Specifies whether the background is fixed or scrollable as user scrolls the "
12226
+ "page."
12227
+ msgstr ""
12228
+ "مشخص می کند پس زمینه هنگام اسکرول کردن صفحه توسط کاربر ثابت باشد یا اسکرول "
12229
+ "شود."
12230
+
12231
+ #: includes/general-hooks.php:1721
12232
+ msgid "Scroll"
12233
+ msgstr "اسکرول"
12234
+
12235
+ #: includes/general-hooks.php:1742
12236
+ msgid "Custom CSS class name"
12237
+ msgstr "نام کلاس دلخواه CSS"
12238
+
12239
+ #: includes/general-hooks.php:1743
12240
+ msgid ""
12241
+ "In this field you can define custom CSS class name for login page.\n"
12242
+ " This class name will be added to body classes in "
12243
+ "login page and is useful for advance custom styling purposes."
12244
+ msgstr ""
12245
+ "در این فیلد می توانید نام کلاس دلخواه CSS را برای صفحه ورود تعریف کنید.\n"
12246
+ " این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
12247
+ "شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
12248
+
12249
+ #: includes/general-hooks.php:1759
12250
+ #, fuzzy
12251
+ msgid "404 Page Options"
12252
+ msgstr "تنظیمات طراحی"
12253
+
12254
+ #: includes/general-hooks.php:1765
12255
+ msgid "Specifies a page to display on 404."
12256
+ msgstr ""
12257
+
12258
+ #: includes/general-hooks.php:1780 includes/general-hooks.php:1797
12259
+ msgid "Maintenance or Comingsoon Page"
12260
+ msgstr ""
12261
+
12262
+ #: includes/general-hooks.php:1781
12263
+ msgid "Maintenance or Comingsoon Page Options"
12264
+ msgstr ""
12265
+
12266
+ #: includes/general-hooks.php:1786
12267
+ msgid "Enable Maintenance or Comingsoon Mode"
12268
+ msgstr ""
12269
+
12270
+ #: includes/general-hooks.php:1787
12271
+ msgid "With this option you can manually enable Maintenance or Comingsoon mode"
12272
+ msgstr ""
12273
+
12274
+ #: includes/general-hooks.php:1798
12275
+ msgid ""
12276
+ "In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon Mode"
12277
+ msgstr ""
12278
+
12279
+ #: includes/general-hooks.php:1817
12280
+ msgid "Search Results"
12281
+ msgstr ""
12282
+
12283
+ #: includes/general-hooks.php:1818
12284
+ msgid "Search Results Options"
12285
+ msgstr ""
12286
+
12287
+ #: includes/general-hooks.php:1824
12288
+ #, fuzzy
12289
+ msgid "Exclude Posts Types"
12290
+ msgstr "نادیده گرفتن این نوشته ها"
12291
+
12292
+ #: includes/general-hooks.php:1825
12293
+ msgid "The post types which should be excluded from search results."
12294
+ msgstr ""
12295
+
12296
+ #: includes/general-hooks.php:1835
12297
+ #, fuzzy
12298
+ msgid "Exclude Posts Without Featured Image"
12299
+ msgstr "نادیده گرفتن نوشته های بدون تصویر"
12300
+
12301
+ #: includes/general-hooks.php:1836
12302
+ #, fuzzy
12303
+ msgid "Exclude posts without featured image in search results."
12304
+ msgstr "نادیده گرفتن نوشته های بدون تصویر"
12305
+
12306
+ #: includes/general-hooks.php:1847
12307
+ msgid ""
12308
+ "If you intend to include additional posts, you should specify the posts here."
12309
+ "<br>You have to insert the Post IDs that are separated by camma (eg. "
12310
+ "53,34,87,25)"
12311
+ msgstr ""
12312
+
12313
+ #: includes/general-hooks.php:1861
12314
+ msgid "Import/Export"
12315
+ msgstr ""
12316
+
12317
+ #: includes/general-hooks.php:1862
12318
+ #, fuzzy
12319
+ msgid "Import or Export options"
12320
+ msgstr "تنظیمات نوشته نقل قول"
12321
+
12322
+ #: includes/general-hooks.php:1869
12323
+ msgid "Export Data"
12324
+ msgstr ""
12325
+
12326
+ #: includes/general-hooks.php:1870
12327
+ msgid "Your theme options code which you can import later."
12328
+ msgstr ""
12329
+
12330
+ #: includes/general-hooks.php:1880
12331
+ msgid "Import Data"
12332
+ msgstr ""
12333
+
12334
+ #: includes/general-hooks.php:1881
12335
+ msgid "Paste the exported theme options code to import into theme."
12336
+ msgstr ""
12337
+
12338
+ #: includes/general-hooks.php:1896
12339
+ #, fuzzy
12340
+ msgid "White Label"
12341
+ msgstr "فاصله خالی"
12342
+
12343
+ #: includes/general-hooks.php:1897
12344
+ msgid "White Label Settings"
12345
+ msgstr ""
12346
+
12347
+ #: includes/general-hooks.php:1907
12348
+ msgid "Change PHLOX labels."
12349
+ msgstr ""
12350
+
12351
+ #: includes/general-hooks.php:1911
12352
+ #, fuzzy
12353
+ msgid "Theme Name"
12354
+ msgstr "پوسته"
12355
+
12356
+ #: includes/general-hooks.php:1922
12357
+ #, fuzzy
12358
+ msgid "Theme Author Name"
12359
+ msgstr "نام نویسنده"
12360
+
12361
+ #: includes/general-hooks.php:1931
12362
+ #, fuzzy
12363
+ msgid "Theme Author URL"
12364
+ msgstr "شخصی ساز پوسته"
12365
+
12366
+ #: includes/general-hooks.php:1940
12367
+ #, fuzzy
12368
+ msgid "Theme Description"
12369
+ msgstr "توضیحات المان"
12370
+
12371
+ #: includes/general-hooks.php:1949
12372
+ msgid "Theme Screenshot (1200x900)"
12373
+ msgstr ""
12374
+
12375
+ #: includes/general-hooks.php:1962
12376
+ #, fuzzy
12377
+ msgid "Displays"
12378
+ msgstr "نوع نمایش"
12379
+
12380
+ #: includes/general-hooks.php:1963
12381
+ msgid "Change PHLOX admin views."
12382
+ msgstr ""
12383
+
12384
+ #: includes/general-hooks.php:1967
12385
+ #, fuzzy
12386
+ msgid "Hide Notifications"
12387
+ msgstr "تنظیمات نوشته ویدیویی"
12388
+
12389
+ #: includes/general-hooks.php:1978
12390
+ msgid "Hide Theme Badge"
12391
+ msgstr ""
12392
+
12393
+ #: includes/general-hooks.php:1989
12394
+ msgid "Hide Phlox Menu"
12395
+ msgstr ""
12396
+
12397
+ #: includes/general-hooks.php:2000
12398
+ #, fuzzy
12399
+ msgid "Hide Dashboard Section"
12400
+ msgstr "افزودن بخش"
12401
+
12402
+ #: includes/general-hooks.php:2018
12403
+ msgid "Hide Customization Section"
12404
+ msgstr ""
12405
+
12406
+ #: includes/general-hooks.php:2036
12407
+ msgid "Hide Demo Importer Section"
12408
+ msgstr ""
12409
+
12410
+ #: includes/general-hooks.php:2054
12411
+ msgid "Hide Template Kits Section"
12412
+ msgstr ""
12413
+
12414
+ #: includes/general-hooks.php:2072
12415
+ msgid "Hide Plugins Section"
12416
+ msgstr ""
12417
+
12418
+ #: includes/general-hooks.php:2090
12419
+ #, fuzzy
12420
+ msgid "Hide Tutorials Section"
12421
+ msgstr "بخش زبانه ها"
12422
+
12423
+ #: includes/general-hooks.php:2108
12424
+ #, fuzzy
12425
+ msgid "Hide Feedback Section"
12426
+ msgstr "افزودن بخش"
12427
+
12428
+ #: includes/general-hooks.php:2367
12429
+ msgid "Twitter"
12430
+ msgstr ""
12431
+
12432
+ #: includes/general-hooks.php:2368
12433
+ msgid "Facebook"
12434
+ msgstr ""
12435
+
12436
+ #: includes/general-hooks.php:2369
12437
+ msgid "Google Plus"
12438
+ msgstr ""
12439
+
12440
+ #: includes/general-hooks.php:2370
12441
+ msgid "Flickr"
12442
+ msgstr ""
12443
+
12444
+ #: includes/general-hooks.php:2371
12445
+ msgid "Delicious"
12446
+ msgstr ""
12447
+
12448
+ #: includes/general-hooks.php:2372
12449
+ msgid "Pinterest"
12450
+ msgstr ""
12451
+
12452
+ #: includes/general-hooks.php:2373
12453
+ msgid "GitHub"
12454
+ msgstr ""
12455
+
12456
+ #: includes/general-hooks.php:2545
12457
+ #, fuzzy
12458
+ msgid "Page Options"
12459
+ msgstr "تنظیمات طراحی"
12460
+
12461
+ #: includes/general-hooks.php:2553
12462
+ #, fuzzy
12463
+ msgid "Post Options"
12464
+ msgstr "تنظیمات نوشته صوتی"
12465
+
12466
+ #: includes/general-hooks.php:3028
12467
+ #, fuzzy
12468
+ msgid "Page %s"
12469
+ msgstr "برگه ها"
12470
+
12471
+ #: public/includes/frontend-ajax.php:17
12472
+ #, fuzzy
12473
+ msgid "Ajax action not found."
12474
+ msgstr "اقدام کننده عملیات یافت نشد."
12475
+
12476
+ #: public/includes/frontend-ajax.php:20
12477
+ msgid "Ajax args is required."
12478
+ msgstr ""
12479
+
12480
+ #: public/includes/frontend-ajax.php:24
12481
+ msgid "Authorization failed."
12482
+ msgstr "احراز هویت با خطا مواجه شد."
12483
+
12484
+ #: public/includes/frontend-ajax.php:102
12485
+ #, fuzzy
12486
+ msgid "Not a valid handler."
12487
+ msgstr "اصلا"
12488
+
12489
+ #: public/includes/frontend-ajax.php:108
12490
+ msgid "No data received."
12491
+ msgstr ""
12492
+
12493
+ #: public/includes/frontend-ajax.php:136 public/includes/frontend-ajax.php:179
12494
+ #, fuzzy
12495
+ msgid "Verification failed!"
12496
+ msgstr "احراز هویت با خطا مواجه شد!"
12497
+
12498
+ #: public/includes/frontend-ajax.php:147
12499
+ msgid "Your cart is currently empty."
12500
+ msgstr ""
12501
+
12502
+ #: public/includes/frontend-ajax.php:148
12503
+ msgid "Item has been removed from your shopping cart."
12504
+ msgstr ""
12505
+
12506
+ #: public/includes/frontend-ajax.php:199
12507
+ msgid "View cart"
12508
+ msgstr ""
12509
+
12510
+ #: public/includes/frontend-ajax.php:199
12511
+ msgid "has been added to your cart."
12512
+ msgstr ""
12513
+
12514
+ #: public/includes/frontend-ajax.php:204
12515
+ msgid "Sorry, this product cannot be purchased."
12516
+ msgstr ""
12517
+
12518
+ #: public/includes/frontend-ajax.php:260
12519
+ msgid "From %s"
12520
+ msgstr ""
12521
+
12522
+ #: public/includes/frontend-ajax.php:261
12523
+ msgid "Nothing found in %s"
12524
+ msgstr ""
12525
+
12526
+ #: public/templates/maintenance.php:2
12527
+ msgid "Apologies, we are busy updating our website."
12528
+ msgstr ""
12529
+
12530
+ #: public/templates/maintenance.php:3
12531
+ msgid "Maintenance Mode Is Enable"
12532
+ msgstr ""
12533
+
12534
+ #: public/templates/vcomposer/auxin_vc_extendes.php:15
12535
+ msgid "Image Gallery"
12536
+ msgstr "گالری تصاویر"
12537
+
12538
+ #: public/templates/vcomposer/auxin_vc_extendes.php:18
12539
+ #, fuzzy
12540
+ msgid "auxin-elements"
12541
+ msgstr "اکسین مشتریان"
12542
+
12543
+ #: public/templates/vcomposer/auxin_vc_extendes.php:19
12544
+ msgid "Auxin image gallery"
12545
+ msgstr "اکسین گالری تصاویر"
12546
+
12547
+ #: public/templates/vcomposer/auxin_vc_extendes.php:23
12548
+ msgid "Widget title"
12549
+ msgstr "عنوان ابزارک"
12550
+
12551
+ #: public/templates/vcomposer/auxin_vc_extendes.php:25
12552
+ msgid "Enter text used as widget title (Note: located above content element)."
12553
+ msgstr ""
12554
+
12555
+ #: public/templates/vcomposer/auxin_vc_extendes.php:29
12556
+ msgid "Gallery type"
12557
+ msgstr "نوع گالری"
12558
+
12559
+ #: public/templates/vcomposer/auxin_vc_extendes.php:33
12560
+ msgid "Packery"
12561
+ msgstr "Packery"
12562
+
12563
+ #: public/templates/vcomposer/auxin_vc_extendes.php:38
12564
+ msgid "Select gallery type."
12565
+ msgstr "نوع گالری را انتخاب کنید."
12566
+
12567
+ #: public/templates/vcomposer/auxin_vc_extendes.php:45
12568
+ msgid "Select images from media library."
12569
+ msgstr "تصاویر را از کتابخانه رسانه ها انتخاب کنید."
12570
+
12571
+ #: public/templates/vcomposer/auxin_vc_extendes.php:52
12572
+ msgid ""
12573
+ "Enter image size. Example: thumbnail, medium, large, full or other sizes "
12574
+ "defined by current theme. Alternatively enter image size in pixels: 200x100 "
12575
+ "(Width x Height). Leave empty to use \"thumbnail\" size."
12576
+ msgstr ""
12577
+ "اندازه تصویر را وارد کنید. مثال: بندانگشتی، متوسط، بزرگ، کامل یا اندازه های "
12578
+ "دیگری که توسط پوسته جاری تعریف شده اند. به عنوان جایگزین می توانید اندازه "
12579
+ "تصاویر بر حسب پیکسل را وارد کنید: 200x100 (200 عرض و 100 ارتفاع). برای "
12580
+ "استفاده از بندانگشتی این قسمت را خالی بگذارید."
12581
+
12582
+ #: public/templates/vcomposer/auxin_vc_extendes.php:60
12583
+ msgid "On click action"
12584
+ msgstr "عملیات هنگام کلیک"
12585
+
12586
+ #: public/templates/vcomposer/auxin_vc_extendes.php:64
12587
+ msgid "Link to large image"
12588
+ msgstr "پیوند به تصویر بزرگ"
12589
+
12590
+ #: public/templates/vcomposer/auxin_vc_extendes.php:65
12591
+ msgid "Open Lightbox"
12592
+ msgstr "بازشدن لایت باکس"
12593
+
12594
+ #: public/templates/vcomposer/auxin_vc_extendes.php:66
12595
+ msgid "Open custom link"
12596
+ msgstr "بازکردن پیوند دلخواه"
12597
+
12598
+ #: public/templates/vcomposer/auxin_vc_extendes.php:68
12599
+ msgid "Select action for click action."
12600
+ msgstr "عملیاتی را برای اجرا در هنگام کلیک انتخاب کنید."
12601
+
12602
+ #: public/templates/vcomposer/auxin_vc_extendes.php:75
12603
+ msgid ""
12604
+ "Style particular content element differently - add a class name and refer to "
12605
+ "it in custom CSS."
12606
+ msgstr ""
12607
+ "ظاهردهی یک المان خاص به طور جداگانه - یک نام کلاس اضافه کرده و در CSS سفارشی "
12608
+ "به آن ارجاع دهید."
12609
+
12610
+ #: public/templates/vcomposer/auxin_vc_extendes.php:79
12611
+ msgid "CSS box"
12612
+ msgstr "جعبه CSS"
12613
+
12614
+ #: public/templates/vcomposer/auxin_vc_extendes.php:81
12615
+ msgid "Design Options"
12616
+ msgstr "تنظیمات طراحی"
12617
+
12618
+ #. translators: 1: average rating 2: max rating (i.e. 5)
12619
+ #: public/templates/woocommerce/product-rating.php:41
12620
+ msgid "%1$s out of %2$s"
12621
+ msgstr ""
12622
+
12623
+ #. translators: %s: rating count
12624
+ #: public/templates/woocommerce/product-rating.php:49
12625
+ msgid "based on %s customer rating"
12626
+ msgid_plural "based on %s customer ratings"
12627
+ msgstr[0] ""
12628
+
12629
+ #. Plugin URI of the plugin/theme
12630
+ msgid "https://wordpress.org/plugins/auxin-elements/"
12631
+ msgstr "https://wordpress.org/plugins/auxin-elements/"
12632
+
12633
+ #. Description of the plugin/theme
12634
+ #, fuzzy
12635
+ msgid ""
12636
+ "Exclusive and comprehensive plugin that extends the functionality of Phlox "
12637
+ "theme by adding new Elements, widgets and options."
12638
+ msgstr ""
12639
+ "افزونه ای قدرتمند و جامع که کارایی پوسته فلوکس را با استفاده از کدهای کوتاه، "
12640
+ "ابزارک ها و تنظیمات افزایش می دهد."
12641
+
12642
+ #. Author of the plugin/theme
12643
+ msgid "averta"
12644
+ msgstr "اورتا"
12645
 
12646
+ #. Author URI of the plugin/theme
12647
+ msgid "http://averta.net"
12648
+ msgstr "http://averta.net"
 
 
 
12649
 
12650
+ #: includes/general-functions.php:2266
12651
+ msgctxt "yearly archives date format"
12652
+ msgid "Y"
12653
+ msgstr ""
 
 
12654
 
12655
+ #: includes/general-functions.php:2273
12656
+ msgctxt "monthly archives date format"
12657
+ msgid "F Y"
12658
+ msgstr ""
 
 
12659
 
12660
+ #: includes/general-functions.php:2280
12661
+ msgctxt "daily archives date format"
12662
+ msgid "F j, Y"
 
 
 
 
 
12663
  msgstr ""
 
 
12664
 
12665
+ #: includes/general-functions.php:2288
12666
+ msgctxt "post format archive title"
12667
+ msgid "Asides"
12668
+ msgstr ""
12669
 
12670
+ #: includes/general-functions.php:2290
12671
+ #, fuzzy
12672
+ msgctxt "post format archive title"
12673
+ msgid "Galleries"
12674
+ msgstr "گالری ها"
12675
 
12676
+ #: includes/general-functions.php:2292
12677
+ #, fuzzy
12678
+ msgctxt "post format archive title"
12679
+ msgid "Images"
12680
+ msgstr "تصاویر"
12681
 
12682
+ #: includes/general-functions.php:2294
12683
+ #, fuzzy
12684
+ msgctxt "post format archive title"
12685
+ msgid "Videos"
12686
+ msgstr "پوستر ویدیو"
12687
 
12688
+ #: includes/general-functions.php:2296
12689
+ #, fuzzy
12690
+ msgctxt "post format archive title"
12691
+ msgid "Quotes"
12692
+ msgstr "متن نقل قول"
 
12693
 
12694
+ #: includes/general-functions.php:2298
12695
+ #, fuzzy
12696
+ msgctxt "post format archive title"
12697
+ msgid "Links"
12698
+ msgstr "پیوند"
 
12699
 
12700
+ #: includes/general-functions.php:2300
12701
+ msgctxt "post format archive title"
12702
+ msgid "Statuses"
12703
+ msgstr ""
 
 
12704
 
12705
+ #: includes/general-functions.php:2302
12706
+ msgctxt "post format archive title"
12707
+ msgid "Audio"
12708
+ msgstr ""
 
 
12709
 
12710
+ #: includes/general-functions.php:2304
12711
+ msgctxt "post format archive title"
12712
+ msgid "Chats"
12713
+ msgstr ""
 
 
12714
 
12715
+ #. translators: playlist item title
12716
+ #: includes/general-hooks.php:3049
12717
+ msgctxt "playlist item title"
12718
+ msgid "&#8220;%s&#8221;"
12719
+ msgstr ""
12720
 
12721
+ #. translators: playlist item title
12722
+ #: includes/general-hooks.php:3074 includes/general-hooks.php:3079
12723
+ msgctxt "playlist item title"
12724
+ msgid "%s"
12725
+ msgstr ""
12726
 
12727
+ #~ msgid ""
12728
+ #~ "The informaition about your WordPress installation which can be helpful "
12729
+ #~ "for debugging or monitoring your website."
12730
+ #~ msgstr ""
12731
+ #~ "اطلاعاتی درباره سایت وردپرسی شما که می تواند برای اشکال زدایی و نظارت بر "
12732
+ #~ "وب سایت مفید باشد."
12733
 
12734
+ #, php-format
12735
+ #~ msgid "Please leave a feedback and help us to improve %s theme."
12736
+ #~ msgstr "لطفا برای کمک به بهبود پوسته %s نظرات خود را با ما در میان بگذارید."
12737
 
12738
+ #~ msgid "WordPress Environment"
12739
+ #~ msgstr "محیط وردپرس"
 
12740
 
12741
+ #~ msgid "The URL of your site's homepage."
12742
+ #~ msgstr "آدرس صفحه اصلی سایت شما."
 
12743
 
12744
+ #~ msgid "The version of WordPress installed on your site."
12745
+ #~ msgstr "نسخه وردپرسی که روی سایت شما نصب شده است."
 
12746
 
12747
+ #~ msgid "WP Multisite"
12748
+ #~ msgstr "وردپرس چندسایته"
 
12749
 
12750
+ #~ msgid "Whether or not you have WordPress Multisite enabled."
12751
+ #~ msgstr "وردپرس چندسایته را فعال کرده اید یا خیر."
 
12752
 
12753
+ #~ msgid "WP Memory Limit"
12754
+ #~ msgstr "محدودیت حافظه وردپرس"
 
12755
 
12756
+ #~ msgid ""
12757
+ #~ "The maximum amount of memory (RAM) that your site can use at one time."
12758
+ #~ msgstr ""
12759
+ #~ "بیشترین مقدار قابل استفاده از حافظه (RAM) که سایت شما در یک زمان می تواند "
12760
+ #~ "استفاده کند."
12761
 
12762
+ #~ msgid "The WordPress permalink structer."
12763
+ #~ msgstr "ساختار پیوندهای یکتای وردپرس"
 
12764
 
12765
+ #~ msgid "WP Debug Mode"
12766
+ #~ msgstr "حالت اشکال زدایی وردپرس"
 
12767
 
12768
+ #~ msgid "Displays whether or not WordPress is in Debug Mode."
12769
+ #~ msgstr "نمایش دهنده فعال یا غیرفعال بودن وضعیت اشکال زدایی وردپرس"
 
12770
 
12771
+ #~ msgid "The current language used by WordPress. Default = English"
12772
+ #~ msgstr "زبان جاری که توسط وردپرس استفاده می شود. پیش فرض = انگلیسی"
 
12773
 
12774
+ #~ msgid "Server Environment"
12775
+ #~ msgstr "محیط سرور"
 
12776
 
12777
+ #~ msgid "Server Info"
12778
+ #~ msgstr "اطلاعات سرور"
 
12779
 
12780
+ #~ msgid ""
12781
+ #~ "Information about the web server that is currently hosting your site."
12782
+ #~ msgstr "اطلاعاتی درباره وب سروری که در حال حاضر سایت شما را میزبانی می کند."
12783
 
12784
+ #~ msgid "PHP Version"
12785
+ #~ msgstr "نسخه PHP"
 
12786
 
12787
+ #~ msgid "The version of PHP installed on your hosting server."
12788
+ #~ msgstr "نسخه PHP که روی سرور میزبان شما نصب شده است."
 
12789
 
12790
+ #~ msgid "PHP Post Max Size"
12791
+ #~ msgstr "PHP Post Max Size"
 
12792
 
12793
+ #~ msgid "The largest file size that can be contained in one post."
12794
+ #~ msgstr "بیشترین اندازه فایل که می تواند در یک post وجود داشته باشد."
 
12795
 
12796
+ #~ msgid "PHP Time Limit"
12797
+ #~ msgstr "PHP Time Limit"
 
12798
 
12799
+ #~ msgid ""
12800
+ #~ "The amount of time (in seconds) that your site will spend on a single "
12801
+ #~ "operation before timing out (to avoid server lockups)"
12802
+ #~ msgstr ""
12803
+ #~ "مقدار زمانی (برحسب ثانیه) که سایت شما می تواند بدون قطع شدن یک دستور را "
12804
+ #~ "اجرا کند(برای جلوگیری از مسدود شدن سرور)"
12805
 
12806
+ #, php-format
12807
+ #~ msgid ""
12808
+ #~ "%s - We recommend setting max execution time to at least 180. See: <a "
12809
+ #~ "href=\"%s\" target=\"_blank\">Increasing max execution to PHP</a>"
12810
+ #~ msgstr ""
12811
+ #~ "%s - ما پیشنهاد می کنیم آن را روی 180 ثانیه تنظیم کنید. <a href=\"%s\" "
12812
+ #~ "target=\"_blank\"> افزایش زمان اجرا در PHP</a> را ببینید."
12813
+
12814
+ #~ msgid "PHP Max Input Vars"
12815
+ #~ msgstr "PHP Max Input Vars"
12816
+
12817
+ #~ msgid ""
12818
+ #~ "The maximum number of variables your server can use for a single function "
12819
+ #~ "to avoid overloads."
12820
+ #~ msgstr ""
12821
+ #~ "بیشترین تعداد متغیرهایی که سرور شما می تواند در یک تابع استفاده کند تا از "
12822
+ #~ "اضافه بار جلوگیری شود."
12823
+
12824
+ #~ msgid ""
12825
+ #~ "Suhosin is an advanced protection system for PHP installations. It was "
12826
+ #~ "designed to protect your servers on the one hand against a number of well "
12827
+ #~ "known problems in PHP applications and on the other hand against "
12828
+ #~ "potential unknown vulnerabilities within these applications or the PHP "
12829
+ #~ "core itself. If enabled on your server, Suhosin may need to be configured "
12830
+ #~ "to increase its data submission limits."
12831
+ #~ msgstr ""
12832
+ #~ "Suhosin یک سیستم حفاظت پیشرفته برای نصب و راه اندازی PHP است. از یک سو "
12833
+ #~ "برای حفاظت از سرور شما در برابر مشکلات شناخته شده PHP و از سوی دیگر برای "
12834
+ #~ "حفاظت در برابر آسیب‌پذیری‌های بالقوه ناشناخته در برنامه‌های کاربردی و یا "
12835
+ #~ "هسته‌ PHP طراحی شده است. اگر آن را بر روی سرور خود فعال کنید، ممکن است "
12836
+ #~ "برای افزایش محدودیت ارسال داده نیاز به پیکربندی داشته باشد."
12837
+
12838
+ #~ msgid "MySQL Version"
12839
+ #~ msgstr "نسخه MySQL"
12840
+
12841
+ #~ msgid "The version of MySQL installed on your hosting server."
12842
+ #~ msgstr "نسخه MySQL نصب شده روی سرور میزبان شما."
12843
+
12844
+ #~ msgid "Max Upload Size"
12845
+ #~ msgstr "Max Upload Size"
12846
+
12847
+ #~ msgid ""
12848
+ #~ "The largest file size that can be uploaded to your WordPress installation."
12849
+ #~ msgstr "بیشترین اندازه فایل که در سایت وردپرسی شما قابل بارگذاری است."
12850
+
12851
+ #~ msgid "Default Timezone is UTC"
12852
+ #~ msgstr "منطقه زمانی پیش فرض UTC است"
12853
+
12854
+ #~ msgid "The default timezone for your server."
12855
+ #~ msgstr "منطقه زمانی پیش فرض سرور شما."
12856
 
12857
+ #, php-format
12858
+ #~ msgid "Default timezone is %s - it should be UTC"
12859
+ #~ msgstr "منطقه زمانی پیش فرض %s است - درحالی که باید UTC باشد"
12860
 
12861
+ #~ msgid "Visit plugin homepage"
12862
+ #~ msgstr "مشاهده صفحه اصلی افزونه"
 
12863
 
12864
+ #, php-format
12865
+ #~ msgctxt "by author"
12866
+ #~ msgid "by %s"
12867
+ #~ msgstr "توسط %s"
12868
 
12869
+ #~ msgid "[Phlox] Accordion "
12870
+ #~ msgstr "[فلوکس] آکاردئون"
 
12871
 
12872
+ #~ msgid "[Phlox] Audio"
12873
+ #~ msgstr "[فلوکس] صدا"
 
12874
 
12875
+ #~ msgid "html"
12876
+ #~ msgstr "html"
 
12877
 
12878
+ #~ msgid "xml"
12879
+ #~ msgstr "xml"
 
12880
 
12881
+ #~ msgid "far"
12882
+ #~ msgstr "دور"
 
12883
 
12884
+ #~ msgid "monokai"
12885
+ #~ msgstr "موناکوی"
 
12886
 
12887
+ #~ msgid "[Phlox] Contact Form"
12888
+ #~ msgstr "[فلوکس] فرم تماس"
 
12889
 
12890
+ #~ msgid "[Phlox] Divider"
12891
+ #~ msgstr "[فلوکس] جداکننده"
 
12892
 
12893
+ #~ msgid "[Phlox] Dropcap"
12894
+ #~ msgstr "[فلوکس] دارپ کپ"
 
12895
 
12896
+ #~ msgid "Auxin Accordion Section"
12897
+ #~ msgstr "اکسین بخش آکاردئون"
 
12898
 
12899
+ #~ msgid "Section for Tabs, Tours, Accordions."
12900
+ #~ msgstr "بخش هایی برای زبانه ها، گشت و گذارها، آکاردئون ها."
 
12901
 
12902
+ #~ msgid "Style 1"
12903
+ #~ msgstr "ظاهر 1"
 
 
 
 
 
12904
 
12905
+ #~ msgid "Style 2"
12906
+ #~ msgstr "ظاهر 2"
 
 
12907
 
12908
+ #~ msgid "Style 3"
12909
+ #~ msgstr "ظاهر 3"
 
12910
 
12911
+ #~ msgid "Style 4"
12912
+ #~ msgstr "ظاهر 4"
 
12913
 
12914
+ #~ msgid "Select accordion display style."
12915
+ #~ msgstr "انتخاب نحوه نمایش آکاردئون."
 
12916
 
12917
+ #~ msgid "One toggle open at a time"
12918
+ #~ msgstr "در یک زمان فقط یکی از بازشونده ها باز باشد."
 
12919
 
12920
+ #~ msgid "Multiple toggle open at a time"
12921
+ #~ msgstr "در یک زمان چند بازشونده می توانند باز باشند."
 
12922
 
12923
+ #~ msgid "Multiple open or one."
12924
+ #~ msgstr "باز بودن چندتایی یا تکی."
 
12925
 
12926
+ #~ msgid "Flat"
12927
+ #~ msgstr "تخت"
 
12928
 
12929
+ #~ msgid "Do not fill content area?"
12930
+ #~ msgstr "پر "
 
12931
 
12932
+ #~ msgid "Do not fill content area with color."
12933
+ #~ msgstr "ناحیه محتوا را با رنگ پر نکن."
 
12934
 
12935
+ #~ msgid "1px"
12936
+ #~ msgstr "1پیکسل"
 
12937
 
12938
+ #~ msgid "2px"
12939
+ #~ msgstr "2پیکسل"
 
12940
 
12941
+ #~ msgid "3px"
12942
+ #~ msgstr "3پیکسل"
 
12943
 
12944
+ #~ msgid "4px"
12945
+ #~ msgstr "4پیکسل"
 
12946
 
12947
+ #~ msgid "5px"
12948
+ #~ msgstr "5پیکسل"
 
12949
 
12950
+ #~ msgid "10px"
12951
+ #~ msgstr "10پیکسل"
 
12952
 
12953
+ #~ msgid "15px"
12954
+ #~ msgstr "15پیکسل"
 
12955
 
12956
+ #~ msgid "20px"
12957
+ #~ msgstr "20پیکسل"
 
12958
 
12959
+ #~ msgid "25px"
12960
+ #~ msgstr "25پیکسل"
 
12961
 
12962
+ #~ msgid "30px"
12963
+ #~ msgstr "30پیکسل"
 
12964
 
12965
+ #~ msgid "35px"
12966
+ #~ msgstr "35پیکسل"
 
12967
 
12968
+ #~ msgid "Select accordion spacing."
12969
+ #~ msgstr "انتخاب فاصله خالی آکاردئون."
 
12970
 
12971
+ #~ msgid "Select accordion section title alignment."
12972
+ #~ msgstr "انتخاب تراز عنوان بخش آکاردئون"
 
12973
 
12974
+ #~ msgid "1"
12975
+ #~ msgstr "1"
 
12976
 
12977
+ #~ msgid "2"
12978
+ #~ msgstr "2"
 
12979
 
12980
+ #~ msgid "3"
12981
+ #~ msgstr "3"
 
12982
 
12983
+ #~ msgid "4"
12984
+ #~ msgstr "4"
 
12985
 
12986
+ #~ msgid "5"
12987
+ #~ msgstr "5"
 
12988
 
12989
+ #~ msgid "10"
12990
+ #~ msgstr "10"
 
12991
 
12992
+ #~ msgid "20"
12993
+ #~ msgstr "20"
 
12994
 
12995
+ #~ msgid "30"
12996
+ #~ msgstr "30"
 
12997
 
12998
+ #~ msgid "40"
12999
+ #~ msgstr "40"
 
13000
 
13001
+ #~ msgid "50"
13002
+ #~ msgstr "50"
 
13003
 
13004
+ #~ msgid "60"
13005
+ #~ msgstr "60"
 
13006
 
13007
+ #~ msgid "Allow collapse all?"
13008
+ #~ msgstr "اجازه باز کردن همه"
 
13009
 
13010
+ #~ msgid "Allow collapse all accordion sections."
13011
+ #~ msgstr "اجازه باز کردن همه بخش های آکاردئون"
 
13012
 
13013
+ #~ msgid "Chevron"
13014
+ #~ msgstr "جهت نما"
 
13015
 
13016
+ #~ msgid "Triangle"
13017
+ #~ msgstr "مثلث"
 
13018
 
13019
+ #~ msgid "Auxin Accordion"
13020
+ #~ msgstr "آکاردئون اکسین"
 
13021
 
13022
+ #~ msgid "active section"
13023
+ #~ msgstr "بخش فعال"
 
13024
 
13025
+ #~ msgid "Auxin Call to action "
13026
+ #~ msgstr "اکسین فراخوان برای عملیات"
 
13027
 
13028
+ #~ msgid "Enter text for heading line."
13029
+ #~ msgstr "متنی را برای خط عنوان وارد کنید."
 
13030
 
13031
+ #~ msgid "Subheading"
13032
+ #~ msgstr "زیرعنوان"
 
13033
 
13034
+ #~ msgid "The sets style of button"
13035
+ #~ msgstr "مجموعه سبک های دکمه"
 
13036
 
13037
+ #~ msgid "No second button"
13038
+ #~ msgstr "بدون دکمه دوم"
 
13039
 
13040
+ #~ msgid "Second Button style"
13041
+ #~ msgstr "ظاهر دکمه دوم"
 
13042
 
13043
+ #~ msgid "Auxin Captionn "
13044
+ #~ msgstr "اکسین عنوان"
 
13045
 
13046
+ #~ msgid "Aotu play"
13047
+ #~ msgstr "نمایش خودکار"
 
13048
 
13049
+ #~ msgid "Auxin Chart"
13050
+ #~ msgstr "اکسین نمودار"
 
13051
 
13052
+ #~ msgid "yes"
13053
+ #~ msgstr "بله"
 
13054
 
13055
+ #~ msgid "no"
13056
+ #~ msgstr "خیر"
 
13057
 
13058
+ #~ msgid "Auto play"
13059
+ #~ msgstr "نمایش خودکار"
 
13060
 
13061
+ #~ msgid "Auxin col "
13062
+ #~ msgstr "ستون اکسین"
 
13063
 
13064
+ #~ msgid "Auxin faq"
13065
+ #~ msgstr "اکسین پرسش و پاسخ"
 
13066
 
13067
+ #~ msgid "dashed"
13068
+ #~ msgstr "خط چین"
 
13069
 
13070
+ #~ msgid "bar"
13071
+ #~ msgstr "نوار"
 
13072
 
13073
+ #~ msgid "Paged"
13074
+ #~ msgstr "صفحه بندی شده"
 
13075
 
13076
+ #~ msgid "Auxin get_pages"
13077
+ #~ msgstr "اکسین get_pages"
 
13078
 
13079
+ #~ msgid "filterable"
13080
+ #~ msgstr "قابل فیلتر"
 
13081
 
13082
+ #~ msgid "ids"
13083
+ #~ msgstr "شناسه ها"
 
13084
 
13085
+ #~ msgid "Invalid slider id"
13086
+ #~ msgstr "شناسه اسلایدر نامعتبر"
 
13087
 
13088
+ #~ msgid "Auxin get_testimonial"
13089
+ #~ msgstr "اکسین get_testimonial"
 
13090
 
13091
+ #~ msgid "display_avatar"
13092
+ #~ msgstr "display_avatar"
 
13093
 
13094
+ #~ msgid "Auxin latest_blog "
13095
+ #~ msgstr "اکسین latest_blog"
 
13096
 
13097
+ #~ msgid "This is will add latest_blog element"
13098
+ #~ msgstr "این یک المان latest_blog اضافه می کند."
 
13099
 
13100
+ #~ msgid "view_more type"
13101
+ #~ msgstr "view_more type"
 
13102
 
13103
+ #~ msgid "more_label"
13104
+ #~ msgstr "more_label"
13105
+
13106
+ #~ msgid "perpage"
13107
+ #~ msgstr "هر صفحه"
13108
+
13109
+ #~ msgid "view_thumb?"
13110
+ #~ msgstr "view_thumb?"
13111
 
13112
+ #~ msgid "left"
13113
+ #~ msgstr "چپ"
 
13114
 
13115
+ #~ msgid "icon"
13116
+ #~ msgstr "شکلک"
 
13117
 
13118
+ #~ msgid "big"
13119
+ #~ msgstr "بزرگ"
 
13120
 
13121
+ #~ msgid "auto play"
13122
+ #~ msgstr "نمایش خودکار"
 
13123
 
13124
+ #~ msgid "<p>I am test text block. Click edit button to change this text.</p>"
13125
+ #~ msgstr ""
13126
+ #~ "<p> من آخرین بلوک متن هستم. برای تغییر این متن بر روی ویرایش کلیک کنید."
13127
 
13128
+ #~ msgid "Auxin latest_news "
13129
+ #~ msgstr "اکسین latest_news"
 
13130
 
13131
+ #~ msgid "view_more"
13132
+ #~ msgstr "view_more"
 
13133
 
13134
+ #~ msgid "view_thumb"
13135
+ #~ msgstr "view_thumb"
 
13136
 
13137
+ #~ msgid "mini"
13138
+ #~ msgstr "کوچک"
 
13139
 
13140
+ #~ msgid "date_type"
13141
+ #~ msgstr "date_type"
 
13142
 
13143
+ #~ msgid "auto_play"
13144
+ #~ msgstr "auto_play"
 
13145
 
13146
+ #~ msgid "Auxin link "
13147
+ #~ msgstr "اکسین پیوند"
 
13148
 
13149
+ #~ msgid "url"
13150
+ #~ msgstr "url"
 
13151
 
13152
+ #~ msgid "_self"
13153
+ #~ msgstr "_self"
 
 
 
 
13154
 
13155
+ #~ msgid "_blank"
13156
+ #~ msgstr "_blank"
 
 
 
 
13157
 
13158
+ #~ msgid "target"
13159
+ #~ msgstr "هدف"
 
13160
 
13161
+ #~ msgid "Auxin list item"
13162
+ #~ msgstr "اکسین آیتم لیست"
 
13163
 
13164
+ #~ msgid "Auxin list "
13165
+ #~ msgstr "اکسین لیست"
 
13166
 
13167
+ #~ msgid "masterslider_axi"
13168
+ #~ msgstr "masterslider_axi"
 
 
 
 
 
 
13169
 
13170
+ #~ msgid "class"
13171
+ #~ msgstr "کلاس"
 
13172
 
13173
+ #~ msgid "size"
13174
+ #~ msgstr "اندازه"
 
 
 
 
13175
 
13176
+ #~ msgid "Auxin latest_tweets "
13177
+ #~ msgstr "اکسین latest_tweets "
 
13178
 
13179
+ #~ msgid "user"
13180
+ #~ msgstr "کاربر"
 
 
 
 
13181
 
13182
+ #~ msgid "avatar type"
13183
+ #~ msgstr "نوع آواتار"
 
13184
 
13185
+ #~ msgid "avatar limit"
13186
+ #~ msgstr "محدودیت آواتار"
 
13187
 
13188
+ #~ msgid "[Phlox] Message Box "
13189
+ #~ msgstr "[فلوکس] جعبه پیام"
 
13190
 
13191
+ #~ msgid "success"
13192
+ #~ msgstr "موفق"
 
13193
 
13194
+ #~ msgid "warn"
13195
+ #~ msgstr "هشدار"
 
13196
 
13197
+ #~ msgid "info"
13198
+ #~ msgstr "اطلاعات"
 
13199
 
13200
+ #~ msgid "help"
13201
+ #~ msgstr "کمک"
 
13202
 
13203
+ #~ msgid "table_id"
13204
+ #~ msgstr "table_id"
 
13205
 
13206
+ #~ msgid "Auxin related_items "
13207
+ #~ msgstr "اکسین related_items "
 
13208
 
13209
+ #~ msgid "three-column"
13210
+ #~ msgstr "سه-ستون"
 
13211
 
13212
+ #~ msgid "mode"
13213
+ #~ msgstr "حالت"
 
 
 
 
 
13214
 
13215
+ #~ msgid "nav"
13216
+ #~ msgstr "nav"
 
13217
 
13218
+ #~ msgid "posttype"
13219
+ #~ msgstr "نوع نوشته"
 
13220
 
13221
+ #~ msgid "tax"
13222
+ #~ msgstr "tax"
 
13223
 
13224
+ #~ msgid "Auxin services "
13225
+ #~ msgstr "اکسین خدمات"
 
13226
 
13227
+ #~ msgid "column"
13228
+ #~ msgstr "ستون"
 
13229
 
13230
+ #~ msgid "tab"
13231
+ #~ msgstr "زبانه"
 
13232
 
13233
+ #~ msgid "display_type"
13234
+ #~ msgstr "display_type"
 
13235
 
13236
+ #~ msgid "Auxin soundcloud "
13237
+ #~ msgstr "اکسین soundcloud "
 
13238
 
13239
+ #~ msgid "view_excerpt"
13240
+ #~ msgstr "view_excerpt"
 
13241
 
13242
+ #~ msgid "view_socials"
13243
+ #~ msgstr "view_socials"
 
13244
 
13245
+ #~ msgid "[Phlox] Tabs"
13246
+ #~ msgstr "[فلوکس] زبانه ها"
 
13247
 
13248
+ #~ msgid "Auxin Sample "
13249
+ #~ msgstr "اکسین نمونه"
 
13250
 
13251
+ #~ msgid "Button border style"
13252
+ #~ msgstr "ظاهر کادر دکمه"
 
13253
 
13254
+ #~ msgid "The style of divider"
13255
+ #~ msgstr "ظاهر جداکننده"
 
13256
 
13257
+ #~ msgid "Choose a color for icon"
13258
+ #~ msgstr "رنگی برای شکلک انتخاب کنید"
 
13259
 
13260
+ #~ msgid "Auxin testimonial_item"
13261
+ #~ msgstr "اکسین testimonial_item"
 
 
 
 
 
 
13262
 
13263
+ #~ msgid "This is will add testimonial_item element"
13264
+ #~ msgstr "یک testimonial_item اضافه می کند."
 
13265
 
13266
+ #~ msgid "Show author"
13267
+ #~ msgstr "نمایش نویسنده"
 
13268
 
13269
+ #~ msgid "link"
13270
+ #~ msgstr "پیوند"
 
13271
 
13272
+ #~ msgid "box"
13273
+ #~ msgstr "جعبه"
 
13274
 
13275
+ #~ msgid "more .."
13276
+ #~ msgstr "بیشتر .."
 
13277
 
13278
+ #~ msgid "Auxin testimonial_slider"
13279
+ #~ msgstr "اکسین testimonial_slider"
 
13280
 
13281
+ #~ msgid "This is will add testimonial_slider element"
13282
+ #~ msgstr "یک المان testimonial_slider اضافه می کند."
 
13283
 
13284
+ #~ msgid "Number of testimonials"
13285
+ #~ msgstr "تعداد اظهار نظرها"
 
13286
 
13287
+ #~ msgid "Category 2"
13288
+ #~ msgstr "دسته 2"
 
13289
 
13290
+ #~ msgid "Category 3"
13291
+ #~ msgstr "دسته 3"
 
13292
 
13293
+ #~ msgid "Select specific testimonials"
13294
+ #~ msgstr "انتخاب اظهار نظرهای مشخص"
 
13295
 
13296
+ #~ msgid "Auxin testimonial "
13297
+ #~ msgstr "اکسین نظرات دیگران"
 
13298
 
13299
+ #~ msgid "author"
13300
+ #~ msgstr "نویسنده"
 
13301
 
13302
+ #~ msgid "avatar"
13303
+ #~ msgstr "آواتار"
 
13304
 
13305
+ #~ msgid "role"
13306
+ #~ msgstr "نقش"
 
13307
 
13308
+ #~ msgid "refer"
13309
+ #~ msgstr "refer"
 
13310
 
13311
+ #~ msgid "Auxin latest_tweets_slider "
13312
+ #~ msgstr "اکسین latest_tweets_slider "
 
13313
 
13314
+ #~ msgid "This is will add latest_tweets element"
13315
+ #~ msgstr "یک المان add latest_tweets اضافه می کند."
 
13316
 
13317
+ #~ msgid "Number of tweets to fetch"
13318
+ #~ msgstr "تعداد توییت ها برای استخراج"
 
 
 
 
 
13319
 
13320
+ #~ msgid "style type"
13321
+ #~ msgstr "نوع ظاهر"
 
13322
 
13323
+ #~ msgid "Auxin latest_tweets2 "
13324
+ #~ msgstr "اکسین latest_tweets2 "
 
13325
 
13326
+ #~ msgid "id"
13327
+ #~ msgstr "شناسه"
 
13328
 
13329
+ #~ msgid "limit"
13330
+ #~ msgstr "محدودیت"
 
 
 
 
 
 
 
13331
 
13332
+ #~ msgid "uid"
13333
+ #~ msgstr "uid"
 
13334
 
13335
+ #~ msgid "[Phlox] Gallery"
13336
+ #~ msgstr "[فلوکس] گالری"
 
13337
 
13338
+ #~ msgid "1 Column"
13339
+ #~ msgstr "1 ستون"
 
13340
 
13341
+ #~ msgid "2 Columns"
13342
+ #~ msgstr "2 ستون"
 
13343
 
13344
+ #~ msgid "3 Columns"
13345
+ #~ msgstr "3 ستون"
 
13346
 
13347
+ #~ msgid "4 Columns"
13348
+ #~ msgstr "4 ستون"
 
13349
 
13350
+ #~ msgid "5 Columns"
13351
+ #~ msgstr "5 ستون"
 
13352
 
13353
+ #~ msgid "6 Columns"
13354
+ #~ msgstr "6 ستون"
 
 
 
 
 
 
 
 
13355
 
13356
+ #~ msgid "[Phlox] Map "
13357
+ #~ msgstr "[فلوکس] نقشه"
 
13358
 
13359
+ #~ msgid "[Phlox] Highlight"
13360
+ #~ msgstr "[فلوکس] برجسته"
 
13361
 
13362
+ #~ msgid "[Phlox] Image"
13363
+ #~ msgstr "[فلوکس] تصویر"
 
13364
 
13365
+ #~ msgid "[Phlox] Quote"
13366
+ #~ msgstr "[فلوکس] نقل قول"
 
13367
 
13368
+ #~ msgid "Quote title, leave it empty if you don`t need title."
13369
+ #~ msgstr "عنوان نقل قول، اگر به عنوان نیازی ندارید این بخش را خالی بگذارید."
 
13370
 
13371
+ #~ msgid "Post IDs separated by comma (eg. 53,34,87,25)"
13372
+ #~ msgstr "شناسه نوشته ها که با کاما از هم جدا شده اند. (مثلا 53,34,87,25)."
 
 
 
 
 
13373
 
13374
+ #~ msgid "Specifies space between carousel columns in pixels."
13375
+ #~ msgstr "فضای خالی بین ستون های گردونه را بر حسب پیکسل مشخص می کند."
 
13376
 
13377
+ #~ msgid "Specify a category that you want."
13378
+ #~ msgstr "دسته ی مورد نظر خود را مشخص کنید."
 
13379
 
13380
+ #~ msgid "[Phlox] Text"
13381
+ #~ msgstr "[فلوکس] متن"
 
13382
 
13383
+ #~ msgid "Block background color"
13384
+ #~ msgstr "رنگ پس زمینه بلوک"
 
13385
 
13386
+ #~ msgid "[Phlox] Video"
13387
+ #~ msgstr "[فلوکس] ویدیو"
 
 
 
 
 
13388
 
13389
+ #~ msgid "Tracking & SEO"
13390
+ #~ msgstr "ردیابی و سئو"
 
13391
 
13392
+ #, php-format
13393
+ #~ msgid "You can add your Google analytics code here.%s DO NOT use %s tag."
13394
+ #~ msgstr ""
13395
+ #~ "کد آنالیز گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
13396
+ #~ "نکنید %s."
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.6.10\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-08-18 05:36:09+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -666,7 +666,7 @@ msgstr ""
666
  #: admin/includes/metaboxes/metabox-fields-general-top-header.php:164
667
  #: admin/includes/metaboxes/metabox-fields-general-top-header.php:194
668
  #: includes/elementor/widgets/audio.php:155 includes/elements/audio.php:104
669
- #: includes/general-functions.php:1889
670
  msgid "Theme Default"
671
  msgstr ""
672
 
@@ -9910,7 +9910,7 @@ msgstr ""
9910
  msgid "Self"
9911
  msgstr ""
9912
 
9913
- #: includes/elements/image.php:249 includes/general-functions.php:2010
9914
  msgid "Blank"
9915
  msgstr ""
9916
 
@@ -10940,82 +10940,82 @@ msgstr ""
10940
  msgid "LOADING"
10941
  msgstr ""
10942
 
10943
- #: includes/general-functions.php:2011
10944
  msgid "Blurred placeholder image"
10945
  msgstr ""
10946
 
10947
- #: includes/general-functions.php:2012
10948
  msgid "In-progress box animation"
10949
  msgstr ""
10950
 
10951
- #: includes/general-functions.php:2013
10952
  msgid "Loading spinner (blue)"
10953
  msgstr ""
10954
 
10955
- #: includes/general-functions.php:2014
10956
  msgid "Loading spinner (light)"
10957
  msgstr ""
10958
 
10959
- #: includes/general-functions.php:2015
10960
  msgid "Loading spinner (dark)"
10961
  msgstr ""
10962
 
10963
- #: includes/general-functions.php:2238
10964
  #. translators: %s: Search term.
10965
  msgid "Search Results for: %s"
10966
  msgstr ""
10967
 
10968
- #: includes/general-functions.php:2242
10969
  #. translators: %s is the page number.
10970
  msgid "&nbsp;&ndash; Page %s"
10971
  msgstr ""
10972
 
10973
- #: includes/general-functions.php:2249
10974
  #. translators: Category archive title. 1: Category name
10975
  msgid "Category: %s"
10976
  msgstr ""
10977
 
10978
- #: includes/general-functions.php:2255
10979
  #. translators: Tag archive title. 1: Tag name
10980
  msgid "Tag: %s"
10981
  msgstr ""
10982
 
10983
- #: includes/general-functions.php:2262
10984
  #. translators: Author archive title. 1: Author name
10985
  msgid "Author: %s"
10986
  msgstr ""
10987
 
10988
- #: includes/general-functions.php:2269
10989
  #. translators: Yearly archive title. 1: Year
10990
  msgid "Year: %s"
10991
  msgstr ""
10992
 
10993
- #: includes/general-functions.php:2276
10994
  #. translators: Monthly archive title. 1: Month name and year
10995
  msgid "Month: %s"
10996
  msgstr ""
10997
 
10998
- #: includes/general-functions.php:2283
10999
  #. translators: Daily archive title. 1: Date
11000
  msgid "Day: %s"
11001
  msgstr ""
11002
 
11003
- #: includes/general-functions.php:2310
11004
  #. translators: Post type archive title. 1: Post type name
11005
  msgid "Archives: %s"
11006
  msgstr ""
11007
 
11008
- #: includes/general-functions.php:2318
11009
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11010
  #. Current taxonomy term
11011
  msgid "%1$s: %2$s"
11012
  msgstr ""
11013
 
11014
- #: includes/general-functions.php:2321
11015
  msgid "Page Not Found"
11016
  msgstr ""
11017
 
11018
- #: includes/general-functions.php:2486
11019
  msgid "Select Page"
11020
  msgstr ""
11021
 
@@ -11852,62 +11852,62 @@ msgstr ""
11852
  msgid "http://averta.net"
11853
  msgstr ""
11854
 
11855
- #: includes/general-functions.php:2265
11856
  msgctxt "yearly archives date format"
11857
  msgid "Y"
11858
  msgstr ""
11859
 
11860
- #: includes/general-functions.php:2272
11861
  msgctxt "monthly archives date format"
11862
  msgid "F Y"
11863
  msgstr ""
11864
 
11865
- #: includes/general-functions.php:2279
11866
  msgctxt "daily archives date format"
11867
  msgid "F j, Y"
11868
  msgstr ""
11869
 
11870
- #: includes/general-functions.php:2287
11871
  msgctxt "post format archive title"
11872
  msgid "Asides"
11873
  msgstr ""
11874
 
11875
- #: includes/general-functions.php:2289
11876
  msgctxt "post format archive title"
11877
  msgid "Galleries"
11878
  msgstr ""
11879
 
11880
- #: includes/general-functions.php:2291
11881
  msgctxt "post format archive title"
11882
  msgid "Images"
11883
  msgstr ""
11884
 
11885
- #: includes/general-functions.php:2293
11886
  msgctxt "post format archive title"
11887
  msgid "Videos"
11888
  msgstr ""
11889
 
11890
- #: includes/general-functions.php:2295
11891
  msgctxt "post format archive title"
11892
  msgid "Quotes"
11893
  msgstr ""
11894
 
11895
- #: includes/general-functions.php:2297
11896
  msgctxt "post format archive title"
11897
  msgid "Links"
11898
  msgstr ""
11899
 
11900
- #: includes/general-functions.php:2299
11901
  msgctxt "post format archive title"
11902
  msgid "Statuses"
11903
  msgstr ""
11904
 
11905
- #: includes/general-functions.php:2301
11906
  msgctxt "post format archive title"
11907
  msgid "Audio"
11908
  msgstr ""
11909
 
11910
- #: includes/general-functions.php:2303
11911
  msgctxt "post format archive title"
11912
  msgid "Chats"
11913
  msgstr ""
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.6.12\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-08-31 10:26:18+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
666
  #: admin/includes/metaboxes/metabox-fields-general-top-header.php:164
667
  #: admin/includes/metaboxes/metabox-fields-general-top-header.php:194
668
  #: includes/elementor/widgets/audio.php:155 includes/elements/audio.php:104
669
+ #: includes/general-functions.php:1890
670
  msgid "Theme Default"
671
  msgstr ""
672
 
9910
  msgid "Self"
9911
  msgstr ""
9912
 
9913
+ #: includes/elements/image.php:249 includes/general-functions.php:2011
9914
  msgid "Blank"
9915
  msgstr ""
9916
 
10940
  msgid "LOADING"
10941
  msgstr ""
10942
 
10943
+ #: includes/general-functions.php:2012
10944
  msgid "Blurred placeholder image"
10945
  msgstr ""
10946
 
10947
+ #: includes/general-functions.php:2013
10948
  msgid "In-progress box animation"
10949
  msgstr ""
10950
 
10951
+ #: includes/general-functions.php:2014
10952
  msgid "Loading spinner (blue)"
10953
  msgstr ""
10954
 
10955
+ #: includes/general-functions.php:2015
10956
  msgid "Loading spinner (light)"
10957
  msgstr ""
10958
 
10959
+ #: includes/general-functions.php:2016
10960
  msgid "Loading spinner (dark)"
10961
  msgstr ""
10962
 
10963
+ #: includes/general-functions.php:2239
10964
  #. translators: %s: Search term.
10965
  msgid "Search Results for: %s"
10966
  msgstr ""
10967
 
10968
+ #: includes/general-functions.php:2243
10969
  #. translators: %s is the page number.
10970
  msgid "&nbsp;&ndash; Page %s"
10971
  msgstr ""
10972
 
10973
+ #: includes/general-functions.php:2250
10974
  #. translators: Category archive title. 1: Category name
10975
  msgid "Category: %s"
10976
  msgstr ""
10977
 
10978
+ #: includes/general-functions.php:2256
10979
  #. translators: Tag archive title. 1: Tag name
10980
  msgid "Tag: %s"
10981
  msgstr ""
10982
 
10983
+ #: includes/general-functions.php:2263
10984
  #. translators: Author archive title. 1: Author name
10985
  msgid "Author: %s"
10986
  msgstr ""
10987
 
10988
+ #: includes/general-functions.php:2270
10989
  #. translators: Yearly archive title. 1: Year
10990
  msgid "Year: %s"
10991
  msgstr ""
10992
 
10993
+ #: includes/general-functions.php:2277
10994
  #. translators: Monthly archive title. 1: Month name and year
10995
  msgid "Month: %s"
10996
  msgstr ""
10997
 
10998
+ #: includes/general-functions.php:2284
10999
  #. translators: Daily archive title. 1: Date
11000
  msgid "Day: %s"
11001
  msgstr ""
11002
 
11003
+ #: includes/general-functions.php:2311
11004
  #. translators: Post type archive title. 1: Post type name
11005
  msgid "Archives: %s"
11006
  msgstr ""
11007
 
11008
+ #: includes/general-functions.php:2319
11009
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11010
  #. Current taxonomy term
11011
  msgid "%1$s: %2$s"
11012
  msgstr ""
11013
 
11014
+ #: includes/general-functions.php:2322
11015
  msgid "Page Not Found"
11016
  msgstr ""
11017
 
11018
+ #: includes/general-functions.php:2487
11019
  msgid "Select Page"
11020
  msgstr ""
11021
 
11852
  msgid "http://averta.net"
11853
  msgstr ""
11854
 
11855
+ #: includes/general-functions.php:2266
11856
  msgctxt "yearly archives date format"
11857
  msgid "Y"
11858
  msgstr ""
11859
 
11860
+ #: includes/general-functions.php:2273
11861
  msgctxt "monthly archives date format"
11862
  msgid "F Y"
11863
  msgstr ""
11864
 
11865
+ #: includes/general-functions.php:2280
11866
  msgctxt "daily archives date format"
11867
  msgid "F j, Y"
11868
  msgstr ""
11869
 
11870
+ #: includes/general-functions.php:2288
11871
  msgctxt "post format archive title"
11872
  msgid "Asides"
11873
  msgstr ""
11874
 
11875
+ #: includes/general-functions.php:2290
11876
  msgctxt "post format archive title"
11877
  msgid "Galleries"
11878
  msgstr ""
11879
 
11880
+ #: includes/general-functions.php:2292
11881
  msgctxt "post format archive title"
11882
  msgid "Images"
11883
  msgstr ""
11884
 
11885
+ #: includes/general-functions.php:2294
11886
  msgctxt "post format archive title"
11887
  msgid "Videos"
11888
  msgstr ""
11889
 
11890
+ #: includes/general-functions.php:2296
11891
  msgctxt "post format archive title"
11892
  msgid "Quotes"
11893
  msgstr ""
11894
 
11895
+ #: includes/general-functions.php:2298
11896
  msgctxt "post format archive title"
11897
  msgid "Links"
11898
  msgstr ""
11899
 
11900
+ #: includes/general-functions.php:2300
11901
  msgctxt "post format archive title"
11902
  msgid "Statuses"
11903
  msgstr ""
11904
 
11905
+ #: includes/general-functions.php:2302
11906
  msgctxt "post format archive title"
11907
  msgid "Audio"
11908
  msgstr ""
11909
 
11910
+ #: includes/general-functions.php:2304
11911
  msgctxt "post format archive title"
11912
  msgid "Chats"
11913
  msgstr ""
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.6.10 (2020-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.6.12 (2020-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
public/includes/class-auxels-frontend-assets.php CHANGED
@@ -30,6 +30,9 @@ class AUXELS_Frontend_Assets {
30
  * @return void
31
  */
32
  public function load_assets() {
 
 
 
33
 
34
  if( $google_map_api_key = auxin_get_option( 'auxin_google_map_api_key') ){
35
  wp_enqueue_script( 'mapapi', esc_url( set_url_scheme( 'http://maps.googleapis.com/maps/api/js?v=3&key='. $google_map_api_key ) ) , null, null, TRUE );
30
  * @return void
31
  */
32
  public function load_assets() {
33
+
34
+ // fix compatibility issue with "Elementor Addon Elements" plugin
35
+ wp_deregister_script( 'wts-isotope' );
36
 
37
  if( $google_map_api_key = auxin_get_option( 'auxin_google_map_api_key') ){
38
  wp_enqueue_script( 'mapapi', esc_url( set_url_scheme( 'http://maps.googleapis.com/maps/api/js?v=3&key='. $google_map_api_key ) ) , null, null, TRUE );