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