Version Description
- Fixed #3915
Download this release
Release Info
Developer | Unyson |
Plugin | Unyson |
Version | 2.7.24 |
Comparing to | |
See all releases |
Code changes from version 2.7.23 to 2.7.24
- framework/core/components/backend.php +6 -4
- framework/core/components/theme.php +6 -8
- framework/includes/option-types/addable-box/static/css/styles.css +33 -25
- framework/includes/option-types/addable-box/static/js/scripts.js +9 -3
- framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php +18 -12
- framework/includes/option-types/rgba-color-picker/static/js/scripts.js +127 -81
- framework/languages/fw-fa_IR.mo +0 -0
- framework/languages/fw-fa_IR.po +5991 -0
- framework/manifest.php +1 -1
- framework/static/css/backend-options.css +287 -217
- framework/static/js/backend-options.js +8 -4
- readme.txt +5 -2
- unyson.php +1 -1
framework/core/components/backend.php
CHANGED
@@ -65,7 +65,7 @@ final class _FW_Component_Backend {
|
|
65 |
* @internal
|
66 |
*/
|
67 |
public function _get_settings_page_slug() {
|
68 |
-
return 'fw-settings';
|
69 |
}
|
70 |
|
71 |
/**
|
@@ -1683,7 +1683,7 @@ final class _FW_Component_Backend {
|
|
1683 |
|
1684 |
// add 'fw-postbox' class and some attr related placeholders
|
1685 |
$meta_box_template = str_replace(
|
1686 |
-
'class="postbox',
|
1687 |
$placeholders['attr'] . ' class="postbox fw-postbox' . $placeholders['attr_class'],
|
1688 |
$meta_box_template
|
1689 |
);
|
@@ -1691,16 +1691,18 @@ final class _FW_Component_Backend {
|
|
1691 |
// add html_before|after_title placeholders
|
1692 |
{
|
1693 |
$meta_box_template = str_replace(
|
1694 |
-
'<
|
1695 |
|
1696 |
/**
|
1697 |
* used <small> not <span> because there is a lot of css and js
|
1698 |
* that thinks inside <h2 class="hndle"> there is only one <span>
|
1699 |
* so do not brake their logic
|
1700 |
*/
|
|
|
1701 |
'<small class="fw-html-before-title">' . $placeholders['html_before_title'] . '</small>' .
|
1702 |
'<span>' . $placeholders['title'] . '</span>' .
|
1703 |
-
'<small class="fw-html-after-title">' . $placeholders['html_after_title'] . '</small>'
|
|
|
1704 |
|
1705 |
$meta_box_template
|
1706 |
);
|
65 |
* @internal
|
66 |
*/
|
67 |
public function _get_settings_page_slug() {
|
68 |
+
return apply_filters( 'fw_get_settings_page_slug', 'fw-settings' );
|
69 |
}
|
70 |
|
71 |
/**
|
1683 |
|
1684 |
// add 'fw-postbox' class and some attr related placeholders
|
1685 |
$meta_box_template = str_replace(
|
1686 |
+
'class="postbox ',
|
1687 |
$placeholders['attr'] . ' class="postbox fw-postbox' . $placeholders['attr_class'],
|
1688 |
$meta_box_template
|
1689 |
);
|
1691 |
// add html_before|after_title placeholders
|
1692 |
{
|
1693 |
$meta_box_template = str_replace(
|
1694 |
+
'<h2 class="hndle">' . $placeholders['title'] . '</h2>',
|
1695 |
|
1696 |
/**
|
1697 |
* used <small> not <span> because there is a lot of css and js
|
1698 |
* that thinks inside <h2 class="hndle"> there is only one <span>
|
1699 |
* so do not brake their logic
|
1700 |
*/
|
1701 |
+
'<h2 class="hndle">' .
|
1702 |
'<small class="fw-html-before-title">' . $placeholders['html_before_title'] . '</small>' .
|
1703 |
'<span>' . $placeholders['title'] . '</span>' .
|
1704 |
+
'<small class="fw-html-after-title">' . $placeholders['html_after_title'] . '</small>' .
|
1705 |
+
'</h2>',
|
1706 |
|
1707 |
$meta_box_template
|
1708 |
);
|
framework/core/components/theme.php
CHANGED
@@ -15,7 +15,7 @@ final class _FW_Component_Theme {
|
|
15 |
public function __construct() {
|
16 |
$manifest = array();
|
17 |
|
18 |
-
if ( ( $manifest_file = apply_filters('fw_framework_manifest_path', fw_get_template_customizations_directory( '/theme/manifest.php' )) ) && is_file( $manifest_file ) ) {
|
19 |
@include $manifest_file;
|
20 |
}
|
21 |
|
@@ -64,7 +64,7 @@ final class _FW_Component_Theme {
|
|
64 |
* Return array with options from specified name/path
|
65 |
*
|
66 |
* @param string $name '{theme}/framework-customizations/theme/options/{$name}.php'
|
67 |
-
* @param array
|
68 |
*
|
69 |
* @return array
|
70 |
*/
|
@@ -149,7 +149,7 @@ final class _FW_Component_Theme {
|
|
149 |
* Config array is merged from child configs
|
150 |
*
|
151 |
* @param string|null $key Multi key format accepted: 'a/b/c'
|
152 |
-
* @param mixed
|
153 |
*
|
154 |
* @return mixed|null
|
155 |
*/
|
@@ -201,10 +201,9 @@ final class _FW_Component_Theme {
|
|
201 |
public function _action_admin_notices() {
|
202 |
|
203 |
if ( is_admin() && ! fw()->theme->manifest->check_requirements() && current_user_can( 'manage_options' ) ) {
|
204 |
-
echo
|
205 |
-
'<div class="notice notice-warning">
|
206 |
<p>' .
|
207 |
-
|
208 |
'</p>
|
209 |
</div>';
|
210 |
}
|
@@ -217,8 +216,7 @@ final class _FW_Component_Theme {
|
|
217 |
|
218 |
$url_install_plugin = is_multisite() ? network_admin_url( 'plugin-install.php?s=brizy&tab=search&type=term' ) : admin_url( 'plugin-install.php?s=brizy&tab=search&type=term' );
|
219 |
|
220 |
-
echo
|
221 |
-
'<div class="notice updated is-dismissible fw-brz-dismiss">
|
222 |
<p style="font-size:14px;">' .
|
223 |
esc_html__( 'Try Brizy: A Fast & Easy Way of Creating Pages Visually', 'fw' ) .
|
224 |
' - <a href="' . admin_url( 'admin.php?page=fw-new' ) . '">' .
|
15 |
public function __construct() {
|
16 |
$manifest = array();
|
17 |
|
18 |
+
if ( ( $manifest_file = apply_filters( 'fw_framework_manifest_path', fw_get_template_customizations_directory( '/theme/manifest.php' ) ) ) && is_file( $manifest_file ) ) {
|
19 |
@include $manifest_file;
|
20 |
}
|
21 |
|
64 |
* Return array with options from specified name/path
|
65 |
*
|
66 |
* @param string $name '{theme}/framework-customizations/theme/options/{$name}.php'
|
67 |
+
* @param array $variables These will be available in options file (like variables for view)
|
68 |
*
|
69 |
* @return array
|
70 |
*/
|
149 |
* Config array is merged from child configs
|
150 |
*
|
151 |
* @param string|null $key Multi key format accepted: 'a/b/c'
|
152 |
+
* @param mixed $default_value
|
153 |
*
|
154 |
* @return mixed|null
|
155 |
*/
|
201 |
public function _action_admin_notices() {
|
202 |
|
203 |
if ( is_admin() && ! fw()->theme->manifest->check_requirements() && current_user_can( 'manage_options' ) ) {
|
204 |
+
echo '<div class="notice notice-warning">
|
|
|
205 |
<p>' .
|
206 |
+
__( 'Theme requirements not met:', 'fw' ) . ' ' . fw()->theme->manifest->get_not_met_requirement_text() .
|
207 |
'</p>
|
208 |
</div>';
|
209 |
}
|
216 |
|
217 |
$url_install_plugin = is_multisite() ? network_admin_url( 'plugin-install.php?s=brizy&tab=search&type=term' ) : admin_url( 'plugin-install.php?s=brizy&tab=search&type=term' );
|
218 |
|
219 |
+
echo '<div class="notice updated is-dismissible fw-brz-dismiss">
|
|
|
220 |
<p style="font-size:14px;">' .
|
221 |
esc_html__( 'Try Brizy: A Fast & Easy Way of Creating Pages Visually', 'fw' ) .
|
222 |
' - <a href="' . admin_url( 'admin.php?page=fw-new' ) . '">' .
|
framework/includes/option-types/addable-box/static/css/styles.css
CHANGED
@@ -7,20 +7,23 @@
|
|
7 |
}
|
8 |
|
9 |
.fw-option-type-addable-box.has-boxes.width-type-fixed {
|
10 |
-
width: 428px;
|
|
|
11 |
}
|
12 |
|
13 |
-
.fw-option-type-addable-box
|
14 |
min-width: 100%;
|
15 |
}
|
16 |
|
17 |
-
.fw-option-type-addable-box
|
18 |
-
cursor: move !important;
|
19 |
-
|
|
|
|
|
20 |
position: relative;
|
21 |
}
|
22 |
|
23 |
-
.fw-option-type-addable-box
|
24 |
overflow: hidden;
|
25 |
white-space: nowrap;
|
26 |
max-width: 100%;
|
@@ -32,15 +35,16 @@
|
|
32 |
margin: 0;
|
33 |
}
|
34 |
|
35 |
-
.fw-option-type-addable-box
|
36 |
margin-bottom: 20px;
|
37 |
}
|
38 |
|
39 |
-
.fw-option-type-addable-box
|
40 |
-
content: '\00a0';
|
|
|
41 |
}
|
42 |
|
43 |
-
.fw-option-type-addable-box
|
44 |
vertical-align: middle;
|
45 |
}
|
46 |
|
@@ -50,28 +54,32 @@
|
|
50 |
|
51 |
|
52 |
/* Controls */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
|
|
|
|
|
|
54 |
|
55 |
-
.fw-option-type-addable-box
|
56 |
-
|
57 |
-
top: 0;
|
58 |
-
right: 27px;
|
59 |
-
display: block;
|
60 |
-
height: 100%;
|
61 |
-
background-color: #FFF;
|
62 |
-
box-sizing: border-box;
|
63 |
-
padding: 0 3px;
|
64 |
-
padding-top: inherit;
|
65 |
}
|
66 |
|
67 |
-
.fw-option-type-addable-box
|
68 |
text-decoration: none;
|
69 |
}
|
70 |
|
71 |
-
.fw-option-type-addable-box
|
72 |
color: #cccccc;
|
73 |
}
|
74 |
|
75 |
-
/* end: Controls */
|
76 |
-
|
77 |
-
|
7 |
}
|
8 |
|
9 |
.fw-option-type-addable-box.has-boxes.width-type-fixed {
|
10 |
+
width: 428px;
|
11 |
+
/* same as .fw-backend-option-fixed-width */
|
12 |
}
|
13 |
|
14 |
+
.fw-option-type-addable-box>.fw-option-boxes.ui-sortable>.fw-option-box>.fw-postbox {
|
15 |
min-width: 100%;
|
16 |
}
|
17 |
|
18 |
+
.fw-option-type-addable-box>.fw-option-boxes.ui-sortable>.fw-option-box>.fw-postbox>.hndle {
|
19 |
+
cursor: move !important;
|
20 |
+
/* to rewrite .fw-postbox h3.hndle */
|
21 |
+
word-break: break-all;
|
22 |
+
/* if box text is too long, do not move controls outside box */
|
23 |
position: relative;
|
24 |
}
|
25 |
|
26 |
+
.fw-option-type-addable-box>.fw-option-boxes.ui-sortable>.fw-option-box>.fw-postbox>.hndle>span {
|
27 |
overflow: hidden;
|
28 |
white-space: nowrap;
|
29 |
max-width: 100%;
|
35 |
margin: 0;
|
36 |
}
|
37 |
|
38 |
+
.fw-option-type-addable-box>.fw-option-boxes>.fw-option-box {
|
39 |
margin-bottom: 20px;
|
40 |
}
|
41 |
|
42 |
+
.fw-option-type-addable-box>.fw-option-boxes.ui-sortable>.fw-option-box>.fw-postbox>.hndle span:after {
|
43 |
+
content: '\00a0';
|
44 |
+
/* - when title is empty, box has too small (broken) height */
|
45 |
}
|
46 |
|
47 |
+
.fw-option-type-addable-box>.fw-option-boxes.ui-sortable>.fw-option-box>.fw-postbox>.hndle img {
|
48 |
vertical-align: middle;
|
49 |
}
|
50 |
|
54 |
|
55 |
|
56 |
/* Controls */
|
57 |
+
.fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .hndle .fw-html-before-title:empty {
|
58 |
+
display: none;
|
59 |
+
}
|
60 |
+
.fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .postbox-header h2.hndle {
|
61 |
+
border-bottom: none !important;
|
62 |
+
}
|
63 |
+
.rtl .fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .hndle .fw-html-after-title {
|
64 |
+
height: auto;
|
65 |
+
left: 27px;
|
66 |
+
right: auto;
|
67 |
+
}
|
68 |
|
69 |
+
.rtl .fw-option-type-addable-box .postbox .handlediv {
|
70 |
+
padding: 0 12px;
|
71 |
+
}
|
72 |
|
73 |
+
.rtl .fw-option-type-addable-box .postbox-header .hndle {
|
74 |
+
justify-content: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
|
77 |
+
.fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .hndle .fw-html-after-title .fw-option-box-controls .fw-option-box-control {
|
78 |
text-decoration: none;
|
79 |
}
|
80 |
|
81 |
+
.fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .hndle .fw-html-after-title .fw-option-box-controls .fw-option-box-control-wrapper {
|
82 |
color: #cccccc;
|
83 |
}
|
84 |
|
85 |
+
/* end: Controls */
|
|
|
|
framework/includes/option-types/addable-box/static/js/scripts.js
CHANGED
@@ -66,9 +66,15 @@ jQuery(document).ready(function ($) {
|
|
66 |
|
67 |
/** Init boxes controls */
|
68 |
initControls: function ($boxes) {
|
|
|
|
|
|
|
|
|
|
|
69 |
$boxes
|
70 |
.find('.fw-option-box-controls:not(.initialized)')
|
71 |
.on('click', '.fw-option-box-control', function(e){
|
|
|
72 |
e.preventDefault();
|
73 |
e.stopPropagation(); // prevent open/close of the box (when the link is in box title bar)
|
74 |
|
@@ -180,7 +186,7 @@ jQuery(document).ready(function ($) {
|
|
180 |
|
181 |
var jsonParsedValues = JSON.parse(values) || {};
|
182 |
|
183 |
-
$box.find('> .hndle span:not([class])').first().html(
|
184 |
this.template(data.template, $.extend({}, {o: jsonParsedValues}, jsonParsedValues))
|
185 |
);
|
186 |
|
@@ -214,7 +220,7 @@ jQuery(document).ready(function ($) {
|
|
214 |
template = '[Ajax Error] '+ response.data.message
|
215 |
}
|
216 |
|
217 |
-
$box.find('> .hndle span:not([class])').first().html(template);
|
218 |
|
219 |
delete data;
|
220 |
|
@@ -223,7 +229,7 @@ jQuery(document).ready(function ($) {
|
|
223 |
this.isBusy = false;
|
224 |
$box.removeClass(titleUpdater.pendingClass);
|
225 |
|
226 |
-
$box.find('> .hndle span:not([class])').first().text('[Server Error] '+ status +': '+ error.message);
|
227 |
|
228 |
delete data;
|
229 |
|
66 |
|
67 |
/** Init boxes controls */
|
68 |
initControls: function ($boxes) {
|
69 |
+
|
70 |
+
$boxes.find('.fw-option-box-control').on('mouseover', function () {
|
71 |
+
$(this).off('click');
|
72 |
+
})
|
73 |
+
|
74 |
$boxes
|
75 |
.find('.fw-option-box-controls:not(.initialized)')
|
76 |
.on('click', '.fw-option-box-control', function(e){
|
77 |
+
|
78 |
e.preventDefault();
|
79 |
e.stopPropagation(); // prevent open/close of the box (when the link is in box title bar)
|
80 |
|
186 |
|
187 |
var jsonParsedValues = JSON.parse(values) || {};
|
188 |
|
189 |
+
$box.find( '.postbox-header > .hndle span:not([class])' ).first().html(
|
190 |
this.template(data.template, $.extend({}, {o: jsonParsedValues}, jsonParsedValues))
|
191 |
);
|
192 |
|
220 |
template = '[Ajax Error] '+ response.data.message
|
221 |
}
|
222 |
|
223 |
+
$box.find( '.postbox-header > .hndle span:not([class])' ).first().html( template );
|
224 |
|
225 |
delete data;
|
226 |
|
229 |
this.isBusy = false;
|
230 |
$box.removeClass(titleUpdater.pendingClass);
|
231 |
|
232 |
+
$box.find( '.postbox-header > .hndle span:not([class])' ).first().text( '[Server Error] ' + status + ': ' + error.message );
|
233 |
|
234 |
delete data;
|
235 |
|
framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php
CHANGED
@@ -19,7 +19,13 @@ class FW_Option_Type_Rgba_Color_Picker extends FW_Option_Type {
|
|
19 |
*/
|
20 |
protected function _enqueue_static( $id, $option, $data ) {
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
wp_enqueue_style(
|
25 |
'fw-option-' . $this->get_type(),
|
@@ -49,13 +55,13 @@ class FW_Option_Type_Rgba_Color_Picker extends FW_Option_Type {
|
|
49 |
|
50 |
/**
|
51 |
* @param string $id
|
52 |
-
* @param array
|
53 |
-
* @param array
|
54 |
*
|
55 |
* @return string
|
56 |
*/
|
57 |
protected function _render( $id, $option, $data ) {
|
58 |
-
$option['attr']['value']
|
59 |
$option['attr']['data-default'] = $option['value'];
|
60 |
|
61 |
$option['attr']['data-palettes'] = ! empty( $option['palettes'] ) && is_array( $option['palettes'] ) ? json_encode( $option['palettes'] ) : '';
|
@@ -68,22 +74,22 @@ class FW_Option_Type_Rgba_Color_Picker extends FW_Option_Type {
|
|
68 |
*/
|
69 |
protected function _get_value_from_input( $option, $input_value ) {
|
70 |
if (
|
71 |
-
is_null($input_value)
|
72 |
||
|
73 |
(
|
74 |
// do not use `!is_null()` allow empty values https://github.com/ThemeFuse/Unyson/issues/2025
|
75 |
-
!empty($input_value)
|
76 |
&&
|
77 |
-
!(
|
78 |
preg_match( '/^#([a-f0-9]{3}){1,2}$/i', $input_value )
|
79 |
||
|
80 |
preg_match( '/^rgba\( *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *(1|0|0?.\d+) *\)$/', $input_value )
|
81 |
)
|
82 |
)
|
83 |
) {
|
84 |
-
return (string)$option['value'];
|
85 |
} else {
|
86 |
-
return (string)$input_value;
|
87 |
}
|
88 |
}
|
89 |
|
@@ -92,8 +98,8 @@ class FW_Option_Type_Rgba_Color_Picker extends FW_Option_Type {
|
|
92 |
*/
|
93 |
protected function _get_defaults() {
|
94 |
return array(
|
95 |
-
'value'
|
96 |
-
'palettes'=> true
|
97 |
);
|
98 |
}
|
99 |
-
}
|
19 |
*/
|
20 |
protected function _enqueue_static( $id, $option, $data ) {
|
21 |
|
22 |
+
if ( ! wp_style_is( 'wp-color-picker' ) ) {
|
23 |
+
wp_enqueue_style( 'wp-color-picker' );
|
24 |
+
}
|
25 |
+
|
26 |
+
if ( ! wp_script_is( 'wp-color-picker' ) ) {
|
27 |
+
wp_enqueue_script( 'wp-color-picker' );
|
28 |
+
}
|
29 |
|
30 |
wp_enqueue_style(
|
31 |
'fw-option-' . $this->get_type(),
|
55 |
|
56 |
/**
|
57 |
* @param string $id
|
58 |
+
* @param array $option
|
59 |
+
* @param array $data
|
60 |
*
|
61 |
* @return string
|
62 |
*/
|
63 |
protected function _render( $id, $option, $data ) {
|
64 |
+
$option['attr']['value'] = $data['value'];
|
65 |
$option['attr']['data-default'] = $option['value'];
|
66 |
|
67 |
$option['attr']['data-palettes'] = ! empty( $option['palettes'] ) && is_array( $option['palettes'] ) ? json_encode( $option['palettes'] ) : '';
|
74 |
*/
|
75 |
protected function _get_value_from_input( $option, $input_value ) {
|
76 |
if (
|
77 |
+
is_null( $input_value )
|
78 |
||
|
79 |
(
|
80 |
// do not use `!is_null()` allow empty values https://github.com/ThemeFuse/Unyson/issues/2025
|
81 |
+
! empty( $input_value )
|
82 |
&&
|
83 |
+
! (
|
84 |
preg_match( '/^#([a-f0-9]{3}){1,2}$/i', $input_value )
|
85 |
||
|
86 |
preg_match( '/^rgba\( *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *([01]?\d\d?|2[0-4]\d|25[0-5]) *\, *(1|0|0?.\d+) *\)$/', $input_value )
|
87 |
)
|
88 |
)
|
89 |
) {
|
90 |
+
return (string) $option['value'];
|
91 |
} else {
|
92 |
+
return (string) $input_value;
|
93 |
}
|
94 |
}
|
95 |
|
98 |
*/
|
99 |
protected function _get_defaults() {
|
100 |
return array(
|
101 |
+
'value' => '',
|
102 |
+
'palettes' => true,
|
103 |
);
|
104 |
}
|
105 |
+
}
|
framework/includes/option-types/rgba-color-picker/static/js/scripts.js
CHANGED
@@ -4,9 +4,9 @@
|
|
4 |
* Overwrite Automattic Iris for enabled Alpha Channel in wpColorPicker
|
5 |
* Only run in input and is defined data alpha in true
|
6 |
*
|
7 |
-
* Version: 2.1.
|
8 |
* https://github.com/kallookoo/wp-color-picker-alpha
|
9 |
-
* Licensed under the GPLv2 license.
|
10 |
*/
|
11 |
( function( $ ) {
|
12 |
// Prevent double-init.
|
@@ -15,13 +15,21 @@
|
|
15 |
}
|
16 |
|
17 |
// Variable for some backgrounds ( grid )
|
18 |
-
var image
|
19 |
// html stuff for wpColorPicker copy of the original color-picker.js
|
20 |
_after = '<div class="wp-picker-holder" />',
|
21 |
_wrap = '<div class="wp-picker-container" />',
|
22 |
_button = '<input type="button" class="button button-small" />',
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
// Prevent CSS issues in < WordPress 4.9
|
24 |
_deprecated = ( wpColorPickerL10n.current !== undefined );
|
|
|
|
|
25 |
// Declare some global variables when is deprecated or not
|
26 |
if ( _deprecated ) {
|
27 |
var _before = '<a tabindex="0" class="wp-color-result" />';
|
@@ -67,7 +75,7 @@
|
|
67 |
*/
|
68 |
_create: function() {
|
69 |
// Return early if Iris support is missing.
|
70 |
-
if (
|
71 |
return;
|
72 |
}
|
73 |
|
@@ -92,26 +100,28 @@
|
|
92 |
|
93 |
if ( _deprecated ) {
|
94 |
el.hide().wrap( _wrap );
|
95 |
-
self.wrap
|
96 |
-
self.toggler
|
97 |
.insertBefore( el )
|
98 |
-
.css( {
|
99 |
-
|
100 |
-
|
|
|
|
|
101 |
self.pickerContainer = $( _after ).insertAfter( el );
|
102 |
-
self.button
|
103 |
} else {
|
104 |
/*
|
105 |
* Check if there's already a wrapping label, e.g. in the Customizer.
|
106 |
* If there's no label, add a default one to match the Customizer template.
|
107 |
*/
|
108 |
-
if ( !
|
109 |
// Wrap the input field in the default label.
|
110 |
el.wrap( _wrappingLabel );
|
111 |
// Insert the default label text.
|
112 |
self.wrappingLabelText = $( _wrappingLabelText )
|
113 |
.insertBefore( el )
|
114 |
-
.text(
|
115 |
}
|
116 |
|
117 |
/*
|
@@ -127,19 +137,28 @@
|
|
127 |
// Set up the toggle button and insert it before the wrapping label.
|
128 |
self.toggler = $( _before )
|
129 |
.insertBefore( self.wrappingLabel )
|
130 |
-
.css( {
|
|
|
|
|
131 |
// Set the toggle button span element text.
|
132 |
-
self.toggler.find( '.wp-color-result-text' ).text(
|
133 |
// Set up the Iris container and insert it after the wrapping label.
|
134 |
self.pickerContainer = $( _after ).insertAfter( self.wrappingLabel );
|
135 |
// Store a reference to the Clear/Default button.
|
136 |
self.button = $( _button );
|
137 |
}
|
138 |
|
139 |
-
// Set up the Default button.
|
140 |
-
|
141 |
-
|
142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
}
|
144 |
|
145 |
if ( _deprecated ) {
|
@@ -147,8 +166,8 @@
|
|
147 |
} else {
|
148 |
// Wrap the wrapping label in its wrapper and append the Clear/Default button.
|
149 |
self.wrappingLabel
|
150 |
-
|
151 |
-
|
152 |
|
153 |
/*
|
154 |
* The input wrapper now contains the label+input+Clear/Default button.
|
@@ -179,30 +198,34 @@
|
|
179 |
*/
|
180 |
change: function( event, ui ) {
|
181 |
if ( self.options.alpha ) {
|
182 |
-
self.toggler.css( {
|
|
|
|
|
183 |
if ( _deprecated ) {
|
184 |
self.toggler.html( '<span class="color-alpha" />' );
|
185 |
} else {
|
186 |
self.toggler.css( {
|
187 |
-
'position'
|
188 |
} );
|
189 |
-
if ( self.toggler.find('span.color-alpha').length == 0 ) {
|
190 |
-
self.toggler.append('<span class="color-alpha" />');
|
191 |
}
|
192 |
}
|
193 |
|
194 |
self.toggler.find( 'span.color-alpha' ).css( {
|
195 |
-
'width'
|
196 |
-
'height'
|
197 |
-
'position'
|
198 |
-
'top'
|
199 |
-
'left'
|
200 |
-
'border-top-left-radius'
|
201 |
-
'border-bottom-left-radius'
|
202 |
-
'background'
|
203 |
} );
|
204 |
} else {
|
205 |
-
self.toggler.css( {
|
|
|
|
|
206 |
}
|
207 |
|
208 |
if ( $.isFunction( self.options.change ) ) {
|
@@ -215,7 +238,7 @@
|
|
215 |
self._addListeners();
|
216 |
|
217 |
// Force the color picker to always be closed on initial load.
|
218 |
-
if ( !
|
219 |
self.toggler.click();
|
220 |
}
|
221 |
},
|
@@ -242,20 +265,20 @@
|
|
242 |
*/
|
243 |
self.wrap.on( 'click.wpcolorpicker', function( event ) {
|
244 |
event.stopPropagation();
|
245 |
-
});
|
246 |
|
247 |
/**
|
248 |
* @summary Open or close the color picker depending on the class.
|
249 |
*
|
250 |
* @since 3.5
|
251 |
*/
|
252 |
-
self.toggler.click( function(){
|
253 |
if ( self.toggler.hasClass( 'wp-picker-open' ) ) {
|
254 |
self.close();
|
255 |
} else {
|
256 |
self.open();
|
257 |
}
|
258 |
-
});
|
259 |
|
260 |
/**
|
261 |
* @summary Checks if value is empty when changing the color in the color picker.
|
@@ -299,10 +322,27 @@
|
|
299 |
* @returns {void}
|
300 |
*/
|
301 |
self.button.on( 'click', function( event ) {
|
302 |
-
|
303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
},
|
305 |
-
});
|
306 |
|
307 |
/**
|
308 |
* Overwrite iris
|
@@ -315,18 +355,18 @@
|
|
315 |
this.options.alpha = this.element.data( 'alpha' ) || false;
|
316 |
|
317 |
// Is not input disabled
|
318 |
-
if ( !
|
319 |
this.options.alpha = false;
|
320 |
|
321 |
if ( typeof this.options.alpha !== 'undefined' && this.options.alpha ) {
|
322 |
-
var self
|
323 |
-
el
|
324 |
-
_html
|
325 |
aContainer = $( _html ).appendTo( self.picker.find( '.iris-picker-inner' ) ),
|
326 |
-
aSlider
|
327 |
-
controls
|
328 |
-
aContainer
|
329 |
-
aSlider
|
330 |
};
|
331 |
|
332 |
if ( typeof el.data( 'custom-width' ) !== 'undefined' ) {
|
@@ -339,22 +379,26 @@
|
|
339 |
self.options.defaultWidth = el.width();
|
340 |
|
341 |
// Update width for input
|
342 |
-
if ( self._color._alpha < 1 || self._color.toString().indexOf('rgb') != -1 )
|
343 |
el.width( parseInt( self.options.defaultWidth + self.options.customWidth ) );
|
344 |
|
345 |
// Push new controls
|
346 |
$.each( controls, function( k, v ) {
|
347 |
-
self.controls[k] = v;
|
348 |
} );
|
349 |
|
350 |
// Change size strip and add margin for sliders
|
351 |
-
self.controls.square.css( {
|
352 |
-
|
353 |
-
|
354 |
-
|
|
|
|
|
355 |
|
356 |
$.each( [ 'aContainer', 'strip' ], function( k, v ) {
|
357 |
-
self.controls[v].width( stripsWidth ).css( {
|
|
|
|
|
358 |
} );
|
359 |
|
360 |
// Add new slider
|
@@ -368,43 +412,45 @@
|
|
368 |
this._super();
|
369 |
|
370 |
if ( this.options.alpha ) {
|
371 |
-
var self
|
372 |
controls = self.controls;
|
373 |
|
374 |
-
controls.aSlider.slider({
|
375 |
-
orientation
|
376 |
-
min
|
377 |
-
max
|
378 |
-
step
|
379 |
-
value
|
380 |
-
slide
|
381 |
// Update alpha value
|
382 |
self._color._alpha = parseFloat( ui.value / 100 );
|
383 |
self._change.apply( self, arguments );
|
384 |
}
|
385 |
-
});
|
386 |
}
|
387 |
},
|
388 |
_change: function() {
|
389 |
this._super();
|
390 |
|
391 |
var self = this,
|
392 |
-
el
|
393 |
|
394 |
if ( this.options.alpha ) {
|
395 |
-
var
|
396 |
-
alpha
|
397 |
-
color
|
398 |
-
gradient
|
399 |
'rgb(' + color.r + ',' + color.g + ',' + color.b + ') 0%',
|
400 |
'rgba(' + color.r + ',' + color.g + ',' + color.b + ', 0) 100%'
|
401 |
],
|
402 |
defaultWidth = self.options.defaultWidth,
|
403 |
-
customWidth
|
404 |
-
target
|
405 |
|
406 |
// Generate background slider alpha, only for CSS3 old browser fuck!! :)
|
407 |
-
controls.aContainer.css( {
|
|
|
|
|
408 |
|
409 |
if ( target.hasClass( 'wp-picker-open' ) ) {
|
410 |
// Update alpha value
|
@@ -421,7 +467,6 @@
|
|
421 |
el.width( defaultWidth );
|
422 |
}
|
423 |
}
|
424 |
-
el.change();
|
425 |
}
|
426 |
|
427 |
var reset = el.data( 'reset-alpha' ) || false;
|
@@ -429,17 +474,18 @@
|
|
429 |
if ( reset ) {
|
430 |
self.picker.find( '.iris-palette-container' ).on( 'click.palette', '.iris-palette', function() {
|
431 |
self._color._alpha = 1;
|
432 |
-
self.active
|
433 |
self._change();
|
434 |
} );
|
435 |
}
|
|
|
436 |
},
|
437 |
_addInputListeners: function( input ) {
|
438 |
-
var self
|
439 |
debounceTimeout = 100,
|
440 |
-
callback
|
441 |
var color = new Color( input.val() ),
|
442 |
-
val
|
443 |
|
444 |
input.removeClass( 'iris-error' );
|
445 |
// we gave a bad color
|
@@ -450,7 +496,7 @@
|
|
450 |
} else {
|
451 |
if ( color.toString() !== self._color.toString() ) {
|
452 |
// let's not do this on keyup for hex shortcodes
|
453 |
-
if ( !
|
454 |
self._setOption( 'color', color.toString() );
|
455 |
}
|
456 |
}
|
@@ -469,9 +515,9 @@
|
|
469 |
}( jQuery ) );
|
470 |
|
471 |
// Auto Call plugin is class is color-picker
|
472 |
-
jQuery( document ).ready( function
|
473 |
-
fwEvents.on( 'fw:options:init', function
|
474 |
-
data.$elements.find( 'input.fw-option-type-rgba-color-picker' ).each( function
|
475 |
$( this ).wpColorPicker();
|
476 |
} );
|
477 |
} );
|
4 |
* Overwrite Automattic Iris for enabled Alpha Channel in wpColorPicker
|
5 |
* Only run in input and is defined data alpha in true
|
6 |
*
|
7 |
+
* Version: 2.1.4
|
8 |
* https://github.com/kallookoo/wp-color-picker-alpha
|
9 |
+
* Licensed under the GPLv2 license or later.
|
10 |
*/
|
11 |
( function( $ ) {
|
12 |
// Prevent double-init.
|
15 |
}
|
16 |
|
17 |
// Variable for some backgrounds ( grid )
|
18 |
+
var image = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAAHnlligAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNpi+P///4EDBxiAGMgCCCAGFB5AADGCRBgYDh48CCRZIJS9vT2QBAggFBkmBiSAogxFBiCAoHogAKIKAlBUYTELAiAmEtABEECk20G6BOmuIl0CIMBQ/IEMkO0myiSSraaaBhZcbkUOs0HuBwDplz5uFJ3Z4gAAAABJRU5ErkJggg==',
|
19 |
// html stuff for wpColorPicker copy of the original color-picker.js
|
20 |
_after = '<div class="wp-picker-holder" />',
|
21 |
_wrap = '<div class="wp-picker-container" />',
|
22 |
_button = '<input type="button" class="button button-small" />',
|
23 |
+
_deprecated = false;
|
24 |
+
__ = wp.i18n.__;
|
25 |
+
|
26 |
+
// WP < 5.5
|
27 |
+
if ( typeof wpColorPickerL10n !== "undefined" ) {
|
28 |
+
|
29 |
// Prevent CSS issues in < WordPress 4.9
|
30 |
_deprecated = ( wpColorPickerL10n.current !== undefined );
|
31 |
+
}
|
32 |
+
|
33 |
// Declare some global variables when is deprecated or not
|
34 |
if ( _deprecated ) {
|
35 |
var _before = '<a tabindex="0" class="wp-color-result" />';
|
75 |
*/
|
76 |
_create: function() {
|
77 |
// Return early if Iris support is missing.
|
78 |
+
if ( !$.support.iris ) {
|
79 |
return;
|
80 |
}
|
81 |
|
100 |
|
101 |
if ( _deprecated ) {
|
102 |
el.hide().wrap( _wrap );
|
103 |
+
self.wrap = el.parent();
|
104 |
+
self.toggler = $( _before )
|
105 |
.insertBefore( el )
|
106 |
+
.css( {
|
107 |
+
backgroundColor: self.initialValue
|
108 |
+
} )
|
109 |
+
.attr( 'title', __( 'Select Color' ) )
|
110 |
+
.attr( 'data-current', __( 'Current' ) );
|
111 |
self.pickerContainer = $( _after ).insertAfter( el );
|
112 |
+
self.button = $( _button ).addClass( 'hidden' );
|
113 |
} else {
|
114 |
/*
|
115 |
* Check if there's already a wrapping label, e.g. in the Customizer.
|
116 |
* If there's no label, add a default one to match the Customizer template.
|
117 |
*/
|
118 |
+
if ( !el.parent( 'label' ).length ) {
|
119 |
// Wrap the input field in the default label.
|
120 |
el.wrap( _wrappingLabel );
|
121 |
// Insert the default label text.
|
122 |
self.wrappingLabelText = $( _wrappingLabelText )
|
123 |
.insertBefore( el )
|
124 |
+
.text( __( 'Color value' ) );
|
125 |
}
|
126 |
|
127 |
/*
|
137 |
// Set up the toggle button and insert it before the wrapping label.
|
138 |
self.toggler = $( _before )
|
139 |
.insertBefore( self.wrappingLabel )
|
140 |
+
.css( {
|
141 |
+
backgroundColor: self.initialValue
|
142 |
+
} );
|
143 |
// Set the toggle button span element text.
|
144 |
+
self.toggler.find( '.wp-color-result-text' ).text( __( 'Select Color' ) );
|
145 |
// Set up the Iris container and insert it after the wrapping label.
|
146 |
self.pickerContainer = $( _after ).insertAfter( self.wrappingLabel );
|
147 |
// Store a reference to the Clear/Default button.
|
148 |
self.button = $( _button );
|
149 |
}
|
150 |
|
151 |
+
// Set up the Clear/Default button.
|
152 |
+
if ( self.options.defaultColor ) {
|
153 |
+
self.button.addClass( 'wp-picker-default' ).val( __( 'Default' ) );
|
154 |
+
if ( !_deprecated ) {
|
155 |
+
self.button.attr( 'aria-label', __( 'Select default color' ) );
|
156 |
+
}
|
157 |
+
} else {
|
158 |
+
self.button.addClass( 'wp-picker-clear' ).val( _fw_option_type_rgba_color_picker_localized.l10n.reset_to_default );
|
159 |
+
if ( !_deprecated ) {
|
160 |
+
self.button.attr( 'aria-label', __( 'Clear color' ) );
|
161 |
+
}
|
162 |
}
|
163 |
|
164 |
if ( _deprecated ) {
|
166 |
} else {
|
167 |
// Wrap the wrapping label in its wrapper and append the Clear/Default button.
|
168 |
self.wrappingLabel
|
169 |
+
.wrap( '<span class="wp-picker-input-wrap hidden" />' )
|
170 |
+
.after( self.button );
|
171 |
|
172 |
/*
|
173 |
* The input wrapper now contains the label+input+Clear/Default button.
|
198 |
*/
|
199 |
change: function( event, ui ) {
|
200 |
if ( self.options.alpha ) {
|
201 |
+
self.toggler.css( {
|
202 |
+
'background-image': 'url(' + image + ')'
|
203 |
+
} );
|
204 |
if ( _deprecated ) {
|
205 |
self.toggler.html( '<span class="color-alpha" />' );
|
206 |
} else {
|
207 |
self.toggler.css( {
|
208 |
+
'position': 'relative'
|
209 |
} );
|
210 |
+
if ( self.toggler.find( 'span.color-alpha' ).length == 0 ) {
|
211 |
+
self.toggler.append( '<span class="color-alpha" />' );
|
212 |
}
|
213 |
}
|
214 |
|
215 |
self.toggler.find( 'span.color-alpha' ).css( {
|
216 |
+
'width': '30px',
|
217 |
+
'height': '100%',
|
218 |
+
'position': 'absolute',
|
219 |
+
'top': 0,
|
220 |
+
'left': 0,
|
221 |
+
'border-top-left-radius': '2px',
|
222 |
+
'border-bottom-left-radius': '2px',
|
223 |
+
'background': ui.color.toString()
|
224 |
} );
|
225 |
} else {
|
226 |
+
self.toggler.css( {
|
227 |
+
backgroundColor: ui.color.toString()
|
228 |
+
} );
|
229 |
}
|
230 |
|
231 |
if ( $.isFunction( self.options.change ) ) {
|
238 |
self._addListeners();
|
239 |
|
240 |
// Force the color picker to always be closed on initial load.
|
241 |
+
if ( !self.options.hide ) {
|
242 |
self.toggler.click();
|
243 |
}
|
244 |
},
|
265 |
*/
|
266 |
self.wrap.on( 'click.wpcolorpicker', function( event ) {
|
267 |
event.stopPropagation();
|
268 |
+
} );
|
269 |
|
270 |
/**
|
271 |
* @summary Open or close the color picker depending on the class.
|
272 |
*
|
273 |
* @since 3.5
|
274 |
*/
|
275 |
+
self.toggler.click( function() {
|
276 |
if ( self.toggler.hasClass( 'wp-picker-open' ) ) {
|
277 |
self.close();
|
278 |
} else {
|
279 |
self.open();
|
280 |
}
|
281 |
+
} );
|
282 |
|
283 |
/**
|
284 |
* @summary Checks if value is empty when changing the color in the color picker.
|
322 |
* @returns {void}
|
323 |
*/
|
324 |
self.button.on( 'click', function( event ) {
|
325 |
+
if ( $( this ).hasClass( 'wp-picker-clear' ) ) {
|
326 |
+
self.element.val( '' );
|
327 |
+
if ( self.options.alpha ) {
|
328 |
+
if ( _deprecated ) {
|
329 |
+
self.toggler.removeAttr( 'style' );
|
330 |
+
}
|
331 |
+
self.toggler.find( 'span.color-alpha' ).css( 'backgroundColor', '' );
|
332 |
+
} else {
|
333 |
+
self.toggler.css( 'backgroundColor', '' );
|
334 |
+
}
|
335 |
+
|
336 |
+
if ( $.isFunction( self.options.clear ) )
|
337 |
+
self.options.clear.call( this, event );
|
338 |
+
|
339 |
+
self.element.trigger( 'change' );
|
340 |
+
} else if ( $( this ).hasClass( 'wp-picker-default' ) ) {
|
341 |
+
self.element.val( self.options.defaultColor ).change();
|
342 |
+
}
|
343 |
+
} );
|
344 |
},
|
345 |
+
} );
|
346 |
|
347 |
/**
|
348 |
* Overwrite iris
|
355 |
this.options.alpha = this.element.data( 'alpha' ) || false;
|
356 |
|
357 |
// Is not input disabled
|
358 |
+
if ( !this.element.is( ':input' ) )
|
359 |
this.options.alpha = false;
|
360 |
|
361 |
if ( typeof this.options.alpha !== 'undefined' && this.options.alpha ) {
|
362 |
+
var self = this,
|
363 |
+
el = self.element,
|
364 |
+
_html = '<div class="iris-strip iris-slider iris-alpha-slider"><div class="iris-slider-offset iris-slider-offset-alpha"></div></div>',
|
365 |
aContainer = $( _html ).appendTo( self.picker.find( '.iris-picker-inner' ) ),
|
366 |
+
aSlider = aContainer.find( '.iris-slider-offset-alpha' ),
|
367 |
+
controls = {
|
368 |
+
aContainer: aContainer,
|
369 |
+
aSlider: aSlider
|
370 |
};
|
371 |
|
372 |
if ( typeof el.data( 'custom-width' ) !== 'undefined' ) {
|
379 |
self.options.defaultWidth = el.width();
|
380 |
|
381 |
// Update width for input
|
382 |
+
if ( self._color._alpha < 1 || self._color.toString().indexOf( 'rgb' ) != -1 )
|
383 |
el.width( parseInt( self.options.defaultWidth + self.options.customWidth ) );
|
384 |
|
385 |
// Push new controls
|
386 |
$.each( controls, function( k, v ) {
|
387 |
+
self.controls[ k ] = v;
|
388 |
} );
|
389 |
|
390 |
// Change size strip and add margin for sliders
|
391 |
+
self.controls.square.css( {
|
392 |
+
'margin-right': '0'
|
393 |
+
} );
|
394 |
+
var emptyWidth = ( self.picker.width() - self.controls.square.width() - 20 ),
|
395 |
+
stripsMargin = ( emptyWidth / 7 ),
|
396 |
+
stripsWidth = ( ( emptyWidth / 2 ) - stripsMargin );
|
397 |
|
398 |
$.each( [ 'aContainer', 'strip' ], function( k, v ) {
|
399 |
+
self.controls[ v ].width( stripsWidth ).css( {
|
400 |
+
'margin-left': stripsMargin + 'px'
|
401 |
+
} );
|
402 |
} );
|
403 |
|
404 |
// Add new slider
|
412 |
this._super();
|
413 |
|
414 |
if ( this.options.alpha ) {
|
415 |
+
var self = this,
|
416 |
controls = self.controls;
|
417 |
|
418 |
+
controls.aSlider.slider( {
|
419 |
+
orientation: 'vertical',
|
420 |
+
min: 0,
|
421 |
+
max: 100,
|
422 |
+
step: 1,
|
423 |
+
value: parseInt( self._color._alpha * 100 ),
|
424 |
+
slide: function( event, ui ) {
|
425 |
// Update alpha value
|
426 |
self._color._alpha = parseFloat( ui.value / 100 );
|
427 |
self._change.apply( self, arguments );
|
428 |
}
|
429 |
+
} );
|
430 |
}
|
431 |
},
|
432 |
_change: function() {
|
433 |
this._super();
|
434 |
|
435 |
var self = this,
|
436 |
+
el = self.element;
|
437 |
|
438 |
if ( this.options.alpha ) {
|
439 |
+
var controls = self.controls,
|
440 |
+
alpha = parseInt( self._color._alpha * 100 ),
|
441 |
+
color = self._color.toRgb(),
|
442 |
+
gradient = [
|
443 |
'rgb(' + color.r + ',' + color.g + ',' + color.b + ') 0%',
|
444 |
'rgba(' + color.r + ',' + color.g + ',' + color.b + ', 0) 100%'
|
445 |
],
|
446 |
defaultWidth = self.options.defaultWidth,
|
447 |
+
customWidth = self.options.customWidth,
|
448 |
+
target = self.picker.closest( '.wp-picker-container' ).find( '.wp-color-result' );
|
449 |
|
450 |
// Generate background slider alpha, only for CSS3 old browser fuck!! :)
|
451 |
+
controls.aContainer.css( {
|
452 |
+
'background': 'linear-gradient(to bottom, ' + gradient.join( ', ' ) + '), url(' + image + ')'
|
453 |
+
} );
|
454 |
|
455 |
if ( target.hasClass( 'wp-picker-open' ) ) {
|
456 |
// Update alpha value
|
467 |
el.width( defaultWidth );
|
468 |
}
|
469 |
}
|
|
|
470 |
}
|
471 |
|
472 |
var reset = el.data( 'reset-alpha' ) || false;
|
474 |
if ( reset ) {
|
475 |
self.picker.find( '.iris-palette-container' ).on( 'click.palette', '.iris-palette', function() {
|
476 |
self._color._alpha = 1;
|
477 |
+
self.active = 'external';
|
478 |
self._change();
|
479 |
} );
|
480 |
}
|
481 |
+
el.trigger( 'change' );
|
482 |
},
|
483 |
_addInputListeners: function( input ) {
|
484 |
+
var self = this,
|
485 |
debounceTimeout = 100,
|
486 |
+
callback = function( event ) {
|
487 |
var color = new Color( input.val() ),
|
488 |
+
val = input.val();
|
489 |
|
490 |
input.removeClass( 'iris-error' );
|
491 |
// we gave a bad color
|
496 |
} else {
|
497 |
if ( color.toString() !== self._color.toString() ) {
|
498 |
// let's not do this on keyup for hex shortcodes
|
499 |
+
if ( !( event.type === 'keyup' && val.match( /^[0-9a-fA-F]{3}$/ ) ) )
|
500 |
self._setOption( 'color', color.toString() );
|
501 |
}
|
502 |
}
|
515 |
}( jQuery ) );
|
516 |
|
517 |
// Auto Call plugin is class is color-picker
|
518 |
+
jQuery( document ).ready( function( $ ) {
|
519 |
+
fwEvents.on( 'fw:options:init', function( data ) {
|
520 |
+
data.$elements.find( 'input.fw-option-type-rgba-color-picker' ).each( function() {
|
521 |
$( this ).wpColorPicker();
|
522 |
} );
|
523 |
} );
|
framework/languages/fw-fa_IR.mo
ADDED
Binary file
|
framework/languages/fw-fa_IR.po
ADDED
@@ -0,0 +1,5991 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Classipress Theme\n"
|
4 |
+
"POT-Creation-Date: 2020-01-09 21:23+0330\n"
|
5 |
+
"PO-Revision-Date: 2020-01-11 18:56+0330\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: NasimNet <nasimnet.ir@gmail.com>\n"
|
8 |
+
"Language: fa_IR\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.2.4\n"
|
13 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
14 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
15 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
16 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
17 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
18 |
+
"X-Poedit-Basepath: ../../../../..\n"
|
19 |
+
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
20 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
+
"X-Poedit-SearchPath-0: isatis/development\n"
|
22 |
+
"X-Poedit-SearchPath-1: classipress/development\n"
|
23 |
+
|
24 |
+
#: classipress/development/classes/class-admin-menu.php:15
|
25 |
+
msgid "لایسنس محصول"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: classipress/development/classes/class-admin-menu.php:18
|
29 |
+
msgid "محصولات"
|
30 |
+
msgstr "قسمت های پشتیبانی"
|
31 |
+
|
32 |
+
#: classipress/development/classes/class-admin-menu.php:18
|
33 |
+
msgid "محصولات نسیم نت"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: classipress/development/includes/framework/core/Fw.php:61
|
37 |
+
msgid "Framework requirements not met:"
|
38 |
+
msgstr "پیش نیازهای فریمورک وجود ندارد:"
|
39 |
+
|
40 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:333
|
41 |
+
msgid "minimum required version is"
|
42 |
+
msgstr "حداقل نسخه مورد نیاز است"
|
43 |
+
|
44 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:336
|
45 |
+
msgid "maximum required version is"
|
46 |
+
msgstr "حداکثر نسخه مورد نیاز است"
|
47 |
+
|
48 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:341
|
49 |
+
msgid "and"
|
50 |
+
msgstr "و"
|
51 |
+
|
52 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:350
|
53 |
+
#, php-format
|
54 |
+
msgid "Current PHP version is %s, %s"
|
55 |
+
msgstr "نسخه فعلی PHP شما %s, %s"
|
56 |
+
|
57 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:358
|
58 |
+
#, php-format
|
59 |
+
msgid "Current WordPress version is %s, %s"
|
60 |
+
msgstr "نسخه وردپرس کنونی %s, %s"
|
61 |
+
|
62 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:364
|
63 |
+
#, php-format
|
64 |
+
msgid "Current Framework version is %s, %s"
|
65 |
+
msgstr "نسخه چارچوب کنونی %s, %s"
|
66 |
+
|
67 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:373
|
68 |
+
#, php-format
|
69 |
+
msgid "Current version of the %s extension is %s, %s"
|
70 |
+
msgstr "نسخه فعلی از %s را گسترش است %s, %s"
|
71 |
+
|
72 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:379
|
73 |
+
#, php-format
|
74 |
+
msgid "%s extension is required"
|
75 |
+
msgstr "پسوند %s را مورد نیاز است"
|
76 |
+
|
77 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:384
|
78 |
+
#, php-format
|
79 |
+
msgid "%s extension is required (%s)"
|
80 |
+
msgstr "%s را برنامه افزودنی لازم است (%s)"
|
81 |
+
|
82 |
+
#: classipress/development/includes/framework/core/class-fw-manifest.php:403
|
83 |
+
msgid "Framework"
|
84 |
+
msgstr "چارچوب"
|
85 |
+
|
86 |
+
#: classipress/development/includes/framework/core/components/backend.php:204
|
87 |
+
#: classipress/development/includes/framework/core/components/backend.php:208
|
88 |
+
#: classipress/development/includes/framework/core/components/backend.php:213
|
89 |
+
msgid "New"
|
90 |
+
msgstr "جدید"
|
91 |
+
|
92 |
+
#: classipress/development/includes/framework/core/components/backend.php:419
|
93 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2352
|
94 |
+
msgid "Save"
|
95 |
+
msgstr "ذخیره"
|
96 |
+
|
97 |
+
#: classipress/development/includes/framework/core/components/backend.php:420
|
98 |
+
msgid "Done"
|
99 |
+
msgstr "انجام شد !"
|
100 |
+
|
101 |
+
#: classipress/development/includes/framework/core/components/backend.php:421
|
102 |
+
msgid "Ah, Sorry"
|
103 |
+
msgstr "آه، با عرض پوزش"
|
104 |
+
|
105 |
+
#: classipress/development/includes/framework/core/components/backend.php:422
|
106 |
+
#: classipress/development/includes/framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:39
|
107 |
+
#: classipress/development/includes/framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:40
|
108 |
+
#: classipress/development/includes/framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:42
|
109 |
+
msgid "Reset"
|
110 |
+
msgstr "ریست"
|
111 |
+
|
112 |
+
#: classipress/development/includes/framework/core/components/backend.php:423
|
113 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:319
|
114 |
+
msgid "Apply"
|
115 |
+
msgstr "بکارگیری"
|
116 |
+
|
117 |
+
#: classipress/development/includes/framework/core/components/backend.php:424
|
118 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2357
|
119 |
+
msgid "Cancel"
|
120 |
+
msgstr "لغو"
|
121 |
+
|
122 |
+
#: classipress/development/includes/framework/core/components/backend.php:425
|
123 |
+
msgid "Ok"
|
124 |
+
msgstr "تایید"
|
125 |
+
|
126 |
+
#: classipress/development/includes/framework/core/components/backend.php:608
|
127 |
+
msgid "leave a review"
|
128 |
+
msgstr "ترک یک بررسی"
|
129 |
+
|
130 |
+
#: classipress/development/includes/framework/core/components/backend.php:615
|
131 |
+
msgid "Facebook"
|
132 |
+
msgstr "فیسبوک"
|
133 |
+
|
134 |
+
#: classipress/development/includes/framework/core/components/backend.php:619
|
135 |
+
msgid ""
|
136 |
+
"Unyson WordPress Framework is the fastest and easiest way to develop a "
|
137 |
+
"premium theme. I highly recommend it"
|
138 |
+
msgstr ""
|
139 |
+
"Unyson چارچوب وردپرس سریعترین و ساده ترین راه برای توسعه یک تم فوق العاده "
|
140 |
+
"است. من به شدت آن را توصیه"
|
141 |
+
|
142 |
+
#: classipress/development/includes/framework/core/components/backend.php:623
|
143 |
+
msgid "Twitter"
|
144 |
+
msgstr "توییتر"
|
145 |
+
|
146 |
+
#: classipress/development/includes/framework/core/components/backend.php:625
|
147 |
+
msgid ""
|
148 |
+
"If you like Unyson, {wp_review_link}, share on {facebook_share_link} or "
|
149 |
+
"{twitter_share_link}."
|
150 |
+
msgstr ""
|
151 |
+
"اگر نسیم نت را دوست داشتید به آن امتیاز دهید {wp_review_link} و یا در "
|
152 |
+
"{facebook_share_link} یا {} twitter_share_link به اشتراک بگذارید."
|
153 |
+
|
154 |
+
#: classipress/development/includes/framework/core/components/backend.php:994
|
155 |
+
msgid "Info about fw-storage"
|
156 |
+
msgstr "اطلاعات درباره fw-storage"
|
157 |
+
|
158 |
+
#: classipress/development/includes/framework/core/components/backend.php:1457
|
159 |
+
msgid "Unknown collected group"
|
160 |
+
msgstr "گروه جمع آوری نامشخص"
|
161 |
+
|
162 |
+
#: classipress/development/includes/framework/core/components/backend.php:1798
|
163 |
+
#, php-format
|
164 |
+
msgid "Undefined option type: %s"
|
165 |
+
msgstr "نوع آپشن تعریف نشده است: %s"
|
166 |
+
|
167 |
+
#: classipress/development/includes/framework/core/components/backend.php:1857
|
168 |
+
#, php-format
|
169 |
+
msgid "Undefined container type: %s"
|
170 |
+
msgstr "نوع نگهدارنده تعریف نشده است: %s"
|
171 |
+
|
172 |
+
#: classipress/development/includes/framework/core/components/backend/class-fw-settings-form-theme.php:12
|
173 |
+
#: classipress/development/includes/framework/core/components/backend/class-fw-settings-form-theme.php:162
|
174 |
+
#: classipress/development/includes/framework/core/components/backend/class-fw-settings-form-theme.php:163
|
175 |
+
msgid "Theme Settings"
|
176 |
+
msgstr "تنظیمات قالب"
|
177 |
+
|
178 |
+
#: classipress/development/includes/framework/core/components/backend/class-fw-settings-form-theme.php:56
|
179 |
+
msgid "by"
|
180 |
+
msgstr "توسط"
|
181 |
+
|
182 |
+
#: classipress/development/includes/framework/core/components/extensions.php:472
|
183 |
+
#: classipress/development/includes/framework/core/components/extensions.php:552
|
184 |
+
#, php-format
|
185 |
+
msgid "Extension %s is invalid."
|
186 |
+
msgstr "افزونه %s نامعتبر است."
|
187 |
+
|
188 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:12
|
189 |
+
msgid "Page Builder"
|
190 |
+
msgstr "صفحه ساز"
|
191 |
+
|
192 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:13
|
193 |
+
msgid ""
|
194 |
+
"Let's you easily build countless pages with the help of the drag and drop "
|
195 |
+
"visual page builder that comes with a lot of already created shortcodes."
|
196 |
+
msgstr ""
|
197 |
+
"اجازه دهید شما را به راحتی با کمک از کشیدن ساخت صفحات بی شمار و رها کردن "
|
198 |
+
"صفحه سازنده بصری است که همراه با بسیاری از کد کوتاه در حال حاضر ایجاد."
|
199 |
+
|
200 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:26
|
201 |
+
msgid "Brizy - Visual Page Builder"
|
202 |
+
msgstr "صفحه ساز"
|
203 |
+
|
204 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:27
|
205 |
+
msgid ""
|
206 |
+
"Lets you build pages live on the front end. No designer or developer skills "
|
207 |
+
"required. The only tools youll need to master are clicks and drags."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:41
|
211 |
+
msgid "WordPress Shortcodes"
|
212 |
+
msgstr "کدهای کوتاه وردپرس"
|
213 |
+
|
214 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:43
|
215 |
+
msgid "Lets you insert Unyson shortcodes inside any wp-editor"
|
216 |
+
msgstr "شما امکان قرار دادن کد کوتاه Unyson در داخل هر فایل wp-ویرایشگر"
|
217 |
+
|
218 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:58
|
219 |
+
#: isatis/development/includes/theme-options/extensions/backups/manifest.php:7
|
220 |
+
msgid "Backup & Demo Content"
|
221 |
+
msgstr "پشتیبان گیری و محتوا نسخه ی نمایشی"
|
222 |
+
|
223 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:59
|
224 |
+
#: isatis/development/includes/theme-options/extensions/backups/manifest.php:9
|
225 |
+
msgid ""
|
226 |
+
"This extension lets you create an automated backup schedule, import demo "
|
227 |
+
"content or even create a demo content archive for migration purposes."
|
228 |
+
msgstr ""
|
229 |
+
"این فرمت شما اجازه می دهد برنامه، محتوای نسخه ی نمایشی پشتیبان گیری خودکار "
|
230 |
+
"ایجاد و یا حتی ایجاد یک آرشیو مطالب نسخه ی نمایشی برای مقاصد مهاجرت."
|
231 |
+
|
232 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:72
|
233 |
+
msgid "Sidebars"
|
234 |
+
msgstr "ستون های کناری"
|
235 |
+
|
236 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:73
|
237 |
+
msgid ""
|
238 |
+
"Brings a new layer of customization freedom to your website by letting you "
|
239 |
+
"add more than one sidebar to a page, or different sidebars on different "
|
240 |
+
"pages."
|
241 |
+
msgstr ""
|
242 |
+
"به ارمغان می آورد یک لایه جدید از آزادی سفارشی سازی به وب سایت خود را با "
|
243 |
+
"اجازه شما بیش از یک نوار کناری اضافه کردن به یک صفحه، و یا ستون های فرعی "
|
244 |
+
"مختلف در صفحات مختلف."
|
245 |
+
|
246 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:86
|
247 |
+
msgid "Sliders"
|
248 |
+
msgstr "اسلایدر ها"
|
249 |
+
|
250 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:87
|
251 |
+
msgid ""
|
252 |
+
"Adds a sliders module to your website from where you'll be able to create "
|
253 |
+
"different built in jQuery sliders for your homepage and rest of the pages."
|
254 |
+
msgstr ""
|
255 |
+
"می افزاید: یک ماژول لغزنده به وب سایت شما از جایی که شما قادر خواهید بود به "
|
256 |
+
"ایجاد مختلف ساخته شده در لغزنده جی کوئری برای صفحه اصلی و استراحت خود را از "
|
257 |
+
"صفحات."
|
258 |
+
|
259 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:100
|
260 |
+
msgid "Portfolio"
|
261 |
+
msgstr "پروژه"
|
262 |
+
|
263 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:101
|
264 |
+
msgid ""
|
265 |
+
"This extension will add a fully fledged portfolio module that will let you "
|
266 |
+
"display your projects using the built in portfolio pages."
|
267 |
+
msgstr ""
|
268 |
+
"این فرمت خواهد یک ماژول نمونه کارها طور کامل تکامل یافته که به شما اجازه "
|
269 |
+
"نمایش پروژه های خود را با استفاده از ساخته شده در صفحات نمونه کارها اضافه "
|
270 |
+
"کنید."
|
271 |
+
|
272 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:114
|
273 |
+
msgid "Mega Menu"
|
274 |
+
msgstr "مگا منو"
|
275 |
+
|
276 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:115
|
277 |
+
msgid ""
|
278 |
+
"The Mega Menu extension adds a user-friendly drop down menu that will let "
|
279 |
+
"you easily create highly customized menu configurations."
|
280 |
+
msgstr ""
|
281 |
+
"گسترش مگا منو می افزاید: یک قطره کاربر پسند پایین منو که به شما اجازه به "
|
282 |
+
"راحتی تنظیمات منوی بسیار سفارشی ایجاد کنید."
|
283 |
+
|
284 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:128
|
285 |
+
msgid "Breadcrumbs"
|
286 |
+
msgstr "موارد جزئی"
|
287 |
+
|
288 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:129
|
289 |
+
msgid ""
|
290 |
+
"Creates a simplified navigation menu for the pages that can be placed "
|
291 |
+
"anywhere in the theme. This will make navigating the website much easier."
|
292 |
+
msgstr ""
|
293 |
+
"ایجاد یک منو ناوبری ساده برای صفحات است که می تواند در هر نقطه از موضوع قرار "
|
294 |
+
"داده است. این مرور در وب سایت بسیار ساده تر خواهد شد."
|
295 |
+
|
296 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:142
|
297 |
+
msgid "SEO"
|
298 |
+
msgstr "سئو(بهینه سازی) "
|
299 |
+
|
300 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:143
|
301 |
+
msgid ""
|
302 |
+
"This extension will enable you to have a fully optimized WordPress website "
|
303 |
+
"by adding optimized meta titles, keywords and descriptions."
|
304 |
+
msgstr ""
|
305 |
+
"این افزونه به شما را قادر خواهد ساخت به یک وب سایت وردپرس به طور کامل بهینه "
|
306 |
+
"سازی شده با اضافه کردن بهینه سازی عنوان متا، کلمات کلیدی و توصیف."
|
307 |
+
|
308 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:156
|
309 |
+
msgid "Events"
|
310 |
+
msgstr "رویدادها"
|
311 |
+
|
312 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:157
|
313 |
+
msgid ""
|
314 |
+
"This extension adds a fully fledged Events module to your theme. It comes "
|
315 |
+
"with built in pages that contain a calendar where events can be added."
|
316 |
+
msgstr ""
|
317 |
+
"این افزونه یک ماژول رویدادها طور کامل تکامل یافته به موضوع خود را. آن را با "
|
318 |
+
"ساخته شده است در صفحاتی که شامل یک تقویم که در آن حوادث را می توان اضافه می "
|
319 |
+
"آید."
|
320 |
+
|
321 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:170
|
322 |
+
msgid "Analytics"
|
323 |
+
msgstr "آنالیتکس"
|
324 |
+
|
325 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:171
|
326 |
+
msgid ""
|
327 |
+
"Enables the possibility to add the Google Analytics tracking code that will "
|
328 |
+
"let you get all the analytics about visitors, page views and more."
|
329 |
+
msgstr ""
|
330 |
+
"امکان را قادر می سازد برای اضافه کردن کد ردیابی Google Analytics که به شما "
|
331 |
+
"اجازه همه تجزیه و تحلیل در مورد بازدید کنندگان، بازدید و بیشتر."
|
332 |
+
|
333 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:184
|
334 |
+
msgid "Feedback"
|
335 |
+
msgstr "بازخورد"
|
336 |
+
|
337 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:185
|
338 |
+
msgid ""
|
339 |
+
"Adds the possibility to leave feedback (comments, reviews and rating) about "
|
340 |
+
"your products, articles, etc. This replaces the default comments system."
|
341 |
+
msgstr ""
|
342 |
+
"این امکان را به ترک بازخورد (نظر، بررسی و رتبه) در مورد محصولات، مقالات، و "
|
343 |
+
"غیره این جایگزین سیستم نظرات به طور پیش فرض اضافه می کند."
|
344 |
+
|
345 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:198
|
346 |
+
msgid "Learning"
|
347 |
+
msgstr "یادگیری"
|
348 |
+
|
349 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:199
|
350 |
+
msgid ""
|
351 |
+
"This extension adds a Learning module to your theme. Using this extension "
|
352 |
+
"you can add courses, lessons and tests for your users to take."
|
353 |
+
msgstr ""
|
354 |
+
"این افزونه یک ماژول یادگیری به موضوع خود را. با استفاده از این افزونه شما می "
|
355 |
+
"توانید دوره ها، درس و تست را برای کاربران خود به اضافه کنید."
|
356 |
+
|
357 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:212
|
358 |
+
msgid "Shortcodes"
|
359 |
+
msgstr "کد کوتاه"
|
360 |
+
|
361 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:226
|
362 |
+
msgid "Builder"
|
363 |
+
msgstr "سازنده"
|
364 |
+
|
365 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:240
|
366 |
+
msgid "Forms"
|
367 |
+
msgstr "فرم ها"
|
368 |
+
|
369 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:241
|
370 |
+
msgid ""
|
371 |
+
"This extension adds the possibility to create a contact form. Use the drag & "
|
372 |
+
"drop form builder to create any contact form you'll ever want or need."
|
373 |
+
msgstr ""
|
374 |
+
"این فرمت امکان ایجاد یک فرم تماس اضافه می کند. با استفاده از کشیدن و رها "
|
375 |
+
"کردن کشاورزی فرم برای ایجاد هر فرم تماس شما همیشه می خواهید و یا نیاز."
|
376 |
+
|
377 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:254
|
378 |
+
msgid "Mailer"
|
379 |
+
msgstr "فرستنده"
|
380 |
+
|
381 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:255
|
382 |
+
msgid ""
|
383 |
+
"This extension will let you set some global email options and it is used by "
|
384 |
+
"other extensions (like Forms) to send emails."
|
385 |
+
msgstr ""
|
386 |
+
"این فرمت به شما اجازه برخی از گزینه های ایمیل جهانی تنظیم و آن است که توسط "
|
387 |
+
"دیگر برنامه های افزودنی (مانند اشکال) مورد استفاده برای ارسال ایمیل."
|
388 |
+
|
389 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:268
|
390 |
+
msgid "Social"
|
391 |
+
msgstr "اجتماعی"
|
392 |
+
|
393 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:269
|
394 |
+
msgid ""
|
395 |
+
"Use this extension to configure all your social related APIs. Other "
|
396 |
+
"extensions will use the Social extension to connect to your social accounts."
|
397 |
+
msgstr ""
|
398 |
+
"استفاده از این فرمت به پیکربندی تمام رابط های برنامه کاربردی مرتبط اجتماعی "
|
399 |
+
"خود را. دیگر پسوند خواهد پسوند اجتماعی برای اتصال به حساب های اجتماعی خود "
|
400 |
+
"استفاده کنید."
|
401 |
+
|
402 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:282
|
403 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:473
|
404 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:474
|
405 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:11
|
406 |
+
msgid "Backup"
|
407 |
+
msgstr "پشتیبان گیری"
|
408 |
+
|
409 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:283
|
410 |
+
msgid ""
|
411 |
+
"This extension lets you set up daily, weekly or monthly backup schedule. You "
|
412 |
+
"can choose between a full backup or a data base only backup."
|
413 |
+
msgstr ""
|
414 |
+
"این فرمت اجازه می دهد تا به شما در تنظیم روزانه، برنامه هفتگی و یا ماهانه "
|
415 |
+
"نسخه پشتیبان تهیه. شما می توانید بین نسخه ی پشتیبان کامل و یا پایگاه داده "
|
416 |
+
"تنها پشتیبان گیری را انتخاب نمایید."
|
417 |
+
|
418 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:296
|
419 |
+
msgid "Media"
|
420 |
+
msgstr "رسانه"
|
421 |
+
|
422 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:310
|
423 |
+
msgid "Population method"
|
424 |
+
msgstr "نوع دریافت تصاویر"
|
425 |
+
|
426 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:324
|
427 |
+
msgid "Translate Press"
|
428 |
+
msgstr "ترجمه سایت"
|
429 |
+
|
430 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:325
|
431 |
+
msgid ""
|
432 |
+
"This extension lets you translate your website in any language or even add "
|
433 |
+
"multiple languages for your users to change at their will from the front-end."
|
434 |
+
msgstr ""
|
435 |
+
"این فرمت شما اجازه می دهد ترجمه وب سایت خود را در هر زبان و یا حتی اضافه "
|
436 |
+
"کردن زبان های متعدد برای کاربران خود را به تغییر در اراده خود را از جلویی."
|
437 |
+
|
438 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:340
|
439 |
+
msgid "Styling"
|
440 |
+
msgstr "ظاهر"
|
441 |
+
|
442 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/available-extensions.php:341
|
443 |
+
msgid ""
|
444 |
+
"This extension lets you control the website visual style. Starting from "
|
445 |
+
"predefined styles to changing specific fonts and colors across the website."
|
446 |
+
msgstr ""
|
447 |
+
"این فرمت به شما امکان کنترل وب سایت سبک بصری. با شروع از سبک های از پیش "
|
448 |
+
"تعریف شده به تغییر فونت و رنگ های خاص در سراسر وب سایت."
|
449 |
+
|
450 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:393
|
451 |
+
msgid "Cannot remove the old extensions backup dir"
|
452 |
+
msgstr "می توانید قدیمی دیر پسوند پشتیبان گیری را حذف کنید"
|
453 |
+
|
454 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:399
|
455 |
+
msgid "Cannot create the extensions backup dir"
|
456 |
+
msgstr "می توانید دیر پسوند پشتیبان گیری ایجاد کنید"
|
457 |
+
|
458 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:404
|
459 |
+
msgid "Cannot backup the extensions"
|
460 |
+
msgstr "می توانید پشتیبان گیری نمی پسوند"
|
461 |
+
|
462 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:450
|
463 |
+
msgid "Cannot clear the extensions directory"
|
464 |
+
msgstr "می توانید پوشه پسوند مشخص نیست"
|
465 |
+
|
466 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:455
|
467 |
+
msgid "Cannot recreate the extensions directory"
|
468 |
+
msgstr "می توانید پوشه پسوند نو خلق نیست"
|
469 |
+
|
470 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:461
|
471 |
+
msgid "Cannot recover the extensions"
|
472 |
+
msgstr "می توانید پسوند بهبود می یابند"
|
473 |
+
|
474 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:689
|
475 |
+
#, php-format
|
476 |
+
msgid "Cannot activate hidden standalone extension %s"
|
477 |
+
msgstr "می توانید فرمت مستقل پنهان را فعال نمی کند از%s"
|
478 |
+
|
479 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:901
|
480 |
+
#, php-format
|
481 |
+
msgid "%s Extensions"
|
482 |
+
msgstr "%s افزودنی ها"
|
483 |
+
|
484 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:931
|
485 |
+
msgid "You are not allowed to install extensions."
|
486 |
+
msgstr "شما امکان پذیر نیست برای نصب افزونه."
|
487 |
+
|
488 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:948
|
489 |
+
msgid "All supported extensions are already installed."
|
490 |
+
msgstr "تمام پسوندهای پشتیبانی در حال حاضر نصب شده است."
|
491 |
+
|
492 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:969
|
493 |
+
msgid "Install Compatible Extension"
|
494 |
+
msgid_plural "Install Compatible Extensions"
|
495 |
+
msgstr[0] "نصب افزودنی سازگار"
|
496 |
+
msgstr[1] "نصب افزودنی ها سازگار"
|
497 |
+
|
498 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:970
|
499 |
+
msgid "Install Extension"
|
500 |
+
msgid_plural "Install Extensions"
|
501 |
+
msgstr[0] "نصب افزودنی"
|
502 |
+
msgstr[1] "نصب افزودنی ها"
|
503 |
+
|
504 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:981
|
505 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1455
|
506 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1888
|
507 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2121
|
508 |
+
msgid "Invalid nonce."
|
509 |
+
msgstr "نامعتبر است."
|
510 |
+
|
511 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1019
|
512 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2473
|
513 |
+
#, php-format
|
514 |
+
msgid "Cannot remove temporary directory: %s"
|
515 |
+
msgstr "می توانید دایرکتوری موقت را حذف کنید:%s را"
|
516 |
+
|
517 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1096
|
518 |
+
msgid "You have no permissions to install extensions"
|
519 |
+
msgstr "شما هیچ مجوز برای نصب افزونه"
|
520 |
+
|
521 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1103
|
522 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1546
|
523 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1952
|
524 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2183
|
525 |
+
msgid "No extensions provided"
|
526 |
+
msgstr "بدون افزودنی ها فراهم"
|
527 |
+
|
528 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1127
|
529 |
+
#, php-format
|
530 |
+
msgid "Extension \"%s\" is already installed."
|
531 |
+
msgstr "پسوند «%s\" در حال حاضر نصب شده است."
|
532 |
+
|
533 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1140
|
534 |
+
#, php-format
|
535 |
+
msgid "Extension \"%s\" is not available for install."
|
536 |
+
msgstr "فرمت \"%s\" را برای نصب در دسترس نیست."
|
537 |
+
|
538 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1166
|
539 |
+
#, php-format
|
540 |
+
msgid "Parent extension \"%s\" not available."
|
541 |
+
msgstr "پسوند پدر و مادر \"%s\" در دسترس نیست."
|
542 |
+
|
543 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1205
|
544 |
+
#, php-format
|
545 |
+
msgid "Downloading the \"%s\" extension..."
|
546 |
+
msgstr "دانلود \"%s\" را گسترش ..."
|
547 |
+
|
548 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1245
|
549 |
+
#, php-format
|
550 |
+
msgid "Installing the \"%s\" extension..."
|
551 |
+
msgstr "نصب \"%s\" را گسترش ..."
|
552 |
+
|
553 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1284
|
554 |
+
#, php-format
|
555 |
+
msgid "The %s extension has been successfully installed."
|
556 |
+
msgstr "%s را گسترش با موفقیت نصب شده است."
|
557 |
+
|
558 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1353
|
559 |
+
msgid "Activating extension..."
|
560 |
+
msgid_plural "Activating extensions..."
|
561 |
+
msgstr[0] "در حال فعال سازی افزودنی ..."
|
562 |
+
msgstr[1] "در حال فعال سازی افزودنی ها ..."
|
563 |
+
|
564 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1393
|
565 |
+
msgid "Extension has been successfully activated."
|
566 |
+
msgid_plural "Extensions has been successfully activated."
|
567 |
+
msgstr[0] "افزودنی به خوبی فعال شد."
|
568 |
+
msgstr[1] "افزودنی ها به خوبی فعال شدند."
|
569 |
+
|
570 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1418
|
571 |
+
msgid "Cannot install extension"
|
572 |
+
msgid_plural "Cannot install extensions"
|
573 |
+
msgstr[0] "افزودنی نمی تواند نصب شود"
|
574 |
+
msgstr[1] "افزودنی ها نمی توانند نصب شوند"
|
575 |
+
|
576 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1433
|
577 |
+
msgid "You are not allowed to delete extensions."
|
578 |
+
msgstr "شما مجاز به حذف پسوند."
|
579 |
+
|
580 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1444
|
581 |
+
msgid "Delete Extension"
|
582 |
+
msgid_plural "Delete Extensions"
|
583 |
+
msgstr[0] "حذف افزودنی"
|
584 |
+
msgstr[1] "حذف افزودنی ها"
|
585 |
+
|
586 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1539
|
587 |
+
msgid "You have no permissions to uninstall extensions"
|
588 |
+
msgstr "شما هیچ مجوز به حذف پسوند"
|
589 |
+
|
590 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1556
|
591 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3258
|
592 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3348
|
593 |
+
msgid "WP Filesystem is not initialized"
|
594 |
+
msgstr "WP فایل سیستم مقداردهی اولیه نشده است"
|
595 |
+
|
596 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1578
|
597 |
+
#, php-format
|
598 |
+
msgid "Extension \"%s\" has been deleted."
|
599 |
+
msgstr "افزونه \"%s\" حذف شده است."
|
600 |
+
|
601 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1584
|
602 |
+
#, php-format
|
603 |
+
msgid "Plugin %s is empty."
|
604 |
+
msgstr "افزونه %s خالی است."
|
605 |
+
|
606 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1635
|
607 |
+
#, php-format
|
608 |
+
msgid "Deleting the \"%s\" extension..."
|
609 |
+
msgstr "حذف از \"%s\" فرمت ..."
|
610 |
+
|
611 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1640
|
612 |
+
#, php-format
|
613 |
+
msgid "Cannot delete the \"%s\" extension."
|
614 |
+
msgstr "می توانید از \"%s\" فرمت را حذف کنید."
|
615 |
+
|
616 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1650
|
617 |
+
#, php-format
|
618 |
+
msgid "The %s extension has been successfully deleted."
|
619 |
+
msgstr "پسوند%s را با موفقیت حذف شده است."
|
620 |
+
|
621 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1700
|
622 |
+
msgid "Cannot uninstall extension"
|
623 |
+
msgid_plural "Cannot uninstall extensions"
|
624 |
+
msgstr[0] "افزودنی نمی تواند غیرفعال شود"
|
625 |
+
msgstr[1] "افزودنی ها نمی توانند غیرفعال شوند"
|
626 |
+
|
627 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1754
|
628 |
+
msgid "Extension not specified."
|
629 |
+
msgstr "فرمت مشخص نشده است."
|
630 |
+
|
631 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1759
|
632 |
+
#, php-format
|
633 |
+
msgid "Extension \"%s\" is not installed."
|
634 |
+
msgstr "فرمت \"%s\" را نصب نشده است."
|
635 |
+
|
636 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1827
|
637 |
+
#, php-format
|
638 |
+
msgid "Extension \"%s\" does not exist or is not active."
|
639 |
+
msgstr "پسوند «%s\" وجود ندارد و یا غیر فعال است."
|
640 |
+
|
641 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1836
|
642 |
+
#, php-format
|
643 |
+
msgid "%s extension does not have settings."
|
644 |
+
msgstr "%s را فرمت می کند تنظیمات ندارد."
|
645 |
+
|
646 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1857
|
647 |
+
msgid "Extension has no documentation. Maybe ask its developer to write some?"
|
648 |
+
msgstr ""
|
649 |
+
"مستنداتی وجود ندارد شاید از توسعه دهنده خواسته باشید که برخی از آنها را "
|
650 |
+
"بنویسید؟"
|
651 |
+
|
652 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1881
|
653 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2114
|
654 |
+
msgid "Invalid request method."
|
655 |
+
msgstr "روش درخواست نامعتبر است."
|
656 |
+
|
657 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1893
|
658 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2126
|
659 |
+
msgid "No extension specified."
|
660 |
+
msgstr "بدون پسوند مشخص شده است."
|
661 |
+
|
662 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1945
|
663 |
+
msgid "You have no permissions to activate extensions"
|
664 |
+
msgstr "شما هیچ مجوز برای فعال شدن پسوند"
|
665 |
+
|
666 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:1981
|
667 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2207
|
668 |
+
#, php-format
|
669 |
+
msgid "Extension \"%s\" does not exist."
|
670 |
+
msgstr "پسوند «%s\" وجود ندارد."
|
671 |
+
|
672 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2025
|
673 |
+
msgid "Cannot activate extension"
|
674 |
+
msgid_plural "Cannot activate extensions"
|
675 |
+
msgstr[0] "افزودنی نمی تواند فعال شود"
|
676 |
+
msgstr[1] "افزودنی ها نمی توانند فعال شوند"
|
677 |
+
|
678 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2176
|
679 |
+
msgid "You have no permissions to deactivate extensions"
|
680 |
+
msgstr "شما هیچ مجوز برای غیر فعال کردن پسوند"
|
681 |
+
|
682 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2255
|
683 |
+
msgid "Cannot deactivate extension"
|
684 |
+
msgid_plural "Cannot activate extensions"
|
685 |
+
msgstr[0] "افزودنی نمی تواند غیرفعال شود"
|
686 |
+
msgstr[1] "افزودنی نمی توانند غیرفعال شوند"
|
687 |
+
|
688 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2372
|
689 |
+
msgid "You are not allowed to save extensions settings."
|
690 |
+
msgstr "شما امکان پذیر نیست برای ذخیره تنظیمات پسوند."
|
691 |
+
|
692 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2379
|
693 |
+
msgid "Invalid extension."
|
694 |
+
msgstr "نوع فایل نامعتبر است!"
|
695 |
+
|
696 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2384
|
697 |
+
msgid "Extension does not have settings options."
|
698 |
+
msgstr "فرمت می کند گزینه های تنظیمات ندارد."
|
699 |
+
|
700 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2416
|
701 |
+
msgid "Extensions settings successfully saved."
|
702 |
+
msgstr "تنظیمات با موفقیت ذخیره شد ."
|
703 |
+
|
704 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2443
|
705 |
+
#, php-format
|
706 |
+
msgid "Extension \"%s\" has no download sources."
|
707 |
+
msgstr "پسوند «%s\" هیچ منابع دانلود."
|
708 |
+
|
709 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2481
|
710 |
+
#, php-format
|
711 |
+
msgid "Cannot create temporary directory: %s"
|
712 |
+
msgstr "می توانید دایرکتوری موقت ایجاد کند:%s را"
|
713 |
+
|
714 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2520
|
715 |
+
#, php-format
|
716 |
+
msgid "Cannot remove the \"%s\" extension downloaded zip."
|
717 |
+
msgstr "می توانید از \"%s\" فرمت zip دانلود را حذف کنید."
|
718 |
+
|
719 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2529
|
720 |
+
msgid "Cannot access the unzipped directory files."
|
721 |
+
msgstr "می توانید فایل های دایرکتوری استخراج دسترسی پیدا کنید."
|
722 |
+
|
723 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2545
|
724 |
+
#, php-format
|
725 |
+
msgid "The unzipped \"%s\" extension directory not found."
|
726 |
+
msgstr "استخراج \"%s\" در دایرکتوری برنامه افزودنی یافت نشد."
|
727 |
+
|
728 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2571
|
729 |
+
#, php-format
|
730 |
+
msgid "Invalid download source: %s"
|
731 |
+
msgstr "منبع دانلود نامعتبر:%s"
|
732 |
+
|
733 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2598
|
734 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2617
|
735 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2706
|
736 |
+
#, php-format
|
737 |
+
msgid "Cannot read directory \"%s\"."
|
738 |
+
msgstr "نمی توانید دایرکتوری \"%s\" را به عنوان خوانده شده."
|
739 |
+
|
740 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2653
|
741 |
+
#, php-format
|
742 |
+
msgid "Cannot delete \"%s\"."
|
743 |
+
msgstr "می توانید \"%s\" را حذف کنید."
|
744 |
+
|
745 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2667
|
746 |
+
#, php-format
|
747 |
+
msgid "Cannot create the \"%s\" directory."
|
748 |
+
msgstr "می توانید \"%s\" در دایرکتوری را ایجاد کند."
|
749 |
+
|
750 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:2686
|
751 |
+
#, php-format
|
752 |
+
msgid "Cannot move \"%s\" to \"%s\"."
|
753 |
+
msgstr "می توانید از \"%s\" به \"%s\" را حرکت نمی کند."
|
754 |
+
|
755 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3136
|
756 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3183
|
757 |
+
#, php-format
|
758 |
+
msgid "Cannot activate the %s extension because it is not installed. %s"
|
759 |
+
msgstr "می توانید از%s پسوند فعال شدن نه به خاطر آن نصب نشده است. %s را"
|
760 |
+
|
761 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3140
|
762 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3187
|
763 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:62
|
764 |
+
msgid "Install"
|
765 |
+
msgstr "نصب"
|
766 |
+
|
767 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3240
|
768 |
+
msgid "Install theme compatible extensions"
|
769 |
+
msgstr "نصب تم الحاقات سازگار"
|
770 |
+
|
771 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3275
|
772 |
+
#, php-format
|
773 |
+
msgid "Temporary directory cannot be removed: %s"
|
774 |
+
msgstr "دایرکتوری موقت نمی تواند حذف شد:%s"
|
775 |
+
|
776 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3282
|
777 |
+
#, php-format
|
778 |
+
msgid "Temporary directory cannot be created: %s"
|
779 |
+
msgstr "دایرکتوری موقت نمی تواند ایجاد شد:%s"
|
780 |
+
|
781 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3305
|
782 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3312
|
783 |
+
#, php-format
|
784 |
+
msgid "Failed to extract relative directory from: %s"
|
785 |
+
msgstr "برای استخراج دایرکتوری نسبی از شکست خورده: از%s"
|
786 |
+
|
787 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3321
|
788 |
+
#, php-format
|
789 |
+
msgid "Failed to create directory %s"
|
790 |
+
msgstr "خطا در ایجاد %s"
|
791 |
+
|
792 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3329
|
793 |
+
#, php-format
|
794 |
+
msgid "Failed to copy extension to %s"
|
795 |
+
msgstr "برای کپی کردن فایل افزودنی نتوانست به%s"
|
796 |
+
|
797 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3359
|
798 |
+
#, php-format
|
799 |
+
msgid "Temporary directory does not exist: %s"
|
800 |
+
msgstr "دایرکتوری موقت وجود ندارد:%s را"
|
801 |
+
|
802 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3379
|
803 |
+
#, php-format
|
804 |
+
msgid "Cannot obtain WP Filesystem dir for %s"
|
805 |
+
msgstr "می توانید دیر WP فایل سیستم برای%s بدست آوردن نیست"
|
806 |
+
|
807 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3516
|
808 |
+
#, php-format
|
809 |
+
msgid "PHP needs to be updated to %s"
|
810 |
+
msgstr "نسخه PHP شما باید به %s بروزرسانی شود."
|
811 |
+
|
812 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3525
|
813 |
+
#, php-format
|
814 |
+
msgid "Maximum supported PHP version is %s"
|
815 |
+
msgstr "حداکثر نسخه پشتیبانی شده PHP %s است."
|
816 |
+
|
817 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3544
|
818 |
+
#, php-format
|
819 |
+
msgid "You need to update WordPress to %s: %s"
|
820 |
+
msgstr "شما باید وردپرس را به نسخه %s: %s بروزرسانی کنید"
|
821 |
+
|
822 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3546
|
823 |
+
msgid "Update WordPress"
|
824 |
+
msgstr "بروز رسانی وردپرس"
|
825 |
+
|
826 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3550
|
827 |
+
#, php-format
|
828 |
+
msgid "WordPress needs to be updated to %s"
|
829 |
+
msgstr "وردپرس باید به نسخه %s بروزرسانی شود"
|
830 |
+
|
831 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3560
|
832 |
+
#, php-format
|
833 |
+
msgid "Maximum supported WordPress version is %s"
|
834 |
+
msgstr "حداکثر نسخه وردپرس که پشتیبانی می شود %s است"
|
835 |
+
|
836 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3577
|
837 |
+
#, php-format
|
838 |
+
msgid "You need to update %s to %s: %s"
|
839 |
+
msgstr "شما نیاز به به روز رسانی%s به%s:%s را"
|
840 |
+
|
841 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3581
|
842 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3621
|
843 |
+
#, php-format
|
844 |
+
msgid "Update %s"
|
845 |
+
msgstr "بروزرسانی %s"
|
846 |
+
|
847 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3586
|
848 |
+
#, php-format
|
849 |
+
msgid "%s needs to be updated to %s"
|
850 |
+
msgstr "%s را باید به روز شود به%s"
|
851 |
+
|
852 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3597
|
853 |
+
#, php-format
|
854 |
+
msgid "Maximum supported %s version is %s"
|
855 |
+
msgstr "نسخه حداکثر%s پشتیبانی بازدید کنندگان %s است"
|
856 |
+
|
857 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3617
|
858 |
+
#, php-format
|
859 |
+
msgid "You need to update the %s extension to %s: %s"
|
860 |
+
msgstr "شما نیاز به به روز رسانی پسوند%s به%s:%s را"
|
861 |
+
|
862 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3626
|
863 |
+
#, php-format
|
864 |
+
msgid "The %s extension needs to be updated to %s"
|
865 |
+
msgstr "%s را گسترش باید به روز شود به%s"
|
866 |
+
|
867 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3637
|
868 |
+
#, php-format
|
869 |
+
msgid "Maximum supported %s extension version is %s"
|
870 |
+
msgstr "حداکثر%s پشتیبانی بازدید کنندگان نسخه الحاقی %s است"
|
871 |
+
|
872 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3652
|
873 |
+
#, php-format
|
874 |
+
msgid "The %s extension is disabled"
|
875 |
+
msgstr "%s را گسترش غیر فعال است"
|
876 |
+
|
877 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3653
|
878 |
+
#, php-format
|
879 |
+
msgid "Activate %s"
|
880 |
+
msgstr "فعال کردن %s"
|
881 |
+
|
882 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3662
|
883 |
+
#, php-format
|
884 |
+
msgid "The %s extension is not installed: %s"
|
885 |
+
msgstr "پسوند%s را نصب نشده است:%s را"
|
886 |
+
|
887 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3665
|
888 |
+
#, php-format
|
889 |
+
msgid "Install %s"
|
890 |
+
msgstr "نصب %s"
|
891 |
+
|
892 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/class--fw-extensions-manager.php:3670
|
893 |
+
#, php-format
|
894 |
+
msgid "The %s extension is not installed"
|
895 |
+
msgstr "پسوند%s را نصب نشده است"
|
896 |
+
|
897 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:14
|
898 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:14
|
899 |
+
msgid "Go to extensions page"
|
900 |
+
msgstr "برو به صفحه برنامه افزودنی"
|
901 |
+
|
902 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:17
|
903 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:17
|
904 |
+
msgid "Return to Extensions page"
|
905 |
+
msgstr "بازگشت به افزودنی ها"
|
906 |
+
|
907 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:31
|
908 |
+
#, fuzzy, php-format
|
909 |
+
#| msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
910 |
+
msgid "\"%s\" extension bitbucket source \"user_repo\" parameter is required"
|
911 |
+
msgstr "\"%s\" در پسوند منبع گیتهاب \"user_repo\" پارامتر مورد نیاز است"
|
912 |
+
|
913 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:47
|
914 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:155
|
915 |
+
#, php-format
|
916 |
+
msgid "Cannot download the \"%s\" extension zip. (Response code: %d)"
|
917 |
+
msgstr "می توانید \"%s\" در فایل های فشرده فرمت را دانلود کنید. (کد پاسخ:%d)"
|
918 |
+
|
919 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:54
|
920 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:162
|
921 |
+
#, php-format
|
922 |
+
msgid "Cannot download the \"%s\" extension zip. %s"
|
923 |
+
msgstr "می توانید \"%s\" در فایل های فشرده فرمت را دانلود کنید. %s را"
|
924 |
+
|
925 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:62
|
926 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:170
|
927 |
+
#, php-format
|
928 |
+
msgid "Cannot download the \"%s\" extension zip."
|
929 |
+
msgstr "می توانید \"%s\" در فایل های فشرده فرمت را دانلود کنید."
|
930 |
+
|
931 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:73
|
932 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:68
|
933 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:181
|
934 |
+
#, php-format
|
935 |
+
msgid "Cannot save the \"%s\" extension zip."
|
936 |
+
msgstr "می توانید \"%s\" در فایل های فشرده فرمت ذخیره کند."
|
937 |
+
|
938 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:106
|
939 |
+
#, fuzzy, php-format
|
940 |
+
#| msgid "Current version of the %s extension is %s, %s"
|
941 |
+
msgid "Empty version for item: %s"
|
942 |
+
msgstr "نسخه فعلی از %s را گسترش است %s, %s"
|
943 |
+
|
944 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-bitbucket.php:115
|
945 |
+
#, fuzzy, php-format
|
946 |
+
#| msgid "You have the latest version of %s."
|
947 |
+
msgid "Wrong Bibucket version for item: %s"
|
948 |
+
msgstr "شما از آخرین نگارش استفاده میکنید.%s"
|
949 |
+
|
950 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:58
|
951 |
+
#, fuzzy, php-format
|
952 |
+
#| msgid "Hide other extensions"
|
953 |
+
msgid "Empty zip body for extension: %s"
|
954 |
+
msgstr "مخفی کردن پسوند دیگر"
|
955 |
+
|
956 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:111
|
957 |
+
#, fuzzy, php-format
|
958 |
+
#| msgid "You have the latest version of %s."
|
959 |
+
msgid "Cannot get latest versions for extension: %s"
|
960 |
+
msgstr "شما از آخرین نگارش استفاده میکنید.%s"
|
961 |
+
|
962 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:130
|
963 |
+
#, fuzzy, php-format
|
964 |
+
#| msgid "Current version of the %s extension is %s, %s"
|
965 |
+
msgid "Empty version for extension: %s"
|
966 |
+
msgstr "نسخه فعلی از %s را گسترش است %s, %s"
|
967 |
+
|
968 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:165
|
969 |
+
#, php-format
|
970 |
+
msgid "Cannot install plugin: %s"
|
971 |
+
msgstr "افزودنی نمی تواند نصب شود : %s"
|
972 |
+
|
973 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-custom.php:169
|
974 |
+
#, php-format
|
975 |
+
msgid "Cannot find plugin: %s"
|
976 |
+
msgstr "افزونه پیدا نمی شود : %s"
|
977 |
+
|
978 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:31
|
979 |
+
#, php-format
|
980 |
+
msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
981 |
+
msgstr "\"%s\" در پسوند منبع گیتهاب \"user_repo\" پارامتر مورد نیاز است"
|
982 |
+
|
983 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:75
|
984 |
+
msgid "Github error:"
|
985 |
+
msgstr "خطا گیتهاب:"
|
986 |
+
|
987 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:81
|
988 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:90
|
989 |
+
#, php-format
|
990 |
+
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
991 |
+
msgstr "دسترسی به مخرن گیت هاب \"%s\" ناموفق بود . (کد پاسخ:%d)"
|
992 |
+
|
993 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:98
|
994 |
+
#, php-format
|
995 |
+
msgid "Failed to access Github repository \"%s\" releases. (%s)"
|
996 |
+
msgstr ""
|
997 |
+
"برای دسترسی به گیتهاب مخزن \"%s\" را منتشر شکست خورده است. (%s بازدید "
|
998 |
+
"کنندگان)"
|
999 |
+
|
1000 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:106
|
1001 |
+
#, php-format
|
1002 |
+
msgid "Failed to access Github repository \"%s\" releases."
|
1003 |
+
msgstr "برای دسترسی به گیتهاب مخزن \"%s\" را منتشر شکست خورده است."
|
1004 |
+
|
1005 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php:121
|
1006 |
+
#, php-format
|
1007 |
+
msgid "\"%s\" extension github repository \"%s\" has no releases."
|
1008 |
+
msgstr "\"%s\" در پسوند گیتهاب مخزن \"%s\" را ندارد منتشر شده است."
|
1009 |
+
|
1010 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/delete-form.php:12
|
1011 |
+
msgid "You are about to remove the following extension:"
|
1012 |
+
msgid_plural "You are about to remove the following extensions:"
|
1013 |
+
msgstr[0] "شما در حال نصب افزونه مقابل هستید :"
|
1014 |
+
msgstr[1] "آیا مطمئن هستید که می خواهید این افزونه را پاک کنید؟"
|
1015 |
+
|
1016 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/delete-form.php:26
|
1017 |
+
msgid "Are you sure you wish to delete this extension?"
|
1018 |
+
msgid_plural "Are you sure you wish to delete these extensions?"
|
1019 |
+
msgstr[0] "واقعاً میخواهید این افزونه را حذف کنید?"
|
1020 |
+
msgstr[1] "آیا از نصب این افزودنی ها مطئنید ؟"
|
1021 |
+
|
1022 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/delete-form.php:35
|
1023 |
+
msgid "Yes, Delete this extension"
|
1024 |
+
msgid_plural "Yes, Delete these extensions"
|
1025 |
+
msgstr[0] "بله، این افزونه را حذف کن"
|
1026 |
+
msgstr[1] "بله، نصب این افزونه ها"
|
1027 |
+
|
1028 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/delete-form.php:42
|
1029 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/install-form.php:51
|
1030 |
+
msgid "No, Return me to the extension list"
|
1031 |
+
msgstr "نه، من بازگشت به فهرست پسوند"
|
1032 |
+
|
1033 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/delete-form.php:45
|
1034 |
+
msgid "Click to view entire list of directories which will be deleted"
|
1035 |
+
msgstr "برای دیدن لیست کامل از دایرکتوری های حذف خواهد شد کلیک کنید"
|
1036 |
+
|
1037 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension-page-header.php:25
|
1038 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:119
|
1039 |
+
msgid "Install Instructions"
|
1040 |
+
msgstr "دستورالعمل های نصب"
|
1041 |
+
|
1042 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension-page-header.php:31
|
1043 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:112
|
1044 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:73
|
1045 |
+
msgid "Settings"
|
1046 |
+
msgstr "تنظیمات"
|
1047 |
+
|
1048 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension-page-header.php:40
|
1049 |
+
#, php-format
|
1050 |
+
msgid "%s Settings"
|
1051 |
+
msgstr "%s تنظیمات"
|
1052 |
+
|
1053 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension-page-header.php:43
|
1054 |
+
#, php-format
|
1055 |
+
msgid "%s Install Instructions"
|
1056 |
+
msgstr "%s نصب دستورالعمل"
|
1057 |
+
|
1058 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension-page-header.php:46
|
1059 |
+
msgid "Unknown tab:"
|
1060 |
+
msgstr "تب ناشناخته:"
|
1061 |
+
|
1062 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:131
|
1063 |
+
msgid "Compatible"
|
1064 |
+
msgstr "سازگار"
|
1065 |
+
|
1066 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:131
|
1067 |
+
msgid "with your current theme"
|
1068 |
+
msgstr "با پوسته کنونی شما"
|
1069 |
+
|
1070 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:138
|
1071 |
+
msgid "Deactivate"
|
1072 |
+
msgstr "غیرفعال کردن"
|
1073 |
+
|
1074 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:147
|
1075 |
+
msgid "Activate"
|
1076 |
+
msgstr "فعال کردن"
|
1077 |
+
|
1078 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:160
|
1079 |
+
msgid "Are you sure you want to remove this extension?"
|
1080 |
+
msgstr "آیا مطمئن هستید که می خواهید این افزونه را پاک کنید؟"
|
1081 |
+
|
1082 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:169
|
1083 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:170
|
1084 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:231
|
1085 |
+
#: classipress/development/includes/framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php:88
|
1086 |
+
msgid "Remove"
|
1087 |
+
msgstr "حذف"
|
1088 |
+
|
1089 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:182
|
1090 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:80
|
1091 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:18
|
1092 |
+
msgid "Download"
|
1093 |
+
msgstr "دانلود"
|
1094 |
+
|
1095 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:203
|
1096 |
+
#, php-format
|
1097 |
+
msgid "Parent extension \"%s\" is disabled"
|
1098 |
+
msgstr "افزونه مادر \"%s\" غیرفعال می باشد"
|
1099 |
+
|
1100 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:209
|
1101 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:20
|
1102 |
+
msgid "Disabled"
|
1103 |
+
msgstr "غیرفعال"
|
1104 |
+
|
1105 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extension.php:228
|
1106 |
+
msgid "View Requirements"
|
1107 |
+
msgstr "موارد مورد نیاز:"
|
1108 |
+
|
1109 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:62
|
1110 |
+
msgid "Active Extensions"
|
1111 |
+
msgstr "افزونه های فعال"
|
1112 |
+
|
1113 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:77
|
1114 |
+
msgid "No extensions activated yet"
|
1115 |
+
msgstr "هیچ برنامه افزودنی فعال و در عین حال"
|
1116 |
+
|
1117 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:77
|
1118 |
+
msgid "Check the available extensions below"
|
1119 |
+
msgstr "پسوند موجود زیر را بررسی کنید"
|
1120 |
+
|
1121 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:106
|
1122 |
+
msgid "Available Extensions"
|
1123 |
+
msgstr "افزونه های در دسترس"
|
1124 |
+
|
1125 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:233
|
1126 |
+
msgid "Show other extensions"
|
1127 |
+
msgstr "نمایش افزودنی های دیگر"
|
1128 |
+
|
1129 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/extensions-page.php:234
|
1130 |
+
msgid "Hide other extensions"
|
1131 |
+
msgstr "مخفی کردن پسوند دیگر"
|
1132 |
+
|
1133 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/install-form.php:13
|
1134 |
+
msgid ""
|
1135 |
+
"We've detected that your current theme is compatible with the following "
|
1136 |
+
"extension and it is recommended that you install it to fully benefit from "
|
1137 |
+
"your theme."
|
1138 |
+
msgid_plural ""
|
1139 |
+
"We've detected that your current theme is compatible with the following "
|
1140 |
+
"extensions and it is recommended that you install them to fully benefit from "
|
1141 |
+
"your theme."
|
1142 |
+
msgstr[0] ""
|
1143 |
+
"ما متوجه شده ایم که موضوع فعلی شما با فرمت زیر سازگار است و توصیه می شود که "
|
1144 |
+
"آن را به طور کامل از موضوع خود استفاده کنید."
|
1145 |
+
msgstr[1] ""
|
1146 |
+
"ما متوجه شده ایم که موضوع فعلی شما با فرمت زیر سازگار است و توصیه می شود که "
|
1147 |
+
"آن را به طور کامل از موضوع خود استفاده کنید."
|
1148 |
+
|
1149 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/install-form.php:20
|
1150 |
+
msgid "You are about to install the following extension:"
|
1151 |
+
msgid_plural "You are about to install the following extensions:"
|
1152 |
+
msgstr[0] "شما در حال نصب افزونه مقابل هستید :"
|
1153 |
+
msgstr[1] "شما امکان پذیر نیست برای نصب افزونه."
|
1154 |
+
|
1155 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/install-form.php:35
|
1156 |
+
msgid "Are you sure you wish to install this extension?"
|
1157 |
+
msgid_plural "Are you sure you wish to install these extensions?"
|
1158 |
+
msgstr[0] "آیا از نصب این افزودنی مطئنید ؟"
|
1159 |
+
msgstr[1] "آیا از نصب این افزودنی ها مطئنید ؟"
|
1160 |
+
|
1161 |
+
#: classipress/development/includes/framework/core/components/extensions/manager/views/install-form.php:44
|
1162 |
+
msgid "Yes, Install this extension"
|
1163 |
+
msgid_plural "Yes, Install these extensions"
|
1164 |
+
msgstr[0] "بله، نصب این افزونه"
|
1165 |
+
msgstr[1] "بله، نصب این افزونه ها"
|
1166 |
+
|
1167 |
+
#: classipress/development/includes/framework/core/components/theme.php:207
|
1168 |
+
msgid "Theme requirements not met:"
|
1169 |
+
msgstr "مورد نیاز موضوع آشنا نیست:"
|
1170 |
+
|
1171 |
+
#: classipress/development/includes/framework/core/components/theme.php:223
|
1172 |
+
msgid "Try Brizy: A Fast & Easy Way of Creating Pages Visually"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: classipress/development/includes/framework/core/components/theme.php:225
|
1176 |
+
msgid "More Details"
|
1177 |
+
msgstr "جزئیات بیشتر"
|
1178 |
+
|
1179 |
+
#: classipress/development/includes/framework/core/components/theme.php:230
|
1180 |
+
#, fuzzy
|
1181 |
+
#| msgid "Activate for"
|
1182 |
+
msgid "Activate Now | for FREE"
|
1183 |
+
msgstr "فعال کردن برای"
|
1184 |
+
|
1185 |
+
#: classipress/development/includes/framework/core/extends/class-fw-option-type.php:329
|
1186 |
+
#, php-format
|
1187 |
+
msgid "Option type %s has no default value"
|
1188 |
+
msgstr "نوع گزینه%s فاقد مقدار پیش فرض"
|
1189 |
+
|
1190 |
+
#: classipress/development/includes/framework/helpers/class-fw-flash-messages.php:95
|
1191 |
+
#, php-format
|
1192 |
+
msgid "Invalid flash message type: %s"
|
1193 |
+
msgstr "نوع پیام فلش نامعتبر است: %s"
|
1194 |
+
|
1195 |
+
#: classipress/development/includes/framework/helpers/class-fw-form.php:102
|
1196 |
+
#, php-format
|
1197 |
+
msgid "Form with id \"%s\" was already defined"
|
1198 |
+
msgstr "فرم با شناسه \"%s\" قبلا تعریف شد"
|
1199 |
+
|
1200 |
+
#: classipress/development/includes/framework/helpers/class-fw-form.php:271
|
1201 |
+
msgid "Submit"
|
1202 |
+
msgstr "ارسال"
|
1203 |
+
|
1204 |
+
#: classipress/development/includes/framework/helpers/class-fw-form.php:465
|
1205 |
+
msgid "Your session expired. Please refresh page and try again."
|
1206 |
+
msgstr ""
|
1207 |
+
"زمان شما پایان یافته است! لطفا صفحه را مجددا بارگزاری کرده و دوباره تلاش "
|
1208 |
+
"کنید."
|
1209 |
+
|
1210 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:74
|
1211 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:217
|
1212 |
+
msgid "Save Changes"
|
1213 |
+
msgstr "ذخیره تغییرها"
|
1214 |
+
|
1215 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:75
|
1216 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:218
|
1217 |
+
msgid "Reset Options"
|
1218 |
+
msgstr "ریست تنظیمات"
|
1219 |
+
|
1220 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:76
|
1221 |
+
msgid ""
|
1222 |
+
"Click OK to reset.\n"
|
1223 |
+
"All settings will be lost and replaced with default settings!"
|
1224 |
+
msgstr ""
|
1225 |
+
"بر روی تایید کلیک کنید تا تمامی تنظیمات به حالت اول برگردد و توجه داشته "
|
1226 |
+
"باشید که همه تنظیمات از بین خواهد رفت !"
|
1227 |
+
|
1228 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:205
|
1229 |
+
msgid "No options to display."
|
1230 |
+
msgstr "هیچ گزینه ای برای نمایش وجود ندارد."
|
1231 |
+
|
1232 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:261
|
1233 |
+
msgid "You have no permissions to change settings options"
|
1234 |
+
msgstr "شما هیچ مجوز به تغییر گزینه های تنظیمات"
|
1235 |
+
|
1236 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:298
|
1237 |
+
msgid "The options were successfully reset"
|
1238 |
+
msgstr "تنظیمات پوسته به حالت پیش فرض بازگشت"
|
1239 |
+
|
1240 |
+
#: classipress/development/includes/framework/helpers/class-fw-settings-form.php:312
|
1241 |
+
msgid "The options were successfully saved"
|
1242 |
+
msgstr "تنظیمات پوسته ذخیره شد"
|
1243 |
+
|
1244 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-filesystem.php:43
|
1245 |
+
msgid "Cannot connect to Filesystem directly"
|
1246 |
+
msgstr "امکان اتصال به سیستم فایل را به طور مستقیم"
|
1247 |
+
|
1248 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-filesystem.php:271
|
1249 |
+
#, php-format
|
1250 |
+
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
1251 |
+
msgstr ""
|
1252 |
+
"می توانید دایرکتوری \"%s\" را ایجاد کنید. باید در داخل \"%s\" را می شود"
|
1253 |
+
|
1254 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-filesystem.php:273
|
1255 |
+
msgid "\" or \""
|
1256 |
+
msgstr "\" یا \""
|
1257 |
+
|
1258 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-filesystem.php:327
|
1259 |
+
msgid "Error writing to file: "
|
1260 |
+
msgstr "خطا در نوشتن در فایل:"
|
1261 |
+
|
1262 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-filesystem.php:348
|
1263 |
+
msgid "Error to get content from file: "
|
1264 |
+
msgstr "خطا در دریافت محتوا از فایل:"
|
1265 |
+
|
1266 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:185
|
1267 |
+
msgid "No items found."
|
1268 |
+
msgstr "هیچ موردی پیدا نشد."
|
1269 |
+
|
1270 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:309
|
1271 |
+
msgid "Bulk Actions"
|
1272 |
+
msgstr "کارهای گروهی"
|
1273 |
+
|
1274 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:403
|
1275 |
+
msgid "All dates"
|
1276 |
+
msgstr "تاریخ کلی"
|
1277 |
+
|
1278 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:416
|
1279 |
+
#, php-format
|
1280 |
+
msgid "%1$s %2$d"
|
1281 |
+
msgstr "%1$s %2$d"
|
1282 |
+
|
1283 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:432
|
1284 |
+
msgid "List View"
|
1285 |
+
msgstr "نمایش لیست"
|
1286 |
+
|
1287 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:433
|
1288 |
+
msgid "Excerpt View"
|
1289 |
+
msgstr "مشاهده خلاصه"
|
1290 |
+
|
1291 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:459
|
1292 |
+
#, php-format
|
1293 |
+
msgid "%s pending"
|
1294 |
+
msgstr "%s انتظار"
|
1295 |
+
|
1296 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:527
|
1297 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:942
|
1298 |
+
#, php-format
|
1299 |
+
msgid "1 item"
|
1300 |
+
msgid_plural "%s items"
|
1301 |
+
msgstr[0] "1 آیتم"
|
1302 |
+
msgstr[1] "%s آیتم"
|
1303 |
+
|
1304 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:545
|
1305 |
+
msgid "Go to the first page"
|
1306 |
+
msgstr "رفتن به برگه نخست"
|
1307 |
+
|
1308 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:552
|
1309 |
+
msgid "Go to the previous page"
|
1310 |
+
msgstr "رفتن به برگه پیشین"
|
1311 |
+
|
1312 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:561
|
1313 |
+
msgid "Current page"
|
1314 |
+
msgstr "برگه فعلی"
|
1315 |
+
|
1316 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:567
|
1317 |
+
#, php-format
|
1318 |
+
msgctxt "paging"
|
1319 |
+
msgid "%1$s of %2$s"
|
1320 |
+
msgstr "%1$s یا %2$s"
|
1321 |
+
|
1322 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:571
|
1323 |
+
msgid "Go to the next page"
|
1324 |
+
msgstr "رفتن به برگه بعدی"
|
1325 |
+
|
1326 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:578
|
1327 |
+
msgid "Go to the last page"
|
1328 |
+
msgstr "برو به آخرین صفحه"
|
1329 |
+
|
1330 |
+
#: classipress/development/includes/framework/helpers/class-fw-wp-list-table.php:714
|
1331 |
+
msgid "Select All"
|
1332 |
+
msgstr "انتخاب همه"
|
1333 |
+
|
1334 |
+
#: classipress/development/includes/framework/helpers/general.php:1424
|
1335 |
+
msgid "year"
|
1336 |
+
msgstr "سال"
|
1337 |
+
|
1338 |
+
#: classipress/development/includes/framework/helpers/general.php:1425
|
1339 |
+
msgid "years"
|
1340 |
+
msgstr "سال"
|
1341 |
+
|
1342 |
+
#: classipress/development/includes/framework/helpers/general.php:1427
|
1343 |
+
msgid "month"
|
1344 |
+
msgstr "ماه"
|
1345 |
+
|
1346 |
+
#: classipress/development/includes/framework/helpers/general.php:1428
|
1347 |
+
msgid "months"
|
1348 |
+
msgstr "ماه"
|
1349 |
+
|
1350 |
+
#: classipress/development/includes/framework/helpers/general.php:1430
|
1351 |
+
msgid "week"
|
1352 |
+
msgstr "هفته"
|
1353 |
+
|
1354 |
+
#: classipress/development/includes/framework/helpers/general.php:1431
|
1355 |
+
msgid "weeks"
|
1356 |
+
msgstr "هفته"
|
1357 |
+
|
1358 |
+
#: classipress/development/includes/framework/helpers/general.php:1433
|
1359 |
+
msgid "day"
|
1360 |
+
msgstr "روز"
|
1361 |
+
|
1362 |
+
#: classipress/development/includes/framework/helpers/general.php:1434
|
1363 |
+
msgid "days"
|
1364 |
+
msgstr "روز"
|
1365 |
+
|
1366 |
+
#: classipress/development/includes/framework/helpers/general.php:1436
|
1367 |
+
msgid "hour"
|
1368 |
+
msgstr "ساعت"
|
1369 |
+
|
1370 |
+
#: classipress/development/includes/framework/helpers/general.php:1437
|
1371 |
+
msgid "hours"
|
1372 |
+
msgstr "ساعت"
|
1373 |
+
|
1374 |
+
#: classipress/development/includes/framework/helpers/general.php:1439
|
1375 |
+
msgid "minute"
|
1376 |
+
msgstr "دقیقه"
|
1377 |
+
|
1378 |
+
#: classipress/development/includes/framework/helpers/general.php:1440
|
1379 |
+
msgid "minutes"
|
1380 |
+
msgstr "دقیقه"
|
1381 |
+
|
1382 |
+
#: classipress/development/includes/framework/helpers/general.php:1442
|
1383 |
+
msgid "second"
|
1384 |
+
msgstr "ثانیه"
|
1385 |
+
|
1386 |
+
#: classipress/development/includes/framework/helpers/general.php:1443
|
1387 |
+
msgid "seconds"
|
1388 |
+
msgstr "ثانیه"
|
1389 |
+
|
1390 |
+
#: classipress/development/includes/framework/helpers/general.php:1840
|
1391 |
+
msgid "Maximum stack depth exceeded"
|
1392 |
+
msgstr "حداکثر عمق پشته بیش از"
|
1393 |
+
|
1394 |
+
#: classipress/development/includes/framework/helpers/general.php:1843
|
1395 |
+
msgid "Underflow or the modes mismatch"
|
1396 |
+
msgstr "پاریز و یا عدم تطابق حالت"
|
1397 |
+
|
1398 |
+
#: classipress/development/includes/framework/helpers/general.php:1846
|
1399 |
+
msgid "Unexpected control character found"
|
1400 |
+
msgstr "شخصیت کنترل غیر منتظره پیدا شده است"
|
1401 |
+
|
1402 |
+
#: classipress/development/includes/framework/helpers/general.php:1849
|
1403 |
+
msgid "Syntax error, malformed JSON"
|
1404 |
+
msgstr "خطای نحوی، JSON ناقص"
|
1405 |
+
|
1406 |
+
#: classipress/development/includes/framework/helpers/general.php:1852
|
1407 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1408 |
+
msgstr "ناقص UTF-8 کاراکتر، احتمالا به اشتباه کد گذاری"
|
1409 |
+
|
1410 |
+
#: classipress/development/includes/framework/helpers/general.php:1855
|
1411 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:618
|
1412 |
+
msgid "Unknown error"
|
1413 |
+
msgstr "خطای ناشناخته"
|
1414 |
+
|
1415 |
+
#: classipress/development/includes/framework/includes/hooks.php:104
|
1416 |
+
msgid "Please register option-types on 'fw_option_types_init' action"
|
1417 |
+
msgstr "لطفا گزینه ثبت نام در انواع عمل 'fw_option_types_init،"
|
1418 |
+
|
1419 |
+
#: classipress/development/includes/framework/includes/hooks.php:112
|
1420 |
+
msgid "Please register container-types on 'fw_container_types_init' action"
|
1421 |
+
msgstr "لطفا ظرف انواع ثبت نام در عمل 'fw_container_types_init،"
|
1422 |
+
|
1423 |
+
#: classipress/development/includes/framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php:203
|
1424 |
+
#: classipress/development/includes/framework/includes/option-types/addable-option/class-fw-option-type-addable-option.php:20
|
1425 |
+
#: classipress/development/includes/framework/includes/option-types/addable-popup/class-fw-option-type-addable-popup.php:187
|
1426 |
+
msgid "Add"
|
1427 |
+
msgstr "اضافه کردن"
|
1428 |
+
|
1429 |
+
#: classipress/development/includes/framework/includes/option-types/addable-popup/view.php:38
|
1430 |
+
#: classipress/development/includes/framework/includes/option-types/addable-popup/view.php:53
|
1431 |
+
msgid "Clone"
|
1432 |
+
msgstr "کپی کردن"
|
1433 |
+
|
1434 |
+
#: classipress/development/includes/framework/includes/option-types/background-image/view.php:37
|
1435 |
+
msgid "Predefined images"
|
1436 |
+
msgstr "تصاویر از پیش تعریف شده"
|
1437 |
+
|
1438 |
+
#: classipress/development/includes/framework/includes/option-types/background-image/view.php:38
|
1439 |
+
msgid "Custom image"
|
1440 |
+
msgstr "تصویر سفارشی"
|
1441 |
+
|
1442 |
+
#: classipress/development/includes/framework/includes/option-types/class-fw-option-type-undefined.php:25
|
1443 |
+
msgid "UNDEFINED OPTION TYPE"
|
1444 |
+
msgstr "نوع آپشن تعریف نشده است !"
|
1445 |
+
|
1446 |
+
#: classipress/development/includes/framework/includes/option-types/datetime-range/view.php:41
|
1447 |
+
#: classipress/development/includes/framework/includes/option-types/gradient/view.php:46
|
1448 |
+
msgid "to"
|
1449 |
+
msgstr "به"
|
1450 |
+
|
1451 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/class-fw-option-type-icon-v2.php:74
|
1452 |
+
msgid "Change Icon"
|
1453 |
+
msgstr "تغییر آیکون"
|
1454 |
+
|
1455 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/class-fw-option-type-icon-v2.php:75
|
1456 |
+
msgid "Add Icon"
|
1457 |
+
msgstr "افزودن آیکون"
|
1458 |
+
|
1459 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:7
|
1460 |
+
msgid "Icon Fonts"
|
1461 |
+
msgstr "فونت آیکون"
|
1462 |
+
|
1463 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:22
|
1464 |
+
msgid "Custom Upload"
|
1465 |
+
msgstr "بارگذاری"
|
1466 |
+
|
1467 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:35
|
1468 |
+
msgid "Favorites"
|
1469 |
+
msgstr "علاقهمندیها"
|
1470 |
+
|
1471 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:79
|
1472 |
+
msgid "Search Icon"
|
1473 |
+
msgstr "جستجو آیکون"
|
1474 |
+
|
1475 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:118
|
1476 |
+
msgid "Sorry, but no results have been found"
|
1477 |
+
msgstr "متاسفانه موردی یافت نشد"
|
1478 |
+
|
1479 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:119
|
1480 |
+
msgid "You can try something like: wordpress, twitter, heart, cat e.t.c "
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:137
|
1484 |
+
msgid "You have no favorite icons yet"
|
1485 |
+
msgstr "شما هنوز آیکون های مورد علاقه ای ندارید"
|
1486 |
+
|
1487 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:140
|
1488 |
+
msgid ""
|
1489 |
+
"To add icons here, simply click on the star button that's on top right "
|
1490 |
+
"corner of each icon."
|
1491 |
+
msgstr ""
|
1492 |
+
"برای اضافه کردن آیکون کافیست موس خود را بر روی آیکون دلخواه آورده و بر روی "
|
1493 |
+
"ستاره ای که در گوشه آن پدیدار می شود کلیک کنید."
|
1494 |
+
|
1495 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:161
|
1496 |
+
msgid "Upload Icons"
|
1497 |
+
msgstr "بارگذاری آیکون"
|
1498 |
+
|
1499 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:164
|
1500 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:196
|
1501 |
+
#: classipress/development/includes/framework/includes/option-types/upload/class-fw-option-type-upload.php:182
|
1502 |
+
msgid "Upload"
|
1503 |
+
msgstr "بارگذاری"
|
1504 |
+
|
1505 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:178
|
1506 |
+
msgid "You have no uploaded icons yet"
|
1507 |
+
msgstr "شما هنوز هیچ آیکونی بارگذاری نکرده اید"
|
1508 |
+
|
1509 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:182
|
1510 |
+
msgid "To add new icons simply click on the Upload button."
|
1511 |
+
msgstr "برای اضافه کردن آیکون های جدید بر روی دکمه بارگذاری کلیک کنید."
|
1512 |
+
|
1513 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:206
|
1514 |
+
msgid "Delete item"
|
1515 |
+
msgstr "حذف مورد"
|
1516 |
+
|
1517 |
+
#: classipress/development/includes/framework/includes/option-types/icon-v2/views/templates.php:251
|
1518 |
+
msgid "Add to Favorites"
|
1519 |
+
msgstr "افزودن به علاقه مندی ها"
|
1520 |
+
|
1521 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:156
|
1522 |
+
msgid "Unknown Set"
|
1523 |
+
msgstr "ناشناخته"
|
1524 |
+
|
1525 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:186
|
1526 |
+
msgid "Web Application Icons"
|
1527 |
+
msgstr "آیکونهای برنامه وب"
|
1528 |
+
|
1529 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:188
|
1530 |
+
msgid "Hand Icons"
|
1531 |
+
msgstr "آیکونهای دست"
|
1532 |
+
|
1533 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:189
|
1534 |
+
msgid "Transportation Icons"
|
1535 |
+
msgstr "آیکونهای انتقال"
|
1536 |
+
|
1537 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:190
|
1538 |
+
msgid "Gender Icons"
|
1539 |
+
msgstr "آیکونهای جنسیت"
|
1540 |
+
|
1541 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:191
|
1542 |
+
msgid "File Type Icons"
|
1543 |
+
msgstr "آیکونهای نوع فایل"
|
1544 |
+
|
1545 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:194
|
1546 |
+
msgid "Payment Icons"
|
1547 |
+
msgstr "آیکونهای پرداخت"
|
1548 |
+
|
1549 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:196
|
1550 |
+
msgid "Currency Icons"
|
1551 |
+
msgstr "آیکونهای واحد پول"
|
1552 |
+
|
1553 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:197
|
1554 |
+
msgid "Text Editor Icons"
|
1555 |
+
msgstr "آیکونهای ویرایشگر متن"
|
1556 |
+
|
1557 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:198
|
1558 |
+
msgid "Directional Icons"
|
1559 |
+
msgstr "آیکونهای هدایتی"
|
1560 |
+
|
1561 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:199
|
1562 |
+
msgid "Video Player Icons"
|
1563 |
+
msgstr "آیکونهای پخش کننده ویدئو"
|
1564 |
+
|
1565 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:200
|
1566 |
+
msgid "Brand Icons"
|
1567 |
+
msgstr "آیکونهای برند"
|
1568 |
+
|
1569 |
+
#: classipress/development/includes/framework/includes/option-types/icon/class-fw-option-type-icon.php:201
|
1570 |
+
msgid "Medical Icons"
|
1571 |
+
msgstr "آیکونهای پزشکی"
|
1572 |
+
|
1573 |
+
#: classipress/development/includes/framework/includes/option-types/icon/view.php:39
|
1574 |
+
msgid "All Categories"
|
1575 |
+
msgstr "کلیه دسته بندی ها"
|
1576 |
+
|
1577 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:12
|
1578 |
+
msgid "Specify location"
|
1579 |
+
msgstr "تعیین محل"
|
1580 |
+
|
1581 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:27
|
1582 |
+
msgid "Location Venue"
|
1583 |
+
msgstr "مکان مورد نظر"
|
1584 |
+
|
1585 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:42
|
1586 |
+
msgid "Address"
|
1587 |
+
msgstr "آدرس"
|
1588 |
+
|
1589 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:57
|
1590 |
+
msgid "City"
|
1591 |
+
msgstr "شهر"
|
1592 |
+
|
1593 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:72
|
1594 |
+
msgid "Country"
|
1595 |
+
msgstr "کشور"
|
1596 |
+
|
1597 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:87
|
1598 |
+
msgid "State"
|
1599 |
+
msgstr "استان"
|
1600 |
+
|
1601 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:103
|
1602 |
+
msgid "Zip Code"
|
1603 |
+
msgstr "کد پستی"
|
1604 |
+
|
1605 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:138
|
1606 |
+
msgid "Cannot find the location?"
|
1607 |
+
msgstr "نمی تواند محل را پیدا کند ؟"
|
1608 |
+
|
1609 |
+
#: classipress/development/includes/framework/includes/option-types/map/views/view.php:150
|
1610 |
+
msgid "Reset location"
|
1611 |
+
msgstr "تنظیم مجدد مکان"
|
1612 |
+
|
1613 |
+
#: classipress/development/includes/framework/includes/option-types/multi-picker/class-fw-option-type-multi-picker.php:241
|
1614 |
+
#, php-format
|
1615 |
+
msgid "No 'picker' key set for multi-picker option: %s"
|
1616 |
+
msgstr "نه \"جمع کننده کلید تعیین شده برای گزینه های چند جمع کننده:%s را"
|
1617 |
+
|
1618 |
+
#: classipress/development/includes/framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:122
|
1619 |
+
msgid "No title"
|
1620 |
+
msgstr "بدون عنوان"
|
1621 |
+
|
1622 |
+
#: classipress/development/includes/framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:511
|
1623 |
+
#: classipress/development/includes/framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:521
|
1624 |
+
msgctxt "unknown-post-type"
|
1625 |
+
msgid "Unknown"
|
1626 |
+
msgstr "ناشناخته"
|
1627 |
+
|
1628 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:168
|
1629 |
+
msgid "Add Images"
|
1630 |
+
msgstr "درج تصاویر"
|
1631 |
+
|
1632 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:169
|
1633 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:197
|
1634 |
+
#: classipress/development/includes/framework/includes/option-types/popup/class-fw-option-type-popup.php:173
|
1635 |
+
#: classipress/development/includes/framework/includes/option-types/upload/class-fw-option-type-upload.php:155
|
1636 |
+
#: classipress/development/includes/framework/includes/option-types/upload/class-fw-option-type-upload.php:183
|
1637 |
+
msgid "Edit"
|
1638 |
+
msgstr "ویرایش"
|
1639 |
+
|
1640 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:170
|
1641 |
+
msgid "Select Images"
|
1642 |
+
msgstr "انتخاب تصاوير"
|
1643 |
+
|
1644 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:198
|
1645 |
+
msgid "1 File"
|
1646 |
+
msgstr "1 فایل"
|
1647 |
+
|
1648 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:199
|
1649 |
+
#, php-format
|
1650 |
+
msgid "%u Files"
|
1651 |
+
msgstr "%u فایل"
|
1652 |
+
|
1653 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/views/images-only.php:15
|
1654 |
+
#: classipress/development/includes/framework/includes/option-types/multi-upload/views/images-only.php:36
|
1655 |
+
#: classipress/development/includes/framework/includes/option-types/upload/views/images-only.php:13
|
1656 |
+
#: classipress/development/includes/framework/includes/option-types/upload/views/images-only.php:30
|
1657 |
+
msgid "No image"
|
1658 |
+
msgstr "بدون تصویر"
|
1659 |
+
|
1660 |
+
#: classipress/development/includes/framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:26
|
1661 |
+
msgid "25%"
|
1662 |
+
msgstr "25%"
|
1663 |
+
|
1664 |
+
#: classipress/development/includes/framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:27
|
1665 |
+
msgid "50%"
|
1666 |
+
msgstr "50%"
|
1667 |
+
|
1668 |
+
#: classipress/development/includes/framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:28
|
1669 |
+
msgid "100%"
|
1670 |
+
msgstr "100%"
|
1671 |
+
|
1672 |
+
#: classipress/development/includes/framework/includes/option-types/simple.php:467
|
1673 |
+
#: classipress/development/includes/framework/includes/option-types/switch/class-fw-option-type-switch.php:170
|
1674 |
+
msgid "Yes"
|
1675 |
+
msgstr "بله"
|
1676 |
+
|
1677 |
+
#: classipress/development/includes/framework/includes/option-types/switch/class-fw-option-type-switch.php:165
|
1678 |
+
msgid "No"
|
1679 |
+
msgstr "خیر"
|
1680 |
+
|
1681 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:40
|
1682 |
+
msgid "Font face"
|
1683 |
+
msgstr "فونت"
|
1684 |
+
|
1685 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:50
|
1686 |
+
msgid "Normal"
|
1687 |
+
msgstr "معمولی"
|
1688 |
+
|
1689 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:51
|
1690 |
+
msgid "Italic"
|
1691 |
+
msgstr "ایتالیک"
|
1692 |
+
|
1693 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:52
|
1694 |
+
msgid "Oblique"
|
1695 |
+
msgstr "مورب"
|
1696 |
+
|
1697 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:61
|
1698 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:125
|
1699 |
+
msgid "Style"
|
1700 |
+
msgstr "استایل"
|
1701 |
+
|
1702 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:89
|
1703 |
+
msgid "Weight"
|
1704 |
+
msgstr "وزن"
|
1705 |
+
|
1706 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:106
|
1707 |
+
msgid "Script"
|
1708 |
+
msgstr "اسکریپت"
|
1709 |
+
|
1710 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:136
|
1711 |
+
msgid "Size"
|
1712 |
+
msgstr "سایز"
|
1713 |
+
|
1714 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:147
|
1715 |
+
msgid "Line height"
|
1716 |
+
msgstr "ارتفاع خط"
|
1717 |
+
|
1718 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:158
|
1719 |
+
msgid "Spacing"
|
1720 |
+
msgstr "فاصله"
|
1721 |
+
|
1722 |
+
#: classipress/development/includes/framework/includes/option-types/typography-v2/view.php:181
|
1723 |
+
msgid "Color"
|
1724 |
+
msgstr "رنگ"
|
1725 |
+
|
1726 |
+
#: classipress/development/includes/framework/includes/option-types/upload/class-fw-option-type-upload.php:154
|
1727 |
+
msgid "Add Image"
|
1728 |
+
msgstr "افزودن تصویر"
|
1729 |
+
|
1730 |
+
#: classipress/development/includes/framework/includes/option-types/upload/class-fw-option-type-upload.php:156
|
1731 |
+
msgid "Select Image"
|
1732 |
+
msgstr "انتخاب تصویر"
|
1733 |
+
|
1734 |
+
#: classipress/development/includes/framework/manifest.php:5
|
1735 |
+
msgid "nasimnet"
|
1736 |
+
msgstr "نسیم نت"
|
1737 |
+
|
1738 |
+
#: classipress/development/includes/framework/views/about.php:60
|
1739 |
+
msgid "No designer or coding skills required."
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: classipress/development/includes/framework/views/about.php:63
|
1743 |
+
msgid "Install Now | for FREE"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: classipress/development/includes/framework/views/about.php:75
|
1747 |
+
msgid "Create & Edit Everything Visually"
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: classipress/development/includes/framework/views/about.php:83
|
1751 |
+
msgid "Choose from a lot of elements to create your own design"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: classipress/development/includes/framework/views/about.php:89
|
1755 |
+
msgid "Start from over 150 pre-made blocks to create your page"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: classipress/development/includes/framework/views/about.php:95
|
1759 |
+
msgid "The interface shows only what’s needed for the task at hand"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: classipress/development/includes/framework/views/about.php:101
|
1763 |
+
msgid "Know where your elements will drop when you drag them"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: classipress/development/includes/framework/views/about.php:105
|
1767 |
+
#: classipress/development/includes/framework/views/about.php:148
|
1768 |
+
msgid "Install Now & Start Creating"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: classipress/development/includes/framework/views/about.php:115
|
1772 |
+
msgid "Fast & Easy"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: classipress/development/includes/framework/views/about.php:116
|
1776 |
+
msgid "Using Only"
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: classipress/development/includes/framework/views/about.php:117
|
1780 |
+
msgid "Drag & Drop"
|
1781 |
+
msgstr "کشیدن و رها کردن"
|
1782 |
+
|
1783 |
+
#: classipress/development/includes/framework/views/about.php:126
|
1784 |
+
msgid "Brizy has the smartest text editor you’ll ever work with"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: classipress/development/includes/framework/views/about.php:132
|
1788 |
+
msgid "Try different fonts & colors across your pages in seconds"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: classipress/development/includes/framework/views/about.php:138
|
1792 |
+
msgid "Changes in mobile view will be applied only on mobile devices"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: classipress/development/includes/framework/views/about.php:144
|
1796 |
+
msgid "Over 4000 icons separated in 27 categories are included"
|
1797 |
+
msgstr ""
|
1798 |
+
|
1799 |
+
#: classipress/development/includes/framework/views/about.php:156
|
1800 |
+
msgid "Thanks for giving Brizy a Try!"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:179
|
1804 |
+
msgid "Resetting"
|
1805 |
+
msgstr "بازنشانی تنظیمات"
|
1806 |
+
|
1807 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:181
|
1808 |
+
msgid "We are currently resetting your settings."
|
1809 |
+
msgstr "ما در حال بازیابی تنظیمات شما هستیم."
|
1810 |
+
|
1811 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:183
|
1812 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:189
|
1813 |
+
msgid "This may take a few moments."
|
1814 |
+
msgstr "این کار ممکن است چند لحظه طول بکشد."
|
1815 |
+
|
1816 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:185
|
1817 |
+
msgid "Saving"
|
1818 |
+
msgstr "در حال ذخیره شدن ..."
|
1819 |
+
|
1820 |
+
#: classipress/development/includes/framework/views/backend-settings-form.php:187
|
1821 |
+
msgid "We are currently saving your settings."
|
1822 |
+
msgstr "ما در حال ذخیره سازی تنظیمات شما هستیم."
|
1823 |
+
|
1824 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:127
|
1825 |
+
#, php-format
|
1826 |
+
msgid ""
|
1827 |
+
"Oops, %s requires %s but it is not enabled on your server. If you are not "
|
1828 |
+
"familiar with PHP Zip module, please contact your hosting provider."
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:132
|
1832 |
+
msgid "Unyson Backup"
|
1833 |
+
msgstr "پشتیبان گیری"
|
1834 |
+
|
1835 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:136
|
1836 |
+
msgid "PHP Zip module"
|
1837 |
+
msgstr "کتابخانه فشرده سازی PHP"
|
1838 |
+
|
1839 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:197
|
1840 |
+
#, php-format
|
1841 |
+
msgid ""
|
1842 |
+
"Your website is hosted using the LiteSpeed web server. Please consult this "
|
1843 |
+
"%sarticle%s if you have problems backing up."
|
1844 |
+
msgstr ""
|
1845 |
+
"وبسایت شما بر روی سرور لایت اسپید هاست شده است. اگر مشکلی در بک آپ گیری "
|
1846 |
+
"دارید لطفا این %sمطلب%s را بخوانید."
|
1847 |
+
|
1848 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:281
|
1849 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:255
|
1850 |
+
msgid "Are you sure?"
|
1851 |
+
msgstr "آیا مطمئن هستید؟"
|
1852 |
+
|
1853 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:373
|
1854 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:440
|
1855 |
+
msgid "File not specified"
|
1856 |
+
msgstr "فایل مشخص نیست"
|
1857 |
+
|
1858 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:382
|
1859 |
+
msgid "Filesystem access required"
|
1860 |
+
msgstr "دسترسی به فایل سیستم مورد نیاز"
|
1861 |
+
|
1862 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:404
|
1863 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:409
|
1864 |
+
msgid "Invalid filesystem credentials"
|
1865 |
+
msgstr "اعتبار فایل سیستم نامعتبر"
|
1866 |
+
|
1867 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:622
|
1868 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:636
|
1869 |
+
msgid "Access Denied"
|
1870 |
+
msgstr "دسترسی ممکن نیست"
|
1871 |
+
|
1872 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:629
|
1873 |
+
msgid "Archive not found"
|
1874 |
+
msgstr "آرشیو یافت نشد"
|
1875 |
+
|
1876 |
+
#: isatis/development/includes/theme-options/extensions/backups/class-fw-extension-backups.php:643
|
1877 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:197
|
1878 |
+
msgid "Failed to open file"
|
1879 |
+
msgstr "خطا در باز کردن فایل"
|
1880 |
+
|
1881 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:105
|
1882 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:106
|
1883 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:419
|
1884 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:22
|
1885 |
+
msgid "Demo Content Install"
|
1886 |
+
msgstr "نصب محتوا دمو"
|
1887 |
+
|
1888 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:122
|
1889 |
+
#, php-format
|
1890 |
+
msgid "Demo Content Install works only in %s."
|
1891 |
+
msgstr "نصب محتوا دمو تنها در %s کار می کند."
|
1892 |
+
|
1893 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:124
|
1894 |
+
msgid "Staging"
|
1895 |
+
msgstr "استقرار"
|
1896 |
+
|
1897 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:305
|
1898 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:361
|
1899 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:394
|
1900 |
+
msgid "Forbidden"
|
1901 |
+
msgstr "ممنوع"
|
1902 |
+
|
1903 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:374
|
1904 |
+
msgid "Invalid demo"
|
1905 |
+
msgstr "غیر واقعی"
|
1906 |
+
|
1907 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:381
|
1908 |
+
msgid "A content install is currently running"
|
1909 |
+
msgstr "محتوای نصب در حال اجرا است"
|
1910 |
+
|
1911 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:477
|
1912 |
+
msgid "Error"
|
1913 |
+
msgstr "خطا"
|
1914 |
+
|
1915 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:493
|
1916 |
+
msgid "Demo Install has been aborted"
|
1917 |
+
msgstr "نسخه ی نمایشی نصب صرفنظر شده است"
|
1918 |
+
|
1919 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:15
|
1920 |
+
msgid ""
|
1921 |
+
"IMPORTANT: Installing this demo content will delete the content you "
|
1922 |
+
"currently have on your website. However, we create a backup of your current "
|
1923 |
+
"content in (Tools > Backup). You can restore the backup from there at any "
|
1924 |
+
"time in the future."
|
1925 |
+
msgstr ""
|
1926 |
+
"مهم: نصب محتوای دمو باعث از بین رفتن محتوای فعلی وبسایت شما خواهد شد. با این "
|
1927 |
+
"حال، ما از محتوای فعلی شما یک پشتیبان تهیه کرده که در منوی ( ابزارها > "
|
1928 |
+
"پشتیبان گیری ) قابل مشاهده می باشد. شما هر زمان که مایل بودید می توانید آن "
|
1929 |
+
"را بازگردانی کنید."
|
1930 |
+
|
1931 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:28
|
1932 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:39
|
1933 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:17
|
1934 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:28
|
1935 |
+
msgid "Important"
|
1936 |
+
msgstr "مهم"
|
1937 |
+
|
1938 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:30
|
1939 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:19
|
1940 |
+
#, php-format
|
1941 |
+
msgid "You need to activate %s."
|
1942 |
+
msgstr "شما نیاز به فعال به%s."
|
1943 |
+
|
1944 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:31
|
1945 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:20
|
1946 |
+
msgid "zip extension"
|
1947 |
+
msgstr "Extension"
|
1948 |
+
|
1949 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/page.php:54
|
1950 |
+
msgid "Live Preview"
|
1951 |
+
msgstr "پیش نمایش زنده"
|
1952 |
+
|
1953 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/status.php:16
|
1954 |
+
msgid "Installing"
|
1955 |
+
msgstr "در حال نصب"
|
1956 |
+
|
1957 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/status.php:18
|
1958 |
+
msgid "We are currently installing your content."
|
1959 |
+
msgstr "ما در حال نصب محتوای شما هستیم."
|
1960 |
+
|
1961 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/status.php:47
|
1962 |
+
msgid "Pending"
|
1963 |
+
msgstr "درحال انتظار"
|
1964 |
+
|
1965 |
+
#: isatis/development/includes/theme-options/extensions/backups/extensions/backups-demo/views/status.php:52
|
1966 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/tasks-status.php:38
|
1967 |
+
msgid "Abort"
|
1968 |
+
msgstr "بدون نتیجه"
|
1969 |
+
|
1970 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:25
|
1971 |
+
#, php-format
|
1972 |
+
msgid "Response code: %d"
|
1973 |
+
msgstr "کد پاسخ:%d"
|
1974 |
+
|
1975 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:37
|
1976 |
+
msgid "Invalid JSON response"
|
1977 |
+
msgstr "پاسخ JSON نامعتبر است."
|
1978 |
+
|
1979 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:44
|
1980 |
+
msgid ""
|
1981 |
+
"HTTP Loopback Connections are not enabled on this server. If you need to "
|
1982 |
+
"contact your web host, tell them that when PHP tries to connect back to the "
|
1983 |
+
"site at the URL `{url}` and it gets the error `{error}`. There may be a "
|
1984 |
+
"problem with the server configuration (eg local DNS problems, mod_security, "
|
1985 |
+
"etc) preventing connections from working properly."
|
1986 |
+
msgstr ""
|
1987 |
+
"اتصالات HTTP پرونده ها در این سرور فعال نیست. اگر شما نیاز به تماس با میزبان "
|
1988 |
+
"وب خود را، به آنها بگویید که وقتی PHP تلاش برای اتصال به سایت با آدرس URL "
|
1989 |
+
"`{URL}` و آن را می شود خطا `{خطای}`. ممکن است یک مشکل با تنظیمات سرور (به "
|
1990 |
+
"عنوان مثال مشکلات DNS محلی، از mod_security، و غیره) جلوگیری از اتصال به "
|
1991 |
+
"شبکه از کار به درستی وجود دارد."
|
1992 |
+
|
1993 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:121
|
1994 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:143
|
1995 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:361
|
1996 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:417
|
1997 |
+
#, php-format
|
1998 |
+
msgid "Failed to create dir: %s"
|
1999 |
+
msgstr "خطا در ساخت پوشه: %s"
|
2000 |
+
|
2001 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:150
|
2002 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:146
|
2003 |
+
#, php-format
|
2004 |
+
msgid "Failed to copy: %s"
|
2005 |
+
msgstr "خطا در کپی: %s"
|
2006 |
+
|
2007 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:196
|
2008 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:73
|
2009 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:50
|
2010 |
+
msgid "Zip extension missing"
|
2011 |
+
msgstr "فرمت فایل های فشرده از دست رفته"
|
2012 |
+
|
2013 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:202
|
2014 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:81
|
2015 |
+
#, php-format
|
2016 |
+
msgid "Cannot open zip (Error code: %s)"
|
2017 |
+
msgstr "فایل فشرده نمی تواند باز شود ( کدخطا: %s )"
|
2018 |
+
|
2019 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:223
|
2020 |
+
#, php-format
|
2021 |
+
msgid "Cannot restore previous zip entry: %s"
|
2022 |
+
msgstr "می توانید ورود پستی قبلی را بازیابی کنید:%s را"
|
2023 |
+
|
2024 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:258
|
2025 |
+
#, php-format
|
2026 |
+
msgid "Cannot create directory: %s"
|
2027 |
+
msgstr "ناتوانی در ساخت دایرکتوری %s"
|
2028 |
+
|
2029 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:266
|
2030 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:55
|
2031 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:70
|
2032 |
+
#, php-format
|
2033 |
+
msgid "Cannot create file: %s"
|
2034 |
+
msgstr "می توانید فایل ایجاد کنید:%s را"
|
2035 |
+
|
2036 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:281
|
2037 |
+
#, php-format
|
2038 |
+
msgid "Cannot read chunk from zip entry: %s"
|
2039 |
+
msgstr "نمی توانید تکه از ورود فایل های فشرده را بخوانید:%s را"
|
2040 |
+
|
2041 |
+
#: isatis/development/includes/theme-options/extensions/backups/helpers.php:292
|
2042 |
+
#, php-format
|
2043 |
+
msgid "Cannot close file: %s"
|
2044 |
+
msgstr "می توانید فایل بسته نشد:%s را"
|
2045 |
+
|
2046 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
2047 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:76
|
2048 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:39
|
2049 |
+
msgid "Full Backup"
|
2050 |
+
msgstr "پشتیبان گیری کامل"
|
2051 |
+
|
2052 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
2053 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:85
|
2054 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:46
|
2055 |
+
msgid "Content Backup"
|
2056 |
+
msgstr "پشتیبان گیری از محتوا"
|
2057 |
+
|
2058 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:88
|
2059 |
+
msgid ""
|
2060 |
+
"Warning! \n"
|
2061 |
+
"You are about to delete a backup, it will be lost forever. \n"
|
2062 |
+
"Are you sure?"
|
2063 |
+
msgstr ""
|
2064 |
+
"هشدار!\n"
|
2065 |
+
" شما در حال حذف فایل پشتیبان هستید، این فایل برای همیشه حذف خواهد شد.\n"
|
2066 |
+
" آیا برای انجام این کار مطمئن هستید ؟"
|
2067 |
+
|
2068 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:93
|
2069 |
+
msgid "Delete"
|
2070 |
+
msgstr "حذف"
|
2071 |
+
|
2072 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:144
|
2073 |
+
msgid "No archives found"
|
2074 |
+
msgstr "هیچ فایلی یافت نشد"
|
2075 |
+
|
2076 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:153
|
2077 |
+
msgid ""
|
2078 |
+
"Warning! \n"
|
2079 |
+
"The restore will replace all of your content."
|
2080 |
+
msgstr ""
|
2081 |
+
"هشدار!\n"
|
2082 |
+
"بازگردانی محتوا جایگزین محتوای فعلی شما خواهد شد."
|
2083 |
+
|
2084 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:154
|
2085 |
+
msgid "Restore Backup"
|
2086 |
+
msgstr "بازگردانی پشتیبان"
|
2087 |
+
|
2088 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/log/view.php:9
|
2089 |
+
msgid "View Activity Log"
|
2090 |
+
msgstr "مشاهده گزارش فعالیت"
|
2091 |
+
|
2092 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/log/view.php:10
|
2093 |
+
msgid "Hide Activity Log"
|
2094 |
+
msgstr "مخفی کردن گزارش فعالیت"
|
2095 |
+
|
2096 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/log/view.php:25
|
2097 |
+
#, php-format
|
2098 |
+
msgid "%s ago"
|
2099 |
+
msgstr "%s قبل"
|
2100 |
+
|
2101 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:186
|
2102 |
+
msgid "Backup Schedule"
|
2103 |
+
msgstr "زمان بندی پشتیان گیری"
|
2104 |
+
|
2105 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:288
|
2106 |
+
msgid "Once Weekly"
|
2107 |
+
msgstr "هفته ای یکبار"
|
2108 |
+
|
2109 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:292
|
2110 |
+
msgid "Once a month"
|
2111 |
+
msgstr "در ماه"
|
2112 |
+
|
2113 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:342
|
2114 |
+
msgid "Full"
|
2115 |
+
msgstr "کامل"
|
2116 |
+
|
2117 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:343
|
2118 |
+
msgid "Content"
|
2119 |
+
msgstr "محتوا"
|
2120 |
+
|
2121 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:352
|
2122 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:21
|
2123 |
+
msgid "Monthly"
|
2124 |
+
msgstr "ماهانه"
|
2125 |
+
|
2126 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:353
|
2127 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:22
|
2128 |
+
msgid "Weekly"
|
2129 |
+
msgstr "هفتگی"
|
2130 |
+
|
2131 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:354
|
2132 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:23
|
2133 |
+
msgid "Daily"
|
2134 |
+
msgstr "روزانه"
|
2135 |
+
|
2136 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:365
|
2137 |
+
msgid "Backup Schedule Active"
|
2138 |
+
msgstr "زمان بندی های فعال"
|
2139 |
+
|
2140 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:366
|
2141 |
+
msgid "Next backup on"
|
2142 |
+
msgstr "پشتیان گیری بعدی در"
|
2143 |
+
|
2144 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:373
|
2145 |
+
msgid "No backup schedule created yet! We advise you to do it asap!"
|
2146 |
+
msgstr ""
|
2147 |
+
"هیچ برنامه ای برای پشتیبان گیری ساخته نشده است! ما به شما توصیه میکنیم همین "
|
2148 |
+
"حالا پشتیبان گیری رو شروع کنید!"
|
2149 |
+
|
2150 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:16
|
2151 |
+
msgid "Interval"
|
2152 |
+
msgstr "بازه"
|
2153 |
+
|
2154 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:25
|
2155 |
+
msgid "Select how often do you want to backup your website."
|
2156 |
+
msgstr "مشخص کنید چند وقت یکبار مایل به پشتیان گیری از وبسایت خود هستید."
|
2157 |
+
|
2158 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:32
|
2159 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:45
|
2160 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:58
|
2161 |
+
msgid "Age Limit"
|
2162 |
+
msgstr "عمر فایل پشتیبان"
|
2163 |
+
|
2164 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:33
|
2165 |
+
msgid "Age limit of backups in months"
|
2166 |
+
msgstr "بعد از چند ماه پشتیبان های قبلی حذف شوند ؟"
|
2167 |
+
|
2168 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:46
|
2169 |
+
msgid "Age limit of backups in weeks"
|
2170 |
+
msgstr "بعد از چند هفته پشتیبان های قبلی حذف شوند ؟"
|
2171 |
+
|
2172 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/schedule/settings-options.php:59
|
2173 |
+
msgid "Age limit of backups in days"
|
2174 |
+
msgstr "بعد از چند روز پشتیبان های قبلی حذف شوند ؟"
|
2175 |
+
|
2176 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:142
|
2177 |
+
msgid "undefined"
|
2178 |
+
msgstr "تعریف نشده"
|
2179 |
+
|
2180 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:282
|
2181 |
+
msgid "Task type not registered"
|
2182 |
+
msgstr "نوع وظیفه ثبت نشده است"
|
2183 |
+
|
2184 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:289
|
2185 |
+
msgid "Execution stopped (next step did not started)"
|
2186 |
+
msgstr "عملیات متوقف شد ( مرحله بعدی اجرا نخواهد شد )"
|
2187 |
+
|
2188 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:309
|
2189 |
+
msgid "The execution failed. Please check error.log"
|
2190 |
+
msgstr "عملیات با خطا مواجه شد. لطفا فایل error.log را بررسی نمایید"
|
2191 |
+
|
2192 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:379
|
2193 |
+
msgid "Invalid execution end time"
|
2194 |
+
msgstr "زمان پایان عملیات نامعتبر می باشد"
|
2195 |
+
|
2196 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:602
|
2197 |
+
msgid "Invalid execution result"
|
2198 |
+
msgstr "نتیجه عملیات نامعتبر می باشد"
|
2199 |
+
|
2200 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:721
|
2201 |
+
msgid "Invalid token"
|
2202 |
+
msgstr "کدنامعتبر"
|
2203 |
+
|
2204 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:740
|
2205 |
+
msgid "Invalid tasks hash"
|
2206 |
+
msgstr "هش وظایف نامعتبر می باشد"
|
2207 |
+
|
2208 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:38
|
2209 |
+
msgid "Database export"
|
2210 |
+
msgstr "برون ریزی پایگاه داده"
|
2211 |
+
|
2212 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:50
|
2213 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:37
|
2214 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:51
|
2215 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:114
|
2216 |
+
msgid "Destination dir not specified"
|
2217 |
+
msgstr "دایرکتوری مقصد مشخص نشده است"
|
2218 |
+
|
2219 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:71
|
2220 |
+
msgid "Database table disappeared"
|
2221 |
+
msgstr "جدول دیتابیس پیدا نشد"
|
2222 |
+
|
2223 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:90
|
2224 |
+
msgid "Cannot create file"
|
2225 |
+
msgstr "امکان ساخت فایل وجود ندارد"
|
2226 |
+
|
2227 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:96
|
2228 |
+
msgid "Cannot reopen file"
|
2229 |
+
msgstr "امکان باز کردن مجدد فایل وجود ندارد"
|
2230 |
+
|
2231 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:141
|
2232 |
+
#, php-format
|
2233 |
+
msgid "Cannot export CREATE TABLE sql for %s"
|
2234 |
+
msgstr "نمی توانید به صادرات ایجاد SQL جدول برای%s"
|
2235 |
+
|
2236 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:212
|
2237 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:268
|
2238 |
+
msgid "Cannot get next database table"
|
2239 |
+
msgstr "امکان گرفتن جدول بعدی دیتابیس وجود ندارد"
|
2240 |
+
|
2241 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:12
|
2242 |
+
msgid "Database restore"
|
2243 |
+
msgstr "بازگردانی پایگاه داده"
|
2244 |
+
|
2245 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:127
|
2246 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:37
|
2247 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:41
|
2248 |
+
msgid "Source dir not specified"
|
2249 |
+
msgstr "پوشه منبع مشخص نشده است"
|
2250 |
+
|
2251 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:145
|
2252 |
+
msgid "Database file not found"
|
2253 |
+
msgstr "فایل دیتابیس پیدا نشد"
|
2254 |
+
|
2255 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:179
|
2256 |
+
msgid ""
|
2257 |
+
"PHP class SplFileObject is required but not available. Please contact your "
|
2258 |
+
"hosting"
|
2259 |
+
msgstr ""
|
2260 |
+
"کلاس پی اچ پی SplFileObject مورد نیاز می باشد ولی در دسترس نیست. لطفا با "
|
2261 |
+
"هاستینگ خود تماس بگیرید."
|
2262 |
+
|
2263 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:196
|
2264 |
+
#, php-format
|
2265 |
+
msgid "Invalid sub task %s"
|
2266 |
+
msgstr "وظیفه جانبی %s نامعتبر می باشد"
|
2267 |
+
|
2268 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:310
|
2269 |
+
#, php-format
|
2270 |
+
msgid "Cannot drop temporary table: %s"
|
2271 |
+
msgstr "امکان حذف جدول موقت: %s وجود ندارد"
|
2272 |
+
|
2273 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:337
|
2274 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:501
|
2275 |
+
msgid "Cannot open db file"
|
2276 |
+
msgstr "خطا در باز کردن فایل پایگاه داده"
|
2277 |
+
|
2278 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:346
|
2279 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:510
|
2280 |
+
msgid "Cannot move cursor in db file"
|
2281 |
+
msgstr "امکان حرکت مکان نما در فایل دیتابیس وجود ندارد"
|
2282 |
+
|
2283 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:361
|
2284 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:722
|
2285 |
+
#, php-format
|
2286 |
+
msgid "Failed to decode line %d from db file."
|
2287 |
+
msgstr "خطا در رمزگشایی خط %d در فایل دیتابیس"
|
2288 |
+
|
2289 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:396
|
2290 |
+
#, php-format
|
2291 |
+
msgid "Cannot read line %d from db file"
|
2292 |
+
msgstr "امکان خواندن خط %d در فایل دیتابیس وجود ندارد"
|
2293 |
+
|
2294 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:405
|
2295 |
+
msgid "Required params not found"
|
2296 |
+
msgstr "پارامترهای مورد نیاز وجود ندارد"
|
2297 |
+
|
2298 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:442
|
2299 |
+
msgid "Cannot do full db restore because backup is missing some tables"
|
2300 |
+
msgstr "امکان بازگردانی کامل دیتابیس به خاطر موجود نبودن بعضی جداول وجود ندارد"
|
2301 |
+
|
2302 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:572
|
2303 |
+
#, php-format
|
2304 |
+
msgid "Imported url \"%s\" is prefix of current url"
|
2305 |
+
msgstr "URL وارد شده \"%s\" را پیشوند آدرس فعلی است"
|
2306 |
+
|
2307 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:739
|
2308 |
+
#, php-format
|
2309 |
+
msgid "Table name is more than 64 characters: %s"
|
2310 |
+
msgstr "نام جدول: %s بیش از 64 کاراکتر می باشد"
|
2311 |
+
|
2312 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:748
|
2313 |
+
#, php-format
|
2314 |
+
msgid "Failed to drop tmp table %s"
|
2315 |
+
msgstr "حذف جدول موقت %s موفقیت آمیز نبود"
|
2316 |
+
|
2317 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:807
|
2318 |
+
#, php-format
|
2319 |
+
msgid "Failed to create tmp table %s"
|
2320 |
+
msgstr "ساخت جدول موقت %s موفقیت آمیز نبود"
|
2321 |
+
|
2322 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:820
|
2323 |
+
#, php-format
|
2324 |
+
msgid "Tried to insert data in table that was not imported %s"
|
2325 |
+
msgstr "سعی کردم به وارد کردن داده ها در جدول شد که وارد نشده است%s را"
|
2326 |
+
|
2327 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1022
|
2328 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1048
|
2329 |
+
#, php-format
|
2330 |
+
msgid "Failed to insert row from line %d into table %s"
|
2331 |
+
msgstr "برای وارد کردن سطر از خط%d به جدول شکست خورده به %s"
|
2332 |
+
|
2333 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1065
|
2334 |
+
#, php-format
|
2335 |
+
msgid "Invalid json type %s in db file"
|
2336 |
+
msgstr "نامعتبر نوع JSON%s در فایل DB"
|
2337 |
+
|
2338 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1072
|
2339 |
+
msgid "Cannot read line from db file"
|
2340 |
+
msgstr "امکان خواندن خط %d در فایل دیتابیس وجود ندارد"
|
2341 |
+
|
2342 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1116
|
2343 |
+
msgid "Failed to restore options keeping step"
|
2344 |
+
msgstr "برای بازگرداندن گام گزینه های نگهداری شکست خورده"
|
2345 |
+
|
2346 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1151
|
2347 |
+
#, php-format
|
2348 |
+
msgid "Failed to keep option: %s"
|
2349 |
+
msgstr "برای نگه داشتن گزینه شکست خورده: از%s"
|
2350 |
+
|
2351 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1221
|
2352 |
+
msgid "Tables drop failed"
|
2353 |
+
msgstr "جداول رها شکست خورده"
|
2354 |
+
|
2355 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:1235
|
2356 |
+
msgid "Tables rename failed."
|
2357 |
+
msgstr "جداول تغییر نام انجام نشد."
|
2358 |
+
|
2359 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:12
|
2360 |
+
msgid "Directory Cleanup"
|
2361 |
+
msgstr "پاکسازی راهنمای"
|
2362 |
+
|
2363 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:21
|
2364 |
+
msgid "Dir not specified"
|
2365 |
+
msgstr "پوشه مشخص نشده است"
|
2366 |
+
|
2367 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:30
|
2368 |
+
msgid "Cannot remove directory"
|
2369 |
+
msgstr "می توانید دایرکتوری را حذف کنید"
|
2370 |
+
|
2371 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:37
|
2372 |
+
msgid "Cannot create directory"
|
2373 |
+
msgstr "ناتوانی در ساخت دایرکتوری \"%\""
|
2374 |
+
|
2375 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:9
|
2376 |
+
msgid "Files Export"
|
2377 |
+
msgstr "برون ریزی فایل ها"
|
2378 |
+
|
2379 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:25
|
2380 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:52
|
2381 |
+
msgid "Source dirs not specified"
|
2382 |
+
msgstr "پوشه منبع مشخص نشده است"
|
2383 |
+
|
2384 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:33
|
2385 |
+
msgid "Destination not specified"
|
2386 |
+
msgstr "دایرکتوری مقصد مشخص نشده است"
|
2387 |
+
|
2388 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:83
|
2389 |
+
#, php-format
|
2390 |
+
msgid "Source dir %s is empty"
|
2391 |
+
msgstr "منبع دیر به%s خالی است"
|
2392 |
+
|
2393 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:125
|
2394 |
+
msgid "Failed to get dir chmod"
|
2395 |
+
msgstr "برای به دست آوردن سطح دسترسی دیر شکست خورده"
|
2396 |
+
|
2397 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:132
|
2398 |
+
msgid "Failed to create destination dir"
|
2399 |
+
msgstr "خطا در ساخت پوشه مقصد"
|
2400 |
+
|
2401 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:220
|
2402 |
+
#, php-format
|
2403 |
+
msgid "Failed to restore dir listing from: %s"
|
2404 |
+
msgstr "برای بازگرداندن کنید دیر از شکست خورده: از%s"
|
2405 |
+
|
2406 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:9
|
2407 |
+
msgid "Files Restore"
|
2408 |
+
msgstr "بازیابی فایل ها"
|
2409 |
+
|
2410 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:45
|
2411 |
+
#, php-format
|
2412 |
+
msgid "Invalid source dir: %s"
|
2413 |
+
msgstr "پوشه منبع نامعتبر است : %s"
|
2414 |
+
|
2415 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:135
|
2416 |
+
msgid "No filesystem access, credentials required"
|
2417 |
+
msgstr "بدون دسترسی به فایل سیستم، اعتبار مورد نیاز"
|
2418 |
+
|
2419 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:139
|
2420 |
+
msgid "No filesystem access, invalid credentials"
|
2421 |
+
msgstr "بدون دسترسی به فایل سیستم، اعتبار نامعتبر"
|
2422 |
+
|
2423 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:145
|
2424 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:154
|
2425 |
+
msgid "Filesystem init failed"
|
2426 |
+
msgstr "Filesystem init با خطا مواجه شد"
|
2427 |
+
|
2428 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:202
|
2429 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:315
|
2430 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:339
|
2431 |
+
#, php-format
|
2432 |
+
msgid "Cannot convert Filesystem path: %s"
|
2433 |
+
msgstr "نمی توان مسیر فایل سیستم را عوض کرد: %s"
|
2434 |
+
|
2435 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:207
|
2436 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:320
|
2437 |
+
#, php-format
|
2438 |
+
msgid "Failed to list dir: %s"
|
2439 |
+
msgstr "لیست پوشه ناموفق بود: %s"
|
2440 |
+
|
2441 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:237
|
2442 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:279
|
2443 |
+
#, php-format
|
2444 |
+
msgid "Failed to remove dir: %s"
|
2445 |
+
msgstr "پوشه حذف نشد: %s"
|
2446 |
+
|
2447 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:244
|
2448 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:286
|
2449 |
+
#, php-format
|
2450 |
+
msgid "Failed to remove file: %s"
|
2451 |
+
msgstr "فایل حذف نشد: %s"
|
2452 |
+
|
2453 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:374
|
2454 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:430
|
2455 |
+
#, php-format
|
2456 |
+
msgid "Failed to copy file: %s"
|
2457 |
+
msgstr "فایل کپی نشد: %s"
|
2458 |
+
|
2459 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:9
|
2460 |
+
msgid "Image Sizes Remove"
|
2461 |
+
msgstr "حذف سایزهای تصویر"
|
2462 |
+
|
2463 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:23
|
2464 |
+
msgid "Uploads dir not specified"
|
2465 |
+
msgstr "پوشه آپلود مشخص نشده است."
|
2466 |
+
|
2467 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:9
|
2468 |
+
msgid "Image Sizes Restore"
|
2469 |
+
msgstr "بازگرداندن اندازه تصویر"
|
2470 |
+
|
2471 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:12
|
2472 |
+
#, php-format
|
2473 |
+
msgid "(%d of %d)"
|
2474 |
+
msgstr "%d از %d"
|
2475 |
+
|
2476 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:66
|
2477 |
+
msgid "Cannot get total images count"
|
2478 |
+
msgstr "تعداد کل تصاویر را نمی توان دریافت نمود"
|
2479 |
+
|
2480 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:12
|
2481 |
+
msgid "Archive Unzip"
|
2482 |
+
msgstr "باز کردن آرشیو"
|
2483 |
+
|
2484 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:15
|
2485 |
+
#, php-format
|
2486 |
+
msgid "(%d files extracted)"
|
2487 |
+
msgstr "( %d فایل اکسترکت شده )"
|
2488 |
+
|
2489 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:29
|
2490 |
+
msgid "Zip file not specified"
|
2491 |
+
msgstr "فایل زیپ مشخص نشده است"
|
2492 |
+
|
2493 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:47
|
2494 |
+
msgid "Destination dir is not empty"
|
2495 |
+
msgstr "پوشه مقصد خالی نیست"
|
2496 |
+
|
2497 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:12
|
2498 |
+
msgid "Archive Zip"
|
2499 |
+
msgstr "در حال فشرده سازی ..."
|
2500 |
+
|
2501 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:45
|
2502 |
+
msgid "Source dir does not exist"
|
2503 |
+
msgstr "پوشه منبع وجود ندارد"
|
2504 |
+
|
2505 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:127
|
2506 |
+
msgid "Cannot close the zip file"
|
2507 |
+
msgstr "فایل zip را نمی توان بست"
|
2508 |
+
|
2509 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:146
|
2510 |
+
msgid "Cannot move zip in destination dir"
|
2511 |
+
msgstr "فایل فشرده نمی تواند به مقصد انتقال داده شود"
|
2512 |
+
|
2513 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:119
|
2514 |
+
msgid "Invalid destination dir"
|
2515 |
+
msgstr "پوشه مقصد نامعتبر می باشد"
|
2516 |
+
|
2517 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:132
|
2518 |
+
#, php-format
|
2519 |
+
msgid "Invalid type: %s"
|
2520 |
+
msgstr "نوع نامعتبر: %s"
|
2521 |
+
|
2522 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:141
|
2523 |
+
#, php-format
|
2524 |
+
msgid "Args not specified for type: %s"
|
2525 |
+
msgstr "آرگومان ها برای نوع مشخص نشده است: %s"
|
2526 |
+
|
2527 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:9
|
2528 |
+
msgid "Local Download"
|
2529 |
+
msgstr "دانلود محلی"
|
2530 |
+
|
2531 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:24
|
2532 |
+
msgid "Source not specified"
|
2533 |
+
msgstr "منبع مشخص نشده است"
|
2534 |
+
|
2535 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:29
|
2536 |
+
msgid "Invalid source"
|
2537 |
+
msgstr "منبع نامعتبر"
|
2538 |
+
|
2539 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:38
|
2540 |
+
msgid "Invalid source type"
|
2541 |
+
msgstr "نوع منبع نامعتبر"
|
2542 |
+
|
2543 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:59
|
2544 |
+
#, php-format
|
2545 |
+
msgid "Cannot open zip: %s"
|
2546 |
+
msgstr "فایل فشرده نمی تواند باز شود: %s"
|
2547 |
+
|
2548 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:70
|
2549 |
+
msgid "Unhandled type"
|
2550 |
+
msgstr "نوع تعریف نشده"
|
2551 |
+
|
2552 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:13
|
2553 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:21
|
2554 |
+
msgid "Downloading"
|
2555 |
+
msgstr "در حال دانلود ..."
|
2556 |
+
|
2557 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:17
|
2558 |
+
#, php-format
|
2559 |
+
msgid "Downloading (%s of %s)"
|
2560 |
+
msgstr "در حال دانلود ( %s از %s )"
|
2561 |
+
|
2562 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:25
|
2563 |
+
#, php-format
|
2564 |
+
msgid "Archive Unzip (%d files extracted)"
|
2565 |
+
msgstr "بازکردن فایل فشرده ( %d فایل اکسترکت شده )"
|
2566 |
+
|
2567 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:27
|
2568 |
+
msgid "Download finished. Doing unzip"
|
2569 |
+
msgstr "دانلود به پایان رسید. در حال بازکردن فایل"
|
2570 |
+
|
2571 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:30
|
2572 |
+
msgid "Downloading (invalid state)"
|
2573 |
+
msgstr "دانلود (حالت نامعتبر)"
|
2574 |
+
|
2575 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:56
|
2576 |
+
msgid "Url not specified"
|
2577 |
+
msgstr "آدرس مشخص نشده است."
|
2578 |
+
|
2579 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:61
|
2580 |
+
msgid "Invalid url"
|
2581 |
+
msgstr "لینک نامعتبر"
|
2582 |
+
|
2583 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:68
|
2584 |
+
msgid "File id not specified"
|
2585 |
+
msgstr "شناسه فایل مشخص نشده است"
|
2586 |
+
|
2587 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:73
|
2588 |
+
msgid "Invalid file id"
|
2589 |
+
msgstr "شناسه فایل نامعتبر است"
|
2590 |
+
|
2591 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:104
|
2592 |
+
msgid "Partial download invalid state"
|
2593 |
+
msgstr "بارگیری جزئی وضعیت غیرمعتبر"
|
2594 |
+
|
2595 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:147
|
2596 |
+
#, php-format
|
2597 |
+
msgid "Request failed. Error code: %d"
|
2598 |
+
msgstr "درخواست نشد کد. خطا: %d"
|
2599 |
+
|
2600 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:158
|
2601 |
+
msgid "Invalid byte position"
|
2602 |
+
msgstr "موقعیت بایت نامعتبر است"
|
2603 |
+
|
2604 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:163
|
2605 |
+
msgid "Empty response body"
|
2606 |
+
msgstr "پاسخی دریافت نشد"
|
2607 |
+
|
2608 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:183
|
2609 |
+
msgid "File ended without content"
|
2610 |
+
msgstr "فایل بدون محتوا به پایان رسید"
|
2611 |
+
|
2612 |
+
#: isatis/development/includes/theme-options/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:216
|
2613 |
+
msgid "Failed to write data to file"
|
2614 |
+
msgstr "نوشتن داده به فایل نتواند انجام شود"
|
2615 |
+
|
2616 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:34
|
2617 |
+
msgid "Here you can create a backup schedule for your website."
|
2618 |
+
msgstr ""
|
2619 |
+
"در این قسمت می توانید برای وبسایت خود پشتیبانی زمان بندی شده خود را ایجاد "
|
2620 |
+
"کنید ."
|
2621 |
+
|
2622 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:40
|
2623 |
+
msgid "will save your themes, plugins, uploads and full database."
|
2624 |
+
msgstr ""
|
2625 |
+
"قالب ها، پلاگین ها، فایل های آپلود شده و پایگاه داده سایت شما را ذخیره میکند."
|
2626 |
+
|
2627 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:47
|
2628 |
+
msgid ""
|
2629 |
+
"will save your uploads and database without private data like users, admin "
|
2630 |
+
"email, etc."
|
2631 |
+
msgstr ""
|
2632 |
+
"فایل های آپلود شده و پایگاه داده سایت شما را ذخیره میکنید ولی داده های خصوصی "
|
2633 |
+
"مانند کاربران، ایمیل مدیریت، و غیره را ذخیره نمیکنید."
|
2634 |
+
|
2635 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:57
|
2636 |
+
msgid "Edit Backup Schedule"
|
2637 |
+
msgstr "ویرایش زمان بندی پشتیبان گیری"
|
2638 |
+
|
2639 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:61
|
2640 |
+
msgid "Create Full Backup Now"
|
2641 |
+
msgstr "ایجاد پشتیبان گیری کامل"
|
2642 |
+
|
2643 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:65
|
2644 |
+
msgid "Create Content Backup Now"
|
2645 |
+
msgstr "ایجاد پشتیبان گیری از محتوا"
|
2646 |
+
|
2647 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/page.php:70
|
2648 |
+
msgid "Archives"
|
2649 |
+
msgstr "آرشیوها"
|
2650 |
+
|
2651 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/tasks-status.php:29
|
2652 |
+
msgid "Unknown task"
|
2653 |
+
msgstr "وظیفه ناشناخته"
|
2654 |
+
|
2655 |
+
#: isatis/development/includes/theme-options/extensions/backups/views/tasks-status.php:33
|
2656 |
+
msgid "Nothing running in background"
|
2657 |
+
msgstr "هیچ چیزی در پس زمینه اجرا نمی شود"
|
2658 |
+
|
2659 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:21
|
2660 |
+
msgid "آیکون"
|
2661 |
+
msgstr ""
|
2662 |
+
|
2663 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:22
|
2664 |
+
msgid "آیکون مورد نظر خود را انتخاب کنید."
|
2665 |
+
msgstr ""
|
2666 |
+
|
2667 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:31
|
2668 |
+
msgid ""
|
2669 |
+
"تصویر دلخواه خود را بارگذاری کنید.<br>این تصویر در برخی از مکان های سایت "
|
2670 |
+
"نمایش داده می شود."
|
2671 |
+
msgstr ""
|
2672 |
+
|
2673 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:38
|
2674 |
+
msgid "رنگ دسته"
|
2675 |
+
msgstr ""
|
2676 |
+
|
2677 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:39
|
2678 |
+
msgid "رنگ دسته بندی خود را انتخاب نمائید."
|
2679 |
+
msgstr ""
|
2680 |
+
|
2681 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:45
|
2682 |
+
msgid "آرشیو"
|
2683 |
+
msgstr "بایگانی"
|
2684 |
+
|
2685 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:46
|
2686 |
+
msgid "نوع نمایش آرشیو را مشخص کنید."
|
2687 |
+
msgstr ""
|
2688 |
+
|
2689 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:107
|
2690 |
+
msgid "صفحه آگهی"
|
2691 |
+
msgstr ""
|
2692 |
+
|
2693 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:108
|
2694 |
+
msgid "نوع نمایش صفحه آگهی را مشخص کنید."
|
2695 |
+
msgstr ""
|
2696 |
+
|
2697 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:159
|
2698 |
+
msgid "نقشه"
|
2699 |
+
msgstr ""
|
2700 |
+
|
2701 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:160
|
2702 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:178
|
2703 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:196
|
2704 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:214
|
2705 |
+
msgid "تنظیمات دلخواه خود را برای این دسته و زیر دسته های آن انجام دهید."
|
2706 |
+
msgstr ""
|
2707 |
+
|
2708 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:162
|
2709 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:180
|
2710 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:198
|
2711 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:216
|
2712 |
+
msgid ""
|
2713 |
+
"توجه داشته باشید که این گزینه اولویت بالاتری نسبت به تنظیمات صفحه آگهی داشته "
|
2714 |
+
"و بر روی آن تاثیر می گذارد.<br>\n"
|
2715 |
+
"\t\t\t\tاگر از تنظیمات پیشفرض استفاده کنید ، تنظیمات صفحه آگهی شما لحاظ می "
|
2716 |
+
"گردند."
|
2717 |
+
msgstr ""
|
2718 |
+
|
2719 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:167
|
2720 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:185
|
2721 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:203
|
2722 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:221
|
2723 |
+
msgid "تنظیمات پیشفرض"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:168
|
2727 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:186
|
2728 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:204
|
2729 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:222
|
2730 |
+
msgid "نمایش داده شود"
|
2731 |
+
msgstr ""
|
2732 |
+
|
2733 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:169
|
2734 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:187
|
2735 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:205
|
2736 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:223
|
2737 |
+
msgid "نمایش داده نشود"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:177
|
2741 |
+
msgid "آگهی های کاربر"
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:195
|
2745 |
+
msgid "آگهی های مشابه"
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: isatis/development/includes/theme-options/theme/options/taxonomies/ad_cat.php:213
|
2749 |
+
msgid "نظرات"
|
2750 |
+
msgstr ""
|
2751 |
+
"قابلیت های اساسی ووکامرس را گسترش می دهد و یک جدول هیستوگرام را برای دیدگاه "
|
2752 |
+
"های محصولات خود اضافه می کند، همانطور که در بیشتر وب سایت های مرسوم ووکامرس "
|
2753 |
+
"مشاهده می کنید."
|
2754 |
+
|
2755 |
+
#~ msgid "Please register builder types on 'fw_option_types_init' action"
|
2756 |
+
#~ msgstr "لطفا نوع سازنده ثبت نام در عمل 'fw_option_types_init،"
|
2757 |
+
|
2758 |
+
#~ msgid ""
|
2759 |
+
#~ "Please register builder item-types on 'fw_option_type_builder:{builder-"
|
2760 |
+
#~ "type}:register_items' action"
|
2761 |
+
#~ msgstr ""
|
2762 |
+
#~ "لطفا سازنده مورد انواع ثبت نام در: fw_option_type_builder: {سازنده نوع}: "
|
2763 |
+
#~ "register_items عمل"
|
2764 |
+
|
2765 |
+
#~ msgid "Full Screen"
|
2766 |
+
#~ msgstr "تمام صفحه"
|
2767 |
+
|
2768 |
+
#~ msgid "Exit Full Screen"
|
2769 |
+
#~ msgstr "خروج از تمام صفحه"
|
2770 |
+
|
2771 |
+
#~ msgid "Undo"
|
2772 |
+
#~ msgstr "بازگشت "
|
2773 |
+
|
2774 |
+
#~ msgid "Redo"
|
2775 |
+
#~ msgstr " انجام مجدد"
|
2776 |
+
|
2777 |
+
#~ msgid "Preview Changes"
|
2778 |
+
#~ msgstr "پیش نمایش تغییرات"
|
2779 |
+
|
2780 |
+
#~ msgid "Update"
|
2781 |
+
#~ msgstr "بروز رسانی"
|
2782 |
+
|
2783 |
+
#~ msgid "Templates"
|
2784 |
+
#~ msgstr "قالبها"
|
2785 |
+
|
2786 |
+
#~ msgid "Full Templates"
|
2787 |
+
#~ msgstr "تمام الگوها"
|
2788 |
+
|
2789 |
+
#~ msgid "No Templates Saved"
|
2790 |
+
#~ msgstr "هیچ الگویی ذخیره نشده است"
|
2791 |
+
|
2792 |
+
#~ msgid "Load Template"
|
2793 |
+
#~ msgstr "بارگذاری قالب"
|
2794 |
+
|
2795 |
+
#~ msgid "Save Full Template"
|
2796 |
+
#~ msgstr "ذخیر کامل الگو"
|
2797 |
+
|
2798 |
+
#~ msgid "Template Name"
|
2799 |
+
#~ msgstr "نام الگو"
|
2800 |
+
|
2801 |
+
#~ msgid "Save Builder Template"
|
2802 |
+
#~ msgstr "ذخیر الگو ساز"
|
2803 |
+
|
2804 |
+
#~ msgid "No Title"
|
2805 |
+
#~ msgstr "بدون عنوان"
|
2806 |
+
|
2807 |
+
#~ msgid "Unable to process the form"
|
2808 |
+
#~ msgstr "قابلیت پردازش این فرم وجود ندارد"
|
2809 |
+
|
2810 |
+
#~ msgid "Invalid destination email (please contact the site administrator)"
|
2811 |
+
#~ msgstr "ایمیل مقصد نامعتبر (لطفا با مدیر سایت)"
|
2812 |
+
|
2813 |
+
#~ msgid "Message sent!"
|
2814 |
+
#~ msgstr "پیام فرستاده شد!"
|
2815 |
+
|
2816 |
+
#~ msgid "Oops something went wrong."
|
2817 |
+
#~ msgstr "اوه! متاسفانه اشتباهی رخ داد."
|
2818 |
+
|
2819 |
+
#~ msgid "Please configure the {mailer_link} extension."
|
2820 |
+
#~ msgstr "لطفا از {} mailer_link پسوند پیکربندی کنید."
|
2821 |
+
|
2822 |
+
#~ msgid "Contact Forms"
|
2823 |
+
#~ msgstr "فرم تماس"
|
2824 |
+
|
2825 |
+
#~ msgid "Contact Form"
|
2826 |
+
#~ msgstr "فرم تماس"
|
2827 |
+
|
2828 |
+
#~ msgid "Configure Mailer"
|
2829 |
+
#~ msgstr "پیکربندی میلر"
|
2830 |
+
|
2831 |
+
#~ msgid "Duplicate"
|
2832 |
+
#~ msgstr "تکثیر"
|
2833 |
+
|
2834 |
+
#~ msgid "Contact form"
|
2835 |
+
#~ msgstr "فرم تماس با ما"
|
2836 |
+
|
2837 |
+
#~ msgid "Build contact forms"
|
2838 |
+
#~ msgstr "ساخت فرم تماس با"
|
2839 |
+
|
2840 |
+
#~ msgid "Content Elements"
|
2841 |
+
#~ msgstr "عناصر محتوا"
|
2842 |
+
|
2843 |
+
#~ msgid "Add a Contact Form"
|
2844 |
+
#~ msgstr "اضافه کردن فرم تماس"
|
2845 |
+
|
2846 |
+
#~ msgid "Form Fields"
|
2847 |
+
#~ msgstr "فیلد های فرم"
|
2848 |
+
|
2849 |
+
#~ msgid "Options"
|
2850 |
+
#~ msgstr "تنظیمات"
|
2851 |
+
|
2852 |
+
#~ msgid "Email To"
|
2853 |
+
#~ msgstr "ایمیل به"
|
2854 |
+
|
2855 |
+
#~ msgid "We recommend you to use an email that you verify often"
|
2856 |
+
#~ msgstr "ما به شما توصیه می کنیم برای بررسی یک ایمیل وارد کنید"
|
2857 |
+
|
2858 |
+
#~ msgid "The form will be sent to this email address."
|
2859 |
+
#~ msgstr "اطلاعات فرم به این ایمیل ارسال خواهد شد."
|
2860 |
+
|
2861 |
+
#~ msgid "Subject Message"
|
2862 |
+
#~ msgstr "موضوع پیام"
|
2863 |
+
|
2864 |
+
#~ msgid "This text will be used as subject message for the email"
|
2865 |
+
#~ msgstr "این متن به عنوان موضوع ایمیل استفاده خواهد شد"
|
2866 |
+
|
2867 |
+
#~ msgid "Submit Button"
|
2868 |
+
#~ msgstr "دکمه ارسال"
|
2869 |
+
|
2870 |
+
#~ msgid "This text will appear in submit button"
|
2871 |
+
#~ msgstr "این متن در دکمه ثبت نمایش داده خواهد شد."
|
2872 |
+
|
2873 |
+
#~ msgid "Send"
|
2874 |
+
#~ msgstr "ارسال"
|
2875 |
+
|
2876 |
+
#~ msgid "Success Message"
|
2877 |
+
#~ msgstr "پیام موفقیت"
|
2878 |
+
|
2879 |
+
#~ msgid "This text will be displayed when the form will successfully send"
|
2880 |
+
#~ msgstr ""
|
2881 |
+
#~ "زمانی که اطلاعات فرم با موفقیت ارسال شوند این پیغام نمایش داده خواهد شد."
|
2882 |
+
|
2883 |
+
#~ msgid "Failure Message"
|
2884 |
+
#~ msgstr "خطا در ارسال پیام"
|
2885 |
+
|
2886 |
+
#~ msgid "This text will be displayed when the form will fail to be sent"
|
2887 |
+
#~ msgstr ""
|
2888 |
+
#~ "زمانی که ارسال اطلاعات فرم با خطا روبرو شود این پیغام نمایش داده خواهد شد."
|
2889 |
+
|
2890 |
+
#~ msgid "Add a Multiple Choices field"
|
2891 |
+
#~ msgstr "اضافه کردن یک میدان چند گزینه ای"
|
2892 |
+
|
2893 |
+
#~ msgid "Multiple Choice"
|
2894 |
+
#~ msgstr "چندگزینه ای"
|
2895 |
+
|
2896 |
+
#~ msgid "Label"
|
2897 |
+
#~ msgstr "برچسب"
|
2898 |
+
|
2899 |
+
#~ msgid "Toggle mandatory field"
|
2900 |
+
#~ msgstr "تغییر وضعیت اجباری بودن فیلد"
|
2901 |
+
|
2902 |
+
#~ msgid "Edit Label"
|
2903 |
+
#~ msgstr "ویرایش برچسب"
|
2904 |
+
|
2905 |
+
#~ msgid "{x} More"
|
2906 |
+
#~ msgstr "{X} بیشتر"
|
2907 |
+
|
2908 |
+
#~ msgid "Close"
|
2909 |
+
#~ msgstr "بستن"
|
2910 |
+
|
2911 |
+
#~ msgid "Enter field label (it will be displayed on the web site)"
|
2912 |
+
#~ msgstr "نام فیلد را وارد کنید ( این نام در فرم تماس قابل مشاهده خواهد بود )"
|
2913 |
+
|
2914 |
+
#~ msgid "Mandatory Field"
|
2915 |
+
#~ msgstr "فیلد اجباری"
|
2916 |
+
|
2917 |
+
#~ msgid "Make this field mandatory?"
|
2918 |
+
#~ msgstr "این فیلد اجباری است؟"
|
2919 |
+
|
2920 |
+
#~ msgid "Choices"
|
2921 |
+
#~ msgstr "انتخاب"
|
2922 |
+
|
2923 |
+
#~ msgid "Add choice"
|
2924 |
+
#~ msgstr "افزودن گزینه"
|
2925 |
+
|
2926 |
+
#~ msgid "Randomize"
|
2927 |
+
#~ msgstr "تصادفی کردن"
|
2928 |
+
|
2929 |
+
#~ msgid "Do you want choices to be displayed in random order?"
|
2930 |
+
#~ msgstr "آیا شما می خواهید گزینه ها به صورت تصادفی نمایش داده می شود؟"
|
2931 |
+
|
2932 |
+
#~ msgid "Field Layout"
|
2933 |
+
#~ msgstr "چیدمان فیلد"
|
2934 |
+
|
2935 |
+
#~ msgid "Select choice display layout"
|
2936 |
+
#~ msgstr "طرح بندی نمایش را انتخاب کنید."
|
2937 |
+
|
2938 |
+
#~ msgid "One column"
|
2939 |
+
#~ msgstr "یک ستون"
|
2940 |
+
|
2941 |
+
#~ msgid "Two columns"
|
2942 |
+
#~ msgstr "دو ستون"
|
2943 |
+
|
2944 |
+
#~ msgid "Three columns"
|
2945 |
+
#~ msgstr "سه ستون"
|
2946 |
+
|
2947 |
+
#~ msgid "Side by side"
|
2948 |
+
#~ msgstr "پهلو به پهلو"
|
2949 |
+
|
2950 |
+
#~ msgid "Instructions for Users"
|
2951 |
+
#~ msgstr "راهنمای کاربر"
|
2952 |
+
|
2953 |
+
#~ msgid "The users will see these instructions in the tooltip near the field"
|
2954 |
+
#~ msgstr ""
|
2955 |
+
#~ "در صورتیکه تمایل دارید برای گزینه ها یک راهنما قرار دهید این گزینه را "
|
2956 |
+
#~ "تکمیل کنید."
|
2957 |
+
|
2958 |
+
#~ msgid "The {label} field is required"
|
2959 |
+
#~ msgstr "از {} برچسب زمینه مورد نیاز است"
|
2960 |
+
|
2961 |
+
#~ msgid "{label}: Submitted data contains not existing choices"
|
2962 |
+
#~ msgstr "{} برچسب: ارسال داده ها شامل انتخاب موجود نیست"
|
2963 |
+
|
2964 |
+
#~ msgid "Add an Email field"
|
2965 |
+
#~ msgstr "اضافه کردن یک میدان ایمیل"
|
2966 |
+
|
2967 |
+
#~ msgid "Email"
|
2968 |
+
#~ msgstr "پست الکترونیک"
|
2969 |
+
|
2970 |
+
#~ msgid "Placeholder"
|
2971 |
+
#~ msgstr "راهنمای فیلد"
|
2972 |
+
|
2973 |
+
#~ msgid "This text will be used as field placeholder"
|
2974 |
+
#~ msgstr "این متن بعنوان راهنما یا توضیحات بیشتر داخل فیلد قرار می گیرد"
|
2975 |
+
|
2976 |
+
#~ msgid "The {label} field must contain a valid email"
|
2977 |
+
#~ msgstr "از {} درست برچسب باید شامل یک ایمیل معتبر"
|
2978 |
+
|
2979 |
+
#~ msgid "Edit Title"
|
2980 |
+
#~ msgstr "ویرایش عنوان"
|
2981 |
+
|
2982 |
+
#~ msgid "Edit Subtitle"
|
2983 |
+
#~ msgstr "زیر نویس"
|
2984 |
+
|
2985 |
+
#~ msgid "Title"
|
2986 |
+
#~ msgstr "عنوان"
|
2987 |
+
|
2988 |
+
#~ msgid "The title will be displayed on contact form header"
|
2989 |
+
#~ msgstr "عنوان خواهد شد در تماس با هدر فرم نمایش داده"
|
2990 |
+
|
2991 |
+
#~ msgid "Subtitle"
|
2992 |
+
#~ msgstr "عنوان دوم"
|
2993 |
+
|
2994 |
+
#~ msgid "The form header subtitle text"
|
2995 |
+
#~ msgstr "متن فرم هدر زیرنویس"
|
2996 |
+
|
2997 |
+
#~ msgid "Add a Number field"
|
2998 |
+
#~ msgstr "اضافه کردن فیلد شماره"
|
2999 |
+
|
3000 |
+
#~ msgid "Number"
|
3001 |
+
#~ msgstr "تعداد"
|
3002 |
+
|
3003 |
+
#~ msgid "Default Value"
|
3004 |
+
#~ msgstr "مقدار پیشفرض"
|
3005 |
+
|
3006 |
+
#~ msgid "This text will be used as field default value"
|
3007 |
+
#~ msgstr "این متن بعنوان مقدار پیشفرض استفاده خواهد شد"
|
3008 |
+
|
3009 |
+
#~ msgid "Restrictions"
|
3010 |
+
#~ msgstr "محدودیت ها"
|
3011 |
+
|
3012 |
+
#~ msgid "Set digits or values restrictions of this field"
|
3013 |
+
#~ msgstr "رقم تنظیم و یا ارزش محدودیت در این زمینه"
|
3014 |
+
|
3015 |
+
#~ msgid "Digits"
|
3016 |
+
#~ msgstr "رقم"
|
3017 |
+
|
3018 |
+
#~ msgid "Value"
|
3019 |
+
#~ msgstr "مقدار پیشفرض"
|
3020 |
+
|
3021 |
+
#~ msgid "Min"
|
3022 |
+
#~ msgstr "کم"
|
3023 |
+
|
3024 |
+
#~ msgid "Minim value"
|
3025 |
+
#~ msgstr "مقدار مینیمم"
|
3026 |
+
|
3027 |
+
#~ msgid "Max"
|
3028 |
+
#~ msgstr "زیاد"
|
3029 |
+
|
3030 |
+
#~ msgid "Maxim value"
|
3031 |
+
#~ msgstr "مفدار ماکسیمم"
|
3032 |
+
|
3033 |
+
#~ msgid "The {label} field must be a valid number"
|
3034 |
+
#~ msgstr "از {} درست برچسب باید یک شماره تلفن معتبر باشد"
|
3035 |
+
|
3036 |
+
#, php-format
|
3037 |
+
#~ msgid "The {label} field must have minimum %d digit"
|
3038 |
+
#~ msgstr "از {} درست برچسب باید حداقل%d رقمی"
|
3039 |
+
|
3040 |
+
#, php-format
|
3041 |
+
#~ msgid "The {label} field must have minimum %d digits"
|
3042 |
+
#~ msgstr " {label} باید حداقل %d رقم باشد"
|
3043 |
+
|
3044 |
+
#, php-format
|
3045 |
+
#~ msgid "The {label} field must have maximum %d digit"
|
3046 |
+
#~ msgstr "از {} درست برچسب باید حداکثر%d رقمی"
|
3047 |
+
|
3048 |
+
#, php-format
|
3049 |
+
#~ msgid "The {label} field must have maximum %d digits"
|
3050 |
+
#~ msgstr " {label} باید حداکثر %d رقم باشد"
|
3051 |
+
|
3052 |
+
#, php-format
|
3053 |
+
#~ msgid "The {label} field minimum value must be %s"
|
3054 |
+
#~ msgstr "از {} برچسب ارزش حداقل زمینه باید به%s باشد"
|
3055 |
+
|
3056 |
+
#, php-format
|
3057 |
+
#~ msgid "The {label} field maximum value must be %s"
|
3058 |
+
#~ msgstr "از {} درست برچسب مقدار حداکثر باید از%s باشد"
|
3059 |
+
|
3060 |
+
#~ msgid "Add a Single Choice field"
|
3061 |
+
#~ msgstr "اضافه کردن یک فیلد انتخاب"
|
3062 |
+
|
3063 |
+
#~ msgid "Single Choice"
|
3064 |
+
#~ msgstr "تک انتخاب"
|
3065 |
+
|
3066 |
+
#~ msgid "Randomize?"
|
3067 |
+
#~ msgstr "تصادفی کردن"
|
3068 |
+
|
3069 |
+
#~ msgid "{label}: Submitted data contains not existing choice"
|
3070 |
+
#~ msgstr "{} برچسب: ارسال داده ها شامل انتخاب موجود نیست"
|
3071 |
+
|
3072 |
+
#~ msgid "Add a Recaptcha field"
|
3073 |
+
#~ msgstr "اضافه کردن فیلد از reCAPTCHA"
|
3074 |
+
|
3075 |
+
#~ msgid "Recaptcha"
|
3076 |
+
#~ msgstr "کد امنیتی مجدد"
|
3077 |
+
|
3078 |
+
#~ msgid "Set site key"
|
3079 |
+
#~ msgstr "کلید سایت"
|
3080 |
+
|
3081 |
+
#~ msgid "Set secret key"
|
3082 |
+
#~ msgstr "کلید Secret"
|
3083 |
+
|
3084 |
+
#~ msgid "Security Code"
|
3085 |
+
#~ msgstr "کد امنیتی"
|
3086 |
+
|
3087 |
+
#~ msgid "Could not validate the form"
|
3088 |
+
#~ msgstr "می تواند به صورت اعتبار نیست"
|
3089 |
+
|
3090 |
+
#~ msgid "Please fill the recaptcha"
|
3091 |
+
#~ msgstr "لطفا reCAPTCHA را پر کنید"
|
3092 |
+
|
3093 |
+
#~ msgid "Site key"
|
3094 |
+
#~ msgstr "کلید سایت"
|
3095 |
+
|
3096 |
+
#~ msgid "Your website key. More on how to configure ReCaptcha"
|
3097 |
+
#~ msgstr "کلیدی وب سایت خود را. بیشتر در مورد نحوه پیکربندی reCAPTCHA را"
|
3098 |
+
|
3099 |
+
#~ msgid "Secret key"
|
3100 |
+
#~ msgstr "کلید محرمانه"
|
3101 |
+
|
3102 |
+
#~ msgid "Your secret key. More on how to configure ReCaptcha"
|
3103 |
+
#~ msgstr "کلید های مخفی خود را. بیشتر در مورد نحوه پیکربندی reCAPTCHA را"
|
3104 |
+
|
3105 |
+
#~ msgid "Add a Dropdown"
|
3106 |
+
#~ msgstr "اضافه کردن یک منوی کرکره ای"
|
3107 |
+
|
3108 |
+
#~ msgid "Dropdown"
|
3109 |
+
#~ msgstr "کشویی"
|
3110 |
+
|
3111 |
+
#~ msgid "Add a Single Line Text"
|
3112 |
+
#~ msgstr "اضافه کردن متن خط"
|
3113 |
+
|
3114 |
+
#~ msgid "Single Line Text"
|
3115 |
+
#~ msgstr "متن تک خطی"
|
3116 |
+
|
3117 |
+
#~ msgid "Set characters or words restrictions for this field"
|
3118 |
+
#~ msgstr "محدودیت کلمات یا حروف را برای این فیلد مشخص کنید"
|
3119 |
+
|
3120 |
+
#~ msgid "Characters"
|
3121 |
+
#~ msgstr "حرف"
|
3122 |
+
|
3123 |
+
#~ msgid "Words"
|
3124 |
+
#~ msgstr "کلمات"
|
3125 |
+
|
3126 |
+
#, php-format
|
3127 |
+
#~ msgid "The {label} field must contain minimum %d character"
|
3128 |
+
#~ msgstr "از {} درست برچسب باید شامل حداقل کاراکتر%d"
|
3129 |
+
|
3130 |
+
#, php-format
|
3131 |
+
#~ msgid "The {label} field must contain minimum %d characters"
|
3132 |
+
#~ msgstr "از {} درست برچسب باید شامل حداقل کاراکترهای%d"
|
3133 |
+
|
3134 |
+
#, php-format
|
3135 |
+
#~ msgid "The {label} field must contain maximum %d character"
|
3136 |
+
#~ msgstr "از {} درست برچسب باید شامل حداکثر کاراکتر%d"
|
3137 |
+
|
3138 |
+
#, php-format
|
3139 |
+
#~ msgid "The {label} field must contain maximum %d characters"
|
3140 |
+
#~ msgstr "از {} درست برچسب باید شامل حداکثر کاراکتر%d"
|
3141 |
+
|
3142 |
+
#, php-format
|
3143 |
+
#~ msgid "The {label} field must contain minimum %d word"
|
3144 |
+
#~ msgstr "از {} درست برچسب باید شامل حداقل%d کلمه"
|
3145 |
+
|
3146 |
+
#, php-format
|
3147 |
+
#~ msgid "The {label} field must contain minimum %d words"
|
3148 |
+
#~ msgstr "از {} درست برچسب باید شامل حداقل کلمات%d"
|
3149 |
+
|
3150 |
+
#, php-format
|
3151 |
+
#~ msgid "The {label} field must contain maximum %d word"
|
3152 |
+
#~ msgstr "از {} درست برچسب باید شامل حداکثر%d کلمه"
|
3153 |
+
|
3154 |
+
#, php-format
|
3155 |
+
#~ msgid "The {label} field must contain maximum %d words"
|
3156 |
+
#~ msgstr "از {} درست برچسب باید شامل حداکثر کلمات%d"
|
3157 |
+
|
3158 |
+
#~ msgid "Add a Paragraph Text"
|
3159 |
+
#~ msgstr "اضافه کردن یک متن پاراگراف"
|
3160 |
+
|
3161 |
+
#~ msgid "Paragraph Text"
|
3162 |
+
#~ msgstr "متن"
|
3163 |
+
|
3164 |
+
#~ msgid "Add a Website field"
|
3165 |
+
#~ msgstr "اضافه کردن فیلد وب سایت"
|
3166 |
+
|
3167 |
+
#~ msgid "Website"
|
3168 |
+
#~ msgstr "وب سایت"
|
3169 |
+
|
3170 |
+
#~ msgid "The {label} field must be a valid website name"
|
3171 |
+
#~ msgstr "از {} درست برچسب باید یک نام وب سایت معتبر باشد"
|
3172 |
+
|
3173 |
+
#~ msgid "Note that the type can't be changed later."
|
3174 |
+
#~ msgstr "توجه داشته باشید که نوع نمی تواند بعد تغییر کند."
|
3175 |
+
|
3176 |
+
#~ msgid ""
|
3177 |
+
#~ "You will need to create a new form in order to have a different form type."
|
3178 |
+
#~ msgstr "شما نیاز به ایجاد یک فرم جدید به منظور یک نوع فرم متفاوت است."
|
3179 |
+
|
3180 |
+
#~ msgid "Delete Permanently"
|
3181 |
+
#~ msgstr "پاک کردن برای همیشه"
|
3182 |
+
|
3183 |
+
#~ msgid "Move to Trash"
|
3184 |
+
#~ msgstr "انداختن در زبالهدان"
|
3185 |
+
|
3186 |
+
#~ msgid "Publish"
|
3187 |
+
#~ msgstr "انتشار"
|
3188 |
+
|
3189 |
+
#~ msgid "Create"
|
3190 |
+
#~ msgstr "ایجاد"
|
3191 |
+
|
3192 |
+
#, php-format
|
3193 |
+
#~ msgid "No Page Builder tab specified for shortcode: %s"
|
3194 |
+
#~ msgstr "بدون تب صفحه ساز مشخص شده برای کوتاه: از%s"
|
3195 |
+
|
3196 |
+
#~ msgid ""
|
3197 |
+
#~ "There must not be more than one page Editor integrated with the wp post "
|
3198 |
+
#~ "editor per page"
|
3199 |
+
#~ msgstr ""
|
3200 |
+
#~ "نباید وجود داشته باشد بیش از یک صفحه ویرایشگر یکپارچه با ویرایشگر WP پست "
|
3201 |
+
#~ "در هر صفحه"
|
3202 |
+
|
3203 |
+
#~ msgid "Default Editor"
|
3204 |
+
#~ msgstr "ویرایشگر پیش فرض"
|
3205 |
+
|
3206 |
+
#~ msgid "Hide / Show"
|
3207 |
+
#~ msgstr "نمایش / عدم نمایش"
|
3208 |
+
|
3209 |
+
#~ msgid "Display Controls"
|
3210 |
+
#~ msgstr "کنترل ها"
|
3211 |
+
|
3212 |
+
#, fuzzy
|
3213 |
+
#~ msgid " All"
|
3214 |
+
#~ msgstr " تمام"
|
3215 |
+
|
3216 |
+
#~ msgid "Layout Elements"
|
3217 |
+
#~ msgstr "طرح گزینه ها"
|
3218 |
+
|
3219 |
+
#~ msgid ""
|
3220 |
+
#~ "Lets you easily build countless pages with the help of the drag and drop "
|
3221 |
+
#~ "visual page builder that comes with a lot of already created shortcodes."
|
3222 |
+
#~ msgstr ""
|
3223 |
+
#~ "شما اجازه می دهد به راحتی با کمک از کشیدن ساخت صفحات بی شمار و رها کردن "
|
3224 |
+
#~ "صفحه سازنده بصری است که همراه با بسیاری از کد کوتاه در حال حاضر ایجاد."
|
3225 |
+
|
3226 |
+
#~ msgid ""
|
3227 |
+
#~ "Select the posts you want the Page Builder extension to be activated for"
|
3228 |
+
#~ msgstr "مکان هایی که تمایل دارید صفحه ساز فعال شود را انتخاب کنید."
|
3229 |
+
|
3230 |
+
#, fuzzy
|
3231 |
+
#~| msgid "Lets you insert Unyson shortcodes inside any wp-editor"
|
3232 |
+
#~ msgid "Lets you insert Unyson shortcodes inside any WordPress editor."
|
3233 |
+
#~ msgstr "شما امکان قرار دادن کد کوتاه Unyson در داخل هر فایل wp-ویرایشگر"
|
3234 |
+
|
3235 |
+
#, php-format
|
3236 |
+
#~ msgid "No default view (views/view.php) found for shortcode: %s"
|
3237 |
+
#~ msgstr ""
|
3238 |
+
#~ "بدون نمایش پیش فرض (مشاهدات / view.php) پیدا شده است برای کوتاه: از%s"
|
3239 |
+
|
3240 |
+
#, php-format
|
3241 |
+
#~ msgid "Shortcode \"%s\" from %s was already defined at %s"
|
3242 |
+
#~ msgstr "کوتاه \"%s\" را از%s از قبل در%s تعریف شد"
|
3243 |
+
|
3244 |
+
#, php-format
|
3245 |
+
#~ msgid "Class file found for shortcode %s but no class %s found"
|
3246 |
+
#~ msgstr "فایل کلاس پیدا شده برای کوتاه به%s اما همه کلاس%s یافت"
|
3247 |
+
|
3248 |
+
#, php-format
|
3249 |
+
#~ msgid "The class %s must extend from FW_Shortcode"
|
3250 |
+
#~ msgstr "کلاس%s را باید از FW_Shortcode گسترش"
|
3251 |
+
|
3252 |
+
#~ msgid "Accordion"
|
3253 |
+
#~ msgstr "اکاردیون"
|
3254 |
+
|
3255 |
+
#~ msgid "Add an Accordion"
|
3256 |
+
#~ msgstr "افزودن اکاردیون"
|
3257 |
+
|
3258 |
+
#~ msgid "Tabs"
|
3259 |
+
#~ msgstr "تب ها"
|
3260 |
+
|
3261 |
+
#~ msgid "Add/Edit Tabs"
|
3262 |
+
#~ msgstr "افزودن / ویرایش تب"
|
3263 |
+
|
3264 |
+
#~ msgid "Create your tabs"
|
3265 |
+
#~ msgstr "تب های خود را ایجاد کنید"
|
3266 |
+
|
3267 |
+
#~ msgid "Button"
|
3268 |
+
#~ msgstr "دکمه"
|
3269 |
+
|
3270 |
+
#~ msgid "Add a Button"
|
3271 |
+
#~ msgstr "افزودن دکمه"
|
3272 |
+
|
3273 |
+
#~ msgid "Button Label"
|
3274 |
+
#~ msgstr "عنوان دکمه"
|
3275 |
+
|
3276 |
+
#~ msgid "This is the text that appears on your button"
|
3277 |
+
#~ msgstr "این متن بر روی دکمه نمایش داده می شود."
|
3278 |
+
|
3279 |
+
#~ msgid "Button Link"
|
3280 |
+
#~ msgstr "لینک دکمه"
|
3281 |
+
|
3282 |
+
#~ msgid "Where should your button link to"
|
3283 |
+
#~ msgstr "لینک دکمه را در این قسمت وارد نمائید."
|
3284 |
+
|
3285 |
+
#~ msgid "Open Link in New Window"
|
3286 |
+
#~ msgstr "باز کردن در صفحه جدید"
|
3287 |
+
|
3288 |
+
#~ msgid "Select here if you want to open the linked page in a new window"
|
3289 |
+
#~ msgstr ""
|
3290 |
+
#~ "در صورتیکه تمایل دارید لینک صفحه در یک تب جدید باز شود این گزینه را "
|
3291 |
+
#~ "انتخاب نمائید."
|
3292 |
+
|
3293 |
+
#~ msgid "Call To Action"
|
3294 |
+
#~ msgstr "فراخوانی"
|
3295 |
+
|
3296 |
+
#~ msgid "Add a Call to Action"
|
3297 |
+
#~ msgstr "افزودن فراخونی"
|
3298 |
+
|
3299 |
+
#~ msgid "This can be left blank"
|
3300 |
+
#~ msgstr ""
|
3301 |
+
#~ "عنوان خود را در این قسمت وارد نمائید . در ضمن شما می توانید این گزینه را "
|
3302 |
+
#~ "خالی بگذارید."
|
3303 |
+
|
3304 |
+
#~ msgid "Enter some content for this Info Box"
|
3305 |
+
#~ msgstr "توضیحات مورد نیاز خود را در این قسمت وارد نمائید."
|
3306 |
+
|
3307 |
+
#, fuzzy
|
3308 |
+
#~ msgid "عنوان"
|
3309 |
+
#~ msgstr "عنوان"
|
3310 |
+
|
3311 |
+
#, fuzzy
|
3312 |
+
#~ msgid "بدون نظر"
|
3313 |
+
#~ msgstr "بدون نظر"
|
3314 |
+
|
3315 |
+
#, fuzzy
|
3316 |
+
#~ msgid "نظر"
|
3317 |
+
#~ msgstr "نظر"
|
3318 |
+
|
3319 |
+
#~ msgid "Collapse"
|
3320 |
+
#~ msgstr "بستن"
|
3321 |
+
|
3322 |
+
#~ msgid "Column"
|
3323 |
+
#~ msgstr "ستون"
|
3324 |
+
|
3325 |
+
#, php-format
|
3326 |
+
#~ msgid "Add a %s column"
|
3327 |
+
#~ msgstr "اضافه کردن یک ستون به%s"
|
3328 |
+
|
3329 |
+
#~ msgid "Columns"
|
3330 |
+
#~ msgstr "ستون ها"
|
3331 |
+
|
3332 |
+
#~ msgid "Save Column"
|
3333 |
+
#~ msgstr "ذخیره ستون"
|
3334 |
+
|
3335 |
+
#~ msgid "Save as Template"
|
3336 |
+
#~ msgstr "ذخیره مجدد به عنوان قالب"
|
3337 |
+
|
3338 |
+
#~ msgid "Divider"
|
3339 |
+
#~ msgstr "فاصله ساز"
|
3340 |
+
|
3341 |
+
#~ msgid "Add a Divider"
|
3342 |
+
#~ msgstr "اضافه کردن جداکننده"
|
3343 |
+
|
3344 |
+
#~ msgid "Ruler Type"
|
3345 |
+
#~ msgstr "نوع خط کش"
|
3346 |
+
|
3347 |
+
#~ msgid "Here you can set the styling and size of the HR element"
|
3348 |
+
#~ msgstr "از این قسمت می توانید استایل تگ hr را مشخص کنید"
|
3349 |
+
|
3350 |
+
#~ msgid "Line"
|
3351 |
+
#~ msgstr "خط"
|
3352 |
+
|
3353 |
+
#~ msgid "Whitespace"
|
3354 |
+
#~ msgstr "فضای خالی"
|
3355 |
+
|
3356 |
+
#~ msgid "Height"
|
3357 |
+
#~ msgstr "ارتفاع"
|
3358 |
+
|
3359 |
+
#~ msgid ""
|
3360 |
+
#~ "How much whitespace do you need? Enter a pixel value. Positive value will "
|
3361 |
+
#~ "increase the whitespace, negative value will reduce it. eg: '50', '-25', "
|
3362 |
+
#~ "'200'"
|
3363 |
+
#~ msgstr ""
|
3364 |
+
#~ "چقدر فضای سفید نیاز دارید؟ یک مقدار برحسب پیکسل وارد کنید، مقدار مثبت فضا "
|
3365 |
+
#~ "را زیاد می کند و مقدار منفی فضا را کاهش می دهد. عنوان مثال:'50', '-25', "
|
3366 |
+
#~ "'200'"
|
3367 |
+
|
3368 |
+
#~ msgid "Custom"
|
3369 |
+
#~ msgstr "سفارشی"
|
3370 |
+
|
3371 |
+
#~ msgid "Locations"
|
3372 |
+
#~ msgstr "موقعیت های مکانی"
|
3373 |
+
|
3374 |
+
#~ msgid "Add/Edit Location"
|
3375 |
+
#~ msgstr "افزودن / ویرایش مکان"
|
3376 |
+
|
3377 |
+
#~ msgid "Note: Please set location"
|
3378 |
+
#~ msgstr "لطفا مکان را تنظیم نمایید"
|
3379 |
+
|
3380 |
+
#~ msgid "Location"
|
3381 |
+
#~ msgstr "مکان"
|
3382 |
+
|
3383 |
+
#~ msgid "Location Title"
|
3384 |
+
#~ msgstr "عنوان مکان"
|
3385 |
+
|
3386 |
+
#~ msgid "Set location title"
|
3387 |
+
#~ msgstr "تنظیم عنوان مکان"
|
3388 |
+
|
3389 |
+
#~ msgid "Location Description"
|
3390 |
+
#~ msgstr "توضیحات مکان"
|
3391 |
+
|
3392 |
+
#~ msgid "Set location description"
|
3393 |
+
#~ msgstr "توضیحات دلخواه مکان را در این قسمت وارد نمائید."
|
3394 |
+
|
3395 |
+
#~ msgid "Location Url"
|
3396 |
+
#~ msgstr "لینک مکان"
|
3397 |
+
|
3398 |
+
#~ msgid "Set page url (Ex: http://example.com)"
|
3399 |
+
#~ msgstr ""
|
3400 |
+
#~ "در این قسمت می توانید یک آدرس اینترنتی برای مکان مورد نظر خود وارد "
|
3401 |
+
#~ "نمائید. ( مانند: https://nasimnet.ir )"
|
3402 |
+
|
3403 |
+
#~ msgid "Location Image"
|
3404 |
+
#~ msgstr "تصویر مکان"
|
3405 |
+
|
3406 |
+
#~ msgid "Add location image"
|
3407 |
+
#~ msgstr ""
|
3408 |
+
#~ "در این قسمت می توانید یک تصویر برای مکان مورد نظر خود بارگذاری کنید."
|
3409 |
+
|
3410 |
+
#~ msgid "No location provider specified for map shortcode"
|
3411 |
+
#~ msgstr "هیچ مکان مشخص شده ای برای انتقال نقشه شورت کات وجود ندارد."
|
3412 |
+
|
3413 |
+
#~ msgid "Map Placeholder"
|
3414 |
+
#~ msgstr "مکان نمای نقضه"
|
3415 |
+
|
3416 |
+
#, php-format
|
3417 |
+
#~ msgid "Unknown location provider \"%s\" specified for map shortcode"
|
3418 |
+
#~ msgstr "ارائه دهنده مکان ناشناخته \"%s\" را مشخص شده برای نقشه کوتاه"
|
3419 |
+
|
3420 |
+
#~ msgid "Map"
|
3421 |
+
#~ msgstr "نقشه"
|
3422 |
+
|
3423 |
+
#~ msgid "Add a Map"
|
3424 |
+
#~ msgstr "افزودن نقشه"
|
3425 |
+
|
3426 |
+
#~ msgid "Population Method"
|
3427 |
+
#~ msgstr "روش دریافت اطلاعات"
|
3428 |
+
|
3429 |
+
#~ msgid "Select map population method (Ex: events, custom)"
|
3430 |
+
#~ msgstr "روش دریافت اطلاعات از نقشه را وارد نمائید. (مثال: رویدادها، سفارشی)"
|
3431 |
+
|
3432 |
+
#~ msgid "Google Maps API Key"
|
3433 |
+
#~ msgstr "کلید API نقشه های گوگل"
|
3434 |
+
|
3435 |
+
#, php-format
|
3436 |
+
#~ msgid "Create an application in %sGoogle Console%s and add the Key here."
|
3437 |
+
#~ msgstr ""
|
3438 |
+
#~ "از %sکنسول گوگل%s می توانید یک کلید ایجاد کرده و در این قسمت قرار دهید."
|
3439 |
+
|
3440 |
+
#~ msgid "Map Type"
|
3441 |
+
#~ msgstr "نوع نقشه"
|
3442 |
+
|
3443 |
+
#~ msgid "Select map type"
|
3444 |
+
#~ msgstr "انتخاب نوع نقشه"
|
3445 |
+
|
3446 |
+
#~ msgid "Roadmap"
|
3447 |
+
#~ msgstr "نقشه راه"
|
3448 |
+
|
3449 |
+
#~ msgid "Terrain"
|
3450 |
+
#~ msgstr "زمین"
|
3451 |
+
|
3452 |
+
#~ msgid "Satellite"
|
3453 |
+
#~ msgstr "نقشه ماهواره"
|
3454 |
+
|
3455 |
+
#~ msgid "Hybrid"
|
3456 |
+
#~ msgstr "ترکیبی"
|
3457 |
+
|
3458 |
+
#~ msgid "Map Height"
|
3459 |
+
#~ msgstr "ارتفاع نقشه"
|
3460 |
+
|
3461 |
+
#~ msgid "Set map height (Ex: 300)"
|
3462 |
+
#~ msgstr "تنظیم ارتفاع نقشه ( بطور مثال : 300 )"
|
3463 |
+
|
3464 |
+
#~ msgid "Disable zoom on scroll"
|
3465 |
+
#~ msgstr "غیر فعال کردن زوم با اسکرول"
|
3466 |
+
|
3467 |
+
#~ msgid ""
|
3468 |
+
#~ "Prevent the map from zooming when scrolling until clicking on the map"
|
3469 |
+
#~ msgstr ""
|
3470 |
+
#~ "با فعال کردن این گزینه ، زمانیکه بر روی نقشه اسکرول می شود نقشه زوم "
|
3471 |
+
#~ "نخواهد شد."
|
3472 |
+
|
3473 |
+
#~ msgid "Image"
|
3474 |
+
#~ msgstr "تصاویر"
|
3475 |
+
|
3476 |
+
#~ msgid "Add an Image"
|
3477 |
+
#~ msgstr "اضافه کردن یک عکس"
|
3478 |
+
|
3479 |
+
#~ msgid "Choose Image"
|
3480 |
+
#~ msgstr "انتخاب تصویر"
|
3481 |
+
|
3482 |
+
#~ msgid ""
|
3483 |
+
#~ "Either upload a new, or choose an existing image from your media library"
|
3484 |
+
#~ msgstr ""
|
3485 |
+
#~ "یک تصویر جدید بارگذاری کنید و یا اینکه یک تصویر از کتابخانه انتخاب کنید."
|
3486 |
+
|
3487 |
+
#~ msgid "Width"
|
3488 |
+
#~ msgstr "طول"
|
3489 |
+
|
3490 |
+
#~ msgid "Set image width"
|
3491 |
+
#~ msgstr "عرض تصویر را مشخص کنید."
|
3492 |
+
|
3493 |
+
#~ msgid "Set image height"
|
3494 |
+
#~ msgstr "ارتفاع تصویر را مشخص کنید."
|
3495 |
+
|
3496 |
+
#~ msgid "Image Link"
|
3497 |
+
#~ msgstr "لینک تصویر"
|
3498 |
+
|
3499 |
+
#~ msgid "Where should your image link to?"
|
3500 |
+
#~ msgstr "لینک تصویر را در این قسمت وارد نمائید."
|
3501 |
+
|
3502 |
+
#~ msgid "Video"
|
3503 |
+
#~ msgstr "ویدئو"
|
3504 |
+
|
3505 |
+
#~ msgid "Add a Video"
|
3506 |
+
#~ msgstr "اضافه کردن فیلم"
|
3507 |
+
|
3508 |
+
#~ msgid "Insert Video URL"
|
3509 |
+
#~ msgstr "آدرس ویدئو"
|
3510 |
+
|
3511 |
+
#~ msgid "Insert Video URL to embed this video"
|
3512 |
+
#~ msgstr "آدرس ویدئو خود را در این قسمت وارد نمائید."
|
3513 |
+
|
3514 |
+
#~ msgid "Video Width"
|
3515 |
+
#~ msgstr "عرض ویدئو"
|
3516 |
+
|
3517 |
+
#~ msgid "Enter a value for the width"
|
3518 |
+
#~ msgstr "برای عرض ویدئو مقداری وارد نمایید"
|
3519 |
+
|
3520 |
+
#~ msgid "Video Height"
|
3521 |
+
#~ msgstr "ارتفاع ویدئو"
|
3522 |
+
|
3523 |
+
#~ msgid "Enter a value for the height"
|
3524 |
+
#~ msgstr "مقداری برای ارتفاع ویدئو وارد کنید"
|
3525 |
+
|
3526 |
+
#~ msgid "Notification"
|
3527 |
+
#~ msgstr "اطلاعیه"
|
3528 |
+
|
3529 |
+
#~ msgid "Add a Notification Box"
|
3530 |
+
#~ msgstr "افزودن یک جعبه اطلاع رسانی"
|
3531 |
+
|
3532 |
+
#~ msgid "Message"
|
3533 |
+
#~ msgstr "پیام"
|
3534 |
+
|
3535 |
+
#~ msgid "Notification message"
|
3536 |
+
#~ msgstr ""
|
3537 |
+
#~ "پیامی که می خواهید به کاربر نمایش داده شود را در این قسمت وارد نمائید."
|
3538 |
+
|
3539 |
+
#~ msgid "Message!"
|
3540 |
+
#~ msgstr "پیام!"
|
3541 |
+
|
3542 |
+
#~ msgid "Type"
|
3543 |
+
#~ msgstr "نوع"
|
3544 |
+
|
3545 |
+
#~ msgid "Notification type"
|
3546 |
+
#~ msgstr "نوع اطلاع رسانی خود را انتخاب نمائید."
|
3547 |
+
|
3548 |
+
#~ msgid "Congratulations"
|
3549 |
+
#~ msgstr "تبریک!"
|
3550 |
+
|
3551 |
+
#~ msgid "Information"
|
3552 |
+
#~ msgstr "اطلاعات"
|
3553 |
+
|
3554 |
+
#~ msgid "Alert"
|
3555 |
+
#~ msgstr "پیام"
|
3556 |
+
|
3557 |
+
#~ msgid "Section"
|
3558 |
+
#~ msgstr "بخش"
|
3559 |
+
|
3560 |
+
#~ msgid "Creates a section"
|
3561 |
+
#~ msgstr "ایجاد بخش"
|
3562 |
+
|
3563 |
+
#~ msgid "Add a Section"
|
3564 |
+
#~ msgstr "افزودن بخش"
|
3565 |
+
|
3566 |
+
#~ msgid "Sections"
|
3567 |
+
#~ msgstr "بخش ها"
|
3568 |
+
|
3569 |
+
#~ msgid "Save Section"
|
3570 |
+
#~ msgstr "ذخیره بخش"
|
3571 |
+
|
3572 |
+
#, fuzzy
|
3573 |
+
#~ msgid "فعال"
|
3574 |
+
#~ msgstr "فعال"
|
3575 |
+
|
3576 |
+
#, fuzzy
|
3577 |
+
#~| msgid "Search %s"
|
3578 |
+
#~ msgid "Search Ads"
|
3579 |
+
#~ msgstr "جستجوی آگهی"
|
3580 |
+
|
3581 |
+
#~ msgid "Special Heading"
|
3582 |
+
#~ msgstr "سر تیتر ویژه"
|
3583 |
+
|
3584 |
+
#~ msgid "Add a Special Heading"
|
3585 |
+
#~ msgstr "افزودن سر تیتر ویژه"
|
3586 |
+
|
3587 |
+
#~ msgid "Heading Title"
|
3588 |
+
#~ msgstr "عنوان سرتیتر"
|
3589 |
+
|
3590 |
+
#~ msgid "Write the heading title content"
|
3591 |
+
#~ msgstr "متن عنوان را وارد کنید"
|
3592 |
+
|
3593 |
+
#~ msgid "Heading Subtitle"
|
3594 |
+
#~ msgstr "زیرنویس سرتیتر"
|
3595 |
+
|
3596 |
+
#~ msgid "Write the heading subtitle content"
|
3597 |
+
#~ msgstr "متن زیرین عنوان را وارد کنید"
|
3598 |
+
|
3599 |
+
#~ msgid "Heading Size"
|
3600 |
+
#~ msgstr "سایز سربرگ"
|
3601 |
+
|
3602 |
+
#~ msgid "Font size"
|
3603 |
+
#~ msgstr "اندازه فونت"
|
3604 |
+
|
3605 |
+
#~ msgid "Centered"
|
3606 |
+
#~ msgstr "وسط چین"
|
3607 |
+
|
3608 |
+
#~ msgid "Table"
|
3609 |
+
#~ msgstr "جدول"
|
3610 |
+
|
3611 |
+
#~ msgid "Add a Table"
|
3612 |
+
#~ msgstr "اضافه کردن جدول"
|
3613 |
+
|
3614 |
+
#~ msgid "table-builder option type must be inside the table shortcode"
|
3615 |
+
#~ msgstr "نوع گزینه ایجاد جدول باید داخل کد کوتاه جدول قرار گیرد"
|
3616 |
+
|
3617 |
+
#~ msgid "Table Styling"
|
3618 |
+
#~ msgstr "استایل جدول"
|
3619 |
+
|
3620 |
+
#~ msgid "Choose the table styling options"
|
3621 |
+
#~ msgstr "انتخاب استایل جدول"
|
3622 |
+
|
3623 |
+
#~ msgid "Use the table as a pricing table"
|
3624 |
+
#~ msgstr "استفاده از جدول به عنوان جدول قیمت"
|
3625 |
+
|
3626 |
+
#~ msgid "Use the table to display tabular data"
|
3627 |
+
#~ msgstr "استفاده از جدول برای نمایش اطلاعات به صورت تب"
|
3628 |
+
|
3629 |
+
#~ msgid "Default row"
|
3630 |
+
#~ msgstr "سطر پیش فرض"
|
3631 |
+
|
3632 |
+
#~ msgid "Heading row"
|
3633 |
+
#~ msgstr "سطر هدینگ"
|
3634 |
+
|
3635 |
+
#~ msgid "Pricing row"
|
3636 |
+
#~ msgstr "سطر قیمت"
|
3637 |
+
|
3638 |
+
#~ msgid "Button row"
|
3639 |
+
#~ msgstr "سطر دکمه ای"
|
3640 |
+
|
3641 |
+
#~ msgid "Row switch"
|
3642 |
+
#~ msgstr "سطر تعویض"
|
3643 |
+
|
3644 |
+
#~ msgid "Default column"
|
3645 |
+
#~ msgstr "ستون پیش فرض"
|
3646 |
+
|
3647 |
+
#~ msgid "Description column"
|
3648 |
+
#~ msgstr "ستون توضیحات"
|
3649 |
+
|
3650 |
+
#~ msgid "Highlight column"
|
3651 |
+
#~ msgstr "ستون پر رنگ"
|
3652 |
+
|
3653 |
+
#~ msgid "Center text column"
|
3654 |
+
#~ msgstr "متن در وسط ستون"
|
3655 |
+
|
3656 |
+
#~ msgid "per month"
|
3657 |
+
#~ msgstr "هر ماه"
|
3658 |
+
|
3659 |
+
#~ msgid "Add Column"
|
3660 |
+
#~ msgstr "اضافه کردن ستون"
|
3661 |
+
|
3662 |
+
#~ msgid "Add Row"
|
3663 |
+
#~ msgstr "افزودن ردیف"
|
3664 |
+
|
3665 |
+
#~ msgid "Add some Tabs"
|
3666 |
+
#~ msgstr "افزودن تب"
|
3667 |
+
|
3668 |
+
#~ msgid "Add/Edit Tab"
|
3669 |
+
#~ msgstr "افزودن / ویرایش تب"
|
3670 |
+
|
3671 |
+
#~ msgid "Team Member"
|
3672 |
+
#~ msgstr "عضو تیم"
|
3673 |
+
|
3674 |
+
#~ msgid "Add a Team Member"
|
3675 |
+
#~ msgstr "افزودن عضو تیم"
|
3676 |
+
|
3677 |
+
#~ msgid "Testimonials"
|
3678 |
+
#~ msgstr "نقد و بررسی مشتریان"
|
3679 |
+
|
3680 |
+
#~ msgid "Add some Testimonials"
|
3681 |
+
#~ msgstr "افزودن نظرات مشتریان"
|
3682 |
+
|
3683 |
+
#~ msgid "Option Testimonials Title"
|
3684 |
+
#~ msgstr "عنوان مشتری"
|
3685 |
+
|
3686 |
+
#~ msgid "Add/Edit Testimonial"
|
3687 |
+
#~ msgstr "اضافه/ویرایش نقل قول"
|
3688 |
+
|
3689 |
+
#~ msgid "Here you can add, remove and edit your Testimonials."
|
3690 |
+
#~ msgstr "در اینجا شما می توانید نقل قول را اضافه ، حذف و یا ویرایش نمایید."
|
3691 |
+
|
3692 |
+
#~ msgid "Quote"
|
3693 |
+
#~ msgstr "نقل قول"
|
3694 |
+
|
3695 |
+
#~ msgid "Enter the testimonial here"
|
3696 |
+
#~ msgstr "وارد کردن متن نقل قول"
|
3697 |
+
|
3698 |
+
#~ msgid "Name"
|
3699 |
+
#~ msgstr "نام"
|
3700 |
+
|
3701 |
+
#~ msgid "Enter the Name of the Person to quote"
|
3702 |
+
#~ msgstr "نام شخص گوینده را وارد کنید"
|
3703 |
+
|
3704 |
+
#~ msgid "Position"
|
3705 |
+
#~ msgstr "موقعیت"
|
3706 |
+
|
3707 |
+
#~ msgid "Can be used for a job description"
|
3708 |
+
#~ msgstr "برای افزودن توضیحات شغل به کار می رود"
|
3709 |
+
|
3710 |
+
#~ msgid "Website Name"
|
3711 |
+
#~ msgstr "نام سایت"
|
3712 |
+
|
3713 |
+
#~ msgid "Linktext for the above Link"
|
3714 |
+
#~ msgstr "متن بالای لینک"
|
3715 |
+
|
3716 |
+
#~ msgid "Website Link"
|
3717 |
+
#~ msgstr "لینک وب سایت"
|
3718 |
+
|
3719 |
+
#~ msgid "Link to the Persons website"
|
3720 |
+
#~ msgstr "لینک به سایت شخصی"
|
3721 |
+
|
3722 |
+
#~ msgid "Text Block"
|
3723 |
+
#~ msgstr "متن بلوک"
|
3724 |
+
|
3725 |
+
#~ msgid "Add a Text Block"
|
3726 |
+
#~ msgstr "افزودن جعبه متن"
|
3727 |
+
|
3728 |
+
#~ msgid "Widget Area"
|
3729 |
+
#~ msgstr "ناحیه ابزارک"
|
3730 |
+
|
3731 |
+
#~ msgid "Add a Widget Area"
|
3732 |
+
#~ msgstr "افزودن ناحیه ابزارک"
|
3733 |
+
|
3734 |
+
#~ msgid "Sidebar"
|
3735 |
+
#~ msgstr "ستون کناری"
|
3736 |
+
|
3737 |
+
#~ msgid "Unyson"
|
3738 |
+
#~ msgstr "نسیم نت"
|
3739 |
+
|
3740 |
+
#~ msgid "Nonce verification failed"
|
3741 |
+
#~ msgstr "تایید فعلی با شکست مواجه شد"
|
3742 |
+
|
3743 |
+
#~ msgid "Cannot delete: "
|
3744 |
+
#~ msgstr "نمی توان حذف کرد:"
|
3745 |
+
|
3746 |
+
#~ msgid "Cannot create: "
|
3747 |
+
#~ msgstr "نمی توان ایجاد کرد:"
|
3748 |
+
|
3749 |
+
#~ msgid "Cannot remove old temporary directory: "
|
3750 |
+
#~ msgstr "نمی توان پوشه موقت قدیمی را حذف کرد:"
|
3751 |
+
|
3752 |
+
#, fuzzy
|
3753 |
+
#~| msgid "Downloading..."
|
3754 |
+
#~ msgid "Downloading the %s..."
|
3755 |
+
#~ msgstr "دانلود \"%s\" را گسترش ..."
|
3756 |
+
|
3757 |
+
#, fuzzy
|
3758 |
+
#~| msgid "Cannot download the \"%s\" extension zip."
|
3759 |
+
#~ msgid "Cannot download the %s."
|
3760 |
+
#~ msgstr "می توانید \"%s\" در فایل های فشرده فرمت را دانلود کنید. %s را"
|
3761 |
+
|
3762 |
+
#, fuzzy
|
3763 |
+
#~| msgid "Installing the \"%s\" extension..."
|
3764 |
+
#~ msgid "Installing the %s..."
|
3765 |
+
#~ msgstr "نصب افزونه :%s"
|
3766 |
+
|
3767 |
+
#, fuzzy
|
3768 |
+
#~| msgid "Cannot create directory: %s"
|
3769 |
+
#~ msgid "Cannot access directory: "
|
3770 |
+
#~ msgstr "امکان دسترسی به این پوشه نیست : "
|
3771 |
+
|
3772 |
+
#, fuzzy
|
3773 |
+
#~| msgid "Cannot remove directory"
|
3774 |
+
#~ msgid "Cannot remove: "
|
3775 |
+
#~ msgstr "نمی توان پوشه موقت قدیمی را حذف کرد:"
|
3776 |
+
|
3777 |
+
#, fuzzy
|
3778 |
+
#~| msgid "Cannot move \"%s\" to \"%s\"."
|
3779 |
+
#~ msgid "Cannot move \"%s\" to \"%s\""
|
3780 |
+
#~ msgstr "می توانید از \"%s\" به \"%s\" را حرکت نمی کند."
|
3781 |
+
|
3782 |
+
#, fuzzy
|
3783 |
+
#~| msgid "Cannot move \"%s\" to \"%s\"."
|
3784 |
+
#~ msgid "Cannot merge \"%s\" with \"%s\""
|
3785 |
+
#~ msgstr "خطای ادغام \" %s \" با \" %s \""
|
3786 |
+
|
3787 |
+
#, fuzzy
|
3788 |
+
#~| msgid "The %s extension has been successfully deleted."
|
3789 |
+
#~ msgid "The %s has been successfully updated."
|
3790 |
+
#~ msgstr "%s با موفقیت به روز شد."
|
3791 |
+
|
3792 |
+
#, fuzzy
|
3793 |
+
#~| msgid "Cannot remove temporary directory: %s"
|
3794 |
+
#~ msgid "Cannot remove temporary directory \"%s\"."
|
3795 |
+
#~ msgstr "می توانید دایرکتوری موقت را حذف کنید:%s را"
|
3796 |
+
|
3797 |
+
#, fuzzy
|
3798 |
+
#~| msgid "Framework"
|
3799 |
+
#~ msgid "Framework Update"
|
3800 |
+
#~ msgstr "چهارچوب بهنگام درآوری"
|
3801 |
+
|
3802 |
+
#, fuzzy
|
3803 |
+
#~ msgid "Failed to get framework latest version."
|
3804 |
+
#~ msgstr "آخرین نسخه چارچوب دریافت نشد"
|
3805 |
+
|
3806 |
+
#~ msgid "Theme Update"
|
3807 |
+
#~ msgstr "به رو زرسانی پوسته"
|
3808 |
+
|
3809 |
+
#, fuzzy
|
3810 |
+
#~| msgid "You have the latest version of %s."
|
3811 |
+
#~ msgid "Failed to get theme latest version."
|
3812 |
+
#~ msgstr "دریافت آخرین نسخه موضوع نشد."
|
3813 |
+
|
3814 |
+
#~ msgid "Theme"
|
3815 |
+
#~ msgstr "پوسته"
|
3816 |
+
|
3817 |
+
#, fuzzy
|
3818 |
+
#~| msgid "Please check the categories you do not want to include in sitemap"
|
3819 |
+
#~ msgid "Please check the extensions you want to update."
|
3820 |
+
#~ msgstr "برنامه های افزودنی را که می خواهید به روز رسانی را بررسی کنید."
|
3821 |
+
|
3822 |
+
#, fuzzy
|
3823 |
+
#~| msgid "Go to extensions page"
|
3824 |
+
#~ msgid "Extensions Update"
|
3825 |
+
#~ msgstr "برو به صفحه برنامه افزودنی"
|
3826 |
+
|
3827 |
+
#, fuzzy
|
3828 |
+
#~| msgid "No extensions provided"
|
3829 |
+
#~ msgid "No extensions updates found."
|
3830 |
+
#~ msgstr "هیچ به روز رسانی برنامه های افزودنی در بر داشت."
|
3831 |
+
|
3832 |
+
#, fuzzy
|
3833 |
+
#~| msgid "Extension \"%s\" does not exist or is not active."
|
3834 |
+
#~ msgid "Extension \"%s\" does not exist or is disabled."
|
3835 |
+
#~ msgstr "پسوند \"%s\" وجود ندارد و یا غیر فعال شده است."
|
3836 |
+
|
3837 |
+
#, fuzzy
|
3838 |
+
#~| msgid "Cannot delete the \"%s\" extension."
|
3839 |
+
#~ msgid "No update found for the \"%s\" extension."
|
3840 |
+
#~ msgstr "می توانید از \"%s\" فرمت را حذف کنید."
|
3841 |
+
|
3842 |
+
#, fuzzy
|
3843 |
+
#~| msgid "%s Extensions"
|
3844 |
+
#~ msgid "%s extension"
|
3845 |
+
#~ msgstr "فرمت %s"
|
3846 |
+
|
3847 |
+
#, fuzzy
|
3848 |
+
#~ msgid "Keep you framework, extensions and theme up to date."
|
3849 |
+
#~ msgstr "شما تا به امروز حفظ چارچوب افزودنی و تم."
|
3850 |
+
|
3851 |
+
#, fuzzy
|
3852 |
+
#~| msgid "Cannot read directory \"%s\"."
|
3853 |
+
#~ msgid "No releases found in repository \"%s\"."
|
3854 |
+
#~ msgstr "هیچ انتشار یافت در مخزن \"%s\"."
|
3855 |
+
|
3856 |
+
#, fuzzy
|
3857 |
+
#~ msgid ""
|
3858 |
+
#~ "%s manifest has invalid \"github_update\" parameter. Please use \"user/"
|
3859 |
+
#~ "repo\" format."
|
3860 |
+
#~ msgstr ""
|
3861 |
+
#~ "%s آشکار پارامتر نامعتبر \"github_update\" است. لطفا قالب \"کاربر/مخزن\" "
|
3862 |
+
#~ "استفاده کنید."
|
3863 |
+
|
3864 |
+
#, fuzzy
|
3865 |
+
#~| msgid "You have the latest version of %s."
|
3866 |
+
#~ msgid "Failed to fetch %s latest version from github \"%s\"."
|
3867 |
+
#~ msgstr "شما از آخرین نگارش استفاده میکنید.%s"
|
3868 |
+
|
3869 |
+
#, fuzzy
|
3870 |
+
#~| msgid "\"%s\" extension github repository \"%s\" has no releases."
|
3871 |
+
#~ msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
3872 |
+
#~ msgstr "%s github مخزن \"%s\" آزادی \"%s\" را ندارد."
|
3873 |
+
|
3874 |
+
#, fuzzy
|
3875 |
+
#~| msgid "Cannot download the \"%s\" extension zip."
|
3876 |
+
#~ msgid "Cannot download %s zip."
|
3877 |
+
#~ msgstr "زیپ %s را نمی توان دانلود کرد."
|
3878 |
+
|
3879 |
+
#, fuzzy
|
3880 |
+
#~| msgid "Cannot save the \"%s\" extension zip."
|
3881 |
+
#~ msgid "Cannot save %s zip."
|
3882 |
+
#~ msgstr "زیپ %s را نمی توان ذخیره کرد."
|
3883 |
+
|
3884 |
+
#, fuzzy
|
3885 |
+
#~| msgid "Cannot move \"%s\" to \"%s\"."
|
3886 |
+
#~ msgid "Cannot remove %s zip."
|
3887 |
+
#~ msgstr "زیپ %s را نمی توان حذف کرد."
|
3888 |
+
|
3889 |
+
#, fuzzy
|
3890 |
+
#~| msgid "The unzipped \"%s\" extension directory not found."
|
3891 |
+
#~ msgid "The unzipped %s directory not found."
|
3892 |
+
#~ msgstr "استخراج \"%s\" در دایرکتوری برنامه افزودنی یافت نشد."
|
3893 |
+
|
3894 |
+
#~ msgid "You have the latest version of %s."
|
3895 |
+
#~ msgstr "شما از آخرین نگارش استفاده میکنید.%s"
|
3896 |
+
|
3897 |
+
#~ msgid "Update Framework"
|
3898 |
+
#~ msgstr "بروز رسانی فریم ورک"
|
3899 |
+
|
3900 |
+
#, fuzzy
|
3901 |
+
#~ msgid "Your theme is up to date."
|
3902 |
+
#~ msgstr "قالب اپدیت شده است"
|
3903 |
+
|
3904 |
+
#~ msgid "Update Theme"
|
3905 |
+
#~ msgstr "بروز رسانی پوسته"
|
3906 |
+
|
3907 |
+
#, fuzzy
|
3908 |
+
#~| msgid "Active Extensions"
|
3909 |
+
#~ msgid "Update Extensions"
|
3910 |
+
#~ msgstr "آپدیت افزودنی ها"
|
3911 |
+
|
3912 |
+
#, fuzzy
|
3913 |
+
#~| msgid "Parent extension \"%s\" not available."
|
3914 |
+
#~ msgid "New extensions updates available."
|
3915 |
+
#~ msgstr "الحاقات به روز رسانی جدید موجود است."
|
3916 |
+
|
3917 |
+
#, fuzzy
|
3918 |
+
#~| msgid "Go to the last page"
|
3919 |
+
#~ msgid "Go to updates page"
|
3920 |
+
#~ msgstr "به روز رسانی صفحه"
|
3921 |
+
|
3922 |
+
#, fuzzy
|
3923 |
+
#~| msgid "Return to Extensions page"
|
3924 |
+
#~ msgid "Return to Updates page"
|
3925 |
+
#~ msgstr "بازگشت به صفحه به روز رسانی"
|
3926 |
+
|
3927 |
+
#, fuzzy
|
3928 |
+
#~| msgid "You have no permissions to install extensions"
|
3929 |
+
#~ msgid "You have version %s installed. Update to %s."
|
3930 |
+
#~ msgstr "ورژن نصب شده شما %s میباشد به ورژن %s به روزرسانی کنید"
|
3931 |
+
|
3932 |
+
#, fuzzy
|
3933 |
+
#~| msgid "No extensions provided"
|
3934 |
+
#~ msgid "No Extensions for update."
|
3935 |
+
#~ msgstr "بدون پسوند برای به روز رسانی."
|
3936 |
+
|
3937 |
+
#~ msgid "Project"
|
3938 |
+
#~ msgstr "پروژه"
|
3939 |
+
|
3940 |
+
#~ msgid "Projects"
|
3941 |
+
#~ msgstr "پروژه ها"
|
3942 |
+
|
3943 |
+
#~ msgid "Add New"
|
3944 |
+
#~ msgstr "افزودن"
|
3945 |
+
|
3946 |
+
#~ msgid "Add New %s"
|
3947 |
+
#~ msgstr "افزودن %s"
|
3948 |
+
|
3949 |
+
#~ msgid "Edit %s"
|
3950 |
+
#~ msgstr "ویرایش %s"
|
3951 |
+
|
3952 |
+
#~ msgid "All %s"
|
3953 |
+
#~ msgstr "همه %s"
|
3954 |
+
|
3955 |
+
#~ msgid "View %s"
|
3956 |
+
#~ msgstr "مشاهده %s"
|
3957 |
+
|
3958 |
+
#~ msgid "No %s Found"
|
3959 |
+
#~ msgstr "هیچکدام از %s یافت نشد"
|
3960 |
+
|
3961 |
+
#~ msgid "No %s Found In Trash"
|
3962 |
+
#~ msgstr "%s در سطل زباله یافت نشد"
|
3963 |
+
|
3964 |
+
#~ msgid "Create a portfolio item"
|
3965 |
+
#~ msgstr "ایجاد یک پروژه"
|
3966 |
+
|
3967 |
+
#~ msgid "Category"
|
3968 |
+
#~ msgstr "دسته بندی"
|
3969 |
+
|
3970 |
+
#~ msgid "Categories"
|
3971 |
+
#~ msgstr "دسته بندی ها"
|
3972 |
+
|
3973 |
+
#~ msgid "Parent %s"
|
3974 |
+
#~ msgstr "والد %s"
|
3975 |
+
|
3976 |
+
#~ msgid "Parent %s:"
|
3977 |
+
#~ msgstr "%s مرجع:"
|
3978 |
+
|
3979 |
+
#~ msgid "New %s Name"
|
3980 |
+
#~ msgstr "نام %s جدید"
|
3981 |
+
|
3982 |
+
#~ msgid "%s"
|
3983 |
+
#~ msgstr "%s"
|
3984 |
+
|
3985 |
+
#~ msgid "Gallery"
|
3986 |
+
#~ msgstr "گالری"
|
3987 |
+
|
3988 |
+
#~ msgid "Set project gallery"
|
3989 |
+
#~ msgstr "تنظیم گالری پروژه"
|
3990 |
+
|
3991 |
+
#~ msgid "Edit project gallery"
|
3992 |
+
#~ msgstr "ویرایش گالری پروژه"
|
3993 |
+
|
3994 |
+
#~ msgid "Project Cover Image"
|
3995 |
+
#~ msgstr "تصویر پروژه"
|
3996 |
+
|
3997 |
+
#~ msgid "Edit this item"
|
3998 |
+
#~ msgstr "ویرایش این مورد"
|
3999 |
+
|
4000 |
+
#~ msgid "View all categories"
|
4001 |
+
#~ msgstr "نمایش همه دسته ها"
|
4002 |
+
|
4003 |
+
#~ msgid "Cover Image"
|
4004 |
+
#~ msgstr "تصویر"
|
4005 |
+
|
4006 |
+
#~ msgid "General"
|
4007 |
+
#~ msgstr "اصلی"
|
4008 |
+
|
4009 |
+
#~ msgid "General Settings"
|
4010 |
+
#~ msgstr "تنظیمات اصلی"
|
4011 |
+
|
4012 |
+
#~ msgid "Site name"
|
4013 |
+
#~ msgstr "نام سایت"
|
4014 |
+
|
4015 |
+
#~ msgid "Site description"
|
4016 |
+
#~ msgstr "توضیحات سایت"
|
4017 |
+
|
4018 |
+
#~ msgid "Current time"
|
4019 |
+
#~ msgstr "زمان فعلی"
|
4020 |
+
|
4021 |
+
#~ msgid "Current date"
|
4022 |
+
#~ msgstr "تاریخ فعلی"
|
4023 |
+
|
4024 |
+
#~ msgid "Current month"
|
4025 |
+
#~ msgstr "ماه جاری"
|
4026 |
+
|
4027 |
+
#~ msgid "Current year"
|
4028 |
+
#~ msgstr "سال جاری"
|
4029 |
+
|
4030 |
+
#~ msgid "Date of the post/page"
|
4031 |
+
#~ msgstr "تاریخ پست"
|
4032 |
+
|
4033 |
+
#~ msgid "Title of the post/page/term"
|
4034 |
+
#~ msgstr "عنوان پست / صفحه / مدت"
|
4035 |
+
|
4036 |
+
#~ msgid "Excerpt of the current post, of auto-generate if it is not set"
|
4037 |
+
#~ msgstr "گزیده ای از پست فعلی، از خودکار تولید آن است که اگر تنظیم نشده"
|
4038 |
+
|
4039 |
+
#~ msgid "Excerpt of the current post, without auto-generation"
|
4040 |
+
#~ msgstr "گزیده ای از پست فعلی، بدون خودکار نسل"
|
4041 |
+
|
4042 |
+
#~ msgid "Post tags, separated by coma"
|
4043 |
+
#~ msgstr "برچسب ها پست، از هم جدا شده کما"
|
4044 |
+
|
4045 |
+
#~ msgid "Post categories, separated by coma"
|
4046 |
+
#~ msgstr "دسته ها پست، از هم جدا شده کما"
|
4047 |
+
|
4048 |
+
#~ msgid "Category/tag/term description"
|
4049 |
+
#~ msgstr "رده / برچسب / توضیحات مدت"
|
4050 |
+
|
4051 |
+
#~ msgid "Term title"
|
4052 |
+
#~ msgstr "عنوان مدت"
|
4053 |
+
|
4054 |
+
#~ msgid "Post modified time"
|
4055 |
+
#~ msgstr "پست اصلاح شد"
|
4056 |
+
|
4057 |
+
#~ msgid "Post/page id"
|
4058 |
+
#~ msgstr "شناسه نوشته/برگه"
|
4059 |
+
|
4060 |
+
#~ msgid "Post/page author \"nicename\""
|
4061 |
+
#~ msgstr "پست / صفحه نویسنده \"nicename\""
|
4062 |
+
|
4063 |
+
#~ msgid "Post/page author id"
|
4064 |
+
#~ msgstr "پست / صفحه شناسه نویسنده"
|
4065 |
+
|
4066 |
+
#~ msgid "Search phrase in search page"
|
4067 |
+
#~ msgstr "عبارت جستجو در صفحه جستجو"
|
4068 |
+
|
4069 |
+
#~ msgid "Page number"
|
4070 |
+
#~ msgstr "شماره صفحه"
|
4071 |
+
|
4072 |
+
#~ msgid "Attachment caption"
|
4073 |
+
#~ msgstr "عنوان پیوست"
|
4074 |
+
|
4075 |
+
#~ msgid "Titles & Meta"
|
4076 |
+
#~ msgstr "عناوین و متا"
|
4077 |
+
|
4078 |
+
#~ msgid "Homepage"
|
4079 |
+
#~ msgstr "صفحه نخست"
|
4080 |
+
|
4081 |
+
#~ msgid "Homepage Title"
|
4082 |
+
#~ msgstr "عنوان صفحه خانه"
|
4083 |
+
|
4084 |
+
#~ msgid "Set homepage title format"
|
4085 |
+
#~ msgstr "فرمت عنوان صفحه اصلی:"
|
4086 |
+
|
4087 |
+
#~ msgid "Homepage Description"
|
4088 |
+
#~ msgstr "توضیحات صفحه اصلی:"
|
4089 |
+
|
4090 |
+
#~ msgid "Set homepage description"
|
4091 |
+
#~ msgstr "توضیحات صفحه اصلی:"
|
4092 |
+
|
4093 |
+
#~ msgid "Homepage Meta Keywords"
|
4094 |
+
#~ msgstr "کلمات کلیدی متای صفحهاصلی:"
|
4095 |
+
|
4096 |
+
#~ msgid "Set homepage meta keywords"
|
4097 |
+
#~ msgstr "کلمات کلیدی متای صفحهاصلی:"
|
4098 |
+
|
4099 |
+
#~ msgid "Custom Posts"
|
4100 |
+
#~ msgstr "پست های سفارشی"
|
4101 |
+
|
4102 |
+
#~ msgid "Set title format"
|
4103 |
+
#~ msgstr "قالب عنوان :"
|
4104 |
+
|
4105 |
+
#~ msgid "Here are some tags examples:"
|
4106 |
+
#~ msgstr "در اینجا برخی از تگ های نمونه عبارتند از:"
|
4107 |
+
|
4108 |
+
#~ msgid "Description"
|
4109 |
+
#~ msgstr "توضیحات بیشتر"
|
4110 |
+
|
4111 |
+
#~ msgid "Set description format"
|
4112 |
+
#~ msgstr "فرمت توضیحات"
|
4113 |
+
|
4114 |
+
#~ msgid "Meta Keywords"
|
4115 |
+
#~ msgstr "کلیدواژه ی متا"
|
4116 |
+
|
4117 |
+
#~ msgid "Set meta keywords"
|
4118 |
+
#~ msgstr "کلیدواژه ها"
|
4119 |
+
|
4120 |
+
#~ msgid "Meta Robots"
|
4121 |
+
#~ msgstr "ربات های متا"
|
4122 |
+
|
4123 |
+
#~ msgid "noindex, follow"
|
4124 |
+
#~ msgstr "NOINDEX، به دنبال"
|
4125 |
+
|
4126 |
+
#~ msgid "Taxonomies"
|
4127 |
+
#~ msgstr "طبقه بندی"
|
4128 |
+
|
4129 |
+
#~ msgid "Other"
|
4130 |
+
#~ msgstr "دیگر"
|
4131 |
+
|
4132 |
+
#~ msgid "Author Page Title"
|
4133 |
+
#~ msgstr "عنوان برگه نویسنده"
|
4134 |
+
|
4135 |
+
#~ msgid "Set author page title format"
|
4136 |
+
#~ msgstr "مجموعه ای نویسنده فرمت عنوان صفحه"
|
4137 |
+
|
4138 |
+
#~ msgid "Author Page Description"
|
4139 |
+
#~ msgstr "نویسنده شرح صفحه"
|
4140 |
+
|
4141 |
+
#~ msgid "Set author page description"
|
4142 |
+
#~ msgstr "توضیحات صفحه را تنظیم کنید نویسنده"
|
4143 |
+
|
4144 |
+
#~ msgid "Author Meta Keywords"
|
4145 |
+
#~ msgstr "کلمات کلیدی متای نویسنده:"
|
4146 |
+
|
4147 |
+
#~ msgid "Set author page meta keywords"
|
4148 |
+
#~ msgstr "تنظیم صفحه نویسنده کلمات کلیدی متا"
|
4149 |
+
|
4150 |
+
#~ msgid "Metarobots"
|
4151 |
+
#~ msgstr "Metarobots"
|
4152 |
+
|
4153 |
+
#~ msgid "Disable Author Archives"
|
4154 |
+
#~ msgstr "آرشیو نویسنده راغیر فعال کنید"
|
4155 |
+
|
4156 |
+
#~ msgid "Disable Author archives SEO settings"
|
4157 |
+
#~ msgstr "بایگانی نویسنده غیر فعال کردن تنظیمات SEO"
|
4158 |
+
|
4159 |
+
#~ msgid "Date Achieves Title"
|
4160 |
+
#~ msgstr "تاریخ رسیدن به عنوان"
|
4161 |
+
|
4162 |
+
#~ msgid "Set date achieves title format"
|
4163 |
+
#~ msgstr "تنظیم تاریخ رسیدن به فرمت عنوان"
|
4164 |
+
|
4165 |
+
#~ msgid "Date Achieves Description"
|
4166 |
+
#~ msgstr "تاریخ رسیدن به شرح"
|
4167 |
+
|
4168 |
+
#~ msgid "Set date achieves description"
|
4169 |
+
#~ msgstr "تنظیم تاریخ رسیدن به توضیحات"
|
4170 |
+
|
4171 |
+
#~ msgid "Date achieves Meta Keywords"
|
4172 |
+
#~ msgstr "تاریخ رسیدن به کلمات کلیدی متا"
|
4173 |
+
|
4174 |
+
#~ msgid "Set date achieves meta keywords"
|
4175 |
+
#~ msgstr "تنظیم تاریخ رسیدن به کلمات کلیدی متا"
|
4176 |
+
|
4177 |
+
#~ msgid "Disable Date Archives"
|
4178 |
+
#~ msgstr "تاریخ آرشیو غیر فعال کردن"
|
4179 |
+
|
4180 |
+
#~ msgid "Disable date archives SEO settings"
|
4181 |
+
#~ msgstr "آرشیو تاریخ غیر فعال کردن تنظیمات SEO"
|
4182 |
+
|
4183 |
+
#~ msgid "Search Page Title"
|
4184 |
+
#~ msgstr "عنوان صفحه جستجو"
|
4185 |
+
|
4186 |
+
#~ msgid "Set search page title format"
|
4187 |
+
#~ msgstr "فرمت عنوان جستجو"
|
4188 |
+
|
4189 |
+
#~ msgid "404 Page Title"
|
4190 |
+
#~ msgstr "عنوان صفحه 404"
|
4191 |
+
|
4192 |
+
#~ msgid "Set 404 page title format"
|
4193 |
+
#~ msgstr "تنظیم صفحه 404 فرمت عنوان"
|
4194 |
+
|
4195 |
+
#~ msgid "404 Not Found"
|
4196 |
+
#~ msgstr "404 چیزی پیدا نشد "
|
4197 |
+
|
4198 |
+
#~ msgid "SEO Title"
|
4199 |
+
#~ msgstr "عنوان سئو"
|
4200 |
+
|
4201 |
+
#~ msgid "SEO Description"
|
4202 |
+
#~ msgstr "شرح سئو"
|
4203 |
+
|
4204 |
+
#~ msgid "Page Title"
|
4205 |
+
#~ msgstr "عنوان صفحه"
|
4206 |
+
|
4207 |
+
#~ msgid "Use Meta Keywords"
|
4208 |
+
#~ msgstr "استفاده از کلمات کلیدی متا:"
|
4209 |
+
|
4210 |
+
#~ msgid "Allow the use of meta keywords in posts and taxonomies"
|
4211 |
+
#~ msgstr "اجازه استفاده از کلمات کلیدی متا در پست ها و طبقه بندی"
|
4212 |
+
|
4213 |
+
#~ msgid "Google Webmasters"
|
4214 |
+
#~ msgstr "وب مستر گوگل"
|
4215 |
+
|
4216 |
+
#~ msgid "Insert Google Webmasters verification code"
|
4217 |
+
#~ msgstr "قرار دادن گوگل وب مستر کد امنیتی"
|
4218 |
+
|
4219 |
+
#~ msgid "Bing Webmasters"
|
4220 |
+
#~ msgstr "بینگ وب مستر ها"
|
4221 |
+
|
4222 |
+
#~ msgid "Insert Bing Webmasters verification code"
|
4223 |
+
#~ msgstr "قرار دادن بینگ وب مستر کد امنیتی"
|
4224 |
+
|
4225 |
+
#~ msgid "Webmasters"
|
4226 |
+
#~ msgstr "وب مستر ها"
|
4227 |
+
|
4228 |
+
#~ msgid "Webmaster %s already exists"
|
4229 |
+
#~ msgstr "وب مستر%s از قبل وجود دارد"
|
4230 |
+
|
4231 |
+
#~ msgid "Google"
|
4232 |
+
#~ msgstr "گوگل"
|
4233 |
+
|
4234 |
+
#~ msgid "Bing"
|
4235 |
+
#~ msgstr "بینگ"
|
4236 |
+
|
4237 |
+
#~ msgid "Check if you want to exclude this page"
|
4238 |
+
#~ msgstr "اگر شما می خواهید به حذف این صفحه"
|
4239 |
+
|
4240 |
+
#~ msgid "Check if you want to exclude this category"
|
4241 |
+
#~ msgstr "اگر شما می خواهید به حذف این دسته"
|
4242 |
+
|
4243 |
+
#~ msgid "Sitemap"
|
4244 |
+
#~ msgstr "نقشه سایت"
|
4245 |
+
|
4246 |
+
#~ msgid "View Sitemap"
|
4247 |
+
#~ msgstr "مشاهده نقشه سایت شما"
|
4248 |
+
|
4249 |
+
#~ msgid "Press button to view sitemap file"
|
4250 |
+
#~ msgstr "دکمه را فشار دهید برای مشاهده فایل نقشه سایت"
|
4251 |
+
|
4252 |
+
#~ msgid "XML Sitemap"
|
4253 |
+
#~ msgstr "نقشه سایت XML"
|
4254 |
+
|
4255 |
+
#~ msgid "Search Engines"
|
4256 |
+
#~ msgstr "موتورهای جستجو"
|
4257 |
+
|
4258 |
+
#~ msgid "After adding content the extension will automatically ping to:"
|
4259 |
+
#~ msgstr "پس از اضافه کردن محتوا پسوند به طور خودکار به خواهد پینگ:"
|
4260 |
+
|
4261 |
+
#~ msgid "Exclude Pages"
|
4262 |
+
#~ msgstr "به غیر از صفحات"
|
4263 |
+
|
4264 |
+
#~ msgid "Please check the pages you do not want to include in sitemap"
|
4265 |
+
#~ msgstr "لطفا صفحات را بررسی کنید شما نمی خواهید به در نقشه سایت"
|
4266 |
+
|
4267 |
+
#~ msgid "Exclude Categories"
|
4268 |
+
#~ msgstr "حذف دسته"
|
4269 |
+
|
4270 |
+
#~ msgid "Please check the categories you do not want to include in sitemap"
|
4271 |
+
#~ msgstr "لطفا دسته چک شما نمی خواهید به در نقشه سایت"
|
4272 |
+
|
4273 |
+
#~ msgid "Invalid send method"
|
4274 |
+
#~ msgstr "روش نامعتبر"
|
4275 |
+
|
4276 |
+
#~ msgid "The message has been successfully sent!"
|
4277 |
+
#~ msgstr "پیام با موفقیت ارسال شد."
|
4278 |
+
|
4279 |
+
#~ msgid "Invalid email configuration"
|
4280 |
+
#~ msgstr "پیکربندی ایمیل نامعتبر"
|
4281 |
+
|
4282 |
+
#~ msgid "Email sent"
|
4283 |
+
#~ msgstr "ارسال ایمیل"
|
4284 |
+
|
4285 |
+
#~ msgid "Could not send via smtp"
|
4286 |
+
#~ msgstr "نمی تواند از طریق SMTP ارسال"
|
4287 |
+
|
4288 |
+
#~ msgid "Could not send via wp_mail"
|
4289 |
+
#~ msgstr "نمی تواند از طریق wp_mail ارسال"
|
4290 |
+
|
4291 |
+
#~ msgid "Server Address"
|
4292 |
+
#~ msgstr "آدرس سرور"
|
4293 |
+
|
4294 |
+
#~ msgid "Enter your email server"
|
4295 |
+
#~ msgstr "سرور ایمیل خود را وارد کنید"
|
4296 |
+
|
4297 |
+
#~ msgid "Username"
|
4298 |
+
#~ msgstr "نام کاربری"
|
4299 |
+
|
4300 |
+
#~ msgid "Enter your username"
|
4301 |
+
#~ msgstr "نام کاربری خود را وارد کنید"
|
4302 |
+
|
4303 |
+
#~ msgid "Password"
|
4304 |
+
#~ msgstr "کلمه عبور"
|
4305 |
+
|
4306 |
+
#~ msgid "Enter your password"
|
4307 |
+
#~ msgstr "رمز عبور خود را وارد کنید"
|
4308 |
+
|
4309 |
+
#~ msgid "Secure Connection"
|
4310 |
+
#~ msgstr "از قابلیت اتصال ایمن استفاده کنید"
|
4311 |
+
|
4312 |
+
#~ msgid "Optional - SMTP port number to use."
|
4313 |
+
#~ msgstr "اختیاری - شماره پورت SMTP استفاده کنید."
|
4314 |
+
|
4315 |
+
#~ msgid "Leave blank for default (SMTP - 25, SMTPS - 465)"
|
4316 |
+
#~ msgstr "خالی بگذارید به طور پیش فرض (SMTP - 25، SMTPS - 465)"
|
4317 |
+
|
4318 |
+
#~ msgid "Username cannot be empty"
|
4319 |
+
#~ msgstr "نام کاربری نمی تواند خالی باشد"
|
4320 |
+
|
4321 |
+
#~ msgid "Password cannot be empty"
|
4322 |
+
#~ msgstr "رمز عبور نمی تواند خالی باشد."
|
4323 |
+
|
4324 |
+
#~ msgid "Invalid host"
|
4325 |
+
#~ msgstr "غیر واقعی"
|
4326 |
+
|
4327 |
+
#~ msgid "Could not send the email"
|
4328 |
+
#~ msgstr "می تواند ایمیل ارسال کنید"
|
4329 |
+
|
4330 |
+
#~ msgid "Send Method"
|
4331 |
+
#~ msgstr "شیوه ارسال"
|
4332 |
+
|
4333 |
+
#~ msgid "Select the send form method"
|
4334 |
+
#~ msgstr "روش ارسال فرم را انتخاب کنید"
|
4335 |
+
|
4336 |
+
#~ msgid "From Name"
|
4337 |
+
#~ msgstr "از نام"
|
4338 |
+
|
4339 |
+
#~ msgid "The name you'll see in the From filed in your email client."
|
4340 |
+
#~ msgstr "نامی که در فیلد \"از طرف\" در ایمیل خود مشاهده خواهید کرد."
|
4341 |
+
|
4342 |
+
#~ msgid "From Address"
|
4343 |
+
#~ msgstr "ایمیل فرستنده"
|
4344 |
+
|
4345 |
+
#~ msgid "The form will look like was sent from this email address."
|
4346 |
+
#~ msgstr ""
|
4347 |
+
#~ "این آدرس ایمیل بعنوان آدرس فرستنده در ایمیل شما قابل مشاهده خواهد بود."
|
4348 |
+
|
4349 |
+
#~ msgid "Lesson"
|
4350 |
+
#~ msgstr "درس"
|
4351 |
+
|
4352 |
+
#~ msgid "Lessons"
|
4353 |
+
#~ msgstr "دروس"
|
4354 |
+
|
4355 |
+
#, fuzzy
|
4356 |
+
#~| msgid "Creates a section"
|
4357 |
+
#~ msgid "Create a lesson"
|
4358 |
+
#~ msgstr "ایجاد یک درس"
|
4359 |
+
|
4360 |
+
#~ msgid "Course"
|
4361 |
+
#~ msgstr "دوره"
|
4362 |
+
|
4363 |
+
#~ msgid "Courses"
|
4364 |
+
#~ msgstr "دوره ها"
|
4365 |
+
|
4366 |
+
#, fuzzy
|
4367 |
+
#~| msgid "Create your tabs"
|
4368 |
+
#~ msgid "Create a course"
|
4369 |
+
#~ msgstr "ایجاد دوره"
|
4370 |
+
|
4371 |
+
#~ msgid "Course Category"
|
4372 |
+
#~ msgstr "دسته ی دوره"
|
4373 |
+
|
4374 |
+
#~ msgid "Course Categories"
|
4375 |
+
#~ msgstr "دسته بندی دوره"
|
4376 |
+
|
4377 |
+
#~ msgid "Search categories"
|
4378 |
+
#~ msgstr "جستجو دسته بندی ها"
|
4379 |
+
|
4380 |
+
#~ msgid "Add New category"
|
4381 |
+
#~ msgstr "افزودن موضوع جدید"
|
4382 |
+
|
4383 |
+
#~ msgid "View all courses"
|
4384 |
+
#~ msgstr "نمایش همه دروه ها"
|
4385 |
+
|
4386 |
+
#, fuzzy
|
4387 |
+
#~| msgid "No Sliders Available"
|
4388 |
+
#~ msgid "No courses available"
|
4389 |
+
#~ msgstr "هیچ دوره های موجود"
|
4390 |
+
|
4391 |
+
#, fuzzy
|
4392 |
+
#~| msgid "Course"
|
4393 |
+
#~ msgid "Without Course"
|
4394 |
+
#~ msgstr "بدون دوره"
|
4395 |
+
|
4396 |
+
#~ msgid "Select Course"
|
4397 |
+
#~ msgstr "انتخاب دوره"
|
4398 |
+
|
4399 |
+
#~ msgid "Quiz"
|
4400 |
+
#~ msgstr "آزمون"
|
4401 |
+
|
4402 |
+
#, fuzzy
|
4403 |
+
#~| msgid "Media Elements"
|
4404 |
+
#~ msgid "Quiz Elements"
|
4405 |
+
#~ msgstr "عناصر مسابقه"
|
4406 |
+
|
4407 |
+
#, fuzzy
|
4408 |
+
#~| msgid "Invalid settings"
|
4409 |
+
#~ msgid "Quiz settings"
|
4410 |
+
#~ msgstr "تنظیمات آزمون"
|
4411 |
+
|
4412 |
+
#, fuzzy
|
4413 |
+
#~ msgid "Quiz Passmark Points"
|
4414 |
+
#~ msgstr "مسابقه Passmark امتیاز"
|
4415 |
+
|
4416 |
+
#, fuzzy
|
4417 |
+
#~ msgid "The points number at which the test will be passed."
|
4418 |
+
#~ msgstr "تعداد نقاط در آن آزمون منتقل خواهد شد."
|
4419 |
+
|
4420 |
+
#, fuzzy
|
4421 |
+
#~| msgid "Lesson"
|
4422 |
+
#~ msgid "Lesson Quiz"
|
4423 |
+
#~ msgstr "آزمون درس."
|
4424 |
+
|
4425 |
+
#~ msgid "Invalid Quiz"
|
4426 |
+
#~ msgstr "خطا در آزمون"
|
4427 |
+
|
4428 |
+
#, fuzzy
|
4429 |
+
#~ msgid "Sorry, you did not pass the test"
|
4430 |
+
#~ msgstr "با عرض پوزش، شما تست را بخشکاند"
|
4431 |
+
|
4432 |
+
#, fuzzy
|
4433 |
+
#~| msgid "Congratulations"
|
4434 |
+
#~ msgid "Congratulation, you passed the test"
|
4435 |
+
#~ msgstr "تبریک, شما تصویب آزمون"
|
4436 |
+
|
4437 |
+
#, fuzzy
|
4438 |
+
#~ msgid "You answered correctly %s questions from %s"
|
4439 |
+
#~ msgstr "پاسخ شما به درستی سوال %s در %s"
|
4440 |
+
|
4441 |
+
#~ msgid "Back to"
|
4442 |
+
#~ msgstr "برگشت به"
|
4443 |
+
|
4444 |
+
#~ msgid "Start Quiz"
|
4445 |
+
#~ msgstr "شروع آزمون"
|
4446 |
+
|
4447 |
+
#, fuzzy
|
4448 |
+
#~| msgid "Correct answer"
|
4449 |
+
#~ msgid "Correct answers"
|
4450 |
+
#~ msgstr "جواب های صحیح"
|
4451 |
+
|
4452 |
+
#, fuzzy
|
4453 |
+
#~| msgid "Correct answer"
|
4454 |
+
#~ msgid "Add correct answer variants"
|
4455 |
+
#~ msgstr "اضافه کردن پاسخ صحیح انواع"
|
4456 |
+
|
4457 |
+
#, fuzzy
|
4458 |
+
#~| msgid "Correct Answer"
|
4459 |
+
#~ msgid "Set Correct Answer"
|
4460 |
+
#~ msgstr "پاسخ صحیح را تنظیم کنید"
|
4461 |
+
|
4462 |
+
#, fuzzy
|
4463 |
+
#~ msgid "Wrong answers"
|
4464 |
+
#~ msgstr "پاسخ اشتباه"
|
4465 |
+
|
4466 |
+
#, fuzzy
|
4467 |
+
#~ msgid "Add wrong answer variants"
|
4468 |
+
#~ msgstr "اضافه کردن انواع پاسخ اشتباه"
|
4469 |
+
|
4470 |
+
#, fuzzy
|
4471 |
+
#~| msgid "Correct Answer"
|
4472 |
+
#~ msgid "Set Wrong Answer"
|
4473 |
+
#~ msgstr "جواب نادرست"
|
4474 |
+
|
4475 |
+
#, fuzzy
|
4476 |
+
#~| msgid "Create"
|
4477 |
+
#~ msgid "Creates a"
|
4478 |
+
#~ msgstr "ایجاد یک"
|
4479 |
+
|
4480 |
+
#~ msgid "item"
|
4481 |
+
#~ msgstr "مورد"
|
4482 |
+
|
4483 |
+
#, fuzzy
|
4484 |
+
#~| msgid "Add/Edit Testimonial"
|
4485 |
+
#~ msgid "Add/Edit Question"
|
4486 |
+
#~ msgstr "افزودن/ویرایش سوال"
|
4487 |
+
|
4488 |
+
#~ msgid "More"
|
4489 |
+
#~ msgstr "مطالب ویژه :"
|
4490 |
+
|
4491 |
+
#, fuzzy
|
4492 |
+
#~ msgid "The question label is empty"
|
4493 |
+
#~ msgstr "برچسب خالی است"
|
4494 |
+
|
4495 |
+
#, fuzzy
|
4496 |
+
#~| msgid "Invalid byte position"
|
4497 |
+
#~ msgid "Invalid mark point number"
|
4498 |
+
#~ msgstr "موقعیت بایت نامعتبر"
|
4499 |
+
|
4500 |
+
#, fuzzy
|
4501 |
+
#~ msgid "There needs to be at least one correct answer"
|
4502 |
+
#~ msgstr "نیاز به حداقل یک پاسخ صحیح وجود دارد"
|
4503 |
+
|
4504 |
+
#~ msgid "Correct answer"
|
4505 |
+
#~ msgstr "جواب صحیح"
|
4506 |
+
|
4507 |
+
#, fuzzy
|
4508 |
+
#~ msgid "The question answer will be true or false"
|
4509 |
+
#~ msgstr "پاسخ سوال خواهد شد درست و یا غلط"
|
4510 |
+
|
4511 |
+
#~ msgid "True"
|
4512 |
+
#~ msgstr "صحیح"
|
4513 |
+
|
4514 |
+
#~ msgid "False"
|
4515 |
+
#~ msgstr "غلط"
|
4516 |
+
|
4517 |
+
#~ msgid "True/False"
|
4518 |
+
#~ msgstr "درست/نادرست"
|
4519 |
+
|
4520 |
+
#, fuzzy
|
4521 |
+
#~ msgid "Text before gap"
|
4522 |
+
#~ msgstr "متن قبل از جای خالی"
|
4523 |
+
|
4524 |
+
#~ msgid "Gap"
|
4525 |
+
#~ msgstr "فاصله"
|
4526 |
+
|
4527 |
+
#, fuzzy
|
4528 |
+
#~ msgid "Text after gap"
|
4529 |
+
#~ msgstr "متن بعد از جای خالی"
|
4530 |
+
|
4531 |
+
#~ msgid "Gap Fill"
|
4532 |
+
#~ msgstr "پر کردن جای خالی"
|
4533 |
+
|
4534 |
+
#, fuzzy
|
4535 |
+
#~| msgid "Gap Fill"
|
4536 |
+
#~ msgid "Gap _____ Fill"
|
4537 |
+
#~ msgstr "پر کردن جای خالی"
|
4538 |
+
|
4539 |
+
#, fuzzy
|
4540 |
+
#~ msgid "At least one of the fields ( %s or %s ) has to ve filled with text"
|
4541 |
+
#~ msgstr "حداقل یکی از رشته های (%s یا %s) به پیروزی با متن پر است"
|
4542 |
+
|
4543 |
+
#~ msgid "Correct Answer"
|
4544 |
+
#~ msgstr "پاسخ درست"
|
4545 |
+
|
4546 |
+
#, fuzzy
|
4547 |
+
#~| msgid "Correct answer"
|
4548 |
+
#~ msgid "Write the correct answer text"
|
4549 |
+
#~ msgstr "نوشتن متن پاسخ صحیح"
|
4550 |
+
|
4551 |
+
#, fuzzy
|
4552 |
+
#~ msgid "Add wrong answers variants"
|
4553 |
+
#~ msgstr "اضافه کردن انواع پاسخ اشتباه"
|
4554 |
+
|
4555 |
+
#, fuzzy
|
4556 |
+
#~| msgid "Password cannot be empty"
|
4557 |
+
#~ msgid "Correct answer cannot be empty"
|
4558 |
+
#~ msgstr "جواب صحیح نمیتواند خالی باشد"
|
4559 |
+
|
4560 |
+
#, fuzzy
|
4561 |
+
#~ msgid "There are not any wrong answers set"
|
4562 |
+
#~ msgstr "هستند نه هر مجموعه پاسخ اشتباه"
|
4563 |
+
|
4564 |
+
#~ msgid "Question"
|
4565 |
+
#~ msgstr "سوالات"
|
4566 |
+
|
4567 |
+
#, fuzzy
|
4568 |
+
#~ msgid "Type the question..."
|
4569 |
+
#~ msgstr "سؤال"
|
4570 |
+
|
4571 |
+
#~ msgid "Points"
|
4572 |
+
#~ msgstr "امتیازی"
|
4573 |
+
|
4574 |
+
#, fuzzy
|
4575 |
+
#~| msgid "Number of courses"
|
4576 |
+
#~ msgid "Get list of courses"
|
4577 |
+
#~ msgstr "تعداد دوره ها"
|
4578 |
+
|
4579 |
+
#, fuzzy
|
4580 |
+
#~| msgid "Courses"
|
4581 |
+
#~ msgid "Lesson Courses"
|
4582 |
+
#~ msgstr "دوره های درس"
|
4583 |
+
|
4584 |
+
#~ msgid "Number of courses"
|
4585 |
+
#~ msgstr "تعداد دوره ها"
|
4586 |
+
|
4587 |
+
#~ msgid "Google Analytics"
|
4588 |
+
#~ msgstr "گوگل انالیز"
|
4589 |
+
|
4590 |
+
#, fuzzy
|
4591 |
+
#~ msgid "Enter your Google Analytics code (Ex: UA-XXXXX-X)"
|
4592 |
+
#~ msgstr "را وارد کنید کد گوگل آنالیز (سابق: UA XXXXX اکس)"
|
4593 |
+
|
4594 |
+
#~ msgid "Blog"
|
4595 |
+
#~ msgstr "بلاگ"
|
4596 |
+
|
4597 |
+
#~ msgid "Add blog post"
|
4598 |
+
#~ msgstr "اضافه کردن پست وبلاگ"
|
4599 |
+
|
4600 |
+
#, fuzzy
|
4601 |
+
#~| msgid "Add blog post"
|
4602 |
+
#~ msgid "Add new blog post"
|
4603 |
+
#~ msgstr "افزودن نوشته جدید"
|
4604 |
+
|
4605 |
+
#, fuzzy
|
4606 |
+
#~| msgid "Add blog post"
|
4607 |
+
#~ msgid "All blog posts"
|
4608 |
+
#~ msgstr "همه نوشته ها"
|
4609 |
+
|
4610 |
+
#, fuzzy
|
4611 |
+
#~| msgid "Add blog post"
|
4612 |
+
#~ msgid "Edit blog post"
|
4613 |
+
#~ msgstr "ویرایش نوشته"
|
4614 |
+
|
4615 |
+
#~ msgid "Blog Post"
|
4616 |
+
#~ msgstr "مطلب بلاگ"
|
4617 |
+
|
4618 |
+
#, fuzzy
|
4619 |
+
#~| msgid "Add blog post"
|
4620 |
+
#~ msgid "New blog post"
|
4621 |
+
#~ msgstr "افزودن نوشته جدید"
|
4622 |
+
|
4623 |
+
#, fuzzy
|
4624 |
+
#~| msgid "No items found."
|
4625 |
+
#~ msgid "No blog posts found"
|
4626 |
+
#~ msgstr "مطلبی موجود نیست"
|
4627 |
+
|
4628 |
+
#, fuzzy
|
4629 |
+
#~| msgid "No Sliders found in Trash"
|
4630 |
+
#~ msgid "No blog posts found in trash"
|
4631 |
+
#~ msgstr "نوشتهای در سطل یافت نشد"
|
4632 |
+
|
4633 |
+
#, fuzzy
|
4634 |
+
#~| msgid "Add blog post"
|
4635 |
+
#~ msgid "Search blog posts"
|
4636 |
+
#~ msgstr "جستجوی نوشته ها"
|
4637 |
+
|
4638 |
+
#, fuzzy
|
4639 |
+
#~| msgid "Add blog post"
|
4640 |
+
#~ msgid "View blog post"
|
4641 |
+
#~ msgstr "نمایش نوشته"
|
4642 |
+
|
4643 |
+
#~ msgid "Blog Posts"
|
4644 |
+
#~ msgstr "پست ها وبلاگ"
|
4645 |
+
|
4646 |
+
#~ msgid "Blog Categories"
|
4647 |
+
#~ msgstr "دسته بندی وبلاگ"
|
4648 |
+
|
4649 |
+
#, fuzzy
|
4650 |
+
#~| msgid "You have no permissions to change settings options"
|
4651 |
+
#~ msgid "You have no permission to change Styling options"
|
4652 |
+
#~ msgstr "شما اجازه تغییر گزینه های ظاهر طراحی شده"
|
4653 |
+
|
4654 |
+
#, fuzzy
|
4655 |
+
#~ msgid "Switch Style Panel"
|
4656 |
+
#~ msgstr "سوئیچ سبک پانل"
|
4657 |
+
|
4658 |
+
#, fuzzy
|
4659 |
+
#~ msgid ""
|
4660 |
+
#~ "Show on the front-end a panel that allows the user to make the switch "
|
4661 |
+
#~ "between predefined styles."
|
4662 |
+
#~ msgstr ""
|
4663 |
+
#~ "در بخش جلویی پانل است که اجازه می دهد تا کاربر را به سوئیچ بین سبک های از "
|
4664 |
+
#~ "پیش تعریف شده را نشان دهد."
|
4665 |
+
|
4666 |
+
#, fuzzy
|
4667 |
+
#~ msgid "Frontend Style Switcher"
|
4668 |
+
#~ msgstr "سیستمهای ظاهر سبک"
|
4669 |
+
|
4670 |
+
#, fuzzy
|
4671 |
+
#~ msgid "Enable frontend style switcher"
|
4672 |
+
#~ msgstr "فعال کردن ظاهر سبک سیستمهای"
|
4673 |
+
|
4674 |
+
#, fuzzy
|
4675 |
+
#~| msgid "This text will be displayed when the form will fail to be sent"
|
4676 |
+
#~ msgid "The text that will be displayed at the top of the panel."
|
4677 |
+
#~ msgstr "متن که در بالای صفحه نمایش داده می شود."
|
4678 |
+
|
4679 |
+
#~ msgid "Background"
|
4680 |
+
#~ msgstr "پس زمینه"
|
4681 |
+
|
4682 |
+
#~ msgid "Predefined Styles"
|
4683 |
+
#~ msgstr "استایل های از پیش تعریف شده"
|
4684 |
+
|
4685 |
+
#, fuzzy
|
4686 |
+
#~ msgid "This is a simplified preview, not changes are reflected."
|
4687 |
+
#~ msgstr "این پیش نمایش ساده شده است، هنوز تغییرات منعکس شده است."
|
4688 |
+
|
4689 |
+
#~ msgid "Reviews"
|
4690 |
+
#~ msgstr "بررسی ها"
|
4691 |
+
|
4692 |
+
#, fuzzy
|
4693 |
+
#~| msgid ""
|
4694 |
+
#~| "Select the posts you want the Page Builder extension to be activated for"
|
4695 |
+
#~ msgid ""
|
4696 |
+
#~ "Select the options you want the Feedback extension to be activated for"
|
4697 |
+
#~ msgstr "انتخاب گزینه های شما می خواهید فرمت بازخورد برای فعال"
|
4698 |
+
|
4699 |
+
#, fuzzy
|
4700 |
+
#~| msgid "Feedback"
|
4701 |
+
#~ msgid "FeedBack"
|
4702 |
+
#~ msgstr "بازخورد"
|
4703 |
+
|
4704 |
+
#~ msgid "Rating:"
|
4705 |
+
#~ msgstr "امتیاز:"
|
4706 |
+
|
4707 |
+
#~ msgid "Feedback Stars"
|
4708 |
+
#~ msgstr "ستاره های بازخورد"
|
4709 |
+
|
4710 |
+
#~ msgid "Rating"
|
4711 |
+
#~ msgstr "رتبه"
|
4712 |
+
|
4713 |
+
#~ msgid "ERROR"
|
4714 |
+
#~ msgstr "خطا"
|
4715 |
+
|
4716 |
+
#~ msgid "please rate the post."
|
4717 |
+
#~ msgstr "لطفا به این مطلب امتیاز دهید."
|
4718 |
+
|
4719 |
+
#~ msgid "FeedBack Stars"
|
4720 |
+
#~ msgstr "امتیاز"
|
4721 |
+
|
4722 |
+
#~ msgid "Allows visitors to appreciate a post using star rating"
|
4723 |
+
#~ msgstr "اجازه دادن به بازدید کنندگان برای امتیاز دهی ستاره ای به مطلب"
|
4724 |
+
|
4725 |
+
#~ msgid "Pingback:"
|
4726 |
+
#~ msgstr "بازخورد:"
|
4727 |
+
|
4728 |
+
#~ msgid "(Edit)"
|
4729 |
+
#~ msgstr "(ویرایش )"
|
4730 |
+
|
4731 |
+
#~ msgid "Post author"
|
4732 |
+
#~ msgstr "پست نویسنده"
|
4733 |
+
|
4734 |
+
#~ msgid "%1$s at %2$s"
|
4735 |
+
#~ msgstr "%1$s در %2$s"
|
4736 |
+
|
4737 |
+
#~ msgid "Your comment is awaiting moderation."
|
4738 |
+
#~ msgstr "نظر شما در انتظار تایید مدیریت است."
|
4739 |
+
|
4740 |
+
#~ msgid "says"
|
4741 |
+
#~ msgstr "می گوید"
|
4742 |
+
|
4743 |
+
#~ msgid "Based on %s Votes"
|
4744 |
+
#~ msgstr "براساس %s رای"
|
4745 |
+
|
4746 |
+
#~ msgid "Rating System"
|
4747 |
+
#~ msgstr "سیستم رتبه دهی"
|
4748 |
+
|
4749 |
+
#~ msgid "Enter the number of stars you want in the rating system"
|
4750 |
+
#~ msgstr "تعداد ستاره هایی که برای این سیستم رتبه دهی می خواهید را وارد کنید"
|
4751 |
+
|
4752 |
+
#~ msgid "5 stars"
|
4753 |
+
#~ msgstr "5 ستاره"
|
4754 |
+
|
4755 |
+
#~ msgid "7 stars"
|
4756 |
+
#~ msgstr "7 ستاره"
|
4757 |
+
|
4758 |
+
#~ msgid "10 stars"
|
4759 |
+
#~ msgstr "10 ستاره"
|
4760 |
+
|
4761 |
+
#~ msgid "Comment navigation"
|
4762 |
+
#~ msgstr "موقیت نظر"
|
4763 |
+
|
4764 |
+
#~ msgid "← Older Comments"
|
4765 |
+
#~ msgstr "نظرات قدیمی تر← "
|
4766 |
+
|
4767 |
+
#~ msgid "Newer Comments →"
|
4768 |
+
#~ msgstr "جدیدترین نظرات ←"
|
4769 |
+
|
4770 |
+
#~ msgid "Comments are closed."
|
4771 |
+
#~ msgstr "نظردهی بسته شده است ."
|
4772 |
+
|
4773 |
+
#~ msgid "Team Member Image"
|
4774 |
+
#~ msgstr "تصویر"
|
4775 |
+
|
4776 |
+
#~ msgid "Team Member Name"
|
4777 |
+
#~ msgstr "نام عضو تیم"
|
4778 |
+
|
4779 |
+
#~ msgid "Name of the person"
|
4780 |
+
#~ msgstr "نام شخص"
|
4781 |
+
|
4782 |
+
#~ msgid "Team Member Job Title"
|
4783 |
+
#~ msgstr "عنوان شغلی"
|
4784 |
+
|
4785 |
+
#~ msgid "Job title of the person."
|
4786 |
+
#~ msgstr "عنون شغل فرد"
|
4787 |
+
|
4788 |
+
#~ msgid "Team Member Description"
|
4789 |
+
#~ msgstr "توضیحات اعضای گروه"
|
4790 |
+
|
4791 |
+
#~ msgid "Enter a few words that describe the person"
|
4792 |
+
#~ msgstr "توضیحات لازم برای این فرد را وارد نمائید."
|
4793 |
+
|
4794 |
+
#~ msgid "Icon"
|
4795 |
+
#~ msgstr "آیکون"
|
4796 |
+
|
4797 |
+
#~ msgid "Add an Icon"
|
4798 |
+
#~ msgstr "افزودن آیکون"
|
4799 |
+
|
4800 |
+
#~ msgid "Icon title"
|
4801 |
+
#~ msgstr "عنوان آیکون"
|
4802 |
+
|
4803 |
+
#~ msgid "Add an Icon Box"
|
4804 |
+
#~ msgstr "افزودن یک جعبه آیکن"
|
4805 |
+
|
4806 |
+
#~ msgid "Box Style"
|
4807 |
+
#~ msgstr "استایل جعبه"
|
4808 |
+
|
4809 |
+
#~ msgid "Icon above title"
|
4810 |
+
#~ msgstr "آیکون بالای عنوان"
|
4811 |
+
|
4812 |
+
#~ msgid "Icon in line with title"
|
4813 |
+
#~ msgstr "آیکون داخل خط به همراه عنوان"
|
4814 |
+
|
4815 |
+
#~ msgid "Choose an Icon"
|
4816 |
+
#~ msgstr "انتخاب آیکون"
|
4817 |
+
|
4818 |
+
#~ msgid "Title of the Box"
|
4819 |
+
#~ msgstr "عنوان جعبه"
|
4820 |
+
|
4821 |
+
#~ msgid "Enter the desired content"
|
4822 |
+
#~ msgstr "وارد کردن محتوای دلخواه"
|
4823 |
+
|
4824 |
+
#~ msgid "Button Color"
|
4825 |
+
#~ msgstr "رنگ دکمه"
|
4826 |
+
|
4827 |
+
#~ msgid "Choose a color for your button"
|
4828 |
+
#~ msgstr "انتخاب رنگ برای دکمه شما"
|
4829 |
+
|
4830 |
+
#~ msgid "Default"
|
4831 |
+
#~ msgstr "پیشفرض"
|
4832 |
+
|
4833 |
+
#~ msgid "Black"
|
4834 |
+
#~ msgstr "سیاد"
|
4835 |
+
|
4836 |
+
#~ msgid "Blue"
|
4837 |
+
#~ msgstr "آبی"
|
4838 |
+
|
4839 |
+
#~ msgid "Green"
|
4840 |
+
#~ msgstr "سبز"
|
4841 |
+
|
4842 |
+
#~ msgid "Red"
|
4843 |
+
#~ msgstr "قرمز"
|
4844 |
+
|
4845 |
+
#~ msgid "Media Elements"
|
4846 |
+
#~ msgstr "المان های رسانه"
|
4847 |
+
|
4848 |
+
#~ msgid "Calendar"
|
4849 |
+
#~ msgstr "تقویم"
|
4850 |
+
|
4851 |
+
#~ msgid "Add a Calendar"
|
4852 |
+
#~ msgstr "افزودن تقویم"
|
4853 |
+
|
4854 |
+
#~ msgid "Select calendar population method (Ex: events, custom)"
|
4855 |
+
#~ msgstr "روش دریافت تقویم را انتخاب نمائید .(مثال: رویداد، سفارشی)"
|
4856 |
+
|
4857 |
+
#~ msgid "Calendar Type"
|
4858 |
+
#~ msgstr "نوع تقویم"
|
4859 |
+
|
4860 |
+
#~ msgid "Select calendar type"
|
4861 |
+
#~ msgstr "انتخاب کنید نوع تقویم"
|
4862 |
+
|
4863 |
+
#~ msgid "Start Week On"
|
4864 |
+
#~ msgstr "روز آغازین هفته"
|
4865 |
+
|
4866 |
+
#~ msgid "Select first day of week"
|
4867 |
+
#~ msgstr "روز اول هفته را انتخاب کنید"
|
4868 |
+
|
4869 |
+
#~ msgid "Monday"
|
4870 |
+
#~ msgstr "دوشنبه"
|
4871 |
+
|
4872 |
+
#~ msgid "Sunday"
|
4873 |
+
#~ msgstr "یکشنبه"
|
4874 |
+
|
4875 |
+
#~ msgid "Add/Edit Date & Time"
|
4876 |
+
#~ msgstr "افزودن / ویرایش تاریخ و زمان"
|
4877 |
+
|
4878 |
+
#~ msgid "Note: Please set start & end event datetime"
|
4879 |
+
#~ msgstr "توجه: لطفا مجموعه ای شروع و پایان رویداد حسگر ناحیه رنگی"
|
4880 |
+
|
4881 |
+
#~ msgid "Event Title"
|
4882 |
+
#~ msgstr "عنوان رویداد"
|
4883 |
+
|
4884 |
+
#~ msgid "Enter the event title"
|
4885 |
+
#~ msgstr "عنوان رویداد را وارد کنید"
|
4886 |
+
|
4887 |
+
#~ msgid "Event URL"
|
4888 |
+
#~ msgstr "رویداد"
|
4889 |
+
|
4890 |
+
#~ msgid "Enter the event URL (Ex: http://your-domain.com/event)"
|
4891 |
+
#~ msgstr "لینک رویداد را وارد کنید (مثال: https://nasimnet.ir/event)"
|
4892 |
+
|
4893 |
+
#~ msgid "Date & Time"
|
4894 |
+
#~ msgstr "تاریخ و زمان"
|
4895 |
+
|
4896 |
+
#~ msgid "Enter the event date & time"
|
4897 |
+
#~ msgstr "تاریخ رویداد و زمان را وارد کنید"
|
4898 |
+
|
4899 |
+
#~ msgid "No events provider specified for calendar shortcode"
|
4900 |
+
#~ msgstr "بدون ارائه دهنده حوادث مشخص برای کوتاه تقویم"
|
4901 |
+
|
4902 |
+
#~ msgid "Unknown events provider \"%s\" specified for calendar shortcode"
|
4903 |
+
#~ msgstr "حوادث نامشخص ارائه دهنده \"%s\" را مشخص برای کوتاه تقویم"
|
4904 |
+
|
4905 |
+
#~ msgid "Event"
|
4906 |
+
#~ msgstr "رویداد"
|
4907 |
+
|
4908 |
+
#~ msgid "Today"
|
4909 |
+
#~ msgstr "امروز"
|
4910 |
+
|
4911 |
+
#~ msgid "Calendar: View %s not found"
|
4912 |
+
#~ msgstr "تقویم: نمایش%s یافت نشد"
|
4913 |
+
|
4914 |
+
#~ msgid ""
|
4915 |
+
#~ "Calendar: Wrong date format %s. Should be either \"now\" or \"yyyy-mm-dd\""
|
4916 |
+
#~ msgstr "تقویم: تاریخ اشتباه قالب %s. “اکنون” یا “yyyy-mm-dd” باید"
|
4917 |
+
|
4918 |
+
#~ msgid "Calendar: Event URL is not set"
|
4919 |
+
#~ msgstr "تقویم: URL رویداد تنظیم نشده است"
|
4920 |
+
|
4921 |
+
#~ msgid ""
|
4922 |
+
#~ "Calendar: Wrong navigation direction %s. Can be only \"next\" or \"prev\" "
|
4923 |
+
#~ "or \"today\""
|
4924 |
+
#~ msgstr ""
|
4925 |
+
#~ "تقویم: ناوبری اشتباه جهت %s. “تنها”بعدی”یا قبلی” و یا “امروز” را می توان"
|
4926 |
+
|
4927 |
+
#~ msgid ""
|
4928 |
+
#~ "Calendar: Time split parameter should divide 60 without decimals. "
|
4929 |
+
#~ "Something like 10, 15, 30"
|
4930 |
+
#~ msgstr ""
|
4931 |
+
#~ "تقویم: پارامتر تقسیم زمان باید 60 بدون اعشار تقسیم می شوند. چیزی در حدود "
|
4932 |
+
#~ "10، 15، 30"
|
4933 |
+
|
4934 |
+
#~ msgid "No events in this day."
|
4935 |
+
#~ msgstr "هیج رویدادی در این روز یافت نشد."
|
4936 |
+
|
4937 |
+
#~ msgid "week %s of %s"
|
4938 |
+
#~ msgstr "%sاز%s"
|
4939 |
+
|
4940 |
+
#~ msgid "Week "
|
4941 |
+
#~ msgstr "هفته"
|
4942 |
+
|
4943 |
+
#~ msgid "All day"
|
4944 |
+
#~ msgstr "تمام روز"
|
4945 |
+
|
4946 |
+
#~ msgid "Time"
|
4947 |
+
#~ msgstr "زمان"
|
4948 |
+
|
4949 |
+
#~ msgid "Ends before timeline"
|
4950 |
+
#~ msgstr "قبل از تایم لاین به پایان می رسد"
|
4951 |
+
|
4952 |
+
#~ msgid "Starts after timeline"
|
4953 |
+
#~ msgstr "شروع می شود پس از تایم لاین"
|
4954 |
+
|
4955 |
+
#~ msgid "January"
|
4956 |
+
#~ msgstr "ژانویه"
|
4957 |
+
|
4958 |
+
#~ msgid "February"
|
4959 |
+
#~ msgstr "فوريه"
|
4960 |
+
|
4961 |
+
#~ msgid "March"
|
4962 |
+
#~ msgstr "مارس"
|
4963 |
+
|
4964 |
+
#~ msgid "April"
|
4965 |
+
#~ msgstr "آوریل"
|
4966 |
+
|
4967 |
+
#~ msgid "May"
|
4968 |
+
#~ msgstr "مه"
|
4969 |
+
|
4970 |
+
#~ msgid "June"
|
4971 |
+
#~ msgstr "ژوئن"
|
4972 |
+
|
4973 |
+
#~ msgid "July"
|
4974 |
+
#~ msgstr "ژوئیه"
|
4975 |
+
|
4976 |
+
#~ msgid "August"
|
4977 |
+
#~ msgstr "اوت"
|
4978 |
+
|
4979 |
+
#~ msgid "September"
|
4980 |
+
#~ msgstr "سپتامبر"
|
4981 |
+
|
4982 |
+
#~ msgid "October"
|
4983 |
+
#~ msgstr "اکتبر"
|
4984 |
+
|
4985 |
+
#~ msgid "November"
|
4986 |
+
#~ msgstr "نوامبر"
|
4987 |
+
|
4988 |
+
#~ msgid "December"
|
4989 |
+
#~ msgstr "دسامبر"
|
4990 |
+
|
4991 |
+
#~ msgid "Jan"
|
4992 |
+
#~ msgstr "ژانویه"
|
4993 |
+
|
4994 |
+
#~ msgid "Feb"
|
4995 |
+
#~ msgstr "فوریه"
|
4996 |
+
|
4997 |
+
#~ msgid "Mar"
|
4998 |
+
#~ msgstr "مارس"
|
4999 |
+
|
5000 |
+
#~ msgid "Apr"
|
5001 |
+
#~ msgstr "آوریل"
|
5002 |
+
|
5003 |
+
#~ msgid "Jun"
|
5004 |
+
#~ msgstr "ژوئن"
|
5005 |
+
|
5006 |
+
#~ msgid "Jul"
|
5007 |
+
#~ msgstr "جولای"
|
5008 |
+
|
5009 |
+
#~ msgid "Aug"
|
5010 |
+
#~ msgstr "اوت"
|
5011 |
+
|
5012 |
+
#~ msgid "Sep"
|
5013 |
+
#~ msgstr "سپتامبر"
|
5014 |
+
|
5015 |
+
#~ msgid "Oct"
|
5016 |
+
#~ msgstr "اکتبر"
|
5017 |
+
|
5018 |
+
#~ msgid "Nov"
|
5019 |
+
#~ msgstr "نوامبر"
|
5020 |
+
|
5021 |
+
#~ msgid "Dec"
|
5022 |
+
#~ msgstr "دسامبر"
|
5023 |
+
|
5024 |
+
#~ msgid "Tuesday"
|
5025 |
+
#~ msgstr "سه شنبه"
|
5026 |
+
|
5027 |
+
#~ msgid "Wednesday"
|
5028 |
+
#~ msgstr "چهارشنبه"
|
5029 |
+
|
5030 |
+
#~ msgid "Thursday"
|
5031 |
+
#~ msgstr "پنج شنبه"
|
5032 |
+
|
5033 |
+
#~ msgid "Friday"
|
5034 |
+
#~ msgstr "جمعه"
|
5035 |
+
|
5036 |
+
#~ msgid "Saturday"
|
5037 |
+
#~ msgstr "شنبه"
|
5038 |
+
|
5039 |
+
#~ msgid "Congratulations!"
|
5040 |
+
#~ msgstr "تبریک!"
|
5041 |
+
|
5042 |
+
#~ msgid "Information!"
|
5043 |
+
#~ msgstr "اطلاعات !"
|
5044 |
+
|
5045 |
+
#~ msgid "Alert!"
|
5046 |
+
#~ msgstr "هشدار !"
|
5047 |
+
|
5048 |
+
#~ msgid "Error!"
|
5049 |
+
#~ msgstr "خطا!"
|
5050 |
+
|
5051 |
+
#~ msgid "Enter some content for this texblock"
|
5052 |
+
#~ msgstr "برخی از مطالب این texblock را وارد کنید"
|
5053 |
+
|
5054 |
+
#~ msgid "Full Width"
|
5055 |
+
#~ msgstr "تمام عرض"
|
5056 |
+
|
5057 |
+
#~ msgid "Background Color"
|
5058 |
+
#~ msgstr "رنگ پس زمینه"
|
5059 |
+
|
5060 |
+
#~ msgid "Please select the background color"
|
5061 |
+
#~ msgstr "انتخاب رنگ پس زمینه"
|
5062 |
+
|
5063 |
+
#~ msgid "Background Image"
|
5064 |
+
#~ msgstr "تصویر پس زمینه"
|
5065 |
+
|
5066 |
+
#~ msgid "Please select the background image"
|
5067 |
+
#~ msgstr "انتخاب تصویر پس زمینه"
|
5068 |
+
|
5069 |
+
#~ msgid "Background Video"
|
5070 |
+
#~ msgstr "ویدئوی پس زمینه"
|
5071 |
+
|
5072 |
+
#~ msgid "API Settings"
|
5073 |
+
#~ msgstr "تنظیمات API"
|
5074 |
+
|
5075 |
+
#, fuzzy
|
5076 |
+
#~ msgid "App ID/API Key:"
|
5077 |
+
#~ msgstr "کد ID/API نرم افزار :"
|
5078 |
+
|
5079 |
+
#~ msgid "Enter Facebook App ID / API Key."
|
5080 |
+
#~ msgstr "کلید ID/API برنامه Facebook را وارد کنید."
|
5081 |
+
|
5082 |
+
#~ msgid "App Secret:"
|
5083 |
+
#~ msgstr "کد اپ:"
|
5084 |
+
|
5085 |
+
#, fuzzy
|
5086 |
+
#~| msgid "Enter Facebook App ID / API Key."
|
5087 |
+
#~ msgid "Enter Facebook App Secret."
|
5088 |
+
#~ msgstr "رمز برنامه فیس بوک را وارد کنید"
|
5089 |
+
|
5090 |
+
#, fuzzy
|
5091 |
+
#~| msgid "Facebook"
|
5092 |
+
#~ msgid "Social Facebook"
|
5093 |
+
#~ msgstr "اجتماعی فیس بوک"
|
5094 |
+
|
5095 |
+
#~ msgid "Consumer Key"
|
5096 |
+
#~ msgstr "کلید مصرف کننده"
|
5097 |
+
|
5098 |
+
#~ msgid "Enter Twitter Consumer Key."
|
5099 |
+
#~ msgstr "کلید مصرف کننده Twitter را وارد کنید."
|
5100 |
+
|
5101 |
+
#~ msgid "Consumer Secret"
|
5102 |
+
#~ msgstr "راز مصرف کننده"
|
5103 |
+
|
5104 |
+
#, fuzzy
|
5105 |
+
#~| msgid "Enter Twitter Access Token Secret."
|
5106 |
+
#~ msgid "Enter Twitter App Secret."
|
5107 |
+
#~ msgstr "رمز تویتر API وارد کنید"
|
5108 |
+
|
5109 |
+
#~ msgid "Access Token"
|
5110 |
+
#~ msgstr "نشانه دسترسی"
|
5111 |
+
|
5112 |
+
#~ msgid "Enter Twitter Access Token."
|
5113 |
+
#~ msgstr "توکن دسترسی Twitter را وارد کنید."
|
5114 |
+
|
5115 |
+
#~ msgid "Access Token Secret"
|
5116 |
+
#~ msgstr "رمز نشانه دسترسی"
|
5117 |
+
|
5118 |
+
#~ msgid "Enter Twitter Access Token Secret."
|
5119 |
+
#~ msgstr "توکن محرمانه دسترسی Twitter را وارد کنید."
|
5120 |
+
|
5121 |
+
#, fuzzy
|
5122 |
+
#~| msgid "Twitter"
|
5123 |
+
#~ msgid "Social Twitter"
|
5124 |
+
#~ msgstr "لینك توییتر"
|
5125 |
+
|
5126 |
+
#~ msgid "New message"
|
5127 |
+
#~ msgstr "پیام جدید"
|
5128 |
+
|
5129 |
+
#, fuzzy
|
5130 |
+
#~ msgid "Text for Homepage"
|
5131 |
+
#~ msgstr "متن صفحه اصلی"
|
5132 |
+
|
5133 |
+
#, fuzzy
|
5134 |
+
#~ msgid "The homepage anchor will have this text"
|
5135 |
+
#~ msgstr "لنگر صفحه اصلی این متن داشته باشد"
|
5136 |
+
|
5137 |
+
#, fuzzy
|
5138 |
+
#~ msgid "Text for Blog Page"
|
5139 |
+
#~ msgstr "متن برای وبلاگ صفحه"
|
5140 |
+
|
5141 |
+
#, fuzzy
|
5142 |
+
#~ msgid "Text for 404 Page"
|
5143 |
+
#~ msgstr "متن صفحه 404"
|
5144 |
+
|
5145 |
+
#, fuzzy
|
5146 |
+
#~ msgid "The 404 anchor will have this text"
|
5147 |
+
#~ msgstr "لنگر 404 این متن داشته باشد"
|
5148 |
+
|
5149 |
+
#~ msgid "404 Not found"
|
5150 |
+
#~ msgstr "ارور 404 !!! داداچ داری اشتباه میزنی"
|
5151 |
+
|
5152 |
+
#~ msgid "Searching for:"
|
5153 |
+
#~ msgstr "جستجو برای:"
|
5154 |
+
|
5155 |
+
#, fuzzy
|
5156 |
+
#~| msgid "Create a portfolio item"
|
5157 |
+
#~ msgid "Create a event item"
|
5158 |
+
#~ msgstr "ایجاد رویداد مورد"
|
5159 |
+
|
5160 |
+
#~ msgid "Date"
|
5161 |
+
#~ msgstr "تاریخ"
|
5162 |
+
|
5163 |
+
#~ msgid "Event Options"
|
5164 |
+
#~ msgstr "گزینه های رویداد"
|
5165 |
+
|
5166 |
+
#, fuzzy
|
5167 |
+
#~ msgid "Multi Interval Event"
|
5168 |
+
#~ msgstr "فاصله چند رویداد"
|
5169 |
+
|
5170 |
+
#~ msgid "Event Categories"
|
5171 |
+
#~ msgstr "دسته بندی های رویداد"
|
5172 |
+
|
5173 |
+
#, fuzzy
|
5174 |
+
#~| msgid "Select Specific Categories"
|
5175 |
+
#~ msgid "Select an event category"
|
5176 |
+
#~ msgstr "بخش رویداد را انتخاب نمایید"
|
5177 |
+
|
5178 |
+
#~ msgid "All Events"
|
5179 |
+
#~ msgstr "تمام رویدادها"
|
5180 |
+
|
5181 |
+
#, fuzzy
|
5182 |
+
#~ msgid "Event-search-tags"
|
5183 |
+
#~ msgstr "رویداد جستجوی برچسب ها"
|
5184 |
+
|
5185 |
+
#, fuzzy
|
5186 |
+
#~ msgid "Connect extension event with shortcodes map & calendar"
|
5187 |
+
#~ msgstr "اتصال رویداد فرمت با نقشه shortcodes & تقویم"
|
5188 |
+
|
5189 |
+
#~ msgid "Google Calendar"
|
5190 |
+
#~ msgstr "تقویم گوگل"
|
5191 |
+
|
5192 |
+
#, fuzzy
|
5193 |
+
#~| msgid "Files Export"
|
5194 |
+
#~ msgid "Ical Export"
|
5195 |
+
#~ msgstr "خروجی گرفتن در اکسل"
|
5196 |
+
|
5197 |
+
#~ msgid "Start"
|
5198 |
+
#~ msgstr "آغاز"
|
5199 |
+
|
5200 |
+
#~ msgid "End"
|
5201 |
+
#~ msgstr "پایان"
|
5202 |
+
|
5203 |
+
#~ msgid "Speakers"
|
5204 |
+
#~ msgstr "سخنران ها (استاد ها)"
|
5205 |
+
|
5206 |
+
#~ msgid "Event Location"
|
5207 |
+
#~ msgstr "مکان رویداد"
|
5208 |
+
|
5209 |
+
#, fuzzy
|
5210 |
+
#~| msgid "Enter the event title"
|
5211 |
+
#~ msgid "Where does the event take place?"
|
5212 |
+
#~ msgstr "که در آن رویداد را محل"
|
5213 |
+
|
5214 |
+
#, fuzzy
|
5215 |
+
#~| msgid "All Events"
|
5216 |
+
#~ msgid "All Day Event?"
|
5217 |
+
#~ msgstr "رویدادهای کل روز"
|
5218 |
+
|
5219 |
+
#, fuzzy
|
5220 |
+
#~ msgid "Is your event an all day event?"
|
5221 |
+
#~ msgstr "آیا رویداد شما یک رویداد تمام روز است؟"
|
5222 |
+
|
5223 |
+
#, fuzzy
|
5224 |
+
#~ msgid "Start & End of Event"
|
5225 |
+
#~ msgstr "شروع/پایان رویداد"
|
5226 |
+
|
5227 |
+
#, fuzzy
|
5228 |
+
#~| msgid "Note: Please set start & end event datetime"
|
5229 |
+
#~ msgid "Set start and end events datetime"
|
5230 |
+
#~ msgstr "تنظیم وقایع تاریخ و زمان شروع و پایان"
|
5231 |
+
|
5232 |
+
#~ msgid "Associated User"
|
5233 |
+
#~ msgstr "کاربر مرتبط"
|
5234 |
+
|
5235 |
+
#, fuzzy
|
5236 |
+
#~ msgid "Link this event to a specific user"
|
5237 |
+
#~ msgstr "این لینک به یک کاربر خاص"
|
5238 |
+
|
5239 |
+
#~ msgid "No matches found"
|
5240 |
+
#~ msgstr "جستجو حاصلی دربرنداشت"
|
5241 |
+
|
5242 |
+
#~ msgid "Do you realy want to change without saving?"
|
5243 |
+
#~ msgstr "آیا شما واقعا می خواهید به تغییر بدون ذخیره؟"
|
5244 |
+
|
5245 |
+
#~ msgid "Missing ID. Check that you provided all mandatory data."
|
5246 |
+
#~ msgstr "ID گم شده است. بررسی کنید که شما تمام اطلاعات اجباری ارائه شده است."
|
5247 |
+
|
5248 |
+
#~ msgid "Created"
|
5249 |
+
#~ msgstr "ساخته شد"
|
5250 |
+
|
5251 |
+
#~ msgid "(For Grouped Pages)"
|
5252 |
+
#~ msgstr "( برای گروه خاصی از صفحات )"
|
5253 |
+
|
5254 |
+
#~ msgid "(For Specific Pages)"
|
5255 |
+
#~ msgstr "( برای صفحات خاص )"
|
5256 |
+
|
5257 |
+
#~ msgid "No sidebar name specified"
|
5258 |
+
#~ msgstr "نامی برای ستون کناری در نظر گرفته نشده است."
|
5259 |
+
|
5260 |
+
#~ msgid "Sidebar Name"
|
5261 |
+
#~ msgstr "نام ستون"
|
5262 |
+
|
5263 |
+
#~ msgid "New Sidebar"
|
5264 |
+
#~ msgstr "ستون کناری جدید"
|
5265 |
+
|
5266 |
+
#~ msgid "Widgets Page"
|
5267 |
+
#~ msgstr "صفحه ابزارک"
|
5268 |
+
|
5269 |
+
#~ msgid "For specific"
|
5270 |
+
#~ msgstr "برای صفحات خاص"
|
5271 |
+
|
5272 |
+
#~ msgid "Type to search ..."
|
5273 |
+
#~ msgstr "برای جستجو چیزی بنویسید ..."
|
5274 |
+
|
5275 |
+
#~ msgid "Search for a specific page you want to set a sidebar for"
|
5276 |
+
#~ msgstr "جستجو یک صفحه خاص برای استفاده در سایدبار"
|
5277 |
+
|
5278 |
+
#~ msgid "For group"
|
5279 |
+
#~ msgstr "برای گروه"
|
5280 |
+
|
5281 |
+
#~ msgid "Select group of pages you want to set a sidebar for."
|
5282 |
+
#~ msgstr "جستجو گروهی از صفحات برای استفاده در سایدبار"
|
5283 |
+
|
5284 |
+
#~ msgid "Choose the position for your sidebar(s)"
|
5285 |
+
#~ msgstr "موقعیت سایدبار خود را انتخاب کنید."
|
5286 |
+
|
5287 |
+
#~ msgid "Add Sidebar"
|
5288 |
+
#~ msgstr "افزودن ستون کناری"
|
5289 |
+
|
5290 |
+
#~ msgid "Sidebars for"
|
5291 |
+
#~ msgstr "سایدبار ها برای"
|
5292 |
+
|
5293 |
+
#~ msgid "For Specific Page"
|
5294 |
+
#~ msgstr "برای صفحه خاص"
|
5295 |
+
|
5296 |
+
#~ msgid "For Grouped Page"
|
5297 |
+
#~ msgstr "برای گروه بندی صفحه"
|
5298 |
+
|
5299 |
+
#~ msgid "Manage Sidebars"
|
5300 |
+
#~ msgstr "مدیریت ستون های کناری"
|
5301 |
+
|
5302 |
+
#~ msgid ""
|
5303 |
+
#~ "Use this section to create and/or set different sidebar(s) for different "
|
5304 |
+
#~ "page(s)"
|
5305 |
+
#~ msgstr ""
|
5306 |
+
#~ "با استفاده از این بخش می توانید برای صفحات مختلف سایت خود سایدبارهای "
|
5307 |
+
#~ "متنوعی ایجاد و یا تنظیم کنید.\n"
|
5308 |
+
#~ "توجه: نام ستون کناری جدیدی که می سازید می بایست به انگلیسی باشد."
|
5309 |
+
|
5310 |
+
#~ msgid "For Grouped Pages"
|
5311 |
+
#~ msgstr "برای گروه بندی صفحات"
|
5312 |
+
|
5313 |
+
#~ msgid "For Specific Pages"
|
5314 |
+
#~ msgstr "برای صفحات خاص"
|
5315 |
+
|
5316 |
+
#~ msgid "Select sidebar you wish to replace."
|
5317 |
+
#~ msgstr "انتخاب ستون کناری شما مایل به جایگزینی."
|
5318 |
+
|
5319 |
+
#~ msgid "No sidebar name specified."
|
5320 |
+
#~ msgstr "نامی برای ستون کناری در نظر گرفته نشده است."
|
5321 |
+
|
5322 |
+
#~ msgid "Dynamic sidebar doesn't exixt"
|
5323 |
+
#~ msgstr "افزون ستون کناری موجود نیست"
|
5324 |
+
|
5325 |
+
#~ msgid ""
|
5326 |
+
#~ "The placeholder can't be deleted because it is used in one of sidebars "
|
5327 |
+
#~ "below."
|
5328 |
+
#~ msgstr ""
|
5329 |
+
#~ "این سایدبار نمی تواند حذف شود زیرا در یکی از صفحات فراخوانی شده است."
|
5330 |
+
|
5331 |
+
#~ msgid ""
|
5332 |
+
#~ "Please replace it first so that you will not have visual gaps in your "
|
5333 |
+
#~ "layout."
|
5334 |
+
#~ msgstr "لطفا ابتدا این ستون کناری را با یکی دیگر جایگزین کنید."
|
5335 |
+
|
5336 |
+
#~ msgid "Successfully removed"
|
5337 |
+
#~ msgstr "با موفقیت پاک شد!"
|
5338 |
+
|
5339 |
+
#~ msgid "Default for all pages"
|
5340 |
+
#~ msgstr "پیش فرض برای تمامی صفحات"
|
5341 |
+
|
5342 |
+
#~ msgid " (no title)"
|
5343 |
+
#~ msgstr "(بدون عنوان)"
|
5344 |
+
|
5345 |
+
#~ msgid "Error: Type or sub_type error"
|
5346 |
+
#~ msgstr "خطا: نوع یا خطا sub_type"
|
5347 |
+
|
5348 |
+
#~ msgid "Error: Sidebars not set"
|
5349 |
+
#~ msgstr "خطا: ستون های فرعی تنظیم نشده"
|
5350 |
+
|
5351 |
+
#~ msgid "Error: Position doesn't exists. Please check config file."
|
5352 |
+
#~ msgstr "خطا: موقعیت می کند وجود ندارد. لطفا فایل پیکربندی را بررسی کنید."
|
5353 |
+
|
5354 |
+
#~ msgid "Page"
|
5355 |
+
#~ msgstr "صفحه"
|
5356 |
+
|
5357 |
+
#~ msgid "Pages"
|
5358 |
+
#~ msgstr "صفحات"
|
5359 |
+
|
5360 |
+
#~ msgid "Portfolio Project"
|
5361 |
+
#~ msgstr "پروژه"
|
5362 |
+
|
5363 |
+
#~ msgid "Portfolio Projects"
|
5364 |
+
#~ msgstr "پروژه ها"
|
5365 |
+
|
5366 |
+
#~ msgid "Blog Category"
|
5367 |
+
#~ msgstr "دسته بندی وبلاگ"
|
5368 |
+
|
5369 |
+
#~ msgid "Portfolio Category"
|
5370 |
+
#~ msgstr "دسته بندی پروژه"
|
5371 |
+
|
5372 |
+
#~ msgid "Home Page"
|
5373 |
+
#~ msgstr "صفحه اصلی"
|
5374 |
+
|
5375 |
+
#~ msgid "Search Page"
|
5376 |
+
#~ msgstr "جستجوی صفحه"
|
5377 |
+
|
5378 |
+
#~ msgid "404 Page"
|
5379 |
+
#~ msgstr "برگه 404"
|
5380 |
+
|
5381 |
+
#~ msgid "Author Page"
|
5382 |
+
#~ msgstr "صفحه نویسنده"
|
5383 |
+
|
5384 |
+
#~ msgid "Archive Page"
|
5385 |
+
#~ msgstr "برگه آرشیو"
|
5386 |
+
|
5387 |
+
#~ msgid "All Pages"
|
5388 |
+
#~ msgstr "تمامی صفحات"
|
5389 |
+
|
5390 |
+
#~ msgid "Others"
|
5391 |
+
#~ msgstr "مابقی"
|
5392 |
+
|
5393 |
+
#~ msgid "Select Icon"
|
5394 |
+
#~ msgstr "انتخاب آیکون"
|
5395 |
+
|
5396 |
+
#~ msgid "%s (Invalid)"
|
5397 |
+
#~ msgstr "%s ( اشتباه )"
|
5398 |
+
|
5399 |
+
#~ msgid "%s (Pending)"
|
5400 |
+
#~ msgstr "%s (معلق )"
|
5401 |
+
|
5402 |
+
#~ msgid "sub item"
|
5403 |
+
#~ msgstr "زیر مورد"
|
5404 |
+
|
5405 |
+
#~ msgid "Edit Menu Item"
|
5406 |
+
#~ msgstr "ویرایش آیتم های منو"
|
5407 |
+
|
5408 |
+
#~ msgid "URL"
|
5409 |
+
#~ msgstr "آدرس "
|
5410 |
+
|
5411 |
+
#~ msgid "Navigation Label"
|
5412 |
+
#~ msgstr "عنوان منوی ناوبر"
|
5413 |
+
|
5414 |
+
#~ msgid "Title Attribute"
|
5415 |
+
#~ msgstr "ویژگی عنوان"
|
5416 |
+
|
5417 |
+
#~ msgid "Open link in a new window/tab"
|
5418 |
+
#~ msgstr "باز شدن لینک در یک صفحه جدید"
|
5419 |
+
|
5420 |
+
#~ msgid "CSS Classes (optional)"
|
5421 |
+
#~ msgstr "کلاس های CSS ( اختیاری )"
|
5422 |
+
|
5423 |
+
#~ msgid "Link Relationship (XFN)"
|
5424 |
+
#~ msgstr "رابطهی پیوند (XFN)"
|
5425 |
+
|
5426 |
+
#~ msgid "Mega Menu Column Title"
|
5427 |
+
#~ msgstr "عنوان ستون مگامنو"
|
5428 |
+
|
5429 |
+
#~ msgid "Item Title"
|
5430 |
+
#~ msgstr "آیتم عنوان"
|
5431 |
+
|
5432 |
+
#~ msgid "Hide"
|
5433 |
+
#~ msgstr "پنهان"
|
5434 |
+
|
5435 |
+
#~ msgid "This column should start a new row"
|
5436 |
+
#~ msgstr "این ستون در یک ردیف جدید شروع شود"
|
5437 |
+
|
5438 |
+
#~ msgid "Description (HTML)"
|
5439 |
+
#~ msgstr "توضیحات (HTML)"
|
5440 |
+
|
5441 |
+
#~ msgid ""
|
5442 |
+
#~ "The description will be displayed in the menu if the current theme "
|
5443 |
+
#~ "supports it."
|
5444 |
+
#~ msgstr ""
|
5445 |
+
#~ "توضیحات در منو نمایش داده میشوند . البته اگر قالب از آن پشتیبانی کند ."
|
5446 |
+
|
5447 |
+
#~ msgid "Edit Icon"
|
5448 |
+
#~ msgstr "ویرایش ایکن"
|
5449 |
+
|
5450 |
+
#~ msgid "Use as Mega Menu"
|
5451 |
+
#~ msgstr "استفاده به عنوان مگا منو"
|
5452 |
+
|
5453 |
+
#~ msgid "Move"
|
5454 |
+
#~ msgstr "جا به جایی"
|
5455 |
+
|
5456 |
+
#~ msgid "Up one"
|
5457 |
+
#~ msgstr "یکی به بالا"
|
5458 |
+
|
5459 |
+
#~ msgid "Down one"
|
5460 |
+
#~ msgstr "یکی به پایین"
|
5461 |
+
|
5462 |
+
#~ msgid "To the top"
|
5463 |
+
#~ msgstr "بفرست بالا"
|
5464 |
+
|
5465 |
+
#~ msgid "Original: %s"
|
5466 |
+
#~ msgstr "اصلی : %s"
|
5467 |
+
|
5468 |
+
#, fuzzy
|
5469 |
+
#~| msgid "Time"
|
5470 |
+
#~ msgid "Timed out"
|
5471 |
+
#~ msgstr "پایان وقت"
|
5472 |
+
|
5473 |
+
#~ msgid "Downloading..."
|
5474 |
+
#~ msgstr "در حال دانلود..."
|
5475 |
+
|
5476 |
+
#, fuzzy
|
5477 |
+
#~| msgid "Downloading..."
|
5478 |
+
#~ msgid "Downloading... %s"
|
5479 |
+
#~ msgstr "دانلود (%s از%s)"
|
5480 |
+
|
5481 |
+
#, fuzzy
|
5482 |
+
#~ msgid "Zip open failed (code %d). Please try again"
|
5483 |
+
#~ msgstr "باز شکست خورده (کد %d) پستی. لطفا دوباره امتحان کنید"
|
5484 |
+
|
5485 |
+
#, fuzzy
|
5486 |
+
#~ msgid "Zip extract failed"
|
5487 |
+
#~ msgstr "استخراج فایل های فشرده انجام نشد"
|
5488 |
+
|
5489 |
+
#, fuzzy
|
5490 |
+
#~| msgid "Cannot close the zip file"
|
5491 |
+
#~ msgid "Failed to close the zip after extract"
|
5492 |
+
#~ msgstr "می توانید فایل فشرده بسته نمی"
|
5493 |
+
|
5494 |
+
#~ msgid "Default Language"
|
5495 |
+
#~ msgstr "زبان پیش فرض"
|
5496 |
+
|
5497 |
+
#, fuzzy
|
5498 |
+
#~| msgid "This is the text that appears on your button"
|
5499 |
+
#~ msgid "This is the default language of your website."
|
5500 |
+
#~ msgstr "این زبان پیش فرض وب سایت شما می باشد."
|
5501 |
+
|
5502 |
+
#, fuzzy
|
5503 |
+
#~| msgid "Translations"
|
5504 |
+
#~ msgid "Translate to"
|
5505 |
+
#~ msgstr "ترجمه سریع"
|
5506 |
+
|
5507 |
+
#, fuzzy
|
5508 |
+
#~ msgid "Choose the languages you want your website translated to."
|
5509 |
+
#~ msgstr "زبان شما می خواهید وب سایت خود را برای ترجمه انتخاب کنید."
|
5510 |
+
|
5511 |
+
#, fuzzy
|
5512 |
+
#~ msgid "Convert data"
|
5513 |
+
#~ msgstr "تبدیل داده"
|
5514 |
+
|
5515 |
+
#, fuzzy
|
5516 |
+
#~ msgid ""
|
5517 |
+
#~ "Set to default language the posts, pages categories or tags that don't "
|
5518 |
+
#~ "have a language set ?"
|
5519 |
+
#~ msgstr ""
|
5520 |
+
#~ "تنظیم زبان پیش فرض پست دسته بندی صفحات و یا برچسب ها است که زبان مجموعه?"
|
5521 |
+
|
5522 |
+
#~ msgid "Translations"
|
5523 |
+
#~ msgstr "ترجمه ها"
|
5524 |
+
|
5525 |
+
#~ msgid "All Languages"
|
5526 |
+
#~ msgstr "همه زبان ها"
|
5527 |
+
|
5528 |
+
#, fuzzy
|
5529 |
+
#~ msgid "The term translation does already exists.ACTION +++ "
|
5530 |
+
#~ msgstr "ترجمه عبارت در حال حاضر وجود دارد. عمل +++"
|
5531 |
+
|
5532 |
+
#, fuzzy
|
5533 |
+
#~| msgid "Translations"
|
5534 |
+
#~ msgid "Translate Terms"
|
5535 |
+
#~ msgstr "ترجمه موردهای"
|
5536 |
+
|
5537 |
+
#, fuzzy
|
5538 |
+
#~| msgid "The %s extension is not installed: %s"
|
5539 |
+
#~ msgid "This extension translate terms"
|
5540 |
+
#~ msgstr "پسوند%s را نصب نشده است:%s را"
|
5541 |
+
|
5542 |
+
#, fuzzy
|
5543 |
+
#~| msgid "Date of the post/page"
|
5544 |
+
#~ msgid "Language of this post"
|
5545 |
+
#~ msgstr "زبان این پست"
|
5546 |
+
|
5547 |
+
#, fuzzy
|
5548 |
+
#~| msgid "The %s extension is not installed: %s"
|
5549 |
+
#~ msgid "This extension translate posts"
|
5550 |
+
#~ msgstr "پسوند%s را نصب نشده است:%s را"
|
5551 |
+
|
5552 |
+
#, fuzzy
|
5553 |
+
#~| msgid "Translations"
|
5554 |
+
#~ msgid "Translate Widgets"
|
5555 |
+
#~ msgstr "ترجمه ویدجت"
|
5556 |
+
|
5557 |
+
#, fuzzy
|
5558 |
+
#~| msgid "The %s extension needs to be updated to %s"
|
5559 |
+
#~ msgid "This extension translate Widgets"
|
5560 |
+
#~ msgstr "این ضمیمه ترجمه ویدجت"
|
5561 |
+
|
5562 |
+
#~ msgid "Language Switcher"
|
5563 |
+
#~ msgstr "تعویض زبان"
|
5564 |
+
|
5565 |
+
#, fuzzy
|
5566 |
+
#~| msgid "Language Switcher"
|
5567 |
+
#~ msgid "A Language Switcher Widget"
|
5568 |
+
#~ msgstr "ابزارک انتخاب زبان"
|
5569 |
+
|
5570 |
+
#~ msgid "New title"
|
5571 |
+
#~ msgstr "عنوان جدید"
|
5572 |
+
|
5573 |
+
#~ msgid "Title:"
|
5574 |
+
#~ msgstr "عنوان:"
|
5575 |
+
|
5576 |
+
#~ msgid "A calendar of your site’s Posts."
|
5577 |
+
#~ msgstr "یک تقویم از ’s نوشته های سایت شما"
|
5578 |
+
|
5579 |
+
#, fuzzy
|
5580 |
+
#~| msgid "Translations"
|
5581 |
+
#~ msgid "Translate Menus"
|
5582 |
+
#~ msgstr "ترجمه منوها"
|
5583 |
+
|
5584 |
+
#, fuzzy
|
5585 |
+
#~| msgid "The %s extension is not installed: %s"
|
5586 |
+
#~ msgid "This extension translate menus"
|
5587 |
+
#~ msgstr "این ضمیمه ترجمه منوها"
|
5588 |
+
|
5589 |
+
#~ msgid "Slider Design"
|
5590 |
+
#~ msgstr "طراحی اسلایدر"
|
5591 |
+
|
5592 |
+
#~ msgid "Number of Images"
|
5593 |
+
#~ msgstr "تعداد تصاویر"
|
5594 |
+
|
5595 |
+
#~ msgid "%s updated."
|
5596 |
+
#~ msgstr "%s به روز رسانی شد."
|
5597 |
+
|
5598 |
+
#~ msgid "Custom field updated."
|
5599 |
+
#~ msgstr "زمینه دلخواه بروز شد."
|
5600 |
+
|
5601 |
+
#~ msgid "Custom field deleted."
|
5602 |
+
#~ msgstr "زمینه دلخواه حذف شد."
|
5603 |
+
|
5604 |
+
#~ msgid "%s restored to revision from %s"
|
5605 |
+
#~ msgstr "%s به ذخیره بازیابی شد از %s"
|
5606 |
+
|
5607 |
+
#~ msgid "%s published."
|
5608 |
+
#~ msgstr "%s منتشر شد."
|
5609 |
+
|
5610 |
+
#~ msgid "Page saved."
|
5611 |
+
#~ msgstr "صفحه ذخیره شد."
|
5612 |
+
|
5613 |
+
#~ msgid "%s submitted."
|
5614 |
+
#~ msgstr "%s ثبت شد."
|
5615 |
+
|
5616 |
+
#~ msgid "%s scheduled for: %s."
|
5617 |
+
#~ msgstr "%s: به%s برای برنامه ریزی شده."
|
5618 |
+
|
5619 |
+
#~ msgid "%s draft updated."
|
5620 |
+
#~ msgstr "پیش نویس %s به روز شد."
|
5621 |
+
|
5622 |
+
#~ msgid ""
|
5623 |
+
#~ "This slider was created correctly, but the code implementation was delete "
|
5624 |
+
#~ "from source code or blocked from filter.Delete this post or recovery "
|
5625 |
+
#~ "slider implementation"
|
5626 |
+
#~ msgstr ""
|
5627 |
+
#~ "این نوار لغزنده به درستی ایجاد شد اما اجرای کد از کد منبع را حذف کنید و "
|
5628 |
+
#~ "یا مسدود شده بود از filter.Delete این پست و یا کشویی بهبود اجرای"
|
5629 |
+
|
5630 |
+
#~ msgid ""
|
5631 |
+
#~ "This slider was created correctly, but the multimedia_types from config."
|
5632 |
+
#~ "php file was deleted, please set multimedia_types for this slider type."
|
5633 |
+
#~ msgstr ""
|
5634 |
+
#~ "این نوار لغزنده به درستی ایجاد شده بود، اما multimedia_types از فایل "
|
5635 |
+
#~ "config.php حذف شد، لطفا multimedia_types مجموعه ای برای این نوع کشویی."
|
5636 |
+
|
5637 |
+
#~ msgid "Slider Configuration"
|
5638 |
+
#~ msgstr "پیکربندی اسلایدر"
|
5639 |
+
|
5640 |
+
#~ msgid "Slider Title"
|
5641 |
+
#~ msgstr "عنوان اسلایدر"
|
5642 |
+
|
5643 |
+
#~ msgid ""
|
5644 |
+
#~ "Choose a title for your slider only for internal use: Ex: \"Homepage\"."
|
5645 |
+
#~ msgstr ""
|
5646 |
+
#~ "عنوان اسلایدر را انتخاب کنید فقط برای مقاصد داخلی . مثل \"صفحه اصلی\""
|
5647 |
+
|
5648 |
+
#~ msgid "Slider Settings"
|
5649 |
+
#~ msgstr "تنظیمات اسلایدر"
|
5650 |
+
|
5651 |
+
#~ msgid ""
|
5652 |
+
#~ "You don't have slider extensions, please create at least one extension "
|
5653 |
+
#~ "for properly work"
|
5654 |
+
#~ msgstr ""
|
5655 |
+
#~ "شما اکتنشن اسلایدر ندارید ، لطفا برای ایجاد اسلایدر اکتنشن اسلایدر را نصب "
|
5656 |
+
#~ "کنید."
|
5657 |
+
|
5658 |
+
#~ msgid "Choose the population method for your slider"
|
5659 |
+
#~ msgstr "نوع دریافت اطلاعات اسلایدر خود را انتخاب نمائید."
|
5660 |
+
|
5661 |
+
#~ msgid "(no title)"
|
5662 |
+
#~ msgstr "(بدون عنوان)"
|
5663 |
+
|
5664 |
+
#~ msgid "Slider"
|
5665 |
+
#~ msgstr "اسلایدر"
|
5666 |
+
|
5667 |
+
#~ msgid "Add New Slider"
|
5668 |
+
#~ msgstr "افزودن اسلایدر جدید"
|
5669 |
+
|
5670 |
+
#~ msgid "Edit Slider"
|
5671 |
+
#~ msgstr "ویرایش اسلایدر"
|
5672 |
+
|
5673 |
+
#~ msgid "New Slider"
|
5674 |
+
#~ msgstr "اسلایدر جدید"
|
5675 |
+
|
5676 |
+
#~ msgid "View Slider"
|
5677 |
+
#~ msgstr "نمایش اسلایدر"
|
5678 |
+
|
5679 |
+
#~ msgid "Search Sliders"
|
5680 |
+
#~ msgstr "جستجوی اسلایدرها"
|
5681 |
+
|
5682 |
+
#~ msgid "No Sliders found"
|
5683 |
+
#~ msgstr "اسلایدری پیدا نشد"
|
5684 |
+
|
5685 |
+
#~ msgid "No Sliders found in Trash"
|
5686 |
+
#~ msgstr "هیچ اسلایدری در زباله دان پیدا نشد"
|
5687 |
+
|
5688 |
+
#~ msgid ""
|
5689 |
+
#~ "Adds the Sliders extension to your website. You'll be able to create "
|
5690 |
+
#~ "different built in jQuery sliders for your homepage and all the other "
|
5691 |
+
#~ "website pages."
|
5692 |
+
#~ msgstr ""
|
5693 |
+
#~ "می افزاید: گسترش لغزنده به وب سایت خود را. شما قادر خواهید بود به ایجاد "
|
5694 |
+
#~ "مختلف ساخته شده در لغزنده جی کوئری برای صفحه اصلی خود و تمام صفحات وب "
|
5695 |
+
#~ "سایت دیگر."
|
5696 |
+
|
5697 |
+
#~ msgid "Nivo Slider"
|
5698 |
+
#~ msgstr "اسلایدر Nivo"
|
5699 |
+
|
5700 |
+
#, fuzzy
|
5701 |
+
#~| msgid "New Slider"
|
5702 |
+
#~ msgid "Owl Slider"
|
5703 |
+
#~ msgstr "اسلایدر Owl"
|
5704 |
+
|
5705 |
+
#, fuzzy
|
5706 |
+
#~| msgid "Slider"
|
5707 |
+
#~ msgid "Bx-Slider"
|
5708 |
+
#~ msgstr "اسلایدرBX"
|
5709 |
+
|
5710 |
+
#, fuzzy
|
5711 |
+
#~| msgid "Population Method - Categories"
|
5712 |
+
#~ msgid "Population Method Categories opt 1"
|
5713 |
+
#~ msgstr "انتخاب کردن مردم روش دسته 1"
|
5714 |
+
|
5715 |
+
#, fuzzy
|
5716 |
+
#~| msgid "Location Description"
|
5717 |
+
#~ msgid "Option description"
|
5718 |
+
#~ msgstr "گزینه توضیحات"
|
5719 |
+
|
5720 |
+
#, fuzzy
|
5721 |
+
#~| msgid "Population Method - Categories"
|
5722 |
+
#~ msgid "Population Method Categories opt 2"
|
5723 |
+
#~ msgstr "انتخاب کردن مردم روش دسته 2"
|
5724 |
+
|
5725 |
+
#, fuzzy
|
5726 |
+
#~| msgid "Translations"
|
5727 |
+
#~ msgid "Type of Transition"
|
5728 |
+
#~ msgstr "نوع انتقال برگه"
|
5729 |
+
|
5730 |
+
#, fuzzy
|
5731 |
+
#~ msgid "Type of transition between slides"
|
5732 |
+
#~ msgstr "نوع انتقال اسلاید"
|
5733 |
+
|
5734 |
+
#~ msgid "Horizontal"
|
5735 |
+
#~ msgstr "افقی"
|
5736 |
+
|
5737 |
+
#~ msgid "Vertical"
|
5738 |
+
#~ msgstr "عمودی"
|
5739 |
+
|
5740 |
+
#~ msgid "Fade"
|
5741 |
+
#~ msgstr "محو"
|
5742 |
+
|
5743 |
+
#, fuzzy
|
5744 |
+
#~| msgid "Choose the population method for your slider"
|
5745 |
+
#~ msgid "Choose a subtitle for your slide."
|
5746 |
+
#~ msgstr "یک زیر نویس برای اسلاید خود انتخاب کنید."
|
5747 |
+
|
5748 |
+
#~ msgid "Add a Slider"
|
5749 |
+
#~ msgstr "افزودن اسلایدر"
|
5750 |
+
|
5751 |
+
#~ msgid "Select Slider"
|
5752 |
+
#~ msgstr "انتخاب اسلایدر"
|
5753 |
+
|
5754 |
+
#~ msgid "Set width"
|
5755 |
+
#~ msgstr "تنظیم عرض"
|
5756 |
+
|
5757 |
+
#~ msgid "Set height"
|
5758 |
+
#~ msgstr "تنظیم ارتفاع"
|
5759 |
+
|
5760 |
+
#~ msgid "No Sliders Available"
|
5761 |
+
#~ msgstr "اسلایدری موجود نیست !"
|
5762 |
+
|
5763 |
+
#~ msgid "create a new Slider"
|
5764 |
+
#~ msgstr "ساخت اسلاید جدید"
|
5765 |
+
|
5766 |
+
#~ msgid ""
|
5767 |
+
#~ "No Sliders created yet. Please go to the {br}Sliders page and "
|
5768 |
+
#~ "{add_slider_link}."
|
5769 |
+
#~ msgstr ""
|
5770 |
+
#~ "شما هنوز هیچ اسلایدری نساخته اید!{br} به صفحه اسلایدرها مراجعه نمائید. "
|
5771 |
+
#~ "{add_slider_link}"
|
5772 |
+
|
5773 |
+
#~ msgid ""
|
5774 |
+
#~ "Note that the type and population can't be changed later. You'll need to "
|
5775 |
+
#~ "create a new slider to have a different slider type or population method."
|
5776 |
+
#~ msgstr ""
|
5777 |
+
#~ "توجه داشته باشید که بعدا نمی توانید نوع دریافت تصاویر را تغییر دهید . "
|
5778 |
+
#~ "برای اینکه نوع دریافت را تغییر دهید می بایست یک اسلایدر جدید تعریف کرده و "
|
5779 |
+
#~ "نوع دریافت دلخواه خود را انتخاب نمائید."
|
5780 |
+
|
5781 |
+
#~ msgid "Schedule"
|
5782 |
+
#~ msgstr "زمان بندی"
|
5783 |
+
|
5784 |
+
#~ msgid "Submit for Review"
|
5785 |
+
#~ msgstr "ارسال برای بررسی"
|
5786 |
+
|
5787 |
+
#~ msgid "Specified population method does not exists: %s"
|
5788 |
+
#~ msgstr "روش جمعیت مشخص می کند وجود ندارد:%s را"
|
5789 |
+
|
5790 |
+
#~ msgid "Population method %s does not exist"
|
5791 |
+
#~ msgstr "روش جمعیت%s وجود ندارد"
|
5792 |
+
|
5793 |
+
#~ msgid "Population Methods"
|
5794 |
+
#~ msgstr "روش های جمع آوری"
|
5795 |
+
|
5796 |
+
#~ msgid "Automatically, fetch images from categories"
|
5797 |
+
#~ msgstr "خودکار ، دریافت تصاویر از دسته بندی ها"
|
5798 |
+
|
5799 |
+
#~ msgid "%s extension needs configured categories in post types"
|
5800 |
+
#~ msgstr "%s نیاز پسوند پیکربندی دسته در انواع پست"
|
5801 |
+
|
5802 |
+
#~ msgid "Categories Population Method"
|
5803 |
+
#~ msgstr "دریافت اطلاعات از دسته بندی ها"
|
5804 |
+
|
5805 |
+
#~ msgid "Choose Category"
|
5806 |
+
#~ msgstr "انتخاب دسته"
|
5807 |
+
|
5808 |
+
#~ msgid "Number of Images in the slider"
|
5809 |
+
#~ msgstr "تعداد تصاویر در اسلایدر"
|
5810 |
+
|
5811 |
+
#~ msgid "Select Specific Categories"
|
5812 |
+
#~ msgstr "انتخاب دسته بندی ها"
|
5813 |
+
|
5814 |
+
#~ msgid "Population Method - Categories"
|
5815 |
+
#~ msgstr "روش دریافت اطلاعات - دسته بندی ها"
|
5816 |
+
|
5817 |
+
#~ msgid "Automatically, fetch images from tags"
|
5818 |
+
#~ msgstr "خودکار ، دریافت تصاویر از برچسب ها"
|
5819 |
+
|
5820 |
+
#~ msgid "%s extension needs configured tags in post types"
|
5821 |
+
#~ msgstr "%s نیاز پسوند برچسب ها در انواع پست پیکربندی"
|
5822 |
+
|
5823 |
+
#~ msgid "Tags Population Method"
|
5824 |
+
#~ msgstr "برچسب ها روش جمعیت"
|
5825 |
+
|
5826 |
+
#~ msgid "Choose Tag"
|
5827 |
+
#~ msgstr "برچسب را انتخاب کنید"
|
5828 |
+
|
5829 |
+
#~ msgid "Select Specific tags"
|
5830 |
+
#~ msgstr "انتخاب برچسبهای دلخواه"
|
5831 |
+
|
5832 |
+
#~ msgid "Population Method - Tags"
|
5833 |
+
#~ msgstr "روش دریافت اطلاعات - برچسب ها"
|
5834 |
+
|
5835 |
+
#~ msgid "Automatically, fetch images from posts"
|
5836 |
+
#~ msgstr "خودکار ، دریافت تصاویر از پست ها"
|
5837 |
+
|
5838 |
+
#~ msgid "%s extension needs configured post categories in post types"
|
5839 |
+
#~ msgstr "%s نیاز پسوند پیکربندی دسته پست در انواع پست"
|
5840 |
+
|
5841 |
+
#~ msgid "Posts Population Method"
|
5842 |
+
#~ msgstr "دریافت اطلاعات از نوشته ها"
|
5843 |
+
|
5844 |
+
#~ msgid "Select Specific posts"
|
5845 |
+
#~ msgstr "انتخاب نوشته های دلخواه"
|
5846 |
+
|
5847 |
+
#~ msgid "Population Method - Posts"
|
5848 |
+
#~ msgstr "روش دریافت اطلاعات - نوشته ها"
|
5849 |
+
|
5850 |
+
#~ msgid "Manually, I'll upload the images myself"
|
5851 |
+
#~ msgstr "دستی ، خودم تصاویر را بارگزاری می کنم"
|
5852 |
+
|
5853 |
+
#~ msgid "Click to edit / Drag to reorder"
|
5854 |
+
#~ msgstr "برای ویرایش / تغییر ترتیب کلیک کنید"
|
5855 |
+
|
5856 |
+
#~ msgid "Choose"
|
5857 |
+
#~ msgstr "انتخاب"
|
5858 |
+
|
5859 |
+
#~ msgid "Population Method - Custom"
|
5860 |
+
#~ msgstr "روش دریافت اطلاعات - سفارشی"
|
5861 |
+
|
5862 |
+
#~ msgid "Add Slide"
|
5863 |
+
#~ msgstr "افزودن اسلاید"
|
5864 |
+
|
5865 |
+
#~ msgid "Extension has no Install Instructions"
|
5866 |
+
#~ msgstr "فرمت هیچ دستورالعمل های نصب"
|
5867 |
+
|
5868 |
+
#, fuzzy
|
5869 |
+
#~| msgid "Extension \"%s\" has no download sources."
|
5870 |
+
#~ msgid "Unknown \"%s\" extension download source \"%s\""
|
5871 |
+
#~ msgstr "ناشناخته \"%s\" فرمت دانلود منبع \"%s\""
|
5872 |
+
|
5873 |
+
#~ msgid "Letter spacing"
|
5874 |
+
#~ msgstr "فاصله بین حروف"
|
5875 |
+
|
5876 |
+
#~ msgid "Class ZipArchive not found. Please install php zip extension"
|
5877 |
+
#~ msgstr "کلاس ZipArchive یافت نشد. لطفا فرمت فایل های فشرده پی اچ پی نصب"
|
5878 |
+
|
5879 |
+
#~ msgid "home"
|
5880 |
+
#~ msgstr "صفحه اصلی"
|
5881 |
+
|
5882 |
+
#~ msgid "blog"
|
5883 |
+
#~ msgstr "بلاگ"
|
5884 |
+
|
5885 |
+
#~ msgid "404, not found"
|
5886 |
+
#~ msgstr "404 چیزی پیدا نشد "
|
5887 |
+
|
5888 |
+
#~ msgid "Test connection"
|
5889 |
+
#~ msgstr "ارسال پیام آزمایشی"
|
5890 |
+
|
5891 |
+
#~ msgid "Test email destination"
|
5892 |
+
#~ msgstr "ایمیل مقصد آزمایش"
|
5893 |
+
|
5894 |
+
#~ msgid "Send a test email"
|
5895 |
+
#~ msgstr "ارسال ایمیل آزمایشی"
|
5896 |
+
|
5897 |
+
#~ msgid "Invalid email"
|
5898 |
+
#~ msgstr "ایمیل نامعتبر است"
|
5899 |
+
|
5900 |
+
#~ msgid "Test Subject"
|
5901 |
+
#~ msgstr "آزمون موضوع"
|
5902 |
+
|
5903 |
+
#~ msgid "Test Message"
|
5904 |
+
#~ msgstr "ارسال پیام آزمایشی"
|
5905 |
+
|
5906 |
+
#~ msgid "Choose the Slider title (for internal use)"
|
5907 |
+
#~ msgstr ""
|
5908 |
+
#~ "یک نام برای اسلایدر خود بگذارید ( این نام در سایت نمایش داده نمی شود )"
|
5909 |
+
|
5910 |
+
#~ msgid "Sidebar Picker"
|
5911 |
+
#~ msgstr "انتخاب کننده ستون کناری"
|
5912 |
+
|
5913 |
+
#~ msgid "Icons"
|
5914 |
+
#~ msgstr "آیکون ها"
|
5915 |
+
|
5916 |
+
#~ msgid "All Packs"
|
5917 |
+
#~ msgstr "همه بسته ها"
|
5918 |
+
|
5919 |
+
#~ msgid "Move up"
|
5920 |
+
#~ msgstr "جا به جایی به بالا"
|
5921 |
+
|
5922 |
+
#~ msgid "Move down"
|
5923 |
+
#~ msgstr "حرکت به پایین"
|
5924 |
+
|
5925 |
+
#~ msgid "Project base"
|
5926 |
+
#~ msgstr "پروژه اصلی"
|
5927 |
+
|
5928 |
+
#~ msgid "Portfolio category base"
|
5929 |
+
#~ msgstr "دسته اصلی پروژه"
|
5930 |
+
|
5931 |
+
#~ msgctxt "taxonomy general name"
|
5932 |
+
#~ msgid "%s Portfolio"
|
5933 |
+
#~ msgstr "%sی پروژه"
|
5934 |
+
|
5935 |
+
#~ msgctxt "taxonomy singular name"
|
5936 |
+
#~ msgid "%s Portfolio"
|
5937 |
+
#~ msgstr "%s پروژه"
|
5938 |
+
|
5939 |
+
#~ msgid "Tag"
|
5940 |
+
#~ msgstr "برچسب"
|
5941 |
+
|
5942 |
+
#~ msgid "Tags"
|
5943 |
+
#~ msgstr "برچسبها"
|
5944 |
+
|
5945 |
+
#~ msgid "Popular %s"
|
5946 |
+
#~ msgstr "محبوب %s"
|
5947 |
+
|
5948 |
+
#~ msgid "Separate %s with commas"
|
5949 |
+
#~ msgstr "با ویرگول انگلیسی %s جدا کنید"
|
5950 |
+
|
5951 |
+
#~ msgid "Add or remove %s"
|
5952 |
+
#~ msgstr "افزودن یا حذف کردن %s"
|
5953 |
+
|
5954 |
+
#~ msgid "Choose from the most used %s"
|
5955 |
+
#~ msgstr "انتخاب از موارد پراستفاده %s"
|
5956 |
+
|
5957 |
+
#~ msgid ""
|
5958 |
+
#~ "Please register builder types on 'fw_option_type_builder:{builder-type}:"
|
5959 |
+
#~ "register_items' action"
|
5960 |
+
#~ msgstr ""
|
5961 |
+
#~ "لطفا نوع سازنده ثبت نام بر روی 'fw_option_type_builder: {سازنده نوع}: "
|
5962 |
+
#~ "register_items عمل"
|
5963 |
+
|
5964 |
+
#~ msgid "Unyson Shortcodes"
|
5965 |
+
#~ msgstr "کدهای کوتاه"
|
5966 |
+
|
5967 |
+
#~ msgid "Woocommerce"
|
5968 |
+
#~ msgstr "ووکامرس"
|
5969 |
+
|
5970 |
+
#~ msgid "Woocommerce products"
|
5971 |
+
#~ msgstr "نمایش محصولات ووکامرس"
|
5972 |
+
|
5973 |
+
#~ msgid "%s must be enabled in order for the Sitemap to work properly."
|
5974 |
+
#~ msgstr "%s را باید فعال باشد برای نقشه سایت به درستی کار نکند."
|
5975 |
+
|
5976 |
+
#~ msgid "Permalinks"
|
5977 |
+
#~ msgstr "پیوندهای یکتا"
|
5978 |
+
|
5979 |
+
#~ msgctxt "taxonomy general name"
|
5980 |
+
#~ msgid "Portfolio %s"
|
5981 |
+
#~ msgstr "پروژه %s"
|
5982 |
+
|
5983 |
+
#~ msgctxt "taxonomy singular name"
|
5984 |
+
#~ msgid "Portfolio %s"
|
5985 |
+
#~ msgstr "پروژه %s"
|
5986 |
+
|
5987 |
+
#~ msgid "Remove Icon"
|
5988 |
+
#~ msgstr "حذف آیکون"
|
5989 |
+
|
5990 |
+
#~ msgid "Help tip"
|
5991 |
+
#~ msgstr "بخش راهنما"
|
framework/manifest.php
CHANGED
@@ -4,4 +4,4 @@ $manifest = array();
|
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
-
$manifest['version'] = '2.7.
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
+
$manifest['version'] = '2.7.24';
|
framework/static/css/backend-options.css
CHANGED
@@ -5,8 +5,8 @@ Included on pages where backend options are rendered
|
|
5 |
|
6 |
/* General */
|
7 |
|
8 |
-
.postbox-with-fw-options
|
9 |
-
.fw-postbox
|
10 |
padding: 0 0 5px !important;
|
11 |
margin: 10px 0 0 !important;
|
12 |
position: relative;
|
@@ -56,39 +56,41 @@ Included on pages where backend options are rendered
|
|
56 |
opacity: 1;
|
57 |
}
|
58 |
|
59 |
-
.fw-options-tabs-wrapper
|
60 |
border-bottom: 1px solid #CCC;
|
61 |
/*padding: 0 10px;*/
|
62 |
}
|
63 |
|
64 |
-
.fw-options-tabs-wrapper
|
65 |
-
.fw-options-tabs-wrapper
|
66 |
padding: 0;
|
67 |
margin: 0;
|
68 |
}
|
|
|
69 |
.post-type-product .fw-options-tabs-wrapper {
|
70 |
border: none;
|
71 |
padding: 10px 0;
|
72 |
}
|
73 |
-
|
74 |
-
.post-type-product .fw-options-tabs-wrapper
|
|
|
75 |
padding: 0 !important;
|
76 |
margin: 0 !important;
|
77 |
background: none !important;
|
78 |
border: none !important;
|
79 |
}
|
80 |
|
81 |
-
.fw-options-tabs-wrapper
|
82 |
float: left;
|
83 |
}
|
84 |
|
85 |
-
body.rtl .fw-options-tabs-wrapper
|
86 |
float: right;
|
87 |
margin-right: 0px;
|
88 |
margin-left: 6px;
|
89 |
}
|
90 |
|
91 |
-
.fw-options-tabs-wrapper
|
92 |
padding: 6px 12px;
|
93 |
font-weight: 600;
|
94 |
font-size: 15px;
|
@@ -100,34 +102,34 @@ body.rtl .fw-options-tabs-wrapper > .fw-options-tabs-list ul li {
|
|
100 |
margin-bottom: -1px;
|
101 |
}
|
102 |
|
103 |
-
.fw-options-tabs-wrapper
|
104 |
color: #000;
|
105 |
background-color: #f1f1f1;
|
106 |
}
|
107 |
|
108 |
-
.postbox .fw-options-tabs-wrapper
|
109 |
padding: 10px 10px 0 10px;
|
110 |
}
|
111 |
|
112 |
-
.postbox .fw-options-tabs-wrapper
|
113 |
background-color: #f1f1f1;
|
114 |
}
|
115 |
|
116 |
-
.postbox .fw-options-tabs-wrapper
|
117 |
background-color: #f8f8f8;
|
118 |
}
|
119 |
|
120 |
-
.postbox .fw-options-tabs-wrapper
|
121 |
border-bottom-color: #fff;
|
122 |
}
|
123 |
|
124 |
-
.fw-options-tabs-wrapper
|
125 |
color: #222;
|
126 |
background: 0 0;
|
127 |
border-bottom-color: #f1f1f1;
|
128 |
}
|
129 |
|
130 |
-
.fw-options-tabs-wrapper
|
131 |
background: 0 0;
|
132 |
}
|
133 |
|
@@ -137,49 +139,52 @@ body.rtl .fw-options-tabs-wrapper > .fw-options-tabs-list ul li {
|
|
137 |
box-shadow: none;
|
138 |
}
|
139 |
|
140 |
-
.fw-options-tabs-wrapper
|
141 |
#wpbody-content .metabox-holder.fw-options-tabs-contents {
|
142 |
padding-top: 0;
|
143 |
}
|
144 |
|
145 |
-
.fw-options-tabs-wrapper
|
146 |
margin-top: 20px;
|
147 |
}
|
148 |
|
149 |
-
.fw-options-tabs-wrapper
|
150 |
padding: 0 0 0 5px;
|
151 |
border-bottom-width: 0;
|
152 |
}
|
153 |
-
|
|
|
154 |
padding: 0 5px 0 0;
|
155 |
}
|
156 |
|
157 |
-
.postbox .fw-options-tabs-wrapper
|
158 |
padding: 0 0 0 25px;
|
159 |
}
|
160 |
-
|
|
|
161 |
padding: 0 25px 0 0;
|
162 |
}
|
163 |
|
164 |
-
.fw-options-tabs-wrapper
|
165 |
content: '|';
|
166 |
}
|
167 |
|
168 |
-
.fw-options-tabs-wrapper
|
169 |
content: none;
|
170 |
}
|
171 |
|
172 |
-
.fw-options-tabs-wrapper
|
173 |
float: left;
|
174 |
color: #666;
|
175 |
margin-right: 0;
|
176 |
}
|
177 |
-
|
|
|
178 |
float: right;
|
179 |
margin-left: 0;
|
180 |
}
|
181 |
|
182 |
-
.fw-options-tabs-wrapper
|
183 |
background: none;
|
184 |
border: none;
|
185 |
padding: 0;
|
@@ -189,40 +194,41 @@ body.rtl .fw-options-tabs-wrapper > .fw-options-tabs-contents > .fw-inner > .fw-
|
|
189 |
font-weight: normal;
|
190 |
}
|
191 |
|
192 |
-
.fw-options-tabs-wrapper
|
193 |
color: #0074a2;
|
194 |
}
|
195 |
|
196 |
-
.fw-options-tabs-wrapper
|
197 |
margin-left: 0;
|
198 |
}
|
199 |
-
|
|
|
200 |
margin-left: 5px;
|
201 |
margin-right: 0;
|
202 |
}
|
203 |
|
204 |
-
.fw-options-tabs-wrapper
|
205 |
background: none;
|
206 |
padding: 0;
|
207 |
border: none;
|
208 |
color: #000;
|
209 |
}
|
210 |
|
211 |
-
.fw-options-tabs-wrapper
|
212 |
position: relative;
|
213 |
}
|
214 |
|
215 |
@media (max-width: 782px) {
|
216 |
-
.fw-options-tabs-wrapper
|
217 |
float: none;
|
218 |
}
|
219 |
|
220 |
-
.fw-options-tabs-wrapper
|
221 |
display: block;
|
222 |
text-align: center;
|
223 |
}
|
224 |
|
225 |
-
.fw-options-tabs-wrapper
|
226 |
display: inline;
|
227 |
}
|
228 |
}
|
@@ -248,20 +254,20 @@ body.rtl .fw-options-tabs-wrapper > .fw-options-tabs-contents > .fw-inner > .fw-
|
|
248 |
|
249 |
form.fw-settings-form.fw-backend-side-tabs {
|
250 |
background-color: #fff;
|
251 |
-
-webkit-box-shadow: 0 1px 2px rgba(0,0,0
|
252 |
-
box-shadow: 0 1px 2px rgba(0,0,0
|
253 |
}
|
254 |
|
255 |
.fw-backend-side-tabs .fw-options-tabs-first-level {
|
256 |
background:
|
257 |
-
#fff
|
258 |
-
|
259 |
-
-302px
|
260 |
-
|
261 |
-
repeat-y;
|
262 |
}
|
263 |
|
264 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
265 |
width: 198px;
|
266 |
margin: 0;
|
267 |
padding: 0 0 70px;
|
@@ -269,16 +275,16 @@ form.fw-settings-form.fw-backend-side-tabs {
|
|
269 |
border-bottom: none;
|
270 |
}
|
271 |
|
272 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level
|
273 |
float: right;
|
274 |
}
|
275 |
|
276 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
277 |
margin-left: 198px !important;
|
278 |
background: #fff;
|
279 |
}
|
280 |
|
281 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
282 |
width: 100%;
|
283 |
min-height: 100%;
|
284 |
border-right: 1px solid #e5e5e5;
|
@@ -286,7 +292,7 @@ body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options-tabs-l
|
|
286 |
padding-bottom: 70px;
|
287 |
}
|
288 |
|
289 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
290 |
float: none;
|
291 |
margin-right: 0;
|
292 |
border: 1px solid #d3d3d3;
|
@@ -294,25 +300,25 @@ body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options-tabs-l
|
|
294 |
overflow: hidden;
|
295 |
}
|
296 |
|
297 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper
|
298 |
padding: 0;
|
299 |
}
|
300 |
|
301 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper
|
302 |
margin: 0;
|
303 |
}
|
304 |
|
305 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level
|
306 |
border-left: 1px solid #e5e5e5;
|
307 |
border-right: none;
|
308 |
}
|
309 |
|
310 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper
|
311 |
float: none;
|
312 |
margin-left: 0;
|
313 |
}
|
314 |
|
315 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
316 |
position: relative;
|
317 |
outline: none;
|
318 |
margin: 0;
|
@@ -331,47 +337,47 @@ body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper > .fw-options-tabs-list
|
|
331 |
box-shadow: none;
|
332 |
}
|
333 |
|
334 |
-
body.branch-4-0 .fw-backend-side-tabs .fw-options-tabs-first-level
|
335 |
-
body.branch-4-1 .fw-backend-side-tabs .fw-options-tabs-first-level
|
336 |
-
body.branch-4-2 .fw-backend-side-tabs .fw-options-tabs-first-level
|
337 |
-
body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level
|
338 |
height: 44px;
|
339 |
line-height: 44px;
|
340 |
}
|
341 |
|
342 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
343 |
background: #dadada;
|
344 |
}
|
345 |
|
346 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
347 |
border-color: #b1b1b1;
|
348 |
margin-top: -1px;
|
349 |
border-width: 1px 0;
|
350 |
position: relative;
|
351 |
}
|
352 |
|
353 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
354 |
margin-top: 0;
|
355 |
border-top-width: 0;
|
356 |
}
|
357 |
|
358 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
359 |
font-weight: 600;
|
360 |
margin: 0;
|
361 |
}
|
362 |
|
363 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
364 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
365 |
background: #bdbdbd;
|
366 |
color: #fff;
|
367 |
}
|
368 |
|
369 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level
|
370 |
margin-left: 0 !important;
|
371 |
margin-right: 198px !important;
|
372 |
}
|
373 |
|
374 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
375 |
border-bottom-color: #fff;
|
376 |
}
|
377 |
|
@@ -379,49 +385,49 @@ body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options-tabs-c
|
|
379 |
outline: none;
|
380 |
}
|
381 |
|
382 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
383 |
padding: 0;
|
384 |
}
|
385 |
|
386 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
387 |
content: none;
|
388 |
}
|
389 |
|
390 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
391 |
padding: 0;
|
392 |
background: #f7f7f7;
|
393 |
border-width: 1px 0;
|
394 |
clear: both;
|
395 |
}
|
396 |
|
397 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
398 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
399 |
display: table;
|
400 |
content: " ";
|
401 |
}
|
402 |
|
403 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
404 |
clear: both;
|
405 |
margin-bottom: -1px;
|
406 |
}
|
407 |
|
408 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
409 |
border-bottom: 1px solid #e5e5e5;
|
410 |
}
|
411 |
|
412 |
-
body.branch-4-0 .fw-backend-side-tabs .fw-options-tabs-first-level
|
413 |
-
body.branch-4-1 .fw-backend-side-tabs .fw-options-tabs-first-level
|
414 |
-
body.branch-4-2 .fw-backend-side-tabs .fw-options-tabs-first-level
|
415 |
-
body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level
|
416 |
border-bottom: 1px solid #e5e5e5;
|
417 |
}
|
418 |
|
419 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
420 |
position: relative;
|
421 |
border-right: 1px solid #e5e5e5;
|
422 |
}
|
423 |
|
424 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
425 |
height: 1px;
|
426 |
background: #fff;
|
427 |
width: 100%;
|
@@ -430,8 +436,8 @@ body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options
|
|
430 |
position: absolute;
|
431 |
}
|
432 |
|
433 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
434 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
435 |
margin: 0;
|
436 |
padding: 0 24px;
|
437 |
border: none;
|
@@ -443,26 +449,26 @@ body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options
|
|
443 |
outline: none;
|
444 |
}
|
445 |
|
446 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
447 |
background: transparent;
|
448 |
color: #000;
|
449 |
}
|
450 |
|
451 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
452 |
background: #fff;
|
453 |
}
|
454 |
|
455 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
456 |
color: #0074a2;
|
457 |
}
|
458 |
|
459 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
460 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
461 |
margin-top: 0;
|
462 |
}
|
463 |
|
464 |
/* hide last option border */
|
465 |
-
.fw-backend-side-tabs .fw-options-tabs-wrapper
|
466 |
content: ' ';
|
467 |
display: block;
|
468 |
width: 100%;
|
@@ -472,17 +478,17 @@ body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options
|
|
472 |
position: relative;
|
473 |
}
|
474 |
|
475 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
476 |
border: none;
|
477 |
-webkit-box-shadow: none;
|
478 |
box-shadow: none;
|
479 |
}
|
480 |
|
481 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
482 |
margin-bottom: 0;
|
483 |
}
|
484 |
|
485 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
486 |
position: relative;
|
487 |
padding: 0 25px;
|
488 |
height: 46px;
|
@@ -492,18 +498,20 @@ body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level > .fw-options
|
|
492 |
color: #0074a2;
|
493 |
}
|
494 |
|
495 |
-
body.branch-4-0 .fw-backend-side-tabs .fw-backend-postboxes
|
496 |
-
body.branch-4-1 .fw-backend-side-tabs .fw-backend-postboxes
|
497 |
-
body.branch-4-2 .fw-backend-side-tabs .fw-backend-postboxes
|
498 |
-
body.branch-4-3 .fw-backend-side-tabs .fw-backend-postboxes
|
499 |
height: 47px;
|
500 |
}
|
501 |
|
502 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
503 |
content: "";
|
504 |
display: block;
|
505 |
position: absolute;
|
506 |
-
left: 0;
|
|
|
|
|
507 |
height: 1px;
|
508 |
border-top: 1px solid #eee;
|
509 |
border-bottom: 1px solid #eee;
|
@@ -514,7 +522,7 @@ body.branch-4-3 .fw-backend-side-tabs .fw-backend-postboxes > .fw-postbox > .hnd
|
|
514 |
display: none;
|
515 |
}*/
|
516 |
|
517 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
518 |
top: 4px;
|
519 |
}
|
520 |
|
@@ -527,67 +535,67 @@ body.branch-4-3 .fw-backend-side-tabs .fw-backend-postboxes > .fw-postbox > .hnd
|
|
527 |
background-image: none;
|
528 |
}
|
529 |
|
530 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
531 |
width: 100%;
|
532 |
text-align: center;
|
533 |
float: none;
|
534 |
padding: 0;
|
535 |
}
|
536 |
|
537 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
538 |
margin-top: 0;
|
539 |
}
|
540 |
|
541 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
542 |
float: none;
|
543 |
margin-left: 0 !important;
|
544 |
}
|
545 |
|
546 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level
|
547 |
margin-right: 0 !important;
|
548 |
}
|
549 |
|
550 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
551 |
padding-bottom: 0;
|
552 |
}
|
553 |
|
554 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
555 |
height: auto;
|
556 |
border-bottom-width: 0;
|
557 |
}
|
558 |
|
559 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
560 |
float: none;
|
561 |
width: 100%;
|
562 |
text-align: center;
|
563 |
border-right-width: 0;
|
564 |
}
|
565 |
|
566 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
567 |
display: none;
|
568 |
}
|
569 |
|
570 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
571 |
margin-bottom: 0;
|
572 |
border-bottom-width: 0;
|
573 |
display: block;
|
574 |
}
|
575 |
|
576 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
577 |
-
.fw-backend-side-tabs .fw-options-tabs-first-level
|
578 |
width: 100%;
|
579 |
height: auto;
|
580 |
padding: 0;
|
581 |
display: block;
|
582 |
}
|
583 |
|
584 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
585 |
top: 2px;
|
586 |
}
|
587 |
}
|
588 |
|
589 |
-
@media (max-width: 782px){
|
590 |
-
body.rtl .fw-options-tabs-wrapper
|
591 |
float: none;
|
592 |
}
|
593 |
}
|
@@ -604,14 +612,37 @@ body.branch-4-3 .fw-backend-side-tabs .fw-backend-postboxes > .fw-postbox > .hnd
|
|
604 |
}
|
605 |
|
606 |
/* make it match with admin color themes */
|
607 |
-
body.admin-color-light .fw-backend-side-tabs .fw-settings-form-header {
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
body.admin-color-
|
612 |
-
|
613 |
-
|
614 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
|
616 |
.fw-backend-side-tabs .fw-settings-form-header.initialized {
|
617 |
opacity: 1;
|
@@ -623,7 +654,7 @@ body.admin-color-sunrise .fw-backend-side-tabs .fw-settings-form-header { backgr
|
|
623 |
box-shadow: none;
|
624 |
}
|
625 |
|
626 |
-
.fw-backend-side-tabs .fw-settings-form-header
|
627 |
padding: 20px 20px 20px 30px;
|
628 |
}
|
629 |
|
@@ -679,13 +710,13 @@ body.rtl .fw-backend-side-tabs .fw-settings-form-header .form-header-buttons {
|
|
679 |
vertical-align: middle;
|
680 |
margin: 0 12px;
|
681 |
color: #358eb6;
|
682 |
-
background-color: rgb(255,255,255);
|
683 |
-
background-color: rgba(255,255,255,0.5);
|
684 |
height: 14px;
|
685 |
width: 1px;
|
686 |
}
|
687 |
|
688 |
-
.fw-backend-side-tabs .fw-settings-form-header .form-header-buttons
|
689 |
line-height: 26px;
|
690 |
vertical-align: middle;
|
691 |
}
|
@@ -727,7 +758,7 @@ body.rtl .fw-backend-side-tabs .fw-settings-form-header .form-header-buttons {
|
|
727 |
text-align: inherit;
|
728 |
}
|
729 |
|
730 |
-
.fw-backend-side-tabs .fw-settings-form-header
|
731 |
padding-bottom: 0;
|
732 |
}
|
733 |
}
|
@@ -749,13 +780,14 @@ body.rtl .fw-backend-side-tabs .fw-settings-form-header .form-header-buttons {
|
|
749 |
animation: fwFadeIn 3s ease-in;
|
750 |
}
|
751 |
|
752 |
-
.fw-backend-side-tabs .fw-options-tabs-wrapper
|
753 |
margin: -71px 0 0 198px;
|
754 |
}
|
755 |
|
756 |
-
.fw-backend-side-tabs .fw-backend-option
|
757 |
-
.fw-backend-side-tabs .fw-backend-postboxes
|
758 |
-
margin-top: -1px;
|
|
|
759 |
}
|
760 |
|
761 |
.fw-backend-side-tabs .form-footer-buttons input[type="submit"] {
|
@@ -782,16 +814,17 @@ body.rtl .fw-backend-side-tabs .form-footer-buttons input[type="submit"] {
|
|
782 |
}
|
783 |
|
784 |
|
785 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper
|
786 |
margin: -71px 198px 0 0;
|
787 |
}
|
788 |
|
789 |
@media (max-width: 782px) {
|
790 |
-
.fw-backend-side-tabs .fw-options-tabs-wrapper
|
791 |
-
margin: -1px 0 0;
|
|
|
792 |
}
|
793 |
|
794 |
-
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper
|
795 |
margin: -1px 0 0;
|
796 |
}
|
797 |
}
|
@@ -807,7 +840,7 @@ body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper + .form-footer-buttons {
|
|
807 |
|
808 |
/* Fixes for edit post page */
|
809 |
|
810 |
-
form#post .fw-options-tabs-wrapper
|
811 |
padding: 0 10px;
|
812 |
}
|
813 |
|
@@ -815,15 +848,16 @@ form#post .fw-options-tabs-wrapper > .fw-options-tabs-contents .fw-backend-postb
|
|
815 |
|
816 |
/* Fixes postboxes */
|
817 |
|
818 |
-
.fw-postbox-without-name
|
819 |
-
.fw-postbox-without-name
|
820 |
-
.js .fw-postbox-without-name
|
821 |
-
.js .fw-postbox-without-name
|
822 |
display: none;
|
823 |
}
|
824 |
|
825 |
.fw-postbox .hndle {
|
826 |
-
cursor: pointer !important;
|
|
|
827 |
}
|
828 |
|
829 |
.fw-postbox:not(.initialized) .hndle {
|
@@ -839,12 +873,14 @@ form#post .fw-options-tabs-wrapper > .fw-options-tabs-contents .fw-backend-postb
|
|
839 |
.fw-postbox .hndle .fw-html-after-title .dashicons {
|
840 |
width: auto;
|
841 |
height: auto;
|
842 |
-
color: #AAA;
|
|
|
843 |
}
|
844 |
|
845 |
.fw-postbox .hndle .fw-html-before-title .dashicons:hover,
|
846 |
.fw-postbox .hndle .fw-html-after-title .dashicons:hover {
|
847 |
-
color: #777;
|
|
|
848 |
}
|
849 |
|
850 |
/* we do not use .meta-box-sortables because of the glitches that appears from /wp-admin/js/postbox.js:130 */
|
@@ -860,15 +896,33 @@ form#post .fw-options-tabs-wrapper > .fw-options-tabs-contents .fw-backend-postb
|
|
860 |
position: relative;
|
861 |
-webkit-font-smoothing: antialiased;
|
862 |
-moz-osx-font-smoothing: grayscale;
|
863 |
-
text-decoration: none!important;
|
864 |
}
|
|
|
865 |
body.rtl .fw-postbox .handlediv:before {
|
866 |
left: 12px;
|
867 |
right: auto;
|
|
|
868 |
}
|
869 |
|
870 |
.fw-postbox .handlediv:before {
|
871 |
content: '\f142';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
}
|
873 |
|
874 |
.fw-postbox.closed .handlediv:before {
|
@@ -876,7 +930,8 @@ body.rtl .fw-postbox .handlediv:before {
|
|
876 |
}
|
877 |
|
878 |
.fw-postbox .toggle-indicator {
|
879 |
-
display: none;
|
|
|
880 |
}
|
881 |
|
882 |
/* end copy from: .js .meta-box-sortables .postbox .handlediv */
|
@@ -901,22 +956,24 @@ body.rtl .fw-postbox .handlediv:before {
|
|
901 |
padding: 15px 12px;
|
902 |
}
|
903 |
|
904 |
-
.postbox-with-fw-options
|
905 |
-
.fw-postbox
|
906 |
position: absolute;
|
907 |
-
bottom: 5px;
|
|
|
908 |
left: 0;
|
909 |
width: 100%;
|
910 |
border-bottom: 1px solid #FFFFFF;
|
911 |
}
|
912 |
-
|
913 |
-
body.rtl .fw-
|
|
|
914 |
right: 0;
|
915 |
left: auto;
|
916 |
}
|
917 |
|
918 |
-
.fw-backend-option-design-default
|
919 |
-
.fw-backend-option-design-customizer
|
920 |
position: relative;
|
921 |
max-width: 100%;
|
922 |
|
@@ -925,39 +982,41 @@ body.rtl .fw-postbox > .inside > .fw-backend-options-last-border-hider {
|
|
925 |
box-sizing: border-box;
|
926 |
}
|
927 |
|
928 |
-
.fw-backend-option-design-default
|
929 |
-
.fw-backend-option-design-customizer
|
930 |
.fw-backend-option-fixed-width {
|
931 |
width: 100%;
|
932 |
max-width: 428px;
|
933 |
}
|
934 |
|
935 |
-
.fw-backend-option-design-default
|
936 |
-
.fw-backend-option-design-customizer
|
937 |
width: 100%;
|
938 |
}
|
939 |
|
940 |
-
.fw-backend-option-design-default
|
941 |
font-weight: 600;
|
942 |
float: left;
|
943 |
margin-top: 0.1em;
|
944 |
font-size: 14px;
|
945 |
}
|
946 |
-
|
947 |
-
|
|
|
948 |
}
|
949 |
|
950 |
-
.fw-backend-option-design-default
|
951 |
font-style: italic;
|
952 |
color: #666;
|
953 |
}
|
954 |
|
955 |
-
.fw-backend-option-design-default
|
956 |
font-size: 1em;
|
957 |
padding-top: 7px;
|
958 |
padding-left: 1px;
|
959 |
}
|
960 |
-
|
|
|
961 |
padding-left: inherit;
|
962 |
padding-right: 1px;
|
963 |
}
|
@@ -967,7 +1026,7 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
967 |
padding: 5px 0 10px;
|
968 |
}
|
969 |
|
970 |
-
.fw-backend-option-design-customizer
|
971 |
padding-bottom: 6px;
|
972 |
}
|
973 |
|
@@ -976,15 +1035,16 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
976 |
line-height: inherit;
|
977 |
}
|
978 |
|
979 |
-
.fw-backend-option-design-customizer
|
980 |
padding-bottom: 5px;
|
981 |
}
|
982 |
|
983 |
-
.fw-backend-option-design-customizer
|
984 |
display: inline-block;
|
985 |
vertical-align: middle;
|
986 |
}
|
987 |
-
|
|
|
988 |
display: inline-block;
|
989 |
}
|
990 |
|
@@ -994,11 +1054,11 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
994 |
border-bottom: 1px solid #eeeeee;
|
995 |
}
|
996 |
|
997 |
-
.fw-backend-options-group:not(.show-borders)
|
998 |
border-bottom-width: 0;
|
999 |
}
|
1000 |
|
1001 |
-
.fw-backend-options-group:not(.show-borders)
|
1002 |
padding-bottom: 0;
|
1003 |
}
|
1004 |
|
@@ -1009,28 +1069,30 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
1009 |
|
1010 |
|
1011 |
@media (max-width: 782px) {
|
1012 |
-
.fw-backend-option-design-default
|
1013 |
padding: 0 0 10px;
|
1014 |
}
|
1015 |
|
1016 |
-
.fw-backend-option-design-default.with-help
|
1017 |
margin-right: 8px;
|
1018 |
}
|
1019 |
-
|
|
|
1020 |
margin-right: 0px;
|
1021 |
margin-left: 8px;
|
1022 |
}
|
1023 |
|
1024 |
-
.fw-backend-option-design-default
|
1025 |
margin-top: 0;
|
1026 |
}
|
1027 |
}
|
1028 |
|
1029 |
@media (min-width: 783px) {
|
1030 |
-
.fw-backend-option-design-default
|
1031 |
padding: 3px 20px 0 0;
|
1032 |
}
|
1033 |
-
|
|
|
1034 |
padding: 3px 0 0 20px;
|
1035 |
}
|
1036 |
}
|
@@ -1038,7 +1100,7 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
1038 |
|
1039 |
/* Options inside option fixes */
|
1040 |
|
1041 |
-
.fw-backend-option-type-html .fw-backend-option-design-default
|
1042 |
max-width: 100%;
|
1043 |
}
|
1044 |
|
@@ -1052,28 +1114,29 @@ body.rtl .fw-backend-option-design-default > .fw-backend-option-desc > .fw-inner
|
|
1052 |
|
1053 |
/* .fw-force-xs have design like on mobile */
|
1054 |
|
1055 |
-
.fw-force-xs .fw-options-tabs-first-level
|
1056 |
float: none;
|
1057 |
}
|
1058 |
|
1059 |
-
.fw-force-xs .fw-options-tabs-first-level
|
1060 |
display: block;
|
1061 |
}
|
1062 |
|
1063 |
-
.fw-force-xs .fw-backend-option-design-default
|
1064 |
-
body.rtl .fw-force-xs .fw-backend-option-design-default
|
1065 |
padding: 0 0 10px;
|
1066 |
}
|
1067 |
|
1068 |
-
.fw-force-xs .fw-backend-option-design-default.with-help
|
1069 |
margin-right: 8px;
|
1070 |
}
|
1071 |
-
|
|
|
1072 |
margin-right: 0px;
|
1073 |
margin-left: 8px;
|
1074 |
}
|
1075 |
|
1076 |
-
.fw-force-xs .fw-backend-option-design-default
|
1077 |
margin-top: 0;
|
1078 |
}
|
1079 |
|
@@ -1084,7 +1147,8 @@ body.rtl .fw-force-xs .fw-backend-option-design-default.with-help > .fw-backend-
|
|
1084 |
|
1085 |
.fw-backend-option .fw-option-help {
|
1086 |
cursor: pointer;
|
1087 |
-
color: #AAAAAA;
|
|
|
1088 |
}
|
1089 |
|
1090 |
.fw-backend-option .fw-option-help:hover,
|
@@ -1092,36 +1156,40 @@ body.rtl .fw-force-xs .fw-backend-option-design-default.with-help > .fw-backend-
|
|
1092 |
color: #333333;
|
1093 |
}
|
1094 |
|
1095 |
-
.fw-backend-option-design-default.with-help
|
1096 |
position: absolute;
|
1097 |
top: 0;
|
1098 |
right: 0px;
|
1099 |
}
|
1100 |
-
|
|
|
1101 |
right: auto;
|
1102 |
left: 0;
|
1103 |
}
|
1104 |
|
1105 |
-
.fw-backend-option-design-default.with-help
|
1106 |
float: left;
|
1107 |
}
|
1108 |
-
|
|
|
1109 |
float: right;
|
1110 |
}
|
1111 |
|
1112 |
@media (min-width: 783px) {
|
1113 |
-
.fw-backend-option-design-default.with-help
|
1114 |
padding-right: 26px;
|
1115 |
}
|
1116 |
-
|
|
|
1117 |
padding-right: 0;
|
1118 |
padding-left: 26px;
|
1119 |
}
|
1120 |
|
1121 |
-
.fw-force-xs .fw-backend-option-design-default.with-help
|
1122 |
padding-right: 0;
|
1123 |
}
|
1124 |
-
|
|
|
1125 |
padding-right: inherit;
|
1126 |
padding-left: 0;
|
1127 |
}
|
@@ -1137,32 +1205,33 @@ body.rtl .fw-backend-option-design-default.with-help > .fw-backend-option-label
|
|
1137 |
}
|
1138 |
|
1139 |
|
1140 |
-
#edittag
|
1141 |
-
#edittag
|
1142 |
-
#edittag
|
1143 |
-
#edittag
|
1144 |
padding: 15px 0;
|
1145 |
border-bottom-width: 0;
|
1146 |
}
|
1147 |
|
1148 |
@media (min-width: 783px) {
|
1149 |
-
|
1150 |
-
#edittag
|
1151 |
-
#edittag
|
1152 |
-
#edittag
|
|
|
1153 |
width: 219px;
|
1154 |
}
|
1155 |
|
1156 |
-
#edittag
|
1157 |
-
#edittag
|
1158 |
-
#edittag
|
1159 |
-
#edittag
|
1160 |
width: calc(100% - 219px);
|
1161 |
}
|
1162 |
|
1163 |
-
#edittag
|
1164 |
-
#edittag
|
1165 |
-
#edittag
|
1166 |
margin-left: 219px;
|
1167 |
}
|
1168 |
}
|
@@ -1173,6 +1242,7 @@ body.rtl .fw-backend-option-design-default.with-help > .fw-backend-option-label
|
|
1173 |
}
|
1174 |
|
1175 |
@media (max-width: 782px) {
|
|
|
1176 |
#edittag .fw-backend-option input[type=checkbox],
|
1177 |
#edittag .fw-backend-option input[type=radio] {
|
1178 |
height: 25px;
|
@@ -1204,15 +1274,15 @@ body.rtl .fw-backend-option-design-default.with-help > .fw-backend-option-label
|
|
1204 |
/* modal fix https://github.com/ThemeFuse/Unyson/issues/1353 */
|
1205 |
|
1206 |
@media (min-width: 1200px) {
|
1207 |
-
.media-frame-content .fw-backend-option
|
1208 |
width: 25%;
|
1209 |
}
|
1210 |
|
1211 |
-
.media-frame-content .fw-backend-option
|
1212 |
width: 75%;
|
1213 |
}
|
1214 |
|
1215 |
-
.media-frame-content .fw-backend-option
|
1216 |
margin-left: 25%;
|
1217 |
width: 75%;
|
1218 |
}
|
@@ -1235,9 +1305,9 @@ body.rtl .fw-backend-option-design-default.with-help > .fw-backend-option-label
|
|
1235 |
border-color: #000000 transparent transparent transparent;
|
1236 |
}
|
1237 |
|
1238 |
-
.fw-selectize.selectize-control
|
1239 |
-
.fw-selectize.selectize-control
|
1240 |
-
.fw-selectize.selectize-control
|
1241 |
display: block !important;
|
1242 |
padding: 0;
|
1243 |
margin: 1px;
|
@@ -1245,40 +1315,40 @@ body.rtl .fw-backend-option-design-default.with-help > .fw-backend-option-label
|
|
1245 |
border: 1px solid #ddd;
|
1246 |
color: #333333;
|
1247 |
|
1248 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0
|
1249 |
-
box-shadow: inset 0 1px 2px rgba(0,0,0
|
1250 |
}
|
1251 |
|
1252 |
-
.fw-selectize.selectize-control
|
1253 |
padding: 2px 5px !important;
|
1254 |
height: auto;
|
1255 |
font-size: 14px;
|
1256 |
vertical-align: middle;
|
1257 |
}
|
1258 |
|
1259 |
-
.fw-modal .media-frame .fw-selectize.selectize-control
|
1260 |
height: 26px;
|
1261 |
}
|
1262 |
|
1263 |
-
.fw-selectize.selectize-control .selectize-input
|
1264 |
vertical-align: middle;
|
1265 |
}
|
1266 |
|
1267 |
-
.fw-selectize.selectize-control.single .selectize-input
|
1268 |
padding: 2px 5px;
|
1269 |
font-size: 14px;
|
1270 |
}
|
1271 |
|
1272 |
-
.fw-modal .media-frame .fw-selectize.selectize-control.single .selectize-input
|
1273 |
padding: 4px 5px;
|
1274 |
}
|
1275 |
|
1276 |
-
.fw-selectize.selectize-control.multi .selectize-input
|
1277 |
margin: 2px;
|
1278 |
padding: 0 3px;
|
1279 |
}
|
1280 |
|
1281 |
-
.fw-modal .media-frame .fw-selectize.selectize-control.multi .selectize-input
|
1282 |
padding: 2px 5px;
|
1283 |
}
|
1284 |
|
5 |
|
6 |
/* General */
|
7 |
|
8 |
+
.postbox-with-fw-options>.inside,
|
9 |
+
.fw-postbox>.inside {
|
10 |
padding: 0 0 5px !important;
|
11 |
margin: 10px 0 0 !important;
|
12 |
position: relative;
|
56 |
opacity: 1;
|
57 |
}
|
58 |
|
59 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
60 |
border-bottom: 1px solid #CCC;
|
61 |
/*padding: 0 10px;*/
|
62 |
}
|
63 |
|
64 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul,
|
65 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
66 |
padding: 0;
|
67 |
margin: 0;
|
68 |
}
|
69 |
+
|
70 |
.post-type-product .fw-options-tabs-wrapper {
|
71 |
border: none;
|
72 |
padding: 10px 0;
|
73 |
}
|
74 |
+
|
75 |
+
.post-type-product .fw-options-tabs-wrapper>.fw-options-tabs-list ul,
|
76 |
+
.post-type-product .fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
77 |
padding: 0 !important;
|
78 |
margin: 0 !important;
|
79 |
background: none !important;
|
80 |
border: none !important;
|
81 |
}
|
82 |
|
83 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
84 |
float: left;
|
85 |
}
|
86 |
|
87 |
+
body.rtl .fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
88 |
float: right;
|
89 |
margin-right: 0px;
|
90 |
margin-left: 6px;
|
91 |
}
|
92 |
|
93 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
94 |
padding: 6px 12px;
|
95 |
font-weight: 600;
|
96 |
font-size: 15px;
|
102 |
margin-bottom: -1px;
|
103 |
}
|
104 |
|
105 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab:hover {
|
106 |
color: #000;
|
107 |
background-color: #f1f1f1;
|
108 |
}
|
109 |
|
110 |
+
.postbox .fw-options-tabs-wrapper>.fw-options-tabs-list {
|
111 |
padding: 10px 10px 0 10px;
|
112 |
}
|
113 |
|
114 |
+
.postbox .fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
115 |
background-color: #f1f1f1;
|
116 |
}
|
117 |
|
118 |
+
.postbox .fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab:hover {
|
119 |
background-color: #f8f8f8;
|
120 |
}
|
121 |
|
122 |
+
.postbox .fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
123 |
border-bottom-color: #fff;
|
124 |
}
|
125 |
|
126 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
127 |
color: #222;
|
128 |
background: 0 0;
|
129 |
border-bottom-color: #f1f1f1;
|
130 |
}
|
131 |
|
132 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab:hover {
|
133 |
background: 0 0;
|
134 |
}
|
135 |
|
139 |
box-shadow: none;
|
140 |
}
|
141 |
|
142 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents,
|
143 |
#wpbody-content .metabox-holder.fw-options-tabs-contents {
|
144 |
padding-top: 0;
|
145 |
}
|
146 |
|
147 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents {
|
148 |
margin-top: 20px;
|
149 |
}
|
150 |
|
151 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
152 |
padding: 0 0 0 5px;
|
153 |
border-bottom-width: 0;
|
154 |
}
|
155 |
+
|
156 |
+
body.rtl .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
157 |
padding: 0 5px 0 0;
|
158 |
}
|
159 |
|
160 |
+
.postbox .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
161 |
padding: 0 0 0 25px;
|
162 |
}
|
163 |
+
|
164 |
+
body.rtl .postbox .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
165 |
padding: 0 25px 0 0;
|
166 |
}
|
167 |
|
168 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:after {
|
169 |
content: '|';
|
170 |
}
|
171 |
|
172 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:last-child:after {
|
173 |
content: none;
|
174 |
}
|
175 |
|
176 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul>li {
|
177 |
float: left;
|
178 |
color: #666;
|
179 |
margin-right: 0;
|
180 |
}
|
181 |
+
|
182 |
+
body.rtl .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul>li {
|
183 |
float: right;
|
184 |
margin-left: 0;
|
185 |
}
|
186 |
|
187 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
188 |
background: none;
|
189 |
border: none;
|
190 |
padding: 0;
|
194 |
font-weight: normal;
|
195 |
}
|
196 |
|
197 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab.fw-wp-link {
|
198 |
color: #0074a2;
|
199 |
}
|
200 |
|
201 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:first-child a.nav-tab {
|
202 |
margin-left: 0;
|
203 |
}
|
204 |
+
|
205 |
+
body.rtl .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:first-child a.nav-tab {
|
206 |
margin-left: 5px;
|
207 |
margin-right: 0;
|
208 |
}
|
209 |
|
210 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
211 |
background: none;
|
212 |
padding: 0;
|
213 |
border: none;
|
214 |
color: #000;
|
215 |
}
|
216 |
|
217 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab {
|
218 |
position: relative;
|
219 |
}
|
220 |
|
221 |
@media (max-width: 782px) {
|
222 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
223 |
float: none;
|
224 |
}
|
225 |
|
226 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
227 |
display: block;
|
228 |
text-align: center;
|
229 |
}
|
230 |
|
231 |
+
.fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
232 |
display: inline;
|
233 |
}
|
234 |
}
|
254 |
|
255 |
form.fw-settings-form.fw-backend-side-tabs {
|
256 |
background-color: #fff;
|
257 |
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
258 |
+
box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
259 |
}
|
260 |
|
261 |
.fw-backend-side-tabs .fw-options-tabs-first-level {
|
262 |
background:
|
263 |
+
#fff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAAABCAYAAAAo/lyUAAAAIklEQVQ4T2N8/Pjxf4ZRMBoCoyEwGgKjITAaAqMhMKRDAACcIAOqH7nZlwAAAABJRU5ErkJgggAA')
|
264 |
+
/* #e3e3e3 500x1 */
|
265 |
+
-302px
|
266 |
+
/* 198-500 */
|
267 |
+
0 repeat-y;
|
268 |
}
|
269 |
|
270 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list {
|
271 |
width: 198px;
|
272 |
margin: 0;
|
273 |
padding: 0 0 70px;
|
275 |
border-bottom: none;
|
276 |
}
|
277 |
|
278 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list {
|
279 |
float: right;
|
280 |
}
|
281 |
|
282 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents {
|
283 |
margin-left: 198px !important;
|
284 |
background: #fff;
|
285 |
}
|
286 |
|
287 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner {
|
288 |
width: 100%;
|
289 |
min-height: 100%;
|
290 |
border-right: 1px solid #e5e5e5;
|
292 |
padding-bottom: 70px;
|
293 |
}
|
294 |
|
295 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li {
|
296 |
float: none;
|
297 |
margin-right: 0;
|
298 |
border: 1px solid #d3d3d3;
|
300 |
overflow: hidden;
|
301 |
}
|
302 |
|
303 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
304 |
padding: 0;
|
305 |
}
|
306 |
|
307 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:first-child a.nav-tab {
|
308 |
margin: 0;
|
309 |
}
|
310 |
|
311 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
312 |
border-left: 1px solid #e5e5e5;
|
313 |
border-right: none;
|
314 |
}
|
315 |
|
316 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
317 |
float: none;
|
318 |
margin-left: 0;
|
319 |
}
|
320 |
|
321 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a.nav-tab {
|
322 |
position: relative;
|
323 |
outline: none;
|
324 |
margin: 0;
|
337 |
box-shadow: none;
|
338 |
}
|
339 |
|
340 |
+
body.branch-4-0 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a.nav-tab,
|
341 |
+
body.branch-4-1 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a.nav-tab,
|
342 |
+
body.branch-4-2 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a.nav-tab,
|
343 |
+
body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a.nav-tab {
|
344 |
height: 44px;
|
345 |
line-height: 44px;
|
346 |
}
|
347 |
|
348 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list .ui-tabs-nav a:hover {
|
349 |
background: #dadada;
|
350 |
}
|
351 |
|
352 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li.ui-state-active {
|
353 |
border-color: #b1b1b1;
|
354 |
margin-top: -1px;
|
355 |
border-width: 1px 0;
|
356 |
position: relative;
|
357 |
}
|
358 |
|
359 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li.ui-state-active:first-child {
|
360 |
margin-top: 0;
|
361 |
border-top-width: 0;
|
362 |
}
|
363 |
|
364 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
365 |
font-weight: 600;
|
366 |
margin: 0;
|
367 |
}
|
368 |
|
369 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li.ui-state-active a.nav-tab,
|
370 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li.ui-state-active a.nav-tab:hover {
|
371 |
background: #bdbdbd;
|
372 |
color: #fff;
|
373 |
}
|
374 |
|
375 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents {
|
376 |
margin-left: 0 !important;
|
377 |
margin-right: 198px !important;
|
378 |
}
|
379 |
|
380 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents .fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
381 |
border-bottom-color: #fff;
|
382 |
}
|
383 |
|
385 |
outline: none;
|
386 |
}
|
387 |
|
388 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list {
|
389 |
padding: 0;
|
390 |
}
|
391 |
|
392 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li:after {
|
393 |
content: none;
|
394 |
}
|
395 |
|
396 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul {
|
397 |
padding: 0;
|
398 |
background: #f7f7f7;
|
399 |
border-width: 1px 0;
|
400 |
clear: both;
|
401 |
}
|
402 |
|
403 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul:before,
|
404 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul:after {
|
405 |
display: table;
|
406 |
content: " ";
|
407 |
}
|
408 |
|
409 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul:after {
|
410 |
clear: both;
|
411 |
margin-bottom: -1px;
|
412 |
}
|
413 |
|
414 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul {
|
415 |
border-bottom: 1px solid #e5e5e5;
|
416 |
}
|
417 |
|
418 |
+
body.branch-4-0 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li,
|
419 |
+
body.branch-4-1 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li,
|
420 |
+
body.branch-4-2 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li,
|
421 |
+
body.branch-4-3 .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
422 |
border-bottom: 1px solid #e5e5e5;
|
423 |
}
|
424 |
|
425 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
426 |
position: relative;
|
427 |
border-right: 1px solid #e5e5e5;
|
428 |
}
|
429 |
|
430 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active:after {
|
431 |
height: 1px;
|
432 |
background: #fff;
|
433 |
width: 100%;
|
436 |
position: absolute;
|
437 |
}
|
438 |
|
439 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab,
|
440 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
441 |
margin: 0;
|
442 |
padding: 0 24px;
|
443 |
border: none;
|
449 |
outline: none;
|
450 |
}
|
451 |
|
452 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab {
|
453 |
background: transparent;
|
454 |
color: #000;
|
455 |
}
|
456 |
|
457 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
458 |
background: #fff;
|
459 |
}
|
460 |
|
461 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul>li a.nav-tab:hover {
|
462 |
color: #0074a2;
|
463 |
}
|
464 |
|
465 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents,
|
466 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-contents {
|
467 |
margin-top: 0;
|
468 |
}
|
469 |
|
470 |
/* hide last option border */
|
471 |
+
.fw-backend-side-tabs .fw-options-tabs-wrapper>.fw-options-tabs-contents>.fw-inner:after {
|
472 |
content: ' ';
|
473 |
display: block;
|
474 |
width: 100%;
|
478 |
position: relative;
|
479 |
}
|
480 |
|
481 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox {
|
482 |
border: none;
|
483 |
-webkit-box-shadow: none;
|
484 |
box-shadow: none;
|
485 |
}
|
486 |
|
487 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox.closed {
|
488 |
margin-bottom: 0;
|
489 |
}
|
490 |
|
491 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle {
|
492 |
position: relative;
|
493 |
padding: 0 25px;
|
494 |
height: 46px;
|
498 |
color: #0074a2;
|
499 |
}
|
500 |
|
501 |
+
body.branch-4-0 .fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle,
|
502 |
+
body.branch-4-1 .fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle,
|
503 |
+
body.branch-4-2 .fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle,
|
504 |
+
body.branch-4-3 .fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle {
|
505 |
height: 47px;
|
506 |
}
|
507 |
|
508 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.hndle:after {
|
509 |
content: "";
|
510 |
display: block;
|
511 |
position: absolute;
|
512 |
+
left: 0;
|
513 |
+
right: 0;
|
514 |
+
bottom: 0;
|
515 |
height: 1px;
|
516 |
border-top: 1px solid #eee;
|
517 |
border-bottom: 1px solid #eee;
|
522 |
display: none;
|
523 |
}*/
|
524 |
|
525 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.handlediv:before {
|
526 |
top: 4px;
|
527 |
}
|
528 |
|
535 |
background-image: none;
|
536 |
}
|
537 |
|
538 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list {
|
539 |
width: 100%;
|
540 |
text-align: center;
|
541 |
float: none;
|
542 |
padding: 0;
|
543 |
}
|
544 |
|
545 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-list ul li {
|
546 |
margin-top: 0;
|
547 |
}
|
548 |
|
549 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents {
|
550 |
float: none;
|
551 |
margin-left: 0 !important;
|
552 |
}
|
553 |
|
554 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents {
|
555 |
margin-right: 0 !important;
|
556 |
}
|
557 |
|
558 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner {
|
559 |
padding-bottom: 0;
|
560 |
}
|
561 |
|
562 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul {
|
563 |
height: auto;
|
564 |
border-bottom-width: 0;
|
565 |
}
|
566 |
|
567 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
568 |
float: none;
|
569 |
width: 100%;
|
570 |
text-align: center;
|
571 |
border-right-width: 0;
|
572 |
}
|
573 |
|
574 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active:after {
|
575 |
display: none;
|
576 |
}
|
577 |
|
578 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
579 |
margin-bottom: 0;
|
580 |
border-bottom-width: 0;
|
581 |
display: block;
|
582 |
}
|
583 |
|
584 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li a.nav-tab,
|
585 |
+
.fw-backend-side-tabs .fw-options-tabs-first-level>.fw-options-tabs-contents>.fw-inner>.fw-options-tab>.fw-options-tabs-wrapper>.fw-options-tabs-list ul li.ui-state-active a.nav-tab {
|
586 |
width: 100%;
|
587 |
height: auto;
|
588 |
padding: 0;
|
589 |
display: block;
|
590 |
}
|
591 |
|
592 |
+
.fw-backend-side-tabs .fw-backend-postboxes>.fw-postbox>.handlediv:before {
|
593 |
top: 2px;
|
594 |
}
|
595 |
}
|
596 |
|
597 |
+
@media (max-width: 782px) {
|
598 |
+
body.rtl .fw-options-tabs-wrapper>.fw-options-tabs-list ul li {
|
599 |
float: none;
|
600 |
}
|
601 |
}
|
612 |
}
|
613 |
|
614 |
/* make it match with admin color themes */
|
615 |
+
body.admin-color-light .fw-backend-side-tabs .fw-settings-form-header {
|
616 |
+
background-color: #777
|
617 |
+
}
|
618 |
+
|
619 |
+
body.admin-color-light .fw-backend-side-tabs .fw-options-tabs-first-level {
|
620 |
+
background: #ddd
|
621 |
+
}
|
622 |
+
|
623 |
+
body.admin-color-blue .fw-backend-side-tabs .fw-settings-form-header {
|
624 |
+
background-color: #4796b3
|
625 |
+
}
|
626 |
+
|
627 |
+
body.admin-color-coffee .fw-backend-side-tabs .fw-settings-form-header {
|
628 |
+
background-color: #46403c
|
629 |
+
}
|
630 |
+
|
631 |
+
body.admin-color-ectoplasm .fw-backend-side-tabs .fw-settings-form-header {
|
632 |
+
background-color: #413256
|
633 |
+
}
|
634 |
+
|
635 |
+
body.admin-color-midnight .fw-backend-side-tabs .fw-settings-form-header {
|
636 |
+
background-color: #26292c
|
637 |
+
}
|
638 |
+
|
639 |
+
body.admin-color-ocean .fw-backend-side-tabs .fw-settings-form-header {
|
640 |
+
background-color: #627c83
|
641 |
+
}
|
642 |
+
|
643 |
+
body.admin-color-sunrise .fw-backend-side-tabs .fw-settings-form-header {
|
644 |
+
background-color: #be3631
|
645 |
+
}
|
646 |
|
647 |
.fw-backend-side-tabs .fw-settings-form-header.initialized {
|
648 |
opacity: 1;
|
654 |
box-shadow: none;
|
655 |
}
|
656 |
|
657 |
+
.fw-backend-side-tabs .fw-settings-form-header>div {
|
658 |
padding: 20px 20px 20px 30px;
|
659 |
}
|
660 |
|
710 |
vertical-align: middle;
|
711 |
margin: 0 12px;
|
712 |
color: #358eb6;
|
713 |
+
background-color: rgb(255, 255, 255);
|
714 |
+
background-color: rgba(255, 255, 255, 0.5);
|
715 |
height: 14px;
|
716 |
width: 1px;
|
717 |
}
|
718 |
|
719 |
+
.fw-backend-side-tabs .fw-settings-form-header .form-header-buttons>* {
|
720 |
line-height: 26px;
|
721 |
vertical-align: middle;
|
722 |
}
|
758 |
text-align: inherit;
|
759 |
}
|
760 |
|
761 |
+
.fw-backend-side-tabs .fw-settings-form-header>div:first-child {
|
762 |
padding-bottom: 0;
|
763 |
}
|
764 |
}
|
780 |
animation: fwFadeIn 3s ease-in;
|
781 |
}
|
782 |
|
783 |
+
.fw-backend-side-tabs .fw-options-tabs-wrapper+.form-footer-buttons {
|
784 |
margin: -71px 0 0 198px;
|
785 |
}
|
786 |
|
787 |
+
.fw-backend-side-tabs .fw-backend-option+.form-footer-buttons,
|
788 |
+
.fw-backend-side-tabs .fw-backend-postboxes+.form-footer-buttons {
|
789 |
+
margin-top: -1px;
|
790 |
+
/* hide last option border */
|
791 |
}
|
792 |
|
793 |
.fw-backend-side-tabs .form-footer-buttons input[type="submit"] {
|
814 |
}
|
815 |
|
816 |
|
817 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper+.form-footer-buttons {
|
818 |
margin: -71px 198px 0 0;
|
819 |
}
|
820 |
|
821 |
@media (max-width: 782px) {
|
822 |
+
.fw-backend-side-tabs .fw-options-tabs-wrapper+.form-footer-buttons {
|
823 |
+
margin: -1px 0 0;
|
824 |
+
/* hide last option border */
|
825 |
}
|
826 |
|
827 |
+
body.rtl .fw-backend-side-tabs .fw-options-tabs-wrapper+.form-footer-buttons {
|
828 |
margin: -1px 0 0;
|
829 |
}
|
830 |
}
|
840 |
|
841 |
/* Fixes for edit post page */
|
842 |
|
843 |
+
form#post .fw-options-tabs-wrapper>.fw-options-tabs-contents .fw-backend-postboxes {
|
844 |
padding: 0 10px;
|
845 |
}
|
846 |
|
848 |
|
849 |
/* Fixes postboxes */
|
850 |
|
851 |
+
.fw-postbox-without-name>.hndle,
|
852 |
+
.fw-postbox-without-name>.handlediv,
|
853 |
+
.js .fw-postbox-without-name>.hndle,
|
854 |
+
.js .fw-postbox-without-name>.handlediv {
|
855 |
display: none;
|
856 |
}
|
857 |
|
858 |
.fw-postbox .hndle {
|
859 |
+
cursor: pointer !important;
|
860 |
+
/* to rewrite .js .postbox .hndle */
|
861 |
}
|
862 |
|
863 |
.fw-postbox:not(.initialized) .hndle {
|
873 |
.fw-postbox .hndle .fw-html-after-title .dashicons {
|
874 |
width: auto;
|
875 |
height: auto;
|
876 |
+
color: #AAA;
|
877 |
+
/* copied from .handlediv */
|
878 |
}
|
879 |
|
880 |
.fw-postbox .hndle .fw-html-before-title .dashicons:hover,
|
881 |
.fw-postbox .hndle .fw-html-after-title .dashicons:hover {
|
882 |
+
color: #777;
|
883 |
+
/* copied from .handlediv */
|
884 |
}
|
885 |
|
886 |
/* we do not use .meta-box-sortables because of the glitches that appears from /wp-admin/js/postbox.js:130 */
|
896 |
position: relative;
|
897 |
-webkit-font-smoothing: antialiased;
|
898 |
-moz-osx-font-smoothing: grayscale;
|
899 |
+
text-decoration: none !important;
|
900 |
}
|
901 |
+
|
902 |
body.rtl .fw-postbox .handlediv:before {
|
903 |
left: 12px;
|
904 |
right: auto;
|
905 |
+
padding: 8px 21px 12px 7px;
|
906 |
}
|
907 |
|
908 |
.fw-postbox .handlediv:before {
|
909 |
content: '\f142';
|
910 |
+
color: #ccc;
|
911 |
+
}
|
912 |
+
|
913 |
+
.fw-postbox .handle-order-higher,
|
914 |
+
.fw-postbox .handle-order-lower {
|
915 |
+
display: none !important;
|
916 |
+
}
|
917 |
+
|
918 |
+
.rtl .fw-postbox .postbox-header .hndle {
|
919 |
+
justify-content: right;
|
920 |
+
}
|
921 |
+
|
922 |
+
.rtl .fw-option-type-addable-box>.fw-option-boxes>.fw-option-box .hndle .fw-html-after-title {
|
923 |
+
right: auto;
|
924 |
+
left: 43px;
|
925 |
+
background: transparent;
|
926 |
}
|
927 |
|
928 |
.fw-postbox.closed .handlediv:before {
|
930 |
}
|
931 |
|
932 |
.fw-postbox .toggle-indicator {
|
933 |
+
display: none;
|
934 |
+
/* fixes https://github.com/ThemeFuse/Unyson/issues/1261 */
|
935 |
}
|
936 |
|
937 |
/* end copy from: .js .meta-box-sortables .postbox .handlediv */
|
956 |
padding: 15px 12px;
|
957 |
}
|
958 |
|
959 |
+
.postbox-with-fw-options>.inside>.fw-backend-options-last-border-hider,
|
960 |
+
.fw-postbox>.inside>.fw-backend-options-last-border-hider {
|
961 |
position: absolute;
|
962 |
+
bottom: 5px;
|
963 |
+
/* padding from: .fw-postbox > .inside */
|
964 |
left: 0;
|
965 |
width: 100%;
|
966 |
border-bottom: 1px solid #FFFFFF;
|
967 |
}
|
968 |
+
|
969 |
+
body.rtl .postbox-with-fw-options>.inside>.fw-backend-options-last-border-hider,
|
970 |
+
body.rtl .fw-postbox>.inside>.fw-backend-options-last-border-hider {
|
971 |
right: 0;
|
972 |
left: auto;
|
973 |
}
|
974 |
|
975 |
+
.fw-backend-option-design-default>.fw-backend-option-input>.fw-inner,
|
976 |
+
.fw-backend-option-design-customizer>.fw-backend-option-input>.fw-inner {
|
977 |
position: relative;
|
978 |
max-width: 100%;
|
979 |
|
982 |
box-sizing: border-box;
|
983 |
}
|
984 |
|
985 |
+
.fw-backend-option-design-default>.fw-backend-option-input.width-type-fixed>.fw-inner,
|
986 |
+
.fw-backend-option-design-customizer>.fw-backend-option-input.width-type-fixed>.fw-inner,
|
987 |
.fw-backend-option-fixed-width {
|
988 |
width: 100%;
|
989 |
max-width: 428px;
|
990 |
}
|
991 |
|
992 |
+
.fw-backend-option-design-default>.fw-backend-option-input.width-type-full>.fw-inner,
|
993 |
+
.fw-backend-option-design-customizer>.fw-backend-option-input.width-type-full>.fw-inner {
|
994 |
width: 100%;
|
995 |
}
|
996 |
|
997 |
+
.fw-backend-option-design-default>.fw-backend-option-label label {
|
998 |
font-weight: 600;
|
999 |
float: left;
|
1000 |
margin-top: 0.1em;
|
1001 |
font-size: 14px;
|
1002 |
}
|
1003 |
+
|
1004 |
+
body.rtl .fw-backend-option-design-default>.fw-backend-option-label label {
|
1005 |
+
float: right;
|
1006 |
}
|
1007 |
|
1008 |
+
.fw-backend-option-design-default>.fw-backend-option-desc {
|
1009 |
font-style: italic;
|
1010 |
color: #666;
|
1011 |
}
|
1012 |
|
1013 |
+
.fw-backend-option-design-default>.fw-backend-option-desc>.fw-inner {
|
1014 |
font-size: 1em;
|
1015 |
padding-top: 7px;
|
1016 |
padding-left: 1px;
|
1017 |
}
|
1018 |
+
|
1019 |
+
body.rtl .fw-backend-option-design-default>.fw-backend-option-desc>.fw-inner {
|
1020 |
padding-left: inherit;
|
1021 |
padding-right: 1px;
|
1022 |
}
|
1026 |
padding: 5px 0 10px;
|
1027 |
}
|
1028 |
|
1029 |
+
.fw-backend-option-design-customizer>.fw-backend-option-desc {
|
1030 |
padding-bottom: 6px;
|
1031 |
}
|
1032 |
|
1035 |
line-height: inherit;
|
1036 |
}
|
1037 |
|
1038 |
+
.fw-backend-option-design-customizer>.fw-backend-option-label {
|
1039 |
padding-bottom: 5px;
|
1040 |
}
|
1041 |
|
1042 |
+
.fw-backend-option-design-customizer>.fw-backend-option-label .fw-option-help {
|
1043 |
display: inline-block;
|
1044 |
vertical-align: middle;
|
1045 |
}
|
1046 |
+
|
1047 |
+
.fw-backend-option-design-customizer>.fw-backend-option-label .customize-control-title {
|
1048 |
display: inline-block;
|
1049 |
}
|
1050 |
|
1054 |
border-bottom: 1px solid #eeeeee;
|
1055 |
}
|
1056 |
|
1057 |
+
.fw-backend-options-group:not(.show-borders)>.fw-backend-option {
|
1058 |
border-bottom-width: 0;
|
1059 |
}
|
1060 |
|
1061 |
+
.fw-backend-options-group:not(.show-borders)>.fw-backend-option:not(:last-child) {
|
1062 |
padding-bottom: 0;
|
1063 |
}
|
1064 |
|
1069 |
|
1070 |
|
1071 |
@media (max-width: 782px) {
|
1072 |
+
.fw-backend-option-design-default>.fw-backend-option-label>.fw-inner {
|
1073 |
padding: 0 0 10px;
|
1074 |
}
|
1075 |
|
1076 |
+
.fw-backend-option-design-default.with-help>.fw-backend-option-label label {
|
1077 |
margin-right: 8px;
|
1078 |
}
|
1079 |
+
|
1080 |
+
body.rtl .fw-backend-option-design-default.with-help>.fw-backend-option-label label {
|
1081 |
margin-right: 0px;
|
1082 |
margin-left: 8px;
|
1083 |
}
|
1084 |
|
1085 |
+
.fw-backend-option-design-default>.fw-backend-option-label .fw-option-help {
|
1086 |
margin-top: 0;
|
1087 |
}
|
1088 |
}
|
1089 |
|
1090 |
@media (min-width: 783px) {
|
1091 |
+
.fw-backend-option-design-default>.fw-backend-option-label>.fw-inner {
|
1092 |
padding: 3px 20px 0 0;
|
1093 |
}
|
1094 |
+
|
1095 |
+
body.rtl .fw-backend-option-design-default>.fw-backend-option-label>.fw-inner {
|
1096 |
padding: 3px 0 0 20px;
|
1097 |
}
|
1098 |
}
|
1100 |
|
1101 |
/* Options inside option fixes */
|
1102 |
|
1103 |
+
.fw-backend-option-type-html .fw-backend-option-design-default>.fw-backend-option-input {
|
1104 |
max-width: 100%;
|
1105 |
}
|
1106 |
|
1114 |
|
1115 |
/* .fw-force-xs have design like on mobile */
|
1116 |
|
1117 |
+
.fw-force-xs .fw-options-tabs-first-level>.fw-options-tabs-list ul li {
|
1118 |
float: none;
|
1119 |
}
|
1120 |
|
1121 |
+
.fw-force-xs .fw-options-tabs-first-level>.fw-options-tabs-list ul li a {
|
1122 |
display: block;
|
1123 |
}
|
1124 |
|
1125 |
+
.fw-force-xs .fw-backend-option-design-default>.fw-backend-option-label>.fw-inner,
|
1126 |
+
body.rtl .fw-force-xs .fw-backend-option-design-default>.fw-backend-option-label>.fw-inner {
|
1127 |
padding: 0 0 10px;
|
1128 |
}
|
1129 |
|
1130 |
+
.fw-force-xs .fw-backend-option-design-default.with-help>.fw-backend-option-label label {
|
1131 |
margin-right: 8px;
|
1132 |
}
|
1133 |
+
|
1134 |
+
body.rtl .fw-force-xs .fw-backend-option-design-default.with-help>.fw-backend-option-label label {
|
1135 |
margin-right: 0px;
|
1136 |
margin-left: 8px;
|
1137 |
}
|
1138 |
|
1139 |
+
.fw-force-xs .fw-backend-option-design-default>.fw-backend-option-label .fw-option-help {
|
1140 |
margin-top: 0;
|
1141 |
}
|
1142 |
|
1147 |
|
1148 |
.fw-backend-option .fw-option-help {
|
1149 |
cursor: pointer;
|
1150 |
+
color: #AAAAAA;
|
1151 |
+
/* copied from .handlediv */
|
1152 |
}
|
1153 |
|
1154 |
.fw-backend-option .fw-option-help:hover,
|
1156 |
color: #333333;
|
1157 |
}
|
1158 |
|
1159 |
+
.fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner>.fw-option-help {
|
1160 |
position: absolute;
|
1161 |
top: 0;
|
1162 |
right: 0px;
|
1163 |
}
|
1164 |
+
|
1165 |
+
body.rtl .fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner>.fw-option-help {
|
1166 |
right: auto;
|
1167 |
left: 0;
|
1168 |
}
|
1169 |
|
1170 |
+
.fw-backend-option-design-default.with-help>.fw-backend-option-label>.fw-inner>.fw-option-help {
|
1171 |
float: left;
|
1172 |
}
|
1173 |
+
|
1174 |
+
body.rtl .fw-backend-option-design-default.with-help>.fw-backend-option-label>.fw-inner>.fw-option-help {
|
1175 |
float: right;
|
1176 |
}
|
1177 |
|
1178 |
@media (min-width: 783px) {
|
1179 |
+
.fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner {
|
1180 |
padding-right: 26px;
|
1181 |
}
|
1182 |
+
|
1183 |
+
body.rtl .fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner {
|
1184 |
padding-right: 0;
|
1185 |
padding-left: 26px;
|
1186 |
}
|
1187 |
|
1188 |
+
.fw-force-xs .fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner {
|
1189 |
padding-right: 0;
|
1190 |
}
|
1191 |
+
|
1192 |
+
body.rtl .fw-force-xs .fw-backend-option-design-default.with-help>.fw-backend-option-input>.fw-inner {
|
1193 |
padding-right: inherit;
|
1194 |
padding-left: 0;
|
1195 |
}
|
1205 |
}
|
1206 |
|
1207 |
|
1208 |
+
#edittag>.fw-backend-option,
|
1209 |
+
#edittag>.fw-backend-options-group>.fw-backend-option,
|
1210 |
+
#edittag>.fw-backend-option-type-multi .fw-backend-option,
|
1211 |
+
#edittag>.fw-backend-option-type-multi-picker .fw-backend-option {
|
1212 |
padding: 15px 0;
|
1213 |
border-bottom-width: 0;
|
1214 |
}
|
1215 |
|
1216 |
@media (min-width: 783px) {
|
1217 |
+
|
1218 |
+
#edittag>.fw-backend-option>.fw-backend-option-label,
|
1219 |
+
#edittag>.fw-backend-options-group>.fw-backend-option>.fw-backend-option-label,
|
1220 |
+
#edittag>.fw-backend-option-type-multi .fw-backend-option>.fw-backend-option-label,
|
1221 |
+
#edittag>.fw-backend-option-type-multi-picker .fw-backend-option>.fw-backend-option-label {
|
1222 |
width: 219px;
|
1223 |
}
|
1224 |
|
1225 |
+
#edittag>.fw-backend-option>.fw-backend-option-input,
|
1226 |
+
#edittag>.fw-backend-options-group>.fw-backend-option>.fw-backend-option-input,
|
1227 |
+
#edittag>.fw-backend-option-type-multi .fw-backend-option>.fw-backend-option-input,
|
1228 |
+
#edittag>.fw-backend-option-type-multi-picker .fw-backend-option>.fw-backend-option-input {
|
1229 |
width: calc(100% - 219px);
|
1230 |
}
|
1231 |
|
1232 |
+
#edittag>.fw-backend-option>.fw-backend-option-desc,
|
1233 |
+
#edittag>.fw-backend-options-group>.fw-backend-option>.fw-backend-option-desc,
|
1234 |
+
#edittag>.fw-backend-option-type-multi .fw-backend-option>.fw-backend-option-desc {
|
1235 |
margin-left: 219px;
|
1236 |
}
|
1237 |
}
|
1242 |
}
|
1243 |
|
1244 |
@media (max-width: 782px) {
|
1245 |
+
|
1246 |
#edittag .fw-backend-option input[type=checkbox],
|
1247 |
#edittag .fw-backend-option input[type=radio] {
|
1248 |
height: 25px;
|
1274 |
/* modal fix https://github.com/ThemeFuse/Unyson/issues/1353 */
|
1275 |
|
1276 |
@media (min-width: 1200px) {
|
1277 |
+
.media-frame-content .fw-backend-option>.fw-backend-option-label.fw-col-lg-2 {
|
1278 |
width: 25%;
|
1279 |
}
|
1280 |
|
1281 |
+
.media-frame-content .fw-backend-option>.fw-backend-option-input.fw-col-lg-10 {
|
1282 |
width: 75%;
|
1283 |
}
|
1284 |
|
1285 |
+
.media-frame-content .fw-backend-option>.fw-backend-option-desc.fw-col-lg-offset-2 {
|
1286 |
margin-left: 25%;
|
1287 |
width: 75%;
|
1288 |
}
|
1305 |
border-color: #000000 transparent transparent transparent;
|
1306 |
}
|
1307 |
|
1308 |
+
.fw-selectize.selectize-control>.selectize-input,
|
1309 |
+
.fw-selectize.selectize-control>.selectize-input.has-items,
|
1310 |
+
.fw-selectize.selectize-control>.selectize-input.input-active {
|
1311 |
display: block !important;
|
1312 |
padding: 0;
|
1313 |
margin: 1px;
|
1315 |
border: 1px solid #ddd;
|
1316 |
color: #333333;
|
1317 |
|
1318 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .07);
|
1319 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .07);
|
1320 |
}
|
1321 |
|
1322 |
+
.fw-selectize.selectize-control>.selectize-input>input {
|
1323 |
padding: 2px 5px !important;
|
1324 |
height: auto;
|
1325 |
font-size: 14px;
|
1326 |
vertical-align: middle;
|
1327 |
}
|
1328 |
|
1329 |
+
.fw-modal .media-frame .fw-selectize.selectize-control>.selectize-input>input {
|
1330 |
height: 26px;
|
1331 |
}
|
1332 |
|
1333 |
+
.fw-selectize.selectize-control .selectize-input>div {
|
1334 |
vertical-align: middle;
|
1335 |
}
|
1336 |
|
1337 |
+
.fw-selectize.selectize-control.single .selectize-input>div {
|
1338 |
padding: 2px 5px;
|
1339 |
font-size: 14px;
|
1340 |
}
|
1341 |
|
1342 |
+
.fw-modal .media-frame .fw-selectize.selectize-control.single .selectize-input>div {
|
1343 |
padding: 4px 5px;
|
1344 |
}
|
1345 |
|
1346 |
+
.fw-selectize.selectize-control.multi .selectize-input>div {
|
1347 |
margin: 2px;
|
1348 |
padding: 0 3px;
|
1349 |
}
|
1350 |
|
1351 |
+
.fw-modal .media-frame .fw-selectize.selectize-control.multi .selectize-input>div {
|
1352 |
padding: 2px 5px;
|
1353 |
}
|
1354 |
|
framework/static/js/backend-options.js
CHANGED
@@ -23,14 +23,18 @@ jQuery(document).ready(function($){
|
|
23 |
*/
|
24 |
function addPostboxToggles($boxes) {
|
25 |
/** Remove events added by /wp-admin/js/postbox.js */
|
26 |
-
$boxes.find('h2, h3, .handlediv').off('click.postboxes');
|
27 |
|
28 |
var eventNamespace = '.fw-backend-postboxes';
|
29 |
|
|
|
|
|
|
|
|
|
30 |
// make postboxes to close/open on click
|
31 |
-
$boxes
|
32 |
-
|
33 |
-
|
34 |
var $box = $(this).closest('.fw-postbox');
|
35 |
|
36 |
if ($box.parent().is('.fw-backend-postboxes') && !$box.siblings().length) {
|
23 |
*/
|
24 |
function addPostboxToggles($boxes) {
|
25 |
/** Remove events added by /wp-admin/js/postbox.js */
|
26 |
+
$boxes.find('h2, h3, .handlediv, .hndle').off('click.postboxes');
|
27 |
|
28 |
var eventNamespace = '.fw-backend-postboxes';
|
29 |
|
30 |
+
$boxes.find('.postbox-header .hndle, .postbox-header .handlediv').on('mouseover', function () {
|
31 |
+
$(this).off('click.postboxes');
|
32 |
+
})
|
33 |
+
|
34 |
// make postboxes to close/open on click
|
35 |
+
$boxes.off('click'+ eventNamespace); // remove already attached, just to be sure, prevent multiple execution
|
36 |
+
$boxes.find('.postbox-header .hndle, .postbox-header .handlediv').on( 'click', function( e ) {
|
37 |
+
|
38 |
var $box = $(this).closest('.fw-postbox');
|
39 |
|
40 |
if ($box.parent().is('.fw-backend-postboxes') && !$box.siblings().length) {
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: unyson
|
3 |
Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 2.7.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -89,6 +89,9 @@ Yes; Unyson will work with any theme.
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
92 |
= 2.7.23 =
|
93 |
* Fixed [#3915](https://github.com/ThemeFuse/Unyson/issues/3915),[#3861](https://github.com/ThemeFuse/Unyson/pull/3861),[#3750](https://github.com/ThemeFuse/Unyson/issues/3750),[#3888](https://github.com/ThemeFuse/Unyson/pull/3888),[#3738](https://github.com/ThemeFuse/Unyson/pull/3738)
|
94 |
|
2 |
Contributors: unyson
|
3 |
Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 5.5
|
6 |
+
Stable tag: 2.7.24
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 2.7.24 =
|
93 |
+
* Fixed [#3915](https://github.com/ThemeFuse/Unyson/issues/4029)
|
94 |
+
|
95 |
= 2.7.23 =
|
96 |
* Fixed [#3915](https://github.com/ThemeFuse/Unyson/issues/3915),[#3861](https://github.com/ThemeFuse/Unyson/pull/3861),[#3750](https://github.com/ThemeFuse/Unyson/issues/3750),[#3888](https://github.com/ThemeFuse/Unyson/pull/3888),[#3738](https://github.com/ThemeFuse/Unyson/pull/3738)
|
97 |
|
unyson.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
-
* Version: 2.7.
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
+
* Version: 2.7.24
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|